@vuu-ui/vuu-table-extras 0.8.11-debug → 0.8.12

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/index.css CHANGED
@@ -1,1723 +1,2 @@
1
- /* src/cell-renderers/background-cell/BackgroundCell.css */
2
- .vuuTable td:has(> .vuuBackgroundCellDeprecated) {
3
- padding: 0;
4
- text-align: right;
5
- }
6
- .vuuBackgroundCellDeprecated {
7
- padding-right: var(--salt-size-unit);
8
- position: relative;
9
- z-index: -1;
10
- }
11
- .vuuBackgroundCellDeprecated-flasher {
12
- color: transparent;
13
- position: absolute;
14
- left: 0;
15
- right: 0;
16
- top: 0;
17
- bottom: 0;
18
- z-index: -1;
19
- }
20
- .vuuBackgroundCellDeprecated-flasher {
21
- text-align: left;
22
- }
23
- .vuuBackgroundCellDeprecated-flasher + .num {
24
- padding-left: 8px;
25
- }
26
- .right .vuuBackgroundCellDeprecated-flasher {
27
- text-align: right;
28
- }
29
- .right .vuuBackgroundCellDeprecated-flasher + .num {
30
- padding-right: 8px;
31
- }
32
- .up1 > .vuuBackgroundCellDeprecated-flasher {
33
- animation-duration: 30s;
34
- animation-name: reactbgup1;
35
- }
36
- .up2 > .vuuBackgroundCellDeprecated-flasher {
37
- animation-duration: 30s;
38
- animation-name: reactbgup2;
39
- }
40
- .down1 > .vuuBackgroundCellDeprecated-flasher {
41
- animation-duration: 30s;
42
- animation-name: reactbgdown1;
43
- }
44
- .down2 > .vuuBackgroundCellDeprecated-flasher {
45
- animation-duration: 30s;
46
- animation-name: reactbgdown2;
47
- }
48
- .up1.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
49
- animation-duration: 30s;
50
- animation-name: reactarrowup1;
51
- }
52
- .up2.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
53
- animation-duration: 30s;
54
- animation-name: reactarrowup2;
55
- }
56
- .down1.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
57
- animation-duration: 30s;
58
- animation-name: reactarrowdown1;
59
- }
60
- .down2.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
61
- animation-duration: 30s;
62
- animation-name: reactarrowdown2;
63
- }
64
- .up1.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
65
- animation-duration: 30s;
66
- animation-name: reactbgarrowup1;
67
- }
68
- .up2.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
69
- animation-duration: 30s;
70
- animation-name: reactbgarrowup2;
71
- }
72
- .down1.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
73
- animation-duration: 30s;
74
- animation-name: reactbgarrowdown1;
75
- }
76
- .down2.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
77
- animation-duration: 30s;
78
- animation-name: reactbgarrowdown2;
79
- }
80
-
81
- /* src/cell-renderers/background-cell/FlashingBackground.css */
82
- @keyframes reactbgup1 {
83
- from {
84
- background-color: green;
85
- }
86
- to {
87
- background-color: transparent;
88
- }
89
- }
90
- @keyframes reactbgup2 {
91
- from {
92
- background-color: green;
93
- }
94
- to {
95
- background-color: transparent;
96
- }
97
- }
98
- @keyframes reactbgdown1 {
99
- from {
100
- background-color: red;
101
- }
102
- to {
103
- background-color: transparent;
104
- }
105
- }
106
- @keyframes reactbgdown2 {
107
- from {
108
- background-color: red;
109
- }
110
- to {
111
- background-color: transparent;
112
- }
113
- }
114
- @keyframes reactarrowup1 {
115
- from {
116
- color: white;
117
- }
118
- to {
119
- color: transparent;
120
- }
121
- }
122
- @keyframes reactarrowup2 {
123
- from {
124
- color: white;
125
- }
126
- to {
127
- color: transparent;
128
- }
129
- }
130
- @keyframes reactarrowdown1 {
131
- from {
132
- color: white;
133
- }
134
- to {
135
- color: transparent;
136
- }
137
- }
138
- @keyframes reactarrowdown2 {
139
- from {
140
- color: white;
141
- }
142
- to {
143
- color: transparent;
144
- }
145
- }
146
- @keyframes reactbgarrowup1 {
147
- 0% {
148
- color: green;
149
- background-color: green;
150
- }
151
- 20% {
152
- color: green;
153
- background-color: transparent;
154
- }
155
- 100% {
156
- color: transparent;
157
- background-color: transparent;
158
- }
159
- }
160
- @keyframes reactbgarrowup2 {
161
- 0% {
162
- color: green;
163
- background-color: green;
164
- }
165
- 20% {
166
- color: green;
167
- background-color: transparent;
168
- }
169
- 100% {
170
- color: transparent;
171
- background-color: transparent;
172
- }
173
- }
174
- @keyframes reactbgarrowdown1 {
175
- 0% {
176
- color: red;
177
- background-color: red;
178
- }
179
- 20% {
180
- color: red;
181
- background-color: transparent;
182
- }
183
- 100% {
184
- color: transparent;
185
- background-color: transparent;
186
- }
187
- }
188
- @keyframes reactbgarrowdown2 {
189
- 0% {
190
- color: red;
191
- background-color: red;
192
- }
193
- 20% {
194
- color: red;
195
- background-color: transparent;
196
- }
197
- 100% {
198
- color: transparent;
199
- background-color: transparent;
200
- }
201
- }
202
-
203
- /* src/cell-renderers/progress-cell/ProgressCell.css */
204
- .vuuProgressCell {
205
- align-items: center;
206
- display: flex;
207
- }
208
- .vuuProgressCell-track {
209
- display: inline-block;
210
- flex: auto 1 1;
211
- height: 4px;
212
- overflow: hidden;
213
- position: relative;
214
- }
215
- .vuuProgressCell-bg {
216
- background-color: var(--salt-measured-background);
217
- display: inline-block;
218
- height: 2px;
219
- left: 0;
220
- position: absolute;
221
- top: 1px;
222
- width: 100%;
223
- }
224
- .vuuProgressCell-bar {
225
- background-color: var(--salt-measured-fill);
226
- display: inline-block;
227
- height: 100%;
228
- left: 0;
229
- position: absolute;
230
- top: 0;
231
- transform: translateX(var(--progress-bar-pct, -100%));
232
- width: 100%;
233
- }
234
- .vuuProgressCell-text {
235
- flex: 35px 0 0;
236
- text-align: right;
237
- }
238
-
239
- /* src/cell-renderers-next/background-cell/BackgroundCell.css */
240
- .vuuTableNext td:has(> .vuuBackgroundCell) {
241
- padding: 0;
242
- text-align: right;
243
- }
244
- .vuuBackgroundCell {
245
- color: var(--background-cell-color);
246
- padding-right: var(--salt-size-unit);
247
- position: relative;
248
- z-index: -1;
249
- }
250
- .vuuBackgroundCell-flasher {
251
- background-color: var(--background-cell-background);
252
- position: absolute;
253
- left: 0;
254
- right: 0;
255
- top: 0;
256
- bottom: 0;
257
- z-index: -1;
258
- }
259
- .vuuBackgroundCell-flasher {
260
- text-align: left;
261
- }
262
- .vuuBackgroundCell-flasher + .num {
263
- padding-left: 8px;
264
- }
265
- .right .vuuBackgroundCell-flasher {
266
- text-align: right;
267
- }
268
- .right .vuuBackgroundCell-flasher + .num {
269
- padding-right: 8px;
270
- }
271
- .vuuBackgroundCell.up1 {
272
- animation-duration: 30s;
273
- animation-name: reactbgup1;
274
- }
275
- .vuuBackgroundCell.up2 {
276
- animation-duration: 30s;
277
- animation-name: reactbgup2;
278
- }
279
- .vuuBackgroundCell.down1 {
280
- animation-duration: 30s;
281
- animation-name: reactbgdown1;
282
- }
283
- .vuuBackgroundCell.down2 {
284
- animation-duration: 30s;
285
- animation-name: reactbgdown2;
286
- }
287
- .up1.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
288
- animation-duration: 30s;
289
- animation-name: reactarrowup1;
290
- }
291
- .up2.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
292
- animation-duration: 30s;
293
- animation-name: reactarrowup2;
294
- }
295
- .down1.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
296
- animation-duration: 30s;
297
- animation-name: reactarrowdown1;
298
- }
299
- .down2.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
300
- animation-duration: 30s;
301
- animation-name: reactarrowdown2;
302
- }
303
- .up1.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
304
- animation-duration: 30s;
305
- animation-name: reactbgarrowup1;
306
- }
307
- .up2.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
308
- animation-duration: 30s;
309
- animation-name: reactbgarrowup2;
310
- }
311
- .down1.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
312
- animation-duration: 30s;
313
- animation-name: reactbgarrowdown1;
314
- }
315
- .down2.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
316
- animation-duration: 30s;
317
- animation-name: reactbgarrowdown2;
318
- }
319
-
320
- /* src/cell-renderers-next/background-cell/FlashingBackground.css */
321
- @property --background-cell-background { syntax: "<color>"; initial-value: transparent; inherits: false; }
322
- @property --background-cell-color { syntax: "<color>"; initial-value: #15171B; inherits: false; }
323
- @keyframes reactbgup1 {
324
- from {
325
- --background-cell-background: var(--vuu-color-green-50);
326
- --background-cell-color: white;
327
- }
328
- to {
329
- --background-cell-background: transparent;
330
- --background-cell-color: var(--vuu-color-gray-80);
331
- }
332
- }
333
- @keyframes reactbgup2 {
334
- from {
335
- --background-cell-background: var(--vuu-color-green-50);
336
- --background-cell-color: #ffffff;
337
- }
338
- to {
339
- --background-cell-background: transparent;
340
- --background-cell-color: var(--vuu-color-gray-80);
341
- }
342
- }
343
- @keyframes reactbgdown1 {
344
- from {
345
- --background-cell-background: var(--vuu-color-red-50);
346
- --background-cell-color: white;
347
- }
348
- to {
349
- --background-cell-background: transparent;
350
- --background-cell-color: var(--vuu-color-gray-80);
351
- }
352
- }
353
- @keyframes reactbgdown2 {
354
- from {
355
- --background-cell-background: var(--vuu-color-red-50);
356
- --background-cell-color: white;
357
- }
358
- to {
359
- --background-cell-background: transparent;
360
- --background-cell-color: var(--vuu-color-gray-80);
361
- }
362
- }
363
- @keyframes reactarrowup1 {
364
- from {
365
- color: var(--salt-differential-positive-foreground);
366
- }
367
- to {
368
- color: transparent;
369
- }
370
- }
371
- @keyframes reactarrowup2 {
372
- from {
373
- color: var(--salt-differential-positive-foreground);
374
- }
375
- to {
376
- color: transparent;
377
- }
378
- }
379
- @keyframes reactarrowdown1 {
380
- from {
381
- color: var(--salt-differential-negative-foreground);
382
- }
383
- to {
384
- color: transparent;
385
- }
386
- }
387
- @keyframes reactarrowdown2 {
388
- from {
389
- color: var(--salt-differential-negative-foreground);
390
- }
391
- to {
392
- color: transparent;
393
- }
394
- }
395
- @keyframes reactbgarrowup1 {
396
- 0% {
397
- color: var(--salt-differential-positive-foreground);
398
- background-color: var(--vuu-color-green-50);
399
- }
400
- 20% {
401
- color: var(--salt-differential-positive-foreground);
402
- background-color: transparent;
403
- }
404
- 100% {
405
- color: transparent;
406
- background-color: transparent;
407
- }
408
- }
409
- @keyframes reactbgarrowup2 {
410
- 0% {
411
- color: var(--salt-differential-positive-foreground);
412
- background-color: var(--vuu-color-green-50);
413
- }
414
- 20% {
415
- color: var(--salt-differential-positive-foreground);
416
- background-color: transparent;
417
- }
418
- 100% {
419
- color: transparent;
420
- background-color: transparent;
421
- }
422
- }
423
- @keyframes reactbgarrowdown1 {
424
- 0% {
425
- color: var(--salt-differential-negative-foreground);
426
- background-color: var(--vuu-color-red-50);
427
- }
428
- 20% {
429
- color: var(--salt-differential-negative-foreground);
430
- background-color: transparent;
431
- }
432
- 100% {
433
- color: transparent;
434
- background-color: transparent;
435
- }
436
- }
437
- @keyframes reactbgarrowdown2 {
438
- 0% {
439
- color: var(--salt-differential-negative-foreground);
440
- background-color: var(--vuu-color-red-50);
441
- }
442
- 20% {
443
- color: var(--salt-differential-negative-foreground);
444
- background-color: transparent;
445
- }
446
- 100% {
447
- color: transparent;
448
- background-color: transparent;
449
- }
450
- }
451
-
452
- /* src/column-list/ColumnList.css */
453
- .vuuColumnList {
454
- --vuu-svg-function: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M5.8625 10.5V9.625H6.72291L8.4875 7.59792L6.72291 5.54167H5.64375L4.60833 10.8792C4.53055 11.3167 4.36527 11.6545 4.1125 11.8927C3.85972 12.1309 3.53402 12.25 3.13541 12.25C2.7368 12.25 2.40382 12.1333 2.13645 11.9C1.86909 11.6667 1.73541 11.375 1.73541 11.025C1.73541 10.7625 1.80833 10.551 1.95416 10.3906C2.1 10.2302 2.28958 10.15 2.52291 10.15C2.72708 10.15 2.89479 10.2083 3.02604 10.325C3.15729 10.4417 3.22291 10.5972 3.22291 10.7917C3.22291 10.8986 3.20104 10.9983 3.15729 11.0906C3.11354 11.183 3.05277 11.2583 2.975 11.3167C3.01388 11.3361 3.0552 11.3507 3.09895 11.3604C3.1427 11.3701 3.18888 11.375 3.2375 11.375C3.36388 11.375 3.47083 11.3142 3.55833 11.1927C3.64583 11.0712 3.70902 10.9132 3.74791 10.7188L4.75416 5.54167H2.91666V4.66667H4.91458L5.22083 3.12083C5.30833 2.68333 5.48333 2.34549 5.74583 2.10729C6.00833 1.8691 6.33402 1.75 6.72291 1.75C7.12152 1.75 7.44965 1.86667 7.70729 2.1C7.96493 2.33333 8.09375 2.625 8.09375 2.975C8.09375 3.2375 8.02083 3.44896 7.875 3.60938C7.72916 3.76979 7.53958 3.85 7.30625 3.85C7.1118 3.85 6.94652 3.7941 6.81041 3.68229C6.6743 3.57049 6.60625 3.42222 6.60625 3.2375C6.60625 3.14028 6.62569 3.04549 6.66458 2.95312C6.70347 2.86076 6.75208 2.78542 6.81041 2.72708C6.79097 2.70764 6.7618 2.69063 6.72291 2.67604C6.68402 2.66146 6.64513 2.65417 6.60625 2.65417C6.47986 2.65417 6.37048 2.7125 6.27812 2.82917C6.18576 2.94583 6.12013 3.09653 6.08125 3.28125L5.81875 4.66667H8.575V5.54167H7.88958L9.1 6.94167L10.2375 5.54167H9.5375V4.66667H12.25V5.54167H11.4042L9.65416 7.59792L11.4042 9.625H12.25V10.5H9.5375V9.625H10.2375L9.07083 8.26875L7.875 9.625H8.575V10.5H5.8625Z"/></svg>');
455
- --vuuList-borderStyle: none;
456
- --vuuListItem-padding: 0;
457
- display: flex;
458
- flex-direction: column;
459
- width: 252px;
460
- }
461
- [data-icon=function] {
462
- --vuu-icon-svg: var(--vuu-svg-function);
463
- }
464
- .vuuColumnListItem {
465
- border-bottom: solid 1px var(--salt-separable-tertiary-borderColor);
466
- padding: 0 6px 0 0;
467
- }
468
- .vuuColumnList-switch {
469
- flex: 0 0 32px;
470
- }
471
- .vuuColumnList-text {
472
- flex: 1 1 auto;
473
- }
474
- .vuuColumnList-checkBox {
475
- flex: 0 0 20px;
476
- }
477
- .vuuColumnList-icon {
478
- --vuu-icon-color: var(--vuu-color-gray-45);
479
- --vuu-icon-size: 16px;
480
- --vuu-icon-width: 32px;
481
- }
482
- .vuuColumnList-header {
483
- border-top: solid 2px var(--vuu-color-gray-30);
484
- flex: 0 0 40px;
485
- font-size: 14px;
486
- font-weight: 600;
487
- padding-top: 24px;
488
- }
489
- .vuuColumnList-colHeadings {
490
- border-bottom: solid 2px var(--vuu-color-gray-30);
491
- color: var(--vuu-color-gray-50);
492
- display: flex;
493
- flex: 0 0 24px;
494
- font-size: 10px;
495
- justify-content: space-between;
496
- margin-top: 16px;
497
- padding-bottom: 8px;
498
- }
499
-
500
- /* src/column-expression-input/ColumnExpressionInput.css */
501
- .vuuColumnExpressionInput {
502
- --vuuFilterEditor-background: var(--salt-container-primary-background);
503
- --vuuFilterEditor-color: var(--salt-text-primary-foreground);
504
- --vuuFilterEditor-fontFamily: var(--salt-typography-fontFamily);
505
- --vuuFilterEditor-fontSize: var(--salt-text-fontSize);
506
- --vuuFilterEditor-cursorColor: var(--salt-text-secondary-foreground);
507
- --vuuFilterEditor-selectionBackground: var(--salt-text-background-selected);
508
- --vuuFilterEditor-tooltipBackground: var(--salt-container-primary-background);
509
- --vuuFilterEditor-tooltipBorder: var(--tooltip-status-borderColor) var(--salt-container-borderWidth) var(--salt-container-borderStyle);
510
- --vuuFilterEditor-tooltipElevation: var(--salt-overlayable-shadow-popout);
511
- --vuuFilterEditor-suggestion-selectedBackground: var(--salt-selectable-background-selected);
512
- --vuuFilterEditor-suggestion-selectedColor: var(--salt-text-primary-foreground);
513
- --vuuFilterEditor-suggestion-detailColor: var(--salt-text-secondary-foreground-disabled);
514
- --vuuFilterEditor-suggestion-height: 24px;
515
- --vuuFilterEditor-variableColor: blue;
516
- align-items: center;
517
- box-sizing: border-box;
518
- height: 30px;
519
- }
520
- .vuuColumnExpressionInput-FilterButton,
521
- .vuuColumnExpressionInput-ClearButton {
522
- --vuu-icon-size: 12px;
523
- --saltButton-width: 28px;
524
- }
525
- .expression-type-container {
526
- margin: 0 3px 0 auto;
527
- color: var(--salt-text-secondary-foreground);
528
- }
529
- .expression-kind {
530
- display: inline-block;
531
- width: 50px;
532
- }
533
- .expression-type {
534
- display: inline-block;
535
- text-align: right;
536
- width: 50px;
537
- }
538
- .vuuSuggestion {
539
- display: flex;
540
- align-items: center;
541
- }
542
- .vuuFunctionDoc .function-heading {
543
- display: flex;
544
- gap: 3px;
545
- }
546
- .vuuFunctionDoc .function-name {
547
- font-style: italic;
548
- }
549
- .vuuFunctionDoc .param-list {
550
- font-style: italic;
551
- color: blue;
552
- white-space: pre;
553
- }
554
- .vuuFunctionDoc .function-type {
555
- margin-left: auto;
556
- }
557
- .vuuFunctionDoc .example-container {
558
- background-color: var(--salt-container-secondary-background);
559
- margin: 6px 0;
560
- padding: 3px;
561
- }
562
- .vuuFunctionDoc .example-expression {
563
- font-family: var(--salt-typography-fontFamily-code);
564
- margin-left: 8px;
565
- margin-top: 6px;
566
- }
567
- .vuuFunctionDoc .example-result {
568
- margin-left: 8px;
569
- margin-top: 6px;
570
- }
571
-
572
- /* src/column-settings/ColumnSettingsPanel.css */
573
- .vuuColumnSettingsPanel {
574
- --vuu-svg-align-left: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9.33333 10H2.66667C2.3 10 2 10.3 2 10.6667C2 11.0333 2.3 11.3333 2.66667 11.3333H9.33333C9.7 11.3333 10 11.0333 10 10.6667C10 10.3 9.7 10 9.33333 10ZM9.33333 4.66667H2.66667C2.3 4.66667 2 4.96667 2 5.33333C2 5.7 2.3 6 2.66667 6H9.33333C9.7 6 10 5.7 10 5.33333C10 4.96667 9.7 4.66667 9.33333 4.66667ZM2.66667 8.66667H13.3333C13.7 8.66667 14 8.36667 14 8C14 7.63333 13.7 7.33333 13.3333 7.33333H2.66667C2.3 7.33333 2 7.63333 2 8C2 8.36667 2.3 8.66667 2.66667 8.66667ZM2.66667 14H13.3333C13.7 14 14 13.7 14 13.3333C14 12.9667 13.7 12.6667 13.3333 12.6667H2.66667C2.3 12.6667 2 12.9667 2 13.3333C2 13.7 2.3 14 2.66667 14ZM2 2.66667C2 3.03333 2.3 3.33333 2.66667 3.33333H13.3333C13.7 3.33333 14 3.03333 14 2.66667C14 2.3 13.7 2 13.3333 2H2.66667C2.3 2 2 2.3 2 2.66667Z" /></svg>');
575
- --vuu-svg-align-right: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.66667 14H13.3333C13.7 14 14 13.7 14 13.3333C14 12.9667 13.7 12.6667 13.3333 12.6667H2.66667C2.3 12.6667 2 12.9667 2 13.3333C2 13.7 2.3 14 2.66667 14ZM6.66667 11.3333H13.3333C13.7 11.3333 14 11.0333 14 10.6667C14 10.3 13.7 10 13.3333 10H6.66667C6.3 10 6 10.3 6 10.6667C6 11.0333 6.3 11.3333 6.66667 11.3333ZM2.66667 8.66667H13.3333C13.7 8.66667 14 8.36667 14 8C14 7.63333 13.7 7.33333 13.3333 7.33333H2.66667C2.3 7.33333 2 7.63333 2 8C2 8.36667 2.3 8.66667 2.66667 8.66667ZM6.66667 6H13.3333C13.7 6 14 5.7 14 5.33333C14 4.96667 13.7 4.66667 13.3333 4.66667H6.66667C6.3 4.66667 6 4.96667 6 5.33333C6 5.7 6.3 6 6.66667 6ZM2 2.66667C2 3.03333 2.3 3.33333 2.66667 3.33333H13.3333C13.7 3.33333 14 3.03333 14 2.66667C14 2.3 13.7 2 13.3333 2H2.66667C2.3 2 2 2.3 2 2.66667Z" /></svg>');
576
- --vuu-svg-pin-left: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.33333 9.86V8.66666H13.3333C13.7 8.66666 14 8.36666 14 8C14 7.63333 13.7 7.33333 13.3333 7.33333L7.33333 7.33333V6.14C7.33333 5.84 6.97333 5.69333 6.76667 5.90666L4.90667 7.76666C4.77333 7.89999 4.77333 8.10666 4.90667 8.24L6.76667 10.1C6.97333 10.3067 7.33333 10.16 7.33333 9.86ZM2.66667 13.3333C3.03333 13.3333 3.33333 13.0333 3.33333 12.6667L3.33333 3.33333C3.33333 2.96666 3.03333 2.66666 2.66667 2.66666C2.3 2.66666 2 2.96666 2 3.33333L2 12.6667C2 13.0333 2.3 13.3333 2.66667 13.3333Z" /></svg>');
577
- --vuu-svg-pin-float: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6 4.66667H4.66667V6H6V4.66667ZM6 7.33333H4.66667V8.66667H6V7.33333ZM6 2C5.26 2 4.66667 2.6 4.66667 3.33333H6V2ZM8.66667 10H7.33333V11.3333H8.66667V10ZM12.6667 2V3.33333H14C14 2.6 13.4 2 12.6667 2ZM8.66667 2H7.33333V3.33333H8.66667V2ZM6 11.3333V10H4.66667C4.66667 10.7333 5.26 11.3333 6 11.3333ZM12.6667 8.66667H14V7.33333H12.6667V8.66667ZM12.6667 6H14V4.66667H12.6667V6ZM12.6667 11.3333C13.4 11.3333 14 10.7333 14 10H12.6667V11.3333ZM2.66667 4.66667C2.3 4.66667 2 4.96667 2 5.33333V12.6667C2 13.4 2.6 14 3.33333 14H10.6667C11.0333 14 11.3333 13.7 11.3333 13.3333C11.3333 12.9667 11.0333 12.6667 10.6667 12.6667H4C3.63333 12.6667 3.33333 12.3667 3.33333 12V5.33333C3.33333 4.96667 3.03333 4.66667 2.66667 4.66667ZM10 3.33333H11.3333V2H10V3.33333ZM10 11.3333H11.3333V10H10V11.3333Z" /></svg>');
578
- --vuu-svg-pin-right: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8.66667 6.14V7.33333H2.66667C2.3 7.33333 2 7.63333 2 8C2 8.36666 2.3 8.66666 2.66667 8.66666H8.66667V9.86C8.66667 10.16 9.02667 10.3067 9.23333 10.0933L11.0933 8.23333C11.2267 8.1 11.2267 7.89333 11.0933 7.76L9.23333 5.9C9.02667 5.69333 8.66667 5.84 8.66667 6.14ZM13.3333 13.3333C13.7 13.3333 14 13.0333 14 12.6667V3.33333C14 2.96666 13.7 2.66666 13.3333 2.66666C12.9667 2.66666 12.6667 2.96666 12.6667 3.33333V12.6667C12.6667 13.0333 12.9667 13.3333 13.3333 13.3333Z"/></svg>');
579
- --vuuDropdown-height: 24px;
580
- --vuuDropdown-width: 100%;
581
- --vuuIconToggleButton-iconSize: 16px;
582
- display: flex;
583
- flex-direction: column;
584
- gap: 24px;
585
- height: 100%;
586
- padding-top: 24px;
587
- }
588
- .vuuColumnSettingsPanel-header {
589
- border-top: solid 2px var(--vuu-color-gray-30);
590
- font-size: 14px;
591
- font-weight: 600;
592
- padding-top: 24px;
593
- }
594
- .vuuColumnSettingsPanel-buttonBar {
595
- align-items: center;
596
- display: flex;
597
- justify-content: space-between;
598
- margin-top: auto;
599
- }
600
- .vuuColumnSettingsPanel-buttonBar[data-align=right] {
601
- gap: 6px;
602
- justify-content: flex-end;
603
- }
604
- .vuuColumnSettingsPanel-buttonNavPrev {
605
- --vuu-icon-left: 6px;
606
- padding-left: 24px;
607
- }
608
- .vuuColumnSettingsPanel-buttonNavNext {
609
- --vuu-icon-left: calc(100% - 18px);
610
- padding-right: 24px;
611
- }
612
- [data-icon=align-left] {
613
- --vuu-icon-svg: var(--vuu-svg-align-left);
614
- }
615
- [data-icon=align-right] {
616
- --vuu-icon-svg: var(--vuu-svg-align-right);
617
- }
618
- [data-icon=pin-left] {
619
- --vuu-icon-svg: var(--vuu-svg-pin-left);
620
- }
621
- [data-icon=pin-float] {
622
- --vuu-icon-svg: var(--vuu-svg-pin-float);
623
- }
624
- [data-icon=pin-right] {
625
- --vuu-icon-svg: var(--vuu-svg-pin-right);
626
- }
627
-
628
- /* src/datasource-stats/DatasourceStats.css */
629
- .vuuDatasourceStats {
630
- color: black;
631
- display: flex;
632
- font-size: 10px;
633
- gap: var(--salt-size-unit);
634
- padding: 4px 0 0 12px;
635
- }
636
- .vuuDatasourceStats-label {
637
- color: var(--vuu-color-gray-50);
638
- }
639
-
640
- /* ../vuu-table/src/table/ColumnResizer.css */
641
- .vuuColumnResizer {
642
- background-color: var(--columnResizer-color);
643
- cursor: col-resize;
644
- height: var(--header-height);
645
- position: relative;
646
- width: 4px;
647
- }
648
- .vuuColumnResizer:hover {
649
- --columnResizer-color: var(--salt-color-blue-500);
650
- }
651
- .vuuColumnResizer:after {
652
- content: "";
653
- position: absolute;
654
- width: var(--columnResizer-width, 1px);
655
- top: 0;
656
- bottom: 0;
657
- right: -1px;
658
- background-color: var(--columnResizer-color, var(--salt-separable-tertiary-borderColor));
659
- height: var(--columnResizer-height, calc(100% + 1px));
660
- }
661
-
662
- /* ../vuu-table/src/table/TableCell.css */
663
- .vuuTable {
664
- --cell-outline-width: 2px;
665
- user-select: none;
666
- }
667
- [role=cell] {
668
- display: inline-block;
669
- }
670
- [data-align=end] {
671
- margin-left: auto;
672
- }
673
- [data-align=end] + [data-align=end] {
674
- margin-left: 0;
675
- }
676
- .vuuTable-table [role=cell] {
677
- --saltEditableLabel-height: 17px;
678
- --saltInput-height: 17px;
679
- --saltInput-minHeight: 17px;
680
- border-right: 1px solid var(--vuuTableCell-border-rightColor);
681
- border-bottom: 1px solid var(--vuuTableCell-border-bottomColor);
682
- color: var(--salt-text-primary-foreground);
683
- cursor: default;
684
- height: var(--vuuTable-rowHeight);
685
- line-height: calc(var(--vuuTable-rowHeight) - 1px);
686
- overflow: hidden;
687
- padding: 0 5px;
688
- vertical-align: top;
689
- }
690
- .vuuTable-headerCell:focus,
691
- .vuuTable [role=cell]:focus {
692
- outline: var(--vuuTableCell-outline, dotted var(--salt-color-blue-400) var(--cell-outline-width));
693
- outline-offset: calc(var(--cell-outline-width) * -1);
694
- box-shadow: inset 0 0 0 var(--cell-outline-width) white;
695
- border-bottom: none;
696
- }
697
- .vuuTable-headerCell:focus .vuuTable-headerCell-inner {
698
- padding-bottom: var(--cell-outline-width);
699
- }
700
- .vuuTable-headerCell:not(.vuuTable-headerCell-resizing):focus .vuuTable-headerCell-inner {
701
- --columnResizer-color: transparent;
702
- }
703
- .vuuTable [role=cell]:focus {
704
- border-right: none;
705
- padding-bottom: 1px;
706
- }
707
- [role=cell][data-editable=true] {
708
- --salt-text-fontSize: 10px;
709
- --vuu-icon-size: 5px;
710
- position: relative;
711
- }
712
- [role=cell][data-editable=true]:after {
713
- top: 0;
714
- content: "";
715
- background-color: var(--salt-text-secondary-foreground, black);
716
- left: 0;
717
- height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
718
- -webkit-mask: var(--svg-corner-triangle) center center/var(--vuu-icon-size) var(--vuu-icon-size);
719
- mask: var(--svg-corner-triangle) center center/var(--vuu-icon-size) var(--vuu-icon-size);
720
- mask-repeat: no-repeat;
721
- -webkit-mask-repeat: no-repeat;
722
- position: absolute;
723
- transform: rotate(180deg);
724
- width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
725
- }
726
- [role=cell]:focus[data-editable],
727
- [role=cell]:focus-within[data-editable],
728
- [role=cell]:has(.saltEditableLabel-editing) {
729
- outline: solid var(--salt-color-blue-400) 1px;
730
- background-color: white;
731
- outline-offset: -1px;
732
- }
733
- [role=cell]:focus[data-editable=true]:after,
734
- [role=cell]:has(.saltEditableLabel):after {
735
- background-color: var(--salt-color-blue-400);
736
- left: 1px;
737
- top: 1px;
738
- }
739
- .vuuAlignRight {
740
- text-align: right;
741
- }
742
-
743
- /* ../vuu-table/src/table/TableGroupCell.css */
744
- .vuuTableGroupCell {
745
- --spacer-width: 20px;
746
- --toggle-icon-transform: var(--row-toggle-icon-transform, none);
747
- --vuu-icon-width: 18px;
748
- align-items: center;
749
- display: inline-flex;
750
- }
751
- .vuuTableGroupCell-spacer {
752
- height: 100%;
753
- position: relative;
754
- width: var(--spacer-width);
755
- }
756
- .vuuTableGroupCell-spacer:after {
757
- background: var(--salt-container-primary-borderColor);
758
- content: "";
759
- position: absolute;
760
- top: 0;
761
- bottom: -1px;
762
- left: 9px;
763
- width: 1px;
764
- }
765
- .vuuTableGroupCell-toggle {
766
- transition: transform 0.25s;
767
- transform: var(--toggle-icon-transform);
768
- }
769
-
770
- /* ../vuu-table/src/table/TableRow.css */
771
- .vuuTableRow {
772
- --row-background: var(--table-background);
773
- position: absolute;
774
- top: 0;
775
- }
776
- .vuuTableRow-even {
777
- --row-background: var(--row-background-even);
778
- }
779
- .vuuTableRow {
780
- background-color: var(--row-background);
781
- }
782
- .vuuTableRow-expanded {
783
- --row-toggle-icon-transform: rotate(90deg);
784
- }
785
- .vuuTableRow[aria-selected] {
786
- background-color: var(--vuuTableRow-selected-background, var(--salt-selectable-background-selected));
787
- --vuuTableCell-border-bottomColor: var(--salt-selectable-borderColor-selected);
788
- }
789
- .vuuTableRow-preSelected {
790
- --vuuTableCell-border-bottomColor: var(--salt-selectable-borderColor-selected);
791
- }
792
-
793
- /* ../vuu-table/src/table/TableGroupHeaderCell.css */
794
- .salt-theme {
795
- --svg-spinner: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgb(38, 112, 169)" d="M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50"><animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite" /></path></svg>');
796
- }
797
- .vuuTable-groupHeaderCell {
798
- --cell-align: "flex-start";
799
- text-align: left;
800
- background: var(--dataTable-background);
801
- cursor: default;
802
- height: var(--vuuTableHeaderHeight);
803
- }
804
- .vuuTable-groupHeaderCell-inner {
805
- align-items: center;
806
- display: flex;
807
- height: 100%;
808
- padding-left: 1px;
809
- }
810
- .vuuTable-groupHeaderCell-label {
811
- align-items: center;
812
- display: flex;
813
- flex: 0 0 auto;
814
- }
815
- .vuuTable-groupHeaderCell-col {
816
- align-items: center;
817
- background-color: inherit;
818
- display: inline-flex;
819
- flex: 0 1 auto;
820
- height: calc(var(--vuuTableHeaderHeight) - 2px);
821
- justify-content: space-between;
822
- padding-right: 8px;
823
- position: relative;
824
- }
825
- .vuuTable-groupHeaderCell-close {
826
- --vuu-icon-height: 18px;
827
- --vuu-icon-width: 18px;
828
- cursor: pointer;
829
- left: 3px;
830
- }
831
- .vuuTable-groupHeaderCell-col:nth-child(odd) {
832
- background-color: var(--salt-color-gray-50);
833
- }
834
- .vuuTable-groupHeaderCell-col:nth-child(even) {
835
- background-color: var(--salt-color-gray-40);
836
- }
837
- .vuuTable-groupHeaderCell-col:first-child {
838
- clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
839
- padding-left: 3px;
840
- z-index: 1;
841
- }
842
- .vuuTable-groupHeaderCell-col:not(:first-child) {
843
- margin-left: -6px;
844
- padding-left: 12px;
845
- clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%, 8px 50%);
846
- }
847
- .vuuTable-groupHeaderCell-resizing {
848
- --columnResizer-color: var(--salt-color-blue-500);
849
- --columnResizer-height: var(--table-height);
850
- --columnResizer-width: 2px;
851
- }
852
- .vuuTable-groupHeaderCell-pending {
853
- --pending-content: "";
854
- }
855
- .vuuTable-groupHeaderCell-col:has(+ .vuuColumnResizer):after {
856
- content: var(--pending-content);
857
- width: 24px;
858
- height: 24px;
859
- background-image: var(--svg-spinner);
860
- background-repeat: no-repeat;
861
- background-size: cover;
862
- }
863
-
864
- /* ../vuu-table/src/table/SortIndicator.css */
865
- .vuuSortIndicator {
866
- --menu-icon-size: 18px;
867
- --menu-item-icon-color: black;
868
- display: flex;
869
- flex-direction: column;
870
- position: relative;
871
- width: 18px;
872
- }
873
- .vuuSortPosition {
874
- font-size: 10px;
875
- line-height: 10px;
876
- text-align: center;
877
- }
878
-
879
- /* ../vuu-table/src/table/TableHeaderCell.css */
880
- .vuuTable-heading:nth-child(2) {
881
- --heading-top: calc(var(--header-height));
882
- }
883
- .vuuTable-heading:nth-child(3) {
884
- --heading-top: calc(var(--header-height) * 2);
885
- }
886
- .vuuTable-heading:nth-child(3) {
887
- --heading-top: calc(var(--header-height) * 3);
888
- }
889
- .vuuTable-headingCell {
890
- background: var(--dataTable-background);
891
- border-color: var(--salt-separable-tertiary-borderColor);
892
- border-style: solid solid solid none;
893
- border-width: 1px;
894
- color: var(--salt-text-secondary-foreground);
895
- display: inline-block;
896
- height: var(--vuuTableHeaderHeight);
897
- padding: 0 !important;
898
- }
899
- .vuuTable-heading:has(+ .vuuTable-heading) > .vuuTable-headingCell {
900
- border-bottom-color: transparent;
901
- }
902
- [role=columnHeader] {
903
- --vuuTableCell-border-bottomColor: var(--salt-separable-tertiary-borderColor);
904
- --cell-align: "flex-start";
905
- display: inline-block;
906
- text-align: left;
907
- background: var(--dataTable-background);
908
- border-right: 1px solid var(--vuuTableCell-border-rightColor);
909
- border-bottom: 1px solid var(--vuuTableCell-border-bottomColor);
910
- color: var(--salt-text-secondary-foreground);
911
- cursor: default;
912
- height: var(--vuuTableHeaderHeight);
913
- padding: 0 !important;
914
- vertical-align: top;
915
- }
916
- .vuuTable-headerCell-right {
917
- --cell-align: flex-end;
918
- }
919
- .vuuTable-headerCell-inner {
920
- align-items: stretch;
921
- display: flex;
922
- height: 100%;
923
- padding: 0 0 0 3px;
924
- }
925
- .vuuTable-headerCell-inner:has(.vuuFilterIndicator) {
926
- padding-left: 0;
927
- }
928
- .vuuTable-headerCell-label {
929
- align-items: center;
930
- justify-content: var(--cell-align);
931
- display: flex;
932
- flex: 1 1 auto;
933
- }
934
- .vuuTable-headerCell-resizing {
935
- --columnResizer-color: var(--salt-color-blue-500);
936
- --columnResizer-height: var(--table-height);
937
- --columnResizer-width: 2px;
938
- }
939
- [role=headerCell].vuuPinLeft.vuuEndPin:after {
940
- box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.4);
941
- content: "";
942
- position: absolute;
943
- width: 1px;
944
- background-color: transparent;
945
- height: var(--table-height);
946
- top: 0;
947
- right: 0px;
948
- }
949
- [role=headerCell].vuuPinRight.vuuEndPin:after {
950
- box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.3);
951
- content: "";
952
- position: absolute;
953
- width: 1px;
954
- background-color: transparent;
955
- height: var(--table-height);
956
- top: 0;
957
- left: 0px;
958
- }
959
- [role=headerCell]:is(.vuuPinLeft, .vuuPinRight, .vuuPinFloating) {
960
- top: 0;
961
- z-index: 20;
962
- }
963
- .saltDraggable-vuuTable-headerCell {
964
- --dataTable-background: ivory;
965
- --vuuTableHeaderHeight: 25px;
966
- }
967
-
968
- /* ../vuu-table/src/table/filter-indicator.css */
969
- .vuuFilterIndicator {
970
- --menu-icon-size: 12px;
971
- --menu-item-icon-color: black;
972
- align-items: center;
973
- cursor: pointer;
974
- display: flex;
975
- flex: 0 0 18px;
976
- flex-direction: column;
977
- justify-content: center;
978
- position: relative;
979
- }
980
- .vuuFilterIndicator + .vuuTable-headerCell-inner {
981
- padding-left: 0;
982
- }
983
-
984
- /* ../vuu-table/src/table/RowBasedTable.css */
985
- .vuuTable-table {
986
- --vuuTable-rowHeight: var(--row-height);
987
- --vuuTableCell-border-bottomColor: transparent;
988
- --vuuTableCell-border-rightColor: var(--salt-separable-tertiary-borderColor);
989
- border-collapse: separate;
990
- border-spacing: 0;
991
- border-left: 1px solid #ccc;
992
- border: none;
993
- font-size: var(--vuuTable-font-size, 10px);
994
- margin: 0;
995
- min-height: 100%;
996
- width: var(--content-width);
997
- }
998
- .vuuTable-headers {
999
- position: sticky;
1000
- top: 0;
1001
- z-index: 1;
1002
- }
1003
- .vuuTable-body {
1004
- height: var(--content-height);
1005
- position: relative;
1006
- }
1007
-
1008
- /* ../vuu-table/src/table/Table.css */
1009
- .vuuTable {
1010
- --dataTable-background: var(--salt-container-primary-background, inherit);
1011
- --row-background-even: var(--dataTable-background);
1012
- --row-background-odd: var(--dataTable-background);
1013
- --table-background: var(--dataTable-background, none);
1014
- background-color: var(--dataTable-background);
1015
- position: relative;
1016
- }
1017
- .vuuTable-zebra {
1018
- --row-background-even: var(--salt-container-secondary-background);
1019
- }
1020
- .vuuTable-scrollbarContainer {
1021
- --scroll-content-width: calc(var(--content-width) - var(--pinned-width-left));
1022
- border-bottom: none !important;
1023
- border-top: none !important;
1024
- border-left: solid 1px var(--salt-container-primary-borderColor);
1025
- box-shadow: 0px -1px 0px 0px var(--salt-container-primary-borderColor);
1026
- height: var(--viewport-body-height);
1027
- left: var(--pinned-width-left);
1028
- overflow: auto;
1029
- position: absolute;
1030
- top: var(--total-header-height);
1031
- width: calc(var(--table-width) - var(--pinned-width-left) + 1px);
1032
- }
1033
- .vuuTable-scrollbarContent {
1034
- height: calc(var(--content-height) + var(--horizontal-scrollbar-height));
1035
- position: absolute;
1036
- width: var(--scroll-content-width, var(--content-width));
1037
- }
1038
- .vuuTable-contentContainer {
1039
- --vuuTableHeaderHeight: var(--header-height, 30px);
1040
- background-color: var(--salt-container-primary-background);
1041
- height: calc(var(--table-height) - var(--horizontal-scrollbar-height));
1042
- position: relative;
1043
- overflow: auto;
1044
- overscroll-behavior: none;
1045
- width: calc(var(--table-width) - var(--vertical-scrollbar-width));
1046
- }
1047
- .vuuTable-contentContainer::-webkit-scrollbar {
1048
- display: none;
1049
- }
1050
- :is(.vuuPinLeft, .vuuPinRight, .vuuPinFloating) {
1051
- background-color: inherit;
1052
- position: sticky;
1053
- z-index: 1;
1054
- }
1055
- .vuuTable-settings {
1056
- --saltButton-height: var(--header-height);
1057
- --saltButton-width: 15px;
1058
- position: absolute !important;
1059
- right: 0;
1060
- top: 0;
1061
- }
1062
- .vuuTable:has(.vuuTable-headerCell-resizing) * {
1063
- cursor: col-resize;
1064
- }
1065
-
1066
- /* ../vuu-table/src/table/Table-loading.css */
1067
- .vuuTable-loading .vuuTable-table {
1068
- --skeleton-height: 20px;
1069
- --skeleton-width: calc(var(--content-width) - 8px);
1070
- --skeleton-left: 4px;
1071
- --skeleton-row-height: 16px;
1072
- --skeleton-size: var(--skeleton-width) var(--skeleton-height);
1073
- --skeleton-row: linear-gradient( var(--salt-color-gray-20-fade-background) var(--skeleton-row-height), transparent 0 );
1074
- --skeleton-background-image: var(--skeleton-row);
1075
- background-image: var(--skeleton-background-image);
1076
- background-repeat: repeat-y;
1077
- background-size: var(--skeleton-size);
1078
- background-position-x: var(--skeleton-left);
1079
- background-position-y: 27px;
1080
- }
1081
- .vuuTable-loading .vuuTable-table {
1082
- --skeleton-height: 20px;
1083
- --skeleton-width: calc(var(--content-width) - 8px);
1084
- --skeleton-left: 4px;
1085
- --skeleton-row-height: 16px;
1086
- --skeleton-size: var(--skeleton-width) var(--skeleton-height);
1087
- --skeleton-row: linear-gradient( var(--salt-color-gray-20-fade-background) var(--skeleton-row-height), transparent 0 );
1088
- --skeleton-background-image: var(--skeleton-row);
1089
- background-image: var(--skeleton-background-image);
1090
- background-repeat: repeat-y;
1091
- background-size: var(--skeleton-size);
1092
- background-position-x: var(--skeleton-left);
1093
- background-position-y: 27px;
1094
- }
1095
- .vuuTable-loading .vuuTable-table:after {
1096
- animation: shimmer 2s infinite;
1097
- background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .2) 20%, rgba(255, 255, 255, .6) 60%, rgba(255, 255, 255, 0));
1098
- content: "";
1099
- height: var(--table-height);
1100
- left: 0px;
1101
- position: absolute;
1102
- transform: translateX(-100%);
1103
- top: var(--header-height);
1104
- width: var(--content-width);
1105
- }
1106
- @keyframes shimmer {
1107
- 100% {
1108
- transform: translateX(100%);
1109
- }
1110
- }
1111
-
1112
- /* ../vuu-table/src/table/cell-renderers/json-cell/JsonCell.css */
1113
- .vuuJsonCell-group {
1114
- align-items: center;
1115
- display: inline-flex;
1116
- height: calc(var(--vuuTable-rowHeight) - 1px);
1117
- width: 100%;
1118
- }
1119
- .vuuJsonCell-toggle {
1120
- --vuu-icon-color: var(--salt-text-primary-foreground);
1121
- --vuu-icon-height: calc(var(--vuuTable-rowHeight) - 1px);
1122
- --vuu-icon-width: 18px;
1123
- flex-shrink: 0;
1124
- margin-left: auto;
1125
- }
1126
- .vuuJsonCell-name {
1127
- font-weight: var(--salt-typography-fontWeight-semiBold);
1128
- }
1129
- .vuuJsonCell-value {
1130
- overflow: hidden;
1131
- text-overflow: ellipsis;
1132
- }
1133
-
1134
- /* ../vuu-table/src/table-next/column-resizing/ColumnResizer.css */
1135
- .vuuColumnResizerNext {
1136
- background-color: var(--columnResizer-color);
1137
- cursor: col-resize;
1138
- height: var(--header-height);
1139
- margin-left: var(--columnResizer-left, auto);
1140
- position: relative;
1141
- width: 2px;
1142
- }
1143
- .vuuColumnResizerNext:hover {
1144
- --columnResizer-color: var(--salt-color-blue-500);
1145
- }
1146
- .vuuColumnResizerNext:after {
1147
- background-color: var(--columnResizer-color, var(--salt-separable-tertiary-borderColor));
1148
- bottom: 0;
1149
- content: "";
1150
- position: absolute;
1151
- top: 0;
1152
- right: 0px;
1153
- height: var(--columnResizer-height, 0);
1154
- width: 2px;
1155
- }
1156
-
1157
- /* ../vuu-table/src/table-next/column-header-pill/ColumnHeaderPill.css */
1158
- .vuuColumnHeaderPill {
1159
- --vuu-icon-size: 14px;
1160
- --menu-item-icon-color: black;
1161
- --vuu-icon-color: white;
1162
- --vuu-icon-height: 12px;
1163
- --vuu-icon-width: 13px;
1164
- align-items: center;
1165
- background: var(--salt-taggable-background-active);
1166
- color: white;
1167
- border-radius: 4px;
1168
- font-size: 11px;
1169
- gap: 4px;
1170
- height: 16px;
1171
- display: flex;
1172
- margin: var(--vuuColumnHeaderPill-margin, 0);
1173
- padding: 0 6px;
1174
- position: relative;
1175
- }
1176
- .vuuColumnHeaderPill:hover {
1177
- --vuu-icon-color: var(--vuu-color-gray-80);
1178
- background-color: var(--salt-taggable-background-hover);
1179
- color: var(--vuu-color-gray-80);
1180
- }
1181
- .vuuColumnHeaderPill-removeButton {
1182
- cursor: pointer;
1183
- }
1184
-
1185
- /* ../vuu-table/src/table-next/column-header-pill/GroupColumnPill.css */
1186
- .vuuSortPosition {
1187
- font-size: 11px;
1188
- font-weight: 700;
1189
- padding-top: 1px;
1190
- }
1191
-
1192
- /* ../vuu-table/src/table-next/column-header-pill/SortIndicator.css */
1193
- .vuuSortPosition {
1194
- font-size: 11px;
1195
- font-weight: 700;
1196
- padding-top: 1px;
1197
- }
1198
-
1199
- /* ../vuu-table/src/table-next/header-cell/GroupHeaderCell.css */
1200
- .vuu-theme {
1201
- --svg-spinner: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgb(38, 112, 169)" d="M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50"><animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite" /></path></svg>');
1202
- }
1203
- .vuuTableNextGroupHeaderCell.vuuTableNextHeaderCell {
1204
- --vuuColumnHeaderPill-margin: 0;
1205
- --cell-align: "flex-start";
1206
- text-align: left;
1207
- background: var(--dataTable-background);
1208
- cursor: default;
1209
- height: var(--vuuTableHeaderHeight);
1210
- }
1211
- .vuuTableNextGroupHeaderCell-inner {
1212
- align-items: center;
1213
- display: flex;
1214
- gap: 4px;
1215
- height: 100%;
1216
- padding-left: 1px;
1217
- }
1218
- .vuuTableNextGroupHeaderCell-col {
1219
- align-items: center;
1220
- background-color: inherit;
1221
- display: inline-flex;
1222
- flex: 0 1 auto;
1223
- height: calc(var(--vuuTableHeaderHeight) - 2px);
1224
- justify-content: space-between;
1225
- padding-right: 8px;
1226
- position: relative;
1227
- }
1228
- .vuuTableNextGroupHeaderCell-label {
1229
- align-items: center;
1230
- display: flex;
1231
- flex: 0 0 auto;
1232
- }
1233
- .vuuTableNextGroupHeaderCell-close {
1234
- --vuu-icon-height: 18px;
1235
- --vuu-icon-width: 18px;
1236
- cursor: pointer;
1237
- left: 3px;
1238
- }
1239
- .vuuTableNextGroupHeaderCell-resizing {
1240
- --columnResizer-color: var(--salt-color-blue-500);
1241
- --columnResizer-height: var(--table-height);
1242
- --columnResizer-width: 2px;
1243
- }
1244
- .vuuTableNextGroupHeaderCell-pending {
1245
- --pending-content: "";
1246
- }
1247
- .vuuTableNextGroupHeaderCell-col:has(+ .vuuColumnResizer):after {
1248
- content: var(--pending-content);
1249
- width: 24px;
1250
- height: 24px;
1251
- background-image: var(--svg-spinner);
1252
- background-repeat: no-repeat;
1253
- background-size: cover;
1254
- }
1255
-
1256
- /* ../vuu-table/src/table-next/column-menu/ColumnMenu.css */
1257
- .vuuMenuItem {
1258
- --vuu-svg-cog: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12.9533 8.65331C12.98 8.43998 13 8.22665 13 7.99998C13 7.77331 12.98 7.55998 12.9533 7.34665L14.36 6.24665C14.4867 6.14665 14.52 5.96665 14.44 5.81998L13.1067 3.51331C13.0267 3.36665 12.8467 3.31331 12.7 3.36665L11.04 4.03331C10.6933 3.76665 10.32 3.54665 9.91333 3.37998L9.66 1.61331C9.64 1.45331 9.5 1.33331 9.33333 1.33331H6.66667C6.5 1.33331 6.36 1.45331 6.34 1.61331L6.08667 3.37998C5.68 3.54665 5.30667 3.77331 4.96 4.03331L3.3 3.36665C3.14667 3.30665 2.97333 3.36665 2.89333 3.51331L1.56 5.81998C1.47333 5.96665 1.51333 6.14665 1.64 6.24665L3.04667 7.34665C3.02 7.55998 3 7.77998 3 7.99998C3 8.21998 3.02 8.43998 3.04667 8.65331L1.64 9.75331C1.51333 9.85331 1.48 10.0333 1.56 10.18L2.89333 12.4866C2.97333 12.6333 3.15333 12.6866 3.3 12.6333L4.96 11.9666C5.30667 12.2333 5.68 12.4533 6.08667 12.62L6.34 14.3866C6.36 14.5466 6.5 14.6666 6.66667 14.6666H9.33333C9.5 14.6666 9.64 14.5466 9.66 14.3866L9.91333 12.62C10.32 12.4533 10.6933 12.2266 11.04 11.9666L12.7 12.6333C12.8533 12.6933 13.0267 12.6333 13.1067 12.4866L14.44 10.18C14.52 10.0333 14.4867 9.85331 14.36 9.75331L12.9533 8.65331V8.65331ZM8 10.3333C6.71333 10.3333 5.66667 9.28665 5.66667 7.99998C5.66667 6.71331 6.71333 5.66665 8 5.66665C9.28667 5.66665 10.3333 6.71331 10.3333 7.99998C10.3333 9.28665 9.28667 10.3333 8 10.3333Z"/></svg>');
1259
- }
1260
- .vuuTable-columnMenu {
1261
- --vuu-icon-color: #606477;
1262
- --vuu-icon-height: 20px;
1263
- --vuu-icon-left: 0px;
1264
- --vuu-icon-size: 16px;
1265
- --vuu-icon-top: 0px;
1266
- --vuu-icon-width: 20px;
1267
- border-radius: 4px;
1268
- cursor: pointer;
1269
- display: inline-block;
1270
- padding: 2px;
1271
- left: var(--column-menu-left, 0);
1272
- margin: var(--vuuTable-columnMenu-margin, 0);
1273
- }
1274
- .vuuTable-columnMenu:hover {
1275
- --vuu-icon-color: #15171B;
1276
- background-color: #F37880;
1277
- }
1278
- .vuuTable-columnMenu-open:hover,
1279
- .vuuTable-columnMenu-open {
1280
- background-color: #6D18BD;
1281
- --vuu-icon-color: white;
1282
- }
1283
- [data-icon=cog] {
1284
- --vuu-icon-svg: var(--vuu-svg-cog);
1285
- --vuu-icon-size: 14px;
1286
- }
1287
-
1288
- /* ../vuu-table/src/table-next/header-cell/HeaderCell.css */
1289
- .vuuTableNextHeaderCell {
1290
- --cell-align: "flex-start";
1291
- --vuuColumnHeaderPill-margin: 0 0 0 3px;
1292
- align-items: center;
1293
- background-color: var(--vuuTableNextHeaderCell-background, inherit);
1294
- border-bottom: 1px solid #ccc;
1295
- border-right-color: var(--cell-borderColor);
1296
- border-right-style: solid;
1297
- border-right-width: 1px;
1298
- box-sizing: border-box;
1299
- cursor: default;
1300
- display: inline-flex;
1301
- height: var(--header-height);
1302
- vertical-align: top;
1303
- }
1304
- .vuuTableNextHeaderCell-right {
1305
- --columnResizer-left: 0;
1306
- --vuuTable-columnMenu-margin: 0;
1307
- --vuuColumnHeaderPill-margin: 0 3px 0 0;
1308
- --column-menu-left: 2px;
1309
- justify-content: flex-end;
1310
- }
1311
- .vuuTableNextHeaderCell .vuuColumnResizerNext:hover {
1312
- --columnResizer-color: var(--vuu-color-purple-10);
1313
- }
1314
- .vuuTableNextHeaderCell-label {
1315
- line-height: calc(var(--header-height) - 1px);
1316
- }
1317
- .vuuTableNextHeaderCell-resizing {
1318
- --columnResizer-height: var(--table-height);
1319
- }
1320
- .vuuTableNextHeaderCell.vuuPinLeft {
1321
- padding-left: 2px;
1322
- }
1323
- .vuuTableNextHeaderCell.vuuPinLeft.vuuEndPin .vuuColumnResizerNext:before {
1324
- --height: calc(var(--table-height) - 15px);
1325
- --inset-r: calc(var(--pin-width) - 2px);
1326
- --inset-b: calc(var(--height) - 2px);
1327
- --clip-path: polygon( 0% 0%, 0% 120%, 2px 120%, 2px 2px, var(--inset-r) 2px, var(--inset-r) var(--inset-b), 2px var(--inset-b), 2px 120%, 120% 120%, 120% 0% );
1328
- background-color: transparent;
1329
- border-color: var(--vuu-color-gray-40);
1330
- border-width: 1px;
1331
- border-style: solid solid solid solid;
1332
- border-radius: 4px;
1333
- box-shadow: 2px 1px 4px 0px rgba(0, 0, 0, 0.10);
1334
- clip-path: var(--clip-path);
1335
- content: "";
1336
- position: absolute;
1337
- width: var(--pin-width);
1338
- top: 0;
1339
- bottom: 0;
1340
- right: -1px;
1341
- height: var(--height);
1342
- z-index: -5;
1343
- }
1344
- .vuuTableNextHeaderCell.vuuPinRight.vuuEndPin .vuuColumnResizerNext:before {
1345
- --height: calc(var(--table-height) - 15px);
1346
- --inset-r: calc(var(--pin-width) - 2px);
1347
- --inset-b: calc(var(--height) - 2px);
1348
- --clip-path: polygon( -20% 0%, -20% 120%, 2px 120%, 2px 2px, var(--inset-r) 2px, var(--inset-r) var(--inset-b), 2px var(--inset-b), 2px 120%, 120% 120%, 120% 0% );
1349
- background-color: transparent;
1350
- border-color: #A9AAAD;
1351
- border-width: 1px;
1352
- border-style: solid solid solid solid;
1353
- border-radius: 4px;
1354
- box-shadow: -2px 1px 4px 0px rgba(0, 0, 0, 0.10);
1355
- clip-path: var(--clip-path);
1356
- content: "";
1357
- position: absolute;
1358
- width: var(--pin-width);
1359
- top: 0;
1360
- bottom: 0;
1361
- right: 0px;
1362
- height: var(--height);
1363
- z-index: -5;
1364
- }
1365
- .vuuTableNextHeaderCell.vuuDraggable-dragAway {
1366
- display: none;
1367
- }
1368
-
1369
- /* ../vuu-table/src/table-next/table-cell/TableCell.css */
1370
- .vuuTableNextCell {
1371
- border-right-color: var(--cell-borderColor);
1372
- border-right-style: solid;
1373
- border-right-width: 1px;
1374
- display: inline-block;
1375
- height: 100%;
1376
- overflow: hidden;
1377
- padding: 0 8px;
1378
- text-overflow: ellipsis;
1379
- vertical-align: top;
1380
- }
1381
- .vuuTableNextCell-right {
1382
- text-align: right;
1383
- }
1384
- .vuuTableNextCell-editable {
1385
- display: inline-flex;
1386
- line-height: 18px;
1387
- padding-bottom: 1px;
1388
- padding-top: 1px;
1389
- text-overflow: unset;
1390
- }
1391
- .vuuTableNextCell:focus {
1392
- outline: var(--vuuTableCell-outline, solid var(--vuu-color-purple-10) 2px);
1393
- outline-offset: -2px;
1394
- box-shadow: inset 0 0 0 var(--cell-outline-width) white;
1395
- border-bottom: none;
1396
- }
1397
- .vuuTableNextRow-selected .vuuTableNextCell:not(.vuuTableNextCell-editable):focus {
1398
- outline: var(--vuuTableCell-outline, solid var(--vuu-color-purple-10) 2px);
1399
- outline-offset: -1px;
1400
- }
1401
- .vuuTableNextCell-editable:focus {
1402
- outline: none;
1403
- }
1404
-
1405
- /* ../vuu-table/src/table-next/table-cell/TableGroupCell.css */
1406
- .vuuTableNextGroupCell {
1407
- --group-cell-spacer-width: 20px;
1408
- align-items: center;
1409
- border-right-color: var(--vuuTableNextGroupCell-borderColor, var(--salt-separable-tertiary-borderColor));
1410
- border-right-style: solid;
1411
- border-right-width: 1px;
1412
- cursor: pointer;
1413
- display: inline-flex;
1414
- height: var(--row-height);
1415
- line-height: 16px;
1416
- }
1417
- .vuuTableNextGroupCell-toggle {
1418
- --vuu-icon-height: 16px;
1419
- --vuu-icon-size: 16px;
1420
- --vuu-icon-width: 8px;
1421
- margin-right: 4px;
1422
- transition: transform 0.25s;
1423
- transform: var(--toggle-icon-transform);
1424
- }
1425
- .vuuTableNextGroupCell-spacer {
1426
- width: var(--group-cell-spacer-width);
1427
- }
1428
-
1429
- /* ../vuu-table/src/table-next/Row.css */
1430
- .vuuTableNextRow {
1431
- background: var(--row-background,#fff);
1432
- border-bottom: 1px solid var(--row-borderColor);
1433
- box-sizing: border-box;
1434
- height: var(--row-height);
1435
- line-height: calc(var(--row-height) - 1px);
1436
- position: absolute;
1437
- top: 0;
1438
- white-space: nowrap;
1439
- }
1440
- .vuuTableNextRow-even {
1441
- --row-background: var(--row-background-even);
1442
- }
1443
- .vuuTableNextRow-selected,
1444
- .vuuTableNextRow-selectedEnd {
1445
- background-color: rgb(235, 235, 236);
1446
- }
1447
- .vuuTableNextRow-selectedStart {
1448
- --vuu-selection-decorator-left-radius: 5px 0 0 0;
1449
- --vuu-selection-decorator-right-radius: 0 5px 0 0;
1450
- border-radius: 5px 5px 0 0;
1451
- }
1452
- .vuuTableNextRow-selectedEnd {
1453
- --vuu-selection-decorator-left-radius: 0 0 0 5px;
1454
- --vuu-selection-decorator-right-radius: 0 0 5px 0;
1455
- border-radius: 0 0 5px 5px;
1456
- }
1457
- .vuuTableNextRow-selectedStart.vuuTableNextRow-selectedEnd {
1458
- --vuu-selection-decorator-left-radius: 5px 0 0 5px;
1459
- --vuu-selection-decorator-right-radius: 0 5px 5px 0;
1460
- border-radius: 5px 5px 5px 5px;
1461
- }
1462
- .vuuTableNextRow-selectedStart:after {
1463
- content: "";
1464
- position: absolute;
1465
- top: 0;
1466
- left: 4px;
1467
- height: 1px;
1468
- background-color: var(--vuu-color-purple-10);
1469
- width: calc(var(--content-width) - 8px);
1470
- z-index: 1;
1471
- }
1472
- .vuuTableNextRow-selectedEnd {
1473
- border-bottom-color: var(--vuu-color-purple-10);
1474
- }
1475
- .vuuTableNextRow-selectionDecorator {
1476
- background-color: var(--vuu-selection-decorator-bg, inherit);
1477
- display: inline-block;
1478
- position: relative;
1479
- height: var(--row-height);
1480
- width: 4px;
1481
- z-index: 2;
1482
- }
1483
- .vuuTableNextRow-selectionDecorator.vuuStickyLeft {
1484
- left: 0;
1485
- position: sticky;
1486
- }
1487
- .vuuTableNextRow-selectionDecorator.vuuStickyRight {
1488
- right: 0;
1489
- position: sticky;
1490
- }
1491
- .vuuTableNextRow-selected {
1492
- --vuu-selection-decorator-bg: var(--vuu-color-purple-10);
1493
- }
1494
- .vuuTableNextRow-selectedStart {
1495
- --vuu-selection-decorator-bg: white;
1496
- }
1497
- .vuuTableNextRow-selectedEnd {
1498
- --vuu-selection-decorator-bg: white;
1499
- }
1500
- .vuuTableNextRow-selectedStart.vuuTableNextRow-selectedEnd {
1501
- }
1502
- .vuuTableNextRow-selectedStart .vuuTableNextRow-selectionDecorator:before,
1503
- .vuuTableNextRow-selectedEnd .vuuTableNextRow-selectionDecorator:before {
1504
- content: "";
1505
- inset: 0;
1506
- position: absolute;
1507
- background-color: var(--vuu-color-purple-10);
1508
- }
1509
- .vuuTableNextRow-selectionDecorator.vuuStickyLeft:before {
1510
- border-radius: var(--vuu-selection-decorator-left-radius, 0);
1511
- }
1512
- .vuuTableNextRow-selectionDecorator.vuuStickyRight:before {
1513
- border-radius: var(--vuu-selection-decorator-right-radius, 0);
1514
- }
1515
- .vuuTableNextRow-expanded {
1516
- --toggle-icon-transform: rotate(90deg);
1517
- }
1518
-
1519
- /* ../vuu-table/src/table-next/TableNext.css */
1520
- .vuuTableNext {
1521
- --vuu-table-cell-outlineWidth: 1px;
1522
- --table-height: var(--measured-px-height);
1523
- --table-width: var(--measured-px-width);
1524
- --vuu-table-next-selection-bookend-width: 4px;
1525
- --columnResizer-color: transparent;
1526
- --row-background: white;
1527
- --cell-borderColor: transparent;
1528
- --row-borderColor: var(--row-background);
1529
- --table-background: var(--salt-container-primary-background);
1530
- position: relative;
1531
- user-select: none;
1532
- }
1533
- .vuuTableNext-zebra {
1534
- --row-background-even: var(--vuu-color-gray-25) ;
1535
- }
1536
- .vuuTableNext-colLines {
1537
- --cell-borderColor: var(--salt-separable-tertiary-borderColor);
1538
- }
1539
- .vuuTableNext-rowLines {
1540
- --row-borderColor: var(--salt-separable-tertiary-borderColor);
1541
- }
1542
- .vuuTableNext-scrollbarContainer {
1543
- --scroll-content-width: 1100px;
1544
- border-bottom: none !important;
1545
- border-top: none !important;
1546
- border-left: solid 1px var(--salt-container-primary-borderColor);
1547
- height: var(--viewport-body-height);
1548
- left: 0px;
1549
- overflow: auto;
1550
- position: absolute;
1551
- top: var(--total-header-height);
1552
- width: var(--table-width);
1553
- }
1554
- .vuuTableNext-scrollbarContainer::-webkit-scrollbar {
1555
- border: none;
1556
- width: 10px;
1557
- }
1558
- .vuuTableNext-scrollbarContainer::-webkit-scrollbar:horizontal {
1559
- height: 10px;
1560
- }
1561
- .vuuTableNext-scrollbarContainer::-webkit-scrollbar-track {
1562
- background-color: white;
1563
- }
1564
- .vuuTableNext-scrollbarContainer::-webkit-scrollbar-thumb {
1565
- background-clip: padding-box;
1566
- border-radius: 10px;
1567
- border: 2px solid rgba(0, 0, 0, 0);
1568
- background-color: var(--vuu-color-gray-30);
1569
- }
1570
- .vuuTableNext-scrollbarContent {
1571
- height: calc(var(--content-height) + var(--horizontal-scrollbar-height));
1572
- position: absolute;
1573
- width: var(--content-width);
1574
- }
1575
- .vuuTableNext-contentContainer {
1576
- background-color: var(--salt-container-primary-background);
1577
- height: calc(var(--table-height) - var(--horizontal-scrollbar-height));
1578
- position: relative;
1579
- overflow: auto;
1580
- overscroll-behavior: none;
1581
- width: calc(var(--table-width) - var(--vertical-scrollbar-width));
1582
- }
1583
- .vuuTableNext-contentContainer::-webkit-scrollbar {
1584
- display: none;
1585
- }
1586
- .vuuTableNext-table {
1587
- position: absolute;
1588
- top: 0;
1589
- left: 0;
1590
- table-layout: fixed;
1591
- width: var(--content-width);
1592
- margin: 0;
1593
- border: none;
1594
- background-color: #fff;
1595
- border-collapse: separate;
1596
- border-spacing: 0;
1597
- }
1598
- .vuuTableNext-body {
1599
- height: var(--content-height);
1600
- }
1601
- .vuuPinLeft,
1602
- .vuuPinRight {
1603
- background-color: inherit;
1604
- position: sticky;
1605
- z-index: 1;
1606
- }
1607
- .vuuTableNext-col-headings {
1608
- background-color: white;
1609
- padding: 0 var(--vuu-table-next-selection-bookend-width, 0);
1610
- position: sticky;
1611
- top: 0;
1612
- z-index: 1;
1613
- }
1614
- .vuuTableNext-col-headers {
1615
- background-color: var(--table-background);
1616
- white-space: nowrap;
1617
- }
1618
- .sizer-cell {
1619
- background-color: green !important;
1620
- border: none !important;
1621
- height: 0px;
1622
- }
1623
- .vuuDraggable-vuuTableNext {
1624
- --header-height: 25px;
1625
- --vuuTableNextHeaderCell-background: var(--vuu-color-gray-25);
1626
- }
1627
-
1628
- /* ../vuu-table/src/table-next/cell-renderers/dropdown-cell/DropdownCell.css */
1629
- .vuuTableDropdownCell {
1630
- --vuu-icon-height: 15px;
1631
- --salt-focused-outlineStyle: none;
1632
- --saltButton-borderRadius: 4px;
1633
- font-weight: 500;
1634
- }
1635
- .vuuTableDropdownCell button:focus-visible {
1636
- --saltButton-borderColor: var(--vuu-color-purple-10);
1637
- --saltButton-borderWidth: 2px;
1638
- padding-left: 3px;
1639
- }
1640
-
1641
- /* ../vuu-table/src/table-next/cell-renderers/input-cell/InputCell.css */
1642
- .vuuTableInputCell.saltInput-primary {
1643
- --salt-focused-outlineStyle: none;
1644
- --saltInput-height: 17px;
1645
- --saltInput-minHeight: 17px;
1646
- border-radius: 4px;
1647
- font-weight: 500;
1648
- }
1649
- .vuuTableNextCell:focus .vuuTableInputCell.saltInput-primary,
1650
- .vuuTableInputCell.saltInput-primary.saltInput-focused {
1651
- border: solid 2px var(--vuu-color-purple-10);
1652
- padding: 0 3px;
1653
- }
1654
- .vuuTableInputCell-icon {
1655
- --vuu-icon-height: 13px;
1656
- --vuu-icon-size: 15px;
1657
- --vuu-icon-width: 12px;
1658
- border-radius: 10px;
1659
- }
1660
- .vuuTableNextCell:focus .vuuTableInputCell.saltInput-primary.vuuTableInputCell-error,
1661
- .vuuTableInputCell.saltInput-primary.saltInput-focused.vuuTableInputCell-error {
1662
- border: solid 2px var(--vuu-color-red-50);
1663
- }
1664
- .vuuTableInputCell-error.saltInput-primary {
1665
- border: solid 1px var(--vuu-color-red-50);
1666
- }
1667
-
1668
- /* src/table-settings/TableSettingsPanel.css */
1669
- .vuuTableSettingsPanel {
1670
- --vuu-svg-text-strikethrough: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M28.3333 9.33334C28.8867 9.33334 29.3333 8.88668 29.3333 8.33334C29.3333 7.78001 28.8867 7.33334 28.3333 7.33334H20.26L22.26 9.33334H23.48L23.1133 10.1867L24.5067 11.58L25.4733 9.33334H28.3333ZM27.6267 16.5867L18.7467 7.70668C18.4867 7.44668 18.0667 7.44668 17.8067 7.70668C17.5467 7.96668 17.5467 8.38668 17.8067 8.64668L21.98 12.82L20.88 15.38C20.62 15.9933 21.0667 16.6667 21.7267 16.6667C22.0933 16.6667 22.4267 16.4467 22.5733 16.1067L23.38 14.22L26.68 17.52C26.94 17.78 27.36 17.78 27.62 17.52C27.8867 17.2667 27.8867 16.8467 27.6267 16.5867Z"/></svg>');
1671
- --vuu-svg-text-Tt: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M17.6667 7.66666C17.6667 8.21999 18.1133 8.66666 18.6667 8.66666H21V15.6667C21 16.22 21.4467 16.6667 22 16.6667C22.5533 16.6667 23 16.22 23 15.6667V8.66666H25.3333C25.8867 8.66666 26.3333 8.21999 26.3333 7.66666C26.3333 7.11332 25.8867 6.66666 25.3333 6.66666H18.6667C18.1133 6.66666 17.6667 7.11332 17.6667 7.66666ZM29.3333 9.99999H25.3333C24.78 9.99999 24.3333 10.4467 24.3333 11C24.3333 11.5533 24.78 12 25.3333 12H26.3333V15.6667C26.3333 16.22 26.78 16.6667 27.3333 16.6667C27.8867 16.6667 28.3333 16.22 28.3333 15.6667V12H29.3333C29.8867 12 30.3333 11.5533 30.3333 11C30.3333 10.4467 29.8867 9.99999 29.3333 9.99999Z" /></svg>');
1672
- --vuu-svg-text-T: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M19.3333 7.66666C19.3333 8.21999 19.78 8.66666 20.3333 8.66666H23V15.6667C23 16.22 23.4467 16.6667 24 16.6667C24.5533 16.6667 25 16.22 25 15.6667V8.66666H27.6667C28.22 8.66666 28.6667 8.21999 28.6667 7.66666C28.6667 7.11332 28.22 6.66666 27.6667 6.66666H20.3333C19.78 6.66666 19.3333 7.11332 19.3333 7.66666Z"/></svg>');
1673
- --vuu-svg-stripes: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="2" y="2" width="12" height="2" rx="0.3"/><rect x="2" y="5" width="12" height="2" rx="0.3"/><rect x="2" y="8" width="12" height="2" rx="0.3"/><rect x="2" y="11" width="12" height="2" rx="0.3"/></svg>');
1674
- --vuu-svg-row-lines: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="2" y="3" width="12" height="1" rx="0.3" /><rect x="2" y="6" width="12" height="1" rx="0.3" /><rect x="2" y="9" width="12" height="1" rx="0.3" /><rect x="2" y="12" width="12" height="1" rx="0.3"/></svg>');
1675
- --vuu-svg-col-lines: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="3" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 3 14)"/><rect x="6" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 6 14)"/><rect x="9" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 9 14)"/><rect x="12" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 12 14)"/></svg>');
1676
- display: flex;
1677
- flex-direction: column;
1678
- gap: 24px;
1679
- height: 100%;
1680
- padding-top: 24px;
1681
- }
1682
- .vuuTableSettingsPanel [data-icon=text-strikethrough] {
1683
- --vuu-icon-svg: var(--vuu-svg-text-strikethrough);
1684
- }
1685
- .vuuTableSettingsPanel [data-icon=text-Tt] {
1686
- --vuu-icon-svg: var(--vuu-svg-text-Tt);
1687
- }
1688
- .vuuTableSettingsPanel [data-icon=text-T] {
1689
- --vuu-icon-svg: var(--vuu-svg-text-T);
1690
- }
1691
- .vuuTableSettingsPanel [data-icon=col-lines] {
1692
- --vuu-icon-svg: var(--vuu-svg-col-lines);
1693
- }
1694
- .vuuTableSettingsPanel [data-icon=row-lines] {
1695
- --vuu-icon-svg: var(--vuu-svg-row-lines);
1696
- }
1697
- .vuuTableSettingsPanel [data-icon=row-striping] {
1698
- --vuu-icon-svg: var(--vuu-svg-stripes);
1699
- }
1700
- .vuuTableSettingsPanel-header {
1701
- border-top: solid 2px var(--vuu-color-gray-30);
1702
- font-size: 14px;
1703
- font-weight: 600;
1704
- padding-top: 24px;
1705
- }
1706
- .vuuTableSettingsPanel .vuuColumnList {
1707
- flex-grow: 1;
1708
- flex-shrink: 1;
1709
- flex-basis: 0;
1710
- }
1711
- .vuuTableSettingsPanel-calculatedButtonbar {
1712
- --vuu-icon-size: 16px;
1713
- --saltButton-height: 24px;
1714
- --saltButton-width: 24px;
1715
- align-items: center;
1716
- display: flex;
1717
- flex: 0 0 32px;
1718
- gap: 12px;
1719
- }
1720
- .vuuGridSeparators {
1721
- --vuuIconToggleButton-iconSize: 16px;
1722
- }
1
+ .vuuTable td:has(> .vuuBackgroundCellDeprecated){padding:0;text-align:right}.vuuBackgroundCellDeprecated{padding-right:var(--salt-size-unit);position:relative;z-index:-1}.vuuBackgroundCellDeprecated-flasher{color:transparent;position:absolute;left:0;right:0;top:0;bottom:0;z-index:-1}.vuuBackgroundCellDeprecated-flasher{text-align:left}.vuuBackgroundCellDeprecated-flasher+.num{padding-left:8px}.right .vuuBackgroundCellDeprecated-flasher{text-align:right}.right .vuuBackgroundCellDeprecated-flasher+.num{padding-right:8px}.up1>.vuuBackgroundCellDeprecated-flasher{animation-duration:30s;animation-name:reactbgup1}.up2>.vuuBackgroundCellDeprecated-flasher{animation-duration:30s;animation-name:reactbgup2}.down1>.vuuBackgroundCellDeprecated-flasher{animation-duration:30s;animation-name:reactbgdown1}.down2>.vuuBackgroundCellDeprecated-flasher{animation-duration:30s;animation-name:reactbgdown2}.up1.vuuBackgroundCellDeprecated-arrowOnly>.vuuBackgroundCellDeprecated-flasher{animation-duration:30s;animation-name:reactarrowup1}.up2.vuuBackgroundCellDeprecated-arrowOnly>.vuuBackgroundCellDeprecated-flasher{animation-duration:30s;animation-name:reactarrowup2}.down1.vuuBackgroundCellDeprecated-arrowOnly>.vuuBackgroundCellDeprecated-flasher{animation-duration:30s;animation-name:reactarrowdown1}.down2.vuuBackgroundCellDeprecated-arrowOnly>.vuuBackgroundCellDeprecated-flasher{animation-duration:30s;animation-name:reactarrowdown2}.up1.vuuBackgroundCellDeprecated-arrowBackground>.vuuBackgroundCellDeprecated-flasher{animation-duration:30s;animation-name:reactbgarrowup1}.up2.vuuBackgroundCellDeprecated-arrowBackground>.vuuBackgroundCellDeprecated-flasher{animation-duration:30s;animation-name:reactbgarrowup2}.down1.vuuBackgroundCellDeprecated-arrowBackground>.vuuBackgroundCellDeprecated-flasher{animation-duration:30s;animation-name:reactbgarrowdown1}.down2.vuuBackgroundCellDeprecated-arrowBackground>.vuuBackgroundCellDeprecated-flasher{animation-duration:30s;animation-name:reactbgarrowdown2}@keyframes reactbgup1{0%{background-color:green}to{background-color:transparent}}@keyframes reactbgup2{0%{background-color:green}to{background-color:transparent}}@keyframes reactbgdown1{0%{background-color:red}to{background-color:transparent}}@keyframes reactbgdown2{0%{background-color:red}to{background-color:transparent}}@keyframes reactarrowup1{0%{color:#fff}to{color:transparent}}@keyframes reactarrowup2{0%{color:#fff}to{color:transparent}}@keyframes reactarrowdown1{0%{color:#fff}to{color:transparent}}@keyframes reactarrowdown2{0%{color:#fff}to{color:transparent}}@keyframes reactbgarrowup1{0%{color:green;background-color:green}20%{color:green;background-color:transparent}to{color:transparent;background-color:transparent}}@keyframes reactbgarrowup2{0%{color:green;background-color:green}20%{color:green;background-color:transparent}to{color:transparent;background-color:transparent}}@keyframes reactbgarrowdown1{0%{color:red;background-color:red}20%{color:red;background-color:transparent}to{color:transparent;background-color:transparent}}@keyframes reactbgarrowdown2{0%{color:red;background-color:red}20%{color:red;background-color:transparent}to{color:transparent;background-color:transparent}}.vuuProgressCell{align-items:center;display:flex}.vuuProgressCell-track{display:inline-block;flex:auto 1 1;height:4px;overflow:hidden;position:relative}.vuuProgressCell-bg{background-color:var(--salt-measured-background);display:inline-block;height:2px;left:0;position:absolute;top:1px;width:100%}.vuuProgressCell-bar{background-color:var(--salt-measured-fill);display:inline-block;height:100%;left:0;position:absolute;top:0;transform:translate(var(--progress-bar-pct, -100%));width:100%}.vuuProgressCell-text{flex:35px 0 0;text-align:right}.vuuTableNext td:has(> .vuuBackgroundCell){padding:0;text-align:right}.vuuBackgroundCell{color:var(--background-cell-color);padding-right:var(--salt-size-unit);position:relative;z-index:-1}.vuuBackgroundCell-flasher{background-color:var(--background-cell-background);position:absolute;left:0;right:0;top:0;bottom:0;z-index:-1}.vuuBackgroundCell-flasher{text-align:left}.vuuBackgroundCell-flasher+.num{padding-left:8px}.right .vuuBackgroundCell-flasher{text-align:right}.right .vuuBackgroundCell-flasher+.num{padding-right:8px}.vuuBackgroundCell.up1{animation-duration:30s;animation-name:reactbgup1}.vuuBackgroundCell.up2{animation-duration:30s;animation-name:reactbgup2}.vuuBackgroundCell.down1{animation-duration:30s;animation-name:reactbgdown1}.vuuBackgroundCell.down2{animation-duration:30s;animation-name:reactbgdown2}.up1.vuuBackgroundCell-arrowOnly>.vuuBackgroundCell-flasher{animation-duration:30s;animation-name:reactarrowup1}.up2.vuuBackgroundCell-arrowOnly>.vuuBackgroundCell-flasher{animation-duration:30s;animation-name:reactarrowup2}.down1.vuuBackgroundCell-arrowOnly>.vuuBackgroundCell-flasher{animation-duration:30s;animation-name:reactarrowdown1}.down2.vuuBackgroundCell-arrowOnly>.vuuBackgroundCell-flasher{animation-duration:30s;animation-name:reactarrowdown2}.up1.vuuBackgroundCell-arrowBackground>.vuuBackgroundCell-flasher{animation-duration:30s;animation-name:reactbgarrowup1}.up2.vuuBackgroundCell-arrowBackground>.vuuBackgroundCell-flasher{animation-duration:30s;animation-name:reactbgarrowup2}.down1.vuuBackgroundCell-arrowBackground>.vuuBackgroundCell-flasher{animation-duration:30s;animation-name:reactbgarrowdown1}.down2.vuuBackgroundCell-arrowBackground>.vuuBackgroundCell-flasher{animation-duration:30s;animation-name:reactbgarrowdown2}@property --background-cell-background{syntax: "<color>"; initial-value: transparent; inherits: false;}@property --background-cell-color{syntax: "<color>"; initial-value: #15171B; inherits: false;}@keyframes reactbgup1{0%{--background-cell-background: var(--vuu-color-green-50);--background-cell-color: white}to{--background-cell-background: transparent;--background-cell-color: var(--vuu-color-gray-80)}}@keyframes reactbgup2{0%{--background-cell-background: var(--vuu-color-green-50);--background-cell-color: #ffffff}to{--background-cell-background: transparent;--background-cell-color: var(--vuu-color-gray-80)}}@keyframes reactbgdown1{0%{--background-cell-background: var(--vuu-color-red-50);--background-cell-color: white}to{--background-cell-background: transparent;--background-cell-color: var(--vuu-color-gray-80)}}@keyframes reactbgdown2{0%{--background-cell-background: var(--vuu-color-red-50);--background-cell-color: white}to{--background-cell-background: transparent;--background-cell-color: var(--vuu-color-gray-80)}}@keyframes reactarrowup1{0%{color:var(--salt-differential-positive-foreground)}to{color:transparent}}@keyframes reactarrowup2{0%{color:var(--salt-differential-positive-foreground)}to{color:transparent}}@keyframes reactarrowdown1{0%{color:var(--salt-differential-negative-foreground)}to{color:transparent}}@keyframes reactarrowdown2{0%{color:var(--salt-differential-negative-foreground)}to{color:transparent}}@keyframes reactbgarrowup1{0%{color:var(--salt-differential-positive-foreground);background-color:var(--vuu-color-green-50)}20%{color:var(--salt-differential-positive-foreground);background-color:transparent}to{color:transparent;background-color:transparent}}@keyframes reactbgarrowup2{0%{color:var(--salt-differential-positive-foreground);background-color:var(--vuu-color-green-50)}20%{color:var(--salt-differential-positive-foreground);background-color:transparent}to{color:transparent;background-color:transparent}}@keyframes reactbgarrowdown1{0%{color:var(--salt-differential-negative-foreground);background-color:var(--vuu-color-red-50)}20%{color:var(--salt-differential-negative-foreground);background-color:transparent}to{color:transparent;background-color:transparent}}@keyframes reactbgarrowdown2{0%{color:var(--salt-differential-negative-foreground);background-color:var(--vuu-color-red-50)}20%{color:var(--salt-differential-negative-foreground);background-color:transparent}to{color:transparent;background-color:transparent}}.vuuColumnList{--vuu-svg-function: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M5.8625 10.5V9.625H6.72291L8.4875 7.59792L6.72291 5.54167H5.64375L4.60833 10.8792C4.53055 11.3167 4.36527 11.6545 4.1125 11.8927C3.85972 12.1309 3.53402 12.25 3.13541 12.25C2.7368 12.25 2.40382 12.1333 2.13645 11.9C1.86909 11.6667 1.73541 11.375 1.73541 11.025C1.73541 10.7625 1.80833 10.551 1.95416 10.3906C2.1 10.2302 2.28958 10.15 2.52291 10.15C2.72708 10.15 2.89479 10.2083 3.02604 10.325C3.15729 10.4417 3.22291 10.5972 3.22291 10.7917C3.22291 10.8986 3.20104 10.9983 3.15729 11.0906C3.11354 11.183 3.05277 11.2583 2.975 11.3167C3.01388 11.3361 3.0552 11.3507 3.09895 11.3604C3.1427 11.3701 3.18888 11.375 3.2375 11.375C3.36388 11.375 3.47083 11.3142 3.55833 11.1927C3.64583 11.0712 3.70902 10.9132 3.74791 10.7188L4.75416 5.54167H2.91666V4.66667H4.91458L5.22083 3.12083C5.30833 2.68333 5.48333 2.34549 5.74583 2.10729C6.00833 1.8691 6.33402 1.75 6.72291 1.75C7.12152 1.75 7.44965 1.86667 7.70729 2.1C7.96493 2.33333 8.09375 2.625 8.09375 2.975C8.09375 3.2375 8.02083 3.44896 7.875 3.60938C7.72916 3.76979 7.53958 3.85 7.30625 3.85C7.1118 3.85 6.94652 3.7941 6.81041 3.68229C6.6743 3.57049 6.60625 3.42222 6.60625 3.2375C6.60625 3.14028 6.62569 3.04549 6.66458 2.95312C6.70347 2.86076 6.75208 2.78542 6.81041 2.72708C6.79097 2.70764 6.7618 2.69063 6.72291 2.67604C6.68402 2.66146 6.64513 2.65417 6.60625 2.65417C6.47986 2.65417 6.37048 2.7125 6.27812 2.82917C6.18576 2.94583 6.12013 3.09653 6.08125 3.28125L5.81875 4.66667H8.575V5.54167H7.88958L9.1 6.94167L10.2375 5.54167H9.5375V4.66667H12.25V5.54167H11.4042L9.65416 7.59792L11.4042 9.625H12.25V10.5H9.5375V9.625H10.2375L9.07083 8.26875L7.875 9.625H8.575V10.5H5.8625Z"/></svg>');--vuuList-borderStyle: none;--vuuListItem-padding: 0;display:flex;flex-direction:column;width:252px}[data-icon=function]{--vuu-icon-svg: var(--vuu-svg-function)}.vuuColumnListItem{border-bottom:solid 1px var(--salt-separable-tertiary-borderColor);padding:0 6px 0 0}.vuuColumnList-switch{flex:0 0 32px}.vuuColumnList-text{flex:1 1 auto}.vuuColumnList-text:hover{font-weight:600;text-decoration:underline}.vuuColumnList-checkBox{flex:0 0 20px}.vuuColumnList-icon{--vuu-icon-color: var(--vuu-color-gray-45);--vuu-icon-size: 16px;--vuu-icon-width: 32px}.vuuColumnList-header{border-top:solid 2px var(--vuu-color-gray-30);flex:0 0 40px;font-size:14px;font-weight:600;padding-top:24px}.vuuColumnList-colHeadings{border-bottom:solid 2px var(--vuu-color-gray-30);color:var(--vuu-color-gray-50);display:flex;flex:0 0 24px;font-size:10px;justify-content:space-between;margin-top:16px;padding-bottom:8px}.vuuColumnExpressionInput{--vuuFilterEditor-background: var(--salt-container-primary-background);--vuuFilterEditor-color: var(--salt-text-primary-foreground);--vuuFilterEditor-fontFamily: var(--salt-typography-fontFamily);--vuuFilterEditor-fontSize: var(--salt-text-fontSize);--vuuFilterEditor-cursorColor: var(--salt-text-secondary-foreground);--vuuFilterEditor-selectionBackground: var(--salt-text-background-selected);--vuuFilterEditor-tooltipBackground: var(--salt-container-primary-background);--vuuFilterEditor-tooltipBorder: var(--tooltip-status-borderColor) var(--salt-container-borderWidth) var(--salt-container-borderStyle);--vuuFilterEditor-tooltipElevation: var(--salt-overlayable-shadow-popout);--vuuFilterEditor-suggestion-selectedBackground: var(--salt-selectable-background-selected);--vuuFilterEditor-suggestion-selectedColor: var(--salt-text-primary-foreground);--vuuFilterEditor-suggestion-detailColor: var(--salt-text-secondary-foreground-disabled);--vuuFilterEditor-suggestion-height: 24px;--vuuFilterEditor-variableColor: var(--vuu-color-purple-10);align-items:center;box-sizing:border-box;height:30px}.vuuColumnExpressionInput-FilterButton,.vuuColumnExpressionInput-ClearButton{--vuu-icon-size: 12px;--saltButton-width: 28px}.expression-type-container{margin:0 3px 0 auto;color:var(--salt-text-secondary-foreground)}.expression-kind{display:inline-block;width:50px}.expression-type{display:inline-block;text-align:right;width:50px}.vuuSuggestion{display:flex;align-items:center}.vuuFunctionDoc .function-heading{display:flex;gap:3px}.vuuFunctionDoc .function-name{font-style:italic}.vuuFunctionDoc .param-list{font-style:italic;color:#00f;white-space:pre}.vuuFunctionDoc .function-type{margin-left:auto}.vuuFunctionDoc .example-container{background-color:var(--salt-container-secondary-background);margin:6px 0;padding:3px}.vuuFunctionDoc .example-expression{font-family:var(--salt-typography-fontFamily-code);margin-left:8px;margin-top:6px}.vuuFunctionDoc .example-result{margin-left:8px;margin-top:6px}.vuuColumnNameLabel-calculated{cursor:pointer;display:flex;gap:2px}.vuuColumnNameLabel-edit{margin-left:auto}.vuuColumnNameLabel-placeholder{color:var(--vuu-color-gray-35)}.vuuColumnSettingsPanel{--vuu-svg-align-left: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9.33333 10H2.66667C2.3 10 2 10.3 2 10.6667C2 11.0333 2.3 11.3333 2.66667 11.3333H9.33333C9.7 11.3333 10 11.0333 10 10.6667C10 10.3 9.7 10 9.33333 10ZM9.33333 4.66667H2.66667C2.3 4.66667 2 4.96667 2 5.33333C2 5.7 2.3 6 2.66667 6H9.33333C9.7 6 10 5.7 10 5.33333C10 4.96667 9.7 4.66667 9.33333 4.66667ZM2.66667 8.66667H13.3333C13.7 8.66667 14 8.36667 14 8C14 7.63333 13.7 7.33333 13.3333 7.33333H2.66667C2.3 7.33333 2 7.63333 2 8C2 8.36667 2.3 8.66667 2.66667 8.66667ZM2.66667 14H13.3333C13.7 14 14 13.7 14 13.3333C14 12.9667 13.7 12.6667 13.3333 12.6667H2.66667C2.3 12.6667 2 12.9667 2 13.3333C2 13.7 2.3 14 2.66667 14ZM2 2.66667C2 3.03333 2.3 3.33333 2.66667 3.33333H13.3333C13.7 3.33333 14 3.03333 14 2.66667C14 2.3 13.7 2 13.3333 2H2.66667C2.3 2 2 2.3 2 2.66667Z" /></svg>');--vuu-svg-align-right: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.66667 14H13.3333C13.7 14 14 13.7 14 13.3333C14 12.9667 13.7 12.6667 13.3333 12.6667H2.66667C2.3 12.6667 2 12.9667 2 13.3333C2 13.7 2.3 14 2.66667 14ZM6.66667 11.3333H13.3333C13.7 11.3333 14 11.0333 14 10.6667C14 10.3 13.7 10 13.3333 10H6.66667C6.3 10 6 10.3 6 10.6667C6 11.0333 6.3 11.3333 6.66667 11.3333ZM2.66667 8.66667H13.3333C13.7 8.66667 14 8.36667 14 8C14 7.63333 13.7 7.33333 13.3333 7.33333H2.66667C2.3 7.33333 2 7.63333 2 8C2 8.36667 2.3 8.66667 2.66667 8.66667ZM6.66667 6H13.3333C13.7 6 14 5.7 14 5.33333C14 4.96667 13.7 4.66667 13.3333 4.66667H6.66667C6.3 4.66667 6 4.96667 6 5.33333C6 5.7 6.3 6 6.66667 6ZM2 2.66667C2 3.03333 2.3 3.33333 2.66667 3.33333H13.3333C13.7 3.33333 14 3.03333 14 2.66667C14 2.3 13.7 2 13.3333 2H2.66667C2.3 2 2 2.3 2 2.66667Z" /></svg>');--vuu-svg-pin-left: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.33333 9.86V8.66666H13.3333C13.7 8.66666 14 8.36666 14 8C14 7.63333 13.7 7.33333 13.3333 7.33333L7.33333 7.33333V6.14C7.33333 5.84 6.97333 5.69333 6.76667 5.90666L4.90667 7.76666C4.77333 7.89999 4.77333 8.10666 4.90667 8.24L6.76667 10.1C6.97333 10.3067 7.33333 10.16 7.33333 9.86ZM2.66667 13.3333C3.03333 13.3333 3.33333 13.0333 3.33333 12.6667L3.33333 3.33333C3.33333 2.96666 3.03333 2.66666 2.66667 2.66666C2.3 2.66666 2 2.96666 2 3.33333L2 12.6667C2 13.0333 2.3 13.3333 2.66667 13.3333Z" /></svg>');--vuu-svg-pin-float: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6 4.66667H4.66667V6H6V4.66667ZM6 7.33333H4.66667V8.66667H6V7.33333ZM6 2C5.26 2 4.66667 2.6 4.66667 3.33333H6V2ZM8.66667 10H7.33333V11.3333H8.66667V10ZM12.6667 2V3.33333H14C14 2.6 13.4 2 12.6667 2ZM8.66667 2H7.33333V3.33333H8.66667V2ZM6 11.3333V10H4.66667C4.66667 10.7333 5.26 11.3333 6 11.3333ZM12.6667 8.66667H14V7.33333H12.6667V8.66667ZM12.6667 6H14V4.66667H12.6667V6ZM12.6667 11.3333C13.4 11.3333 14 10.7333 14 10H12.6667V11.3333ZM2.66667 4.66667C2.3 4.66667 2 4.96667 2 5.33333V12.6667C2 13.4 2.6 14 3.33333 14H10.6667C11.0333 14 11.3333 13.7 11.3333 13.3333C11.3333 12.9667 11.0333 12.6667 10.6667 12.6667H4C3.63333 12.6667 3.33333 12.3667 3.33333 12V5.33333C3.33333 4.96667 3.03333 4.66667 2.66667 4.66667ZM10 3.33333H11.3333V2H10V3.33333ZM10 11.3333H11.3333V10H10V11.3333Z" /></svg>');--vuu-svg-pin-right: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8.66667 6.14V7.33333H2.66667C2.3 7.33333 2 7.63333 2 8C2 8.36666 2.3 8.66666 2.66667 8.66666H8.66667V9.86C8.66667 10.16 9.02667 10.3067 9.23333 10.0933L11.0933 8.23333C11.2267 8.1 11.2267 7.89333 11.0933 7.76L9.23333 5.9C9.02667 5.69333 8.66667 5.84 8.66667 6.14ZM13.3333 13.3333C13.7 13.3333 14 13.0333 14 12.6667V3.33333C14 2.96666 13.7 2.66666 13.3333 2.66666C12.9667 2.66666 12.6667 2.96666 12.6667 3.33333V12.6667C12.6667 13.0333 12.9667 13.3333 13.3333 13.3333Z"/></svg>');--vuuDropdown-height: 24px;--vuuDropdown-width: 100%;--vuuIconToggleButton-iconSize: 16px;display:flex;flex-direction:column;gap:24px;height:100%;padding-top:24px}.vuuColumnSettingsPanel-header{border-top:solid 2px var(--vuu-color-gray-30);font-size:14px;font-weight:600;padding-top:24px}.vuuColumnSettingsPanel-buttonBar{align-items:center;display:flex;justify-content:space-between;margin-top:auto}.vuuColumnSettingsPanel-buttonBar[data-align=right]{gap:6px;justify-content:flex-end}.vuuColumnSettingsPanel-buttonNavPrev{--vuu-icon-left: 6px;padding-left:24px}.vuuColumnSettingsPanel-buttonNavNext{--vuu-icon-left:calc(100% - 18px);padding-right:24px}[data-icon=align-left]{--vuu-icon-svg: var(--vuu-svg-align-left)}[data-icon=align-right]{--vuu-icon-svg: var(--vuu-svg-align-right)}[data-icon=pin-left]{--vuu-icon-svg: var(--vuu-svg-pin-left)}[data-icon=pin-float]{--vuu-icon-svg: var(--vuu-svg-pin-float)}[data-icon=pin-right]{--vuu-icon-svg: var(--vuu-svg-pin-right)}.vuuColumnSettingsPanel-editing .vuuColumnNameLabel-edit{display:none}.vuuDatasourceStats{color:#000;display:flex;font-size:10px;gap:var(--salt-size-unit);padding:4px 0 0 12px}.vuuDatasourceStats-label{color:var(--vuu-color-gray-50)}.vuuColumnResizer{background-color:var(--columnResizer-color);cursor:col-resize;height:var(--header-height);position:relative;width:4px}.vuuColumnResizer:hover{--columnResizer-color: var(--salt-color-blue-500)}.vuuColumnResizer:after{content:"";position:absolute;width:var(--columnResizer-width, 1px);top:0;bottom:0;right:-1px;background-color:var(--columnResizer-color, var(--salt-separable-tertiary-borderColor));height:var(--columnResizer-height, calc(100% + 1px))}.vuuTable{--cell-outline-width: 2px;user-select:none}[role=cell]{display:inline-block}[data-align=end]{margin-left:auto}[data-align=end]+[data-align=end]{margin-left:0}.vuuTable-table [role=cell]{--saltEditableLabel-height: 17px;--saltInput-height: 17px;--saltInput-minHeight: 17px;border-right:1px solid var(--vuuTableCell-border-rightColor);border-bottom:1px solid var(--vuuTableCell-border-bottomColor);color:var(--salt-text-primary-foreground);cursor:default;height:var(--vuuTable-rowHeight);line-height:calc(var(--vuuTable-rowHeight) - 1px);overflow:hidden;padding:0 5px;vertical-align:top}.vuuTable-headerCell:focus,.vuuTable [role=cell]:focus{outline:var(--vuuTableCell-outline, dotted var(--salt-color-blue-400) var(--cell-outline-width));outline-offset:calc(var(--cell-outline-width) * -1);box-shadow:inset 0 0 0 var(--cell-outline-width) #fff;border-bottom:none}.vuuTable-headerCell:focus .vuuTable-headerCell-inner{padding-bottom:var(--cell-outline-width)}.vuuTable-headerCell:not(.vuuTable-headerCell-resizing):focus .vuuTable-headerCell-inner{--columnResizer-color: transparent}.vuuTable [role=cell]:focus{border-right:none;padding-bottom:1px}[role=cell][data-editable=true]{--salt-text-fontSize: 10px;--vuu-icon-size: 5px;position:relative}[role=cell][data-editable=true]:after{top:0;content:"";background-color:var(--salt-text-secondary-foreground, black);left:0;height:var(--vuu-icon-height, var(--vuu-icon-size, 12px));-webkit-mask:var(--svg-corner-triangle) center center/var(--vuu-icon-size) var(--vuu-icon-size);mask:var(--svg-corner-triangle) center center/var(--vuu-icon-size) var(--vuu-icon-size);mask-repeat:no-repeat;-webkit-mask-repeat:no-repeat;position:absolute;transform:rotate(180deg);width:var(--vuu-icon-width, var(--vuu-icon-size, 12px))}[role=cell]:focus[data-editable],[role=cell]:focus-within[data-editable],[role=cell]:has(.saltEditableLabel-editing){outline:solid var(--salt-color-blue-400) 1px;background-color:#fff;outline-offset:-1px}[role=cell]:focus[data-editable=true]:after,[role=cell]:has(.saltEditableLabel):after{background-color:var(--salt-color-blue-400);left:1px;top:1px}.vuuAlignRight{text-align:right}.vuuTableGroupCell{--spacer-width: 20px;--toggle-icon-transform: var(--row-toggle-icon-transform, none);--vuu-icon-width: 18px;align-items:center;display:inline-flex}.vuuTableGroupCell-spacer{height:100%;position:relative;width:var(--spacer-width)}.vuuTableGroupCell-spacer:after{background:var(--salt-container-primary-borderColor);content:"";position:absolute;top:0;bottom:-1px;left:9px;width:1px}.vuuTableGroupCell-toggle{transition:transform .25s;transform:var(--toggle-icon-transform)}.vuuTableRow{--row-background: var(--table-background);position:absolute;top:0}.vuuTableRow-even{--row-background: var(--row-background-even)}.vuuTableRow{background-color:var(--row-background)}.vuuTableRow-expanded{--row-toggle-icon-transform: rotate(90deg)}.vuuTableRow[aria-selected]{background-color:var(--vuuTableRow-selected-background, var(--salt-selectable-background-selected));--vuuTableCell-border-bottomColor: var(--salt-selectable-borderColor-selected)}.vuuTableRow-preSelected{--vuuTableCell-border-bottomColor: var(--salt-selectable-borderColor-selected)}.salt-theme{--svg-spinner: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgb(38, 112, 169)" d="M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50"><animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite" /></path></svg>')}.vuuTable-groupHeaderCell{--cell-align: "flex-start";text-align:left;background:var(--dataTable-background);cursor:default;height:var(--vuuTableHeaderHeight)}.vuuTable-groupHeaderCell-inner{align-items:center;display:flex;height:100%;padding-left:1px}.vuuTable-groupHeaderCell-label{align-items:center;display:flex;flex:0 0 auto}.vuuTable-groupHeaderCell-col{align-items:center;background-color:inherit;display:inline-flex;flex:0 1 auto;height:calc(var(--vuuTableHeaderHeight) - 2px);justify-content:space-between;padding-right:8px;position:relative}.vuuTable-groupHeaderCell-close{--vuu-icon-height: 18px;--vuu-icon-width: 18px;cursor:pointer;left:3px}.vuuTable-groupHeaderCell-col:nth-child(odd){background-color:var(--salt-color-gray-50)}.vuuTable-groupHeaderCell-col:nth-child(even){background-color:var(--salt-color-gray-40)}.vuuTable-groupHeaderCell-col:first-child{clip-path:polygon(0 0,calc(100% - 8px) 0,100% 50%,calc(100% - 8px) 100%,0 100%);padding-left:3px;z-index:1}.vuuTable-groupHeaderCell-col:not(:first-child){margin-left:-6px;padding-left:12px;clip-path:polygon(0 0,calc(100% - 8px) 0,100% 50%,calc(100% - 8px) 100%,0 100%,8px 50%)}.vuuTable-groupHeaderCell-resizing{--columnResizer-color: var(--salt-color-blue-500);--columnResizer-height: var(--table-height);--columnResizer-width: 2px}.vuuTable-groupHeaderCell-pending{--pending-content: ""}.vuuTable-groupHeaderCell-col:has(+ .vuuColumnResizer):after{content:var(--pending-content);width:24px;height:24px;background-image:var(--svg-spinner);background-repeat:no-repeat;background-size:cover}.vuuSortIndicator{--menu-icon-size: 18px;--menu-item-icon-color: black;display:flex;flex-direction:column;position:relative;width:18px}.vuuSortPosition{font-size:10px;line-height:10px;text-align:center}.vuuTable-heading:nth-child(2){--heading-top: calc(var(--header-height))}.vuuTable-heading:nth-child(3){--heading-top: calc(var(--header-height) * 2)}.vuuTable-heading:nth-child(3){--heading-top: calc(var(--header-height) * 3)}.vuuTable-headingCell{background:var(--dataTable-background);border-color:var(--salt-separable-tertiary-borderColor);border-style:solid solid solid none;border-width:1px;color:var(--salt-text-secondary-foreground);display:inline-block;height:var(--vuuTableHeaderHeight);padding:0!important}.vuuTable-heading:has(+ .vuuTable-heading)>.vuuTable-headingCell{border-bottom-color:transparent}[role=columnHeader]{--vuuTableCell-border-bottomColor: var(--salt-separable-tertiary-borderColor);--cell-align: "flex-start";display:inline-block;text-align:left;background:var(--dataTable-background);border-right:1px solid var(--vuuTableCell-border-rightColor);border-bottom:1px solid var(--vuuTableCell-border-bottomColor);color:var(--salt-text-secondary-foreground);cursor:default;height:var(--vuuTableHeaderHeight);padding:0!important;vertical-align:top}.vuuTable-headerCell-right{--cell-align: flex-end}.vuuTable-headerCell-inner{align-items:stretch;display:flex;height:100%;padding:0 0 0 3px}.vuuTable-headerCell-inner:has(.vuuFilterIndicator){padding-left:0}.vuuTable-headerCell-label{align-items:center;justify-content:var(--cell-align);display:flex;flex:1 1 auto}.vuuTable-headerCell-resizing{--columnResizer-color: var(--salt-color-blue-500);--columnResizer-height: var(--table-height);--columnResizer-width: 2px}[role=headerCell].vuuPinLeft.vuuEndPin:after{box-shadow:2px 0 5px #0006;content:"";position:absolute;width:1px;background-color:transparent;height:var(--table-height);top:0;right:0px}[role=headerCell].vuuPinRight.vuuEndPin:after{box-shadow:-2px 0 5px #0000004d;content:"";position:absolute;width:1px;background-color:transparent;height:var(--table-height);top:0;left:0px}[role=headerCell]:is(.vuuPinLeft,.vuuPinRight,.vuuPinFloating){top:0;z-index:20}.saltDraggable-vuuTable-headerCell{--dataTable-background: ivory;--vuuTableHeaderHeight: 25px}.vuuFilterIndicator{--menu-icon-size: 12px;--menu-item-icon-color: black;align-items:center;cursor:pointer;display:flex;flex:0 0 18px;flex-direction:column;justify-content:center;position:relative}.vuuFilterIndicator+.vuuTable-headerCell-inner{padding-left:0}.vuuTable-table{--vuuTable-rowHeight: var(--row-height);--vuuTableCell-border-bottomColor: transparent;--vuuTableCell-border-rightColor: var(--salt-separable-tertiary-borderColor);border-collapse:separate;border-spacing:0;border-left:1px solid #ccc;border:none;font-size:var(--vuuTable-font-size, 10px);margin:0;min-height:100%;width:var(--content-width)}.vuuTable-headers{position:sticky;top:0;z-index:1}.vuuTable-body{height:var(--content-height);position:relative}.vuuTable{--dataTable-background: var(--salt-container-primary-background, inherit);--row-background-even: var(--dataTable-background);--row-background-odd: var(--dataTable-background);--table-background: var(--dataTable-background, none);background-color:var(--dataTable-background);position:relative}.vuuTable-zebra{--row-background-even: var(--salt-container-secondary-background)}.vuuTable-scrollbarContainer{--scroll-content-width: calc(var(--content-width) - var(--pinned-width-left));border-bottom:none!important;border-top:none!important;border-left:solid 1px var(--salt-container-primary-borderColor);box-shadow:0 -1px 0 0 var(--salt-container-primary-borderColor);height:var(--viewport-body-height);left:var(--pinned-width-left);overflow:auto;position:absolute;top:var(--total-header-height);width:calc(var(--table-width) - var(--pinned-width-left) + 1px)}.vuuTable-scrollbarContent{height:calc(var(--content-height) + var(--horizontal-scrollbar-height));position:absolute;width:var(--scroll-content-width, var(--content-width))}.vuuTable-contentContainer{--vuuTableHeaderHeight: var(--header-height, 30px);background-color:var(--salt-container-primary-background);height:calc(var(--table-height) - var(--horizontal-scrollbar-height));position:relative;overflow:auto;overscroll-behavior:none;width:calc(var(--table-width) - var(--vertical-scrollbar-width))}.vuuTable-contentContainer::-webkit-scrollbar{display:none}:is(.vuuPinLeft,.vuuPinRight,.vuuPinFloating){background-color:inherit;position:sticky;z-index:1}.vuuTable-settings{--saltButton-height: var(--header-height);--saltButton-width: 15px;position:absolute!important;right:0;top:0}.vuuTable:has(.vuuTable-headerCell-resizing) *{cursor:col-resize}.vuuTable-loading .vuuTable-table{--skeleton-height: 20px;--skeleton-width: calc(var(--content-width) - 8px);--skeleton-left: 4px;--skeleton-row-height: 16px;--skeleton-size: var(--skeleton-width) var(--skeleton-height);--skeleton-row: linear-gradient( var(--salt-color-gray-20-fade-background) var(--skeleton-row-height), transparent 0 );--skeleton-background-image: var(--skeleton-row);background-image:var(--skeleton-background-image);background-repeat:repeat-y;background-size:var(--skeleton-size);background-position-x:var(--skeleton-left);background-position-y:27px}.vuuTable-loading .vuuTable-table:after{animation:shimmer 2s infinite;background:linear-gradient(90deg,rgba(255,255,255,0) 0,rgba(255,255,255,.2) 20%,rgba(255,255,255,.6) 60%,rgba(255,255,255,0));content:"";height:var(--table-height);left:0px;position:absolute;transform:translate(-100%);top:var(--header-height);width:var(--content-width)}@keyframes shimmer{to{transform:translate(100%)}}.vuuJsonCell-group{align-items:center;display:inline-flex;height:calc(var(--vuuTable-rowHeight) - 1px);width:100%}.vuuJsonCell-toggle{--vuu-icon-color: var(--salt-text-primary-foreground);--vuu-icon-height: calc(var(--vuuTable-rowHeight) - 1px);--vuu-icon-width: 18px;flex-shrink:0;margin-left:auto}.vuuJsonCell-name{font-weight:var(--salt-typography-fontWeight-semiBold)}.vuuJsonCell-value{overflow:hidden;text-overflow:ellipsis}.vuuColumnResizerNext{background-color:var(--columnResizer-color);cursor:col-resize;height:var(--header-height);margin-left:var(--columnResizer-left, auto);position:relative;width:2px}.vuuColumnResizerNext:hover{--columnResizer-color: var(--salt-color-blue-500)}.vuuColumnResizerNext:after{background-color:var(--columnResizer-color, var(--salt-separable-tertiary-borderColor));bottom:0;content:"";position:absolute;top:0;right:0px;height:var(--columnResizer-height, 0);width:2px}.vuuColumnHeaderPill{--vuu-icon-size: 14px;--menu-item-icon-color: black;--vuu-icon-color: white;--vuu-icon-height: 12px;--vuu-icon-width: 13px;align-items:center;background:var(--salt-taggable-background-active);color:#fff;border-radius:4px;font-size:11px;gap:4px;height:16px;display:flex;margin:var(--vuuColumnHeaderPill-margin, 0);padding:0 6px;position:relative}.vuuColumnHeaderPill:hover{--vuu-icon-color: var(--vuu-color-gray-80);background-color:var(--salt-taggable-background-hover);color:var(--vuu-color-gray-80)}.vuuColumnHeaderPill-removeButton{cursor:pointer}.vuuSortPosition{font-size:11px;font-weight:700;padding-top:1px}.vuu-theme{--svg-spinner: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgb(38, 112, 169)" d="M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50"><animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite" /></path></svg>')}.vuuTableNextGroupHeaderCell.vuuTableNextHeaderCell{--vuuColumnHeaderPill-margin: 0;--cell-align: "flex-start";text-align:left;background:var(--dataTable-background);cursor:default;height:var(--vuuTableHeaderHeight)}.vuuTableNextGroupHeaderCell-inner{align-items:center;display:flex;gap:4px;height:100%;padding-left:1px}.vuuTableNextGroupHeaderCell-col{align-items:center;background-color:inherit;display:inline-flex;flex:0 1 auto;height:calc(var(--vuuTableHeaderHeight) - 2px);justify-content:space-between;padding-right:8px;position:relative}.vuuTableNextGroupHeaderCell-label{align-items:center;display:flex;flex:0 0 auto}.vuuTableNextGroupHeaderCell-close{--vuu-icon-height: 18px;--vuu-icon-width: 18px;cursor:pointer;left:3px}.vuuTableNextGroupHeaderCell-resizing{--columnResizer-color: var(--salt-color-blue-500);--columnResizer-height: var(--table-height);--columnResizer-width: 2px}.vuuTableNextGroupHeaderCell-pending{--pending-content: ""}.vuuTableNextGroupHeaderCell-col:has(+ .vuuColumnResizer):after{content:var(--pending-content);width:24px;height:24px;background-image:var(--svg-spinner);background-repeat:no-repeat;background-size:cover}.vuuMenuItem{--vuu-svg-cog: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12.9533 8.65331C12.98 8.43998 13 8.22665 13 7.99998C13 7.77331 12.98 7.55998 12.9533 7.34665L14.36 6.24665C14.4867 6.14665 14.52 5.96665 14.44 5.81998L13.1067 3.51331C13.0267 3.36665 12.8467 3.31331 12.7 3.36665L11.04 4.03331C10.6933 3.76665 10.32 3.54665 9.91333 3.37998L9.66 1.61331C9.64 1.45331 9.5 1.33331 9.33333 1.33331H6.66667C6.5 1.33331 6.36 1.45331 6.34 1.61331L6.08667 3.37998C5.68 3.54665 5.30667 3.77331 4.96 4.03331L3.3 3.36665C3.14667 3.30665 2.97333 3.36665 2.89333 3.51331L1.56 5.81998C1.47333 5.96665 1.51333 6.14665 1.64 6.24665L3.04667 7.34665C3.02 7.55998 3 7.77998 3 7.99998C3 8.21998 3.02 8.43998 3.04667 8.65331L1.64 9.75331C1.51333 9.85331 1.48 10.0333 1.56 10.18L2.89333 12.4866C2.97333 12.6333 3.15333 12.6866 3.3 12.6333L4.96 11.9666C5.30667 12.2333 5.68 12.4533 6.08667 12.62L6.34 14.3866C6.36 14.5466 6.5 14.6666 6.66667 14.6666H9.33333C9.5 14.6666 9.64 14.5466 9.66 14.3866L9.91333 12.62C10.32 12.4533 10.6933 12.2266 11.04 11.9666L12.7 12.6333C12.8533 12.6933 13.0267 12.6333 13.1067 12.4866L14.44 10.18C14.52 10.0333 14.4867 9.85331 14.36 9.75331L12.9533 8.65331V8.65331ZM8 10.3333C6.71333 10.3333 5.66667 9.28665 5.66667 7.99998C5.66667 6.71331 6.71333 5.66665 8 5.66665C9.28667 5.66665 10.3333 6.71331 10.3333 7.99998C10.3333 9.28665 9.28667 10.3333 8 10.3333Z"/></svg>')}.vuuTable-columnMenu{--vuu-icon-color: #606477;--vuu-icon-height: 20px;--vuu-icon-left: 0px;--vuu-icon-size: 16px;--vuu-icon-top: 0px;--vuu-icon-width: 20px;border-radius:4px;cursor:pointer;display:inline-block;padding:2px;left:var(--column-menu-left, 0);margin:var(--vuuTable-columnMenu-margin, 0)}.vuuTable-columnMenu:hover{--vuu-icon-color: #15171B;background-color:#f37880}.vuuTable-columnMenu-open:hover,.vuuTable-columnMenu-open{background-color:#6d18bd;--vuu-icon-color: white}[data-icon=cog]{--vuu-icon-svg: var(--vuu-svg-cog);--vuu-icon-size: 14px}.vuuTableNextHeaderCell{--cell-align: "flex-start";--vuuColumnHeaderPill-margin: 0 0 0 3px;align-items:center;background-color:var(--vuuTableNextHeaderCell-background, inherit);border-bottom:1px solid #ccc;border-right-color:var(--cell-borderColor);border-right-style:solid;border-right-width:1px;box-sizing:border-box;cursor:default;display:inline-flex;height:var(--header-height);vertical-align:top}.vuuTableNextHeaderCell-right{--columnResizer-left: 0;--vuuTable-columnMenu-margin: 0;--vuuColumnHeaderPill-margin: 0 3px 0 0;--column-menu-left: 2px;justify-content:flex-end}.vuuTableNextHeaderCell .vuuColumnResizerNext:hover{--columnResizer-color: var(--vuu-color-purple-10)}.vuuTableNextHeaderCell-label{line-height:calc(var(--header-height) - 1px)}.vuuTableNextHeaderCell-resizing{--columnResizer-height: var(--table-height)}.vuuTableNextHeaderCell.vuuPinLeft{padding-left:2px}.vuuTableNextHeaderCell.vuuPinLeft.vuuEndPin .vuuColumnResizerNext:before{--height: calc(var(--table-height) - 15px);--inset-r: calc(var(--pin-width) - 2px);--inset-b: calc(var(--height) - 2px);--clip-path: polygon( 0% 0%, 0% 120%, 2px 120%, 2px 2px, var(--inset-r) 2px, var(--inset-r) var(--inset-b), 2px var(--inset-b), 2px 120%, 120% 120%, 120% 0% );background-color:transparent;border-color:var(--vuu-color-gray-40);border-width:1px;border-style:solid solid solid solid;border-radius:4px;box-shadow:2px 1px 4px #0000001a;clip-path:var(--clip-path);content:"";position:absolute;width:var(--pin-width);top:0;bottom:0;right:-1px;height:var(--height);z-index:-5}.vuuTableNextHeaderCell.vuuPinRight.vuuEndPin .vuuColumnResizerNext:before{--height: calc(var(--table-height) - 15px);--inset-r: calc(var(--pin-width) - 2px);--inset-b: calc(var(--height) - 2px);--clip-path: polygon( -20% 0%, -20% 120%, 2px 120%, 2px 2px, var(--inset-r) 2px, var(--inset-r) var(--inset-b), 2px var(--inset-b), 2px 120%, 120% 120%, 120% 0% );background-color:transparent;border-color:#a9aaad;border-width:1px;border-style:solid solid solid solid;border-radius:4px;box-shadow:-2px 1px 4px #0000001a;clip-path:var(--clip-path);content:"";position:absolute;width:var(--pin-width);top:0;bottom:0;right:0px;height:var(--height);z-index:-5}.vuuTableNextHeaderCell.vuuDraggable-dragAway{display:none}.vuuTableNextCell{border-right-color:var(--cell-borderColor);border-right-style:solid;border-right-width:1px;display:inline-block;height:100%;overflow:hidden;padding:0 8px;text-overflow:ellipsis;vertical-align:top}.vuuTableNextCell-right{text-align:right}.vuuTableNextCell-editable{display:inline-flex;line-height:18px;padding-bottom:1px;padding-top:1px;text-overflow:unset}.vuuTableNextCell:focus{outline:var(--vuuTableCell-outline, solid var(--vuu-color-purple-10) 2px);outline-offset:-2px;box-shadow:inset 0 0 0 var(--cell-outline-width) #fff;border-bottom:none}.vuuTableNextRow-selected .vuuTableNextCell:not(.vuuTableNextCell-editable):focus{outline:var(--vuuTableCell-outline, solid var(--vuu-color-purple-10) 2px);outline-offset:-1px}.vuuTableNextCell-editable:focus{outline:none}.vuuTableNextGroupCell{--group-cell-spacer-width: 20px;align-items:center;border-right-color:var(--vuuTableNextGroupCell-borderColor, var(--salt-separable-tertiary-borderColor));border-right-style:solid;border-right-width:1px;cursor:pointer;display:inline-flex;height:var(--row-height);line-height:16px}.vuuTableNextGroupCell-toggle{--vuu-icon-height: 16px;--vuu-icon-size: 16px;--vuu-icon-width: 8px;margin-right:4px;transition:transform .25s;transform:var(--toggle-icon-transform)}.vuuTableNextGroupCell-spacer{width:var(--group-cell-spacer-width)}.vuuTableNextRow{background:var(--row-background,#fff);border-bottom:1px solid var(--row-borderColor);box-sizing:border-box;height:var(--row-height);line-height:calc(var(--row-height) - 1px);position:absolute;top:0;white-space:nowrap}.vuuTableNextRow-even{--row-background: var(--row-background-even)}.vuuTableNextRow-selected,.vuuTableNextRow-selectedEnd{background-color:#ebebec}.vuuTableNextRow-selectedStart{--vuu-selection-decorator-left-radius: 5px 0 0 0;--vuu-selection-decorator-right-radius: 0 5px 0 0;border-radius:5px 5px 0 0}.vuuTableNextRow-selectedEnd{--vuu-selection-decorator-left-radius: 0 0 0 5px;--vuu-selection-decorator-right-radius: 0 0 5px 0;border-radius:0 0 5px 5px}.vuuTableNextRow-selectedStart.vuuTableNextRow-selectedEnd{--vuu-selection-decorator-left-radius: 5px 0 0 5px;--vuu-selection-decorator-right-radius: 0 5px 5px 0;border-radius:5px}.vuuTableNextRow-selectedStart:after{content:"";position:absolute;top:0;left:4px;height:1px;background-color:var(--vuu-color-purple-10);width:calc(var(--content-width) - 8px);z-index:1}.vuuTableNextRow-selectedEnd{border-bottom-color:var(--vuu-color-purple-10)}.vuuTableNextRow-selectionDecorator{background-color:var(--vuu-selection-decorator-bg, inherit);display:inline-block;position:relative;height:var(--row-height);width:4px;z-index:2}.vuuTableNextRow-selectionDecorator.vuuStickyLeft{left:0;position:sticky}.vuuTableNextRow-selectionDecorator.vuuStickyRight{right:0;position:sticky}.vuuTableNextRow-selected{--vuu-selection-decorator-bg: var(--vuu-color-purple-10)}.vuuTableNextRow-selectedStart,.vuuTableNextRow-selectedEnd{--vuu-selection-decorator-bg: white}.vuuTableNextRow-selectedStart .vuuTableNextRow-selectionDecorator:before,.vuuTableNextRow-selectedEnd .vuuTableNextRow-selectionDecorator:before{content:"";inset:0;position:absolute;background-color:var(--vuu-color-purple-10)}.vuuTableNextRow-selectionDecorator.vuuStickyLeft:before{border-radius:var(--vuu-selection-decorator-left-radius, 0)}.vuuTableNextRow-selectionDecorator.vuuStickyRight:before{border-radius:var(--vuu-selection-decorator-right-radius, 0)}.vuuTableNextRow-expanded{--toggle-icon-transform: rotate(90deg)}.vuuTableNext{--vuu-table-cell-outlineWidth: 1px;--table-height: var(--measured-px-height);--table-width: var(--measured-px-width);--vuu-table-next-selection-bookend-width: 4px;--columnResizer-color: transparent;--row-background: white;--cell-borderColor: transparent;--row-borderColor: var(--row-background);--table-background: var(--salt-container-primary-background);position:relative;user-select:none}.vuuTableNext-zebra{--row-background-even: var(--vuu-color-gray-25) }.vuuTableNext-colLines{--cell-borderColor: var(--salt-separable-tertiary-borderColor)}.vuuTableNext-rowLines{--row-borderColor: var(--salt-separable-tertiary-borderColor)}.vuuTableNext-highlight .vuuTableNextRow:hover{background-color:var(--vuu-color-pink-10-fade-20)}.vuuTableNext-scrollbarContainer{--scroll-content-width: 1100px;border-bottom:none!important;border-top:none!important;border-left:solid 1px var(--salt-container-primary-borderColor);height:var(--viewport-body-height);left:0px;overflow:auto;position:absolute;top:var(--total-header-height);width:var(--table-width)}.vuuTableNext-scrollbarContainer::-webkit-scrollbar{border:none;width:10px}.vuuTableNext-scrollbarContainer::-webkit-scrollbar:horizontal{height:10px}.vuuTableNext-scrollbarContainer::-webkit-scrollbar-track{background-color:#fff}.vuuTableNext-scrollbarContainer::-webkit-scrollbar-thumb{background-clip:padding-box;border-radius:10px;border:2px solid rgba(0,0,0,0);background-color:var(--vuu-color-gray-30)}.vuuTableNext-scrollbarContent{height:calc(var(--content-height) + var(--horizontal-scrollbar-height));position:absolute;width:var(--content-width)}.vuuTableNext-contentContainer{background-color:var(--salt-container-primary-background);height:calc(var(--table-height) - var(--horizontal-scrollbar-height));position:relative;overflow:auto;overscroll-behavior:none;width:calc(var(--table-width) - var(--vertical-scrollbar-width))}.vuuTableNext-contentContainer::-webkit-scrollbar{display:none}.vuuTableNext-table{position:absolute;top:0;left:0;table-layout:fixed;width:var(--content-width);margin:0;border:none;background-color:#fff;border-collapse:separate;border-spacing:0}.vuuTableNext-body{height:var(--content-height)}.vuuPinLeft,.vuuPinRight{background-color:inherit;position:sticky;z-index:1}.vuuTableNext-col-headings{background-color:#fff;padding:0 var(--vuu-table-next-selection-bookend-width, 0);position:sticky;top:0;z-index:1}.vuuTableNext-col-headers{background-color:var(--table-background);white-space:nowrap}.sizer-cell{background-color:green!important;border:none!important;height:0px}.vuuDraggable-vuuTableNext{--header-height: 25px;--vuuTableNextHeaderCell-background: var(--vuu-color-gray-25)}.vuuTableDropdownCell{--vuu-icon-height: 15px;--salt-focused-outlineStyle: none;--saltButton-borderRadius: 4px;font-weight:500}.vuuTableDropdownCell button:focus-visible{--saltButton-borderColor: var(--vuu-color-purple-10);--saltButton-borderWidth: 2px;padding-left:3px}.vuuTableInputCell.saltInput-primary{--salt-focused-outlineStyle: none;--saltInput-height: 17px;--saltInput-minHeight: 17px;border-radius:4px;font-weight:500}.vuuTableNextCell:focus .vuuTableInputCell.saltInput-primary,.vuuTableInputCell.saltInput-primary.saltInput-focused{border:solid 2px var(--vuu-color-purple-10);padding:0 3px}.vuuTableInputCell-icon{--vuu-icon-height: 13px;--vuu-icon-size: 15px;--vuu-icon-width: 12px;border-radius:10px}.vuuTableNextCell:focus .vuuTableInputCell.saltInput-primary.vuuTableInputCell-error,.vuuTableInputCell.saltInput-primary.saltInput-focused.vuuTableInputCell-error{border:solid 2px var(--vuu-color-red-50)}.vuuTableInputCell-error.saltInput-primary{border:solid 1px var(--vuu-color-red-50)}.vuuTableSettingsPanel{--vuu-svg-text-strikethrough: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M28.3333 9.33334C28.8867 9.33334 29.3333 8.88668 29.3333 8.33334C29.3333 7.78001 28.8867 7.33334 28.3333 7.33334H20.26L22.26 9.33334H23.48L23.1133 10.1867L24.5067 11.58L25.4733 9.33334H28.3333ZM27.6267 16.5867L18.7467 7.70668C18.4867 7.44668 18.0667 7.44668 17.8067 7.70668C17.5467 7.96668 17.5467 8.38668 17.8067 8.64668L21.98 12.82L20.88 15.38C20.62 15.9933 21.0667 16.6667 21.7267 16.6667C22.0933 16.6667 22.4267 16.4467 22.5733 16.1067L23.38 14.22L26.68 17.52C26.94 17.78 27.36 17.78 27.62 17.52C27.8867 17.2667 27.8867 16.8467 27.6267 16.5867Z"/></svg>');--vuu-svg-text-Tt: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M17.6667 7.66666C17.6667 8.21999 18.1133 8.66666 18.6667 8.66666H21V15.6667C21 16.22 21.4467 16.6667 22 16.6667C22.5533 16.6667 23 16.22 23 15.6667V8.66666H25.3333C25.8867 8.66666 26.3333 8.21999 26.3333 7.66666C26.3333 7.11332 25.8867 6.66666 25.3333 6.66666H18.6667C18.1133 6.66666 17.6667 7.11332 17.6667 7.66666ZM29.3333 9.99999H25.3333C24.78 9.99999 24.3333 10.4467 24.3333 11C24.3333 11.5533 24.78 12 25.3333 12H26.3333V15.6667C26.3333 16.22 26.78 16.6667 27.3333 16.6667C27.8867 16.6667 28.3333 16.22 28.3333 15.6667V12H29.3333C29.8867 12 30.3333 11.5533 30.3333 11C30.3333 10.4467 29.8867 9.99999 29.3333 9.99999Z" /></svg>');--vuu-svg-text-T: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M19.3333 7.66666C19.3333 8.21999 19.78 8.66666 20.3333 8.66666H23V15.6667C23 16.22 23.4467 16.6667 24 16.6667C24.5533 16.6667 25 16.22 25 15.6667V8.66666H27.6667C28.22 8.66666 28.6667 8.21999 28.6667 7.66666C28.6667 7.11332 28.22 6.66666 27.6667 6.66666H20.3333C19.78 6.66666 19.3333 7.11332 19.3333 7.66666Z"/></svg>');--vuu-svg-stripes: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="2" y="2" width="12" height="2" rx="0.3"/><rect x="2" y="5" width="12" height="2" rx="0.3"/><rect x="2" y="8" width="12" height="2" rx="0.3"/><rect x="2" y="11" width="12" height="2" rx="0.3"/></svg>');--vuu-svg-row-lines: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="2" y="3" width="12" height="1" rx="0.3" /><rect x="2" y="6" width="12" height="1" rx="0.3" /><rect x="2" y="9" width="12" height="1" rx="0.3" /><rect x="2" y="12" width="12" height="1" rx="0.3"/></svg>');--vuu-svg-col-lines: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="3" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 3 14)"/><rect x="6" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 6 14)"/><rect x="9" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 9 14)"/><rect x="12" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 12 14)"/></svg>');display:flex;flex-direction:column;gap:24px;height:100%;padding-top:24px}.vuuTableSettingsPanel [data-icon=text-strikethrough]{--vuu-icon-svg: var(--vuu-svg-text-strikethrough)}.vuuTableSettingsPanel [data-icon=text-Tt]{--vuu-icon-svg: var(--vuu-svg-text-Tt)}.vuuTableSettingsPanel [data-icon=text-T]{--vuu-icon-svg: var(--vuu-svg-text-T)}.vuuTableSettingsPanel [data-icon=col-lines]{--vuu-icon-svg: var(--vuu-svg-col-lines)}.vuuTableSettingsPanel [data-icon=row-lines]{--vuu-icon-svg: var(--vuu-svg-row-lines)}.vuuTableSettingsPanel [data-icon=row-striping]{--vuu-icon-svg: var(--vuu-svg-stripes)}.vuuTableSettingsPanel-header{border-top:solid 2px var(--vuu-color-gray-30);font-size:14px;font-weight:600;padding-top:24px}.vuuTableSettingsPanel .vuuColumnList{flex-grow:1;flex-shrink:1;flex-basis:0}.vuuTableSettingsPanel-calculatedButtonbar{--vuu-icon-size: 16px;--saltButton-height: 24px;--saltButton-width: 24px;align-items:center;display:flex;flex:0 0 32px;gap:12px}.vuuGridSeparators{--vuuIconToggleButton-iconSize: 16px}
1723
2
  /*# sourceMappingURL=index.css.map */