@deephaven/components 0.55.1-beta.1 → 0.55.1-beta.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/BaseStyleSheet.css +6 -7
- package/css/BaseStyleSheet.css.map +1 -1
- package/dist/SearchInput.css +18 -8
- package/dist/SearchInput.css.map +1 -1
- package/dist/SearchInput.d.ts +10 -1
- package/dist/SearchInput.d.ts.map +1 -1
- package/dist/SearchInput.js +73 -7
- package/dist/SearchInput.js.map +1 -1
- package/dist/shortcuts/GlobalShortcuts.d.ts +2 -0
- package/dist/shortcuts/GlobalShortcuts.d.ts.map +1 -1
- package/dist/shortcuts/GlobalShortcuts.js +14 -0
- package/dist/shortcuts/GlobalShortcuts.js.map +1 -1
- package/dist/theme/theme-spectrum/index.d.ts +1 -0
- package/dist/theme/theme-spectrum/index.d.ts.map +1 -1
- package/dist/theme/theme-spectrum/index.js +3 -3
- package/dist/theme/theme-spectrum/index.js.map +1 -1
- package/dist/theme/theme-spectrum/theme-spectrum-overrides.css +1 -0
- package/dist/theme/theme-spectrum/theme-spectrum-overrides.css.map +1 -0
- package/package.json +7 -7
- package/scss/BaseStyleSheet.scss +6 -7
- package/dist/theme/theme-spectrum/theme-spectrum-overrides.module.css +0 -1
- package/dist/theme/theme-spectrum/theme-spectrum-overrides.module.css.map +0 -1
package/css/BaseStyleSheet.css
CHANGED
|
@@ -10845,13 +10845,18 @@ a.text-foreground:hover, a.text-foreground:focus {
|
|
|
10845
10845
|
visibility: hidden !important;
|
|
10846
10846
|
}
|
|
10847
10847
|
|
|
10848
|
+
:root {
|
|
10849
|
+
--dh-svg-inline-icon-size: 16px;
|
|
10850
|
+
--scrollbar-color: 255, 255, 255;
|
|
10851
|
+
}
|
|
10852
|
+
|
|
10848
10853
|
html {
|
|
10849
10854
|
font-size: 14px;
|
|
10850
10855
|
min-height: 100%;
|
|
10851
10856
|
}
|
|
10852
10857
|
|
|
10853
10858
|
.svg-inline--fa {
|
|
10854
|
-
font-size:
|
|
10859
|
+
font-size: var(--dh-svg-inline-icon-size);
|
|
10855
10860
|
vertical-align: -3px;
|
|
10856
10861
|
}
|
|
10857
10862
|
|
|
@@ -11414,12 +11419,6 @@ input[type=number]::-webkit-inner-spin-button {
|
|
|
11414
11419
|
background: rgba(var(--scrollbar-color), 0.35);
|
|
11415
11420
|
}
|
|
11416
11421
|
|
|
11417
|
-
/* stylelint-disable no-descending-specificity */
|
|
11418
|
-
:root {
|
|
11419
|
-
--scrollbar-color: 255, 255, 255;
|
|
11420
|
-
}
|
|
11421
|
-
|
|
11422
|
-
/* stylelint-enable no-descending-specificity */
|
|
11423
11422
|
.theme-bg-light {
|
|
11424
11423
|
--scrollbar-color: 0, 0, 0;
|
|
11425
11424
|
scrollbar-color: rgba(26, 23, 26, 0.5) rgba(26, 23, 26, 0.3);
|