@vuu-ui/vuu-table-extras 0.8.22-debug → 0.8.23-debug
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/index.js +441 -3882
- package/cjs/index.js.map +4 -4
- package/esm/index.js +366 -3895
- package/esm/index.js.map +4 -4
- package/index.css +0 -590
- package/index.css.map +3 -3
- package/package.json +12 -11
package/index.css
CHANGED
|
@@ -1,593 +1,3 @@
|
|
|
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
1
|
/* src/cell-renderers/background-cell/BackgroundCell.css */
|
|
592
2
|
.vuuBackgroundCell {
|
|
593
3
|
--background-animation-duration: 10s;
|