@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.cjs.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;
|
|
@@ -1864,27 +1930,29 @@ function clsx() {
|
|
|
1864
1930
|
for (var e3, t4, f2 = 0, n2 = "", o2 = arguments.length; f2 < o2; f2++) (e3 = arguments[f2]) && (t4 = r(e3)) && (n2 && (n2 += " "), n2 += t4);
|
|
1865
1931
|
return n2;
|
|
1866
1932
|
}
|
|
1867
|
-
const button = "
|
|
1868
|
-
const
|
|
1869
|
-
const
|
|
1870
|
-
const
|
|
1871
|
-
const
|
|
1872
|
-
const
|
|
1873
|
-
const
|
|
1874
|
-
const
|
|
1875
|
-
const
|
|
1876
|
-
const
|
|
1933
|
+
const button = "_button_105y0_7";
|
|
1934
|
+
const pageBackground$2 = "_pageBackground_105y0_24";
|
|
1935
|
+
const large$6 = "_large_105y0_34";
|
|
1936
|
+
const small$6 = "_small_105y0_39";
|
|
1937
|
+
const disabled$6 = "_disabled_105y0_44";
|
|
1938
|
+
const primary$8 = "_primary_105y0_51";
|
|
1939
|
+
const success$8 = "_success_105y0_64";
|
|
1940
|
+
const warning$8 = "_warning_105y0_77";
|
|
1941
|
+
const danger$8 = "_danger_105y0_90";
|
|
1942
|
+
const info$8 = "_info_105y0_103";
|
|
1943
|
+
const secondary$8 = "_secondary_105y0_116";
|
|
1877
1944
|
const styles$b = {
|
|
1878
1945
|
button,
|
|
1946
|
+
pageBackground: pageBackground$2,
|
|
1879
1947
|
large: large$6,
|
|
1880
1948
|
small: small$6,
|
|
1881
1949
|
disabled: disabled$6,
|
|
1882
|
-
primary: primary$
|
|
1883
|
-
success: success$
|
|
1884
|
-
warning: warning$
|
|
1885
|
-
danger: danger$
|
|
1886
|
-
info: info$
|
|
1887
|
-
secondary: secondary$
|
|
1950
|
+
primary: primary$8,
|
|
1951
|
+
success: success$8,
|
|
1952
|
+
warning: warning$8,
|
|
1953
|
+
danger: danger$8,
|
|
1954
|
+
info: info$8,
|
|
1955
|
+
secondary: secondary$8
|
|
1888
1956
|
};
|
|
1889
1957
|
const chamfer$1 = "_chamfer_1o5rm_1";
|
|
1890
1958
|
const disabled$5 = "_disabled_1o5rm_15";
|
|
@@ -1924,6 +1992,7 @@ function Button({
|
|
|
1924
1992
|
{
|
|
1925
1993
|
className: clsx(
|
|
1926
1994
|
styles$b.button,
|
|
1995
|
+
!variant && styles$b.pageBackground,
|
|
1927
1996
|
styles$b[variant],
|
|
1928
1997
|
chamfer2 && chamferStyles.chamfer,
|
|
1929
1998
|
size2 === "large" && styles$b.large,
|
|
@@ -2038,31 +2107,33 @@ function requireClassnames() {
|
|
|
2038
2107
|
}
|
|
2039
2108
|
var classnamesExports = requireClassnames();
|
|
2040
2109
|
const classNames = /* @__PURE__ */ getDefaultExportFromCjs(classnamesExports);
|
|
2041
|
-
const card = "
|
|
2042
|
-
const
|
|
2043
|
-
const
|
|
2044
|
-
const
|
|
2045
|
-
const
|
|
2046
|
-
const
|
|
2047
|
-
const
|
|
2048
|
-
const
|
|
2049
|
-
const
|
|
2050
|
-
const
|
|
2051
|
-
const
|
|
2052
|
-
const
|
|
2110
|
+
const card = "_card_et6fi_1";
|
|
2111
|
+
const pageBackground$1 = "_pageBackground_et6fi_11";
|
|
2112
|
+
const title$1 = "_title_et6fi_18";
|
|
2113
|
+
const body$1 = "_body_et6fi_25";
|
|
2114
|
+
const footer$1 = "_footer_et6fi_30";
|
|
2115
|
+
const large$5 = "_large_et6fi_37";
|
|
2116
|
+
const small$5 = "_small_et6fi_43";
|
|
2117
|
+
const primary$7 = "_primary_et6fi_51";
|
|
2118
|
+
const success$7 = "_success_et6fi_58";
|
|
2119
|
+
const warning$7 = "_warning_et6fi_65";
|
|
2120
|
+
const danger$7 = "_danger_et6fi_72";
|
|
2121
|
+
const info$7 = "_info_et6fi_79";
|
|
2122
|
+
const secondary$7 = "_secondary_et6fi_86";
|
|
2053
2123
|
const styles$9 = {
|
|
2054
2124
|
card,
|
|
2125
|
+
pageBackground: pageBackground$1,
|
|
2055
2126
|
title: title$1,
|
|
2056
2127
|
body: body$1,
|
|
2057
2128
|
footer: footer$1,
|
|
2058
2129
|
large: large$5,
|
|
2059
2130
|
small: small$5,
|
|
2060
|
-
primary: primary$
|
|
2061
|
-
success: success$
|
|
2062
|
-
warning: warning$
|
|
2063
|
-
danger: danger$
|
|
2064
|
-
info: info$
|
|
2065
|
-
secondary: secondary$
|
|
2131
|
+
primary: primary$7,
|
|
2132
|
+
success: success$7,
|
|
2133
|
+
warning: warning$7,
|
|
2134
|
+
danger: danger$7,
|
|
2135
|
+
info: info$7,
|
|
2136
|
+
secondary: secondary$7
|
|
2066
2137
|
};
|
|
2067
2138
|
function Card({
|
|
2068
2139
|
children: children2,
|
|
@@ -2080,6 +2151,7 @@ function Card({
|
|
|
2080
2151
|
{
|
|
2081
2152
|
className: classNames(
|
|
2082
2153
|
styles$9.card,
|
|
2154
|
+
!variant && styles$9.pageBackground,
|
|
2083
2155
|
styles$9[variant],
|
|
2084
2156
|
chamfer2 && chamferStyles.chamfer,
|
|
2085
2157
|
size2 === "large" && styles$9.large,
|
|
@@ -2830,12 +2902,12 @@ const large$4 = "_large_178xv_94";
|
|
|
2830
2902
|
const small$4 = "_small_178xv_99";
|
|
2831
2903
|
const disabledBox = "_disabledBox_178xv_104";
|
|
2832
2904
|
const label$2 = "_label_178xv_109";
|
|
2833
|
-
const primary$
|
|
2834
|
-
const secondary$
|
|
2835
|
-
const success$
|
|
2836
|
-
const warning$
|
|
2837
|
-
const danger$
|
|
2838
|
-
const info$
|
|
2905
|
+
const primary$6 = "_primary_178xv_117";
|
|
2906
|
+
const secondary$6 = "_secondary_178xv_126";
|
|
2907
|
+
const success$6 = "_success_178xv_135";
|
|
2908
|
+
const warning$6 = "_warning_178xv_144";
|
|
2909
|
+
const danger$6 = "_danger_178xv_153";
|
|
2910
|
+
const info$6 = "_info_178xv_162";
|
|
2839
2911
|
const styles$8 = {
|
|
2840
2912
|
wrapper: wrapper$1,
|
|
2841
2913
|
disabled: disabled$4,
|
|
@@ -2845,12 +2917,12 @@ const styles$8 = {
|
|
|
2845
2917
|
small: small$4,
|
|
2846
2918
|
disabledBox,
|
|
2847
2919
|
label: label$2,
|
|
2848
|
-
primary: primary$
|
|
2849
|
-
secondary: secondary$
|
|
2850
|
-
success: success$
|
|
2851
|
-
warning: warning$
|
|
2852
|
-
danger: danger$
|
|
2853
|
-
info: info$
|
|
2920
|
+
primary: primary$6,
|
|
2921
|
+
secondary: secondary$6,
|
|
2922
|
+
success: success$6,
|
|
2923
|
+
warning: warning$6,
|
|
2924
|
+
danger: danger$6,
|
|
2925
|
+
info: info$6
|
|
2854
2926
|
};
|
|
2855
2927
|
const CheckIcon = () => /* @__PURE__ */ jsxRuntimeExports.jsx("svg", { viewBox: "0 0 24 24", fill: "none", role: "presentation", children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
2856
2928
|
"polyline",
|
|
@@ -19140,29 +19212,31 @@ const RadarChart = ({
|
|
|
19140
19212
|
});
|
|
19141
19213
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(ObservablePlot, { options, className, style });
|
|
19142
19214
|
};
|
|
19143
|
-
const input = "
|
|
19144
|
-
const
|
|
19145
|
-
const
|
|
19146
|
-
const
|
|
19147
|
-
const
|
|
19148
|
-
const
|
|
19149
|
-
const
|
|
19150
|
-
const
|
|
19151
|
-
const
|
|
19152
|
-
const
|
|
19153
|
-
const
|
|
19154
|
-
const
|
|
19215
|
+
const input = "_input_1ymvl_7";
|
|
19216
|
+
const pageBackground = "_pageBackground_1ymvl_24";
|
|
19217
|
+
const large$3 = "_large_1ymvl_38";
|
|
19218
|
+
const small$3 = "_small_1ymvl_43";
|
|
19219
|
+
const disabled$3 = "_disabled_1ymvl_48";
|
|
19220
|
+
const primary$5 = "_primary_1ymvl_55";
|
|
19221
|
+
const success$5 = "_success_1ymvl_64";
|
|
19222
|
+
const warning$5 = "_warning_1ymvl_72";
|
|
19223
|
+
const danger$5 = "_danger_1ymvl_80";
|
|
19224
|
+
const info$5 = "_info_1ymvl_88";
|
|
19225
|
+
const secondary$5 = "_secondary_1ymvl_97";
|
|
19226
|
+
const field = "_field_1ymvl_106";
|
|
19227
|
+
const label$1 = "_label_1ymvl_112";
|
|
19155
19228
|
const styles$6 = {
|
|
19156
19229
|
input,
|
|
19230
|
+
pageBackground,
|
|
19157
19231
|
large: large$3,
|
|
19158
19232
|
small: small$3,
|
|
19159
19233
|
disabled: disabled$3,
|
|
19160
|
-
primary: primary$
|
|
19161
|
-
success: success$
|
|
19162
|
-
warning: warning$
|
|
19163
|
-
danger: danger$
|
|
19164
|
-
info: info$
|
|
19165
|
-
secondary: secondary$
|
|
19234
|
+
primary: primary$5,
|
|
19235
|
+
success: success$5,
|
|
19236
|
+
warning: warning$5,
|
|
19237
|
+
danger: danger$5,
|
|
19238
|
+
info: info$5,
|
|
19239
|
+
secondary: secondary$5,
|
|
19166
19240
|
field,
|
|
19167
19241
|
label: label$1
|
|
19168
19242
|
};
|
|
@@ -19182,6 +19256,7 @@ function Input({
|
|
|
19182
19256
|
{
|
|
19183
19257
|
className: classNames(
|
|
19184
19258
|
chamfer2 && chamferStyles.chamfer,
|
|
19259
|
+
!variant && styles$6.pageBackground,
|
|
19185
19260
|
styles$6[variant]
|
|
19186
19261
|
),
|
|
19187
19262
|
children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
@@ -19190,6 +19265,7 @@ function Input({
|
|
|
19190
19265
|
id: inputId,
|
|
19191
19266
|
className: classNames(
|
|
19192
19267
|
styles$6.input,
|
|
19268
|
+
!variant && styles$6.pageBackground,
|
|
19193
19269
|
styles$6[variant],
|
|
19194
19270
|
size2 === "large" && styles$6.large,
|
|
19195
19271
|
size2 === "small" && styles$6.small,
|
|
@@ -19779,12 +19855,12 @@ const small$2 = "_small_hpxu6_93";
|
|
|
19779
19855
|
const disabledDot = "_disabledDot_hpxu6_98";
|
|
19780
19856
|
const label = "_label_hpxu6_102";
|
|
19781
19857
|
const chamfer = "_chamfer_hpxu6_107";
|
|
19782
|
-
const primary$
|
|
19783
|
-
const secondary$
|
|
19784
|
-
const success$
|
|
19785
|
-
const warning$
|
|
19786
|
-
const danger$
|
|
19787
|
-
const info$
|
|
19858
|
+
const primary$4 = "_primary_hpxu6_112";
|
|
19859
|
+
const secondary$4 = "_secondary_hpxu6_121";
|
|
19860
|
+
const success$4 = "_success_hpxu6_130";
|
|
19861
|
+
const warning$4 = "_warning_hpxu6_139";
|
|
19862
|
+
const danger$4 = "_danger_hpxu6_148";
|
|
19863
|
+
const info$4 = "_info_hpxu6_157";
|
|
19788
19864
|
const styles$5 = {
|
|
19789
19865
|
group,
|
|
19790
19866
|
wrapper,
|
|
@@ -19797,12 +19873,12 @@ const styles$5 = {
|
|
|
19797
19873
|
disabledDot,
|
|
19798
19874
|
label,
|
|
19799
19875
|
chamfer,
|
|
19800
|
-
primary: primary$
|
|
19801
|
-
secondary: secondary$
|
|
19802
|
-
success: success$
|
|
19803
|
-
warning: warning$
|
|
19804
|
-
danger: danger$
|
|
19805
|
-
info: info$
|
|
19876
|
+
primary: primary$4,
|
|
19877
|
+
secondary: secondary$4,
|
|
19878
|
+
success: success$4,
|
|
19879
|
+
warning: warning$4,
|
|
19880
|
+
danger: danger$4,
|
|
19881
|
+
info: info$4
|
|
19806
19882
|
};
|
|
19807
19883
|
const RadioGroup$1 = ({ className, children: children2, ...props }) => /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
19808
19884
|
Root2$3,
|
|
@@ -24402,12 +24478,12 @@ const disabled$1 = "_disabled_1u214_41";
|
|
|
24402
24478
|
const icon$1 = "_icon_1u214_46";
|
|
24403
24479
|
const content$3 = "_content_1u214_52";
|
|
24404
24480
|
const item$1 = "_item_1u214_57";
|
|
24405
|
-
const primary$
|
|
24406
|
-
const success$
|
|
24407
|
-
const warning$
|
|
24408
|
-
const danger$
|
|
24409
|
-
const info$
|
|
24410
|
-
const secondary$
|
|
24481
|
+
const primary$3 = "_primary_1u214_79";
|
|
24482
|
+
const success$3 = "_success_1u214_89";
|
|
24483
|
+
const warning$3 = "_warning_1u214_99";
|
|
24484
|
+
const danger$3 = "_danger_1u214_109";
|
|
24485
|
+
const info$3 = "_info_1u214_119";
|
|
24486
|
+
const secondary$3 = "_secondary_1u214_129";
|
|
24411
24487
|
const styles$4 = {
|
|
24412
24488
|
trigger: trigger$1,
|
|
24413
24489
|
large: large$1,
|
|
@@ -24416,12 +24492,12 @@ const styles$4 = {
|
|
|
24416
24492
|
icon: icon$1,
|
|
24417
24493
|
content: content$3,
|
|
24418
24494
|
item: item$1,
|
|
24419
|
-
primary: primary$
|
|
24420
|
-
success: success$
|
|
24421
|
-
warning: warning$
|
|
24422
|
-
danger: danger$
|
|
24423
|
-
info: info$
|
|
24424
|
-
secondary: secondary$
|
|
24495
|
+
primary: primary$3,
|
|
24496
|
+
success: success$3,
|
|
24497
|
+
warning: warning$3,
|
|
24498
|
+
danger: danger$3,
|
|
24499
|
+
info: info$3,
|
|
24500
|
+
secondary: secondary$3
|
|
24425
24501
|
};
|
|
24426
24502
|
function SelectInput({
|
|
24427
24503
|
options,
|
|
@@ -25510,12 +25586,12 @@ const itemLabel = "_itemLabel_12pwu_120";
|
|
|
25510
25586
|
const itemIcon = "_itemIcon_12pwu_124";
|
|
25511
25587
|
const separator = "_separator_12pwu_136";
|
|
25512
25588
|
const arrow = "_arrow_12pwu_141";
|
|
25513
|
-
const primary$
|
|
25514
|
-
const success$
|
|
25515
|
-
const warning$
|
|
25516
|
-
const danger$
|
|
25517
|
-
const info$
|
|
25518
|
-
const secondary$
|
|
25589
|
+
const primary$2 = "_primary_12pwu_148";
|
|
25590
|
+
const success$2 = "_success_12pwu_159";
|
|
25591
|
+
const warning$2 = "_warning_12pwu_170";
|
|
25592
|
+
const danger$2 = "_danger_12pwu_181";
|
|
25593
|
+
const info$2 = "_info_12pwu_192";
|
|
25594
|
+
const secondary$2 = "_secondary_12pwu_203";
|
|
25519
25595
|
const styles$3 = {
|
|
25520
25596
|
trigger,
|
|
25521
25597
|
large,
|
|
@@ -25533,12 +25609,12 @@ const styles$3 = {
|
|
|
25533
25609
|
itemIcon,
|
|
25534
25610
|
separator,
|
|
25535
25611
|
arrow,
|
|
25536
|
-
primary: primary$
|
|
25537
|
-
success: success$
|
|
25538
|
-
warning: warning$
|
|
25539
|
-
danger: danger$
|
|
25540
|
-
info: info$
|
|
25541
|
-
secondary: secondary$
|
|
25612
|
+
primary: primary$2,
|
|
25613
|
+
success: success$2,
|
|
25614
|
+
warning: warning$2,
|
|
25615
|
+
danger: danger$2,
|
|
25616
|
+
info: info$2,
|
|
25617
|
+
secondary: secondary$2
|
|
25542
25618
|
};
|
|
25543
25619
|
function Dropdown({
|
|
25544
25620
|
items = [],
|
|
@@ -25629,16 +25705,29 @@ function Dropdown({
|
|
|
25629
25705
|
) })
|
|
25630
25706
|
] });
|
|
25631
25707
|
}
|
|
25632
|
-
const hatch = "
|
|
25708
|
+
const hatch = "_hatch_lff0l_1";
|
|
25709
|
+
const primary$1 = "_primary_lff0l_7";
|
|
25710
|
+
const success$1 = "_success_lff0l_14";
|
|
25711
|
+
const warning$1 = "_warning_lff0l_21";
|
|
25712
|
+
const danger$1 = "_danger_lff0l_28";
|
|
25713
|
+
const info$1 = "_info_lff0l_35";
|
|
25714
|
+
const secondary$1 = "_secondary_lff0l_42";
|
|
25633
25715
|
const styles$2 = {
|
|
25634
|
-
hatch
|
|
25716
|
+
hatch,
|
|
25717
|
+
primary: primary$1,
|
|
25718
|
+
success: success$1,
|
|
25719
|
+
warning: warning$1,
|
|
25720
|
+
danger: danger$1,
|
|
25721
|
+
info: info$1,
|
|
25722
|
+
secondary: secondary$1
|
|
25635
25723
|
};
|
|
25636
|
-
function Hatch({ children: children2, className, ...props }) {
|
|
25724
|
+
function Hatch({ children: children2, className, variant, ...props }) {
|
|
25637
25725
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
25638
25726
|
"div",
|
|
25639
25727
|
{
|
|
25640
25728
|
className: classNames(
|
|
25641
25729
|
styles$2.hatch,
|
|
25730
|
+
styles$2[variant],
|
|
25642
25731
|
hatchStyles.hatch,
|
|
25643
25732
|
chamferStyles.chamfer,
|
|
25644
25733
|
className
|