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