@vuu-ui/vuu-table-extras 0.8.8-debug → 0.8.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/cjs/index.js +1 -3552
- package/cjs/index.js.map +2 -2
- package/esm/index.js +1 -3727
- package/esm/index.js.map +2 -2
- package/index.css +1 -1288
- package/index.css.map +3 -3
- package/package.json +11 -11
- package/types/vuu-data/src/inlined-worker.d.ts +1 -1
package/index.css
CHANGED
|
@@ -1,1289 +1,2 @@
|
|
|
1
|
-
/* src/cell-renderers/background-cell/BackgroundCell.css */
|
|
2
|
-
.vuuTable td:has(> .vuuBackgroundCell) {
|
|
3
|
-
padding: 0;
|
|
4
|
-
text-align: right;
|
|
5
|
-
}
|
|
6
|
-
.vuuBackgroundCell {
|
|
7
|
-
padding-right: var(--salt-size-unit);
|
|
8
|
-
position: relative;
|
|
9
|
-
z-index: -1;
|
|
10
|
-
}
|
|
11
|
-
.vuuBackgroundCell-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
|
-
.vuuBackgroundCell-flasher {
|
|
21
|
-
text-align: left;
|
|
22
|
-
}
|
|
23
|
-
.vuuBackgroundCell-flasher + .num {
|
|
24
|
-
padding-left: 8px;
|
|
25
|
-
}
|
|
26
|
-
.right .vuuBackgroundCell-flasher {
|
|
27
|
-
text-align: right;
|
|
28
|
-
}
|
|
29
|
-
.right .vuuBackgroundCell-flasher + .num {
|
|
30
|
-
padding-right: 8px;
|
|
31
|
-
}
|
|
32
|
-
.up1 > .vuuBackgroundCell-flasher {
|
|
33
|
-
animation-duration: 30s;
|
|
34
|
-
animation-name: reactbgup1;
|
|
35
|
-
}
|
|
36
|
-
.up2 > .vuuBackgroundCell-flasher {
|
|
37
|
-
animation-duration: 30s;
|
|
38
|
-
animation-name: reactbgup2;
|
|
39
|
-
}
|
|
40
|
-
.down1 > .vuuBackgroundCell-flasher {
|
|
41
|
-
animation-duration: 30s;
|
|
42
|
-
animation-name: reactbgdown1;
|
|
43
|
-
}
|
|
44
|
-
.down2 > .vuuBackgroundCell-flasher {
|
|
45
|
-
animation-duration: 30s;
|
|
46
|
-
animation-name: reactbgdown2;
|
|
47
|
-
}
|
|
48
|
-
.up1.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
|
|
49
|
-
animation-duration: 30s;
|
|
50
|
-
animation-name: reactarrowup1;
|
|
51
|
-
}
|
|
52
|
-
.up2.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
|
|
53
|
-
animation-duration: 30s;
|
|
54
|
-
animation-name: reactarrowup2;
|
|
55
|
-
}
|
|
56
|
-
.down1.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
|
|
57
|
-
animation-duration: 30s;
|
|
58
|
-
animation-name: reactarrowdown1;
|
|
59
|
-
}
|
|
60
|
-
.down2.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
|
|
61
|
-
animation-duration: 30s;
|
|
62
|
-
animation-name: reactarrowdown2;
|
|
63
|
-
}
|
|
64
|
-
.up1.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
|
|
65
|
-
animation-duration: 30s;
|
|
66
|
-
animation-name: reactbgarrowup1;
|
|
67
|
-
}
|
|
68
|
-
.up2.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
|
|
69
|
-
animation-duration: 30s;
|
|
70
|
-
animation-name: reactbgarrowup2;
|
|
71
|
-
}
|
|
72
|
-
.down1.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
|
|
73
|
-
animation-duration: 30s;
|
|
74
|
-
animation-name: reactbgarrowdown1;
|
|
75
|
-
}
|
|
76
|
-
.down2.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-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: var(--salt-differential-positive-background);
|
|
85
|
-
}
|
|
86
|
-
to {
|
|
87
|
-
background-color: transparent;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
@keyframes reactbgup2 {
|
|
91
|
-
from {
|
|
92
|
-
background-color: var(--salt-differential-positive-background);
|
|
93
|
-
}
|
|
94
|
-
to {
|
|
95
|
-
background-color: transparent;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
@keyframes reactbgdown1 {
|
|
99
|
-
from {
|
|
100
|
-
background-color: var(--salt-differential-negative-background);
|
|
101
|
-
}
|
|
102
|
-
to {
|
|
103
|
-
background-color: transparent;
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
@keyframes reactbgdown2 {
|
|
107
|
-
from {
|
|
108
|
-
background-color: var(--salt-differential-negative-background);
|
|
109
|
-
}
|
|
110
|
-
to {
|
|
111
|
-
background-color: transparent;
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
@keyframes reactarrowup1 {
|
|
115
|
-
from {
|
|
116
|
-
color: var(--salt-differential-positive-foreground);
|
|
117
|
-
}
|
|
118
|
-
to {
|
|
119
|
-
color: transparent;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
@keyframes reactarrowup2 {
|
|
123
|
-
from {
|
|
124
|
-
color: var(--salt-differential-positive-foreground);
|
|
125
|
-
}
|
|
126
|
-
to {
|
|
127
|
-
color: transparent;
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
@keyframes reactarrowdown1 {
|
|
131
|
-
from {
|
|
132
|
-
color: var(--salt-differential-negative-foreground);
|
|
133
|
-
}
|
|
134
|
-
to {
|
|
135
|
-
color: transparent;
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
@keyframes reactarrowdown2 {
|
|
139
|
-
from {
|
|
140
|
-
color: var(--salt-differential-negative-foreground);
|
|
141
|
-
}
|
|
142
|
-
to {
|
|
143
|
-
color: transparent;
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
@keyframes reactbgarrowup1 {
|
|
147
|
-
0% {
|
|
148
|
-
color: var(--salt-differential-positive-foreground);
|
|
149
|
-
background-color: var(--salt-differential-positive-background);
|
|
150
|
-
}
|
|
151
|
-
20% {
|
|
152
|
-
color: var(--salt-differential-positive-foreground);
|
|
153
|
-
background-color: transparent;
|
|
154
|
-
}
|
|
155
|
-
100% {
|
|
156
|
-
color: transparent;
|
|
157
|
-
background-color: transparent;
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
@keyframes reactbgarrowup2 {
|
|
161
|
-
0% {
|
|
162
|
-
color: var(--salt-differential-positive-foreground);
|
|
163
|
-
background-color: var(--salt-differential-positive-background);
|
|
164
|
-
}
|
|
165
|
-
20% {
|
|
166
|
-
color: var(--salt-differential-positive-foreground);
|
|
167
|
-
background-color: transparent;
|
|
168
|
-
}
|
|
169
|
-
100% {
|
|
170
|
-
color: transparent;
|
|
171
|
-
background-color: transparent;
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
@keyframes reactbgarrowdown1 {
|
|
175
|
-
0% {
|
|
176
|
-
color: var(--salt-differential-negative-foreground);
|
|
177
|
-
background-color: var(--salt-differential-negative-background);
|
|
178
|
-
}
|
|
179
|
-
20% {
|
|
180
|
-
color: var(--salt-differential-negative-foreground);
|
|
181
|
-
background-color: transparent;
|
|
182
|
-
}
|
|
183
|
-
100% {
|
|
184
|
-
color: transparent;
|
|
185
|
-
background-color: transparent;
|
|
186
|
-
}
|
|
187
|
-
}
|
|
188
|
-
@keyframes reactbgarrowdown2 {
|
|
189
|
-
0% {
|
|
190
|
-
color: var(--salt-differential-negative-foreground);
|
|
191
|
-
background-color: var(--salt-differential-negative-background);
|
|
192
|
-
}
|
|
193
|
-
20% {
|
|
194
|
-
color: var(--salt-differential-negative-foreground);
|
|
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/column-list/ColumnList.css */
|
|
240
|
-
.vuuColumnList {
|
|
241
|
-
--vuuList-borderStyle: none;
|
|
242
|
-
--vuuListItem-padding: 0;
|
|
243
|
-
width: 252px;
|
|
244
|
-
}
|
|
245
|
-
.vuuColumnListItem {
|
|
246
|
-
border-bottom: solid 1px var(--salt-separable-tertiary-borderColor);
|
|
247
|
-
padding: 0 6px 0 0;
|
|
248
|
-
}
|
|
249
|
-
.vuuColumnList-switch {
|
|
250
|
-
flex: 0 0 32px;
|
|
251
|
-
}
|
|
252
|
-
.vuuColumnList-text {
|
|
253
|
-
flex: 1 1 auto;
|
|
254
|
-
}
|
|
255
|
-
.vuuColumnList-checkBox {
|
|
256
|
-
flex: 0 0 20px;
|
|
257
|
-
}
|
|
258
|
-
.vuuColumnList-header {
|
|
259
|
-
border-top: solid 2px var(--vuu-color-gray-30);
|
|
260
|
-
font-size: 14px;
|
|
261
|
-
font-weight: 600;
|
|
262
|
-
padding-top: 24px;
|
|
263
|
-
}
|
|
264
|
-
.vuuColumnList-colHeadings {
|
|
265
|
-
border-bottom: solid 2px var(--vuu-color-gray-30);
|
|
266
|
-
color: var(--vuu-color-gray-50);
|
|
267
|
-
display: flex;
|
|
268
|
-
font-size: 10px;
|
|
269
|
-
justify-content: space-between;
|
|
270
|
-
margin-top: 16px;
|
|
271
|
-
padding-bottom: 8px;
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
/* src/column-expression-input/ColumnExpressionInput.css */
|
|
275
|
-
.vuuColumnExpressionInput {
|
|
276
|
-
--vuuFilterEditor-background: var(--salt-container-primary-background);
|
|
277
|
-
--vuuFilterEditor-color: var(--salt-text-primary-foreground);
|
|
278
|
-
--vuuFilterEditor-fontFamily: var(--salt-typography-fontFamily);
|
|
279
|
-
--vuuFilterEditor-fontSize: var(--salt-text-fontSize);
|
|
280
|
-
--vuuFilterEditor-cursorColor: var(--salt-text-secondary-foreground);
|
|
281
|
-
--vuuFilterEditor-selectionBackground: var(--salt-text-background-selected);
|
|
282
|
-
--vuuFilterEditor-tooltipBackground: var(--salt-container-primary-background);
|
|
283
|
-
--vuuFilterEditor-tooltipBorder: var(--tooltip-status-borderColor) var(--salt-container-borderWidth) var(--salt-container-borderStyle);
|
|
284
|
-
--vuuFilterEditor-tooltipElevation: var(--salt-overlayable-shadow-popout);
|
|
285
|
-
--vuuFilterEditor-suggestion-selectedBackground: var(--salt-selectable-background-selected);
|
|
286
|
-
--vuuFilterEditor-suggestion-selectedColor: var(--salt-text-primary-foreground);
|
|
287
|
-
--vuuFilterEditor-suggestion-detailColor: var(--salt-text-secondary-foreground-disabled);
|
|
288
|
-
--vuuFilterEditor-suggestion-height: 24px;
|
|
289
|
-
--vuuFilterEditor-variableColor: blue;
|
|
290
|
-
align-items: center;
|
|
291
|
-
box-sizing: border-box;
|
|
292
|
-
height: 30px;
|
|
293
|
-
}
|
|
294
|
-
.vuuColumnExpressionInput-FilterButton,
|
|
295
|
-
.vuuColumnExpressionInput-ClearButton {
|
|
296
|
-
--vuu-icon-size: 12px;
|
|
297
|
-
--saltButton-width: 28px;
|
|
298
|
-
}
|
|
299
|
-
.expression-type-container {
|
|
300
|
-
margin: 0 3px 0 auto;
|
|
301
|
-
color: var(--salt-text-secondary-foreground);
|
|
302
|
-
}
|
|
303
|
-
.expression-kind {
|
|
304
|
-
display: inline-block;
|
|
305
|
-
width: 50px;
|
|
306
|
-
}
|
|
307
|
-
.expression-type {
|
|
308
|
-
display: inline-block;
|
|
309
|
-
text-align: right;
|
|
310
|
-
width: 50px;
|
|
311
|
-
}
|
|
312
|
-
.vuuSuggestion {
|
|
313
|
-
display: flex;
|
|
314
|
-
align-items: center;
|
|
315
|
-
}
|
|
316
|
-
.vuuFunctionDoc .function-heading {
|
|
317
|
-
display: flex;
|
|
318
|
-
gap: 3px;
|
|
319
|
-
}
|
|
320
|
-
.vuuFunctionDoc .function-name {
|
|
321
|
-
font-style: italic;
|
|
322
|
-
}
|
|
323
|
-
.vuuFunctionDoc .param-list {
|
|
324
|
-
font-style: italic;
|
|
325
|
-
color: blue;
|
|
326
|
-
white-space: pre;
|
|
327
|
-
}
|
|
328
|
-
.vuuFunctionDoc .function-type {
|
|
329
|
-
margin-left: auto;
|
|
330
|
-
}
|
|
331
|
-
.vuuFunctionDoc .example-container {
|
|
332
|
-
background-color: var(--salt-container-secondary-background);
|
|
333
|
-
margin: 6px 0;
|
|
334
|
-
padding: 3px;
|
|
335
|
-
}
|
|
336
|
-
.vuuFunctionDoc .example-expression {
|
|
337
|
-
font-family: var(--salt-typography-fontFamily-code);
|
|
338
|
-
margin-left: 8px;
|
|
339
|
-
margin-top: 6px;
|
|
340
|
-
}
|
|
341
|
-
.vuuFunctionDoc .example-result {
|
|
342
|
-
margin-left: 8px;
|
|
343
|
-
margin-top: 6px;
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
/* src/datagrid-configuration-ui/column-type-panel/ColumnTypePanel.css */
|
|
347
|
-
.vuuColumnTypePanel {
|
|
348
|
-
--settings-panel-marginTop: 0px;
|
|
349
|
-
}
|
|
350
|
-
.vuuColumnTypePanel-renderer {
|
|
351
|
-
--saltButton-background: var(--salt-container-secondary-background);
|
|
352
|
-
--saltButton-background-hover: var(--salt-actionable-secondary-background-hover);
|
|
353
|
-
}
|
|
354
|
-
|
|
355
|
-
/* src/datagrid-configuration-ui/column-settings-panel/ColumnSettingsPanel.css */
|
|
356
|
-
.vuuColumnSettingsPanel {
|
|
357
|
-
--saltFormField-margin: 3px 0;
|
|
358
|
-
--saltFormField-label-width: 80px;
|
|
359
|
-
--saltPanel-padding: var(--salt-size-unit);
|
|
360
|
-
align-items: flex-start;
|
|
361
|
-
border-left: solid 1px var(--salt-container-primary-borderColor);
|
|
362
|
-
display: flex;
|
|
363
|
-
flex-direction: column;
|
|
364
|
-
flex-shrink: 0;
|
|
365
|
-
min-width: 220px;
|
|
366
|
-
padding-left: calc(var(--salt-size-unit) * 2);
|
|
367
|
-
width: var(--vuuColumnSettings-width, auto);
|
|
368
|
-
}
|
|
369
|
-
.vuuColumnSettingsPanel-columnTabs {
|
|
370
|
-
--saltFormField-margin: 0;
|
|
371
|
-
}
|
|
372
|
-
.vuuColumnSettingsPanel-columnTabs .saltFormField {
|
|
373
|
-
margin-left: 0 !important;
|
|
374
|
-
}
|
|
375
|
-
.vuuColumnSettingsPanel .saltPanel {
|
|
376
|
-
--saltFormField-margin: 3px 0;
|
|
377
|
-
margin-top: var(--settings-panel-marginTop, var(--salt-size-unit));
|
|
378
|
-
align-items: stretch;
|
|
379
|
-
display: flex;
|
|
380
|
-
flex-direction: column;
|
|
381
|
-
gap: var(--salt-size-unit);
|
|
382
|
-
}
|
|
383
|
-
.vuuColumnPanelSwitch {
|
|
384
|
-
white-space: nowrap;
|
|
385
|
-
width: 100%;
|
|
386
|
-
}
|
|
387
|
-
.vuuColumnSettingsPanel .saltSwitch {
|
|
388
|
-
margin-left: auto;
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
/* src/datagrid-configuration-ui/settings-panel/GridSettingsPanel.css */
|
|
392
|
-
.vuuGridSettingsPanel {
|
|
393
|
-
--saltFormField-label-width: 150px;
|
|
394
|
-
}
|
|
395
|
-
|
|
396
|
-
/* src/datagrid-configuration-ui/calculated-column-panel/CalculatedColumnPanel.css */
|
|
397
|
-
.vuuCalculatedColumnPanel {
|
|
398
|
-
display: flex;
|
|
399
|
-
flex-direction: column;
|
|
400
|
-
gap: var(--salt-size-unit);
|
|
401
|
-
}
|
|
402
|
-
|
|
403
|
-
/* src/datagrid-configuration-ui/settings-panel/DatagridSettingsPanel.css */
|
|
404
|
-
.vuuDialog-gridConfig {
|
|
405
|
-
}
|
|
406
|
-
.vuuDatagridSettingsPanel {
|
|
407
|
-
--svg-table-settings: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><rect height="3" width="5" x="1" y="10" /><rect height="3" width="5" x="1" y="6" /><rect height="3" width="10" x="7" y="10" /><rect height="3" width="10" x="7" y="6" /><path d="M6,17H1.5a.5.5,0,0,1-.5-.5V14H6Z" /><path d="M16.5,17H7V14H17v2.5A.5.5,0,0,1,16.5,17Z" /><path d="M16.5,1H1.5a.5.5,0,0,0-.5.5V5H17V1.5A.5.5,0,0,0,16.5,1Z" /></svg>');
|
|
408
|
-
--svg-column-chooser: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><path d="M16,1H10V17h6a1,1,0,0,0,1-1V2A1,1,0,0,0,16,1Z" /><path d="M8,1H2A1,1,0,0,0,1,2V16a1,1,0,0,0,1,1H8Z" /></svg>');
|
|
409
|
-
--svg-column-settings: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><path d="M5,17H1.5a.5.5,0,0,1-.5-.5V1.5A.5.5,0,0,1,1.5,1H5Z" /><path d="M8.71,15.4685a1.8065,1.8065,0,0,1-1.11-1.665v-.607a1.806,1.806,0,0,1,1.11-1.665,1.807,1.807,0,0,1,.3875-1.974l.459-.4595a1.792,1.792,0,0,1,1.276-.5285c.057,0,.1115.0115.167.0165V1H7V17H8.773A1.81349,1.81349,0,0,1,8.71,15.4685Z" /><path d="M13.1965,7.6h.607A1.8065,1.8065,0,0,1,15.468,8.7095,1.77249,1.77249,0,0,1,17,8.7815V1.5a.5.5,0,0,0-.5-.5H13V7.63A1.70987,1.70987,0,0,1,13.1965,7.6Z" /><path d="M17.5965,12.893H16.534a3.0709,3.0709,0,0,0-.45-1.0895l.7565-.7565a.3035.3035,0,0,0,0-.429l-.46-.46a.3035.3035,0,0,0-.429,0l-.7555.757a3.07263,3.07263,0,0,0-1.089-.45V9.4035A.3035.3035,0,0,0,13.8035,9.1h-.607a.3035.3035,0,0,0-.3035.3035V10.466a3.07263,3.07263,0,0,0-1.089.45l-.7565-.7565a.3035.3035,0,0,0-.429,0l-.46.46a.3035.3035,0,0,0,0,.429l.7565.7565a3.0709,3.0709,0,0,0-.45,1.0895H9.4035A.3035.3035,0,0,0,9.1,13.198v.607a.3035.3035,0,0,0,.3035.3035H10.466a3.0709,3.0709,0,0,0,.45,1.0895l-.7565.7565a.3035.3035,0,0,0,0,.429l.46.46a.3035.3035,0,0,0,.429,0l.7565-.7565a3.07263,3.07263,0,0,0,1.089.45v1.0625a.3035.3035,0,0,0,.3035.3035h.607a.3035.3035,0,0,0,.3035-.3035V16.534a3.07263,3.07263,0,0,0,1.089-.45l.7565.7565a.3035.3035,0,0,0,.429,0l.46-.46a.3035.3035,0,0,0,0-.429l-.7575-.7555a3.0709,3.0709,0,0,0,.45-1.0895h1.0625a.3035.3035,0,0,0,.3035-.3035v-.6065a.3035.3035,0,0,0-.3035-.3035ZM13.5,15.25a1.75,1.75,0,1,1,1.75-1.75A1.75,1.75,0,0,1,13.5,15.25Z" /></svg>');
|
|
410
|
-
--saltToolbar-background: transparent;
|
|
411
|
-
--vuuView-borderStyle: solid;
|
|
412
|
-
--vuuColumnPicker-width: 100%;
|
|
413
|
-
--vuuColumnSettings-width: 50%;
|
|
414
|
-
background-color: var(--salt-container-primary-background);
|
|
415
|
-
display: flex;
|
|
416
|
-
flex-direction: column;
|
|
417
|
-
height: 442px;
|
|
418
|
-
width: 520px;
|
|
419
|
-
}
|
|
420
|
-
[data-icon=column-chooser] {
|
|
421
|
-
--vuu-icon-svg: var(--svg-column-chooser);
|
|
422
|
-
}
|
|
423
|
-
[data-icon=column-settings] {
|
|
424
|
-
--vuu-icon-svg: var(--svg-column-settings);
|
|
425
|
-
}
|
|
426
|
-
[data-icon=table-settings] {
|
|
427
|
-
--vuu-icon-svg: var(--svg-table-settings);
|
|
428
|
-
}
|
|
429
|
-
[data-icon=define-column] {
|
|
430
|
-
--vuu-icon-svg: var(--svg-function);
|
|
431
|
-
}
|
|
432
|
-
.vuuDatagridSettingsPanel-header {
|
|
433
|
-
flex: 0 0 50px;
|
|
434
|
-
}
|
|
435
|
-
.vuuDatagridSettingsPanel-stack {
|
|
436
|
-
flex: 1;
|
|
437
|
-
gap: 24px;
|
|
438
|
-
overflow: hidden;
|
|
439
|
-
}
|
|
440
|
-
.vuuDatagridSettingsPanel-stack > .saltToolbar {
|
|
441
|
-
--saltToolbar-background: var(--salt-container-secondary-background);
|
|
442
|
-
--vuu-icon-color: var(--salt-text-secondary-foreground);
|
|
443
|
-
--vuu-icon-size: 18px;
|
|
444
|
-
--vuu-icon-height: 36px;
|
|
445
|
-
--vuu-icon-width: 36px;
|
|
446
|
-
border-bottom: none;
|
|
447
|
-
}
|
|
448
|
-
.vuuDatagridSettingsPanel-stack > .saltToolbar .saltTabstrip {
|
|
449
|
-
--tabs-activationIndicator-inset: 0px auto 0px 1px;
|
|
450
|
-
}
|
|
451
|
-
.vuuDatagridSettingsPanel-stack > .saltToolbar .saltTab[aria-selected=true],
|
|
452
|
-
.vuuDatagridSettingsPanel-stack > .saltToolbar .saltTab:hover {
|
|
453
|
-
--vuu-icon-color: var(--salt-text-primary-foreground);
|
|
454
|
-
}
|
|
455
|
-
.vuuDatagridSettingsPanel-stack > .saltToolbar {
|
|
456
|
-
--saltToolbar-background: var(--salt-container-secondary-background);
|
|
457
|
-
}
|
|
458
|
-
.vuuDatagridSettingsPanel-columnPanels {
|
|
459
|
-
display: flex;
|
|
460
|
-
flex-flow: nowrap;
|
|
461
|
-
gap: calc(var(--salt-size-unit) * 1);
|
|
462
|
-
margin: var(--salt-size-unit) 0;
|
|
463
|
-
overflow: hidden;
|
|
464
|
-
position: relative;
|
|
465
|
-
}
|
|
466
|
-
.vuuDatagridSettingsPanel-columnPanels > * {
|
|
467
|
-
transition: .3s transform ease-out;
|
|
468
|
-
transform: translate3d(0px, 0px, 0px);
|
|
469
|
-
}
|
|
470
|
-
.vuuDatagridSettingsPanel-columnPanels[data-align=right] > * {
|
|
471
|
-
transform: translate3d(-235px, 0px, 0px);
|
|
472
|
-
}
|
|
473
|
-
.vuuDatagridSettingsPanel-columnToolbar {
|
|
474
|
-
--saltButton-width: 60px;
|
|
475
|
-
}
|
|
476
|
-
.vuuDatagridSettingsPanel-columnToolbar > .Responsive-inner {
|
|
477
|
-
align-items: center;
|
|
478
|
-
}
|
|
479
|
-
.vuuDatagridSettingsPanel-buttonBar {
|
|
480
|
-
align-items: center;
|
|
481
|
-
border-top: solid 1px var(--salt-separable-primary-borderColor);
|
|
482
|
-
display: flex;
|
|
483
|
-
flex: 0 0 40px;
|
|
484
|
-
gap: var(--salt-size-unit);
|
|
485
|
-
justify-content: flex-end;
|
|
486
|
-
padding: 0 var(--salt-size-unit);
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
/* src/datasource-stats/DatasourceStats.css */
|
|
490
|
-
.vuuDatasourceStats {
|
|
491
|
-
display: flex;
|
|
492
|
-
gap: var(--salt-size-unit);
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
/* ../vuu-table/src/table/ColumnResizer.css */
|
|
496
|
-
.vuuColumnResizer {
|
|
497
|
-
background-color: var(--columnResizer-color);
|
|
498
|
-
cursor: col-resize;
|
|
499
|
-
height: var(--header-height);
|
|
500
|
-
position: relative;
|
|
501
|
-
width: 4px;
|
|
502
|
-
}
|
|
503
|
-
.vuuColumnResizer:hover {
|
|
504
|
-
--columnResizer-color: var(--salt-color-blue-500);
|
|
505
|
-
}
|
|
506
|
-
.vuuColumnResizer:after {
|
|
507
|
-
content: "";
|
|
508
|
-
position: absolute;
|
|
509
|
-
width: var(--columnResizer-width, 1px);
|
|
510
|
-
top: 0;
|
|
511
|
-
bottom: 0;
|
|
512
|
-
right: -1px;
|
|
513
|
-
background-color: var(--columnResizer-color, var(--salt-separable-tertiary-borderColor));
|
|
514
|
-
height: var(--columnResizer-height, calc(100% + 1px));
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
/* ../vuu-table/src/table/TableCell.css */
|
|
518
|
-
.vuuTable {
|
|
519
|
-
--cell-outline-width: 2px;
|
|
520
|
-
user-select: none;
|
|
521
|
-
}
|
|
522
|
-
[role=cell] {
|
|
523
|
-
display: inline-block;
|
|
524
|
-
}
|
|
525
|
-
[data-align=end] {
|
|
526
|
-
margin-left: auto;
|
|
527
|
-
}
|
|
528
|
-
[data-align=end] + [data-align=end] {
|
|
529
|
-
margin-left: 0;
|
|
530
|
-
}
|
|
531
|
-
.vuuTable-table [role=cell] {
|
|
532
|
-
--saltEditableLabel-height: 17px;
|
|
533
|
-
--saltInput-height: 17px;
|
|
534
|
-
--saltInput-minHeight: 17px;
|
|
535
|
-
border-right: 1px solid var(--vuuTableCell-border-rightColor);
|
|
536
|
-
border-bottom: 1px solid var(--vuuTableCell-border-bottomColor);
|
|
537
|
-
color: var(--salt-text-primary-foreground);
|
|
538
|
-
cursor: default;
|
|
539
|
-
height: var(--vuuTable-rowHeight);
|
|
540
|
-
line-height: calc(var(--vuuTable-rowHeight) - 1px);
|
|
541
|
-
overflow: hidden;
|
|
542
|
-
padding: 0 5px;
|
|
543
|
-
vertical-align: top;
|
|
544
|
-
}
|
|
545
|
-
.vuuTable-headerCell:focus,
|
|
546
|
-
.vuuTable [role=cell]:focus {
|
|
547
|
-
outline: var(--vuuTableCell-outline, dotted var(--salt-color-blue-400) var(--cell-outline-width));
|
|
548
|
-
outline-offset: calc(var(--cell-outline-width) * -1);
|
|
549
|
-
box-shadow: inset 0 0 0 var(--cell-outline-width) white;
|
|
550
|
-
border-bottom: none;
|
|
551
|
-
}
|
|
552
|
-
.vuuTable-headerCell:focus .vuuTable-headerCell-inner {
|
|
553
|
-
padding-bottom: var(--cell-outline-width);
|
|
554
|
-
}
|
|
555
|
-
.vuuTable-headerCell:not(.vuuTable-headerCell-resizing):focus .vuuTable-headerCell-inner {
|
|
556
|
-
--columnResizer-color: transparent;
|
|
557
|
-
}
|
|
558
|
-
.vuuTable [role=cell]:focus {
|
|
559
|
-
border-right: none;
|
|
560
|
-
padding-bottom: 1px;
|
|
561
|
-
}
|
|
562
|
-
[role=cell][data-editable=true] {
|
|
563
|
-
--salt-text-fontSize: 10px;
|
|
564
|
-
--vuu-icon-size: 5px;
|
|
565
|
-
position: relative;
|
|
566
|
-
}
|
|
567
|
-
[role=cell][data-editable=true]:after {
|
|
568
|
-
top: 0;
|
|
569
|
-
content: "";
|
|
570
|
-
background-color: var(--salt-text-secondary-foreground, black);
|
|
571
|
-
left: 0;
|
|
572
|
-
height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
|
|
573
|
-
-webkit-mask: var(--svg-corner-triangle) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
574
|
-
mask: var(--svg-corner-triangle) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
575
|
-
mask-repeat: no-repeat;
|
|
576
|
-
-webkit-mask-repeat: no-repeat;
|
|
577
|
-
position: absolute;
|
|
578
|
-
transform: rotate(180deg);
|
|
579
|
-
width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
|
|
580
|
-
}
|
|
581
|
-
[role=cell]:focus[data-editable],
|
|
582
|
-
[role=cell]:focus-within[data-editable],
|
|
583
|
-
[role=cell]:has(.saltEditableLabel-editing) {
|
|
584
|
-
outline: solid var(--salt-color-blue-400) 1px;
|
|
585
|
-
background-color: white;
|
|
586
|
-
outline-offset: -1px;
|
|
587
|
-
}
|
|
588
|
-
[role=cell]:focus[data-editable=true]:after,
|
|
589
|
-
[role=cell]:has(.saltEditableLabel):after {
|
|
590
|
-
background-color: var(--salt-color-blue-400);
|
|
591
|
-
left: 1px;
|
|
592
|
-
top: 1px;
|
|
593
|
-
}
|
|
594
|
-
.vuuAlignRight {
|
|
595
|
-
text-align: right;
|
|
596
|
-
}
|
|
597
|
-
|
|
598
|
-
/* ../vuu-table/src/table/TableGroupCell.css */
|
|
599
|
-
.vuuTableGroupCell {
|
|
600
|
-
--spacer-width: 20px;
|
|
601
|
-
--toggle-icon-transform: var(--row-toggle-icon-transform, none);
|
|
602
|
-
--vuu-icon-width: 18px;
|
|
603
|
-
align-items: center;
|
|
604
|
-
display: inline-flex;
|
|
605
|
-
}
|
|
606
|
-
.vuuTableGroupCell-spacer {
|
|
607
|
-
height: 100%;
|
|
608
|
-
position: relative;
|
|
609
|
-
width: var(--spacer-width);
|
|
610
|
-
}
|
|
611
|
-
.vuuTableGroupCell-spacer:after {
|
|
612
|
-
background: var(--salt-container-primary-borderColor);
|
|
613
|
-
content: "";
|
|
614
|
-
position: absolute;
|
|
615
|
-
top: 0;
|
|
616
|
-
bottom: -1px;
|
|
617
|
-
left: 9px;
|
|
618
|
-
width: 1px;
|
|
619
|
-
}
|
|
620
|
-
.vuuTableGroupCell-toggle {
|
|
621
|
-
transition: transform 0.25s;
|
|
622
|
-
transform: var(--toggle-icon-transform);
|
|
623
|
-
}
|
|
624
|
-
|
|
625
|
-
/* ../vuu-table/src/table/TableRow.css */
|
|
626
|
-
.vuuTableRow {
|
|
627
|
-
--row-background: var(--table-background);
|
|
628
|
-
position: absolute;
|
|
629
|
-
top: 0;
|
|
630
|
-
}
|
|
631
|
-
.vuuTableRow-even {
|
|
632
|
-
--row-background: var(--row-background-even);
|
|
633
|
-
}
|
|
634
|
-
.vuuTableRow {
|
|
635
|
-
background-color: var(--row-background);
|
|
636
|
-
}
|
|
637
|
-
.vuuTableRow-expanded {
|
|
638
|
-
--row-toggle-icon-transform: rotate(90deg);
|
|
639
|
-
}
|
|
640
|
-
.vuuTableRow[aria-selected] {
|
|
641
|
-
background-color: var(--vuuTableRow-selected-background, var(--salt-selectable-background-selected));
|
|
642
|
-
--vuuTableCell-border-bottomColor: var(--salt-selectable-borderColor-selected);
|
|
643
|
-
}
|
|
644
|
-
.vuuTableRow-preSelected {
|
|
645
|
-
--vuuTableCell-border-bottomColor: var(--salt-selectable-borderColor-selected);
|
|
646
|
-
}
|
|
647
|
-
|
|
648
|
-
/* ../vuu-table/src/table/TableGroupHeaderCell.css */
|
|
649
|
-
.salt-theme {
|
|
650
|
-
--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>');
|
|
651
|
-
}
|
|
652
|
-
.vuuTable-groupHeaderCell {
|
|
653
|
-
--cell-align: "flex-start";
|
|
654
|
-
text-align: left;
|
|
655
|
-
background: var(--dataTable-background);
|
|
656
|
-
cursor: default;
|
|
657
|
-
height: var(--vuuTableHeaderHeight);
|
|
658
|
-
}
|
|
659
|
-
.vuuTable-groupHeaderCell-inner {
|
|
660
|
-
align-items: center;
|
|
661
|
-
display: flex;
|
|
662
|
-
height: 100%;
|
|
663
|
-
padding-left: 1px;
|
|
664
|
-
}
|
|
665
|
-
.vuuTable-groupHeaderCell-label {
|
|
666
|
-
align-items: center;
|
|
667
|
-
display: flex;
|
|
668
|
-
flex: 0 0 auto;
|
|
669
|
-
}
|
|
670
|
-
.vuuTable-groupHeaderCell-col {
|
|
671
|
-
align-items: center;
|
|
672
|
-
background-color: inherit;
|
|
673
|
-
display: inline-flex;
|
|
674
|
-
flex: 0 1 auto;
|
|
675
|
-
height: calc(var(--vuuTableHeaderHeight) - 2px);
|
|
676
|
-
justify-content: space-between;
|
|
677
|
-
padding-right: 8px;
|
|
678
|
-
position: relative;
|
|
679
|
-
}
|
|
680
|
-
.vuuTable-groupHeaderCell-close {
|
|
681
|
-
--vuu-icon-height: 18px;
|
|
682
|
-
--vuu-icon-width: 18px;
|
|
683
|
-
cursor: pointer;
|
|
684
|
-
left: 3px;
|
|
685
|
-
}
|
|
686
|
-
.vuuTable-groupHeaderCell-col:nth-child(odd) {
|
|
687
|
-
background-color: var(--salt-color-gray-50);
|
|
688
|
-
}
|
|
689
|
-
.vuuTable-groupHeaderCell-col:nth-child(even) {
|
|
690
|
-
background-color: var(--salt-color-gray-40);
|
|
691
|
-
}
|
|
692
|
-
.vuuTable-groupHeaderCell-col:first-child {
|
|
693
|
-
clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
|
|
694
|
-
padding-left: 3px;
|
|
695
|
-
z-index: 1;
|
|
696
|
-
}
|
|
697
|
-
.vuuTable-groupHeaderCell-col:not(:first-child) {
|
|
698
|
-
margin-left: -6px;
|
|
699
|
-
padding-left: 12px;
|
|
700
|
-
clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%, 8px 50%);
|
|
701
|
-
}
|
|
702
|
-
.vuuTable-groupHeaderCell-resizing {
|
|
703
|
-
--columnResizer-color: var(--salt-color-blue-500);
|
|
704
|
-
--columnResizer-height: var(--table-height);
|
|
705
|
-
--columnResizer-width: 2px;
|
|
706
|
-
}
|
|
707
|
-
.vuuTable-groupHeaderCell-pending {
|
|
708
|
-
--pending-content: "";
|
|
709
|
-
}
|
|
710
|
-
.vuuTable-groupHeaderCell-col:has(+ .vuuColumnResizer):after {
|
|
711
|
-
content: var(--pending-content);
|
|
712
|
-
width: 24px;
|
|
713
|
-
height: 24px;
|
|
714
|
-
background-image: var(--svg-spinner);
|
|
715
|
-
background-repeat: no-repeat;
|
|
716
|
-
background-size: cover;
|
|
717
|
-
}
|
|
718
|
-
|
|
719
|
-
/* ../vuu-table/src/table/SortIndicator.css */
|
|
720
|
-
.vuuSortIndicator {
|
|
721
|
-
--menu-icon-size: 18px;
|
|
722
|
-
--menu-item-icon-color: black;
|
|
723
|
-
display: flex;
|
|
724
|
-
flex-direction: column;
|
|
725
|
-
position: relative;
|
|
726
|
-
width: 18px;
|
|
727
|
-
}
|
|
728
|
-
.vuuSortPosition {
|
|
729
|
-
font-size: 10px;
|
|
730
|
-
line-height: 10px;
|
|
731
|
-
text-align: center;
|
|
732
|
-
}
|
|
733
|
-
|
|
734
|
-
/* ../vuu-table/src/table/TableHeaderCell.css */
|
|
735
|
-
.vuuTable-heading:nth-child(2) {
|
|
736
|
-
--heading-top: calc(var(--header-height));
|
|
737
|
-
}
|
|
738
|
-
.vuuTable-heading:nth-child(3) {
|
|
739
|
-
--heading-top: calc(var(--header-height) * 2);
|
|
740
|
-
}
|
|
741
|
-
.vuuTable-heading:nth-child(3) {
|
|
742
|
-
--heading-top: calc(var(--header-height) * 3);
|
|
743
|
-
}
|
|
744
|
-
.vuuTable-headingCell {
|
|
745
|
-
background: var(--dataTable-background);
|
|
746
|
-
border-color: var(--salt-separable-tertiary-borderColor);
|
|
747
|
-
border-style: solid solid solid none;
|
|
748
|
-
border-width: 1px;
|
|
749
|
-
color: var(--salt-text-secondary-foreground);
|
|
750
|
-
display: inline-block;
|
|
751
|
-
height: var(--vuuTableHeaderHeight);
|
|
752
|
-
padding: 0 !important;
|
|
753
|
-
}
|
|
754
|
-
.vuuTable-heading:has(+ .vuuTable-heading) > .vuuTable-headingCell {
|
|
755
|
-
border-bottom-color: transparent;
|
|
756
|
-
}
|
|
757
|
-
[role=columnHeader] {
|
|
758
|
-
--vuuTableCell-border-bottomColor: var(--salt-separable-tertiary-borderColor);
|
|
759
|
-
--cell-align: "flex-start";
|
|
760
|
-
display: inline-block;
|
|
761
|
-
text-align: left;
|
|
762
|
-
background: var(--dataTable-background);
|
|
763
|
-
border-right: 1px solid var(--vuuTableCell-border-rightColor);
|
|
764
|
-
border-bottom: 1px solid var(--vuuTableCell-border-bottomColor);
|
|
765
|
-
color: var(--salt-text-secondary-foreground);
|
|
766
|
-
cursor: default;
|
|
767
|
-
height: var(--vuuTableHeaderHeight);
|
|
768
|
-
padding: 0 !important;
|
|
769
|
-
vertical-align: top;
|
|
770
|
-
}
|
|
771
|
-
.vuuTable-headerCell-right {
|
|
772
|
-
--cell-align: flex-end;
|
|
773
|
-
}
|
|
774
|
-
.vuuTable-headerCell-inner {
|
|
775
|
-
align-items: stretch;
|
|
776
|
-
display: flex;
|
|
777
|
-
height: 100%;
|
|
778
|
-
padding: 0 0 0 3px;
|
|
779
|
-
}
|
|
780
|
-
.vuuTable-headerCell-inner:has(.vuuFilterIndicator) {
|
|
781
|
-
padding-left: 0;
|
|
782
|
-
}
|
|
783
|
-
.vuuTable-headerCell-label {
|
|
784
|
-
align-items: center;
|
|
785
|
-
justify-content: var(--cell-align);
|
|
786
|
-
display: flex;
|
|
787
|
-
flex: 1 1 auto;
|
|
788
|
-
}
|
|
789
|
-
.vuuTable-headerCell-resizing {
|
|
790
|
-
--columnResizer-color: var(--salt-color-blue-500);
|
|
791
|
-
--columnResizer-height: var(--table-height);
|
|
792
|
-
--columnResizer-width: 2px;
|
|
793
|
-
}
|
|
794
|
-
[role=headerCell].vuuPinLeft.vuuEndPin:after {
|
|
795
|
-
box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.4);
|
|
796
|
-
content: "";
|
|
797
|
-
position: absolute;
|
|
798
|
-
width: 1px;
|
|
799
|
-
background-color: transparent;
|
|
800
|
-
height: var(--table-height);
|
|
801
|
-
top: 0;
|
|
802
|
-
right: 0px;
|
|
803
|
-
}
|
|
804
|
-
[role=headerCell].vuuPinRight.vuuEndPin:after {
|
|
805
|
-
box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.3);
|
|
806
|
-
content: "";
|
|
807
|
-
position: absolute;
|
|
808
|
-
width: 1px;
|
|
809
|
-
background-color: transparent;
|
|
810
|
-
height: var(--table-height);
|
|
811
|
-
top: 0;
|
|
812
|
-
left: 0px;
|
|
813
|
-
}
|
|
814
|
-
[role=headerCell]:is(.vuuPinLeft, .vuuPinRight, .vuuPinFloating) {
|
|
815
|
-
top: 0;
|
|
816
|
-
z-index: 20;
|
|
817
|
-
}
|
|
818
|
-
.saltDraggable-vuuTable-headerCell {
|
|
819
|
-
--dataTable-background: ivory;
|
|
820
|
-
--vuuTableHeaderHeight: 25px;
|
|
821
|
-
}
|
|
822
|
-
|
|
823
|
-
/* ../vuu-table/src/table/filter-indicator.css */
|
|
824
|
-
.vuuFilterIndicator {
|
|
825
|
-
--menu-icon-size: 12px;
|
|
826
|
-
--menu-item-icon-color: black;
|
|
827
|
-
align-items: center;
|
|
828
|
-
cursor: pointer;
|
|
829
|
-
display: flex;
|
|
830
|
-
flex: 0 0 18px;
|
|
831
|
-
flex-direction: column;
|
|
832
|
-
justify-content: center;
|
|
833
|
-
position: relative;
|
|
834
|
-
}
|
|
835
|
-
.vuuFilterIndicator + .vuuTable-headerCell-inner {
|
|
836
|
-
padding-left: 0;
|
|
837
|
-
}
|
|
838
|
-
|
|
839
|
-
/* ../vuu-table/src/table/RowBasedTable.css */
|
|
840
|
-
.vuuTable-table {
|
|
841
|
-
--vuuTable-rowHeight: var(--row-height);
|
|
842
|
-
--vuuTableCell-border-bottomColor: transparent;
|
|
843
|
-
--vuuTableCell-border-rightColor: var(--salt-separable-tertiary-borderColor);
|
|
844
|
-
border-collapse: separate;
|
|
845
|
-
border-spacing: 0;
|
|
846
|
-
border-left: 1px solid #ccc;
|
|
847
|
-
border: none;
|
|
848
|
-
font-size: var(--vuuTable-font-size, 10px);
|
|
849
|
-
margin: 0;
|
|
850
|
-
min-height: 100%;
|
|
851
|
-
width: var(--content-width);
|
|
852
|
-
}
|
|
853
|
-
.vuuTable-headers {
|
|
854
|
-
position: sticky;
|
|
855
|
-
top: 0;
|
|
856
|
-
z-index: 1;
|
|
857
|
-
}
|
|
858
|
-
.vuuTable-body {
|
|
859
|
-
height: var(--content-height);
|
|
860
|
-
position: relative;
|
|
861
|
-
}
|
|
862
|
-
|
|
863
|
-
/* ../vuu-table/src/table/Table.css */
|
|
864
|
-
.vuuTable {
|
|
865
|
-
--dataTable-background: var(--salt-container-primary-background, inherit);
|
|
866
|
-
--row-background-even: var(--dataTable-background);
|
|
867
|
-
--row-background-odd: var(--dataTable-background);
|
|
868
|
-
--table-background: var(--dataTable-background, none);
|
|
869
|
-
background-color: var(--dataTable-background);
|
|
870
|
-
position: relative;
|
|
871
|
-
}
|
|
872
|
-
.vuuTable-zebra {
|
|
873
|
-
--row-background-even: var(--salt-container-secondary-background);
|
|
874
|
-
}
|
|
875
|
-
.vuuTable-scrollbarContainer {
|
|
876
|
-
--scroll-content-width: calc(var(--content-width) - var(--pinned-width-left));
|
|
877
|
-
border-bottom: none !important;
|
|
878
|
-
border-top: none !important;
|
|
879
|
-
border-left: solid 1px var(--salt-container-primary-borderColor);
|
|
880
|
-
box-shadow: 0px -1px 0px 0px var(--salt-container-primary-borderColor);
|
|
881
|
-
height: var(--viewport-body-height);
|
|
882
|
-
left: var(--pinned-width-left);
|
|
883
|
-
overflow: auto;
|
|
884
|
-
position: absolute;
|
|
885
|
-
top: var(--total-header-height);
|
|
886
|
-
width: calc(var(--table-width) - var(--pinned-width-left) + 1px);
|
|
887
|
-
}
|
|
888
|
-
.vuuTable-scrollbarContent {
|
|
889
|
-
height: calc(var(--content-height) + var(--horizontal-scrollbar-height));
|
|
890
|
-
position: absolute;
|
|
891
|
-
width: var(--scroll-content-width, var(--content-width));
|
|
892
|
-
}
|
|
893
|
-
.vuuTable-contentContainer {
|
|
894
|
-
--vuuTableHeaderHeight: var(--header-height, 30px);
|
|
895
|
-
background-color: var(--salt-container-primary-background);
|
|
896
|
-
height: calc(var(--table-height) - var(--horizontal-scrollbar-height));
|
|
897
|
-
position: relative;
|
|
898
|
-
overflow: auto;
|
|
899
|
-
overscroll-behavior: none;
|
|
900
|
-
width: calc(var(--table-width) - var(--vertical-scrollbar-width));
|
|
901
|
-
}
|
|
902
|
-
.vuuTable-contentContainer::-webkit-scrollbar {
|
|
903
|
-
display: none;
|
|
904
|
-
}
|
|
905
|
-
:is(.vuuPinLeft, .vuuPinRight, .vuuPinFloating) {
|
|
906
|
-
background-color: inherit;
|
|
907
|
-
position: sticky;
|
|
908
|
-
z-index: 1;
|
|
909
|
-
}
|
|
910
|
-
.vuuTable-settings {
|
|
911
|
-
--saltButton-height: var(--header-height);
|
|
912
|
-
--saltButton-width: 15px;
|
|
913
|
-
position: absolute !important;
|
|
914
|
-
right: 0;
|
|
915
|
-
top: 0;
|
|
916
|
-
}
|
|
917
|
-
.vuuTable:has(.vuuTable-headerCell-resizing) * {
|
|
918
|
-
cursor: col-resize;
|
|
919
|
-
}
|
|
920
|
-
|
|
921
|
-
/* ../vuu-table/src/table/Table-loading.css */
|
|
922
|
-
.vuuTable-loading .vuuTable-table {
|
|
923
|
-
--skeleton-height: 20px;
|
|
924
|
-
--skeleton-width: calc(var(--content-width) - 8px);
|
|
925
|
-
--skeleton-left: 4px;
|
|
926
|
-
--skeleton-row-height: 16px;
|
|
927
|
-
--skeleton-size: var(--skeleton-width) var(--skeleton-height);
|
|
928
|
-
--skeleton-row: linear-gradient( var(--salt-color-gray-20-fade-background) var(--skeleton-row-height), transparent 0 );
|
|
929
|
-
--skeleton-background-image: var(--skeleton-row);
|
|
930
|
-
background-image: var(--skeleton-background-image);
|
|
931
|
-
background-repeat: repeat-y;
|
|
932
|
-
background-size: var(--skeleton-size);
|
|
933
|
-
background-position-x: var(--skeleton-left);
|
|
934
|
-
background-position-y: 27px;
|
|
935
|
-
}
|
|
936
|
-
.vuuTable-loading .vuuTable-table {
|
|
937
|
-
--skeleton-height: 20px;
|
|
938
|
-
--skeleton-width: calc(var(--content-width) - 8px);
|
|
939
|
-
--skeleton-left: 4px;
|
|
940
|
-
--skeleton-row-height: 16px;
|
|
941
|
-
--skeleton-size: var(--skeleton-width) var(--skeleton-height);
|
|
942
|
-
--skeleton-row: linear-gradient( var(--salt-color-gray-20-fade-background) var(--skeleton-row-height), transparent 0 );
|
|
943
|
-
--skeleton-background-image: var(--skeleton-row);
|
|
944
|
-
background-image: var(--skeleton-background-image);
|
|
945
|
-
background-repeat: repeat-y;
|
|
946
|
-
background-size: var(--skeleton-size);
|
|
947
|
-
background-position-x: var(--skeleton-left);
|
|
948
|
-
background-position-y: 27px;
|
|
949
|
-
}
|
|
950
|
-
.vuuTable-loading .vuuTable-table:after {
|
|
951
|
-
animation: shimmer 2s infinite;
|
|
952
|
-
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));
|
|
953
|
-
content: "";
|
|
954
|
-
height: var(--table-height);
|
|
955
|
-
left: 0px;
|
|
956
|
-
position: absolute;
|
|
957
|
-
transform: translateX(-100%);
|
|
958
|
-
top: var(--header-height);
|
|
959
|
-
width: var(--content-width);
|
|
960
|
-
}
|
|
961
|
-
@keyframes shimmer {
|
|
962
|
-
100% {
|
|
963
|
-
transform: translateX(100%);
|
|
964
|
-
}
|
|
965
|
-
}
|
|
966
|
-
|
|
967
|
-
/* ../vuu-table/src/table/cell-renderers/json-cell/JsonCell.css */
|
|
968
|
-
.vuuJsonCell-group {
|
|
969
|
-
align-items: center;
|
|
970
|
-
display: inline-flex;
|
|
971
|
-
height: calc(var(--vuuTable-rowHeight) - 1px);
|
|
972
|
-
width: 100%;
|
|
973
|
-
}
|
|
974
|
-
.vuuJsonCell-toggle {
|
|
975
|
-
--vuu-icon-color: var(--salt-text-primary-foreground);
|
|
976
|
-
--vuu-icon-height: calc(var(--vuuTable-rowHeight) - 1px);
|
|
977
|
-
--vuu-icon-width: 18px;
|
|
978
|
-
flex-shrink: 0;
|
|
979
|
-
margin-left: auto;
|
|
980
|
-
}
|
|
981
|
-
.vuuJsonCell-name {
|
|
982
|
-
font-weight: var(--salt-typography-fontWeight-semiBold);
|
|
983
|
-
}
|
|
984
|
-
.vuuJsonCell-value {
|
|
985
|
-
overflow: hidden;
|
|
986
|
-
text-overflow: ellipsis;
|
|
987
|
-
}
|
|
988
|
-
|
|
989
|
-
/* ../vuu-table/src/table-next/ColumnMenu.css */
|
|
990
|
-
.vuuMenuItem {
|
|
991
|
-
--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>');
|
|
992
|
-
}
|
|
993
|
-
.vuuTable-columnMenu {
|
|
994
|
-
--vuu-icon-color: #606477;
|
|
995
|
-
--vuu-icon-height: 20px;
|
|
996
|
-
--vuu-icon-left: 0px;
|
|
997
|
-
--vuu-icon-size: 16px;
|
|
998
|
-
--vuu-icon-top: 0px;
|
|
999
|
-
--vuu-icon-width: 20px;
|
|
1000
|
-
border-radius: 4px;
|
|
1001
|
-
cursor: pointer;
|
|
1002
|
-
display: inline-block;
|
|
1003
|
-
margin-top: 2px;
|
|
1004
|
-
padding: 2px;
|
|
1005
|
-
}
|
|
1006
|
-
.vuuTable-columnMenu:hover {
|
|
1007
|
-
--vuu-icon-color: #15171B;
|
|
1008
|
-
background-color: #F37880;
|
|
1009
|
-
}
|
|
1010
|
-
.vuuTable-columnMenu-open:hover,
|
|
1011
|
-
.vuuTable-columnMenu-open {
|
|
1012
|
-
background-color: #6D18BD;
|
|
1013
|
-
--vuu-icon-color: white;
|
|
1014
|
-
}
|
|
1015
|
-
[data-icon=cog] {
|
|
1016
|
-
--vuu-icon-svg: var(--vuu-svg-cog);
|
|
1017
|
-
--vuu-icon-size: 14px;
|
|
1018
|
-
}
|
|
1019
|
-
|
|
1020
|
-
/* ../vuu-table/src/table-next/column-resizing/ColumnResizer.css */
|
|
1021
|
-
.vuuColumnResizer {
|
|
1022
|
-
background-color: var(--columnResizer-color);
|
|
1023
|
-
cursor: col-resize;
|
|
1024
|
-
height: var(--header-height);
|
|
1025
|
-
position: relative;
|
|
1026
|
-
width: 4px;
|
|
1027
|
-
}
|
|
1028
|
-
.vuuColumnResizer:hover {
|
|
1029
|
-
--columnResizer-color: var(--salt-color-blue-500);
|
|
1030
|
-
}
|
|
1031
|
-
.vuuColumnResizer:after {
|
|
1032
|
-
content: "";
|
|
1033
|
-
position: absolute;
|
|
1034
|
-
width: var(--columnResizer-width, 1px);
|
|
1035
|
-
top: 0;
|
|
1036
|
-
bottom: 0;
|
|
1037
|
-
right: -1px;
|
|
1038
|
-
background-color: var(--columnResizer-color, var(--salt-separable-tertiary-borderColor));
|
|
1039
|
-
height: var(--columnResizer-height, calc(100% + 1px));
|
|
1040
|
-
}
|
|
1041
|
-
|
|
1042
|
-
/* ../vuu-table/src/table-next/HeaderCell.css */
|
|
1043
|
-
.vuuTableNext-col-header {
|
|
1044
|
-
border-bottom: 1px solid #ccc;
|
|
1045
|
-
box-sizing: border-box;
|
|
1046
|
-
cursor: default;
|
|
1047
|
-
display: inline-flex;
|
|
1048
|
-
gap: 3px;
|
|
1049
|
-
height: var(--header-height);
|
|
1050
|
-
vertical-align: top;
|
|
1051
|
-
}
|
|
1052
|
-
.vuuTableNext-col-header .vuuColumnResizer:hover {
|
|
1053
|
-
--columnResizer-color: var(--vuu-color-purple-10);
|
|
1054
|
-
}
|
|
1055
|
-
.vuuTableNext-col-header-label {
|
|
1056
|
-
line-height: calc(var(--header-height) - 1px);
|
|
1057
|
-
}
|
|
1058
|
-
.vuuTableNext-col-header.vuuPinLeft.vuuEndPin .vuuColumnResizer:before {
|
|
1059
|
-
--height: calc(var(--columnResizer-height) - 15px);
|
|
1060
|
-
--inset-r: calc(var(--pin-width) - 2px);
|
|
1061
|
-
--inset-b: calc(var(--height) - 2px);
|
|
1062
|
-
--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% );
|
|
1063
|
-
background-color: transparent;
|
|
1064
|
-
border-color: var(--vuu-color-gray-40);
|
|
1065
|
-
border-width: 1px;
|
|
1066
|
-
border-style: solid solid solid solid;
|
|
1067
|
-
border-radius: 4px;
|
|
1068
|
-
box-shadow: 2px 1px 4px 0px rgba(0, 0, 0, 0.10);
|
|
1069
|
-
clip-path: var(--clip-path);
|
|
1070
|
-
content: "";
|
|
1071
|
-
position: absolute;
|
|
1072
|
-
width: var(--pin-width);
|
|
1073
|
-
top: 0;
|
|
1074
|
-
bottom: 0;
|
|
1075
|
-
right: -1px;
|
|
1076
|
-
height: var(--height);
|
|
1077
|
-
z-index: -5;
|
|
1078
|
-
}
|
|
1079
|
-
.vuuTableNext-col-header.vuuPinRight.vuuEndPin .vuuColumnResizer:before {
|
|
1080
|
-
--height: calc(var(--columnResizer-height) - 15px);
|
|
1081
|
-
--inset-r: calc(var(--pin-width) - 2px);
|
|
1082
|
-
--inset-b: calc(var(--height) - 2px);
|
|
1083
|
-
--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% );
|
|
1084
|
-
background-color: transparent;
|
|
1085
|
-
border-color: #A9AAAD;
|
|
1086
|
-
border-width: 1px;
|
|
1087
|
-
border-style: solid solid solid solid;
|
|
1088
|
-
border-radius: 4px;
|
|
1089
|
-
box-shadow: -2px 1px 4px 0px rgba(0, 0, 0, 0.10);
|
|
1090
|
-
clip-path: var(--clip-path);
|
|
1091
|
-
content: "";
|
|
1092
|
-
position: absolute;
|
|
1093
|
-
width: var(--pin-width);
|
|
1094
|
-
top: 0;
|
|
1095
|
-
bottom: 0;
|
|
1096
|
-
right: 0px;
|
|
1097
|
-
height: var(--height);
|
|
1098
|
-
z-index: -5;
|
|
1099
|
-
}
|
|
1100
|
-
|
|
1101
|
-
/* ../vuu-table/src/table-next/Row.css */
|
|
1102
|
-
.vuuTableNextRow {
|
|
1103
|
-
background: #fff;
|
|
1104
|
-
border-bottom: 1px solid var(--salt-separable-tertiary-borderColor);
|
|
1105
|
-
box-sizing: border-box;
|
|
1106
|
-
height: var(--row-height);
|
|
1107
|
-
line-height: calc(var(--row-height) - 1px);
|
|
1108
|
-
position: absolute;
|
|
1109
|
-
top: 0;
|
|
1110
|
-
white-space: nowrap;
|
|
1111
|
-
}
|
|
1112
|
-
.vuuTableNextRow-selected,
|
|
1113
|
-
.vuuTableNextRow-selectedEnd {
|
|
1114
|
-
background-color: rgb(235, 235, 236);
|
|
1115
|
-
}
|
|
1116
|
-
.vuuTableNextRow-selectedStart {
|
|
1117
|
-
--vuu-selection-decorator-left-radius: 5px 0 0 0;
|
|
1118
|
-
--vuu-selection-decorator-right-radius: 0 5px 0 0;
|
|
1119
|
-
border-radius: 5px 5px 0 0;
|
|
1120
|
-
}
|
|
1121
|
-
.vuuTableNextRow-selectedEnd {
|
|
1122
|
-
--vuu-selection-decorator-left-radius: 0 0 0 5px;
|
|
1123
|
-
--vuu-selection-decorator-right-radius: 0 0 5px 0;
|
|
1124
|
-
border-radius: 0 0 5px 5px;
|
|
1125
|
-
}
|
|
1126
|
-
.vuuTableNextRow-selectedStart.vuuTableNexRow-selectedEnd {
|
|
1127
|
-
--vuu-selection-decorator-left-radius: 5px 0 0 5px;
|
|
1128
|
-
--vuu-selection-decorator-right-radius: 0 5px 5px 0;
|
|
1129
|
-
border-radius: 5px 5px 5px 5px;
|
|
1130
|
-
}
|
|
1131
|
-
.vuuTableNextRow-selectedStart:after {
|
|
1132
|
-
content: "";
|
|
1133
|
-
position: absolute;
|
|
1134
|
-
top: 0;
|
|
1135
|
-
left: 4px;
|
|
1136
|
-
height: 1px;
|
|
1137
|
-
background-color: var(--vuu-color-purple-10);
|
|
1138
|
-
width: calc(var(--content-width) - 8px);
|
|
1139
|
-
z-index: 1;
|
|
1140
|
-
}
|
|
1141
|
-
.vuuTableNextRow-selectedEnd {
|
|
1142
|
-
border-bottom-color: var(--vuu-color-purple-10);
|
|
1143
|
-
}
|
|
1144
|
-
.vuuTableNextRow-selectionDecorator {
|
|
1145
|
-
background-color: var(--vuu-selection-decorator-bg, inherit);
|
|
1146
|
-
display: inline-block;
|
|
1147
|
-
position: relative;
|
|
1148
|
-
height: var(--row-height);
|
|
1149
|
-
width: 4px;
|
|
1150
|
-
z-index: 2;
|
|
1151
|
-
}
|
|
1152
|
-
.vuuTableNextRow-selectionDecorator.vuuStickyLeft {
|
|
1153
|
-
left: 0;
|
|
1154
|
-
position: sticky;
|
|
1155
|
-
}
|
|
1156
|
-
.vuuTableNextRow-selectionDecorator.vuuStickyRight {
|
|
1157
|
-
right: 0;
|
|
1158
|
-
position: sticky;
|
|
1159
|
-
}
|
|
1160
|
-
.vuuTableNextRow-selected {
|
|
1161
|
-
--vuu-selection-decorator-bg: var(--vuu-color-purple-10);
|
|
1162
|
-
}
|
|
1163
|
-
.vuuTableNextRow-selectedStart {
|
|
1164
|
-
--vuu-selection-decorator-bg: white;
|
|
1165
|
-
}
|
|
1166
|
-
.vuuTableNextRow-selectedEnd {
|
|
1167
|
-
--vuu-selection-decorator-bg: white;
|
|
1168
|
-
}
|
|
1169
|
-
.vuuTableNextRow-selectedStart.vuuTableNextRow-selectedEnd {
|
|
1170
|
-
}
|
|
1171
|
-
.vuuTableNextRow-selectedStart .vuuTableNextRow-selectionDecorator:before,
|
|
1172
|
-
.vuuTableNextRow-selectedEnd .vuuTableNextRow-selectionDecorator:before {
|
|
1173
|
-
content: "";
|
|
1174
|
-
inset: 0;
|
|
1175
|
-
position: absolute;
|
|
1176
|
-
background-color: var(--vuu-color-purple-10);
|
|
1177
|
-
}
|
|
1178
|
-
.vuuTableNextRow-selectionDecorator.vuuStickyLeft:before {
|
|
1179
|
-
border-radius: var(--vuu-selection-decorator-left-radius, 0);
|
|
1180
|
-
}
|
|
1181
|
-
.vuuTableNextRow-selectionDecorator.vuuStickyRight:before {
|
|
1182
|
-
border-radius: var(--vuu-selection-decorator-right-radius, 0);
|
|
1183
|
-
}
|
|
1184
|
-
|
|
1185
|
-
/* ../vuu-table/src/table-next/TableNext.css */
|
|
1186
|
-
.vuuTableNext {
|
|
1187
|
-
--vuu-table-next-selection-bookend-width: 4px;
|
|
1188
|
-
--columnResizer-height: var(--table-height);
|
|
1189
|
-
--columnResizer-color: transparent;
|
|
1190
|
-
--table-background: var(--salt-container-primary-background);
|
|
1191
|
-
height: var(--table-css-height);
|
|
1192
|
-
background-color: red;
|
|
1193
|
-
position: relative;
|
|
1194
|
-
user-select: none;
|
|
1195
|
-
width: var(--table-css-width);
|
|
1196
|
-
}
|
|
1197
|
-
.vuuTableNext-scrollbarContainer {
|
|
1198
|
-
--scroll-content-width: 1100px;
|
|
1199
|
-
border-bottom: none !important;
|
|
1200
|
-
border-top: none !important;
|
|
1201
|
-
border-left: solid 1px var(--salt-container-primary-borderColor);
|
|
1202
|
-
box-shadow: 0px -1px 0px 0px var(--salt-container-primary-borderColor);
|
|
1203
|
-
height: var(--viewport-body-height);
|
|
1204
|
-
left: 0px;
|
|
1205
|
-
overflow: auto;
|
|
1206
|
-
position: absolute;
|
|
1207
|
-
top: var(--total-header-height);
|
|
1208
|
-
width: var(--table-width);
|
|
1209
|
-
}
|
|
1210
|
-
.vuuTableNext-scrollbarContent {
|
|
1211
|
-
height: calc(var(--content-height) + var(--horizontal-scrollbar-height));
|
|
1212
|
-
position: absolute;
|
|
1213
|
-
width: var(--content-width);
|
|
1214
|
-
}
|
|
1215
|
-
.vuuTableNext-contentContainer {
|
|
1216
|
-
background-color: var(--salt-container-primary-background);
|
|
1217
|
-
height: calc(var(--table-height) - var(--horizontal-scrollbar-height));
|
|
1218
|
-
position: relative;
|
|
1219
|
-
overflow: auto;
|
|
1220
|
-
overscroll-behavior: none;
|
|
1221
|
-
width: calc(var(--table-width) - var(--vertical-scrollbar-width));
|
|
1222
|
-
}
|
|
1223
|
-
.vuuTableNext-contentContainer::-webkit-scrollbar {
|
|
1224
|
-
display: none;
|
|
1225
|
-
}
|
|
1226
|
-
.vuuTableNext-table {
|
|
1227
|
-
position: absolute;
|
|
1228
|
-
top: 0;
|
|
1229
|
-
left: 0;
|
|
1230
|
-
table-layout: fixed;
|
|
1231
|
-
width: var(--content-width);
|
|
1232
|
-
margin: 0;
|
|
1233
|
-
border: none;
|
|
1234
|
-
background-color: #fff;
|
|
1235
|
-
border-collapse: separate;
|
|
1236
|
-
border-spacing: 0;
|
|
1237
|
-
}
|
|
1238
|
-
.vuuTableNext-body {
|
|
1239
|
-
height: var(--content-height);
|
|
1240
|
-
}
|
|
1241
|
-
.vuuTableNextCell {
|
|
1242
|
-
display: inline-block;
|
|
1243
|
-
padding: 0 8px;
|
|
1244
|
-
vertical-align: top;
|
|
1245
|
-
}
|
|
1246
|
-
.vuuPinLeft,
|
|
1247
|
-
.vuuPinRight {
|
|
1248
|
-
background-color: inherit;
|
|
1249
|
-
position: sticky;
|
|
1250
|
-
z-index: 1;
|
|
1251
|
-
}
|
|
1252
|
-
.vuuTableNext-col-headings {
|
|
1253
|
-
background-color: white;
|
|
1254
|
-
padding: 0 var(--vuu-table-next-selection-bookend-width, 0);
|
|
1255
|
-
position: sticky;
|
|
1256
|
-
top: 0;
|
|
1257
|
-
z-index: 1;
|
|
1258
|
-
}
|
|
1259
|
-
.vuuTableNext-col-headers {
|
|
1260
|
-
background-color: var(--table-background);
|
|
1261
|
-
white-space: nowrap;
|
|
1262
|
-
}
|
|
1263
|
-
.sizer-cell {
|
|
1264
|
-
background-color: green !important;
|
|
1265
|
-
border: none !important;
|
|
1266
|
-
height: 0px;
|
|
1267
|
-
}
|
|
1268
|
-
|
|
1269
|
-
/* src/table-settings/TableSettingsPanel.css */
|
|
1270
|
-
.vuuTableSettingsPanel {
|
|
1271
|
-
--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>');
|
|
1272
|
-
--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>');
|
|
1273
|
-
--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>');
|
|
1274
|
-
display: flex;
|
|
1275
|
-
flex-direction: column;
|
|
1276
|
-
gap: 24px;
|
|
1277
|
-
height: 100%;
|
|
1278
|
-
padding-top: 24px;
|
|
1279
|
-
}
|
|
1280
|
-
.vuuTableSettingsPanel [data-icon=text-strikethrough] {
|
|
1281
|
-
--vuu-icon-svg: var(--vuu-svg-text-strikethrough);
|
|
1282
|
-
}
|
|
1283
|
-
.vuuTableSettingsPanel [data-icon=text-Tt] {
|
|
1284
|
-
--vuu-icon-svg: var(--vuu-svg-text-Tt);
|
|
1285
|
-
}
|
|
1286
|
-
.vuuTableSettingsPanel [data-icon=text-T] {
|
|
1287
|
-
--vuu-icon-svg: var(--vuu-svg-text-T);
|
|
1288
|
-
}
|
|
1
|
+
.vuuTable td:has(> .vuuBackgroundCell){padding:0;text-align:right}.vuuBackgroundCell{padding-right:var(--salt-size-unit);position:relative;z-index:-1}.vuuBackgroundCell-flasher{color:transparent;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}.up1>.vuuBackgroundCell-flasher{animation-duration:30s;animation-name:reactbgup1}.up2>.vuuBackgroundCell-flasher{animation-duration:30s;animation-name:reactbgup2}.down1>.vuuBackgroundCell-flasher{animation-duration:30s;animation-name:reactbgdown1}.down2>.vuuBackgroundCell-flasher{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(--salt-differential-positive-background)}to{background-color:transparent}}@keyframes reactbgup2{0%{background-color:var(--salt-differential-positive-background)}to{background-color:transparent}}@keyframes reactbgdown1{0%{background-color:var(--salt-differential-negative-background)}to{background-color:transparent}}@keyframes reactbgdown2{0%{background-color:var(--salt-differential-negative-background)}to{background-color:transparent}}@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(--salt-differential-positive-background)}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(--salt-differential-positive-background)}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(--salt-differential-negative-background)}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(--salt-differential-negative-background)}20%{color:var(--salt-differential-negative-foreground);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}.vuuColumnList{--vuuList-borderStyle: none;--vuuListItem-padding: 0;width:252px}.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-checkBox{flex:0 0 20px}.vuuColumnList-header{border-top:solid 2px var(--vuu-color-gray-30);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;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: blue;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}.vuuColumnTypePanel{--settings-panel-marginTop: 0px}.vuuColumnTypePanel-renderer{--saltButton-background: var(--salt-container-secondary-background);--saltButton-background-hover: var(--salt-actionable-secondary-background-hover)}.vuuColumnSettingsPanel{--saltFormField-margin: 3px 0;--saltFormField-label-width: 80px;--saltPanel-padding: var(--salt-size-unit);align-items:flex-start;border-left:solid 1px var(--salt-container-primary-borderColor);display:flex;flex-direction:column;flex-shrink:0;min-width:220px;padding-left:calc(var(--salt-size-unit) * 2);width:var(--vuuColumnSettings-width, auto)}.vuuColumnSettingsPanel-columnTabs{--saltFormField-margin: 0}.vuuColumnSettingsPanel-columnTabs .saltFormField{margin-left:0!important}.vuuColumnSettingsPanel .saltPanel{--saltFormField-margin: 3px 0;margin-top:var(--settings-panel-marginTop, var(--salt-size-unit));align-items:stretch;display:flex;flex-direction:column;gap:var(--salt-size-unit)}.vuuColumnPanelSwitch{white-space:nowrap;width:100%}.vuuColumnSettingsPanel .saltSwitch{margin-left:auto}.vuuGridSettingsPanel{--saltFormField-label-width: 150px}.vuuCalculatedColumnPanel{display:flex;flex-direction:column;gap:var(--salt-size-unit)}.vuuDatagridSettingsPanel{--svg-table-settings: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><rect height="3" width="5" x="1" y="10" /><rect height="3" width="5" x="1" y="6" /><rect height="3" width="10" x="7" y="10" /><rect height="3" width="10" x="7" y="6" /><path d="M6,17H1.5a.5.5,0,0,1-.5-.5V14H6Z" /><path d="M16.5,17H7V14H17v2.5A.5.5,0,0,1,16.5,17Z" /><path d="M16.5,1H1.5a.5.5,0,0,0-.5.5V5H17V1.5A.5.5,0,0,0,16.5,1Z" /></svg>');--svg-column-chooser: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><path d="M16,1H10V17h6a1,1,0,0,0,1-1V2A1,1,0,0,0,16,1Z" /><path d="M8,1H2A1,1,0,0,0,1,2V16a1,1,0,0,0,1,1H8Z" /></svg>');--svg-column-settings: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><path d="M5,17H1.5a.5.5,0,0,1-.5-.5V1.5A.5.5,0,0,1,1.5,1H5Z" /><path d="M8.71,15.4685a1.8065,1.8065,0,0,1-1.11-1.665v-.607a1.806,1.806,0,0,1,1.11-1.665,1.807,1.807,0,0,1,.3875-1.974l.459-.4595a1.792,1.792,0,0,1,1.276-.5285c.057,0,.1115.0115.167.0165V1H7V17H8.773A1.81349,1.81349,0,0,1,8.71,15.4685Z" /><path d="M13.1965,7.6h.607A1.8065,1.8065,0,0,1,15.468,8.7095,1.77249,1.77249,0,0,1,17,8.7815V1.5a.5.5,0,0,0-.5-.5H13V7.63A1.70987,1.70987,0,0,1,13.1965,7.6Z" /><path d="M17.5965,12.893H16.534a3.0709,3.0709,0,0,0-.45-1.0895l.7565-.7565a.3035.3035,0,0,0,0-.429l-.46-.46a.3035.3035,0,0,0-.429,0l-.7555.757a3.07263,3.07263,0,0,0-1.089-.45V9.4035A.3035.3035,0,0,0,13.8035,9.1h-.607a.3035.3035,0,0,0-.3035.3035V10.466a3.07263,3.07263,0,0,0-1.089.45l-.7565-.7565a.3035.3035,0,0,0-.429,0l-.46.46a.3035.3035,0,0,0,0,.429l.7565.7565a3.0709,3.0709,0,0,0-.45,1.0895H9.4035A.3035.3035,0,0,0,9.1,13.198v.607a.3035.3035,0,0,0,.3035.3035H10.466a3.0709,3.0709,0,0,0,.45,1.0895l-.7565.7565a.3035.3035,0,0,0,0,.429l.46.46a.3035.3035,0,0,0,.429,0l.7565-.7565a3.07263,3.07263,0,0,0,1.089.45v1.0625a.3035.3035,0,0,0,.3035.3035h.607a.3035.3035,0,0,0,.3035-.3035V16.534a3.07263,3.07263,0,0,0,1.089-.45l.7565.7565a.3035.3035,0,0,0,.429,0l.46-.46a.3035.3035,0,0,0,0-.429l-.7575-.7555a3.0709,3.0709,0,0,0,.45-1.0895h1.0625a.3035.3035,0,0,0,.3035-.3035v-.6065a.3035.3035,0,0,0-.3035-.3035ZM13.5,15.25a1.75,1.75,0,1,1,1.75-1.75A1.75,1.75,0,0,1,13.5,15.25Z" /></svg>');--saltToolbar-background: transparent;--vuuView-borderStyle: solid;--vuuColumnPicker-width: 100%;--vuuColumnSettings-width: 50%;background-color:var(--salt-container-primary-background);display:flex;flex-direction:column;height:442px;width:520px}[data-icon=column-chooser]{--vuu-icon-svg: var(--svg-column-chooser)}[data-icon=column-settings]{--vuu-icon-svg: var(--svg-column-settings)}[data-icon=table-settings]{--vuu-icon-svg: var(--svg-table-settings)}[data-icon=define-column]{--vuu-icon-svg: var(--svg-function)}.vuuDatagridSettingsPanel-header{flex:0 0 50px}.vuuDatagridSettingsPanel-stack{flex:1;gap:24px;overflow:hidden}.vuuDatagridSettingsPanel-stack>.saltToolbar{--saltToolbar-background: var(--salt-container-secondary-background);--vuu-icon-color: var(--salt-text-secondary-foreground);--vuu-icon-size: 18px;--vuu-icon-height: 36px;--vuu-icon-width: 36px;border-bottom:none}.vuuDatagridSettingsPanel-stack>.saltToolbar .saltTabstrip{--tabs-activationIndicator-inset: 0px auto 0px 1px}.vuuDatagridSettingsPanel-stack>.saltToolbar .saltTab[aria-selected=true],.vuuDatagridSettingsPanel-stack>.saltToolbar .saltTab:hover{--vuu-icon-color: var(--salt-text-primary-foreground)}.vuuDatagridSettingsPanel-stack>.saltToolbar{--saltToolbar-background: var(--salt-container-secondary-background)}.vuuDatagridSettingsPanel-columnPanels{display:flex;flex-flow:nowrap;gap:calc(var(--salt-size-unit) * 1);margin:var(--salt-size-unit) 0;overflow:hidden;position:relative}.vuuDatagridSettingsPanel-columnPanels>*{transition:.3s transform ease-out;transform:translateZ(0)}.vuuDatagridSettingsPanel-columnPanels[data-align=right]>*{transform:translate3d(-235px,0,0)}.vuuDatagridSettingsPanel-columnToolbar{--saltButton-width: 60px}.vuuDatagridSettingsPanel-columnToolbar>.Responsive-inner{align-items:center}.vuuDatagridSettingsPanel-buttonBar{align-items:center;border-top:solid 1px var(--salt-separable-primary-borderColor);display:flex;flex:0 0 40px;gap:var(--salt-size-unit);justify-content:flex-end;padding:0 var(--salt-size-unit)}.vuuDatasourceStats{display:flex;gap:var(--salt-size-unit)}.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}.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;margin-top:2px;padding:2px}.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}.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))}.vuuTableNext-col-header{border-bottom:1px solid #ccc;box-sizing:border-box;cursor:default;display:inline-flex;gap:3px;height:var(--header-height);vertical-align:top}.vuuTableNext-col-header .vuuColumnResizer:hover{--columnResizer-color: var(--vuu-color-purple-10)}.vuuTableNext-col-header-label{line-height:calc(var(--header-height) - 1px)}.vuuTableNext-col-header.vuuPinLeft.vuuEndPin .vuuColumnResizer:before{--height: calc(var(--columnResizer-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}.vuuTableNext-col-header.vuuPinRight.vuuEndPin .vuuColumnResizer:before{--height: calc(var(--columnResizer-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}.vuuTableNextRow{background:#fff;border-bottom:1px solid var(--salt-separable-tertiary-borderColor);box-sizing:border-box;height:var(--row-height);line-height:calc(var(--row-height) - 1px);position:absolute;top:0;white-space:nowrap}.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.vuuTableNexRow-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)}.vuuTableNext{--vuu-table-next-selection-bookend-width: 4px;--columnResizer-height: var(--table-height);--columnResizer-color: transparent;--table-background: var(--salt-container-primary-background);height:var(--table-css-height);background-color:red;position:relative;user-select:none;width:var(--table-css-width)}.vuuTableNext-scrollbarContainer{--scroll-content-width: 1100px;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:0px;overflow:auto;position:absolute;top:var(--total-header-height);width:var(--table-width)}.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)}.vuuTableNextCell{display:inline-block;padding:0 8px;vertical-align:top}.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}.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>');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)}
|
|
1289
2
|
/*# sourceMappingURL=index.css.map */
|