-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: initial custom views implementation * feat: initial json render experience * feat: complete json view * fix: more tests * fix: remove console.log * fix: formatting * fix: test * fix: logo, remove custom views logic from switchEnv * feat: data stats, sorting * fix: total stat, unused elements * fix: localization of json view * fix: spectrum 2 updates * fix: remove tabs, update test * fix: RUM tracking * Update src/extension/app/components/search/search.js Co-authored-by: Raphael Wegmueller <github@rofe.com> * Update src/extension/app/spectrum-2.css.js Co-authored-by: Raphael Wegmueller <github@rofe.com> * fix: rename custom-views to views * fix: use RESTRICTED_PATHS from contstants.js * fix: special views support, don't wait for status * fix: hitting enter refreshes the page --------- Co-authored-by: Raphael Wegmueller <github@rofe.com>
- Loading branch information
1 parent
7009ea2
commit ce525c1
Showing
20 changed files
with
2,343 additions
and
289 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* Copyright 2024 Adobe. All rights reserved. | ||
* This file is licensed to you under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. You may obtain a copy | ||
* of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under | ||
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS | ||
* OF ANY KIND, either express or implied. See the License for the specific language | ||
* governing permissions and limitations under the License. | ||
*/ | ||
|
||
// @ts-nocheck | ||
|
||
import { css } from 'lit'; | ||
import { Search as SPSearch } from '@spectrum-web-components/search'; | ||
|
||
export class Search extends SPSearch { | ||
static get styles() { | ||
return [ | ||
...super.styles, | ||
css` | ||
#textfield { | ||
height: 32px; | ||
} | ||
`, | ||
]; | ||
} | ||
} | ||
|
||
customElements.define('sp-search', Search); |
Oops, something went wrong.