@vuu-ui/vuu-filters 0.8.5-debug → 0.8.6-debug

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.
Files changed (95) hide show
  1. package/cjs/index.js +16825 -3858
  2. package/cjs/index.js.map +4 -4
  3. package/esm/index.js +17079 -3918
  4. package/esm/index.js.map +4 -4
  5. package/index.css +2157 -11
  6. package/index.css.map +3 -3
  7. package/package.json +7 -7
  8. package/types/vuu-data/src/array-data-source/array-data-source.d.ts +65 -0
  9. package/types/vuu-data/src/array-data-source/group-utils.d.ts +10 -0
  10. package/types/vuu-data/src/array-data-source/sort-utils.d.ts +4 -0
  11. package/types/vuu-data/src/authenticate.d.ts +1 -0
  12. package/types/vuu-data/src/connection-manager.d.ts +46 -0
  13. package/types/vuu-data/src/connectionTypes.d.ts +5 -0
  14. package/types/vuu-data/src/constants.d.ts +41 -0
  15. package/types/vuu-data/src/data-source.d.ts +172 -0
  16. package/types/vuu-data/src/index.d.ts +10 -0
  17. package/types/vuu-data/src/inlined-worker.d.ts +1 -0
  18. package/types/vuu-data/src/json-data-source.d.ts +53 -0
  19. package/types/vuu-data/src/message-utils.d.ts +26 -0
  20. package/types/vuu-data/src/remote-data-source.d.ts +56 -0
  21. package/types/vuu-data/src/server-proxy/messages.d.ts +43 -0
  22. package/types/vuu-data/src/vuuUIMessageTypes.d.ts +202 -0
  23. package/types/vuu-data/src/websocket-connection.d.ts +25 -0
  24. package/types/vuu-data-react/src/hooks/index.d.ts +6 -0
  25. package/types/vuu-data-react/src/hooks/useDataSource.d.ts +24 -0
  26. package/types/vuu-data-react/src/hooks/useServerConnectionQuality.d.ts +1 -0
  27. package/types/vuu-data-react/src/hooks/useServerConnectionStatus.d.ts +1 -0
  28. package/types/vuu-data-react/src/hooks/useTypeaheadSuggestions.d.ts +4 -0
  29. package/types/vuu-data-react/src/hooks/useVuuMenuActions.d.ts +57 -0
  30. package/types/vuu-data-react/src/hooks/useVuuTables.d.ts +2 -0
  31. package/types/vuu-data-react/src/index.d.ts +1 -0
  32. package/types/vuu-filters/src/filter-bar/FilterBar.d.ts +9 -0
  33. package/types/vuu-filters/src/filter-bar/index.d.ts +1 -0
  34. package/types/vuu-filters/src/filter-clause/ExpandoCombobox.d.ts +6 -0
  35. package/types/vuu-filters/src/filter-clause/FilterClauseEditor.d.ts +13 -0
  36. package/types/vuu-filters/src/filter-clause/FilterMenu.d.ts +11 -0
  37. package/types/vuu-filters/src/filter-clause/FilterMenuOptions.d.ts +6 -0
  38. package/types/vuu-filters/src/filter-clause/NumericInput.d.ts +10 -0
  39. package/types/vuu-filters/src/filter-clause/TextInput.d.ts +11 -0
  40. package/types/vuu-filters/src/filter-clause/filterClauseTypes.d.ts +8 -0
  41. package/types/vuu-filters/src/filter-clause/index.d.ts +2 -0
  42. package/types/vuu-filters/src/filter-clause/operator-utils.d.ts +2 -0
  43. package/types/vuu-filters/src/filter-pill/FilterPill.d.ts +8 -0
  44. package/types/vuu-filters/src/filter-pill/index.d.ts +1 -0
  45. package/types/vuu-filters/src/filter-pill-menu/FilterPillMenu.d.ts +12 -0
  46. package/types/vuu-filters/src/filter-pill-menu/FilterPillMenuOptions.d.ts +10 -0
  47. package/types/vuu-filters/src/filter-pill-menu/index.d.ts +1 -0
  48. package/types/{filter-utils.d.ts → vuu-filters/src/filter-utils.d.ts} +2 -3
  49. package/types/{index.d.ts → vuu-filters/src/index.d.ts} +2 -1
  50. package/types/vuu-popups/src/dialog/Dialog.d.ts +7 -0
  51. package/types/vuu-popups/src/dialog/index.d.ts +1 -0
  52. package/types/vuu-popups/src/index.d.ts +5 -0
  53. package/types/vuu-popups/src/menu/ContextMenu.d.ts +15 -0
  54. package/types/vuu-popups/src/menu/MenuList.d.ts +43 -0
  55. package/types/vuu-popups/src/menu/context-menu-provider.d.ts +10 -0
  56. package/types/vuu-popups/src/menu/index.d.ts +4 -0
  57. package/types/vuu-popups/src/menu/key-code.d.ts +12 -0
  58. package/types/vuu-popups/src/menu/list-dom-utils.d.ts +4 -0
  59. package/types/vuu-popups/src/menu/use-cascade.d.ts +25 -0
  60. package/types/vuu-popups/src/menu/use-items-with-ids-next.d.ts +13 -0
  61. package/types/vuu-popups/src/menu/use-keyboard-navigation.d.ts +26 -0
  62. package/types/vuu-popups/src/menu/useContextMenu.d.ts +13 -0
  63. package/types/vuu-popups/src/menu/utils.d.ts +2 -0
  64. package/types/vuu-popups/src/popup/index.d.ts +1 -0
  65. package/types/vuu-popups/src/popup/popup-service.d.ts +55 -0
  66. package/types/vuu-popups/src/popup-menu/PopupMenu.d.ts +14 -0
  67. package/types/vuu-popups/src/popup-menu/index.d.ts +1 -0
  68. package/types/vuu-popups/src/portal/Portal.d.ts +8 -0
  69. package/types/vuu-popups/src/portal/index.d.ts +3 -0
  70. package/types/vuu-popups/src/portal/portal-utils.d.ts +1 -0
  71. package/types/vuu-popups/src/portal/render-portal.d.ts +10 -0
  72. package/types/filter-clause/FilterClause.d.ts +0 -13
  73. package/types/filter-clause/NumericInput.d.ts +0 -10
  74. package/types/filter-clause/TextInput.d.ts +0 -12
  75. package/types/filter-clause/index.d.ts +0 -1
  76. package/types/filter-toolbar/FilterDropdown.d.ts +0 -8
  77. package/types/filter-toolbar/FilterDropdownMultiSelect.d.ts +0 -8
  78. package/types/filter-toolbar/FilterToolbar.d.ts +0 -9
  79. package/types/filter-toolbar/index.d.ts +0 -1
  80. package/types/filter-toolbar/useFilterToolbar.d.ts +0 -7
  81. package/types/operator-utils.d.ts +0 -21
  82. /package/types/{column-filter → vuu-filters/src/column-filter}/utils.d.ts +0 -0
  83. /package/types/{filter-clause → vuu-filters/src/filter-clause}/CloseButton.d.ts +0 -0
  84. /package/types/{filter-input → vuu-filters/src/filter-input}/FilterInput.d.ts +0 -0
  85. /package/types/{filter-input → vuu-filters/src/filter-input}/FilterLanguage.d.ts +0 -0
  86. /package/types/{filter-input → vuu-filters/src/filter-input}/filterInfo.d.ts +0 -0
  87. /package/types/{filter-input → vuu-filters/src/filter-input}/highlighting.d.ts +0 -0
  88. /package/types/{filter-input → vuu-filters/src/filter-input}/index.d.ts +0 -0
  89. /package/types/{filter-input → vuu-filters/src/filter-input}/theme.d.ts +0 -0
  90. /package/types/{filter-input → vuu-filters/src/filter-input}/useCodeMirrorEditor.d.ts +0 -0
  91. /package/types/{filter-input → vuu-filters/src/filter-input}/useFilterAutoComplete.d.ts +0 -0
  92. /package/types/{filter-input → vuu-filters/src/filter-input}/useFilterSuggestionProvider.d.ts +0 -0
  93. /package/types/{local-config.d.ts → vuu-filters/src/local-config.d.ts} +0 -0
  94. /package/types/{use-filter-config.d.ts → vuu-filters/src/use-filter-config.d.ts} +0 -0
  95. /package/types/{use-rest-config.d.ts → vuu-filters/src/use-rest-config.d.ts} +0 -0
package/index.css CHANGED
@@ -1,3 +1,2160 @@
1
+ /* ../vuu-shell/src/connection-status/ConnectionStatusIcon.css */
2
+ .vuuStatus-container {
3
+ display: flex;
4
+ }
5
+ .vuuStatus-text {
6
+ align-self: center;
7
+ }
8
+ .vuuStatus {
9
+ --vuu-icon-height: 18px;
10
+ --vuu-icon-padding: var(--vuuStatus-padding, 6px);
11
+ --vuu-icon-width: var(--vuuStatus-width, auto);
12
+ --vuu-icon-min-width: var(--vuuStatus-min-width, 20px);
13
+ align-items: center;
14
+ display: inline-flex;
15
+ height: var(--vuu-icon-height);
16
+ justify-content: center;
17
+ min-width: var(--vuu-icon-min-width);
18
+ padding: 0 var(--vuu-icon-padding);
19
+ width: var(--vuu-icon-width);
20
+ position: relative;
21
+ }
22
+ .vuuStatus[data-icon]::after {
23
+ inset: 0 0 0 0;
24
+ content: "";
25
+ box-shadow: 0 0 0 0 black;
26
+ position: absolute;
27
+ mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
28
+ -webkit-mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
29
+ }
30
+ .vuuActiveStatus::after {
31
+ --vuu-icon-svg: var(--svg-active-status);
32
+ background-color: rgb(0, 255, 0);
33
+ }
34
+ .vuuConnectingStatus::after {
35
+ --vuu-icon-svg: var(--svg-connecting-status);
36
+ background-color: orange;
37
+ transform: scale(1);
38
+ animation: infinite pulse 1s;
39
+ }
40
+ .vuuDisconnectedStatus::after {
41
+ --vuu-icon-svg: var(--svg-disconnected-status);
42
+ background-color: red;
43
+ transform: scale(1);
44
+ animation: infinite pulse 0.5s;
45
+ }
46
+ @keyframes pulse {
47
+ 0% {
48
+ transform: scale(0.95);
49
+ box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
50
+ }
51
+ 70% {
52
+ transform: scale(1);
53
+ box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
54
+ }
55
+ 100% {
56
+ transform: scale(0.95);
57
+ box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
58
+ }
59
+ }
60
+
61
+ /* ../vuu-layout/src/dock-layout/Drawer.css */
62
+ .vuuDrawer {
63
+ --drawer-leading-edge-border: solid 1px var(--salt-container-primary-borderColor, none);
64
+ --vuu-close-icon-svg: var(--svg-chevron-double-right);
65
+ transition: flex-basis;
66
+ transition-duration: var(--drawer-transition-duration);
67
+ position: relative;
68
+ z-index: 1;
69
+ flex-basis: 0;
70
+ flex-grow: 1;
71
+ flex-shrink: 1;
72
+ min-width: 0;
73
+ min-height: 0;
74
+ display: flex;
75
+ }
76
+ .vuuDrawer-peekaboo {
77
+ flex-basis: var(--drawer-peek-size);
78
+ flex-grow: 0;
79
+ flex-shrink: 0;
80
+ }
81
+ .vuuDrawer-inline.vuuDrawer-open {
82
+ flex-basis: var(--drawer-size);
83
+ flex-grow: 0;
84
+ flex-shrink: 0;
85
+ }
86
+ .vuuDrawer-liner {
87
+ background-color: var(--drawer-bg);
88
+ overflow: hidden;
89
+ position: relative;
90
+ }
91
+ .vuuDrawer-content {
92
+ height: 100%;
93
+ overflow: hidden;
94
+ position: absolute;
95
+ top: 0;
96
+ right: var(--drawer-peek-size);
97
+ transition: right;
98
+ transition-duration: var(--drawer-transition-duration);
99
+ width: 100%;
100
+ flex: 1 1 100%;
101
+ }
102
+ .vuuDrawer-open .vuuDrawer-content {
103
+ right: 0;
104
+ }
105
+ .vuuDrawer-left {
106
+ border-right: var(--drawer-leading-edge-border);
107
+ }
108
+ .vuuDrawer-right {
109
+ border-left: var(--drawer-leading-edge-border);
110
+ }
111
+ .vuuDrawer-top {
112
+ border-bottom: var(--drawer-leading-edge-border);
113
+ }
114
+ .vuuDrawer-bottom {
115
+ border-top: var(--drawer-leading-edge-border);
116
+ }
117
+ .vuuDrawer-left .vuuDrawer-liner,
118
+ .vuuDrawer-right .vuuDrawer-liner {
119
+ height: 100%;
120
+ transition: width;
121
+ }
122
+ .vuuDrawer-top .vuuDrawer-liner,
123
+ .vuuDrawer-bottom .vuuDrawer-liner {
124
+ width: 100%;
125
+ transition: height;
126
+ }
127
+ .vuuDrawer-inline .vuuDrawer-liner {
128
+ width: 100%;
129
+ height: 100%;
130
+ }
131
+ .vuuDrawer-over .vuuDrawer-liner {
132
+ position: absolute;
133
+ transition-duration: 0.4s;
134
+ }
135
+ .vuuDrawer-over.vuuDrawer-left .vuuDrawer-liner {
136
+ top: 0;
137
+ left: 0;
138
+ width: 0;
139
+ }
140
+ .vuuDrawer-over.vuuDrawer-right .vuuDrawer-liner {
141
+ top: 0;
142
+ right: 0;
143
+ width: 0;
144
+ }
145
+ .vuuDrawer-over.vuuDrawer-top .vuuDrawer-liner {
146
+ height: 0;
147
+ top: 0;
148
+ left: 0;
149
+ }
150
+ .vuuDrawer-over.vuuDrawer-bottom .vuuDrawer-liner {
151
+ bottom: 0;
152
+ height: 0;
153
+ left: 0;
154
+ }
155
+ .vuuDrawer-left.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,
156
+ .vuuDrawer-right.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner {
157
+ width: var(--drawer-peek-size);
158
+ }
159
+ .vuuDrawer-top.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,
160
+ .vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner {
161
+ height: var(--drawer-peek-size);
162
+ }
163
+ .vuuDrawer-left.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,
164
+ .vuuDrawer-right.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner {
165
+ width: var(--drawer-size);
166
+ }
167
+ .vuuDrawer-top.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,
168
+ .vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner {
169
+ height: var(--drawer-size);
170
+ }
171
+ .vuuDrawer-top,
172
+ .vuuDrawer-left {
173
+ order: 0;
174
+ }
175
+ .vuuDrawer-bottom,
176
+ .vuuDrawer-right {
177
+ order: 99;
178
+ }
179
+ .vuuDrawer-left,
180
+ .vuuDrawer-right {
181
+ flex-direction: column;
182
+ }
183
+ .vuuToggleButton-container {
184
+ --saltButton-height: 28px;
185
+ --saltButton-width: 28px;
186
+ --vuu-icon-size: 12px;
187
+ flex: 0 0 28px;
188
+ }
189
+ .vuuDrawer-open {
190
+ --vuu-close-icon-svg: var(--svg-chevron-double-left);
191
+ }
192
+
193
+ /* ../vuu-layout/src/dock-layout/DockLayout.css */
194
+ .vuuDockLayout {
195
+ --chest-bg: var(--hw-chest-bg, inherit);
196
+ --drawer-bg: var(--hw-drawer-bg, inherit);
197
+ --drawer-size: var(--hw-drawer-size, 200px);
198
+ --drawer-peek-size: var(--hw-drawer-peek-size, 32px);
199
+ --drawer-transition-duration: var(--hw-drawer-transition-duration, 0.4s);
200
+ background-color: var(--chest-bg);
201
+ display: flex;
202
+ }
203
+ .vuuDockLayout-horizontal {
204
+ flex-direction: row;
205
+ }
206
+ .vuuDockLayout-vertical {
207
+ flex-direction: column;
208
+ }
209
+ .vuuDockLayout-content {
210
+ background-color: var(--chest-bg);
211
+ flex-grow: 1;
212
+ flex-shrink: 1;
213
+ overflow: hidden;
214
+ display: flex;
215
+ align-items: center;
216
+ justify-content: center;
217
+ }
218
+ .vuuDockLayout-horizontal .vuuDockLayout-content {
219
+ flex-basis: 100%;
220
+ }
221
+ .vuuDockLayout-vertical .vuuDockLayout-content {
222
+ flex-basis: 100%;
223
+ }
224
+
225
+ /* ../vuu-layout/src/Component.css */
226
+
227
+ /* ../vuu-layout/src/drag-drop/DropMenu.css */
228
+ .vuuDropMenu {
229
+ margin-left: -50%;
230
+ margin-bottom: -50%;
231
+ background-color: white;
232
+ border: solid 1px var(--grey40);
233
+ display: inline-flex;
234
+ justify-content: center;
235
+ align-items: center;
236
+ padding: 3px;
237
+ border-radius: 3px;
238
+ }
239
+ .vuuDropMenu-left,
240
+ .vuuDropMenu-right {
241
+ flex-direction: column;
242
+ }
243
+ .vuuDropMenu-bottom {
244
+ transform: translate(0, -30px);
245
+ }
246
+ .vuuDropMenu-right {
247
+ transform: translate(-20px, 0);
248
+ }
249
+ .vuuDropMenu-item {
250
+ --vuu-icon-size: 20px;
251
+ width: 32px;
252
+ height: 32px;
253
+ background-color: var(--grey20);
254
+ border-bottom: solid 1px var(--grey40);
255
+ cursor: pointer;
256
+ display: flex;
257
+ align-items: center;
258
+ justify-content: center;
259
+ }
260
+ .vuuDropMenu-item .Icon {
261
+ transform: scale(1.25);
262
+ transform-origin: center center;
263
+ }
264
+ .vuuDropMenu-left .vuuDropMenu-item .hwIcon {
265
+ transform: scale(1.25) rotate(180deg);
266
+ transform-origin: center center;
267
+ }
268
+ .vuuDropMenu-top .vuuDropMenu-item .hwIcon {
269
+ transform: scale(1.25) rotate(270deg);
270
+ transform-origin: center center;
271
+ }
272
+ .vuuDropMenu-bottom .vuuDropMenu-item .hwIcon {
273
+ transform: scale(1.25) rotate(90deg);
274
+ transform-origin: center center;
275
+ }
276
+ .vuuDropMenu-item .hwIcon-path {
277
+ fill: grey;
278
+ }
279
+ .vuuDropMenu-item:hover {
280
+ background-color: rgba(200, 200, 200, 0.5);
281
+ }
282
+ .vuuDropMenu-item:hover .hwIcon-path-2 {
283
+ fill: blue;
284
+ }
285
+ .vuuDropMenu-item:last-child {
286
+ border-bottom: none;
287
+ }
288
+
289
+ /* ../vuu-layout/src/drag-drop/DropTargetRenderer.css */
290
+ #hw-drag-canvas {
291
+ visibility: hidden;
292
+ z-index: 1;
293
+ position: absolute;
294
+ top: 0px;
295
+ left: 0;
296
+ right: 0;
297
+ bottom: 0;
298
+ background-color: transparent;
299
+ }
300
+ #hw-drag-canvas > svg {
301
+ position: absolute;
302
+ }
303
+ .drawing #hw-drag-canvas {
304
+ visibility: visible;
305
+ }
306
+ path.drop-target {
307
+ stroke: blue;
308
+ stroke-width: 4px;
309
+ fill: transparent;
310
+ }
311
+ path.drop-target.centre {
312
+ stroke: red;
313
+ }
314
+ #vuu-drop-outline {
315
+ fill: rgba(0, 0, 255, .3);
316
+ stroke: none;
317
+ stroke-dasharray: 4 2;
318
+ }
319
+ #hw-drop-guides {
320
+ fill: none;
321
+ stroke: rgba(0, 0, 0, 0.3);
322
+ stroke-dasharray: 2 3;
323
+ }
324
+
325
+ /* ../vuu-layout/src/DraggableLayout.css */
326
+ .DraggableLayout {
327
+ display: inline-block;
328
+ outline: none;
329
+ }
330
+ [data-dragging=true] {
331
+ position: absolute !important;
332
+ z-index: 100;
333
+ }
334
+ .vuuSimpleDraggableWrapper {
335
+ background-color: white;
336
+ box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2);
337
+ }
338
+ .vuuSimpleDraggableWrapper > * {
339
+ height: 100%;
340
+ width: 100%;
341
+ }
342
+
343
+ /* ../vuu-layout/src/placeholder/Placeholder.css */
344
+ .vuuPlaceholder {
345
+ flex-basis: 0;
346
+ flex-grow: 1;
347
+ flex-shrink: 1;
348
+ }
349
+ .vuuPlaceholder-shim {
350
+ flex-grow: 0;
351
+ flex-shrink: 0;
352
+ }
353
+
354
+ /* ../vuu-layout/src/flexbox/Splitter.css */
355
+ .Splitter {
356
+ --splitter-size: 3px;
357
+ --splitter-border-width: 4px;
358
+ --splitter-border-style: none;
359
+ --splitter-border-color: white;
360
+ align-items: center;
361
+ background-color: var(--salt-palette-neutral-secondary-separator);
362
+ border-color: var(--splitter-border-color);
363
+ border-style: var(--splitter-border-style);
364
+ box-sizing: border-box;
365
+ display: flex;
366
+ justify-content: center;
367
+ position: relative;
368
+ outline: none;
369
+ z-index: 1;
370
+ }
371
+ .Splitter:hover {
372
+ background-color: var(--salt-palette-neutral-primary-separator);
373
+ }
374
+ .active.Splitter {
375
+ background-color: var(--salt-palette-interact-outline);
376
+ }
377
+ .Splitter.column {
378
+ cursor: ns-resize;
379
+ height: var(--splitter-size);
380
+ border-width: var(--splitter-border-width) 0;
381
+ }
382
+ .Splitter:not(.column) {
383
+ cursor: ew-resize;
384
+ width: var(--splitter-size);
385
+ border-width: 0 var(--splitter-border-width);
386
+ }
387
+ .Splitter:before {
388
+ border: none;
389
+ border-radius: 0;
390
+ content: "";
391
+ display: block;
392
+ padding: 0;
393
+ }
394
+ .Splitter .grab-zone {
395
+ position: absolute;
396
+ background-color: rgba(255, 0, 0, 0.01);
397
+ cursor: inherit;
398
+ }
399
+ .Splitter.column .grab-zone {
400
+ left: 0;
401
+ right: 0;
402
+ top: -5px;
403
+ bottom: -5px;
404
+ }
405
+ .Splitter:not(.column) .grab-zone {
406
+ left: -5px;
407
+ right: -5px;
408
+ top: 0;
409
+ bottom: 0;
410
+ }
411
+ .active.Splitter:not(.column) .grab-zone {
412
+ background-color: rgba(255, 255, 255, .05);
413
+ left: -150px;
414
+ right: -150px;
415
+ }
416
+ .Splitter:not(.column):before {
417
+ width: 1px;
418
+ height: 10px;
419
+ background: linear-gradient(to bottom, var(--grey900) 10%, transparent 10%, transparent 30%, var(--grey900) 30%, var(--grey900) 40%, transparent 40%, transparent 60%, var(--grey900) 60%, var(--grey900) 70%, transparent 70%, transparent 90%, var(--grey900) 90%);
420
+ }
421
+ .active.Splitter.column:before {
422
+ background: linear-gradient(to right, #ffffff 10%, transparent 10%, transparent 30%, #ffffff 30%, #ffffff 40%, transparent 40%, transparent 60%, #ffffff 60%, #ffffff 70%, transparent 70%, transparent 90%, #ffffff 90%);
423
+ }
424
+ .active.Splitter:not(.column):before {
425
+ background: linear-gradient(to bottom, #ffffff 10%, transparent 10%, transparent 30%, #ffffff 30%, #ffffff 40%, transparent 40%, transparent 60%, #ffffff 60%, #ffffff 70%, transparent 70%, transparent 90%, #ffffff 90%);
426
+ }
427
+ .Splitter.column:before {
428
+ width: 10px;
429
+ height: 1px;
430
+ background: linear-gradient(to right, var(--grey900) 10%, transparent 10%, transparent 30%, var(--grey900) 30%, var(--grey900) 40%, transparent 40%, transparent 60%, var(--grey900) 60%, var(--grey900) 70%, transparent 70%, transparent 90%, var(--grey900) 90%);
431
+ }
432
+
433
+ /* ../vuu-layout/src/flexbox/Flexbox.css */
434
+ :root {
435
+ --hw-space-unit: 4px;
436
+ --hw-flex-gap: 3;
437
+ --hw-fluid-grid-col-bg: rgba(200, 200, 200, 0.3);
438
+ }
439
+ .hwFlexbox {
440
+ background-color: var(--container1-background);
441
+ box-sizing: border-box;
442
+ display: flex;
443
+ gap: calc(var(--spacing) * var(--space));
444
+ min-height: 0;
445
+ min-width: 0;
446
+ overflow: hidden;
447
+ }
448
+ .hwFlexbox-column {
449
+ flex-direction: column;
450
+ }
451
+ .hwFlexbox-row {
452
+ flex-direction: row;
453
+ }
454
+ .hwFlexbox > .Splitter {
455
+ flex-basis: auto;
456
+ flex-grow: 0;
457
+ flex-shrink: 0;
458
+ }
459
+ .hwFlexbox.full-page {
460
+ height: 100vh;
461
+ width: 100vw;
462
+ }
463
+ .flex-fill {
464
+ border-color: red;
465
+ flex: 0;
466
+ flex-grow: 1;
467
+ flex-shrink: 1;
468
+ }
469
+ .vuuView.flex-fill {
470
+ border-color: red;
471
+ }
472
+
473
+ /* ../vuu-layout/src/flexbox/FluidGrid.css */
474
+ :root {
475
+ --hw-space-unit: 4px;
476
+ --hw-fluid-grid-col-bg: rgba(252, 209, 232, 0.7);
477
+ }
478
+ .hwFluidGrid {
479
+ --gap: var(--gutter-width);
480
+ display: flex;
481
+ gap: calc(var(--grid-gap) * var(--hw-space-unit));
482
+ flex-wrap: wrap;
483
+ padding: 0;
484
+ }
485
+ .hwFluidGrid > * {
486
+ --gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));
487
+ --gutter-count: calc(var(--parent-col-count) - 1);
488
+ --total-gutter-width: calc(var(--gutter-count) * var(--gutter-width));
489
+ --available-width: calc(100% - var(--total-gutter-width));
490
+ flex-basis: 0;
491
+ flex-grow: 1;
492
+ flex-shrink: 1;
493
+ position: relative;
494
+ }
495
+ .hwFluidGrid > *:after {
496
+ content: "";
497
+ position: absolute;
498
+ top: 0;
499
+ left: 0;
500
+ right: 0;
501
+ bottom: 0;
502
+ border: dashed 2px blue;
503
+ }
504
+ .hwFluidGrid > [data-xs] {
505
+ --internal-gutter-count: calc(var(--col-span) - 1);
506
+ --percent-width: calc(var(--col-span) / var(--parent-col-count));
507
+ --internal-gutter-width: calc(var(--internal-gutter-count) * var(--gutter-width));
508
+ flex-basis: calc(var(--available-width) * var(--percent-width) + var(--internal-gutter-width));
509
+ flex-grow: 0;
510
+ }
511
+ .hwFluidGrid > [data-xs="1"] {
512
+ --col-span: 1;
513
+ }
514
+ .hwFluidGrid > [data-xs="2"] {
515
+ --col-span: 2;
516
+ }
517
+ .hwFluidGrid > [data-xs="3"] {
518
+ --col-span: 3;
519
+ }
520
+ .hwFluidGrid > [data-xs="4"] {
521
+ --col-span: 4;
522
+ }
523
+ .hwFluidGrid > [data-xs="6"] {
524
+ --col-span: 6;
525
+ }
526
+ .hwFluidGrid > [data-xs="8"] {
527
+ --col-span: 8;
528
+ }
529
+ .hwFluidGrid > [data-xs="9"] {
530
+ --col-span: 9;
531
+ }
532
+ .hwFluidGrid > [data-xs="10"] {
533
+ --col-span: 10;
534
+ }
535
+ .hwFluidGrid > [data-xs="11"] {
536
+ --col-span: 11;
537
+ }
538
+ .hwFluidGrid > [data-xs="12"] {
539
+ --col-span: 12;
540
+ }
541
+ @media (min-width: 600px) {
542
+ .hwFluidGrid > [data-sm="1"] {
543
+ --col-span: 1;
544
+ }
545
+ .hwFluidGrid > [data-sm="2"] {
546
+ --col-span: 2;
547
+ }
548
+ .hwFluidGrid > [data-sm="3"] {
549
+ --col-span: 3;
550
+ }
551
+ .hwFluidGrid > [data-sm="4"] {
552
+ --col-span: 4;
553
+ }
554
+ .hwFluidGrid > [data-sm="6"] {
555
+ --col-span: 6;
556
+ }
557
+ .hwFluidGrid > [data-sm="8"] {
558
+ --col-span: 8;
559
+ }
560
+ .hwFluidGrid > [data-sm="9"] {
561
+ --col-span: 9;
562
+ }
563
+ .hwFluidGrid > [data-sm="10"] {
564
+ --col-span: 10;
565
+ }
566
+ .hwFluidGrid > [data-sm="11"] {
567
+ --col-span: 11;
568
+ }
569
+ .hwFluidGrid > [data-sm="12"] {
570
+ --col-span: 12;
571
+ }
572
+ }
573
+ .hwFluidGrid-show-grid {
574
+ --gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));
575
+ --grid-gutter-count: calc(var(--grid-col-count, var(--parent-col-count)) - 1);
576
+ --grid-total-gutter-width: calc(var(--grid-gutter-count) * var(--gutter-width));
577
+ --grid-available-width: calc(100% - var(--grid-total-gutter-width));
578
+ --grid-percent-width: calc(1 / var(--grid-col-count, var(--parent-col-count)));
579
+ --column-width: calc(var(--grid-available-width) * var(--grid-percent-width));
580
+ background: repeating-linear-gradient(to right, var(--hw-fluid-grid-col-bg) 0, var(--hw-fluid-grid-col-bg) var(--column-width), white var(--column-width), white calc(var(--column-width) + var(--gutter-width)));
581
+ }
582
+
583
+ /* ../vuu-layout/src/layout-view/View.css */
584
+ .vuuView {
585
+ border-color: var(--vuuView-borderColor, var(--salt-container-primary-borderColor));
586
+ border-width: var(--vuuView-borderWidth, 1px);
587
+ border-style: var(--vuuView-borderStyle, none);
588
+ display: flex;
589
+ flex-direction: column;
590
+ margin: var(--vuuView-margin, 0px);
591
+ min-height: 50px;
592
+ min-width: 50px;
593
+ outline: none;
594
+ overflow: hidden;
595
+ position: relative;
596
+ }
597
+ .vuuView.focus-visible:after {
598
+ content: "";
599
+ position: absolute;
600
+ top: 0;
601
+ left: 0;
602
+ right: 0;
603
+ bottom: 0;
604
+ border: dotted cornflowerblue 2px;
605
+ }
606
+ .vuuView.dragging {
607
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
608
+ }
609
+ .vuuView-main {
610
+ display: flex;
611
+ flex-direction: var(--vuuView-flexDirection, column);
612
+ flex-wrap: var(--vuuView-flex-wrap, nowrap);
613
+ flex: 1;
614
+ overflow: hidden;
615
+ position: relative;
616
+ }
617
+ .vuuView-main > * {
618
+ flex-basis: auto;
619
+ flex-grow: var(--vuuView-flex-grow, 1);
620
+ flex-shrink: var(--vuuView-flex-shrink, 1);
621
+ }
622
+ .vuuView-collapsed .vuuView-main {
623
+ display: none;
624
+ }
625
+ .vuuView-collapsed + .Splitter {
626
+ display: none;
627
+ }
628
+ .vuuView-collapsed .Toolbar-vertical {
629
+ border-right: solid 1px var(--grey40);
630
+ }
631
+ .vuuView-collapsed .Toolbar-vertical .toolbar-title {
632
+ display: none;
633
+ }
634
+
635
+ /* ../vuu-layout/src/layout-header/Header.css */
636
+ .vuuHeader {
637
+ --saltButton-height: 24px;
638
+ --saltButton-width: 24px;
639
+ }
640
+ .salt-density-high .vuuHeader {
641
+ --saltToolbarField-marginTop: 0;
642
+ }
643
+
644
+ /* ../vuu-layout/src/overflow-container/OverflowContainer.css */
645
+ .vuuOverflowContainer {
646
+ --item-gap: 4px;
647
+ --overflow-direction: row;
648
+ --overflow-width: 0px;
649
+ --overflow-order: 99;
650
+ --border-size: calc((var(--overflow-container-height) - 24px) / 2);
651
+ background-color: var(--vuuOverflowContainer-background, black);
652
+ height: var(--overflow-container-height);
653
+ }
654
+ .vuuOverflowContainer-horizontal {
655
+ --item-align: center;
656
+ --item-margin: 0 0 0 var(--item-gap);
657
+ }
658
+ .vuuOverflowContainer-vertical {
659
+ --item-align: stretch;
660
+ --item-margin: var(--item-gap) 0 0 0;
661
+ --overflow-direction: column;
662
+ }
663
+ .vuuOverflowContainer-wrapContainer {
664
+ align-items: var(--item-align);
665
+ display: flex;
666
+ flex-direction: var(--overflow-direction);
667
+ flex-wrap: wrap;
668
+ height: var(--overflow-container-height);
669
+ min-width: 44px;
670
+ overflow: hidden;
671
+ position: relative;
672
+ width: 100%;
673
+ }
674
+ .vuuOverflowContainer-wrapContainer.overflowed {
675
+ --overflow-order: 2;
676
+ --overflow-left: auto;
677
+ --overflow-position: relative;
678
+ --overflow-width: auto;
679
+ }
680
+ .vuuOverflowContainer-item:first-child {
681
+ --item-gap: 0;
682
+ }
683
+ .vuuOverflowContainer-item:first-child {
684
+ --item-margin: 0;
685
+ }
686
+ .vuuOverflowContainer-item {
687
+ align-items: inherit;
688
+ display: flex;
689
+ order: 1;
690
+ position: relative;
691
+ height: var(--overflow-container-height);
692
+ margin: var(--item-margin);
693
+ }
694
+ .vuuOverflowContainer-item.wrapped {
695
+ --overflow-item-bg: #ccc;
696
+ order: 3;
697
+ }
698
+ .vuuOverflowContainer-item:has(.vuuDraggable-dragAway) {
699
+ display: none;
700
+ }
701
+ .vuuOverflowContainer-item.vuuDropTarget-settling {
702
+ visibility: hidden;
703
+ }
704
+ .vuuOverflowContainer-OverflowIndicator {
705
+ align-items: center;
706
+ background-color: transparent;
707
+ display: flex;
708
+ height: var(--overflow-container-height);
709
+ height: var(--overflow-container-height);
710
+ order: var(--overflow-order);
711
+ overflow: hidden;
712
+ left: var(--overflow-left, 100%);
713
+ position: var(--overflow-position, absolute);
714
+ width: var(--overflow-width);
715
+ }
716
+
717
+ /* ../vuu-layout/src/palette/Palette.css */
718
+ .vuuPalette-horizontal {
719
+ align-items: center;
720
+ display: flex;
721
+ }
722
+ .vuuPaletteItem {
723
+ --vuu-icon-color: var(--salt-separable-primary-borderColor);
724
+ --vuu-icon-inset: calc(50% - 12px) auto auto -3px;
725
+ --vuu-icon-height: 24px;
726
+ --vuu-icon-width: 24px;
727
+ --list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3);
728
+ }
729
+ .vuuPaletteItem[data-draggable]:after {
730
+ height: 22px;
731
+ width: 6px;
732
+ content: "";
733
+ position: absolute;
734
+ background-image:
735
+ linear-gradient(45deg, rgb(180, 183, 190) 25%, transparent 25%),
736
+ linear-gradient(-45deg, rgb(180, 183, 190) 25%, transparent 25%),
737
+ linear-gradient(45deg, transparent 75%, rgb(180, 183, 190) 25%),
738
+ linear-gradient(-45deg, transparent 75%, rgb(180, 183, 190) 25%);
739
+ background-size: 4px 4px;
740
+ background-position:
741
+ 0 0,
742
+ 2px 0,
743
+ 2px -2px,
744
+ 0 2px;
745
+ }
746
+ .vuuSimpleDraggableWrapper > .vuuPaletteItem {
747
+ --vuu-icon-color: var(--salt-selectable-foreground);
748
+ }
749
+
750
+ /* ../vuu-layout/src/stack/Stack.css */
751
+ .Tabs {
752
+ display: flex;
753
+ box-sizing: border-box;
754
+ flex-direction: column;
755
+ }
756
+ .Tabs-horizontal {
757
+ --vuu-tabs-border-style: none solid none none;
758
+ flex-direction: row;
759
+ }
760
+ .Tabs .Toolbar:before {
761
+ left: 0;
762
+ width: 100%;
763
+ bottom: 0;
764
+ height: 1px;
765
+ content: "";
766
+ position: absolute;
767
+ background: var(--grey60);
768
+ }
769
+ .vuuTabHeader {
770
+ --saltTabs-activationIndicator-background: transparent;
771
+ --saltToolbarField-marginTop: calc(var(--salt-size-unit) - 1px);
772
+ border-color: var(--salt-container-primary-borderColor);
773
+ border-style: var(--vuu-tabs-border-style, none none solid none);
774
+ border-width: 1px;
775
+ }
776
+ .vuuTabHeader + .hwFlexbox,
777
+ .vuuTabHeader + * {
778
+ flex: 1;
779
+ }
780
+ .vuuTabHeader + .vuuView > .vuuHeader {
781
+ height: 0;
782
+ overflow: hidden;
783
+ }
784
+ .Layout-svg-button {
785
+ --spacing-medium: 5px;
786
+ }
787
+
788
+ /* ../vuu-layout/src/tools/devtools-box/layout-configurator.css */
789
+ [data-design-mode=true] .Component {
790
+ filter: grayscale(100%);
791
+ opacity: 0.4;
792
+ }
793
+ [data-design-mode=true] .Component:after {
794
+ color: black;
795
+ content: "Component";
796
+ height: 12px;
797
+ background-color: yellow;
798
+ }
799
+ .LayoutConfigurator {
800
+ --margin-color: #f3cea5;
801
+ --border-color: #fddda0;
802
+ --padding-color: #c6d092;
803
+ --content-color: #8cb6c0;
804
+ display: flex;
805
+ flex-direction: column;
806
+ align-items: stretch;
807
+ background-color: var(--margin-color);
808
+ }
809
+ .LayoutConfigurator .layout-outer {
810
+ flex: 1 1 auto;
811
+ display: flex;
812
+ flex-direction: column;
813
+ align-items: stretch;
814
+ }
815
+ .LayoutBox {
816
+ --hw-control-font-size: 13px;
817
+ --hw-text-input-bg: rgba(255, 255, 255, 0.3);
818
+ --hwTextInput-padding: 3px;
819
+ --hw-text-input-position: absolute;
820
+ --hwTextInput-width: 30px;
821
+ flex: 1 1 auto;
822
+ }
823
+ .LayoutBox > .layout-top {
824
+ flex: 0 0 40px;
825
+ padding-left: 12px;
826
+ display: flex;
827
+ flex-direction: row;
828
+ align-items: center;
829
+ position: relative;
830
+ }
831
+ .LayoutBox > .layout-bottom {
832
+ flex: 0 0 40px;
833
+ position: relative;
834
+ display: flex;
835
+ flex-direction: row;
836
+ align-items: center;
837
+ }
838
+ .LayoutBox > .layout-inner > .layout-right,
839
+ .LayoutBox > .layout-inner > .layout-left {
840
+ flex: 0 0 40px;
841
+ display: flex;
842
+ flex-direction: column;
843
+ justify-content: center;
844
+ align-items: center;
845
+ }
846
+ .layout-top,
847
+ .layout-bottom {
848
+ --hw-text-input-margin: 0 0 0 -15px;
849
+ }
850
+ .layout-top > .layout-input,
851
+ .layout-bottom > .layout-input {
852
+ left: 50%;
853
+ }
854
+ .LayoutBox > .layout-inner {
855
+ flex: 1 1 auto;
856
+ display: flex;
857
+ flex-direction: row;
858
+ align-items: stretch;
859
+ }
860
+ .LayoutBox.layout-margin {
861
+ background-color: var(--margin-color);
862
+ border: dashed 2px black;
863
+ }
864
+ .LayoutBox.layout-border {
865
+ background-color: var(--border-color);
866
+ border: solid 2px black;
867
+ }
868
+ .LayoutBox.layout-padding {
869
+ background-color: var(--padding-color);
870
+ border: dashed 2px black;
871
+ }
872
+ .LayoutBox .layout-content {
873
+ flex: 1 1 auto;
874
+ background-color: var(--content-color);
875
+ border: solid 2px #808080;
876
+ }
877
+ .LayoutBox .layout-title {
878
+ color: #161616;
879
+ font-size: 11px;
880
+ left: 4px;
881
+ line-height: 15px;
882
+ position: absolute;
883
+ top: 1px;
884
+ }
885
+
886
+ /* ../vuu-layout/src/tools/devtools-tree/layout-tree-viewer.css */
887
+ .hwLayoutTreeViewer {
888
+ }
889
+ .hwLayoutTreeNode {
890
+ cursor: default;
891
+ }
892
+ .hwLayoutTreeNode:hover {
893
+ background-color: rgba(255, 255, 255, 0.2);
894
+ }
895
+ .hwLayoutTreeNode[aria-selected=true] {
896
+ background-color: cornflowerblue;
897
+ color: white;
898
+ }
899
+
900
+ /* ../vuu-shell/src/layout-management/SaveLayoutPanel.css */
901
+ .vuuSaveLayoutPanel {
902
+ background-color: aqua;
903
+ height: 400px;
904
+ width: 600px;
905
+ }
906
+
907
+ /* ../vuu-shell/src/left-nav/LeftNav.css */
908
+ .vuuLeftNav {
909
+ --salt-navigable-fontWeight-active: 700;
910
+ --vuuTab-background-selected: rgba(255, 255, 255, 0.10);
911
+ --vuuTab-hover-background: rgba(255, 255, 255, 0.10);
912
+ --vuuTab-before-content: none;
913
+ --vuuTab-borderRadius: 6px;
914
+ --vuuTab-height: 40px;
915
+ --vuuTab-padding: 0 0 0 48px;
916
+ --vuuTabstrip-fontWeight: 700;
917
+ --vuuTabstrip-width: 100%;
918
+ --svg-demo: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.3333 11C11.52 11 11.6667 10.8533 11.6667 10.6667C11.6667 10.48 11.52 10.3333 11.3333 10.3333C11.1467 10.3333 11 10.48 11 10.6667C11 10.8533 11.1467 11 11.3333 11Z"/><path d="M5.99999 8.66667C6.36818 8.66667 6.66666 8.36819 6.66666 8C6.66666 7.63181 6.36818 7.33334 5.99999 7.33334C5.63181 7.33334 5.33333 7.63181 5.33333 8C5.33333 8.36819 5.63181 8.66667 5.99999 8.66667Z"/><path d="M8.66667 6C9.03486 6 9.33333 5.70152 9.33333 5.33333C9.33333 4.96514 9.03486 4.66667 8.66667 4.66667C8.29848 4.66667 8 4.96514 8 5.33333C8 5.70152 8.29848 6 8.66667 6Z"/><path d="M8.66667 11.3333C9.03486 11.3333 9.33333 11.0349 9.33333 10.6667C9.33333 10.2985 9.03486 10 8.66667 10C8.29848 10 8 10.2985 8 10.6667C8 11.0349 8.29848 11.3333 8.66667 11.3333Z"/><path d="M11.3333 8.33333C11.52 8.33333 11.6667 8.18666 11.6667 8C11.6667 7.81333 11.52 7.66666 11.3333 7.66666C11.1467 7.66666 11 7.81333 11 8C11 8.18666 11.1467 8.33333 11.3333 8.33333Z"/><path d="M8.66667 8.66667C9.03486 8.66667 9.33333 8.36819 9.33333 8C9.33333 7.63181 9.03486 7.33334 8.66667 7.33334C8.29848 7.33334 8 7.63181 8 8C8 8.36819 8.29848 8.66667 8.66667 8.66667Z"/><path d="M2 2H14V3.33333H2V2Z"/><path d="M3.33333 6.33333C3.88561 6.33333 4.33333 5.88562 4.33333 5.33333C4.33333 4.78105 3.88561 4.33333 3.33333 4.33333C2.78104 4.33333 2.33333 4.78105 2.33333 5.33333C2.33333 5.88562 2.78104 6.33333 3.33333 6.33333Z"/><path d="M3.33333 9C3.88561 9 4.33333 8.55228 4.33333 8C4.33333 7.44772 3.88561 7 3.33333 7C2.78104 7 2.33333 7.44772 2.33333 8C2.33333 8.55228 2.78104 9 3.33333 9Z"/><path d="M3.33333 11.6667C3.88561 11.6667 4.33333 11.2189 4.33333 10.6667C4.33333 10.1144 3.88561 9.66666 3.33333 9.66666C2.78104 9.66666 2.33333 10.1144 2.33333 10.6667C2.33333 11.2189 2.78104 11.6667 3.33333 11.6667Z"/><path d="M11.3333 5.66667C11.52 5.66667 11.6667 5.52 11.6667 5.33333C11.6667 5.14667 11.52 5 11.3333 5C11.1467 5 11 5.14667 11 5.33333C11 5.52 11.1467 5.66667 11.3333 5.66667Z"/><path d="M5.99999 11.3333C6.36818 11.3333 6.66666 11.0349 6.66666 10.6667C6.66666 10.2985 6.36818 10 5.99999 10C5.63181 10 5.33333 10.2985 5.33333 10.6667C5.33333 11.0349 5.63181 11.3333 5.99999 11.3333Z"/><path d="M5.99999 6C6.36818 6 6.66666 5.70152 6.66666 5.33333C6.66666 4.96514 6.36818 4.66667 5.99999 4.66667C5.63181 4.66667 5.33333 4.96514 5.33333 5.33333C5.33333 5.70152 5.63181 6 5.99999 6Z"/><path d="M2 12.6667H14V14H2V12.6667Z"/></svg>');
919
+ --svg-tables: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 6H4.66667V3.33334H3.33333C2.6 3.33334 2 3.93334 2 4.66667V6ZM2 9.33334H4.66667V6.66667H2V9.33334ZM5.33333 9.33334H8V6.66667H5.33333V9.33334ZM8.66667 9.33334H11.3333V6.66667H8.66667V9.33334ZM5.33333 6H8V3.33334H5.33333V6ZM8.66667 3.33334V6H11.3333V3.33334H8.66667ZM12 9.33334H14.6667V6.66667H12V9.33334ZM3.33333 12.6667H4.66667V10H2V11.3333C2 12.0667 2.6 12.6667 3.33333 12.6667ZM5.33333 12.6667H8V10H5.33333V12.6667ZM8.66667 12.6667H11.3333V10H8.66667V12.6667ZM12 12.6667H13.3333C14.0667 12.6667 14.6667 12.0667 14.6667 11.3333V10H12V12.6667ZM12 3.33334V6H14.6667V4.66667C14.6667 3.93334 14.0667 3.33334 13.3333 3.33334H12Z"/></svg>');
920
+ --svg-templates: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15.3333 12.6667H14L14 3.33334H15.3333L15.3333 12.6667ZM12.6667 12.6667H11.3333L11.3333 3.33334H12.6667L12.6667 12.6667ZM1.33333 12.6667L9.33333 12.6667C9.69999 12.6667 9.99999 12.3667 9.99999 12V4.00001C9.99999 3.63334 9.69999 3.33334 9.33333 3.33334L1.33333 3.33334C0.966661 3.33334 0.666661 3.63334 0.666661 4.00001L0.666661 12C0.666661 12.3667 0.966661 12.6667 1.33333 12.6667ZM1.99999 4.66667L8.66666 4.66667V11.3333L1.99999 11.3333L1.99999 4.66667Z"/></svg>');
921
+ --svg-layouts: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15.3333 10H14V11.3333H15.3333V10ZM15.3333 12.6667H14V14H15.3333V12.6667ZM15.3333 7.33333H14V8.66667H15.3333V7.33333ZM10 2H8.66667V3.33333H10V2ZM15.3333 4.66667H14V6H15.3333V4.66667ZM0.666672 14H7.33334V10H0.666672V14ZM2.00001 4.66667H0.666672V6H2.00001V4.66667ZM10 12.6667H8.66667V14H10V12.6667ZM12.6667 2H11.3333V3.33333H12.6667V2ZM15.3333 2H14V3.33333H15.3333V2ZM12.6667 12.6667H11.3333V14H12.6667V12.6667ZM2.00001 7.33333H0.666672V8.66667H2.00001V7.33333ZM7.33334 2H6.00001V3.33333H7.33334V2ZM4.66667 2H3.33334V3.33333H4.66667V2ZM2.00001 2H0.666672V3.33333H2.00001V2Z"/></svg>');
922
+ --vuu-light-text-primary: #15171b;
923
+ display: flex;
924
+ transition: width .3s ease-in-out;
925
+ }
926
+ .vuuLeftNav-menu-full {
927
+ --menu-width: var(--nav-menu-expanded-width);
928
+ }
929
+ .vuuLeftNav-menu-icons {
930
+ --menu-width: var(--nav-menu-collapsed-width);
931
+ }
932
+ .vuuLeftNav-menu-content {
933
+ --menu-width: var(--nav-menu-collapsed-width);
934
+ }
935
+ .vuuLeftNav-menu-content .vuuLeftNav-menu-secondary {
936
+ display: block;
937
+ }
938
+ .vuuLeftNav-menu-primary {
939
+ background-color: #2A015F;
940
+ container-type: inline-size;
941
+ display: flex;
942
+ flex-direction: column;
943
+ height: 100%;
944
+ padding: 32px 16px;
945
+ transition: width ease .3s;
946
+ width: var(--menu-width, 100%);
947
+ }
948
+ .vuuLeftNav-menu-secondary {
949
+ flex: 1 1 auto;
950
+ height: 100%;
951
+ display: none;
952
+ }
953
+ .vuuLeftNav .vuuTabstrip {
954
+ margin-top: 102px;
955
+ }
956
+ .vuuLeftNav .vuuTab {
957
+ --vuuTab-focusVisible-color: pink;
958
+ --vuu-icon-color: white;
959
+ --vuu-icon-left: 12px;
960
+ --vuu-icon-size: 16px;
961
+ border-left: solid 4px transparent;
962
+ }
963
+ .vuuLeftNav .vuuTab-selected {
964
+ --vuu-icon-color: var(--salt-navigable-indicator-active);
965
+ border-left: solid 4px var(--salt-navigable-indicator-active);
966
+ }
967
+ .vuuLeftNav-logo {
968
+ display: flex;
969
+ flex: 0 0 auto;
970
+ justify-content: center;
971
+ }
972
+ .vuuLeftNav-main {
973
+ flex: 1 1 auto;
974
+ }
975
+ .vuuLeftNav-menu {
976
+ color: white;
977
+ margin-top: 102px;
978
+ padding: 0;
979
+ }
980
+ .vuuLeftNav [data-icon=demo] {
981
+ --vuu-icon-svg: var(--svg-demo);
982
+ }
983
+ .vuuLeftNav [data-icon=tables] {
984
+ --vuu-icon-svg: var(--svg-tables);
985
+ }
986
+ .vuuLeftNav [data-icon=templates] {
987
+ --vuu-icon-svg: var(--svg-templates);
988
+ }
989
+ .vuuLeftNav [data-icon=layouts] {
990
+ --vuu-icon-svg: var(--svg-layouts);
991
+ }
992
+ @container (max-width: 100px) {
993
+ .vuuTab {
994
+ --vuuTab-padding: 0 0 0 42px;
995
+ }
996
+ .vuuTab-main {
997
+ display: none !important;
998
+ }
999
+ }
1000
+ .vuuLeftNav-buttonBar {
1001
+ align-items: center;
1002
+ display: flex;
1003
+ flex: 0 0 100px;
1004
+ justify-content: center;
1005
+ }
1006
+ .vuuLeftNav-toggleButton {
1007
+ --vuu-icon-color: var(--vuu-light-text-primary);
1008
+ --vuu-icon-left: 11px;
1009
+ --vuu-icon-top: 10px;
1010
+ --vuu-icon-size: 16px;
1011
+ background-color: var(--salt-navigable-indicator-active);
1012
+ border-width: 0;
1013
+ border-radius: 18px;
1014
+ height: 36px;
1015
+ position: relative;
1016
+ width: 36px;
1017
+ }
1018
+ .vuuLeftNav-toggleButton-open {
1019
+ --vuu-icon-left: 9px;
1020
+ }
1021
+
1022
+ /* ../vuu-shell/src/login/LoginPanel.css */
1023
+ .vuuLoginPanel {
1024
+ --hwTextInput-border: solid 1px #ccc;
1025
+ --hwTextInput-height: 28px;
1026
+ --hwTextInput-padding: 0 12px;
1027
+ --hwTextInput-width: 100%;
1028
+ --login-row-height: 60px;
1029
+ align-content: center;
1030
+ align-items: center;
1031
+ border: solid 1px lightgray;
1032
+ display: flex;
1033
+ flex-direction: column;
1034
+ gap: 24px;
1035
+ justify-content: center;
1036
+ justify-items: center;
1037
+ margin: 0 auto;
1038
+ padding: 48px 48px 24px 48px;
1039
+ width: fit-content;
1040
+ }
1041
+ .vuuLoginPanel-login {
1042
+ grid-column: 2/3;
1043
+ align-self: end;
1044
+ justify-self: end;
1045
+ }
1046
+
1047
+ /* ../vuu-shell/src/session-editing-form/SessionEditingForm.css */
1048
+ .vuuSessionEditingForm {
1049
+ display: flex;
1050
+ flex-direction: column;
1051
+ gap: 3px;
1052
+ min-width: 400px;
1053
+ padding: 6px;
1054
+ }
1055
+ .vuuSessionEditingForm-content {
1056
+ display: flex;
1057
+ flex-direction: column;
1058
+ flex: 1 1 auto;
1059
+ gap: 3px;
1060
+ overflow: auto;
1061
+ }
1062
+ .vuuSessionEditingForm-field {
1063
+ align-items: center;
1064
+ display: flex;
1065
+ height: 32px;
1066
+ }
1067
+ .vuuSessionEditingForm-fieldLabel {
1068
+ flex: 0 0 50%;
1069
+ }
1070
+ .vuuSessionEditingForm-fieldValue {
1071
+ max-width: 50%;
1072
+ }
1073
+ .vuuSessionEditingForm-fieldValue.vuuReadOnly {
1074
+ font-weight: var(--salt-text-label-fontWeight-strong);
1075
+ }
1076
+ .vuuSessionEditingForm-buttonbar {
1077
+ align-items: center;
1078
+ border-top: solid 1px var(--salt-container-primary-borderColor);
1079
+ display: flex;
1080
+ justify-content: flex-end;
1081
+ flex: 0 0 autox;
1082
+ gap: 6px;
1083
+ padding-top: 6px;
1084
+ }
1085
+ .vuuSessionEditingForm-errorBanner {
1086
+ --vuu-icon-left: 3px;
1087
+ --vuu-icon-size: 18px;
1088
+ --vuu-icon-top: 3px;
1089
+ border: solid 1px var(--salt-status-error-borderColor);
1090
+ line-height: 24px;
1091
+ padding: 0 6px 0 26px;
1092
+ position: relative;
1093
+ }
1094
+
1095
+ /* ../vuu-shell/src/user-profile/UserPanel.css */
1096
+ .vuuUserPanel {
1097
+ background-color: white;
1098
+ display: flex;
1099
+ flex-direction: column;
1100
+ max-height: 400px;
1101
+ padding: 12px;
1102
+ }
1103
+ vuuUserPanel-history {
1104
+ flex: 1 1 auto;
1105
+ }
1106
+ .vuuUserPanel-buttonBar {
1107
+ --saltButton-width: 100%;
1108
+ align-items: flex-end;
1109
+ border-top: 1px solid var(--surface3);
1110
+ display: flex;
1111
+ flex: 0 0 32px;
1112
+ justify-content: flex-start;
1113
+ }
1114
+ .btn-logout {
1115
+ --hwButton-icon-left: 12px;
1116
+ --hwButton-padding: 0 6px 0 24px;
1117
+ padding-left: 24px;
1118
+ }
1119
+
1120
+ /* ../vuu-shell/src/user-profile/UserProfile.css */
1121
+ .vuuUserProfile {
1122
+ --svg-icon: var(--svg-user);
1123
+ }
1124
+
1125
+ /* ../vuu-shell/src/theme-switch/ThemeSwitch.css */
1126
+ .vuuThemeSwitch {
1127
+ --saltButton-minWidth: 22px;
1128
+ --svg-light: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M24 31q2.9 0 4.95-2.05Q31 26.9 31 24q0-2.9-2.05-4.95Q26.9 17 24 17q-2.9 0-4.95 2.05Q17 21.1 17 24q0 2.9 2.05 4.95Q21.1 31 24 31Zm0 3q-4.15 0-7.075-2.925T14 24q0-4.15 2.925-7.075T24 14q4.15 0 7.075 2.925T34 24q0 4.15-2.925 7.075T24 34ZM3.5 25.5q-.65 0-1.075-.425Q2 24.65 2 24q0-.65.425-1.075Q2.85 22.5 3.5 22.5h5q.65 0 1.075.425Q10 23.35 10 24q0 .65-.425 1.075-.425.425-1.075.425Zm36 0q-.65 0-1.075-.425Q38 24.65 38 24q0-.65.425-1.075.425-.425 1.075-.425h5q.65 0 1.075.425Q46 23.35 46 24q0 .65-.425 1.075-.425.425-1.075.425ZM24 10q-.65 0-1.075-.425Q22.5 9.15 22.5 8.5v-5q0-.65.425-1.075Q23.35 2 24 2q.65 0 1.075.425.425.425.425 1.075v5q0 .65-.425 1.075Q24.65 10 24 10Zm0 36q-.65 0-1.075-.425-.425-.425-.425-1.075v-5q0-.65.425-1.075Q23.35 38 24 38q.65 0 1.075.425.425.425.425 1.075v5q0 .65-.425 1.075Q24.65 46 24 46ZM12 14.1l-2.85-2.8q-.45-.45-.425-1.075.025-.625.425-1.075.45-.45 1.075-.45t1.075.45L14.1 12q.4.45.4 1.05 0 .6-.4 1-.4.45-1.025.45-.625 0-1.075-.4Zm24.7 24.75L33.9 36q-.4-.45-.4-1.075t.45-1.025q.4-.45 1-.45t1.05.45l2.85 2.8q.45.45.425 1.075-.025.625-.425 1.075-.45.45-1.075.45t-1.075-.45ZM33.9 14.1q-.45-.45-.45-1.05 0-.6.45-1.05l2.8-2.85q.45-.45 1.075-.425.625.025 1.075.425.45.45.45 1.075t-.45 1.075L36 14.1q-.4.4-1.025.4-.625 0-1.075-.4ZM9.15 38.85q-.45-.45-.45-1.075t.45-1.075L12 33.9q.45-.45 1.05-.45.6 0 1.05.45.45.45.45 1.05 0 .6-.45 1.05l-2.8 2.85q-.45.45-1.075.425-.625-.025-1.075-.425ZM24 24Z"/></svg>');
1129
+ --svg-dark: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M24 42q-7.5 0-12.75-5.25T6 24q0-7.5 5.25-12.75T24 6q.4 0 .85.025.45.025 1.15.075-1.8 1.6-2.8 3.95-1 2.35-1 4.95 0 4.5 3.15 7.65Q28.5 25.8 33 25.8q2.6 0 4.95-.925T41.9 22.3q.05.6.075.975Q42 23.65 42 24q0 7.5-5.25 12.75T24 42Zm0-3q5.45 0 9.5-3.375t5.05-7.925q-1.25.55-2.675.825Q34.45 28.8 33 28.8q-5.75 0-9.775-4.025T19.2 15q0-1.2.25-2.575.25-1.375.9-3.125-4.9 1.35-8.125 5.475Q9 18.9 9 24q0 6.25 4.375 10.625T24 39Zm-.2-14.85Z"/></svg>');
1130
+ padding: 2px;
1131
+ }
1132
+ .salt-density-high .vuuThemeSwitch {
1133
+ --saltButton-minWidth: 16px;
1134
+ --saltButton-width: 18px;
1135
+ --vuuThemeSwitch-iconSize: 16px;
1136
+ }
1137
+ .vuuThemeSwitch [data-icon] {
1138
+ --vuu-icon-size: var(--vuuThemeSwitch-iconSize,18px);
1139
+ }
1140
+ .vuuThemeSwitch [data-icon=light] {
1141
+ --vuu-icon-svg: var(--svg-light);
1142
+ }
1143
+ .vuuThemeSwitch [data-icon=dark] {
1144
+ --vuu-icon-svg: var(--svg-dark);
1145
+ }
1146
+ .vuuThemeSwitch .saltToggleButton {
1147
+ height: 20px;
1148
+ width: 20px;
1149
+ }
1150
+
1151
+ /* ../vuu-shell/src/app-header/AppHeader.css */
1152
+ .vuuAppHeader {
1153
+ align-items: center;
1154
+ border-bottom: solid 1px var(--salt-container-secondary-borderColor);
1155
+ display: flex;
1156
+ height: 40px;
1157
+ justify-content: flex-end;
1158
+ }
1159
+ .vuu-theme .vuuAppHeader {
1160
+ border-radius: 8px;
1161
+ border: 1px solid #D6D7DA;
1162
+ height: 44px;
1163
+ margin-bottom: 8px;
1164
+ }
1165
+
1166
+ /* ../vuu-shell/src/shell-layouts/context-panel/ContextPanel.css */
1167
+ .vuuContextPanel {
1168
+ position: relative;
1169
+ transition: width .3s ease-in-out;
1170
+ width: var(--vuu-side-panel-width, 0px) !important;
1171
+ z-index: 1;
1172
+ }
1173
+ .vuuContextPanel-expanded {
1174
+ --vuu-side-panel-width: 300px !important;
1175
+ --vuu-side-panel-shadow: -4px 4px 4px rgba(0, 0, 0, 0.1);
1176
+ --vuu-side-panel-padding: 24px;
1177
+ }
1178
+ .vuuContextPanel-overlay {
1179
+ width: 0px !important;
1180
+ }
1181
+ .vuuContextPanel-inner {
1182
+ background-color: var(--salt-container-primary-background);
1183
+ box-shadow: var(--vuu-side-panel-shadow, none);
1184
+ height: 100%;
1185
+ padding-bottom: 24px;
1186
+ padding-top: 24px;
1187
+ padding-left: var(--vuu-side-panel-padding, 0);
1188
+ padding-right: var(--vuu-side-panel-padding, 0);
1189
+ position: absolute;
1190
+ right: 0;
1191
+ top: 0;
1192
+ transition-property:
1193
+ padding-left,
1194
+ padding-right,
1195
+ width;
1196
+ transition-duration: .3s;
1197
+ transition-timing-function: ease-in-out;
1198
+ width: var(--vuu-side-panel-width, 0px);
1199
+ }
1200
+ .vuuContextPanel-header {
1201
+ align-items: center;
1202
+ display: flex;
1203
+ flex-wrap: nowrap;
1204
+ height: 27px;
1205
+ justify-content: space-between;
1206
+ }
1207
+ .vuuContextPanel-title {
1208
+ font-size: 20px;
1209
+ font-weight: 700;
1210
+ white-space: nowrap;
1211
+ }
1212
+
1213
+ /* ../vuu-shell/src/shell.css */
1214
+ .vuuShell {
1215
+ background-color: var(--salt-container-primary-background, ivory);
1216
+ height: var(--vuuShell-height, 100vh);
1217
+ width: var(--vuuShell-width, 100vw);
1218
+ }
1219
+ .vuuShell-palette {
1220
+ --vuuView-border: none;
1221
+ --vuuView-margin: 0;
1222
+ }
1223
+ .vuuShell-warningPlaceholder {
1224
+ background-color: var(--salt-container-background-high);
1225
+ height: 100%;
1226
+ }
1227
+
1228
+ /* ../vuu-popups/src/dialog/Dialog.css */
1229
+ .vuuDialog {
1230
+ background: var(--salt-container-primary-background);
1231
+ border: var(--vuuDialog-border, solid 1px #ccc);
1232
+ border-radius: 5px;
1233
+ padding: var(--vuuDialog-padding, 0);
1234
+ box-shadow: var(--salt-overlayable-shadow, none);
1235
+ height: var(--vuuDialog-height, fit-content);
1236
+ width: var(--vuuDialog-width, fit-content);
1237
+ }
1238
+ .vuuDialog-header {
1239
+ --saltButton-height: 28px;
1240
+ --saltButton-width: 28px;
1241
+ --saltToolbar-background: transparent;
1242
+ --saltToolbar-height: calc(var(--salt-size-base) + 5px);
1243
+ border-bottom: solid 1px var(--salt-container-primary-borderColor);
1244
+ }
1245
+ .vuuDialog-header > .Responsive-inner {
1246
+ align-items: center;
1247
+ }
1248
+ .vuuDialog-header > .Responsive-inner > :last-child {
1249
+ right: 2px;
1250
+ }
1251
+
1252
+ /* ../vuu-popups/src/menu/MenuList.css */
1253
+ .vuuMenuList {
1254
+ --context-menu-color: var(--vuuMenuList-color,#161616);
1255
+ --context-menu-padding: var(--hw-list-item-padding, 0 6px);
1256
+ --context-menu-shadow: var(--hw-dialog-shadow, 0 6px 12px rgba(0, 0, 0, 0.175));
1257
+ --focus-visible-border-color: var(--hw-focus-visible-border-color, rgb(141, 154, 179));
1258
+ --context-menu-highlight-bg: #a4d5f4;
1259
+ --context-menu-blur-focus-bg: #e0e4e9;
1260
+ --menu-item-icon-color: black;
1261
+ --menu-item-twisty-color: black;
1262
+ --menu-item-twisty-content: "";
1263
+ --menu-item-twisty-top: 50%;
1264
+ --menu-item-twisty-left: auto;
1265
+ --menu-item-twisty-right: 0px;
1266
+ --menu-icon-size: 12px;
1267
+ background-clip: padding-box;
1268
+ background-color: white;
1269
+ border-radius: 4px;
1270
+ border: solid 1px var(--vuuMenuList-borderColor, rgba(0, 0, 0, 0.15));
1271
+ box-shadow: var(--context-menu-shadow);
1272
+ font-size: var(--vuuMenuList-fontSize, var(--salt-text-label-fontSize));
1273
+ font-weight: var(--salt-typography-fontWeight-semiBold);
1274
+ list-style: none;
1275
+ margin: 2px 0 0;
1276
+ outline: 0;
1277
+ overflow: hidden;
1278
+ padding: var(--vuuMenuList-padding, 0);
1279
+ position: absolute;
1280
+ }
1281
+ .vuuMenuItem {
1282
+ align-items: center;
1283
+ border-width: 1px;
1284
+ border-color: var(--vuuMenuItem-borderColor, transparent);
1285
+ border-style: var(--vuuMenuItem-borderStyle, none);
1286
+ color: var(--context-menu-color);
1287
+ display: flex;
1288
+ gap: 6px;
1289
+ height: var(--vuuMenuItem-height, var(--hw-list-item-height, 24px));
1290
+ padding: var(--context-menu-padding);
1291
+ padding-right: 24px;
1292
+ position: relative;
1293
+ white-space: nowrap;
1294
+ }
1295
+ .vuuIconContainer {
1296
+ display: inline-block;
1297
+ flex: 12px 0 0;
1298
+ height: var(--menu-icon-size);
1299
+ mask-repeat: no-repeat;
1300
+ width: var(--menu-icon-size);
1301
+ }
1302
+ .vuuMenuItem[aria-expanded=true] {
1303
+ background-color: var(--context-menu-blur-focus-bg);
1304
+ }
1305
+ .vuuMenuItem-separator {
1306
+ border-top: solid 1px var(--context-menu-blur-focus-bg);
1307
+ }
1308
+ .vuuMenuItem[aria-haspopup=true]:after {
1309
+ content: var(--menu-item-twisty-content);
1310
+ -webkit-mask: var(--vuu-svg-chevron-right) center center/8px 8px no-repeat;
1311
+ mask: var(---vuu-svg-chevron-right) center center/8px 8px no-repeat;
1312
+ background-color: var(--menu-item-twisty-color);
1313
+ height: 16px;
1314
+ left: var(--menu-item-twisty-left);
1315
+ right: var(--menu-item-twisty-right);
1316
+ margin-top: -8px;
1317
+ position: absolute;
1318
+ top: var(--menu-item-twisty-top);
1319
+ transition: transform 0.3s;
1320
+ width: 16px;
1321
+ }
1322
+ .vuuMenuItem[data-highlighted] {
1323
+ background-color: var(--context-menu-highlight-bg);
1324
+ }
1325
+ .vuuMenuItem:hover {
1326
+ background-color: var(--context-menu-highlight-bg);
1327
+ cursor: default;
1328
+ }
1329
+ .vuuMenuList-childMenuShowing .vuuMenuItem[data-highlighted] {
1330
+ background-color: var(--context-menu-blur-focus-bg);
1331
+ }
1332
+ .vuuMenuItem.focusVisible:before {
1333
+ content: "";
1334
+ position: absolute;
1335
+ top: 0;
1336
+ left: 0;
1337
+ right: 0;
1338
+ bottom: 0px;
1339
+ border: dotted var(--focus-visible-border-color) 2px;
1340
+ }
1341
+ .vuuPopupContainer.top-bottom-right-right .popup-menu {
1342
+ left: auto;
1343
+ right: 0;
1344
+ }
1345
+ .popup-menu .menu-item.showing > button,
1346
+ .popup-menu .menu-item > button:focus,
1347
+ .popup-menu .menu-item > button:hover {
1348
+ text-decoration: none;
1349
+ color: rgb(0, 0, 0);
1350
+ background-color: rgb(220, 220, 220);
1351
+ }
1352
+ .vuuMenuItem-button:active,
1353
+ .vuuMenuItem-button:hover {
1354
+ outline: 0;
1355
+ }
1356
+ .popup-menu .menu-item.disabled > button {
1357
+ clear: both;
1358
+ font-weight: normal;
1359
+ line-height: 1.5;
1360
+ color: rgb(120, 120, 120);
1361
+ white-space: nowrap;
1362
+ text-decoration: none;
1363
+ cursor: default;
1364
+ }
1365
+
1366
+ /* ../vuu-popups/src/popup/popup-service.css */
1367
+ .vuuPopup {
1368
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
1369
+ position: absolute;
1370
+ top: 0;
1371
+ left: 0;
1372
+ width: 0;
1373
+ height: 0;
1374
+ overflow: visible;
1375
+ z-index: 1000;
1376
+ }
1377
+ .vuuPopup {
1378
+ position: absolute;
1379
+ }
1380
+
1381
+ /* ../vuu-popups/src/popup-menu/PopupMenu.css */
1382
+ .vuuPopupMenu {
1383
+ --saltButton-height: 24px;
1384
+ --saltButton-width: 24px;
1385
+ --vuu-icon-color: #606477;
1386
+ --vuu-icon-height: 20px;
1387
+ --vuu-icon-left: 2px;
1388
+ --vuu-icon-size: 16px;
1389
+ --vuu-icon-top: 2px;
1390
+ --vuu-icon-width: 20px;
1391
+ background: var(--vuuPopupMenu-background, transparent);
1392
+ border-radius: 4px;
1393
+ cursor: pointer;
1394
+ display: inline-block;
1395
+ margin-top: 2px;
1396
+ padding: 2px;
1397
+ }
1398
+ .vuuPopupMenu:hover {
1399
+ --vuu-icon-color: var(--saltButton-text-color-hover);
1400
+ }
1401
+ .vuuPopupMenu-open {
1402
+ --saltButton-background: var(--salt-actionable-secondary-background-active);
1403
+ --vuu-icon-color: white;
1404
+ }
1405
+ .vuu-theme .vuuPopupMenu:hover {
1406
+ --saltButton-background-hover: #F37880;
1407
+ }
1408
+ .vuu-theme .vuuPopupMenu-open {
1409
+ --saltButton-background: #6D18BD;
1410
+ }
1411
+
1412
+ /* ../vuu-ui-controls/src/drag-drop/Draggable.css */
1413
+ .vuuDraggable {
1414
+ background: transparent;
1415
+ box-shadow: var(--salt-overlayable-shadow-drag);
1416
+ cursor: var(--salt-draggable-grab-cursor-active);
1417
+ position: absolute;
1418
+ opacity: .95;
1419
+ z-index: 2000;
1420
+ }
1421
+ .vuuDraggable-spacer {
1422
+ display: var(--saltDraggable-display, inline-block);
1423
+ height: var(--saltDraggable-spacer-height, var(--tabstrip-height));
1424
+ transition: var(--saltDraggable-transitionProp, width) 0.3s ease;
1425
+ width: var(--saltDraggable-spacer-width, 0);
1426
+ }
1427
+ .vuuDraggable-dropIndicatorPosition {
1428
+ display: var(--saltDraggable-display, inline-block);
1429
+ height: 0px;
1430
+ width: 100%;
1431
+ }
1432
+ .vuuDraggable-dropIndicatorContainer {
1433
+ transition: var(--saltDraggable-transitionProp, top) 0.2s ease;
1434
+ }
1435
+ .vuuDraggable-dropIndicator {
1436
+ background-color: var(--salt-palette-accent-background);
1437
+ height: 2px;
1438
+ width: 100%;
1439
+ }
1440
+ .vuuDraggable-dropIndicator:before {
1441
+ content: "";
1442
+ width: 6px;
1443
+ height: 6px;
1444
+ border-radius: 3px;
1445
+ background-color: var(--salt-palette-accent-background);
1446
+ position: absolute;
1447
+ top: -2px;
1448
+ left: -3px;
1449
+ }
1450
+ .vuuDraggable-settling {
1451
+ transition-property: left, top;
1452
+ transition-duration: .15s;
1453
+ transition-timing-function: ease-out;
1454
+ }
1455
+ .vuuDraggable-spacer {
1456
+ order: 1;
1457
+ }
1458
+
1459
+ /* ../vuu-ui-controls/src/editable-label/EditableLabel.css */
1460
+ .vuuEditableLabel {
1461
+ --saltInput-background: transparent;
1462
+ --saltInput-minWidth: 14px;
1463
+ --saltInput-position: absolute;
1464
+ --editableLabel-padding: var(--saltEditableLabel-padding, 6px);
1465
+ --editableLabel-height: var(--saltEditableLabel-height, 26px);
1466
+ color: inherit;
1467
+ cursor: default;
1468
+ display: flex;
1469
+ flex-direction: column;
1470
+ font-size: var(--salt-text-fontSize);
1471
+ height: var(--editableLabel-height);
1472
+ justify-content: center;
1473
+ outline: none;
1474
+ padding: 0 var(--editableLabel-padding);
1475
+ position: relative;
1476
+ z-index: var(--salt-zIndex-default);
1477
+ }
1478
+ .vuuEditableLabel:before {
1479
+ content: attr(data-text);
1480
+ display: block;
1481
+ height: 0px;
1482
+ visibility: hidden;
1483
+ white-space: pre-wrap;
1484
+ }
1485
+ .vuuEditableLabel .saltInput {
1486
+ font-weight: var(--salt-text-fontWeight);
1487
+ left: var(--editableLabel-padding, 0);
1488
+ padding: 0;
1489
+ outline-style: none;
1490
+ position: absolute;
1491
+ right: var(--editableLabel-padding, 0);
1492
+ top: var(--saltEditableLabel-top, 2px);
1493
+ width: auto;
1494
+ }
1495
+ .vuuEditableLabel .saltInput-activationIndicator {
1496
+ display: none;
1497
+ }
1498
+ .vuuEditableLabel-input {
1499
+ background-color: transparent;
1500
+ border: none;
1501
+ box-sizing: content-box;
1502
+ display: block;
1503
+ flex: 1;
1504
+ font: inherit;
1505
+ height: 20px;
1506
+ margin: 0;
1507
+ min-width: 0;
1508
+ outline: none;
1509
+ padding: 0;
1510
+ }
1511
+
1512
+ /* ../vuu-ui-controls/src/tabstrip/Tabstrip.css */
1513
+ .vuuTabstrip {
1514
+ --vuuOverflowContainer-background: transparent;
1515
+ --tabstrip-dragging-display: none;
1516
+ --tabstrip-display: inline-flex;
1517
+ --tabstrip-background: transparent;
1518
+ align-self: var(--saltTabs-tabstrip-alignSelf, stretch);
1519
+ font-size: var(--salt-text-fontSize);
1520
+ font-weight: var(--vuuTabstrip-fontWeight, var(--salt-text-fontWeight));
1521
+ position: relative;
1522
+ overflow: visible;
1523
+ display: flex;
1524
+ min-width: 28px;
1525
+ width: var(--tabstrip-width);
1526
+ }
1527
+ .vuuTabstrip-horizontal {
1528
+ --tabstrip-height: var(--vuuTabstrip-height, 28px);
1529
+ --tabstrip-width: var(--vuuTabstrip-width, 100%);
1530
+ --tab-width: auto;
1531
+ --tab-thumb-height: 2px;
1532
+ --tab-thumb-left: var(--tab-thumb-offset, 0);
1533
+ --tab-thumb-top: auto;
1534
+ --tab-thumb-width: var(--tab-thumb-size, 100%);
1535
+ align-items: flex-start;
1536
+ border-bottom: var(--vuuTabstrip-borderBottom, solid 1px var(--salt-container-primary-borderColor));
1537
+ }
1538
+ .vuuTabstrip-vertical {
1539
+ --tabstrip-height: var(--vuuTabstrip-height, 100%);
1540
+ --tabstrip-width: var(--vuuTabstrip-width, 100px);
1541
+ --tab-width: 100%;
1542
+ --tab-thumb-height: var(--tab-thumb-size, 100%);
1543
+ --tab-thumb-left: 0;
1544
+ --tab-thumb-top: var(--tab-thumb-offset, 0);
1545
+ --tab-thumb-width: 2px;
1546
+ align-self: flex-start;
1547
+ display: inline-flex;
1548
+ }
1549
+ .vuuTabstrip-draggingTab .vuuTab {
1550
+ pointer-events: none;
1551
+ }
1552
+ .vuuTabstrip-addTabButton {
1553
+ --saltButton-height: 20px;
1554
+ --saltButton-width: 20px;
1555
+ }
1556
+ .vuuTabstrip-overflowMenu.saltDropdown {
1557
+ --saltIcon-margin: 2px 0 0 0px;
1558
+ }
1559
+ .vuuTabstrip-overflowMenu-open {
1560
+ --saltButton-background: var(--salt-actionable-secondary-background-active);
1561
+ --saltButton-text-color: var(--salt-actionable-secondary-text-color-active);
1562
+ }
1563
+ .vuuTabstrip-overflowMenu-open .saltButton {
1564
+ --saltIcon-color: var(--salt-actionable-secondary-foreground-active);
1565
+ }
1566
+ .vuuTabstrip-inner {
1567
+ width: 100%;
1568
+ align-items: center;
1569
+ display: flex;
1570
+ flex-basis: auto;
1571
+ flex-grow: 0;
1572
+ flex-shrink: 1;
1573
+ flex-wrap: wrap;
1574
+ justify-content: flex-start;
1575
+ line-height: var(--tabstrip-height);
1576
+ }
1577
+ .vuuTabstrip-vertical .vuuTabstrip-inner {
1578
+ flex-direction: column;
1579
+ height: auto;
1580
+ }
1581
+ .vuuTabstrip-centered .vuuTabstrip-inner {
1582
+ justify-content: center;
1583
+ }
1584
+ .vuuDraggable[class*=vuuTabstrip] {
1585
+ --tabstrip-display: flex;
1586
+ --tabstrip-height: 100%;
1587
+ --tabstrip-dragging-display: block;
1588
+ --tabs-tab-background: var(--salt-navigable-primary-background-hover);
1589
+ --tabs-tab-before-content: "";
1590
+ --tabs-tab-before-background: var(--salt-navigable-indicator-hover);
1591
+ --tabs-tab-before-height: var(--tab-activationIndicator-thumb-height);
1592
+ --tabs-tab-before-inset: var(--tab-activationIndicator-inset);
1593
+ --tabs-tab-before-width: var(--tab-activationIndicator-thumb-width);
1594
+ --tabs-tab-cursor: var(--salt-draggable-grab-cursor-active);
1595
+ --tabs-tab-position: static;
1596
+ font-size: 12px;
1597
+ }
1598
+ .vuuDraggable-tabstrip-horizontal {
1599
+ --tab-thumb-height: 2px;
1600
+ --tabstrip-height: 28px;
1601
+ line-height: var(--tabstrip-height);
1602
+ }
1603
+ .vuuDraggable[class*=tabstrip] .vuuTab[aria-selected=true]:before {
1604
+ --tabs-tab-before-background: var(--salt-navigable-indicator-active);
1605
+ }
1606
+ .vuuTabstrip-overflowMenu-dropTarget:after {
1607
+ background: var(--salt-selectable-background-selected);
1608
+ content: "";
1609
+ position: absolute;
1610
+ height: 2px;
1611
+ left: 0;
1612
+ right: 0;
1613
+ bottom: 0;
1614
+ }
1615
+
1616
+ /* ../vuu-ui-controls/src/tabstrip/TabMenu.css */
1617
+ .vuuTabMenu {
1618
+ top: -2px;
1619
+ }
1620
+
1621
+ /* ../vuu-ui-controls/src/tabstrip/Tab.css */
1622
+ .vuuTab {
1623
+ --saltEditableLabel-padding: 0;
1624
+ --saltEditableLabel-height: var(--tabstrip-height);
1625
+ --saltInputLegacy-minWidth: 4em;
1626
+ --saltEditableLabel-top: 3px;
1627
+ --tab-background: var(--vuuTab-background, var(--salt-navigable-primary-background));
1628
+ --tab-cursor: pointer;
1629
+ --tab-position: relative;
1630
+ }
1631
+ .vuuTab {
1632
+ align-items: center;
1633
+ align-self: stretch;
1634
+ background: var(--tab-background);
1635
+ border: none;
1636
+ border-radius: var(--vuuTab-borderRadius, 0);
1637
+ color: var(--salt-text-primary-foreground);
1638
+ cursor: var(--vuuTab-cursor, var(--tab-cursor));
1639
+ display: var(--tabstrip-display);
1640
+ gap: 8px;
1641
+ height: var(--vuuTab-height, var(--tabstrip-height));
1642
+ letter-spacing: var(--vuuTab-letterSpacing, var(--tab-letterSpacing, 0));
1643
+ min-width: var(--vuuTab-minWidth, 40px);
1644
+ outline: none;
1645
+ padding: var(--vuuTab-padding, 0 24px);
1646
+ position: var(--vuuTab-position, var(--tab-position));
1647
+ user-select: none;
1648
+ width: var(--tab-width);
1649
+ }
1650
+ .vuuTab {
1651
+ margin: 0 var(--tab-spacing) 0 0;
1652
+ }
1653
+ .vuuTab-selected {
1654
+ background: var(--vuuTab-background-selected, var(--tab-background));
1655
+ color: var(--salt-text-primary-foreground);
1656
+ font-weight: var(--salt-navigable-fontWeight-active);
1657
+ }
1658
+ .vuuTab-main {
1659
+ align-items: center;
1660
+ border: none;
1661
+ color: inherit;
1662
+ cursor: inherit;
1663
+ display: flex;
1664
+ font-family: inherit;
1665
+ font-size: inherit;
1666
+ font-weight: inherit;
1667
+ height: var(--vuuTabstrip-height, var(--salt-size-stackable));
1668
+ outline: none;
1669
+ position: relative;
1670
+ }
1671
+ .vuuTab-closeable .vuuTab-main {
1672
+ border-right: solid transparent var(--salt-size-unit);
1673
+ }
1674
+ .vuuTab .vuuTab-closeButton {
1675
+ display: flex;
1676
+ align-items: center;
1677
+ justify-content: center;
1678
+ }
1679
+ .vuuTab-close-icon {
1680
+ display: none;
1681
+ }
1682
+ .salt-density-touch .vuuTab-close-icon,
1683
+ .salt-density-low .vuuTab-close-icon {
1684
+ display: block;
1685
+ }
1686
+ .salt-density-touch .vuuTab-close-icon-small,
1687
+ .salt-density-low .vuuTab-close-icon-small {
1688
+ display: none;
1689
+ }
1690
+ .vuuTab .vuuTab-text {
1691
+ display: inline-block;
1692
+ position: relative;
1693
+ overflow: hidden;
1694
+ text-align: var(--salt-text-textAlign-embedded);
1695
+ text-overflow: ellipsis;
1696
+ top: var(--vuuTab-top, var(--tab-top, auto));
1697
+ white-space: nowrap;
1698
+ z-index: var(--salt-zIndex-default);
1699
+ }
1700
+ .vuuTab .vuuTab-text:before {
1701
+ height: 0;
1702
+ content: attr(data-text);
1703
+ display: block;
1704
+ visibility: hidden;
1705
+ font-weight: var(--salt-navigable-fontWeight-active);
1706
+ }
1707
+ .vuuTab-editing:after {
1708
+ content: "";
1709
+ position: absolute;
1710
+ top: 0;
1711
+ left: 0;
1712
+ right: 0;
1713
+ bottom: 2px;
1714
+ outline-color: var(--salt-focused-outlineColor);
1715
+ outline-style: var(--salt-focused-outlineStyle);
1716
+ outline-width: var(--salt-focused-outlineWidth);
1717
+ outline-offset: -2px;
1718
+ }
1719
+ .vuuTab.vuuFocusVisible {
1720
+ background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
1721
+ outline-color: var(--vuuTab-focusVisible-color, var(--salt-focused-outlineColor));
1722
+ outline-style: dashed;
1723
+ outline-width: 1px;
1724
+ outline-offset: -1px;
1725
+ }
1726
+ .vuuTab:before {
1727
+ content: var(--tab-before-content, none);
1728
+ content: "";
1729
+ background: var(--tab-before-background);
1730
+ height: var(--tab-before-height);
1731
+ inset: var(--tab-before-inset);
1732
+ position: absolute;
1733
+ width: var(--tab-before-width);
1734
+ z-index: 1;
1735
+ }
1736
+ .vuuTabstrip-draggingTab .vuuTab-selected:before {
1737
+ --tab-before-content: "";
1738
+ --tab-before-background: var(--salt-navigable-indicator-color-active);
1739
+ --tab-before-height: var(--tab-thumb-height);
1740
+ --tab-before-inset: var(--tab-activationIndicator-inset);
1741
+ --tab-before-width: var(--tab-activationIndicator-thumb-width);
1742
+ }
1743
+ .vuuTab-selected:before {
1744
+ --tab-before-content: "";
1745
+ background: var(--salt-navigable-indicator-active);
1746
+ height: var(--tab-thumb-height);
1747
+ position: absolute;
1748
+ left: var(--tab-thumb-left);
1749
+ bottom: 0px;
1750
+ top: var(--tab-thumb-top, auto);
1751
+ transition: var(--tab-thumb-transition, none);
1752
+ width: var(--tab-thumb-width, 100%);
1753
+ }
1754
+ .vuuTab:hover:not(.vuuTab-closeHover) {
1755
+ background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
1756
+ }
1757
+
1758
+ /* ../vuu-ui-controls/src/tree/Tree.css */
1759
+ .vuuTree {
1760
+ --tree-node-collapse: var(--vuuTree-toggle-collapse, var(--svg-tree-node-collapse));
1761
+ --tree-node-expand: var(--vuuTree-toggle-expand, var(--svg-tree-node-expand));
1762
+ --tree-toggle-width: 12px;
1763
+ --tree-icon-color: var(--vuuTree-icon-color, #4c505b);
1764
+ --tree-node-expanded-transform: var(--vuuTree-node-expanded-transform, none);
1765
+ --tree-node-indent: 0px;
1766
+ --list-hilited-bg: var(--hw-list-hilited-bg, rgba(0, 0, 0, 0.1));
1767
+ --list-item-height: var(--hw-list-item-height, 30px);
1768
+ --list-item-padding: var(--hw-list-item-padding, 0 6px);
1769
+ --list-item-header-bg: var(--hw-list-item-header-bg, black);
1770
+ --list-item-header-color: var(--hw-list-item-header-color, white);
1771
+ --list-item-header-font-weight: bold;
1772
+ --list-item-header-twisty-color: black;
1773
+ --list-item-header-twisty-content: "";
1774
+ --list-item-header-twisty-top: 50%;
1775
+ --list-item-header-twisty-left: -18px;
1776
+ --list-item-header-twisty-right: auto;
1777
+ --list-item-selected-bg: var(--hw-list-selected-bg, #1ea7fd);
1778
+ --list-item-selected-color: white;
1779
+ --list-item-text-color: var(--hw-gray-800);
1780
+ --focus-visible-border-color: var(--hw-focus-visible-border-color, rgb(141, 154, 179));
1781
+ list-style: none;
1782
+ margin: 0;
1783
+ padding: 0 1px;
1784
+ font-size: var(--vuuTree-font-size, 14px);
1785
+ max-height: inherit;
1786
+ outline: none;
1787
+ overflow-y: auto;
1788
+ position: relative;
1789
+ user-select: none;
1790
+ }
1791
+ .vuuTree-viewport {
1792
+ --list-item-height: 30px;
1793
+ box-sizing: border-box;
1794
+ max-height: inherit;
1795
+ overflow: auto;
1796
+ }
1797
+ .vuuTree-scrollingContentContainer {
1798
+ box-sizing: inherit;
1799
+ position: relative;
1800
+ }
1801
+ .vuuTree-scrollingContentContainer .vuuTreeNode {
1802
+ line-height: 30px;
1803
+ position: absolute;
1804
+ top: 0;
1805
+ left: 0;
1806
+ right: 0;
1807
+ will-change: transform;
1808
+ }
1809
+ .vuuTreeNode {
1810
+ list-style: none;
1811
+ }
1812
+ .vuuTreeNode:not([aria-expanded]),
1813
+ .vuuTreeNode[aria-expanded] > .vuuTreeNode-label {
1814
+ --checkbox-border-color: black;
1815
+ --checkbox-border-width: 1px;
1816
+ --checkbox-tick: black;
1817
+ --list-item-padding-left: 6px;
1818
+ --svg-toggle: var(--tree-node-collapse);
1819
+ align-items: center;
1820
+ color: var(--list-item-text-color);
1821
+ display: flex;
1822
+ flex-wrap: nowrap;
1823
+ height: var(--list-item-height);
1824
+ line-height: var(--list-item-height);
1825
+ padding: var(--list-item-padding);
1826
+ padding-left: var(--padding-left);
1827
+ position: relative;
1828
+ cursor: default;
1829
+ margin: 0;
1830
+ white-space: nowrap;
1831
+ }
1832
+ .vuuTreeNode:not([aria-expanded]) {
1833
+ --padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) );
1834
+ }
1835
+ .vuuTreeNode[aria-expanded] > .vuuTreeNode-label {
1836
+ --padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) );
1837
+ }
1838
+ .vuuTreeNode-icon {
1839
+ background-color: var(--tree-icon-color);
1840
+ display: inline-block;
1841
+ height: 18px;
1842
+ margin-right: 6px;
1843
+ -webkit-mask: var(--vuu-icon-svg) center center/12px 12px no-repeat;
1844
+ mask: var(--vuu-icon-svg) center center/12px 12px no-repeat;
1845
+ flex: 0 0 18px;
1846
+ }
1847
+ .vuuTreeNode[aria-expanded] {
1848
+ flex-direction: column;
1849
+ }
1850
+ .vuuTreeNode[aria-expanded] {
1851
+ flex-direction: column;
1852
+ height: auto;
1853
+ }
1854
+ .vuuTreeNode > *[role=group] {
1855
+ padding-left: 0px;
1856
+ }
1857
+ .vuuTreeNode {
1858
+ padding-left: calc(var(--padding-left) + var(--tree-node-indent));
1859
+ }
1860
+ .vuuTreeNode[aria-level="2"] {
1861
+ --tree-node-indent: 12px;
1862
+ }
1863
+ .vuuTreeNode[aria-level="3"] {
1864
+ --tree-node-indent: 24px;
1865
+ }
1866
+ .vuuTreeNode[aria-level="4"] {
1867
+ --tree-node-indent: 36px;
1868
+ }
1869
+ .vuuTreeNode:not(.focusVisible):not(.hwListItemHeader):not([aria-expanded])[data-highlighted],
1870
+ .vuuTreeNode:not(.focusVisible):not(.hwListItemHeader)[aria-expanded][data-highlighted] > div:first-child {
1871
+ background-color: var(--list-hilited-bg);
1872
+ }
1873
+ .vuuTreeNode-toggle {
1874
+ cursor: pointer;
1875
+ }
1876
+ .vuuTreeNode > .vuuTreeNode-toggle {
1877
+ display: inline-block;
1878
+ height: 100%;
1879
+ left: 0;
1880
+ position: absolute;
1881
+ width: calc(var(--list-item-padding-left) + var(--tree-toggle-width));
1882
+ }
1883
+ .vuuTreeNode[aria-expanded] > .vuuTreeNode-label:after {
1884
+ content: var(--list-item-header-twisty-content);
1885
+ -webkit-mask: var(--svg-toggle) center center/8px 8px no-repeat;
1886
+ mask: var(--svg-toggle) center center/8px 8px no-repeat;
1887
+ background-color: var(--list-item-header-twisty-color);
1888
+ height: 18px;
1889
+ margin-top: -9px;
1890
+ left: var(--tree-node-indent);
1891
+ position: absolute;
1892
+ top: var(--list-item-header-twisty-top);
1893
+ transition: transform 0.3s;
1894
+ width: 18px;
1895
+ }
1896
+ .vuuTreeNode[aria-selected=true] {
1897
+ --list-item-header-twisty-color: var(--list-item-selected-color);
1898
+ }
1899
+ .vuuTreeNode:not(.focusVisible):focus {
1900
+ background-color: rgba(0, 0, 0, 0.1);
1901
+ }
1902
+ .vuuTreeNode:not([aria-expanded]).focusVisible:before,
1903
+ .vuuTreeNode[aria-expanded].focusVisible > div:first-child:before {
1904
+ content: "";
1905
+ position: absolute;
1906
+ top: 0px;
1907
+ left: var(--tree-focus-offset, 0px);
1908
+ right: 0;
1909
+ bottom: 0px;
1910
+ border: dotted var(--focus-visible-border-color) 2px;
1911
+ background-color: var(--list-hilited-bg);
1912
+ }
1913
+ .vuuTreeNode[aria-expanded=false] > *:first-child:after {
1914
+ --svg-toggle: var(--tree-node-expand);
1915
+ }
1916
+ .vuuTreeNode[aria-expanded=true] > *:first-child:after {
1917
+ transform: var(--tree-node-expanded-transform);
1918
+ }
1919
+ .vuuTree:not(.checkbox-only) .vuuTreeNode:not([aria-expanded])[aria-selected=true],
1920
+ .vuuTree:not(.checkbox-only) .vuuTreeNode[aria-expanded][aria-selected=true] > div:first-child {
1921
+ --checkbox-border-color: var(--list-item-selected-color);
1922
+ --checkbox-tick: var(--list-item-selected-color);
1923
+ --focus-visible-border-color: var(--list-item-selected-color);
1924
+ background-color: var(--list-item-selected-bg);
1925
+ color: var(--list-item-selected-color);
1926
+ }
1927
+ .with-checkbox .vuuTreeNode {
1928
+ padding-left: 28px;
1929
+ }
1930
+ .with-checkbox .vuuTreeNode:before {
1931
+ border-style: solid;
1932
+ border-width: var(--checkbox-border-width);
1933
+ border-color: var(--checkbox-border-color);
1934
+ content: "";
1935
+ height: 12px;
1936
+ left: 3px;
1937
+ margin-top: -7px;
1938
+ position: absolute;
1939
+ top: 50%;
1940
+ width: 12px;
1941
+ }
1942
+
1943
+ /* src/filter-pill-menu/FilterPillMenu.css */
1944
+ .vuuFilterPillMenu {
1945
+ top: -2px;
1946
+ }
1947
+
1948
+ /* src/filter-pill/FilterPill.css */
1949
+ .vuuFilterPill {
1950
+ align-items: center;
1951
+ border: solid 1px var(--salt-taggable-foreground);
1952
+ border-radius: 26px;
1953
+ display: flex;
1954
+ height: 26px;
1955
+ padding: 0 8px;
1956
+ position: relative;
1957
+ }
1958
+
1959
+ /* src/filter-bar/FilterBar.css */
1960
+ .vuuFilterBar {
1961
+ --vuu-svg-tune: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 18C3 18.55 3.45 19 4 19H9V17H4C3.45 17 3 17.45 3 18ZM3 6C3 6.55 3.45 7 4 7H13V5H4C3.45 5 3 5.45 3 6ZM13 20V19H20C20.55 19 21 18.55 21 18C21 17.45 20.55 17 20 17H13V16C13 15.45 12.55 15 12 15C11.45 15 11 15.45 11 16V20C11 20.55 11.45 21 12 21C12.55 21 13 20.55 13 20ZM7 10V11H4C3.45 11 3 11.45 3 12C3 12.55 3.45 13 4 13H7V14C7 14.55 7.45 15 8 15C8.55 15 9 14.55 9 14V10C9 9.45 8.55 9 8 9C7.45 9 7 9.45 7 10ZM21 12C21 11.45 20.55 11 20 11H11V13H20C20.55 13 21 12.55 21 12ZM16 9C16.55 9 17 8.55 17 8V7H20C20.55 7 21 6.55 21 6C21 5.45 20.55 5 20 5H17V4C17 3.45 16.55 3 16 3C15.45 3 15 3.45 15 4V8C15 8.55 15.45 9 16 9Z" /></svg>');
1962
+ --saltButton-height: 26px;
1963
+ --saltButton-width: 26px;
1964
+ align-items: center;
1965
+ background-color: var(--salt-container-secondary-background);
1966
+ border-bottom: solid 1px #D6D7DA;
1967
+ display: flex;
1968
+ gap: 4px;
1969
+ height: 33px;
1970
+ padding: 4px 8px;
1971
+ }
1972
+ .vuuFilterbar-icon {
1973
+ display: inline-block;
1974
+ height: 16px;
1975
+ width: 16px;
1976
+ }
1977
+ .vuuFilterBar [data-icon=tune] {
1978
+ --vuu-icon-size: 16px;
1979
+ --vuu-icon-svg: var(--vuu-svg-tune);
1980
+ }
1981
+ .vuuFilterBar [data-icon=plus] {
1982
+ --vuu-icon-size: 16px;
1983
+ }
1984
+
1985
+ /* src/filter-clause/ExpandoCombobox.css */
1986
+ .vuuExpandoCombobox {
1987
+ --expando-combobox-height: var(--vuuExpandoCombobox-height, 24px);
1988
+ --expando-combobox-fontSize: var(--vuuExpandoCombobox-fontSizew, 12px);
1989
+ --saltInputLegacy-focused-outlineStyle: none;
1990
+ --saltInputLegacy-fontSize: var(--expando-combobox-fontSize);
1991
+ --saltInputLegacy-height: var(--expando-combobox-height);
1992
+ --saltInputLegacy-minWidth: 14px;
1993
+ --saltInputLegacy-position: absolute;
1994
+ background-color: rgba(255, 0, 0, .2);
1995
+ display: inline-flex;
1996
+ flex-direction: column;
1997
+ height: var(--expando-combobox-height);
1998
+ min-width: 32px;
1999
+ padding: 0 6px;
2000
+ }
2001
+ .vuuExpandoCombobox .saltDropdown {
2002
+ height: 100%;
2003
+ }
2004
+ .vuuExpandoCombobox .saltInputLegacy {
2005
+ border: none;
2006
+ left: 0px;
2007
+ margin: 0;
2008
+ min-height: 100%;
2009
+ padding: 0;
2010
+ right: 0px;
2011
+ width: auto;
2012
+ }
2013
+ .vuuExpandoCombobox .saltInputLegacy-input {
2014
+ border: none;
2015
+ box-sizing: content-box;
2016
+ display: block;
2017
+ flex: 1;
2018
+ font: inherit;
2019
+ margin: 0;
2020
+ min-width: 0;
2021
+ outline: none;
2022
+ padding: 0;
2023
+ }
2024
+ .vuuExpandoCombobox:before {
2025
+ content: attr(data-text);
2026
+ display: block;
2027
+ font-size: var(--expando-combobox-fontSize);
2028
+ height: 0px;
2029
+ overflow: hidden;
2030
+ white-space: pre-wrap;
2031
+ }
2032
+
2033
+ /* src/filter-clause/CloseButton.css */
2034
+ .vuu-theme {
2035
+ --salt-actionable-secondary-background: #ffffff;
2036
+ --salt-actionable-secondary-background-hover: #f37880;
2037
+ --salt-actionable-secondary-background-active: #606477;
2038
+ --salt-actionable-secondary-background-disabled: #ffffff;
2039
+ --salt-actionable-secondary-foreground: #606477;
2040
+ --salt-actionable-secondary-foreground-hover: #15171b;
2041
+ --salt-actionable-secondary-foreground-active: #ffffff;
2042
+ --salt-actionable-secondary-foreground-disabled: #9b9ea8;
2043
+ }
2044
+ .vuuFilterClause-closeButton {
2045
+ height: 16px;
2046
+ width: 16px;
2047
+ border-radius: 6px;
2048
+ padding: 0;
2049
+ }
2050
+ .vuuFilterClause-closeButton:focus-visible {
2051
+ outline: 2px dashed var(--vuuPurple-accent2);
2052
+ }
2053
+ .vuuFilterClause-closeButton:not(:hover) {
2054
+ background: var(--salt-actionable-secondary-background);
2055
+ }
2056
+
2057
+ /* src/filter-clause/FilterClauseEditor.css */
2058
+ * {
2059
+ --vuuPurple-accent2: #6d18bd;
2060
+ --vuuPurple-text-primary-foreground: #15171b;
2061
+ --vuuPurple-text-secondary-foreground: #606477;
2062
+ --salt-selectable-background-hover: #e4e3e7;
2063
+ --editable-border-default: #777c94;
2064
+ --editable-border-hover: #f37880;
2065
+ }
2066
+ .vuuFilterClause {
2067
+ --vuuExpandoCombobox-height: 16px;
2068
+ --saltButton-height: 16px;
2069
+ --saltButton-width: 16px;
2070
+ display: flex;
2071
+ flex-direction: row;
2072
+ width: fit-content;
2073
+ border-radius: 6px;
2074
+ border: 1px solid var(--editable-border-default);
2075
+ background: #ffffff;
2076
+ --salt-palelette-interact-outline: var(--vuuPurple-accent2);
2077
+ --salt-focused-outlineStyle: dotted;
2078
+ }
2079
+ .vuuFilterClause:focus-visible {
2080
+ outline: 2px dashed var(--vuuPurple-accent2);
2081
+ }
2082
+ .vuuFilterClause:hover :not(:focus-visible) {
2083
+ border-color: var(--editable-border-hover);
2084
+ }
2085
+ .vuuFilterClause:focus-visible,
2086
+ .vuuFilterClause:focus-within {
2087
+ border-color: var(--vuuPurple-accent2);
2088
+ }
2089
+ .vuu-density-high .vuuFilterClause {
2090
+ padding: 4px 8px;
2091
+ gap: 4px;
2092
+ --salt-text-lineHeight: 12px;
2093
+ --saltInputLegacy-fontSize: 12px;
2094
+ --saltInputLegacy-minWidth: 12px;
2095
+ }
2096
+ .vuu-density-high .vuuFilterClause .saltInput {
2097
+ padding: 0;
2098
+ min-height: 16px;
2099
+ height: 16px;
2100
+ }
2101
+ .vuuFilterClause .vuuExpandoCombobox {
2102
+ flex-basis: auto;
2103
+ flex-shrink: 0;
2104
+ flex-grow: 0;
2105
+ }
2106
+ .vuuFilterClause-operator {
2107
+ background-color: rgba(0, 0, 255, .2) !important;
2108
+ }
2109
+ .vuuFilterClause-operator-hidden {
2110
+ display: none;
2111
+ }
2112
+ .vuuFilterClause :not(.vuuFilterClause-valueInput) .saltInput {
2113
+ color: var(--vuuPurple-text-secondary-foreground);
2114
+ }
2115
+ .vuuFilterClause .saltInput-focused,
2116
+ .vuuFilterClause .saltTokenizedInput-focused {
2117
+ outline: none;
2118
+ color: var(--salt-text-primary-foreground);
2119
+ }
2120
+ .vuuFilterClause .saltInput-input::selection {
2121
+ --saltInput-highlight-color: var(--vuuPurple-accent2);
2122
+ color: #ffffff;
2123
+ }
2124
+ .vuu-theme .saltList,
2125
+ .saltListDeprecated {
2126
+ --list-borderWidth: 1px;
2127
+ --salt-container-primary-borderColor: var(--vuuPurple-accent2);
2128
+ --list-borderStyle: solid;
2129
+ border: 1px solid var(--vuuPurple-accent2);
2130
+ border-radius: 4px;
2131
+ box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.4);
2132
+ }
2133
+ .saltListDeprecated-wrapper {
2134
+ border: none;
2135
+ }
2136
+ .saltListItem[aria-selected=true]:not(.saltListItem-checkbox),
2137
+ .saltListItemDeprecated[aria-selected=true] {
2138
+ --list-item-background: var(--list-item-background-active);
2139
+ color: var(--list-item-text-color-active);
2140
+ border-left: 3px solid var(--vuuPurple-accent2);
2141
+ }
2142
+ .saltTokenizedInput {
2143
+ height: 16px;
2144
+ min-height: 16px;
2145
+ }
2146
+ .saltTokenizedInput .saltInputPill {
2147
+ --pill-fontSize: 12px;
2148
+ --saltButton-borderStyle: none;
2149
+ --pill-background: none;
2150
+ height: 16px;
2151
+ margin: 0;
2152
+ }
2153
+ .saltTokenizedInput-pillGroup {
2154
+ padding: 0;
2155
+ height: 16px;
2156
+ }
2157
+
1
2158
  /* src/filter-input/FilterInput.css */
2
2159
  .salt-theme {
3
2160
  --vuuFilterEditor-lineHeight: 28px;
@@ -43,15 +2200,4 @@
43
2200
  background: var(--salt-container-secondary-background);
44
2201
  color: var(--salt-text-secondary-foreground);
45
2202
  }
46
-
47
- /* src/filter-toolbar/FilterToolbar.css */
48
- .vuuFilterDropdown,
49
- .vuuFilterSwitch {
50
- --saltToolbarField-marginTop: 0;
51
- height: 100%;
52
- }
53
- .vuuFilterDropdown.saltFormField-focused:before {
54
- top: 2px !important;
55
- bottom: 2px !important;
56
- }
57
2203
  /*# sourceMappingURL=index.css.map */