@deephaven/components 0.55.1-beta.1 → 0.55.1-beta.8
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 +62 -16
- package/css/BaseStyleSheet.css.map +1 -1
- package/dist/ComboBox.css +20 -0
- package/dist/ComboBox.css.map +1 -1
- package/dist/ComboBox.d.ts.map +1 -1
- package/dist/ComboBox.js +2 -4
- package/dist/ComboBox.js.map +1 -1
- package/dist/CustomTimeSelect.css +15 -2
- package/dist/CustomTimeSelect.css.map +1 -1
- package/dist/CustomTimeSelect.d.ts.map +1 -1
- package/dist/CustomTimeSelect.js +2 -5
- package/dist/CustomTimeSelect.js.map +1 -1
- package/dist/LoadingSpinner.css +2 -8
- package/dist/LoadingSpinner.css.map +1 -1
- package/dist/SearchInput.css +28 -12
- 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/ThemeModel.d.ts +12 -6
- package/dist/theme/ThemeModel.d.ts.map +1 -1
- package/dist/theme/ThemeModel.js +18 -3
- package/dist/theme/ThemeModel.js.map +1 -1
- package/dist/theme/ThemeProvider.d.ts +1 -0
- package/dist/theme/ThemeProvider.d.ts.map +1 -1
- package/dist/theme/ThemeProvider.js +6 -1
- package/dist/theme/ThemeProvider.js.map +1 -1
- package/dist/theme/ThemeUtils.d.ts +37 -5
- package/dist/theme/ThemeUtils.d.ts.map +1 -1
- package/dist/theme/ThemeUtils.js +80 -15
- package/dist/theme/ThemeUtils.js.map +1 -1
- package/dist/theme/theme-dark/theme-dark-components.css +1 -1
- package/dist/theme/theme-dark/theme-dark-components.css.map +1 -1
- package/dist/theme/theme-dark/theme-dark-palette.css +1 -1
- package/dist/theme/theme-dark/theme-dark-palette.css.map +1 -1
- package/dist/theme/theme-dark/theme-dark-semantic-chart.css +1 -1
- package/dist/theme/theme-dark/theme-dark-semantic-chart.css.map +1 -1
- package/dist/theme/theme-dark/theme-dark-semantic.css +1 -1
- package/dist/theme/theme-dark/theme-dark-semantic.css.map +1 -1
- package/dist/theme/theme-light/theme-light-palette.css +1 -1
- package/dist/theme/theme-light/theme-light-palette.css.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-alias.module.css +1 -1
- package/dist/theme/theme-spectrum/theme-spectrum-alias.module.css.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/dist/theme/theme-svg.css +1 -0
- package/dist/theme/theme-svg.css.map +1 -0
- package/package.json +7 -7
- package/scss/BaseStyleSheet.scss +102 -23
- package/scss/util.scss +27 -0
- 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
|
|
|
@@ -11181,6 +11186,16 @@ form label small {
|
|
|
11181
11186
|
border: 1px solid #4878ea;
|
|
11182
11187
|
}
|
|
11183
11188
|
|
|
11189
|
+
.form-control.is-invalid,
|
|
11190
|
+
.form-control.is-invalid:focus {
|
|
11191
|
+
border-color: var(--dh-color-form-control-error);
|
|
11192
|
+
background-image: var(--dh-svg-icon-error);
|
|
11193
|
+
}
|
|
11194
|
+
|
|
11195
|
+
.form-control.is-invalid:focus {
|
|
11196
|
+
box-shadow: 0 0 0 0.2rem var(--dh-color-form-control-error-shadow);
|
|
11197
|
+
}
|
|
11198
|
+
|
|
11184
11199
|
.form-control.btn:focus {
|
|
11185
11200
|
box-shadow: 0 0 0 0.2rem rgba(72, 120, 234, 0.35);
|
|
11186
11201
|
}
|
|
@@ -11236,9 +11251,32 @@ form label small {
|
|
|
11236
11251
|
cursor: not-allowed;
|
|
11237
11252
|
}
|
|
11238
11253
|
|
|
11254
|
+
.custom-select {
|
|
11255
|
+
background-image: var(--dh-svg-icon-select-indicator);
|
|
11256
|
+
background-size: 10px 6px;
|
|
11257
|
+
}
|
|
11258
|
+
.custom-select:hover {
|
|
11259
|
+
background-image: var(--dh-svg-icon-select-indicator-hover);
|
|
11260
|
+
}
|
|
11261
|
+
.custom-select.is-invalid, .custom-select.is-invalid:focus {
|
|
11262
|
+
border-color: var(--dh-color-form-control-error);
|
|
11263
|
+
background-size: 10px 6px, 16px;
|
|
11264
|
+
background-image: var(--dh-svg-icon-select-indicator), var(--dh-svg-icon-error);
|
|
11265
|
+
}
|
|
11266
|
+
.custom-select.is-invalid:hover {
|
|
11267
|
+
background-image: var(--dh-svg-icon-select-indicator-hover), var(--dh-svg-icon-error);
|
|
11268
|
+
}
|
|
11269
|
+
.custom-select.is-invalid:focus {
|
|
11270
|
+
box-shadow: 0 0 0 0.2rem var(--dh-color-form-control-error-shadow);
|
|
11271
|
+
}
|
|
11272
|
+
|
|
11239
11273
|
.custom-select:disabled {
|
|
11240
11274
|
border-color: #1a171a;
|
|
11241
11275
|
cursor: not-allowed;
|
|
11276
|
+
background-image: var(--dh-svg-icon-select-indicator-disabled);
|
|
11277
|
+
}
|
|
11278
|
+
.custom-select:disabled.is-invalid {
|
|
11279
|
+
background-image: var(--dh-svg-icon-select-indicator-disabled), var(--dh-svg-icon-error);
|
|
11242
11280
|
}
|
|
11243
11281
|
|
|
11244
11282
|
input[type=number] {
|
|
@@ -11266,12 +11304,8 @@ input[type=number]::-webkit-inner-spin-button {
|
|
|
11266
11304
|
}
|
|
11267
11305
|
|
|
11268
11306
|
.input-group > .input-group-append.cb-dropdown > .btn {
|
|
11269
|
-
color: #929192;
|
|
11270
11307
|
border: 1px solid #929192;
|
|
11271
11308
|
}
|
|
11272
|
-
.input-group > .input-group-append.cb-dropdown > .btn:hover {
|
|
11273
|
-
color: #f0f0ee;
|
|
11274
|
-
}
|
|
11275
11309
|
.input-group > .input-group-append.cb-dropdown > .btn:focus {
|
|
11276
11310
|
border-color: rgba(72, 120, 234, 0.85);
|
|
11277
11311
|
}
|
|
@@ -11414,12 +11448,6 @@ input[type=number]::-webkit-inner-spin-button {
|
|
|
11414
11448
|
background: rgba(var(--scrollbar-color), 0.35);
|
|
11415
11449
|
}
|
|
11416
11450
|
|
|
11417
|
-
/* stylelint-disable no-descending-specificity */
|
|
11418
|
-
:root {
|
|
11419
|
-
--scrollbar-color: 255, 255, 255;
|
|
11420
|
-
}
|
|
11421
|
-
|
|
11422
|
-
/* stylelint-enable no-descending-specificity */
|
|
11423
11451
|
.theme-bg-light {
|
|
11424
11452
|
--scrollbar-color: 0, 0, 0;
|
|
11425
11453
|
scrollbar-color: rgba(26, 23, 26, 0.5) rgba(26, 23, 26, 0.3);
|
|
@@ -11476,18 +11504,36 @@ input[type=number]::-webkit-inner-spin-button {
|
|
|
11476
11504
|
.custom-select {
|
|
11477
11505
|
background-color: inherit !important;
|
|
11478
11506
|
color: #f0f0ee;
|
|
11479
|
-
background-image:
|
|
11480
|
-
background-size:
|
|
11507
|
+
background-image: var(--dh-svg-icon-select-indicator), linear-gradient(0deg, #555356, #555356);
|
|
11508
|
+
background-size: 10px 6px, cover;
|
|
11509
|
+
background-position-x: right 0.75rem, center;
|
|
11510
|
+
background-position-y: bottom 50%, center;
|
|
11481
11511
|
background-repeat: no-repeat;
|
|
11482
|
-
background-position: bottom 50% right 0.75rem, center;
|
|
11483
11512
|
}
|
|
11484
11513
|
.custom-select:-moz-focusring {
|
|
11485
11514
|
color: rgba(0, 0, 0, 0);
|
|
11486
11515
|
text-shadow: 0 0 0 #f0f0ee !important;
|
|
11487
11516
|
}
|
|
11517
|
+
.custom-select:hover {
|
|
11518
|
+
background-image: var(--dh-svg-icon-select-indicator-hover), linear-gradient(0deg, #555356, #555356);
|
|
11519
|
+
}
|
|
11520
|
+
.custom-select.is-invalid, .custom-select.is-invalid:focus {
|
|
11521
|
+
background-image: var(--dh-svg-icon-select-indicator), var(--dh-svg-icon-error), linear-gradient(0deg, #555356, #555356);
|
|
11522
|
+
background-size: 10px 6px, 16px, cover;
|
|
11523
|
+
background-position-x: right 0.75rem, right 1.75rem, center;
|
|
11524
|
+
}
|
|
11525
|
+
.custom-select.is-invalid:hover {
|
|
11526
|
+
background-image: var(--dh-svg-icon-select-indicator-hover), var(--dh-svg-icon-error), linear-gradient(0deg, #555356, #555356);
|
|
11527
|
+
}
|
|
11528
|
+
.custom-select:disabled {
|
|
11529
|
+
background-image: var(--dh-svg-icon-select-indicator), linear-gradient(0deg, #373438, #373438);
|
|
11530
|
+
}
|
|
11531
|
+
.custom-select:disabled.is-invalid {
|
|
11532
|
+
background-image: var(--dh-svg-icon-select-indicator), var(--dh-svg-icon-error), linear-gradient(0deg, #373438, #373438);
|
|
11533
|
+
}
|
|
11488
11534
|
|
|
11489
11535
|
.console-creator .custom-select {
|
|
11490
|
-
background-image:
|
|
11536
|
+
background-image: var(--dh-svg-icon-select-indicator), linear-gradient(0deg, #403e41, #403e41);
|
|
11491
11537
|
}
|
|
11492
11538
|
.console-creator .custom-select:-moz-focusring {
|
|
11493
11539
|
color: rgba(0, 0, 0, 0);
|
|
@@ -11495,7 +11541,7 @@ input[type=number]::-webkit-inner-spin-button {
|
|
|
11495
11541
|
}
|
|
11496
11542
|
|
|
11497
11543
|
.modal-dialog.theme-bg-light .custom-select {
|
|
11498
|
-
background-image:
|
|
11544
|
+
background-image: var(--dh-svg-icon-select-indicator), linear-gradient(0deg, #f0f0ee, #f0f0ee);
|
|
11499
11545
|
}
|
|
11500
11546
|
.modal-dialog.theme-bg-light .custom-select:-moz-focusring {
|
|
11501
11547
|
color: rgba(0, 0, 0, 0);
|