@overmap-ai/blocks 1.0.27-custom-table-component.2 → 1.0.27-custom-table-component.4
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/dist/Pagination/index.d.ts +3 -0
- package/dist/blocks.js +3422 -3418
- package/dist/blocks.js.map +1 -1
- package/dist/blocks.umd.cjs +3412 -3408
- package/dist/blocks.umd.cjs.map +1 -1
- package/dist/index.d.ts +29 -28
- package/dist/style.css +351 -351
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -8,6 +8,52 @@
|
|
|
8
8
|
|
|
9
9
|
._radius_curjh_9 {
|
|
10
10
|
border-radius: max(var(--radius-full), var(--radius-4));
|
|
11
|
+
}._BaseMenuItem_5r3et_1 {
|
|
12
|
+
font-size: var(--font-size-2);
|
|
13
|
+
}
|
|
14
|
+
._BaseMenuItem_5r3et_1:after {
|
|
15
|
+
content: "";
|
|
16
|
+
position: absolute;
|
|
17
|
+
inset: 0;
|
|
18
|
+
background-color: transparent;
|
|
19
|
+
border-radius: var(--radius-2);
|
|
20
|
+
}
|
|
21
|
+
._BaseMenuItem_5r3et_1[data-highlighted]:after {
|
|
22
|
+
background-color: var(--accent-a5);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
._RemoveOutline_5r3et_15 {
|
|
26
|
+
outline: none;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
._BaseMenuSeparator_5r3et_19 {
|
|
30
|
+
margin: 0 calc(-1 * var(--base-menu-content-padding));
|
|
31
|
+
align-self: center;
|
|
32
|
+
}
|
|
33
|
+
._BaseMenuSeparator_5r3et_19 > div {
|
|
34
|
+
border-bottom: 1px solid var(--gray-a4);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
._BaseMenuInput_5r3et_27 {
|
|
38
|
+
width: 100%;
|
|
39
|
+
}._merged_wdgxo_1 > .rt-BaseButton:not(:first-of-type):not(:last-of-type) {
|
|
40
|
+
border-radius: 0;
|
|
41
|
+
}
|
|
42
|
+
._merged_wdgxo_1[data-direction=column] > .rt-BaseButton:first-of-type {
|
|
43
|
+
border-bottom-right-radius: 0;
|
|
44
|
+
border-bottom-left-radius: 0;
|
|
45
|
+
}
|
|
46
|
+
._merged_wdgxo_1[data-direction=column] > .rt-BaseButton:last-of-type {
|
|
47
|
+
border-top-left-radius: 0;
|
|
48
|
+
border-top-right-radius: 0;
|
|
49
|
+
}
|
|
50
|
+
._merged_wdgxo_1[data-direction=row] > .rt-BaseButton:first-of-type {
|
|
51
|
+
border-top-right-radius: 0;
|
|
52
|
+
border-bottom-right-radius: 0;
|
|
53
|
+
}
|
|
54
|
+
._merged_wdgxo_1[data-direction=row] > .rt-BaseButton:last-of-type {
|
|
55
|
+
border-top-left-radius: 0;
|
|
56
|
+
border-bottom-left-radius: 0;
|
|
11
57
|
}._fluid_r73gr_1 {
|
|
12
58
|
flex-grow: 1;
|
|
13
59
|
width: auto;
|
|
@@ -65,115 +111,131 @@
|
|
|
65
111
|
border: 2px solid white;
|
|
66
112
|
border-bottom: 2px solid transparent;
|
|
67
113
|
animation: _spin_isifr_9 1s linear infinite;
|
|
68
|
-
}.
|
|
69
|
-
border-
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
border-bottom-right-radius: 0;
|
|
73
|
-
border-bottom-left-radius: 0;
|
|
114
|
+
}._separators_1f7v1_1 > *:not(:last-of-type) {
|
|
115
|
+
border-bottom: 1px solid var(--gray-a6);
|
|
116
|
+
}button {
|
|
117
|
+
all: unset;
|
|
74
118
|
}
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
119
|
+
|
|
120
|
+
._checkbox_yl8iy_5 {
|
|
121
|
+
background-color: var(--color-panel-solid);
|
|
122
|
+
width: 15px;
|
|
123
|
+
height: 15px;
|
|
124
|
+
border-radius: 4px;
|
|
125
|
+
display: flex;
|
|
126
|
+
align-items: center;
|
|
127
|
+
justify-content: center;
|
|
128
|
+
background-color: var(--color-surface);
|
|
129
|
+
box-shadow: inset 0 0 0 1px var(--gray-a7);
|
|
130
|
+
cursor: var(--cursor-checkbox);
|
|
78
131
|
}
|
|
79
|
-
.
|
|
80
|
-
|
|
81
|
-
|
|
132
|
+
._checkbox_yl8iy_5 [data-state=checked], ._checkbox_yl8iy_5 [data-state=indeterminate] {
|
|
133
|
+
background-color: var(--accent-9);
|
|
134
|
+
color: var(--accent-9-contrast);
|
|
82
135
|
}
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
136
|
+
|
|
137
|
+
._checkboxIndicator_yl8iy_22 {
|
|
138
|
+
display: flex;
|
|
139
|
+
align-items: center;
|
|
140
|
+
justify-content: center;
|
|
141
|
+
justify-items: center;
|
|
142
|
+
height: 100%;
|
|
143
|
+
width: 100%;
|
|
144
|
+
border-radius: 4px;
|
|
145
|
+
padding-right: 0.5px;
|
|
91
146
|
}
|
|
92
147
|
|
|
93
|
-
.
|
|
94
|
-
|
|
95
|
-
inset: 0;
|
|
96
|
-
}._BaseMenuItem_5r3et_1 {
|
|
97
|
-
font-size: var(--font-size-2);
|
|
148
|
+
._checkboxLabel_yl8iy_33 {
|
|
149
|
+
padding-left: 0.5rem;
|
|
98
150
|
}
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
151
|
+
|
|
152
|
+
._noTextHighlight_yl8iy_37 {
|
|
153
|
+
-webkit-touch-callout: none;
|
|
154
|
+
-webkit-user-select: none;
|
|
155
|
+
-khtml-user-select: none;
|
|
156
|
+
-moz-user-select: none;
|
|
157
|
+
-ms-user-select: none;
|
|
158
|
+
user-select: none;
|
|
105
159
|
}
|
|
106
|
-
|
|
107
|
-
|
|
160
|
+
|
|
161
|
+
._checkboxHidden_yl8iy_46 {
|
|
162
|
+
visibility: hidden;
|
|
163
|
+
}._editableTextContainer_174g6_1 {
|
|
164
|
+
align-items: center;
|
|
108
165
|
}
|
|
109
166
|
|
|
110
|
-
.
|
|
167
|
+
._editableTextText_174g6_5 div {
|
|
111
168
|
outline: none;
|
|
169
|
+
box-shadow: none;
|
|
170
|
+
border: none;
|
|
171
|
+
background: transparent;
|
|
112
172
|
}
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
margin: 0 calc(-1 * var(--base-menu-content-padding));
|
|
116
|
-
align-self: center;
|
|
173
|
+
._editableTextText_174g6_5 input {
|
|
174
|
+
font-size: var(--font-size-3);
|
|
117
175
|
}
|
|
118
|
-
.
|
|
119
|
-
|
|
176
|
+
._editableTextText_174g6_5 .rt-TextFieldInput:where(:disabled, :read-only) {
|
|
177
|
+
color: unset;
|
|
178
|
+
-webkit-text-fill-color: unset;
|
|
120
179
|
}
|
|
121
180
|
|
|
122
|
-
.
|
|
123
|
-
|
|
124
|
-
}._fluid_7n1wr_1 {
|
|
125
|
-
flex-grow: 1;
|
|
126
|
-
width: auto;
|
|
127
|
-
}._default_u936h_1 {
|
|
128
|
-
cursor: var(--cursor-switch);
|
|
181
|
+
._editableTextInput_174g6_19 input {
|
|
182
|
+
font-size: var(--font-size-3);
|
|
129
183
|
}
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
184
|
+
|
|
185
|
+
._iconHidden_174g6_23 {
|
|
186
|
+
visibility: hidden;
|
|
187
|
+
}._OverlayContent_1nr9w_1 {
|
|
188
|
+
position: fixed;
|
|
189
|
+
inset: 0;
|
|
134
190
|
}
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
}._sidebarContent_1onyo_1 {
|
|
142
|
-
position: absolute;
|
|
143
|
-
overflow: hidden;
|
|
144
|
-
top: 0;
|
|
145
|
-
bottom: 0;
|
|
191
|
+
|
|
192
|
+
._OverlayOverlay_1nr9w_6 {
|
|
193
|
+
position: fixed;
|
|
194
|
+
inset: 0;
|
|
195
|
+
}._accommodateCharCount_1octa_1 {
|
|
196
|
+
margin-bottom: var(--line-height-1);
|
|
146
197
|
}
|
|
147
|
-
|
|
148
|
-
|
|
198
|
+
|
|
199
|
+
._wrapper_1octa_5 {
|
|
200
|
+
height: min-content;
|
|
201
|
+
flex-grow: 1;
|
|
149
202
|
}
|
|
150
|
-
|
|
151
|
-
|
|
203
|
+
|
|
204
|
+
._default_1octa_10 {
|
|
205
|
+
width: 100%;
|
|
152
206
|
}
|
|
153
|
-
|
|
154
|
-
|
|
207
|
+
|
|
208
|
+
._noLeftIcon_1octa_14 {
|
|
209
|
+
padding-left: 0.25rem;
|
|
155
210
|
}
|
|
156
|
-
|
|
157
|
-
|
|
211
|
+
|
|
212
|
+
._noRightIcon_1octa_18 {
|
|
213
|
+
padding-right: 0.25rem;
|
|
158
214
|
}
|
|
159
215
|
|
|
160
|
-
.
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
flex-direction: column;
|
|
164
|
-
align-items: center;
|
|
165
|
-
justify-content: center;
|
|
166
|
-
opacity: 0;
|
|
167
|
-
transition: opacity 200ms linear;
|
|
216
|
+
._ghost_1octa_22 input {
|
|
217
|
+
text-indent: 0;
|
|
218
|
+
padding: 0;
|
|
168
219
|
}
|
|
169
|
-
.
|
|
170
|
-
|
|
220
|
+
._ghost_1octa_22 input:not(._noLeftIcon_1octa_14) {
|
|
221
|
+
padding-left: 0.25rem;
|
|
222
|
+
}
|
|
223
|
+
._ghost_1octa_22 input:not(._noRightIcon_1octa_18) {
|
|
224
|
+
padding-right: 0.25rem;
|
|
225
|
+
}
|
|
226
|
+
._ghost_1octa_22 div {
|
|
227
|
+
padding: 0;
|
|
228
|
+
outline: none;
|
|
229
|
+
box-shadow: none;
|
|
230
|
+
border: none;
|
|
231
|
+
background: transparent;
|
|
171
232
|
}
|
|
172
233
|
|
|
173
|
-
.
|
|
234
|
+
._charCount_1octa_40 {
|
|
174
235
|
position: absolute;
|
|
175
|
-
|
|
176
|
-
|
|
236
|
+
right: 0;
|
|
237
|
+
top: 98%;
|
|
238
|
+
font-size: xx-small !important;
|
|
177
239
|
}/** CSSTransition Classes for Right SlideOut */
|
|
178
240
|
._EnterRight_1jwyv_2 {
|
|
179
241
|
margin-right: calc(-1 * var(--slide-out-width));
|
|
@@ -232,130 +294,26 @@
|
|
|
232
294
|
._Overlay_1jwyv_56 {
|
|
233
295
|
position: absolute;
|
|
234
296
|
inset: 0;
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
|
|
297
|
+
}._wrapper_1ssf2_1 {
|
|
298
|
+
position: relative;
|
|
299
|
+
overflow: hidden;
|
|
238
300
|
}
|
|
239
301
|
|
|
240
|
-
.
|
|
241
|
-
|
|
242
|
-
|
|
302
|
+
._panelContent_1ssf2_6 {
|
|
303
|
+
border: 0;
|
|
304
|
+
flex-shrink: 0;
|
|
305
|
+
min-width: 0;
|
|
306
|
+
overflow: hidden;
|
|
307
|
+
transition-property: transform, margin-right, margin-left;
|
|
308
|
+
box-shadow: var(--shadow-2);
|
|
243
309
|
}
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
margin-right:
|
|
310
|
+
._panelContent_1ssf2_6._left_1ssf2_14 {
|
|
311
|
+
transform: translateX(-100%);
|
|
312
|
+
margin-right: auto;
|
|
247
313
|
}
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
margin-
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
._ExitActiveRight_1jwyv_19 {
|
|
254
|
-
transition: margin-right 200ms linear;
|
|
255
|
-
margin-right: calc(-1 * var(--slide-out-width));
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
._ExitDoneRight_1jwyv_24 {
|
|
259
|
-
margin-right: calc(-1 * var(--slide-out-width));
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
/** CSSTransition Classes for Left SlideOut */
|
|
263
|
-
._EnterLeft_1jwyv_29 {
|
|
264
|
-
margin-left: calc(-1 * var(--slide-out-width));
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
._EnterActiveLeft_1jwyv_33 {
|
|
268
|
-
transition: margin-left 200ms linear;
|
|
269
|
-
margin-left: 0;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
._EnterDoneLeft_1jwyv_38 {
|
|
273
|
-
margin-left: 0;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
._ExitLeft_1jwyv_42 {
|
|
277
|
-
margin-left: 0;
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
._ExitActiveLeft_1jwyv_46 {
|
|
281
|
-
transition: margin-left 200ms linear;
|
|
282
|
-
margin-left: calc(-1 * var(--slide-out-width));
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
._ExitDoneLeft_1jwyv_51 {
|
|
286
|
-
margin-left: calc(-1 * var(--slide-out-width));
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
/** Other Classes */
|
|
290
|
-
._Overlay_1jwyv_56 {
|
|
291
|
-
position: absolute;
|
|
292
|
-
inset: 0;
|
|
293
|
-
}._accommodateCharCount_1octa_1 {
|
|
294
|
-
margin-bottom: var(--line-height-1);
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
._wrapper_1octa_5 {
|
|
298
|
-
height: min-content;
|
|
299
|
-
flex-grow: 1;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
._default_1octa_10 {
|
|
303
|
-
width: 100%;
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
._noLeftIcon_1octa_14 {
|
|
307
|
-
padding-left: 0.25rem;
|
|
308
|
-
}
|
|
309
|
-
|
|
310
|
-
._noRightIcon_1octa_18 {
|
|
311
|
-
padding-right: 0.25rem;
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
._ghost_1octa_22 input {
|
|
315
|
-
text-indent: 0;
|
|
316
|
-
padding: 0;
|
|
317
|
-
}
|
|
318
|
-
._ghost_1octa_22 input:not(._noLeftIcon_1octa_14) {
|
|
319
|
-
padding-left: 0.25rem;
|
|
320
|
-
}
|
|
321
|
-
._ghost_1octa_22 input:not(._noRightIcon_1octa_18) {
|
|
322
|
-
padding-right: 0.25rem;
|
|
323
|
-
}
|
|
324
|
-
._ghost_1octa_22 div {
|
|
325
|
-
padding: 0;
|
|
326
|
-
outline: none;
|
|
327
|
-
box-shadow: none;
|
|
328
|
-
border: none;
|
|
329
|
-
background: transparent;
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
._charCount_1octa_40 {
|
|
333
|
-
position: absolute;
|
|
334
|
-
right: 0;
|
|
335
|
-
top: 98%;
|
|
336
|
-
font-size: xx-small !important;
|
|
337
|
-
}._wrapper_tmtz0_1 {
|
|
338
|
-
height: max-content;
|
|
339
|
-
}._wrapper_1ssf2_1 {
|
|
340
|
-
position: relative;
|
|
341
|
-
overflow: hidden;
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
._panelContent_1ssf2_6 {
|
|
345
|
-
border: 0;
|
|
346
|
-
flex-shrink: 0;
|
|
347
|
-
min-width: 0;
|
|
348
|
-
overflow: hidden;
|
|
349
|
-
transition-property: transform, margin-right, margin-left;
|
|
350
|
-
box-shadow: var(--shadow-2);
|
|
351
|
-
}
|
|
352
|
-
._panelContent_1ssf2_6._left_1ssf2_14 {
|
|
353
|
-
transform: translateX(-100%);
|
|
354
|
-
margin-right: auto;
|
|
355
|
-
}
|
|
356
|
-
._panelContent_1ssf2_6._right_1ssf2_18 {
|
|
357
|
-
transform: translateX(100%);
|
|
358
|
-
margin-left: auto;
|
|
314
|
+
._panelContent_1ssf2_6._right_1ssf2_18 {
|
|
315
|
+
transform: translateX(100%);
|
|
316
|
+
margin-left: auto;
|
|
359
317
|
}
|
|
360
318
|
|
|
361
319
|
._resizable_1ssf2_23 {
|
|
@@ -389,6 +347,8 @@
|
|
|
389
347
|
flex-shrink: 1;
|
|
390
348
|
min-width: 0;
|
|
391
349
|
width: max-content;
|
|
350
|
+
}._wrapper_tmtz0_1 {
|
|
351
|
+
height: max-content;
|
|
392
352
|
}._multiPagePopover_16xvh_1 {
|
|
393
353
|
display: flex;
|
|
394
354
|
flex-direction: column;
|
|
@@ -424,6 +384,167 @@
|
|
|
424
384
|
}
|
|
425
385
|
._optionsButton_16xvh_21:hover {
|
|
426
386
|
background-color: rgba(0, 0, 0, 0.1) !important;
|
|
387
|
+
}._noWrap_1wpa5_1 {
|
|
388
|
+
white-space: nowrap;
|
|
389
|
+
overflow: hidden;
|
|
390
|
+
text-overflow: ellipsis;
|
|
391
|
+
display: block;
|
|
392
|
+
}._fluid_7n1wr_1 {
|
|
393
|
+
flex-grow: 1;
|
|
394
|
+
width: auto;
|
|
395
|
+
}._light_1u8fs_1 span {
|
|
396
|
+
color: var(--gray-a3);
|
|
397
|
+
}
|
|
398
|
+
._light_1u8fs_1 [role=separator] {
|
|
399
|
+
background-color: var(--gray-a3);
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
._bold_1u8fs_8 span {
|
|
403
|
+
color: var(--gray-a9);
|
|
404
|
+
}
|
|
405
|
+
._bold_1u8fs_8 [role=separator] {
|
|
406
|
+
background-color: var(--gray-a9);
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
._full_1u8fs_15 span {
|
|
410
|
+
color: var(--gray-a12);
|
|
411
|
+
}
|
|
412
|
+
._full_1u8fs_15 [role=separator] {
|
|
413
|
+
background-color: var(--gray-a12);
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
._Text_1u8fs_22 {
|
|
417
|
+
color: var(--gray-a6);
|
|
418
|
+
}._sidebarContent_1onyo_1 {
|
|
419
|
+
position: absolute;
|
|
420
|
+
overflow: hidden;
|
|
421
|
+
top: 0;
|
|
422
|
+
bottom: 0;
|
|
423
|
+
}
|
|
424
|
+
._sidebarContent_1onyo_1._right_1onyo_7 {
|
|
425
|
+
right: 0;
|
|
426
|
+
}
|
|
427
|
+
._sidebarContent_1onyo_1._right_1onyo_7 ._resizeHandle_1onyo_10 {
|
|
428
|
+
left: 3px !important;
|
|
429
|
+
}
|
|
430
|
+
._sidebarContent_1onyo_1._left_1onyo_13 {
|
|
431
|
+
left: 0;
|
|
432
|
+
}
|
|
433
|
+
._sidebarContent_1onyo_1._left_1onyo_13 ._resizeHandle_1onyo_10 {
|
|
434
|
+
right: 3px !important;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
._resizeHandle_1onyo_10 {
|
|
438
|
+
position: absolute;
|
|
439
|
+
display: flex;
|
|
440
|
+
flex-direction: column;
|
|
441
|
+
align-items: center;
|
|
442
|
+
justify-content: center;
|
|
443
|
+
opacity: 0;
|
|
444
|
+
transition: opacity 200ms linear;
|
|
445
|
+
}
|
|
446
|
+
._resizeHandle_1onyo_10:hover, ._resizeHandle_1onyo_10:active, ._resizeHandle_1onyo_10:focus {
|
|
447
|
+
opacity: 1;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
._overlay_1onyo_33 {
|
|
451
|
+
position: absolute;
|
|
452
|
+
inset: 0;
|
|
453
|
+
background-color: var(--color-overlay);
|
|
454
|
+
}/** CSSTransition Classes for Right SlideOut */
|
|
455
|
+
._EnterRight_1jwyv_2 {
|
|
456
|
+
margin-right: calc(-1 * var(--slide-out-width));
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
._EnterActiveRight_1jwyv_6 {
|
|
460
|
+
transition: margin-right 200ms linear;
|
|
461
|
+
margin-right: 0;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
._EnterDoneRight_1jwyv_11 {
|
|
465
|
+
margin-right: 0;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
._ExitRight_1jwyv_15 {
|
|
469
|
+
margin-right: 0;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
._ExitActiveRight_1jwyv_19 {
|
|
473
|
+
transition: margin-right 200ms linear;
|
|
474
|
+
margin-right: calc(-1 * var(--slide-out-width));
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
._ExitDoneRight_1jwyv_24 {
|
|
478
|
+
margin-right: calc(-1 * var(--slide-out-width));
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
/** CSSTransition Classes for Left SlideOut */
|
|
482
|
+
._EnterLeft_1jwyv_29 {
|
|
483
|
+
margin-left: calc(-1 * var(--slide-out-width));
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
._EnterActiveLeft_1jwyv_33 {
|
|
487
|
+
transition: margin-left 200ms linear;
|
|
488
|
+
margin-left: 0;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
._EnterDoneLeft_1jwyv_38 {
|
|
492
|
+
margin-left: 0;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
._ExitLeft_1jwyv_42 {
|
|
496
|
+
margin-left: 0;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
._ExitActiveLeft_1jwyv_46 {
|
|
500
|
+
transition: margin-left 200ms linear;
|
|
501
|
+
margin-left: calc(-1 * var(--slide-out-width));
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
._ExitDoneLeft_1jwyv_51 {
|
|
505
|
+
margin-left: calc(-1 * var(--slide-out-width));
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
/** Other Classes */
|
|
509
|
+
._Overlay_1jwyv_56 {
|
|
510
|
+
position: absolute;
|
|
511
|
+
inset: 0;
|
|
512
|
+
}._default_u936h_1 {
|
|
513
|
+
cursor: var(--cursor-switch);
|
|
514
|
+
}
|
|
515
|
+
._default_u936h_1 span {
|
|
516
|
+
display: flex;
|
|
517
|
+
align-items: center;
|
|
518
|
+
justify-content: center;
|
|
519
|
+
}
|
|
520
|
+
._default_u936h_1 svg {
|
|
521
|
+
pointer-events: none;
|
|
522
|
+
cursor: inherit;
|
|
523
|
+
display: flex;
|
|
524
|
+
justify-content: center;
|
|
525
|
+
align-items: center;
|
|
526
|
+
}._sortIconButton_1eqvr_1 {
|
|
527
|
+
width: 14px;
|
|
528
|
+
height: 100%;
|
|
529
|
+
background-color: unset;
|
|
530
|
+
border: unset;
|
|
531
|
+
padding: unset;
|
|
532
|
+
margin: unset;
|
|
533
|
+
cursor: pointer;
|
|
534
|
+
position: relative;
|
|
535
|
+
display: flex;
|
|
536
|
+
align-items: center;
|
|
537
|
+
}
|
|
538
|
+
._sortIconButton_1eqvr_1 > svg {
|
|
539
|
+
margin: 0 auto;
|
|
540
|
+
display: block;
|
|
541
|
+
}
|
|
542
|
+
._sortIconButton_1eqvr_1:disabled {
|
|
543
|
+
visibility: hidden;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
._tableRoot_1eqvr_21 {
|
|
547
|
+
margin: 0;
|
|
427
548
|
}._charCount_1lz28_1 {
|
|
428
549
|
font-size: x-small;
|
|
429
550
|
}
|
|
@@ -435,9 +556,23 @@
|
|
|
435
556
|
outline: none;
|
|
436
557
|
box-shadow: none;
|
|
437
558
|
background-color: transparent;
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
|
|
559
|
+
}/*
|
|
560
|
+
Doubling up on the radix-themes class to increase specificity over the default.
|
|
561
|
+
Note: the class name must be "radix-themes" for nested themes to work.
|
|
562
|
+
|
|
563
|
+
See documentation at https://www.radix-ui.com/themes/docs/theme/token-reference
|
|
564
|
+
*/
|
|
565
|
+
.radix-themes.radix-themes {
|
|
566
|
+
--cursor-button: pointer;
|
|
567
|
+
--cursor-menu-item: pointer;
|
|
568
|
+
--cursor-checkbox: pointer;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.rt-BaseButton {
|
|
572
|
+
/* fix the cursor token only being applied to HTML buttons */
|
|
573
|
+
cursor: var(--cursor-button);
|
|
574
|
+
}
|
|
575
|
+
._ToastViewport_1i6bp_1 {
|
|
441
576
|
--viewport-padding: var(--space-5);
|
|
442
577
|
position: fixed;
|
|
443
578
|
top: 0;
|
|
@@ -494,17 +629,6 @@
|
|
|
494
629
|
to {
|
|
495
630
|
transform: translateX(calc(100% + var(--viewport-padding)));
|
|
496
631
|
}
|
|
497
|
-
}._default_1odpt_1 {
|
|
498
|
-
background-color: var(--color-panel-solid);
|
|
499
|
-
box-shadow: var(--shadow-2);
|
|
500
|
-
height: max-content;
|
|
501
|
-
width: max-content;
|
|
502
|
-
}
|
|
503
|
-
._default_1odpt_1 p {
|
|
504
|
-
color: var(--gray-12) !important;
|
|
505
|
-
}
|
|
506
|
-
._default_1odpt_1 span {
|
|
507
|
-
display: none;
|
|
508
632
|
}._ToggleButton_13aus_1[data-state=on][data-variant=solid] {
|
|
509
633
|
outline: 2px solid var(--color-focus-root);
|
|
510
634
|
outline-offset: 2px;
|
|
@@ -518,141 +642,17 @@
|
|
|
518
642
|
}
|
|
519
643
|
._ToggleButton_13aus_1[data-state=on][data-variant=ghost] {
|
|
520
644
|
background-color: var(--accent-a5);
|
|
521
|
-
}.
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
text-overflow: ellipsis;
|
|
525
|
-
display: block;
|
|
526
|
-
}/*
|
|
527
|
-
Doubling up on the radix-themes class to increase specificity over the default.
|
|
528
|
-
Note: the class name must be "radix-themes" for nested themes to work.
|
|
529
|
-
|
|
530
|
-
See documentation at https://www.radix-ui.com/themes/docs/theme/token-reference
|
|
531
|
-
*/
|
|
532
|
-
.radix-themes.radix-themes {
|
|
533
|
-
--cursor-button: pointer;
|
|
534
|
-
--cursor-menu-item: pointer;
|
|
535
|
-
--cursor-checkbox: pointer;
|
|
536
|
-
}
|
|
537
|
-
|
|
538
|
-
.rt-BaseButton {
|
|
539
|
-
/* fix the cursor token only being applied to HTML buttons */
|
|
540
|
-
cursor: var(--cursor-button);
|
|
541
|
-
}
|
|
542
|
-
._light_1u8fs_1 span {
|
|
543
|
-
color: var(--gray-a3);
|
|
544
|
-
}
|
|
545
|
-
._light_1u8fs_1 [role=separator] {
|
|
546
|
-
background-color: var(--gray-a3);
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
._bold_1u8fs_8 span {
|
|
550
|
-
color: var(--gray-a9);
|
|
551
|
-
}
|
|
552
|
-
._bold_1u8fs_8 [role=separator] {
|
|
553
|
-
background-color: var(--gray-a9);
|
|
554
|
-
}
|
|
555
|
-
|
|
556
|
-
._full_1u8fs_15 span {
|
|
557
|
-
color: var(--gray-a12);
|
|
558
|
-
}
|
|
559
|
-
._full_1u8fs_15 [role=separator] {
|
|
560
|
-
background-color: var(--gray-a12);
|
|
561
|
-
}
|
|
562
|
-
|
|
563
|
-
._Text_1u8fs_22 {
|
|
564
|
-
color: var(--gray-a6);
|
|
565
|
-
}button {
|
|
566
|
-
all: unset;
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
._checkbox_yl8iy_5 {
|
|
645
|
+
}._default_xqvoc_1 {
|
|
646
|
+
min-width: max-content;
|
|
647
|
+
}._default_1odpt_1 {
|
|
570
648
|
background-color: var(--color-panel-solid);
|
|
571
|
-
|
|
572
|
-
height:
|
|
573
|
-
|
|
574
|
-
display: flex;
|
|
575
|
-
align-items: center;
|
|
576
|
-
justify-content: center;
|
|
577
|
-
background-color: var(--color-surface);
|
|
578
|
-
box-shadow: inset 0 0 0 1px var(--gray-a7);
|
|
579
|
-
cursor: var(--cursor-checkbox);
|
|
580
|
-
}
|
|
581
|
-
._checkbox_yl8iy_5 [data-state=checked], ._checkbox_yl8iy_5 [data-state=indeterminate] {
|
|
582
|
-
background-color: var(--accent-9);
|
|
583
|
-
color: var(--accent-9-contrast);
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
._checkboxIndicator_yl8iy_22 {
|
|
587
|
-
display: flex;
|
|
588
|
-
align-items: center;
|
|
589
|
-
justify-content: center;
|
|
590
|
-
justify-items: center;
|
|
591
|
-
height: 100%;
|
|
592
|
-
width: 100%;
|
|
593
|
-
border-radius: 4px;
|
|
594
|
-
padding-right: 0.5px;
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
._checkboxLabel_yl8iy_33 {
|
|
598
|
-
padding-left: 0.5rem;
|
|
599
|
-
}
|
|
600
|
-
|
|
601
|
-
._noTextHighlight_yl8iy_37 {
|
|
602
|
-
-webkit-touch-callout: none;
|
|
603
|
-
-webkit-user-select: none;
|
|
604
|
-
-khtml-user-select: none;
|
|
605
|
-
-moz-user-select: none;
|
|
606
|
-
-ms-user-select: none;
|
|
607
|
-
user-select: none;
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
._checkboxHidden_yl8iy_46 {
|
|
611
|
-
visibility: hidden;
|
|
612
|
-
}._sortIconButton_1eqvr_1 {
|
|
613
|
-
width: 14px;
|
|
614
|
-
height: 100%;
|
|
615
|
-
background-color: unset;
|
|
616
|
-
border: unset;
|
|
617
|
-
padding: unset;
|
|
618
|
-
margin: unset;
|
|
619
|
-
cursor: pointer;
|
|
620
|
-
position: relative;
|
|
621
|
-
display: flex;
|
|
622
|
-
align-items: center;
|
|
623
|
-
}
|
|
624
|
-
._sortIconButton_1eqvr_1 > svg {
|
|
625
|
-
margin: 0 auto;
|
|
626
|
-
display: block;
|
|
627
|
-
}
|
|
628
|
-
._sortIconButton_1eqvr_1:disabled {
|
|
629
|
-
visibility: hidden;
|
|
630
|
-
}
|
|
631
|
-
|
|
632
|
-
._tableRoot_1eqvr_21 {
|
|
633
|
-
margin: 0;
|
|
634
|
-
}._editableTextContainer_174g6_1 {
|
|
635
|
-
align-items: center;
|
|
636
|
-
}
|
|
637
|
-
|
|
638
|
-
._editableTextText_174g6_5 div {
|
|
639
|
-
outline: none;
|
|
640
|
-
box-shadow: none;
|
|
641
|
-
border: none;
|
|
642
|
-
background: transparent;
|
|
643
|
-
}
|
|
644
|
-
._editableTextText_174g6_5 input {
|
|
645
|
-
font-size: var(--font-size-3);
|
|
646
|
-
}
|
|
647
|
-
._editableTextText_174g6_5 .rt-TextFieldInput:where(:disabled, :read-only) {
|
|
648
|
-
color: unset;
|
|
649
|
-
-webkit-text-fill-color: unset;
|
|
649
|
+
box-shadow: var(--shadow-2);
|
|
650
|
+
height: max-content;
|
|
651
|
+
width: max-content;
|
|
650
652
|
}
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
font-size: var(--font-size-3);
|
|
653
|
+
._default_1odpt_1 p {
|
|
654
|
+
color: var(--gray-12) !important;
|
|
654
655
|
}
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
visibility: hidden;
|
|
656
|
+
._default_1odpt_1 span {
|
|
657
|
+
display: none;
|
|
658
658
|
}
|