@scouterna/ui-react 0.0.6 → 0.1.3
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/README.md +1 -1
- package/dist/components/button/button.d.ts +5 -12
- package/dist/components/button/button.js +41 -15
- package/dist/components/button/button.js.map +1 -1
- package/dist/components/callout/callout.d.ts +10 -0
- package/dist/components/callout/callout.js +54 -0
- package/dist/components/callout/callout.js.map +1 -0
- package/dist/components/card/card.d.ts +8 -0
- package/dist/components/card/card.js +32 -0
- package/dist/components/card/card.js.map +1 -0
- package/dist/components/checkbox/checkbox.d.ts +3 -2
- package/dist/components/checkbox/checkbox.js +7 -9
- package/dist/components/checkbox/checkbox.js.map +1 -1
- package/dist/components/field/field.d.ts +13 -0
- package/dist/components/field/field.js +17 -0
- package/dist/components/field/field.js.map +1 -0
- package/dist/components/input/input.d.ts +3 -6
- package/dist/components/input/input.js +18 -19
- package/dist/components/input/input.js.map +1 -1
- package/dist/components/menu/menu.d.ts +13 -0
- package/dist/components/menu/menu.js +79 -0
- package/dist/components/menu/menu.js.map +1 -0
- package/dist/components/select/select.d.ts +7 -17
- package/dist/components/select/select.js +11 -21
- package/dist/components/select/select.js.map +1 -1
- package/dist/components/table/table-test.d.ts +2 -0
- package/dist/components/table/table-test.js +46 -0
- package/dist/components/table/table-test.js.map +1 -0
- package/dist/components/table/table.d.ts +11 -0
- package/dist/components/table/table.js +75 -0
- package/dist/components/table/table.js.map +1 -0
- package/dist/index.d.ts +5 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/style.css +382 -26
- package/package.json +15 -16
- package/dist/components/form-field/form-field.d.ts +0 -16
- package/dist/components/form-field/form-field.js +0 -16
- package/dist/components/form-field/form-field.js.map +0 -1
package/dist/style.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! tailwindcss v4.1.
|
|
1
|
+
/*! tailwindcss v4.1.11 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
4
|
@layer theme {
|
|
@@ -16,6 +16,8 @@
|
|
|
16
16
|
--radius-sm: 0.25rem;
|
|
17
17
|
--radius-md: 0.375rem;
|
|
18
18
|
--radius-lg: 0.5rem;
|
|
19
|
+
--default-transition-duration: 150ms;
|
|
20
|
+
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
19
21
|
--color-white: #ffffff;
|
|
20
22
|
--color-gray-100: #f2f2ee;
|
|
21
23
|
--color-gray-200: #e6e6dd;
|
|
@@ -28,9 +30,9 @@
|
|
|
28
30
|
--color-bluegray-100: #e4ebf0;
|
|
29
31
|
--color-bluegray-200: #ccd7df;
|
|
30
32
|
--color-blue-100: #c6def0;
|
|
33
|
+
--color-blue-200: #a6cdeb;
|
|
31
34
|
--color-blue-400: #488ec4;
|
|
32
35
|
--color-blue-500: #1666a4;
|
|
33
|
-
--color-blue-600: #064d83;
|
|
34
36
|
--color-blue-700: #003660;
|
|
35
37
|
--color-blue-800: #002441;
|
|
36
38
|
--color-orange-100: #ffd5be;
|
|
@@ -42,6 +44,7 @@
|
|
|
42
44
|
--color-red-200: #f8a4a4;
|
|
43
45
|
--color-red-500: #e93d3d;
|
|
44
46
|
--color-red-700: #ca1d1d;
|
|
47
|
+
--color-red-800: #b60606;
|
|
45
48
|
--color-red-900: #a51616;
|
|
46
49
|
--color-trackergreen-100: #c8eac0;
|
|
47
50
|
--color-trackergreen-200: #ace59f;
|
|
@@ -99,30 +102,66 @@
|
|
|
99
102
|
.absolute {
|
|
100
103
|
position: absolute;
|
|
101
104
|
}
|
|
105
|
+
.fixed {
|
|
106
|
+
position: fixed;
|
|
107
|
+
}
|
|
102
108
|
.relative {
|
|
103
109
|
position: relative;
|
|
104
110
|
}
|
|
111
|
+
.inset-x-0 {
|
|
112
|
+
inset-inline: calc(var(--spacing) * 0);
|
|
113
|
+
}
|
|
114
|
+
.top-0 {
|
|
115
|
+
top: calc(var(--spacing) * 0);
|
|
116
|
+
}
|
|
117
|
+
.right-0 {
|
|
118
|
+
right: calc(var(--spacing) * 0);
|
|
119
|
+
}
|
|
120
|
+
.bottom-0 {
|
|
121
|
+
bottom: calc(var(--spacing) * 0);
|
|
122
|
+
}
|
|
105
123
|
.left-1\.5 {
|
|
106
124
|
left: calc(var(--spacing) * 1.5);
|
|
107
125
|
}
|
|
126
|
+
.z-10 {
|
|
127
|
+
z-index: 10;
|
|
128
|
+
}
|
|
108
129
|
.z-50 {
|
|
109
130
|
z-index: 50;
|
|
110
131
|
}
|
|
132
|
+
.col-start-2 {
|
|
133
|
+
grid-column-start: 2;
|
|
134
|
+
}
|
|
111
135
|
.m-\[5px\] {
|
|
112
136
|
margin: 5px;
|
|
113
137
|
}
|
|
114
138
|
.mt-1 {
|
|
115
139
|
margin-top: calc(var(--spacing) * 1);
|
|
116
140
|
}
|
|
141
|
+
.mb-4 {
|
|
142
|
+
margin-bottom: calc(var(--spacing) * 4);
|
|
143
|
+
}
|
|
117
144
|
.ml-5 {
|
|
118
145
|
margin-left: calc(var(--spacing) * 5);
|
|
119
146
|
}
|
|
120
147
|
.flex {
|
|
121
148
|
display: flex;
|
|
122
149
|
}
|
|
150
|
+
.grid {
|
|
151
|
+
display: grid;
|
|
152
|
+
}
|
|
153
|
+
.hidden {
|
|
154
|
+
display: none;
|
|
155
|
+
}
|
|
156
|
+
.inline-block {
|
|
157
|
+
display: inline-block;
|
|
158
|
+
}
|
|
123
159
|
.inline-flex {
|
|
124
160
|
display: inline-flex;
|
|
125
161
|
}
|
|
162
|
+
.table {
|
|
163
|
+
display: table;
|
|
164
|
+
}
|
|
126
165
|
.size-4 {
|
|
127
166
|
width: calc(var(--spacing) * 4);
|
|
128
167
|
height: calc(var(--spacing) * 4);
|
|
@@ -135,6 +174,9 @@
|
|
|
135
174
|
width: calc(var(--spacing) * 6);
|
|
136
175
|
height: calc(var(--spacing) * 6);
|
|
137
176
|
}
|
|
177
|
+
.h-6 {
|
|
178
|
+
height: calc(var(--spacing) * 6);
|
|
179
|
+
}
|
|
138
180
|
.h-7 {
|
|
139
181
|
height: calc(var(--spacing) * 7);
|
|
140
182
|
}
|
|
@@ -144,23 +186,32 @@
|
|
|
144
186
|
.h-10 {
|
|
145
187
|
height: calc(var(--spacing) * 10);
|
|
146
188
|
}
|
|
189
|
+
.h-full {
|
|
190
|
+
height: 100%;
|
|
191
|
+
}
|
|
147
192
|
.h-px {
|
|
148
193
|
height: 1px;
|
|
149
194
|
}
|
|
150
|
-
.
|
|
151
|
-
|
|
195
|
+
.min-h-48 {
|
|
196
|
+
min-height: calc(var(--spacing) * 48);
|
|
197
|
+
}
|
|
198
|
+
.w-2 {
|
|
199
|
+
width: calc(var(--spacing) * 2);
|
|
152
200
|
}
|
|
153
201
|
.w-4 {
|
|
154
202
|
width: calc(var(--spacing) * 4);
|
|
155
203
|
}
|
|
204
|
+
.w-6 {
|
|
205
|
+
width: calc(var(--spacing) * 6);
|
|
206
|
+
}
|
|
156
207
|
.w-full {
|
|
157
208
|
width: 100%;
|
|
158
209
|
}
|
|
159
210
|
.max-w-lg {
|
|
160
211
|
max-width: var(--container-lg);
|
|
161
212
|
}
|
|
162
|
-
.min-w-\[
|
|
163
|
-
min-width:
|
|
213
|
+
.min-w-\[calc\(var\(--anchor-width\)\+25px-var\(--spacing\)\*1\.5\)\] {
|
|
214
|
+
min-width: calc(var(--anchor-width) + 25px - var(--spacing) * 1.5);
|
|
164
215
|
}
|
|
165
216
|
.flex-1 {
|
|
166
217
|
flex: 1;
|
|
@@ -168,18 +219,33 @@
|
|
|
168
219
|
.shrink-0 {
|
|
169
220
|
flex-shrink: 0;
|
|
170
221
|
}
|
|
222
|
+
.origin-\[var\(--transform-origin\)\] {
|
|
223
|
+
transform-origin: var(--transform-origin);
|
|
224
|
+
}
|
|
171
225
|
.transform {
|
|
172
226
|
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
173
227
|
}
|
|
228
|
+
.cursor-col-resize {
|
|
229
|
+
cursor: col-resize;
|
|
230
|
+
}
|
|
174
231
|
.cursor-default {
|
|
175
232
|
cursor: default;
|
|
176
233
|
}
|
|
177
234
|
.cursor-pointer {
|
|
178
235
|
cursor: pointer;
|
|
179
236
|
}
|
|
237
|
+
.touch-none {
|
|
238
|
+
touch-action: none;
|
|
239
|
+
}
|
|
240
|
+
.resize {
|
|
241
|
+
resize: both;
|
|
242
|
+
}
|
|
180
243
|
.appearance-none {
|
|
181
244
|
appearance: none;
|
|
182
245
|
}
|
|
246
|
+
.grid-cols-\[1rem_auto_1rem\] {
|
|
247
|
+
grid-template-columns: 1rem auto 1rem;
|
|
248
|
+
}
|
|
183
249
|
.items-center {
|
|
184
250
|
align-items: center;
|
|
185
251
|
}
|
|
@@ -189,12 +255,27 @@
|
|
|
189
255
|
.justify-center {
|
|
190
256
|
justify-content: center;
|
|
191
257
|
}
|
|
258
|
+
.gap-0\.5 {
|
|
259
|
+
gap: calc(var(--spacing) * 0.5);
|
|
260
|
+
}
|
|
261
|
+
.gap-1 {
|
|
262
|
+
gap: calc(var(--spacing) * 1);
|
|
263
|
+
}
|
|
264
|
+
.gap-2 {
|
|
265
|
+
gap: calc(var(--spacing) * 2);
|
|
266
|
+
}
|
|
267
|
+
.overflow-auto {
|
|
268
|
+
overflow: auto;
|
|
269
|
+
}
|
|
192
270
|
.overflow-x-hidden {
|
|
193
271
|
overflow-x: hidden;
|
|
194
272
|
}
|
|
195
273
|
.overflow-y-auto {
|
|
196
274
|
overflow-y: auto;
|
|
197
275
|
}
|
|
276
|
+
.rounded {
|
|
277
|
+
border-radius: 0.25rem;
|
|
278
|
+
}
|
|
198
279
|
.rounded-lg {
|
|
199
280
|
border-radius: var(--radius-lg);
|
|
200
281
|
}
|
|
@@ -208,9 +289,16 @@
|
|
|
208
289
|
border-style: var(--tw-border-style);
|
|
209
290
|
border-width: 1px;
|
|
210
291
|
}
|
|
292
|
+
.border-b {
|
|
293
|
+
border-bottom-style: var(--tw-border-style);
|
|
294
|
+
border-bottom-width: 1px;
|
|
295
|
+
}
|
|
211
296
|
.border-\(--btn-border\) {
|
|
212
297
|
border-color: var(--btn-border);
|
|
213
298
|
}
|
|
299
|
+
.border-blue-200 {
|
|
300
|
+
border-color: var(--color-blue-200);
|
|
301
|
+
}
|
|
214
302
|
.border-gray-200 {
|
|
215
303
|
border-color: var(--color-gray-200);
|
|
216
304
|
}
|
|
@@ -220,27 +308,78 @@
|
|
|
220
308
|
.border-gray-400 {
|
|
221
309
|
border-color: var(--color-gray-400);
|
|
222
310
|
}
|
|
311
|
+
.border-orange-200 {
|
|
312
|
+
border-color: var(--color-orange-200);
|
|
313
|
+
}
|
|
314
|
+
.border-red-200 {
|
|
315
|
+
border-color: var(--color-red-200);
|
|
316
|
+
}
|
|
317
|
+
.border-trackergreen-200 {
|
|
318
|
+
border-color: var(--color-trackergreen-200);
|
|
319
|
+
}
|
|
223
320
|
.border-transparent {
|
|
224
321
|
border-color: transparent;
|
|
225
322
|
}
|
|
226
323
|
.bg-\(--btn-bg\) {
|
|
227
324
|
background-color: var(--btn-bg);
|
|
228
325
|
}
|
|
326
|
+
.bg-blue-100 {
|
|
327
|
+
background-color: var(--color-blue-100);
|
|
328
|
+
}
|
|
229
329
|
.bg-gray-100 {
|
|
230
330
|
background-color: var(--color-gray-100);
|
|
231
331
|
}
|
|
332
|
+
.bg-gray-200 {
|
|
333
|
+
background-color: var(--color-gray-200);
|
|
334
|
+
}
|
|
232
335
|
.bg-gray-300 {
|
|
233
336
|
background-color: var(--color-gray-300);
|
|
234
337
|
}
|
|
338
|
+
.bg-gray-light {
|
|
339
|
+
background-color: var(--color-gray-200);
|
|
340
|
+
}
|
|
341
|
+
.bg-orange-100 {
|
|
342
|
+
background-color: var(--color-orange-100);
|
|
343
|
+
}
|
|
344
|
+
.bg-red-100 {
|
|
345
|
+
background-color: var(--color-red-100);
|
|
346
|
+
}
|
|
347
|
+
.bg-trackergreen-100 {
|
|
348
|
+
background-color: var(--color-trackergreen-100);
|
|
349
|
+
}
|
|
235
350
|
.bg-transparent {
|
|
236
351
|
background-color: transparent;
|
|
237
352
|
}
|
|
353
|
+
.fill-gray-100 {
|
|
354
|
+
fill: var(--color-gray-100);
|
|
355
|
+
}
|
|
356
|
+
.fill-gray-300 {
|
|
357
|
+
fill: var(--color-gray-300);
|
|
358
|
+
}
|
|
359
|
+
.p-0 {
|
|
360
|
+
padding: calc(var(--spacing) * 0);
|
|
361
|
+
}
|
|
362
|
+
.p-1 {
|
|
363
|
+
padding: calc(var(--spacing) * 1);
|
|
364
|
+
}
|
|
238
365
|
.p-1\.5 {
|
|
239
366
|
padding: calc(var(--spacing) * 1.5);
|
|
240
367
|
}
|
|
368
|
+
.p-2 {
|
|
369
|
+
padding: calc(var(--spacing) * 2);
|
|
370
|
+
}
|
|
371
|
+
.p-4 {
|
|
372
|
+
padding: calc(var(--spacing) * 4);
|
|
373
|
+
}
|
|
241
374
|
.p-24 {
|
|
242
375
|
padding: calc(var(--spacing) * 24);
|
|
243
376
|
}
|
|
377
|
+
.p-40 {
|
|
378
|
+
padding: calc(var(--spacing) * 40);
|
|
379
|
+
}
|
|
380
|
+
.px-2 {
|
|
381
|
+
padding-inline: calc(var(--spacing) * 2);
|
|
382
|
+
}
|
|
244
383
|
.px-3 {
|
|
245
384
|
padding-inline: calc(var(--spacing) * 3);
|
|
246
385
|
}
|
|
@@ -253,12 +392,18 @@
|
|
|
253
392
|
.py-1 {
|
|
254
393
|
padding-block: calc(var(--spacing) * 1);
|
|
255
394
|
}
|
|
395
|
+
.py-1\.5 {
|
|
396
|
+
padding-block: calc(var(--spacing) * 1.5);
|
|
397
|
+
}
|
|
256
398
|
.py-2 {
|
|
257
399
|
padding-block: calc(var(--spacing) * 2);
|
|
258
400
|
}
|
|
259
401
|
.py-3 {
|
|
260
402
|
padding-block: calc(var(--spacing) * 3);
|
|
261
403
|
}
|
|
404
|
+
.pr-1 {
|
|
405
|
+
padding-right: calc(var(--spacing) * 1);
|
|
406
|
+
}
|
|
262
407
|
.pr-\[35px\] {
|
|
263
408
|
padding-right: 35px;
|
|
264
409
|
}
|
|
@@ -268,6 +413,9 @@
|
|
|
268
413
|
.pl-\[25px\] {
|
|
269
414
|
padding-left: 25px;
|
|
270
415
|
}
|
|
416
|
+
.text-left {
|
|
417
|
+
text-align: left;
|
|
418
|
+
}
|
|
271
419
|
.font-sans {
|
|
272
420
|
font-family: var(--font-sans);
|
|
273
421
|
}
|
|
@@ -305,15 +453,36 @@
|
|
|
305
453
|
.text-\(--btn-text\) {
|
|
306
454
|
color: var(--btn-text);
|
|
307
455
|
}
|
|
456
|
+
.text-\(--callout-icon-color\) {
|
|
457
|
+
color: var(--callout-icon-color);
|
|
458
|
+
}
|
|
459
|
+
.text-blue-800 {
|
|
460
|
+
color: var(--color-blue-800);
|
|
461
|
+
}
|
|
308
462
|
.text-gray-600 {
|
|
309
463
|
color: var(--color-gray-600);
|
|
310
464
|
}
|
|
465
|
+
.text-gray-800 {
|
|
466
|
+
color: var(--color-gray-800);
|
|
467
|
+
}
|
|
311
468
|
.text-gray-900 {
|
|
312
469
|
color: var(--color-gray-900);
|
|
313
470
|
}
|
|
314
471
|
.text-gray-dark {
|
|
315
472
|
color: var(--color-gray-800);
|
|
316
473
|
}
|
|
474
|
+
.text-orange-800 {
|
|
475
|
+
color: var(--color-orange-800);
|
|
476
|
+
}
|
|
477
|
+
.text-red {
|
|
478
|
+
color: var(--color-red-500);
|
|
479
|
+
}
|
|
480
|
+
.text-red-800 {
|
|
481
|
+
color: var(--color-red-800);
|
|
482
|
+
}
|
|
483
|
+
.text-trackergreen-800 {
|
|
484
|
+
color: var(--color-trackergreen-800);
|
|
485
|
+
}
|
|
317
486
|
.opacity-50 {
|
|
318
487
|
opacity: 50%;
|
|
319
488
|
}
|
|
@@ -329,6 +498,11 @@
|
|
|
329
498
|
--tw-ring-offset-width: 2px;
|
|
330
499
|
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
331
500
|
}
|
|
501
|
+
.transition-\[transform\,scale\,opacity\] {
|
|
502
|
+
transition-property: transform,scale,opacity;
|
|
503
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
504
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
505
|
+
}
|
|
332
506
|
.select-none {
|
|
333
507
|
-webkit-user-select: none;
|
|
334
508
|
user-select: none;
|
|
@@ -345,6 +519,9 @@
|
|
|
345
519
|
.\[--btn-bg-active\:var\(--color-discovererblue-active\)\] {
|
|
346
520
|
--btn-bg-active: var(--color-discovererblue-active);
|
|
347
521
|
}
|
|
522
|
+
.\[--btn-bg-active\:var\(--color-gray-400\)\] {
|
|
523
|
+
--btn-bg-active: var(--color-gray-400);
|
|
524
|
+
}
|
|
348
525
|
.\[--btn-bg-active\:var\(--color-orange-active\)\] {
|
|
349
526
|
--btn-bg-active: var(--color-orange-active);
|
|
350
527
|
}
|
|
@@ -369,6 +546,9 @@
|
|
|
369
546
|
.\[--btn-bg-hover\:var\(--color-discovererblue-hover\)\] {
|
|
370
547
|
--btn-bg-hover: var(--color-discovererblue-hover);
|
|
371
548
|
}
|
|
549
|
+
.\[--btn-bg-hover\:var\(--color-gray-4300\)\] {
|
|
550
|
+
--btn-bg-hover: var(--color-gray-4300);
|
|
551
|
+
}
|
|
372
552
|
.\[--btn-bg-hover\:var\(--color-orange-hover\)\] {
|
|
373
553
|
--btn-bg-hover: var(--color-orange-hover);
|
|
374
554
|
}
|
|
@@ -393,6 +573,9 @@
|
|
|
393
573
|
.\[--btn-bg-text-active\:var\(--color-discovererblue-200\)\] {
|
|
394
574
|
--btn-bg-text-active: var(--color-discovererblue-200);
|
|
395
575
|
}
|
|
576
|
+
.\[--btn-bg-text-active\:var\(--color-gray-300\)\] {
|
|
577
|
+
--btn-bg-text-active: var(--color-gray-300);
|
|
578
|
+
}
|
|
396
579
|
.\[--btn-bg-text-active\:var\(--color-orange-200\)\] {
|
|
397
580
|
--btn-bg-text-active: var(--color-orange-200);
|
|
398
581
|
}
|
|
@@ -417,6 +600,9 @@
|
|
|
417
600
|
.\[--btn-bg-text-hover\:var\(--color-discovererblue-100\)\] {
|
|
418
601
|
--btn-bg-text-hover: var(--color-discovererblue-100);
|
|
419
602
|
}
|
|
603
|
+
.\[--btn-bg-text-hover\:var\(--color-gray-200\)\] {
|
|
604
|
+
--btn-bg-text-hover: var(--color-gray-200);
|
|
605
|
+
}
|
|
420
606
|
.\[--btn-bg-text-hover\:var\(--color-orange-100\)\] {
|
|
421
607
|
--btn-bg-text-hover: var(--color-orange-100);
|
|
422
608
|
}
|
|
@@ -441,6 +627,9 @@
|
|
|
441
627
|
.\[--btn-bg\:var\(--color-discovererblue\)\] {
|
|
442
628
|
--btn-bg: var(--color-discovererblue);
|
|
443
629
|
}
|
|
630
|
+
.\[--btn-bg\:var\(--color-gray-200\)\] {
|
|
631
|
+
--btn-bg: var(--color-gray-200);
|
|
632
|
+
}
|
|
444
633
|
.\[--btn-bg\:var\(--color-orange\)\] {
|
|
445
634
|
--btn-bg: var(--color-orange);
|
|
446
635
|
}
|
|
@@ -465,6 +654,9 @@
|
|
|
465
654
|
.\[--btn-border\:var\(--color-discovererblue\)\] {
|
|
466
655
|
--btn-border: var(--color-discovererblue);
|
|
467
656
|
}
|
|
657
|
+
.\[--btn-border\:var\(--color-gray-400\)\] {
|
|
658
|
+
--btn-border: var(--color-gray-400);
|
|
659
|
+
}
|
|
468
660
|
.\[--btn-border\:var\(--color-orange\)\] {
|
|
469
661
|
--btn-border: var(--color-orange);
|
|
470
662
|
}
|
|
@@ -477,35 +669,45 @@
|
|
|
477
669
|
.\[--btn-border\:var\(--color-trackergreen\)\] {
|
|
478
670
|
--btn-border: var(--color-trackergreen);
|
|
479
671
|
}
|
|
480
|
-
.\[--btn-text
|
|
481
|
-
--btn-text
|
|
672
|
+
.\[--btn-text\:var\(--color-gray-800\)\] {
|
|
673
|
+
--btn-text: var(--color-gray-800);
|
|
482
674
|
}
|
|
483
|
-
.\[--btn-text
|
|
484
|
-
--btn-text
|
|
675
|
+
.\[--btn-text\:var\(--color-gray-dark\)\] {
|
|
676
|
+
--btn-text: var(--color-gray-dark);
|
|
485
677
|
}
|
|
486
|
-
.\[--btn-text
|
|
487
|
-
--btn-text
|
|
678
|
+
.\[--btn-text\:var\(--color-white\)\] {
|
|
679
|
+
--btn-text: var(--color-white);
|
|
488
680
|
}
|
|
489
|
-
.\[--
|
|
490
|
-
--
|
|
681
|
+
.\[--callout-icon-color\:var\(--color-blue-00\)\] {
|
|
682
|
+
--callout-icon-color: var(--color-blue-00);
|
|
491
683
|
}
|
|
492
|
-
.\[--
|
|
493
|
-
--
|
|
684
|
+
.\[--callout-icon-color\:var\(--color-gray-dark\)\] {
|
|
685
|
+
--callout-icon-color: var(--color-gray-dark);
|
|
494
686
|
}
|
|
495
|
-
.\[--
|
|
496
|
-
--
|
|
687
|
+
.\[--callout-icon-color\:var\(--color-orange-800\)\] {
|
|
688
|
+
--callout-icon-color: var(--color-orange-800);
|
|
497
689
|
}
|
|
498
|
-
.\[--
|
|
499
|
-
--
|
|
690
|
+
.\[--callout-icon-color\:var\(--color-red-800\)\] {
|
|
691
|
+
--callout-icon-color: var(--color-red-800);
|
|
500
692
|
}
|
|
501
|
-
.\[--
|
|
502
|
-
--
|
|
693
|
+
.\[--callout-icon-color\:var\(--color-trackergreen-800\)\] {
|
|
694
|
+
--callout-icon-color: var(--color-trackergreen-800);
|
|
503
695
|
}
|
|
504
|
-
|
|
505
|
-
|
|
696
|
+
.not-last\:border-b {
|
|
697
|
+
&:not(*:last-child) {
|
|
698
|
+
border-bottom-style: var(--tw-border-style);
|
|
699
|
+
border-bottom-width: 1px;
|
|
700
|
+
}
|
|
506
701
|
}
|
|
507
|
-
|
|
508
|
-
|
|
702
|
+
.group-aria-\[haspopup\]\/item\:block {
|
|
703
|
+
&:is(:where(.group\/item)[aria-haspopup] *) {
|
|
704
|
+
display: block;
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
.group-data-\[nested\]\/popup\:hidden {
|
|
708
|
+
&:is(:where(.group\/popup)[data-nested] *) {
|
|
709
|
+
display: none;
|
|
710
|
+
}
|
|
509
711
|
}
|
|
510
712
|
.file\:border-0 {
|
|
511
713
|
&::file-selector-button {
|
|
@@ -530,6 +732,54 @@
|
|
|
530
732
|
font-weight: var(--font-weight-medium);
|
|
531
733
|
}
|
|
532
734
|
}
|
|
735
|
+
.after\:invisible {
|
|
736
|
+
&::after {
|
|
737
|
+
content: var(--tw-content);
|
|
738
|
+
visibility: hidden;
|
|
739
|
+
}
|
|
740
|
+
}
|
|
741
|
+
.after\:absolute {
|
|
742
|
+
&::after {
|
|
743
|
+
content: var(--tw-content);
|
|
744
|
+
position: absolute;
|
|
745
|
+
}
|
|
746
|
+
}
|
|
747
|
+
.after\:inset-x-1\.5 {
|
|
748
|
+
&::after {
|
|
749
|
+
content: var(--tw-content);
|
|
750
|
+
inset-inline: calc(var(--spacing) * 1.5);
|
|
751
|
+
}
|
|
752
|
+
}
|
|
753
|
+
.after\:inset-y-0 {
|
|
754
|
+
&::after {
|
|
755
|
+
content: var(--tw-content);
|
|
756
|
+
inset-block: calc(var(--spacing) * 0);
|
|
757
|
+
}
|
|
758
|
+
}
|
|
759
|
+
.after\:z-\[-1\] {
|
|
760
|
+
&::after {
|
|
761
|
+
content: var(--tw-content);
|
|
762
|
+
z-index: -1;
|
|
763
|
+
}
|
|
764
|
+
}
|
|
765
|
+
.after\:h-full {
|
|
766
|
+
&::after {
|
|
767
|
+
content: var(--tw-content);
|
|
768
|
+
height: 100%;
|
|
769
|
+
}
|
|
770
|
+
}
|
|
771
|
+
.after\:w-0\.5 {
|
|
772
|
+
&::after {
|
|
773
|
+
content: var(--tw-content);
|
|
774
|
+
width: calc(var(--spacing) * 0.5);
|
|
775
|
+
}
|
|
776
|
+
}
|
|
777
|
+
.after\:bg-gray-300 {
|
|
778
|
+
&::after {
|
|
779
|
+
content: var(--tw-content);
|
|
780
|
+
background-color: var(--color-gray-300);
|
|
781
|
+
}
|
|
782
|
+
}
|
|
533
783
|
.hover\:bg-\(--btn-bg-hover\) {
|
|
534
784
|
&:hover {
|
|
535
785
|
@media (hover: hover) {
|
|
@@ -666,6 +916,19 @@
|
|
|
666
916
|
opacity: 50%;
|
|
667
917
|
}
|
|
668
918
|
}
|
|
919
|
+
.data-\[ending-style\]\:scale-90 {
|
|
920
|
+
&[data-ending-style] {
|
|
921
|
+
--tw-scale-x: 90%;
|
|
922
|
+
--tw-scale-y: 90%;
|
|
923
|
+
--tw-scale-z: 90%;
|
|
924
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
925
|
+
}
|
|
926
|
+
}
|
|
927
|
+
.data-\[ending-style\]\:opacity-0 {
|
|
928
|
+
&[data-ending-style] {
|
|
929
|
+
opacity: 0%;
|
|
930
|
+
}
|
|
931
|
+
}
|
|
669
932
|
.data-\[highlighted\]\:bg-blue-100 {
|
|
670
933
|
&[data-highlighted] {
|
|
671
934
|
background-color: var(--color-blue-100);
|
|
@@ -682,6 +945,22 @@
|
|
|
682
945
|
outline-style: none;
|
|
683
946
|
}
|
|
684
947
|
}
|
|
948
|
+
.data-\[highlighted\]\:after\:rounded-sm {
|
|
949
|
+
&[data-highlighted] {
|
|
950
|
+
&::after {
|
|
951
|
+
content: var(--tw-content);
|
|
952
|
+
border-radius: var(--radius-sm);
|
|
953
|
+
}
|
|
954
|
+
}
|
|
955
|
+
}
|
|
956
|
+
.data-\[highlighted\]\:after\:bg-blue-100 {
|
|
957
|
+
&[data-highlighted] {
|
|
958
|
+
&::after {
|
|
959
|
+
content: var(--tw-content);
|
|
960
|
+
background-color: var(--color-blue-100);
|
|
961
|
+
}
|
|
962
|
+
}
|
|
963
|
+
}
|
|
685
964
|
.data-\[placeholder\]\:text-gray-600 {
|
|
686
965
|
&[data-placeholder] {
|
|
687
966
|
color: var(--color-gray-600);
|
|
@@ -692,6 +971,59 @@
|
|
|
692
971
|
font-style: italic;
|
|
693
972
|
}
|
|
694
973
|
}
|
|
974
|
+
.data-\[side\=bottom\]\:-top-\[8px\] {
|
|
975
|
+
&[data-side="bottom"] {
|
|
976
|
+
top: calc(8px * -1);
|
|
977
|
+
}
|
|
978
|
+
}
|
|
979
|
+
.data-\[side\=bottom\]\:rotate-0 {
|
|
980
|
+
&[data-side="bottom"] {
|
|
981
|
+
rotate: 0deg;
|
|
982
|
+
}
|
|
983
|
+
}
|
|
984
|
+
.data-\[side\=left\]\:-right-\[13px\] {
|
|
985
|
+
&[data-side="left"] {
|
|
986
|
+
right: calc(13px * -1);
|
|
987
|
+
}
|
|
988
|
+
}
|
|
989
|
+
.data-\[side\=left\]\:rotate-90 {
|
|
990
|
+
&[data-side="left"] {
|
|
991
|
+
rotate: 90deg;
|
|
992
|
+
}
|
|
993
|
+
}
|
|
994
|
+
.data-\[side\=right\]\:-left-\[13px\] {
|
|
995
|
+
&[data-side="right"] {
|
|
996
|
+
left: calc(13px * -1);
|
|
997
|
+
}
|
|
998
|
+
}
|
|
999
|
+
.data-\[side\=right\]\:-rotate-90 {
|
|
1000
|
+
&[data-side="right"] {
|
|
1001
|
+
rotate: calc(90deg * -1);
|
|
1002
|
+
}
|
|
1003
|
+
}
|
|
1004
|
+
.data-\[side\=top\]\:-bottom-\[8px\] {
|
|
1005
|
+
&[data-side="top"] {
|
|
1006
|
+
bottom: calc(8px * -1);
|
|
1007
|
+
}
|
|
1008
|
+
}
|
|
1009
|
+
.data-\[side\=top\]\:rotate-180 {
|
|
1010
|
+
&[data-side="top"] {
|
|
1011
|
+
rotate: 180deg;
|
|
1012
|
+
}
|
|
1013
|
+
}
|
|
1014
|
+
.data-\[starting-style\]\:scale-90 {
|
|
1015
|
+
&[data-starting-style] {
|
|
1016
|
+
--tw-scale-x: 90%;
|
|
1017
|
+
--tw-scale-y: 90%;
|
|
1018
|
+
--tw-scale-z: 90%;
|
|
1019
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
1020
|
+
}
|
|
1021
|
+
}
|
|
1022
|
+
.data-\[starting-style\]\:opacity-0 {
|
|
1023
|
+
&[data-starting-style] {
|
|
1024
|
+
opacity: 0%;
|
|
1025
|
+
}
|
|
1026
|
+
}
|
|
695
1027
|
.md\:max-w-\[364px\] {
|
|
696
1028
|
@media (width >= 48rem) {
|
|
697
1029
|
max-width: 364px;
|
|
@@ -801,6 +1133,26 @@
|
|
|
801
1133
|
inherits: false;
|
|
802
1134
|
initial-value: 0 0 #0000;
|
|
803
1135
|
}
|
|
1136
|
+
@property --tw-content {
|
|
1137
|
+
syntax: "*";
|
|
1138
|
+
initial-value: "";
|
|
1139
|
+
inherits: false;
|
|
1140
|
+
}
|
|
1141
|
+
@property --tw-scale-x {
|
|
1142
|
+
syntax: "*";
|
|
1143
|
+
inherits: false;
|
|
1144
|
+
initial-value: 1;
|
|
1145
|
+
}
|
|
1146
|
+
@property --tw-scale-y {
|
|
1147
|
+
syntax: "*";
|
|
1148
|
+
inherits: false;
|
|
1149
|
+
initial-value: 1;
|
|
1150
|
+
}
|
|
1151
|
+
@property --tw-scale-z {
|
|
1152
|
+
syntax: "*";
|
|
1153
|
+
inherits: false;
|
|
1154
|
+
initial-value: 1;
|
|
1155
|
+
}
|
|
804
1156
|
@layer properties {
|
|
805
1157
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
806
1158
|
*, ::before, ::after, ::backdrop {
|
|
@@ -826,6 +1178,10 @@
|
|
|
826
1178
|
--tw-ring-offset-width: 0px;
|
|
827
1179
|
--tw-ring-offset-color: #fff;
|
|
828
1180
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1181
|
+
--tw-content: "";
|
|
1182
|
+
--tw-scale-x: 1;
|
|
1183
|
+
--tw-scale-y: 1;
|
|
1184
|
+
--tw-scale-z: 1;
|
|
829
1185
|
}
|
|
830
1186
|
}
|
|
831
1187
|
}
|