@vuu-ui/vuu-table-extras 0.8.13-debug → 0.8.13

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,1129 +1,2 @@
1
- /* src/cell-renderers/progress-cell/ProgressCell.css */
2
- .vuuProgressCell {
3
- align-items: center;
4
- display: flex;
5
- }
6
- .vuuProgressCell-track {
7
- display: inline-block;
8
- flex: auto 1 1;
9
- height: 4px;
10
- overflow: hidden;
11
- position: relative;
12
- }
13
- .vuuProgressCell-bg {
14
- background-color: var(--salt-measured-background);
15
- display: inline-block;
16
- height: 2px;
17
- left: 0;
18
- position: absolute;
19
- top: 1px;
20
- width: 100%;
21
- }
22
- .vuuProgressCell-bar {
23
- background-color: var(--salt-measured-fill);
24
- display: inline-block;
25
- height: 100%;
26
- left: 0;
27
- position: absolute;
28
- top: 0;
29
- transform: translateX(var(--progress-bar-pct, -100%));
30
- width: 100%;
31
- }
32
- .vuuProgressCell-text {
33
- flex: 35px 0 0;
34
- text-align: right;
35
- }
36
-
37
- /* src/cell-renderers-next/background-cell/BackgroundCell.css */
38
- .vuuTable td:has(> .vuuBackgroundCell) {
39
- padding: 0;
40
- text-align: right;
41
- }
42
- .vuuBackgroundCell {
43
- color: var(--background-cell-color);
44
- padding-right: var(--salt-size-unit);
45
- position: relative;
46
- z-index: -1;
47
- }
48
- .vuuBackgroundCell-flasher {
49
- background-color: var(--background-cell-background);
50
- position: absolute;
51
- left: 0;
52
- right: 0;
53
- top: 0;
54
- bottom: 0;
55
- z-index: -1;
56
- }
57
- .vuuBackgroundCell-flasher {
58
- text-align: left;
59
- }
60
- .vuuBackgroundCell-flasher + .num {
61
- padding-left: 8px;
62
- }
63
- .right .vuuBackgroundCell-flasher {
64
- text-align: right;
65
- }
66
- .right .vuuBackgroundCell-flasher + .num {
67
- padding-right: 8px;
68
- }
69
- .vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
70
- background-color: transparent;
71
- }
72
- .vuuBackgroundCell-backgroundOnly.up1,
73
- .vuuBackgroundCell-backgroundArrow.up1 {
74
- animation-duration: 30s;
75
- animation-name: reactbgup1;
76
- }
77
- .vuuBackgroundCell-backgroundOnly.up2,
78
- .vuuBackgroundCell-backgroundArrow.up2 {
79
- animation-duration: 30s;
80
- animation-name: reactbgup2;
81
- }
82
- .vuuBackgroundCell-backgroundOnly.down1,
83
- .vuuBackgroundCell-backgroundArrow.down1 {
84
- animation-duration: 30s;
85
- animation-name: reactbgdown1;
86
- }
87
- .vuuBackgroundCell-backgroundOnly.down2,
88
- .vuuBackgroundCell-backgroundArrow.down2 {
89
- animation-duration: 30s;
90
- animation-name: reactbgdown2;
91
- }
92
- .up1.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
93
- animation-duration: 30s;
94
- animation-name: reactarrowup1;
95
- }
96
- .up2.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
97
- animation-duration: 30s;
98
- animation-name: reactarrowup2;
99
- }
100
- .down1.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
101
- animation-duration: 30s;
102
- animation-name: reactarrowdown1;
103
- }
104
- .down2.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
105
- animation-duration: 30s;
106
- animation-name: reactarrowdown2;
107
- }
108
- .up1.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
109
- animation-duration: 30s;
110
- animation-name: reactbgarrowup1;
111
- }
112
- .up2.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
113
- animation-duration: 30s;
114
- animation-name: reactbgarrowup2;
115
- }
116
- .down1.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
117
- animation-duration: 30s;
118
- animation-name: reactbgarrowdown1;
119
- }
120
- .down2.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
121
- animation-duration: 30s;
122
- animation-name: reactbgarrowdown2;
123
- }
124
-
125
- /* src/cell-renderers-next/background-cell/FlashingBackground.css */
126
- @keyframes reactbgup1 {
127
- from {
128
- background-color: var(--vuu-color-green-50);
129
- color: white;
130
- }
131
- to {
132
- background-color: transparent;
133
- color: var(--vuu-color-gray-80);
134
- }
135
- }
136
- @keyframes reactbgup2 {
137
- from {
138
- background-color: var(--vuu-color-green-50);
139
- color: #ffffff;
140
- }
141
- to {
142
- background-color: transparent;
143
- color: var(--vuu-color-gray-80);
144
- }
145
- }
146
- @keyframes reactbgdown1 {
147
- from {
148
- background-color: var(--vuu-color-red-50);
149
- color: white;
150
- }
151
- to {
152
- background-color: transparent;
153
- color: var(--vuu-color-gray-80);
154
- }
155
- }
156
- @keyframes reactbgdown2 {
157
- from {
158
- background-color: var(--vuu-color-red-50);
159
- color: white;
160
- }
161
- to {
162
- background-color: transparent;
163
- color: var(--vuu-color-gray-80);
164
- }
165
- }
166
- @keyframes reactarrowup1 {
167
- from {
168
- color: var(--salt-differential-positive-foreground);
169
- }
170
- to {
171
- color: transparent;
172
- }
173
- }
174
- @keyframes reactarrowup2 {
175
- from {
176
- color: var(--salt-differential-positive-foreground);
177
- }
178
- to {
179
- color: transparent;
180
- }
181
- }
182
- @keyframes reactarrowdown1 {
183
- from {
184
- color: var(--salt-differential-negative-foreground);
185
- }
186
- to {
187
- color: transparent;
188
- }
189
- }
190
- @keyframes reactarrowdown2 {
191
- from {
192
- color: var(--salt-differential-negative-foreground);
193
- }
194
- to {
195
- color: transparent;
196
- }
197
- }
198
- @keyframes reactbgarrowup1 {
199
- 0% {
200
- color: var(--salt-differential-positive-foreground);
201
- background-color: var(--vuu-color-green-50);
202
- }
203
- 20% {
204
- color: var(--salt-differential-positive-foreground);
205
- background-color: transparent;
206
- }
207
- 100% {
208
- color: transparent;
209
- background-color: transparent;
210
- }
211
- }
212
- @keyframes reactbgarrowup2 {
213
- 0% {
214
- color: var(--salt-differential-positive-foreground);
215
- background-color: var(--vuu-color-green-50);
216
- }
217
- 20% {
218
- color: var(--salt-differential-positive-foreground);
219
- background-color: transparent;
220
- }
221
- 100% {
222
- color: transparent;
223
- background-color: transparent;
224
- }
225
- }
226
- @keyframes reactbgarrowdown1 {
227
- 0% {
228
- color: var(--salt-differential-negative-foreground);
229
- background-color: var(--vuu-color-red-50);
230
- }
231
- 20% {
232
- color: var(--salt-differential-negative-foreground);
233
- background-color: transparent;
234
- }
235
- 100% {
236
- color: transparent;
237
- background-color: transparent;
238
- }
239
- }
240
- @keyframes reactbgarrowdown2 {
241
- 0% {
242
- color: var(--salt-differential-negative-foreground);
243
- background-color: var(--vuu-color-red-50);
244
- }
245
- 20% {
246
- color: var(--salt-differential-negative-foreground);
247
- background-color: transparent;
248
- }
249
- 100% {
250
- color: transparent;
251
- background-color: transparent;
252
- }
253
- }
254
-
255
- /* src/cell-renderers-next/background-cell/BackgroundCellConfigurationEditor.css */
256
- .vuuBackgroundCellConfiguration {
257
- height: 50px;
258
- background-color: red;
259
- }
260
-
261
- /* src/column-list/ColumnList.css */
262
- .vuuColumnList {
263
- --vuuMeasuredContainer-flex: 1 1 1px;
264
- --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>');
265
- --vuuList-borderStyle: none;
266
- --vuuListItem-padding: 0;
267
- display: flex;
268
- flex-direction: column;
269
- width: 252px;
270
- }
271
- [data-icon=function] {
272
- --vuu-icon-svg: var(--vuu-svg-function);
273
- }
274
- .vuuColumnListItem {
275
- border-bottom: solid 1px var(--salt-separable-tertiary-borderColor);
276
- padding: 0 6px 0 0;
277
- }
278
- .vuuColumnList-switch {
279
- flex: 0 0 32px;
280
- }
281
- .vuuColumnList-text {
282
- flex: 1 1 auto;
283
- }
284
- .vuuColumnList-text:hover {
285
- font-weight: 600;
286
- text-decoration: underline;
287
- }
288
- .vuuColumnList-checkBox {
289
- flex: 0 0 20px;
290
- }
291
- .vuuColumnList-icon {
292
- --vuu-icon-color: var(--vuu-color-gray-45);
293
- --vuu-icon-size: 16px;
294
- --vuu-icon-width: 32px;
295
- }
296
- .vuuColumnList-header {
297
- border-top: solid 2px var(--vuu-color-gray-30);
298
- flex: 0 0 40px;
299
- font-size: 14px;
300
- font-weight: 600;
301
- padding-top: 24px;
302
- }
303
- .vuuColumnList-colHeadings {
304
- border-bottom: solid 2px var(--vuu-color-gray-30);
305
- color: var(--vuu-color-gray-50);
306
- display: flex;
307
- flex: 0 0 24px;
308
- font-size: 10px;
309
- justify-content: space-between;
310
- margin-top: 16px;
311
- padding-bottom: 8px;
312
- }
313
-
314
- /* src/column-expression-input/ColumnExpressionInput.css */
315
- .vuuColumnExpressionInput {
316
- --vuuFilterEditor-background: var(--salt-container-primary-background);
317
- --vuuFilterEditor-color: var(--salt-text-primary-foreground);
318
- --vuuFilterEditor-fontFamily: var(--salt-typography-fontFamily);
319
- --vuuFilterEditor-fontSize: var(--salt-text-fontSize);
320
- --vuuFilterEditor-cursorColor: var(--salt-text-secondary-foreground);
321
- --vuuFilterEditor-selectionBackground: var(--salt-text-background-selected);
322
- --vuuFilterEditor-tooltipBackground: var(--salt-container-primary-background);
323
- --vuuFilterEditor-tooltipBorder: solid 1px var(--vuu-color-purple-10);
324
- --vuuFilterEditor-tooltipElevation: var(--salt-overlayable-shadow-popout);
325
- --vuuFilterEditor-suggestion-selectedBackground: var(--vuu-color-gray-10);
326
- --vuuFilterEditor-suggestion-selectedColor: var(--salt-text-primary-foreground);
327
- --vuuFilterEditor-suggestion-detailColor: var(--salt-text-secondary-foreground-disabled);
328
- --vuuFilterEditor-suggestion-height: 24px;
329
- --vuuFilterEditor-variableColor: var(--vuu-color-purple-10);
330
- align-items: center;
331
- box-sizing: border-box;
332
- height: 30px;
333
- }
334
- .vuuColumnExpressionInput-FilterButton,
335
- .vuuColumnExpressionInput-ClearButton {
336
- --vuu-icon-size: 12px;
337
- --saltButton-width: 28px;
338
- }
339
- .expression-type-container {
340
- margin: 0 3px 0 auto;
341
- color: var(--salt-text-secondary-foreground);
342
- }
343
- .expression-kind {
344
- display: inline-block;
345
- width: 50px;
346
- }
347
- .expression-type {
348
- display: inline-block;
349
- text-align: right;
350
- width: 50px;
351
- }
352
- .vuuSuggestion {
353
- display: flex;
354
- align-items: center;
355
- }
356
- .vuuFunctionDoc {
357
- padding: 13px 7px;
358
- }
359
- .vuuFunctionDoc .function-heading {
360
- display: flex;
361
- gap: 3px;
362
- }
363
- .vuuFunctionDoc .function-name {
364
- font-weight: 700;
365
- text-transform: capitalize;
366
- }
367
- .vuuFunctionDoc .param-list {
368
- color: var(--vuu-color-gray-50);
369
- white-space: pre;
370
- }
371
- .vuuFunctionDoc .function-type {
372
- color: var(--vuu-color-gray-50);
373
- font-weight: 700;
374
- margin-left: auto;
375
- text-transform: capitalize;
376
- }
377
- .vuuFunctionDoc .example-container {
378
- background-color: var(--vuu-color-gray-03);
379
- margin: 6px 0;
380
- padding: 3px;
381
- }
382
- .vuuFunctionDoc .example-expression {
383
- color: var(--vuu-color-gray-80);
384
- font-family: var(--salt-typography-fontFamily-code);
385
- font-weight: 500;
386
- padding: 8px;
387
- }
388
- .vuuFunctionDoc .example-result {
389
- margin-left: 8px;
390
- margin-top: 6px;
391
- }
392
-
393
- /* src/column-settings/ColumnNameLabel.css */
394
- .vuuColumnNameLabel-calculated {
395
- cursor: pointer;
396
- display: flex;
397
- gap: 2px;
398
- }
399
- .vuuColumnNameLabel-edit {
400
- margin-left: auto;
401
- }
402
- .vuuColumnNameLabel-placeholder {
403
- color: var(--vuu-color-gray-35);
404
- }
405
-
406
- /* src/column-settings/ColumnSettingsPanel.css */
407
- .vuuColumnSettingsPanel {
408
- --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>');
409
- --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>');
410
- --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>');
411
- --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>');
412
- --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>');
413
- --vuuDropdown-height: 24px;
414
- --vuuDropdown-width: 100%;
415
- --vuuIconToggleButton-iconSize: 16px;
416
- display: flex;
417
- flex-direction: column;
418
- gap: 24px;
419
- height: 100%;
420
- padding-top: 24px;
421
- }
422
- .vuuColumnSettingsPanel-header {
423
- border-top: solid 2px var(--vuu-color-gray-30);
424
- font-size: 14px;
425
- font-weight: 600;
426
- padding-top: 24px;
427
- }
428
- .vuuColumnSettingsPanel-buttonBar {
429
- align-items: center;
430
- display: flex;
431
- justify-content: space-between;
432
- margin-top: auto;
433
- }
434
- .vuuColumnSettingsPanel-buttonBar[data-align=right] {
435
- gap: 6px;
436
- justify-content: flex-end;
437
- }
438
- .vuuColumnSettingsPanel-buttonNavPrev {
439
- --vuu-icon-left: 6px;
440
- padding-left: 24px;
441
- }
442
- .vuuColumnSettingsPanel-buttonNavNext {
443
- --vuu-icon-left: calc(100% - 18px);
444
- padding-right: 24px;
445
- }
446
- [data-icon=align-left] {
447
- --vuu-icon-svg: var(--vuu-svg-align-left);
448
- }
449
- [data-icon=align-right] {
450
- --vuu-icon-svg: var(--vuu-svg-align-right);
451
- }
452
- [data-icon=pin-left] {
453
- --vuu-icon-svg: var(--vuu-svg-pin-left);
454
- }
455
- [data-icon=pin-float] {
456
- --vuu-icon-svg: var(--vuu-svg-pin-float);
457
- }
458
- [data-icon=pin-right] {
459
- --vuu-icon-svg: var(--vuu-svg-pin-right);
460
- }
461
- .vuuColumnSettingsPanel-editing .vuuColumnNameLabel-edit {
462
- display: none;
463
- }
464
-
465
- /* src/datasource-stats/DatasourceStats.css */
466
- .vuuDatasourceStats {
467
- color: black;
468
- display: flex;
469
- font-size: 10px;
470
- gap: var(--salt-size-unit);
471
- padding: 4px 0 0 12px;
472
- }
473
- .vuuDatasourceStats-label {
474
- color: var(--vuu-color-gray-50);
475
- }
476
-
477
- /* ../vuu-table/src/column-resizing/ColumnResizer.css */
478
- .vuuColumnResizerNext {
479
- background-color: var(--columnResizer-color);
480
- cursor: col-resize;
481
- height: var(--header-height);
482
- margin-left: var(--columnResizer-left, auto);
483
- position: absolute;
484
- right: -5px;
485
- width: 8px;
486
- z-index: 1;
487
- }
488
- .vuuColumnResizerNext:hover {
489
- --columnResizer-color: var(--vuu-color-purple-10);
490
- }
491
- .vuuColumnResizerNext:after {
492
- background-color: var(--columnResizer-color, var(--salt-separable-tertiary-borderColor));
493
- bottom: 0;
494
- content: "";
495
- position: absolute;
496
- top: 0;
497
- right: 3px;
498
- height: var(--columnResizer-height, 0);
499
- width: 2px;
500
- }
501
-
502
- /* ../vuu-table/src/column-header-pill/ColumnHeaderPill.css */
503
- .vuuColumnHeaderPill {
504
- --vuu-icon-size: 14px;
505
- --menu-item-icon-color: black;
506
- --vuu-icon-color: white;
507
- --vuu-icon-height: 12px;
508
- --vuu-icon-width: 12px;
509
- align-items: center;
510
- background: var(--salt-taggable-background-active);
511
- color: white;
512
- border-radius: 4px;
513
- flex: var(--vuuColumnHeaderPill-flex, none);
514
- font-size: 11px;
515
- gap: 4px;
516
- height: 16px;
517
- display: flex;
518
- margin: var(--vuuColumnHeaderPill-margin, 0);
519
- padding: 0 6px;
520
- position: relative;
521
- }
522
- .vuuColumnHeaderPill:hover {
523
- --vuu-icon-color: var(--vuu-color-gray-80);
524
- background-color: var(--salt-taggable-background-hover);
525
- color: var(--vuu-color-gray-80);
526
- }
527
- .vuuColumnHeaderPill-removeButton {
528
- cursor: pointer;
529
- }
530
-
531
- /* ../vuu-table/src/column-header-pill/GroupColumnPill.css */
532
- .vuuSortPosition {
533
- font-size: 11px;
534
- font-weight: 700;
535
- padding-top: 1px;
536
- }
537
-
538
- /* ../vuu-table/src/column-header-pill/SortIndicator.css */
539
- .vuuSortPosition {
540
- font-size: 11px;
541
- font-weight: 700;
542
- padding-top: 1px;
543
- }
544
-
545
- /* ../vuu-table/src/header-cell/GroupHeaderCell.css */
546
- .vuu-theme {
547
- --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>');
548
- }
549
- .vuuTableGroupHeaderCell {
550
- --vuuColumnHeaderPill-margin: 0;
551
- --cell-align: "flex-start";
552
- text-align: left;
553
- background: var(--dataTable-background);
554
- cursor: default;
555
- height: var(--vuuTableHeaderHeight);
556
- }
557
- .vuuTableGroupHeaderCell-inner {
558
- align-items: center;
559
- display: flex;
560
- gap: 4px;
561
- height: 100%;
562
- padding-left: 1px;
563
- }
564
- .vuuTableGroupHeaderCell-col {
565
- align-items: center;
566
- background-color: inherit;
567
- display: inline-flex;
568
- flex: 0 1 auto;
569
- height: calc(var(--vuuTableHeaderHeight) - 2px);
570
- justify-content: space-between;
571
- padding-right: 8px;
572
- position: relative;
573
- }
574
- .vuuTableGroupHeaderCell-label {
575
- align-items: center;
576
- display: flex;
577
- flex: 0 0 auto;
578
- }
579
- .vuuTableGroupHeaderCell-close {
580
- --vuu-icon-height: 18px;
581
- --vuu-icon-width: 18px;
582
- cursor: pointer;
583
- left: 3px;
584
- }
585
- .vuuTableGroupHeaderCell-resizing {
586
- --columnResizer-color: var(--salt-color-blue-500);
587
- --columnResizer-height: var(--table-height);
588
- --columnResizer-width: 2px;
589
- }
590
- .vuuTableGroupHeaderCell-pending {
591
- --pending-content: "";
592
- }
593
- .vuuTableGroupHeaderCell-col:has(+ .vuuColumnResizer):after {
594
- content: var(--pending-content);
595
- width: 24px;
596
- height: 24px;
597
- background-image: var(--svg-spinner);
598
- background-repeat: no-repeat;
599
- background-size: cover;
600
- }
601
-
602
- /* ../vuu-table/src/column-menu/ColumnMenu.css */
603
- .vuuMenuItem {
604
- --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>');
605
- }
606
- .vuuTable-columnMenu {
607
- --vuu-icon-color: #606477;
608
- --vuu-icon-height: 20px;
609
- --vuu-icon-left: 0px;
610
- --vuu-icon-size: 16px;
611
- --vuu-icon-top: 0px;
612
- --vuu-icon-width: 20px;
613
- border-radius: 4px;
614
- cursor: pointer;
615
- display: inline-block;
616
- flex: 0 0 20px;
617
- padding: 2px;
618
- margin: var(--vuuTable-columnMenu-margin, 0);
619
- width: auto;
620
- }
621
- .vuuTable-columnMenu:hover {
622
- --vuu-icon-color: #15171B;
623
- background-color: #F37880;
624
- }
625
- .vuuTable-columnMenu-open:hover,
626
- .vuuTable-columnMenu-open {
627
- background-color: #6D18BD;
628
- --vuu-icon-color: white;
629
- }
630
- [data-icon=cog] {
631
- --vuu-icon-svg: var(--vuu-svg-cog);
632
- --vuu-icon-size: 14px;
633
- }
634
-
635
- /* ../vuu-table/src/header-cell/HeaderCell.css */
636
- .vuuTableGroupHeaderCell,
637
- .vuuTableHeaderCell {
638
- --cell-align: "flex-start";
639
- --vuuColumnHeaderPill-margin: 0;
640
- --vuuColumnHeaderPill-flex: 0 0 24px;
641
- align-items: center;
642
- background-color: var(--vuuTableHeaderCell-background, inherit);
643
- border-bottom: 1px solid #ccc;
644
- border-right-color: var(--cell-borderColor);
645
- border-right-style: solid;
646
- border-right-width: 1px;
647
- box-sizing: border-box;
648
- cursor: default;
649
- display: inline-flex;
650
- gap: 4px;
651
- height: var(--header-height);
652
- padding: 0 12px 0 4px;
653
- position: relative;
654
- vertical-align: top;
655
- }
656
- .vuuTableHeaderCell-right {
657
- --columnResizer-left: 0;
658
- --vuuTable-columnMenu-margin: 0;
659
- --vuuColumnHeaderPill-margin: 0 3px 0 0;
660
- --column-menu-left: 2px;
661
- justify-content: flex-end;
662
- padding: 0 3px 0 12px;
663
- }
664
- .vuuTableHeaderCell-label {
665
- flex: 0 1 auto;
666
- line-height: calc(var(--header-height) - 1px);
667
- overflow: hidden;
668
- text-overflow: ellipsis;
669
- white-space: nowrap;
670
- }
671
- .vuuTableHeaderCell-right .vuuTableHeaderCell-label {
672
- text-align: right;
673
- }
674
- .vuuTableHeaderCell-resizing {
675
- --columnResizer-height: var(--table-height);
676
- }
677
- .vuuTableHeaderCell.vuuPinLeft {
678
- padding-left: 2px;
679
- }
680
- .vuuTableHeaderCell.vuuPinLeft.vuuEndPin .vuuColumnResizerNext:before {
681
- --height: calc(var(--table-height) - var(--horizontal-scrollbar-height));
682
- --inset-r: calc(var(--pin-width) - 2px);
683
- --inset-b: calc(var(--height) - 2px);
684
- --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% );
685
- background-color: transparent;
686
- border-color: var(--vuu-color-gray-40);
687
- border-width: 1px;
688
- border-style: solid solid solid solid;
689
- border-radius: 4px;
690
- box-shadow: 2px 1px 4px 0px rgba(0, 0, 0, 0.10);
691
- clip-path: var(--clip-path);
692
- content: "";
693
- position: absolute;
694
- width: var(--pin-width);
695
- top: 0;
696
- bottom: 0;
697
- right: 3px;
698
- height: var(--height);
699
- z-index: -5;
700
- }
701
- .vuuTableHeaderCell.vuuPinRight.vuuEndPin .vuuColumnResizerNext:before {
702
- --height: calc(var(--table-height) - var(--horizontal-scrollbar-height));
703
- --inset-r: calc(var(--pin-width) - 2px);
704
- --inset-b: calc(var(--height) - 2px);
705
- --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% );
706
- background-color: transparent;
707
- border-color: #A9AAAD;
708
- border-width: 1px;
709
- border-style: solid solid solid solid;
710
- border-radius: 4px;
711
- box-shadow: -2px 1px 4px 0px rgba(0, 0, 0, 0.10);
712
- clip-path: var(--clip-path);
713
- content: "";
714
- position: absolute;
715
- width: var(--pin-width);
716
- top: 0;
717
- bottom: 0;
718
- right: 0px;
719
- height: var(--height);
720
- z-index: -5;
721
- }
722
- .vuuTableHeaderCell.vuuDraggable-dragAway {
723
- display: none;
724
- }
725
- .vuuTable-headingCell {
726
- background: var(--dataTable-background);
727
- border-color: var(--salt-separable-tertiary-borderColor);
728
- border-style: solid solid solid none;
729
- border-width: 1px;
730
- color: var(--salt-text-secondary-foreground);
731
- display: inline-block;
732
- height: var(--header-height);
733
- padding: 0 !important;
734
- }
735
-
736
- /* ../vuu-table/src/table-cell/TableCell.css */
737
- .vuuTableCell {
738
- border-right-color: var(--cell-borderColor);
739
- border-right-style: solid;
740
- border-right-width: 1px;
741
- display: inline-block;
742
- height: 100%;
743
- overflow: hidden;
744
- padding: 0 11px 0 12px;
745
- text-overflow: ellipsis;
746
- vertical-align: top;
747
- }
748
- .vuuTableCell-right {
749
- text-align: right;
750
- }
751
- .vuuTableCell-editable {
752
- display: inline-flex;
753
- line-height: 18px;
754
- padding-bottom: 1px;
755
- padding-top: 1px;
756
- text-overflow: unset;
757
- }
758
- .vuuTableCell:focus {
759
- outline: var(--vuuTableCell-outline, solid var(--vuu-color-purple-10) 2px);
760
- outline-offset: -2px;
761
- box-shadow: inset 0 0 0 var(--cell-outline-width) white;
762
- border-bottom: none;
763
- }
764
- .vuuTableRow-selected .vuuTableCell:not(.vuuTableCell-editable):focus {
765
- outline: var(--vuuTableCell-outline, solid var(--vuu-color-purple-10) 2px);
766
- outline-offset: -1px;
767
- }
768
- .vuuTableCell-editable:focus {
769
- outline: none;
770
- }
771
-
772
- /* ../vuu-table/src/table-cell/TableGroupCell.css */
773
- .vuuTableGroupCell {
774
- --group-cell-spacer-width: 20px;
775
- align-items: center;
776
- border-right-color: var(--vuuTableGroupCell-borderColor, var(--salt-separable-tertiary-borderColor));
777
- border-right-style: solid;
778
- border-right-width: 1px;
779
- cursor: pointer;
780
- display: inline-flex;
781
- height: var(--row-height);
782
- line-height: 16px;
783
- }
784
- .vuuTableGroupCell-toggle {
785
- --vuu-icon-height: 16px;
786
- --vuu-icon-size: 16px;
787
- --vuu-icon-width: 8px;
788
- margin-right: 4px;
789
- transition: transform 0.25s;
790
- transform: var(--toggle-icon-transform);
791
- }
792
- .vuuTableGroupCell-spacer {
793
- width: var(--group-cell-spacer-width);
794
- }
795
-
796
- /* ../vuu-table/src/Row.css */
797
- .vuuTableRow {
798
- background: var(--row-background,#fff);
799
- border-bottom: 1px solid var(--row-borderColor);
800
- box-sizing: border-box;
801
- height: var(--row-height);
802
- line-height: calc(var(--row-height) - 1px);
803
- position: absolute;
804
- top: 0;
805
- white-space: nowrap;
806
- }
807
- .vuuTableRow-even {
808
- --row-background: var(--row-background-even);
809
- }
810
- .vuuTableRow-highlighted {
811
- background-color: var(--vuu-color-gray-10);
812
- }
813
- .vuuTableRow-selected,
814
- .vuuTableRow-selectedEnd {
815
- background-color: rgb(235, 235, 236);
816
- }
817
- .vuuTableRow-selectedStart {
818
- --vuu-selection-decorator-left-radius: 5px 0 0 0;
819
- --vuu-selection-decorator-right-radius: 0 5px 0 0;
820
- border-radius: 5px 5px 0 0;
821
- }
822
- .vuuTableRow-selectedEnd {
823
- --vuu-selection-decorator-left-radius: 0 0 0 5px;
824
- --vuu-selection-decorator-right-radius: 0 0 5px 0;
825
- border-radius: 0 0 5px 5px;
826
- }
827
- .vuuTableRow-selectedStart.vuuTableRow-selectedEnd {
828
- --vuu-selection-decorator-left-radius: 5px 0 0 5px;
829
- --vuu-selection-decorator-right-radius: 0 5px 5px 0;
830
- border-radius: 5px 5px 5px 5px;
831
- }
832
- .vuuTableRow-selectedStart:after {
833
- content: "";
834
- position: absolute;
835
- top: 0;
836
- left: 4px;
837
- height: 1px;
838
- background-color: var(--vuu-color-purple-10);
839
- width: calc(var(--content-width) - 8px);
840
- z-index: 1;
841
- }
842
- .vuuTableRow-selectedEnd {
843
- border-bottom-color: var(--vuu-color-purple-10);
844
- }
845
- .vuuTableRow-selectionDecorator {
846
- background-color: var(--vuu-selection-decorator-bg, white);
847
- display: inline-block;
848
- position: relative;
849
- height: var(--row-height);
850
- width: 4px;
851
- z-index: 2;
852
- }
853
- .vuuTableRow-selectionDecorator.vuuStickyLeft {
854
- left: 0;
855
- position: sticky;
856
- }
857
- .vuuTableRow-selectionDecorator.vuuStickyRight {
858
- right: 0;
859
- position: sticky;
860
- }
861
- .vuuTableRow-selected {
862
- --vuu-selection-decorator-bg: var(--vuu-color-purple-10);
863
- }
864
- .vuuTableRow-selectedStart {
865
- --vuu-selection-decorator-bg: white;
866
- }
867
- .vuuTableRow-selectedEnd {
868
- --vuu-selection-decorator-bg: white;
869
- }
870
- .vuuTableRow-selectedStart.vuuTableRow-selectedEnd {
871
- }
872
- .vuuTableRow-selectedStart .vuuTableRow-selectionDecorator:before,
873
- .vuuTableRow-selectedEnd .vuuTableRow-selectionDecorator:before {
874
- content: "";
875
- inset: 0;
876
- position: absolute;
877
- background-color: var(--vuu-color-purple-10);
878
- }
879
- .vuuTableRow-selectionDecorator.vuuStickyLeft:before {
880
- border-radius: var(--vuu-selection-decorator-left-radius, 0);
881
- }
882
- .vuuTableRow-selectionDecorator.vuuStickyRight:before {
883
- border-radius: var(--vuu-selection-decorator-right-radius, 0);
884
- }
885
- .vuuTableRow-expanded {
886
- --toggle-icon-transform: rotate(90deg);
887
- }
888
- .vuuDraggable .vuuTableRow {
889
- --cell-borderColor: transparent;
890
- --vuu-selection-decorator-bg: transparent;
891
- transform: none !important;
892
- z-index: 1;
893
- }
894
-
895
- /* ../vuu-table/src/Table.css */
896
- .vuuTable {
897
- --vuu-table-cell-outlineWidth: 1px;
898
- --table-height: var(--measured-px-height);
899
- --table-width: var(--measured-px-width);
900
- --vuu-table-next-selection-bookend-width: 4px;
901
- --columnResizer-color: transparent;
902
- --row-background: white;
903
- --cell-borderColor: transparent;
904
- --row-borderColor: var(--row-background);
905
- --table-background: var(--salt-container-primary-background);
906
- position: relative;
907
- user-select: none;
908
- }
909
- .vuuTable-zebra {
910
- --row-background-even: var(--vuu-color-gray-25) ;
911
- }
912
- .vuuTable-colLines {
913
- --cell-borderColor: var(--vuu-color-gray-03);
914
- }
915
- .vuuTable-rowLines {
916
- --row-borderColor: var(--vuu-color-gray-03);
917
- }
918
- .vuuTable-highlight .vuuTableRow:hover {
919
- background-color: var(--vuu-color-pink-10-fade-20);
920
- }
921
- .vuuTable-scrollbarContainer {
922
- --scroll-content-width: 1100px;
923
- border-bottom: none !important;
924
- border-top: none !important;
925
- border-left: solid 1px var(--salt-container-primary-borderColor);
926
- height: var(--viewport-body-height);
927
- left: 0px;
928
- overflow: auto;
929
- position: absolute;
930
- top: var(--total-header-height);
931
- width: var(--table-width);
932
- }
933
- .vuuTable-scrollbarContainer::-webkit-scrollbar {
934
- border: none;
935
- width: 10px;
936
- }
937
- .vuuTable-scrollbarContainer::-webkit-scrollbar:horizontal {
938
- height: 10px;
939
- }
940
- .vuuTable-scrollbarContainer::-webkit-scrollbar-track {
941
- background-color: white;
942
- }
943
- .vuuTable-scrollbarContainer::-webkit-scrollbar-thumb {
944
- background-clip: padding-box;
945
- border-radius: 10px;
946
- border: 2px solid rgba(0, 0, 0, 0);
947
- background-color: var(--vuu-color-gray-30);
948
- }
949
- .vuuTable-scrollbarContent {
950
- height: calc(var(--content-height) + var(--horizontal-scrollbar-height));
951
- position: absolute;
952
- width: var(--content-width);
953
- }
954
- .vuuTable-contentContainer {
955
- background-color: var(--salt-container-primary-background);
956
- height: calc(var(--table-height) - var(--horizontal-scrollbar-height));
957
- position: relative;
958
- overflow: auto;
959
- overscroll-behavior: none;
960
- width: calc(var(--table-width) - var(--vertical-scrollbar-width));
961
- }
962
- .vuuTable-contentContainer::-webkit-scrollbar {
963
- display: none;
964
- }
965
- .vuuTable-table {
966
- position: absolute;
967
- top: 0;
968
- left: 0;
969
- table-layout: fixed;
970
- width: var(--content-width);
971
- margin: 0;
972
- border: none;
973
- background-color: #fff;
974
- border-collapse: separate;
975
- border-spacing: 0;
976
- }
977
- .vuuTable-body {
978
- height: var(--content-height);
979
- }
980
- .vuuPinLeft,
981
- .vuuPinRight {
982
- background-color: inherit;
983
- position: sticky;
984
- z-index: 1;
985
- }
986
- .vuuTable-col-headings {
987
- background-color: white;
988
- padding: 0 var(--vuu-table-next-selection-bookend-width, 0);
989
- position: sticky;
990
- top: 0;
991
- z-index: 1;
992
- }
993
- .vuuTable-col-headers {
994
- background-color: var(--table-background);
995
- white-space: nowrap;
996
- }
997
- .sizer-cell {
998
- background-color: green !important;
999
- border: none !important;
1000
- height: 0px;
1001
- }
1002
- .vuuDraggable-vuuTable {
1003
- --header-height: 25px;
1004
- --vuuTableHeaderCell-background: var(--vuu-color-gray-25);
1005
- }
1006
- .vuuDraggable-vuuTable {
1007
- --row-height: 25px;
1008
- }
1009
-
1010
- /* ../vuu-table/src/cell-renderers/dropdown-cell/DropdownCell.css */
1011
- .vuuTableDropdownCell {
1012
- --vuu-icon-height: 15px;
1013
- --salt-focused-outlineStyle: none;
1014
- --saltButton-borderRadius: 4px;
1015
- font-weight: 500;
1016
- }
1017
- .vuuTableDropdownCell button:focus-visible {
1018
- --saltButton-borderColor: var(--vuu-color-purple-10);
1019
- --saltButton-borderWidth: 2px;
1020
- padding-left: 3px;
1021
- }
1022
-
1023
- /* ../vuu-table/src/cell-renderers/input-cell/InputCell.css */
1024
- .vuuTableInputCell.saltInput-primary {
1025
- --salt-focused-outlineStyle: none;
1026
- --saltInput-height: 17px;
1027
- --saltInput-minHeight: 17px;
1028
- border-radius: 4px;
1029
- font-weight: 500;
1030
- }
1031
- .vuuTableCell:focus .vuuTableInputCell.saltInput-primary,
1032
- .vuuTableInputCell.saltInput-primary.saltInput-focused {
1033
- border: solid 2px var(--vuu-color-purple-10);
1034
- padding: 0 3px;
1035
- }
1036
- .vuuTableInputCell-icon {
1037
- --vuu-icon-height: 13px;
1038
- --vuu-icon-size: 15px;
1039
- --vuu-icon-width: 12px;
1040
- border-radius: 10px;
1041
- }
1042
- .vuuTableCell:focus .vuuTableInputCell.saltInput-primary.vuuTableInputCell-error,
1043
- .vuuTableInputCell.saltInput-primary.saltInput-focused.vuuTableInputCell-error {
1044
- border: solid 2px var(--vuu-color-red-50);
1045
- }
1046
- .vuuTableInputCell-error.saltInput-primary {
1047
- border: solid 1px var(--vuu-color-red-50);
1048
- }
1049
-
1050
- /* ../vuu-table/src/cell-renderers/toggle-cell/ToggleCell.css */
1051
- .vuuTableToggleCell {
1052
- --saltButton-borderRadius: 4px;
1053
- --saltButton-height: 16px;
1054
- font-weight: 500;
1055
- position: relative;
1056
- top: 1px;
1057
- }
1058
- .vuuTableToggleCell-side {
1059
- --saltButton-minWidth: 40px;
1060
- }
1061
- .vuuTableToggleCell.vuuCycleStateButton-buy {
1062
- background-color: var(--vuu-color-green-50);
1063
- }
1064
- .vuuTableToggleCell.vuuCycleStateButton-sell {
1065
- background-color: var(--vuu-color-red-50);
1066
- }
1067
- .vuuTableCell .vuuTableToggleCell:focus {
1068
- border: solid 2px var(--vuu-color-purple-10) !important;
1069
- color: white !important;
1070
- height: 18px !important;
1071
- top: 0px !important;
1072
- }
1073
-
1074
- /* src/table-settings/TableSettingsPanel.css */
1075
- .vuuTableSettingsPanel {
1076
- --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>');
1077
- --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>');
1078
- --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>');
1079
- --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>');
1080
- --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>');
1081
- --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>');
1082
- display: flex;
1083
- flex-direction: column;
1084
- gap: 24px;
1085
- height: 100%;
1086
- padding-top: 24px;
1087
- }
1088
- .vuuTableSettingsPanel [data-icon=text-strikethrough] {
1089
- --vuu-icon-svg: var(--vuu-svg-text-strikethrough);
1090
- }
1091
- .vuuTableSettingsPanel [data-icon=text-Tt] {
1092
- --vuu-icon-svg: var(--vuu-svg-text-Tt);
1093
- }
1094
- .vuuTableSettingsPanel [data-icon=text-T] {
1095
- --vuu-icon-svg: var(--vuu-svg-text-T);
1096
- }
1097
- .vuuTableSettingsPanel [data-icon=col-lines] {
1098
- --vuu-icon-svg: var(--vuu-svg-col-lines);
1099
- }
1100
- .vuuTableSettingsPanel [data-icon=row-lines] {
1101
- --vuu-icon-svg: var(--vuu-svg-row-lines);
1102
- }
1103
- .vuuTableSettingsPanel [data-icon=row-striping] {
1104
- --vuu-icon-svg: var(--vuu-svg-stripes);
1105
- }
1106
- .vuuTableSettingsPanel-header {
1107
- border-top: solid 2px var(--vuu-color-gray-30);
1108
- font-size: 14px;
1109
- font-weight: 600;
1110
- padding-top: 24px;
1111
- }
1112
- .vuuTableSettingsPanel .vuuColumnList {
1113
- flex-grow: 1;
1114
- flex-shrink: 1;
1115
- flex-basis: 0;
1116
- }
1117
- .vuuTableSettingsPanel-calculatedButtonbar {
1118
- --vuu-icon-size: 16px;
1119
- --saltButton-height: 24px;
1120
- --saltButton-width: 24px;
1121
- align-items: center;
1122
- display: flex;
1123
- flex: 0 0 32px;
1124
- gap: 12px;
1125
- }
1126
- .vuuGridSeparators {
1127
- --vuuIconToggleButton-iconSize: 16px;
1128
- }
1
+ .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}.vuuTable 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-arrowOnly>.vuuBackgroundCell-flasher{background-color:transparent}.vuuBackgroundCell-backgroundOnly.up1,.vuuBackgroundCell-backgroundArrow.up1{animation-duration:30s;animation-name:reactbgup1}.vuuBackgroundCell-backgroundOnly.up2,.vuuBackgroundCell-backgroundArrow.up2{animation-duration:30s;animation-name:reactbgup2}.vuuBackgroundCell-backgroundOnly.down1,.vuuBackgroundCell-backgroundArrow.down1{animation-duration:30s;animation-name:reactbgdown1}.vuuBackgroundCell-backgroundOnly.down2,.vuuBackgroundCell-backgroundArrow.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}@keyframes reactbgup1{0%{background-color:var(--vuu-color-green-50);color:#fff}to{background-color:transparent;color:var(--vuu-color-gray-80)}}@keyframes reactbgup2{0%{background-color:var(--vuu-color-green-50);color:#fff}to{background-color:transparent;color:var(--vuu-color-gray-80)}}@keyframes reactbgdown1{0%{background-color:var(--vuu-color-red-50);color:#fff}to{background-color:transparent;color:var(--vuu-color-gray-80)}}@keyframes reactbgdown2{0%{background-color:var(--vuu-color-red-50);color:#fff}to{background-color:transparent;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}}.vuuBackgroundCellConfiguration{height:50px;background-color:red}.vuuColumnList{--vuuMeasuredContainer-flex: 1 1 1px;--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: solid 1px var(--vuu-color-purple-10);--vuuFilterEditor-tooltipElevation: var(--salt-overlayable-shadow-popout);--vuuFilterEditor-suggestion-selectedBackground: var(--vuu-color-gray-10);--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{padding:13px 7px}.vuuFunctionDoc .function-heading{display:flex;gap:3px}.vuuFunctionDoc .function-name{font-weight:700;text-transform:capitalize}.vuuFunctionDoc .param-list{color:var(--vuu-color-gray-50);white-space:pre}.vuuFunctionDoc .function-type{color:var(--vuu-color-gray-50);font-weight:700;margin-left:auto;text-transform:capitalize}.vuuFunctionDoc .example-container{background-color:var(--vuu-color-gray-03);margin:6px 0;padding:3px}.vuuFunctionDoc .example-expression{color:var(--vuu-color-gray-80);font-family:var(--salt-typography-fontFamily-code);font-weight:500;padding:8px}.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)}.vuuColumnResizerNext{background-color:var(--columnResizer-color);cursor:col-resize;height:var(--header-height);margin-left:var(--columnResizer-left, auto);position:absolute;right:-5px;width:8px;z-index:1}.vuuColumnResizerNext:hover{--columnResizer-color: var(--vuu-color-purple-10)}.vuuColumnResizerNext:after{background-color:var(--columnResizer-color, var(--salt-separable-tertiary-borderColor));bottom:0;content:"";position:absolute;top:0;right:3px;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: 12px;align-items:center;background:var(--salt-taggable-background-active);color:#fff;border-radius:4px;flex:var(--vuuColumnHeaderPill-flex, none);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>')}.vuuTableGroupHeaderCell{--vuuColumnHeaderPill-margin: 0;--cell-align: "flex-start";text-align:left;background:var(--dataTable-background);cursor:default;height:var(--vuuTableHeaderHeight)}.vuuTableGroupHeaderCell-inner{align-items:center;display:flex;gap:4px;height:100%;padding-left:1px}.vuuTableGroupHeaderCell-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}.vuuTableGroupHeaderCell-label{align-items:center;display:flex;flex:0 0 auto}.vuuTableGroupHeaderCell-close{--vuu-icon-height: 18px;--vuu-icon-width: 18px;cursor:pointer;left:3px}.vuuTableGroupHeaderCell-resizing{--columnResizer-color: var(--salt-color-blue-500);--columnResizer-height: var(--table-height);--columnResizer-width: 2px}.vuuTableGroupHeaderCell-pending{--pending-content: ""}.vuuTableGroupHeaderCell-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;flex:0 0 20px;padding:2px;margin:var(--vuuTable-columnMenu-margin, 0);width:auto}.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}.vuuTableGroupHeaderCell,.vuuTableHeaderCell{--cell-align: "flex-start";--vuuColumnHeaderPill-margin: 0;--vuuColumnHeaderPill-flex: 0 0 24px;align-items:center;background-color:var(--vuuTableHeaderCell-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;gap:4px;height:var(--header-height);padding:0 12px 0 4px;position:relative;vertical-align:top}.vuuTableHeaderCell-right{--columnResizer-left: 0;--vuuTable-columnMenu-margin: 0;--vuuColumnHeaderPill-margin: 0 3px 0 0;--column-menu-left: 2px;justify-content:flex-end;padding:0 3px 0 12px}.vuuTableHeaderCell-label{flex:0 1 auto;line-height:calc(var(--header-height) - 1px);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vuuTableHeaderCell-right .vuuTableHeaderCell-label{text-align:right}.vuuTableHeaderCell-resizing{--columnResizer-height: var(--table-height)}.vuuTableHeaderCell.vuuPinLeft{padding-left:2px}.vuuTableHeaderCell.vuuPinLeft.vuuEndPin .vuuColumnResizerNext:before{--height: calc(var(--table-height) - var(--horizontal-scrollbar-height));--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:3px;height:var(--height);z-index:-5}.vuuTableHeaderCell.vuuPinRight.vuuEndPin .vuuColumnResizerNext:before{--height: calc(var(--table-height) - var(--horizontal-scrollbar-height));--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}.vuuTableHeaderCell.vuuDraggable-dragAway{display:none}.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(--header-height);padding:0!important}.vuuTableCell{border-right-color:var(--cell-borderColor);border-right-style:solid;border-right-width:1px;display:inline-block;height:100%;overflow:hidden;padding:0 11px 0 12px;text-overflow:ellipsis;vertical-align:top}.vuuTableCell-right{text-align:right}.vuuTableCell-editable{display:inline-flex;line-height:18px;padding-bottom:1px;padding-top:1px;text-overflow:unset}.vuuTableCell: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}.vuuTableRow-selected .vuuTableCell:not(.vuuTableCell-editable):focus{outline:var(--vuuTableCell-outline, solid var(--vuu-color-purple-10) 2px);outline-offset:-1px}.vuuTableCell-editable:focus{outline:none}.vuuTableGroupCell{--group-cell-spacer-width: 20px;align-items:center;border-right-color:var(--vuuTableGroupCell-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}.vuuTableGroupCell-toggle{--vuu-icon-height: 16px;--vuu-icon-size: 16px;--vuu-icon-width: 8px;margin-right:4px;transition:transform .25s;transform:var(--toggle-icon-transform)}.vuuTableGroupCell-spacer{width:var(--group-cell-spacer-width)}.vuuTableRow{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}.vuuTableRow-even{--row-background: var(--row-background-even)}.vuuTableRow-highlighted{background-color:var(--vuu-color-gray-10)}.vuuTableRow-selected,.vuuTableRow-selectedEnd{background-color:#ebebec}.vuuTableRow-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}.vuuTableRow-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}.vuuTableRow-selectedStart.vuuTableRow-selectedEnd{--vuu-selection-decorator-left-radius: 5px 0 0 5px;--vuu-selection-decorator-right-radius: 0 5px 5px 0;border-radius:5px}.vuuTableRow-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}.vuuTableRow-selectedEnd{border-bottom-color:var(--vuu-color-purple-10)}.vuuTableRow-selectionDecorator{background-color:var(--vuu-selection-decorator-bg, white);display:inline-block;position:relative;height:var(--row-height);width:4px;z-index:2}.vuuTableRow-selectionDecorator.vuuStickyLeft{left:0;position:sticky}.vuuTableRow-selectionDecorator.vuuStickyRight{right:0;position:sticky}.vuuTableRow-selected{--vuu-selection-decorator-bg: var(--vuu-color-purple-10)}.vuuTableRow-selectedStart,.vuuTableRow-selectedEnd{--vuu-selection-decorator-bg: white}.vuuTableRow-selectedStart .vuuTableRow-selectionDecorator:before,.vuuTableRow-selectedEnd .vuuTableRow-selectionDecorator:before{content:"";inset:0;position:absolute;background-color:var(--vuu-color-purple-10)}.vuuTableRow-selectionDecorator.vuuStickyLeft:before{border-radius:var(--vuu-selection-decorator-left-radius, 0)}.vuuTableRow-selectionDecorator.vuuStickyRight:before{border-radius:var(--vuu-selection-decorator-right-radius, 0)}.vuuTableRow-expanded{--toggle-icon-transform: rotate(90deg)}.vuuDraggable .vuuTableRow{--cell-borderColor: transparent;--vuu-selection-decorator-bg: transparent;transform:none!important;z-index:1}.vuuTable{--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}.vuuTable-zebra{--row-background-even: var(--vuu-color-gray-25) }.vuuTable-colLines{--cell-borderColor: var(--vuu-color-gray-03)}.vuuTable-rowLines{--row-borderColor: var(--vuu-color-gray-03)}.vuuTable-highlight .vuuTableRow:hover{background-color:var(--vuu-color-pink-10-fade-20)}.vuuTable-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)}.vuuTable-scrollbarContainer::-webkit-scrollbar{border:none;width:10px}.vuuTable-scrollbarContainer::-webkit-scrollbar:horizontal{height:10px}.vuuTable-scrollbarContainer::-webkit-scrollbar-track{background-color:#fff}.vuuTable-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)}.vuuTable-scrollbarContent{height:calc(var(--content-height) + var(--horizontal-scrollbar-height));position:absolute;width:var(--content-width)}.vuuTable-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))}.vuuTable-contentContainer::-webkit-scrollbar{display:none}.vuuTable-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}.vuuTable-body{height:var(--content-height)}.vuuPinLeft,.vuuPinRight{background-color:inherit;position:sticky;z-index:1}.vuuTable-col-headings{background-color:#fff;padding:0 var(--vuu-table-next-selection-bookend-width, 0);position:sticky;top:0;z-index:1}.vuuTable-col-headers{background-color:var(--table-background);white-space:nowrap}.sizer-cell{background-color:green!important;border:none!important;height:0px}.vuuDraggable-vuuTable{--header-height: 25px;--vuuTableHeaderCell-background: var(--vuu-color-gray-25)}.vuuDraggable-vuuTable{--row-height: 25px}.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}.vuuTableCell: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}.vuuTableCell: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)}.vuuTableToggleCell{--saltButton-borderRadius: 4px;--saltButton-height: 16px;font-weight:500;position:relative;top:1px}.vuuTableToggleCell-side{--saltButton-minWidth: 40px}.vuuTableToggleCell.vuuCycleStateButton-buy{background-color:var(--vuu-color-green-50)}.vuuTableToggleCell.vuuCycleStateButton-sell{background-color:var(--vuu-color-red-50)}.vuuTableCell .vuuTableToggleCell:focus{border:solid 2px var(--vuu-color-purple-10)!important;color:#fff!important;height:18px!important;top:0px!important}.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}
1129
2
  /*# sourceMappingURL=index.css.map */