@jackcrane/ui 0.1.5 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Button/button.d.ts +2 -0
- package/dist/components/Hatch/hatch.d.ts +2 -1
- package/dist/jcui.cjs.js +251 -162
- package/dist/jcui.es.js +251 -162
- package/package.json +1 -1
package/dist/jcui.es.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
inherits: true;
|
|
4
4
|
initial-value: transparent;
|
|
5
5
|
}
|
|
6
|
-
.
|
|
6
|
+
._button_105y0_7 {
|
|
7
7
|
border-width: var(--border-thickness);
|
|
8
8
|
border-style: solid;
|
|
9
9
|
font-size: 1rem;
|
|
@@ -13,95 +13,104 @@
|
|
|
13
13
|
border-color: var(--border-color);
|
|
14
14
|
cursor: pointer;
|
|
15
15
|
}
|
|
16
|
-
.
|
|
16
|
+
._button_105y0_7:hover {
|
|
17
17
|
--button-bg: var(--secondary-color-100);
|
|
18
18
|
}
|
|
19
|
-
.
|
|
19
|
+
._button_105y0_7:active {
|
|
20
20
|
--button-bg: var(--secondary-color-200);
|
|
21
21
|
}
|
|
22
|
-
.
|
|
22
|
+
._pageBackground_105y0_24 {
|
|
23
|
+
--button-bg: var(--body-bg);
|
|
24
|
+
}
|
|
25
|
+
._pageBackground_105y0_24:hover {
|
|
26
|
+
--button-bg: var(--body-bg);
|
|
27
|
+
}
|
|
28
|
+
._pageBackground_105y0_24:active {
|
|
29
|
+
--button-bg: var(--body-bg);
|
|
30
|
+
}
|
|
31
|
+
._large_105y0_34 {
|
|
23
32
|
font-size: 1.25rem;
|
|
24
33
|
padding: 0.75rem 1.25rem;
|
|
25
34
|
}
|
|
26
|
-
.
|
|
35
|
+
._small_105y0_39 {
|
|
27
36
|
font-size: 0.75rem;
|
|
28
37
|
padding: 0.25rem 0.5rem;
|
|
29
38
|
}
|
|
30
|
-
.
|
|
39
|
+
._disabled_105y0_44 {
|
|
31
40
|
opacity: 0.5 !important;
|
|
32
41
|
cursor: not-allowed;
|
|
33
42
|
}
|
|
34
43
|
/* Variants */
|
|
35
|
-
.
|
|
44
|
+
._primary_105y0_51 {
|
|
36
45
|
--button-bg: var(--primary-color-100);
|
|
37
46
|
--border-color: var(--primary-color-300);
|
|
38
47
|
--border-accent-color: var(--primary-color-600);
|
|
39
48
|
--button-color: var(--primary-color-800);
|
|
40
49
|
}
|
|
41
|
-
.
|
|
50
|
+
._primary_105y0_51:hover {
|
|
42
51
|
--button-bg: var(--primary-color-200);
|
|
43
52
|
}
|
|
44
|
-
.
|
|
53
|
+
._primary_105y0_51:active {
|
|
45
54
|
--button-bg: var(--primary-color-300);
|
|
46
55
|
}
|
|
47
|
-
.
|
|
56
|
+
._success_105y0_64 {
|
|
48
57
|
--button-bg: var(--success-color-100);
|
|
49
58
|
--border-color: var(--success-color-300);
|
|
50
59
|
--border-accent-color: var(--success-color-600);
|
|
51
60
|
--button-color: var(--success-color-800);
|
|
52
61
|
}
|
|
53
|
-
.
|
|
62
|
+
._success_105y0_64:hover {
|
|
54
63
|
--button-bg: var(--success-color-200);
|
|
55
64
|
}
|
|
56
|
-
.
|
|
65
|
+
._success_105y0_64:active {
|
|
57
66
|
--button-bg: var(--success-color-300);
|
|
58
67
|
}
|
|
59
|
-
.
|
|
68
|
+
._warning_105y0_77 {
|
|
60
69
|
--button-bg: var(--warning-color-100);
|
|
61
70
|
--border-color: var(--warning-color-300);
|
|
62
71
|
--border-accent-color: var(--warning-color-600);
|
|
63
72
|
--button-color: var(--warning-color-800);
|
|
64
73
|
}
|
|
65
|
-
.
|
|
74
|
+
._warning_105y0_77:hover {
|
|
66
75
|
--button-bg: var(--warning-color-200);
|
|
67
76
|
}
|
|
68
|
-
.
|
|
77
|
+
._warning_105y0_77:active {
|
|
69
78
|
--button-bg: var(--warning-color-300);
|
|
70
79
|
}
|
|
71
|
-
.
|
|
80
|
+
._danger_105y0_90 {
|
|
72
81
|
--button-bg: var(--danger-color-100);
|
|
73
82
|
--border-color: var(--danger-color-300);
|
|
74
83
|
--border-accent-color: var(--danger-color-600);
|
|
75
84
|
--button-color: var(--danger-color-800);
|
|
76
85
|
}
|
|
77
|
-
.
|
|
86
|
+
._danger_105y0_90:hover {
|
|
78
87
|
--button-bg: var(--danger-color-200);
|
|
79
88
|
}
|
|
80
|
-
.
|
|
89
|
+
._danger_105y0_90:active {
|
|
81
90
|
--button-bg: var(--danger-color-300);
|
|
82
91
|
}
|
|
83
|
-
.
|
|
92
|
+
._info_105y0_103 {
|
|
84
93
|
--button-bg: var(--info-color-100);
|
|
85
94
|
--border-color: var(--info-color-300);
|
|
86
95
|
--border-accent-color: var(--info-color-600);
|
|
87
96
|
--button-color: var(--info-color-800);
|
|
88
97
|
}
|
|
89
|
-
.
|
|
98
|
+
._info_105y0_103:hover {
|
|
90
99
|
--button-bg: var(--info-color-200);
|
|
91
100
|
}
|
|
92
|
-
.
|
|
101
|
+
._info_105y0_103:active {
|
|
93
102
|
--button-bg: var(--info-color-300);
|
|
94
103
|
}
|
|
95
|
-
.
|
|
104
|
+
._secondary_105y0_116 {
|
|
96
105
|
--button-bg: var(--secondary-color-100);
|
|
97
106
|
--border-color: var(--secondary-color-300);
|
|
98
107
|
--border-accent-color: var(--secondary-color-600);
|
|
99
108
|
--button-color: var(--secondary-color-800);
|
|
100
109
|
}
|
|
101
|
-
.
|
|
110
|
+
._secondary_105y0_116:hover {
|
|
102
111
|
--button-bg: var(--secondary-color-200);
|
|
103
112
|
}
|
|
104
|
-
.
|
|
113
|
+
._secondary_105y0_116:active {
|
|
105
114
|
--button-bg: var(--secondary-color-300);
|
|
106
115
|
}
|
|
107
116
|
._chamfer_1o5rm_1 {
|
|
@@ -200,7 +209,7 @@ div._chamfer_1o5rm_1:not(._disabled_1o5rm_15):focus-within {
|
|
|
200
209
|
transform: rotate(360deg);
|
|
201
210
|
}
|
|
202
211
|
}
|
|
203
|
-
.
|
|
212
|
+
._card_et6fi_1 {
|
|
204
213
|
border-width: var(--border-thickness);
|
|
205
214
|
border-style: solid;
|
|
206
215
|
font-size: 1rem;
|
|
@@ -209,64 +218,70 @@ div._chamfer_1o5rm_1:not(._disabled_1o5rm_15):focus-within {
|
|
|
209
218
|
display: flex;
|
|
210
219
|
flex-direction: column;
|
|
211
220
|
}
|
|
212
|
-
.
|
|
221
|
+
._pageBackground_et6fi_11 {
|
|
222
|
+
--card-bg: var(--body-bg);
|
|
223
|
+
--button-bg: var(--body-bg);
|
|
224
|
+
--card-color: var(--body-color);
|
|
225
|
+
background-color: var(--body-bg);
|
|
226
|
+
}
|
|
227
|
+
._card_et6fi_1 ._title_et6fi_18 {
|
|
213
228
|
font-size: 1.25rem;
|
|
214
229
|
padding: 0.5rem 1rem;
|
|
215
230
|
border-bottom: var(--border-thickness) solid var(--border-color);
|
|
216
231
|
background-color: var(--card-bg);
|
|
217
232
|
}
|
|
218
|
-
.
|
|
233
|
+
._card_et6fi_1 ._body_et6fi_25 {
|
|
219
234
|
padding: 0.5rem 1rem;
|
|
220
235
|
width: 100%;
|
|
221
236
|
}
|
|
222
|
-
.
|
|
237
|
+
._card_et6fi_1 ._footer_et6fi_30 {
|
|
223
238
|
border-top: var(--border-thickness) solid var(--border-color);
|
|
224
239
|
flex: 1;
|
|
225
240
|
background-color: var(--card-bg);
|
|
226
241
|
padding: 0.5rem 1rem;
|
|
227
242
|
}
|
|
228
|
-
.
|
|
229
|
-
.
|
|
243
|
+
._large_et6fi_37 ._body_et6fi_25,
|
|
244
|
+
._large_et6fi_37 ._title_et6fi_18 {
|
|
230
245
|
font-size: 1.25rem;
|
|
231
246
|
padding: 0.75rem 1.25rem;
|
|
232
247
|
}
|
|
233
|
-
.
|
|
234
|
-
.
|
|
248
|
+
._small_et6fi_43 ._body_et6fi_25,
|
|
249
|
+
._small_et6fi_43 ._title_et6fi_18 {
|
|
235
250
|
font-size: 0.75rem;
|
|
236
251
|
padding: 0.25rem 0.5rem;
|
|
237
252
|
}
|
|
238
253
|
/* Variants */
|
|
239
|
-
.
|
|
254
|
+
._primary_et6fi_51 {
|
|
240
255
|
--card-bg: var(--primary-color-100);
|
|
241
256
|
--border-color: var(--primary-color-300);
|
|
242
257
|
--border-accent-color: var(--primary-color-600);
|
|
243
258
|
--card-color: var(--primary-color-800);
|
|
244
259
|
}
|
|
245
|
-
.
|
|
260
|
+
._success_et6fi_58 {
|
|
246
261
|
--card-bg: var(--success-color-100);
|
|
247
262
|
--border-color: var(--success-color-300);
|
|
248
263
|
--border-accent-color: var(--success-color-600);
|
|
249
264
|
--card-color: var(--success-color-800);
|
|
250
265
|
}
|
|
251
|
-
.
|
|
266
|
+
._warning_et6fi_65 {
|
|
252
267
|
--card-bg: var(--warning-color-100);
|
|
253
268
|
--border-color: var(--warning-color-300);
|
|
254
269
|
--border-accent-color: var(--warning-color-600);
|
|
255
270
|
--card-color: var(--warning-color-800);
|
|
256
271
|
}
|
|
257
|
-
.
|
|
272
|
+
._danger_et6fi_72 {
|
|
258
273
|
--card-bg: var(--danger-color-100);
|
|
259
274
|
--border-color: var(--danger-color-300);
|
|
260
275
|
--border-accent-color: var(--danger-color-600);
|
|
261
276
|
--card-color: var(--danger-color-800);
|
|
262
277
|
}
|
|
263
|
-
.
|
|
278
|
+
._info_et6fi_79 {
|
|
264
279
|
--card-bg: var(--info-color-100);
|
|
265
280
|
--border-color: var(--info-color-300);
|
|
266
281
|
--border-accent-color: var(--info-color-600);
|
|
267
282
|
--card-color: var(--info-color-800);
|
|
268
283
|
}
|
|
269
|
-
.
|
|
284
|
+
._secondary_et6fi_86 {
|
|
270
285
|
--card-bg: var(--secondary-color-100);
|
|
271
286
|
--border-color: var(--secondary-color-300);
|
|
272
287
|
--border-accent-color: var(--secondary-color-600);
|
|
@@ -423,7 +438,7 @@ div._chamfer_1o5rm_1:not(._disabled_1o5rm_15):focus-within {
|
|
|
423
438
|
inherits: true;
|
|
424
439
|
initial-value: transparent;
|
|
425
440
|
}
|
|
426
|
-
.
|
|
441
|
+
._input_1ymvl_7 {
|
|
427
442
|
border-width: var(--border-thickness);
|
|
428
443
|
border-style: solid;
|
|
429
444
|
font-size: 1rem;
|
|
@@ -433,79 +448,92 @@ div._chamfer_1o5rm_1:not(._disabled_1o5rm_15):focus-within {
|
|
|
433
448
|
border-color: var(--border-color);
|
|
434
449
|
width: calc(100% + var(--border-thickness));
|
|
435
450
|
}
|
|
436
|
-
.
|
|
451
|
+
._input_1ymvl_7:hover {
|
|
437
452
|
--input-bg: var(--secondary-color-100);
|
|
438
453
|
}
|
|
439
|
-
.
|
|
454
|
+
._input_1ymvl_7:focus {
|
|
440
455
|
outline: none;
|
|
441
456
|
}
|
|
442
|
-
.
|
|
457
|
+
._pageBackground_1ymvl_24 {
|
|
458
|
+
--input-bg: var(--body-bg);
|
|
459
|
+
--button-bg: var(--body-bg);
|
|
460
|
+
}
|
|
461
|
+
._pageBackground_1ymvl_24:hover {
|
|
462
|
+
--input-bg: var(--body-bg);
|
|
463
|
+
--button-bg: var(--body-bg);
|
|
464
|
+
}
|
|
465
|
+
._pageBackground_1ymvl_24:focus,
|
|
466
|
+
._pageBackground_1ymvl_24:focus-within {
|
|
467
|
+
--input-bg: var(--body-bg);
|
|
468
|
+
--button-bg: var(--body-bg);
|
|
469
|
+
}
|
|
470
|
+
._large_1ymvl_38 {
|
|
443
471
|
font-size: 1.25rem;
|
|
444
472
|
padding: 0.75rem 1.25rem;
|
|
445
473
|
}
|
|
446
|
-
.
|
|
474
|
+
._small_1ymvl_43 {
|
|
447
475
|
font-size: 0.75rem;
|
|
448
476
|
padding: 0.25rem 0.5rem;
|
|
449
477
|
}
|
|
450
|
-
.
|
|
478
|
+
._disabled_1ymvl_48 {
|
|
451
479
|
opacity: 0.5;
|
|
452
480
|
cursor: not-allowed;
|
|
453
481
|
}
|
|
454
482
|
/* Variants */
|
|
455
|
-
.
|
|
483
|
+
._primary_1ymvl_55 {
|
|
456
484
|
--input-bg: var(--primary-color-100);
|
|
457
485
|
--border-color: var(--primary-color-300);
|
|
458
486
|
--border-accent-color: var(--primary-color-600);
|
|
459
487
|
}
|
|
460
|
-
.
|
|
488
|
+
._primary_1ymvl_55:hover {
|
|
461
489
|
--input-bg: var(--primary-color-200);
|
|
462
490
|
}
|
|
463
|
-
.
|
|
491
|
+
._success_1ymvl_64 {
|
|
464
492
|
--input-bg: var(--success-color-100);
|
|
465
493
|
--border-color: var(--success-color-300);
|
|
466
494
|
--border-accent-color: var(--success-color-600);
|
|
467
495
|
}
|
|
468
|
-
.
|
|
496
|
+
._success_1ymvl_64:hover {
|
|
469
497
|
--input-bg: var(--success-color-200);
|
|
470
498
|
}
|
|
471
|
-
.
|
|
499
|
+
._warning_1ymvl_72 {
|
|
472
500
|
--input-bg: var(--warning-color-100);
|
|
473
501
|
--border-color: var(--warning-color-300);
|
|
474
502
|
--border-accent-color: var(--warning-color-600);
|
|
475
503
|
}
|
|
476
|
-
.
|
|
504
|
+
._warning_1ymvl_72:hover {
|
|
477
505
|
--input-bg: var(--warning-color-200);
|
|
478
506
|
}
|
|
479
|
-
.
|
|
507
|
+
._danger_1ymvl_80 {
|
|
480
508
|
--input-bg: var(--danger-color-100);
|
|
481
509
|
--border-color: var(--danger-color-300);
|
|
482
510
|
--border-accent-color: var(--danger-color-600);
|
|
483
511
|
}
|
|
484
|
-
.
|
|
512
|
+
._danger_1ymvl_80:hover {
|
|
485
513
|
--input-bg: var(--danger-color-200);
|
|
486
514
|
}
|
|
487
|
-
.
|
|
515
|
+
._info_1ymvl_88 {
|
|
488
516
|
--input-bg: var(--info-color-100);
|
|
489
517
|
--border-color: var(--info-color-300);
|
|
490
518
|
--border-accent-color: var(--info-color-600);
|
|
491
519
|
}
|
|
492
|
-
.
|
|
520
|
+
._info_1ymvl_88:hover {
|
|
493
521
|
--input-bg: var(--info-color-200);
|
|
494
522
|
}
|
|
495
|
-
.
|
|
523
|
+
._secondary_1ymvl_97 {
|
|
496
524
|
--input-bg: var(--secondary-color-100);
|
|
497
525
|
--border-color: var(--secondary-color-300);
|
|
498
526
|
--border-accent-color: var(--secondary-color-600);
|
|
499
527
|
}
|
|
500
|
-
.
|
|
528
|
+
._secondary_1ymvl_97:hover {
|
|
501
529
|
--input-bg: var(--secondary-color-200);
|
|
502
530
|
}
|
|
503
|
-
.
|
|
531
|
+
._field_1ymvl_106 {
|
|
504
532
|
display: flex;
|
|
505
533
|
flex-direction: column;
|
|
506
534
|
gap: 0.5rem;
|
|
507
535
|
}
|
|
508
|
-
.
|
|
536
|
+
._label_1ymvl_112 {
|
|
509
537
|
}
|
|
510
538
|
@property --radio-hover-bg {
|
|
511
539
|
syntax: "<color>";
|
|
@@ -980,8 +1008,46 @@ div._chamfer_1o5rm_1:not(._disabled_1o5rm_15):focus-within {
|
|
|
980
1008
|
transform: translateX(0);
|
|
981
1009
|
}
|
|
982
1010
|
}
|
|
983
|
-
.
|
|
1011
|
+
._hatch_lff0l_1 {
|
|
984
1012
|
padding: 0.5rem 1rem;
|
|
1013
|
+
color: var(--hatch-color, inherit);
|
|
1014
|
+
--button-bg: var(--bg, transparent);
|
|
1015
|
+
}
|
|
1016
|
+
._primary_lff0l_7 {
|
|
1017
|
+
--bg: var(--primary-color-100);
|
|
1018
|
+
--border-color: var(--primary-color-300);
|
|
1019
|
+
--border-accent-color: var(--primary-color-600);
|
|
1020
|
+
--hatch-color: var(--primary-color-800);
|
|
1021
|
+
}
|
|
1022
|
+
._success_lff0l_14 {
|
|
1023
|
+
--bg: var(--success-color-100);
|
|
1024
|
+
--border-color: var(--success-color-300);
|
|
1025
|
+
--border-accent-color: var(--success-color-600);
|
|
1026
|
+
--hatch-color: var(--success-color-800);
|
|
1027
|
+
}
|
|
1028
|
+
._warning_lff0l_21 {
|
|
1029
|
+
--bg: var(--warning-color-100);
|
|
1030
|
+
--border-color: var(--warning-color-300);
|
|
1031
|
+
--border-accent-color: var(--warning-color-600);
|
|
1032
|
+
--hatch-color: var(--warning-color-800);
|
|
1033
|
+
}
|
|
1034
|
+
._danger_lff0l_28 {
|
|
1035
|
+
--bg: var(--danger-color-100);
|
|
1036
|
+
--border-color: var(--danger-color-300);
|
|
1037
|
+
--border-accent-color: var(--danger-color-600);
|
|
1038
|
+
--hatch-color: var(--danger-color-800);
|
|
1039
|
+
}
|
|
1040
|
+
._info_lff0l_35 {
|
|
1041
|
+
--bg: var(--info-color-100);
|
|
1042
|
+
--border-color: var(--info-color-300);
|
|
1043
|
+
--border-accent-color: var(--info-color-600);
|
|
1044
|
+
--hatch-color: var(--info-color-800);
|
|
1045
|
+
}
|
|
1046
|
+
._secondary_lff0l_42 {
|
|
1047
|
+
--bg: var(--secondary-color-100);
|
|
1048
|
+
--border-color: var(--secondary-color-300);
|
|
1049
|
+
--border-accent-color: var(--secondary-color-600);
|
|
1050
|
+
--hatch-color: var(--secondary-color-800);
|
|
985
1051
|
}
|
|
986
1052
|
._toastRoot_1iau9_1 {
|
|
987
1053
|
background-color: var(--button-bg) !important;
|
|
@@ -1846,27 +1912,29 @@ function clsx() {
|
|
|
1846
1912
|
for (var e3, t4, f2 = 0, n2 = "", o2 = arguments.length; f2 < o2; f2++) (e3 = arguments[f2]) && (t4 = r(e3)) && (n2 && (n2 += " "), n2 += t4);
|
|
1847
1913
|
return n2;
|
|
1848
1914
|
}
|
|
1849
|
-
const button = "
|
|
1850
|
-
const
|
|
1851
|
-
const
|
|
1852
|
-
const
|
|
1853
|
-
const
|
|
1854
|
-
const
|
|
1855
|
-
const
|
|
1856
|
-
const
|
|
1857
|
-
const
|
|
1858
|
-
const
|
|
1915
|
+
const button = "_button_105y0_7";
|
|
1916
|
+
const pageBackground$2 = "_pageBackground_105y0_24";
|
|
1917
|
+
const large$6 = "_large_105y0_34";
|
|
1918
|
+
const small$6 = "_small_105y0_39";
|
|
1919
|
+
const disabled$6 = "_disabled_105y0_44";
|
|
1920
|
+
const primary$8 = "_primary_105y0_51";
|
|
1921
|
+
const success$8 = "_success_105y0_64";
|
|
1922
|
+
const warning$8 = "_warning_105y0_77";
|
|
1923
|
+
const danger$8 = "_danger_105y0_90";
|
|
1924
|
+
const info$8 = "_info_105y0_103";
|
|
1925
|
+
const secondary$8 = "_secondary_105y0_116";
|
|
1859
1926
|
const styles$b = {
|
|
1860
1927
|
button,
|
|
1928
|
+
pageBackground: pageBackground$2,
|
|
1861
1929
|
large: large$6,
|
|
1862
1930
|
small: small$6,
|
|
1863
1931
|
disabled: disabled$6,
|
|
1864
|
-
primary: primary$
|
|
1865
|
-
success: success$
|
|
1866
|
-
warning: warning$
|
|
1867
|
-
danger: danger$
|
|
1868
|
-
info: info$
|
|
1869
|
-
secondary: secondary$
|
|
1932
|
+
primary: primary$8,
|
|
1933
|
+
success: success$8,
|
|
1934
|
+
warning: warning$8,
|
|
1935
|
+
danger: danger$8,
|
|
1936
|
+
info: info$8,
|
|
1937
|
+
secondary: secondary$8
|
|
1870
1938
|
};
|
|
1871
1939
|
const chamfer$1 = "_chamfer_1o5rm_1";
|
|
1872
1940
|
const disabled$5 = "_disabled_1o5rm_15";
|
|
@@ -1906,6 +1974,7 @@ function Button({
|
|
|
1906
1974
|
{
|
|
1907
1975
|
className: clsx(
|
|
1908
1976
|
styles$b.button,
|
|
1977
|
+
!variant && styles$b.pageBackground,
|
|
1909
1978
|
styles$b[variant],
|
|
1910
1979
|
chamfer2 && chamferStyles.chamfer,
|
|
1911
1980
|
size2 === "large" && styles$b.large,
|
|
@@ -2020,31 +2089,33 @@ function requireClassnames() {
|
|
|
2020
2089
|
}
|
|
2021
2090
|
var classnamesExports = requireClassnames();
|
|
2022
2091
|
const classNames = /* @__PURE__ */ getDefaultExportFromCjs(classnamesExports);
|
|
2023
|
-
const card = "
|
|
2024
|
-
const
|
|
2025
|
-
const
|
|
2026
|
-
const
|
|
2027
|
-
const
|
|
2028
|
-
const
|
|
2029
|
-
const
|
|
2030
|
-
const
|
|
2031
|
-
const
|
|
2032
|
-
const
|
|
2033
|
-
const
|
|
2034
|
-
const
|
|
2092
|
+
const card = "_card_et6fi_1";
|
|
2093
|
+
const pageBackground$1 = "_pageBackground_et6fi_11";
|
|
2094
|
+
const title$1 = "_title_et6fi_18";
|
|
2095
|
+
const body$1 = "_body_et6fi_25";
|
|
2096
|
+
const footer$1 = "_footer_et6fi_30";
|
|
2097
|
+
const large$5 = "_large_et6fi_37";
|
|
2098
|
+
const small$5 = "_small_et6fi_43";
|
|
2099
|
+
const primary$7 = "_primary_et6fi_51";
|
|
2100
|
+
const success$7 = "_success_et6fi_58";
|
|
2101
|
+
const warning$7 = "_warning_et6fi_65";
|
|
2102
|
+
const danger$7 = "_danger_et6fi_72";
|
|
2103
|
+
const info$7 = "_info_et6fi_79";
|
|
2104
|
+
const secondary$7 = "_secondary_et6fi_86";
|
|
2035
2105
|
const styles$9 = {
|
|
2036
2106
|
card,
|
|
2107
|
+
pageBackground: pageBackground$1,
|
|
2037
2108
|
title: title$1,
|
|
2038
2109
|
body: body$1,
|
|
2039
2110
|
footer: footer$1,
|
|
2040
2111
|
large: large$5,
|
|
2041
2112
|
small: small$5,
|
|
2042
|
-
primary: primary$
|
|
2043
|
-
success: success$
|
|
2044
|
-
warning: warning$
|
|
2045
|
-
danger: danger$
|
|
2046
|
-
info: info$
|
|
2047
|
-
secondary: secondary$
|
|
2113
|
+
primary: primary$7,
|
|
2114
|
+
success: success$7,
|
|
2115
|
+
warning: warning$7,
|
|
2116
|
+
danger: danger$7,
|
|
2117
|
+
info: info$7,
|
|
2118
|
+
secondary: secondary$7
|
|
2048
2119
|
};
|
|
2049
2120
|
function Card({
|
|
2050
2121
|
children: children2,
|
|
@@ -2062,6 +2133,7 @@ function Card({
|
|
|
2062
2133
|
{
|
|
2063
2134
|
className: classNames(
|
|
2064
2135
|
styles$9.card,
|
|
2136
|
+
!variant && styles$9.pageBackground,
|
|
2065
2137
|
styles$9[variant],
|
|
2066
2138
|
chamfer2 && chamferStyles.chamfer,
|
|
2067
2139
|
size2 === "large" && styles$9.large,
|
|
@@ -2812,12 +2884,12 @@ const large$4 = "_large_178xv_94";
|
|
|
2812
2884
|
const small$4 = "_small_178xv_99";
|
|
2813
2885
|
const disabledBox = "_disabledBox_178xv_104";
|
|
2814
2886
|
const label$2 = "_label_178xv_109";
|
|
2815
|
-
const primary$
|
|
2816
|
-
const secondary$
|
|
2817
|
-
const success$
|
|
2818
|
-
const warning$
|
|
2819
|
-
const danger$
|
|
2820
|
-
const info$
|
|
2887
|
+
const primary$6 = "_primary_178xv_117";
|
|
2888
|
+
const secondary$6 = "_secondary_178xv_126";
|
|
2889
|
+
const success$6 = "_success_178xv_135";
|
|
2890
|
+
const warning$6 = "_warning_178xv_144";
|
|
2891
|
+
const danger$6 = "_danger_178xv_153";
|
|
2892
|
+
const info$6 = "_info_178xv_162";
|
|
2821
2893
|
const styles$8 = {
|
|
2822
2894
|
wrapper: wrapper$1,
|
|
2823
2895
|
disabled: disabled$4,
|
|
@@ -2827,12 +2899,12 @@ const styles$8 = {
|
|
|
2827
2899
|
small: small$4,
|
|
2828
2900
|
disabledBox,
|
|
2829
2901
|
label: label$2,
|
|
2830
|
-
primary: primary$
|
|
2831
|
-
secondary: secondary$
|
|
2832
|
-
success: success$
|
|
2833
|
-
warning: warning$
|
|
2834
|
-
danger: danger$
|
|
2835
|
-
info: info$
|
|
2902
|
+
primary: primary$6,
|
|
2903
|
+
secondary: secondary$6,
|
|
2904
|
+
success: success$6,
|
|
2905
|
+
warning: warning$6,
|
|
2906
|
+
danger: danger$6,
|
|
2907
|
+
info: info$6
|
|
2836
2908
|
};
|
|
2837
2909
|
const CheckIcon = () => /* @__PURE__ */ jsxRuntimeExports.jsx("svg", { viewBox: "0 0 24 24", fill: "none", role: "presentation", children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
2838
2910
|
"polyline",
|
|
@@ -19122,29 +19194,31 @@ const RadarChart = ({
|
|
|
19122
19194
|
});
|
|
19123
19195
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(ObservablePlot, { options, className, style });
|
|
19124
19196
|
};
|
|
19125
|
-
const input = "
|
|
19126
|
-
const
|
|
19127
|
-
const
|
|
19128
|
-
const
|
|
19129
|
-
const
|
|
19130
|
-
const
|
|
19131
|
-
const
|
|
19132
|
-
const
|
|
19133
|
-
const
|
|
19134
|
-
const
|
|
19135
|
-
const
|
|
19136
|
-
const
|
|
19197
|
+
const input = "_input_1ymvl_7";
|
|
19198
|
+
const pageBackground = "_pageBackground_1ymvl_24";
|
|
19199
|
+
const large$3 = "_large_1ymvl_38";
|
|
19200
|
+
const small$3 = "_small_1ymvl_43";
|
|
19201
|
+
const disabled$3 = "_disabled_1ymvl_48";
|
|
19202
|
+
const primary$5 = "_primary_1ymvl_55";
|
|
19203
|
+
const success$5 = "_success_1ymvl_64";
|
|
19204
|
+
const warning$5 = "_warning_1ymvl_72";
|
|
19205
|
+
const danger$5 = "_danger_1ymvl_80";
|
|
19206
|
+
const info$5 = "_info_1ymvl_88";
|
|
19207
|
+
const secondary$5 = "_secondary_1ymvl_97";
|
|
19208
|
+
const field = "_field_1ymvl_106";
|
|
19209
|
+
const label$1 = "_label_1ymvl_112";
|
|
19137
19210
|
const styles$6 = {
|
|
19138
19211
|
input,
|
|
19212
|
+
pageBackground,
|
|
19139
19213
|
large: large$3,
|
|
19140
19214
|
small: small$3,
|
|
19141
19215
|
disabled: disabled$3,
|
|
19142
|
-
primary: primary$
|
|
19143
|
-
success: success$
|
|
19144
|
-
warning: warning$
|
|
19145
|
-
danger: danger$
|
|
19146
|
-
info: info$
|
|
19147
|
-
secondary: secondary$
|
|
19216
|
+
primary: primary$5,
|
|
19217
|
+
success: success$5,
|
|
19218
|
+
warning: warning$5,
|
|
19219
|
+
danger: danger$5,
|
|
19220
|
+
info: info$5,
|
|
19221
|
+
secondary: secondary$5,
|
|
19148
19222
|
field,
|
|
19149
19223
|
label: label$1
|
|
19150
19224
|
};
|
|
@@ -19164,6 +19238,7 @@ function Input({
|
|
|
19164
19238
|
{
|
|
19165
19239
|
className: classNames(
|
|
19166
19240
|
chamfer2 && chamferStyles.chamfer,
|
|
19241
|
+
!variant && styles$6.pageBackground,
|
|
19167
19242
|
styles$6[variant]
|
|
19168
19243
|
),
|
|
19169
19244
|
children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
@@ -19172,6 +19247,7 @@ function Input({
|
|
|
19172
19247
|
id: inputId,
|
|
19173
19248
|
className: classNames(
|
|
19174
19249
|
styles$6.input,
|
|
19250
|
+
!variant && styles$6.pageBackground,
|
|
19175
19251
|
styles$6[variant],
|
|
19176
19252
|
size2 === "large" && styles$6.large,
|
|
19177
19253
|
size2 === "small" && styles$6.small,
|
|
@@ -19761,12 +19837,12 @@ const small$2 = "_small_hpxu6_93";
|
|
|
19761
19837
|
const disabledDot = "_disabledDot_hpxu6_98";
|
|
19762
19838
|
const label = "_label_hpxu6_102";
|
|
19763
19839
|
const chamfer = "_chamfer_hpxu6_107";
|
|
19764
|
-
const primary$
|
|
19765
|
-
const secondary$
|
|
19766
|
-
const success$
|
|
19767
|
-
const warning$
|
|
19768
|
-
const danger$
|
|
19769
|
-
const info$
|
|
19840
|
+
const primary$4 = "_primary_hpxu6_112";
|
|
19841
|
+
const secondary$4 = "_secondary_hpxu6_121";
|
|
19842
|
+
const success$4 = "_success_hpxu6_130";
|
|
19843
|
+
const warning$4 = "_warning_hpxu6_139";
|
|
19844
|
+
const danger$4 = "_danger_hpxu6_148";
|
|
19845
|
+
const info$4 = "_info_hpxu6_157";
|
|
19770
19846
|
const styles$5 = {
|
|
19771
19847
|
group,
|
|
19772
19848
|
wrapper,
|
|
@@ -19779,12 +19855,12 @@ const styles$5 = {
|
|
|
19779
19855
|
disabledDot,
|
|
19780
19856
|
label,
|
|
19781
19857
|
chamfer,
|
|
19782
|
-
primary: primary$
|
|
19783
|
-
secondary: secondary$
|
|
19784
|
-
success: success$
|
|
19785
|
-
warning: warning$
|
|
19786
|
-
danger: danger$
|
|
19787
|
-
info: info$
|
|
19858
|
+
primary: primary$4,
|
|
19859
|
+
secondary: secondary$4,
|
|
19860
|
+
success: success$4,
|
|
19861
|
+
warning: warning$4,
|
|
19862
|
+
danger: danger$4,
|
|
19863
|
+
info: info$4
|
|
19788
19864
|
};
|
|
19789
19865
|
const RadioGroup$1 = ({ className, children: children2, ...props }) => /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
19790
19866
|
Root2$3,
|
|
@@ -24384,12 +24460,12 @@ const disabled$1 = "_disabled_1u214_41";
|
|
|
24384
24460
|
const icon$1 = "_icon_1u214_46";
|
|
24385
24461
|
const content$3 = "_content_1u214_52";
|
|
24386
24462
|
const item$1 = "_item_1u214_57";
|
|
24387
|
-
const primary$
|
|
24388
|
-
const success$
|
|
24389
|
-
const warning$
|
|
24390
|
-
const danger$
|
|
24391
|
-
const info$
|
|
24392
|
-
const secondary$
|
|
24463
|
+
const primary$3 = "_primary_1u214_79";
|
|
24464
|
+
const success$3 = "_success_1u214_89";
|
|
24465
|
+
const warning$3 = "_warning_1u214_99";
|
|
24466
|
+
const danger$3 = "_danger_1u214_109";
|
|
24467
|
+
const info$3 = "_info_1u214_119";
|
|
24468
|
+
const secondary$3 = "_secondary_1u214_129";
|
|
24393
24469
|
const styles$4 = {
|
|
24394
24470
|
trigger: trigger$1,
|
|
24395
24471
|
large: large$1,
|
|
@@ -24398,12 +24474,12 @@ const styles$4 = {
|
|
|
24398
24474
|
icon: icon$1,
|
|
24399
24475
|
content: content$3,
|
|
24400
24476
|
item: item$1,
|
|
24401
|
-
primary: primary$
|
|
24402
|
-
success: success$
|
|
24403
|
-
warning: warning$
|
|
24404
|
-
danger: danger$
|
|
24405
|
-
info: info$
|
|
24406
|
-
secondary: secondary$
|
|
24477
|
+
primary: primary$3,
|
|
24478
|
+
success: success$3,
|
|
24479
|
+
warning: warning$3,
|
|
24480
|
+
danger: danger$3,
|
|
24481
|
+
info: info$3,
|
|
24482
|
+
secondary: secondary$3
|
|
24407
24483
|
};
|
|
24408
24484
|
function SelectInput({
|
|
24409
24485
|
options,
|
|
@@ -25492,12 +25568,12 @@ const itemLabel = "_itemLabel_12pwu_120";
|
|
|
25492
25568
|
const itemIcon = "_itemIcon_12pwu_124";
|
|
25493
25569
|
const separator = "_separator_12pwu_136";
|
|
25494
25570
|
const arrow = "_arrow_12pwu_141";
|
|
25495
|
-
const primary$
|
|
25496
|
-
const success$
|
|
25497
|
-
const warning$
|
|
25498
|
-
const danger$
|
|
25499
|
-
const info$
|
|
25500
|
-
const secondary$
|
|
25571
|
+
const primary$2 = "_primary_12pwu_148";
|
|
25572
|
+
const success$2 = "_success_12pwu_159";
|
|
25573
|
+
const warning$2 = "_warning_12pwu_170";
|
|
25574
|
+
const danger$2 = "_danger_12pwu_181";
|
|
25575
|
+
const info$2 = "_info_12pwu_192";
|
|
25576
|
+
const secondary$2 = "_secondary_12pwu_203";
|
|
25501
25577
|
const styles$3 = {
|
|
25502
25578
|
trigger,
|
|
25503
25579
|
large,
|
|
@@ -25515,12 +25591,12 @@ const styles$3 = {
|
|
|
25515
25591
|
itemIcon,
|
|
25516
25592
|
separator,
|
|
25517
25593
|
arrow,
|
|
25518
|
-
primary: primary$
|
|
25519
|
-
success: success$
|
|
25520
|
-
warning: warning$
|
|
25521
|
-
danger: danger$
|
|
25522
|
-
info: info$
|
|
25523
|
-
secondary: secondary$
|
|
25594
|
+
primary: primary$2,
|
|
25595
|
+
success: success$2,
|
|
25596
|
+
warning: warning$2,
|
|
25597
|
+
danger: danger$2,
|
|
25598
|
+
info: info$2,
|
|
25599
|
+
secondary: secondary$2
|
|
25524
25600
|
};
|
|
25525
25601
|
function Dropdown({
|
|
25526
25602
|
items = [],
|
|
@@ -25611,16 +25687,29 @@ function Dropdown({
|
|
|
25611
25687
|
) })
|
|
25612
25688
|
] });
|
|
25613
25689
|
}
|
|
25614
|
-
const hatch = "
|
|
25690
|
+
const hatch = "_hatch_lff0l_1";
|
|
25691
|
+
const primary$1 = "_primary_lff0l_7";
|
|
25692
|
+
const success$1 = "_success_lff0l_14";
|
|
25693
|
+
const warning$1 = "_warning_lff0l_21";
|
|
25694
|
+
const danger$1 = "_danger_lff0l_28";
|
|
25695
|
+
const info$1 = "_info_lff0l_35";
|
|
25696
|
+
const secondary$1 = "_secondary_lff0l_42";
|
|
25615
25697
|
const styles$2 = {
|
|
25616
|
-
hatch
|
|
25698
|
+
hatch,
|
|
25699
|
+
primary: primary$1,
|
|
25700
|
+
success: success$1,
|
|
25701
|
+
warning: warning$1,
|
|
25702
|
+
danger: danger$1,
|
|
25703
|
+
info: info$1,
|
|
25704
|
+
secondary: secondary$1
|
|
25617
25705
|
};
|
|
25618
|
-
function Hatch({ children: children2, className, ...props }) {
|
|
25706
|
+
function Hatch({ children: children2, className, variant, ...props }) {
|
|
25619
25707
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
25620
25708
|
"div",
|
|
25621
25709
|
{
|
|
25622
25710
|
className: classNames(
|
|
25623
25711
|
styles$2.hatch,
|
|
25712
|
+
styles$2[variant],
|
|
25624
25713
|
hatchStyles.hatch,
|
|
25625
25714
|
chamferStyles.chamfer,
|
|
25626
25715
|
className
|