@ctlyst.id/voila-ui 1.2.3 → 1.2.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/index.js +25 -25
- package/dist/index.mjs +1498 -1503
- package/dist/style.css +1 -1
- package/dist/types/components/image/image.d.ts +1 -1
- package/dist/types/components/index.d.ts +1 -0
- package/dist/types/components/spinner/index.d.ts +2 -0
- package/dist/types/components/tooltip/tooltip.d.ts +1 -1
- package/dist/types/layouts/box/box.d.ts +77 -77
- package/dist/types/layouts/container/container.d.ts +0 -5
- package/dist/types/layouts/flex/flex.d.ts +60 -60
- package/dist/types/layouts/grid/grid.d.ts +62 -62
- package/dist/types/layouts/stack/stack.d.ts +53 -53
- package/dist/types/layouts/stack/utils.d.ts +1 -1
- package/dist/types/layouts/text/text.css.d.ts +5 -0
- package/dist/types/layouts/text/text.d.ts +156 -154
- package/dist/types/theme/styles/atoms/common.css.d.ts +5 -5
- package/dist/types/theme/styles/atoms/flex.css.d.ts +7 -7
- package/dist/types/theme/styles/atoms/grid.css.d.ts +9 -9
- package/dist/types/theme/styles/atoms/position.css.d.ts +12 -12
- package/dist/types/theme/styles/atoms/sizes.css.d.ts +18 -18
- package/dist/types/theme/styles/atoms/space.css.d.ts +30 -30
- package/dist/types/theme/styles/atoms/typography.css.d.ts +5 -5
- package/dist/types/theme/styles/theme.css.d.ts +1 -1
- package/dist/types/theme/tokens/index.d.ts +1 -1
- package/dist/types/theme/tokens/typography.d.ts +1 -1
- package/package.json +4 -3
- package/dist/types/assets/index.d.ts +0 -1
- /package/dist/types/{assets/Spinner.d.ts → components/spinner/spinner.d.ts} +0 -0
|
@@ -579,10 +579,6 @@ export declare const commonAtoms: import("rainbow-sprinkles/dist/declarations/sr
|
|
|
579
579
|
default: string;
|
|
580
580
|
conditions: Record<string | number, string>;
|
|
581
581
|
};
|
|
582
|
-
normal: {
|
|
583
|
-
default: string;
|
|
584
|
-
conditions: Record<string | number, string>;
|
|
585
|
-
};
|
|
586
582
|
black: {
|
|
587
583
|
default: string;
|
|
588
584
|
conditions: Record<string | number, string>;
|
|
@@ -599,6 +595,10 @@ export declare const commonAtoms: import("rainbow-sprinkles/dist/declarations/sr
|
|
|
599
595
|
default: string;
|
|
600
596
|
conditions: Record<string | number, string>;
|
|
601
597
|
};
|
|
598
|
+
reguler: {
|
|
599
|
+
default: string;
|
|
600
|
+
conditions: Record<string | number, string>;
|
|
601
|
+
};
|
|
602
602
|
medium: {
|
|
603
603
|
default: string;
|
|
604
604
|
conditions: Record<string | number, string>;
|
|
@@ -616,7 +616,7 @@ export declare const commonAtoms: import("rainbow-sprinkles/dist/declarations/sr
|
|
|
616
616
|
readonly hairline: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
617
617
|
readonly thin: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
618
618
|
readonly light: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
619
|
-
readonly
|
|
619
|
+
readonly reguler: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
620
620
|
readonly medium: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
621
621
|
readonly semibold: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
622
622
|
readonly bold: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
@@ -2,15 +2,15 @@ export declare const flexAtoms: import("rainbow-sprinkles/dist/declarations/src/
|
|
|
2
2
|
config: {
|
|
3
3
|
gap: {
|
|
4
4
|
values: {
|
|
5
|
-
|
|
5
|
+
0: {
|
|
6
6
|
default: string;
|
|
7
7
|
conditions: Record<string | number, string>;
|
|
8
8
|
};
|
|
9
|
-
|
|
9
|
+
1: {
|
|
10
10
|
default: string;
|
|
11
11
|
conditions: Record<string | number, string>;
|
|
12
12
|
};
|
|
13
|
-
|
|
13
|
+
auto: {
|
|
14
14
|
default: string;
|
|
15
15
|
conditions: Record<string | number, string>;
|
|
16
16
|
};
|
|
@@ -179,15 +179,15 @@ export declare const flexAtoms: import("rainbow-sprinkles/dist/declarations/src/
|
|
|
179
179
|
};
|
|
180
180
|
flexDirection: {
|
|
181
181
|
values: {
|
|
182
|
-
|
|
182
|
+
column: {
|
|
183
183
|
default: string;
|
|
184
184
|
conditions: Record<string | number, string>;
|
|
185
185
|
};
|
|
186
|
-
column: {
|
|
186
|
+
"column-reverse": {
|
|
187
187
|
default: string;
|
|
188
188
|
conditions: Record<string | number, string>;
|
|
189
189
|
};
|
|
190
|
-
|
|
190
|
+
row: {
|
|
191
191
|
default: string;
|
|
192
192
|
conditions: Record<string | number, string>;
|
|
193
193
|
};
|
|
@@ -196,7 +196,7 @@ export declare const flexAtoms: import("rainbow-sprinkles/dist/declarations/src/
|
|
|
196
196
|
conditions: Record<string | number, string>;
|
|
197
197
|
};
|
|
198
198
|
};
|
|
199
|
-
staticScale: ("
|
|
199
|
+
staticScale: ("column" | "column-reverse" | "row" | "row-reverse")[];
|
|
200
200
|
name: "flexDirection";
|
|
201
201
|
};
|
|
202
202
|
flexWrap: {
|
|
@@ -2,15 +2,15 @@ export declare const gridAtoms: import("rainbow-sprinkles/dist/declarations/src/
|
|
|
2
2
|
config: {
|
|
3
3
|
gap: {
|
|
4
4
|
values: {
|
|
5
|
-
|
|
5
|
+
0: {
|
|
6
6
|
default: string;
|
|
7
7
|
conditions: Record<string | number, string>;
|
|
8
8
|
};
|
|
9
|
-
|
|
9
|
+
1: {
|
|
10
10
|
default: string;
|
|
11
11
|
conditions: Record<string | number, string>;
|
|
12
12
|
};
|
|
13
|
-
|
|
13
|
+
auto: {
|
|
14
14
|
default: string;
|
|
15
15
|
conditions: Record<string | number, string>;
|
|
16
16
|
};
|
|
@@ -179,15 +179,15 @@ export declare const gridAtoms: import("rainbow-sprinkles/dist/declarations/src/
|
|
|
179
179
|
};
|
|
180
180
|
rowGap: {
|
|
181
181
|
values: {
|
|
182
|
-
|
|
182
|
+
0: {
|
|
183
183
|
default: string;
|
|
184
184
|
conditions: Record<string | number, string>;
|
|
185
185
|
};
|
|
186
|
-
|
|
186
|
+
1: {
|
|
187
187
|
default: string;
|
|
188
188
|
conditions: Record<string | number, string>;
|
|
189
189
|
};
|
|
190
|
-
|
|
190
|
+
auto: {
|
|
191
191
|
default: string;
|
|
192
192
|
conditions: Record<string | number, string>;
|
|
193
193
|
};
|
|
@@ -356,15 +356,15 @@ export declare const gridAtoms: import("rainbow-sprinkles/dist/declarations/src/
|
|
|
356
356
|
};
|
|
357
357
|
columnGap: {
|
|
358
358
|
values: {
|
|
359
|
-
|
|
359
|
+
0: {
|
|
360
360
|
default: string;
|
|
361
361
|
conditions: Record<string | number, string>;
|
|
362
362
|
};
|
|
363
|
-
|
|
363
|
+
1: {
|
|
364
364
|
default: string;
|
|
365
365
|
conditions: Record<string | number, string>;
|
|
366
366
|
};
|
|
367
|
-
|
|
367
|
+
auto: {
|
|
368
368
|
default: string;
|
|
369
369
|
conditions: Record<string | number, string>;
|
|
370
370
|
};
|
|
@@ -2,15 +2,15 @@ export declare const positionAtoms: import("rainbow-sprinkles/dist/declarations/
|
|
|
2
2
|
config: {
|
|
3
3
|
top: {
|
|
4
4
|
values: {
|
|
5
|
-
|
|
5
|
+
0: {
|
|
6
6
|
default: string;
|
|
7
7
|
conditions: Record<string | number, string>;
|
|
8
8
|
};
|
|
9
|
-
|
|
9
|
+
1: {
|
|
10
10
|
default: string;
|
|
11
11
|
conditions: Record<string | number, string>;
|
|
12
12
|
};
|
|
13
|
-
|
|
13
|
+
auto: {
|
|
14
14
|
default: string;
|
|
15
15
|
conditions: Record<string | number, string>;
|
|
16
16
|
};
|
|
@@ -179,15 +179,15 @@ export declare const positionAtoms: import("rainbow-sprinkles/dist/declarations/
|
|
|
179
179
|
};
|
|
180
180
|
right: {
|
|
181
181
|
values: {
|
|
182
|
-
|
|
182
|
+
0: {
|
|
183
183
|
default: string;
|
|
184
184
|
conditions: Record<string | number, string>;
|
|
185
185
|
};
|
|
186
|
-
|
|
186
|
+
1: {
|
|
187
187
|
default: string;
|
|
188
188
|
conditions: Record<string | number, string>;
|
|
189
189
|
};
|
|
190
|
-
|
|
190
|
+
auto: {
|
|
191
191
|
default: string;
|
|
192
192
|
conditions: Record<string | number, string>;
|
|
193
193
|
};
|
|
@@ -356,15 +356,15 @@ export declare const positionAtoms: import("rainbow-sprinkles/dist/declarations/
|
|
|
356
356
|
};
|
|
357
357
|
bottom: {
|
|
358
358
|
values: {
|
|
359
|
-
|
|
359
|
+
0: {
|
|
360
360
|
default: string;
|
|
361
361
|
conditions: Record<string | number, string>;
|
|
362
362
|
};
|
|
363
|
-
|
|
363
|
+
1: {
|
|
364
364
|
default: string;
|
|
365
365
|
conditions: Record<string | number, string>;
|
|
366
366
|
};
|
|
367
|
-
|
|
367
|
+
auto: {
|
|
368
368
|
default: string;
|
|
369
369
|
conditions: Record<string | number, string>;
|
|
370
370
|
};
|
|
@@ -533,15 +533,15 @@ export declare const positionAtoms: import("rainbow-sprinkles/dist/declarations/
|
|
|
533
533
|
};
|
|
534
534
|
left: {
|
|
535
535
|
values: {
|
|
536
|
-
|
|
536
|
+
0: {
|
|
537
537
|
default: string;
|
|
538
538
|
conditions: Record<string | number, string>;
|
|
539
539
|
};
|
|
540
|
-
|
|
540
|
+
1: {
|
|
541
541
|
default: string;
|
|
542
542
|
conditions: Record<string | number, string>;
|
|
543
543
|
};
|
|
544
|
-
|
|
544
|
+
auto: {
|
|
545
545
|
default: string;
|
|
546
546
|
conditions: Record<string | number, string>;
|
|
547
547
|
};
|
|
@@ -2,15 +2,15 @@ export declare const sizesAtoms: import("rainbow-sprinkles/dist/declarations/src
|
|
|
2
2
|
config: {
|
|
3
3
|
width: {
|
|
4
4
|
values: {
|
|
5
|
-
|
|
5
|
+
0: {
|
|
6
6
|
default: string;
|
|
7
7
|
conditions: Record<string | number, string>;
|
|
8
8
|
};
|
|
9
|
-
|
|
9
|
+
1: {
|
|
10
10
|
default: string;
|
|
11
11
|
conditions: Record<string | number, string>;
|
|
12
12
|
};
|
|
13
|
-
|
|
13
|
+
auto: {
|
|
14
14
|
default: string;
|
|
15
15
|
conditions: Record<string | number, string>;
|
|
16
16
|
};
|
|
@@ -204,15 +204,15 @@ export declare const sizesAtoms: import("rainbow-sprinkles/dist/declarations/src
|
|
|
204
204
|
};
|
|
205
205
|
minWidth: {
|
|
206
206
|
values: {
|
|
207
|
-
|
|
207
|
+
0: {
|
|
208
208
|
default: string;
|
|
209
209
|
conditions: Record<string | number, string>;
|
|
210
210
|
};
|
|
211
|
-
|
|
211
|
+
1: {
|
|
212
212
|
default: string;
|
|
213
213
|
conditions: Record<string | number, string>;
|
|
214
214
|
};
|
|
215
|
-
|
|
215
|
+
auto: {
|
|
216
216
|
default: string;
|
|
217
217
|
conditions: Record<string | number, string>;
|
|
218
218
|
};
|
|
@@ -406,15 +406,15 @@ export declare const sizesAtoms: import("rainbow-sprinkles/dist/declarations/src
|
|
|
406
406
|
};
|
|
407
407
|
maxWidth: {
|
|
408
408
|
values: {
|
|
409
|
-
|
|
409
|
+
0: {
|
|
410
410
|
default: string;
|
|
411
411
|
conditions: Record<string | number, string>;
|
|
412
412
|
};
|
|
413
|
-
|
|
413
|
+
1: {
|
|
414
414
|
default: string;
|
|
415
415
|
conditions: Record<string | number, string>;
|
|
416
416
|
};
|
|
417
|
-
|
|
417
|
+
auto: {
|
|
418
418
|
default: string;
|
|
419
419
|
conditions: Record<string | number, string>;
|
|
420
420
|
};
|
|
@@ -608,15 +608,15 @@ export declare const sizesAtoms: import("rainbow-sprinkles/dist/declarations/src
|
|
|
608
608
|
};
|
|
609
609
|
height: {
|
|
610
610
|
values: {
|
|
611
|
-
|
|
611
|
+
0: {
|
|
612
612
|
default: string;
|
|
613
613
|
conditions: Record<string | number, string>;
|
|
614
614
|
};
|
|
615
|
-
|
|
615
|
+
1: {
|
|
616
616
|
default: string;
|
|
617
617
|
conditions: Record<string | number, string>;
|
|
618
618
|
};
|
|
619
|
-
|
|
619
|
+
auto: {
|
|
620
620
|
default: string;
|
|
621
621
|
conditions: Record<string | number, string>;
|
|
622
622
|
};
|
|
@@ -810,15 +810,15 @@ export declare const sizesAtoms: import("rainbow-sprinkles/dist/declarations/src
|
|
|
810
810
|
};
|
|
811
811
|
minHeight: {
|
|
812
812
|
values: {
|
|
813
|
-
|
|
813
|
+
0: {
|
|
814
814
|
default: string;
|
|
815
815
|
conditions: Record<string | number, string>;
|
|
816
816
|
};
|
|
817
|
-
|
|
817
|
+
1: {
|
|
818
818
|
default: string;
|
|
819
819
|
conditions: Record<string | number, string>;
|
|
820
820
|
};
|
|
821
|
-
|
|
821
|
+
auto: {
|
|
822
822
|
default: string;
|
|
823
823
|
conditions: Record<string | number, string>;
|
|
824
824
|
};
|
|
@@ -1012,15 +1012,15 @@ export declare const sizesAtoms: import("rainbow-sprinkles/dist/declarations/src
|
|
|
1012
1012
|
};
|
|
1013
1013
|
maxHeight: {
|
|
1014
1014
|
values: {
|
|
1015
|
-
|
|
1015
|
+
0: {
|
|
1016
1016
|
default: string;
|
|
1017
1017
|
conditions: Record<string | number, string>;
|
|
1018
1018
|
};
|
|
1019
|
-
|
|
1019
|
+
1: {
|
|
1020
1020
|
default: string;
|
|
1021
1021
|
conditions: Record<string | number, string>;
|
|
1022
1022
|
};
|
|
1023
|
-
|
|
1023
|
+
auto: {
|
|
1024
1024
|
default: string;
|
|
1025
1025
|
conditions: Record<string | number, string>;
|
|
1026
1026
|
};
|
|
@@ -2,15 +2,15 @@ export declare const spaceAtoms: import("rainbow-sprinkles/dist/declarations/src
|
|
|
2
2
|
config: {
|
|
3
3
|
margin: {
|
|
4
4
|
values: {
|
|
5
|
-
|
|
5
|
+
0: {
|
|
6
6
|
default: string;
|
|
7
7
|
conditions: Record<string | number, string>;
|
|
8
8
|
};
|
|
9
|
-
|
|
9
|
+
1: {
|
|
10
10
|
default: string;
|
|
11
11
|
conditions: Record<string | number, string>;
|
|
12
12
|
};
|
|
13
|
-
|
|
13
|
+
auto: {
|
|
14
14
|
default: string;
|
|
15
15
|
conditions: Record<string | number, string>;
|
|
16
16
|
};
|
|
@@ -179,15 +179,15 @@ export declare const spaceAtoms: import("rainbow-sprinkles/dist/declarations/src
|
|
|
179
179
|
};
|
|
180
180
|
marginTop: {
|
|
181
181
|
values: {
|
|
182
|
-
|
|
182
|
+
0: {
|
|
183
183
|
default: string;
|
|
184
184
|
conditions: Record<string | number, string>;
|
|
185
185
|
};
|
|
186
|
-
|
|
186
|
+
1: {
|
|
187
187
|
default: string;
|
|
188
188
|
conditions: Record<string | number, string>;
|
|
189
189
|
};
|
|
190
|
-
|
|
190
|
+
auto: {
|
|
191
191
|
default: string;
|
|
192
192
|
conditions: Record<string | number, string>;
|
|
193
193
|
};
|
|
@@ -356,15 +356,15 @@ export declare const spaceAtoms: import("rainbow-sprinkles/dist/declarations/src
|
|
|
356
356
|
};
|
|
357
357
|
marginBottom: {
|
|
358
358
|
values: {
|
|
359
|
-
|
|
359
|
+
0: {
|
|
360
360
|
default: string;
|
|
361
361
|
conditions: Record<string | number, string>;
|
|
362
362
|
};
|
|
363
|
-
|
|
363
|
+
1: {
|
|
364
364
|
default: string;
|
|
365
365
|
conditions: Record<string | number, string>;
|
|
366
366
|
};
|
|
367
|
-
|
|
367
|
+
auto: {
|
|
368
368
|
default: string;
|
|
369
369
|
conditions: Record<string | number, string>;
|
|
370
370
|
};
|
|
@@ -533,15 +533,15 @@ export declare const spaceAtoms: import("rainbow-sprinkles/dist/declarations/src
|
|
|
533
533
|
};
|
|
534
534
|
marginLeft: {
|
|
535
535
|
values: {
|
|
536
|
-
|
|
536
|
+
0: {
|
|
537
537
|
default: string;
|
|
538
538
|
conditions: Record<string | number, string>;
|
|
539
539
|
};
|
|
540
|
-
|
|
540
|
+
1: {
|
|
541
541
|
default: string;
|
|
542
542
|
conditions: Record<string | number, string>;
|
|
543
543
|
};
|
|
544
|
-
|
|
544
|
+
auto: {
|
|
545
545
|
default: string;
|
|
546
546
|
conditions: Record<string | number, string>;
|
|
547
547
|
};
|
|
@@ -710,15 +710,15 @@ export declare const spaceAtoms: import("rainbow-sprinkles/dist/declarations/src
|
|
|
710
710
|
};
|
|
711
711
|
marginRight: {
|
|
712
712
|
values: {
|
|
713
|
-
|
|
713
|
+
0: {
|
|
714
714
|
default: string;
|
|
715
715
|
conditions: Record<string | number, string>;
|
|
716
716
|
};
|
|
717
|
-
|
|
717
|
+
1: {
|
|
718
718
|
default: string;
|
|
719
719
|
conditions: Record<string | number, string>;
|
|
720
720
|
};
|
|
721
|
-
|
|
721
|
+
auto: {
|
|
722
722
|
default: string;
|
|
723
723
|
conditions: Record<string | number, string>;
|
|
724
724
|
};
|
|
@@ -887,15 +887,15 @@ export declare const spaceAtoms: import("rainbow-sprinkles/dist/declarations/src
|
|
|
887
887
|
};
|
|
888
888
|
padding: {
|
|
889
889
|
values: {
|
|
890
|
-
|
|
890
|
+
0: {
|
|
891
891
|
default: string;
|
|
892
892
|
conditions: Record<string | number, string>;
|
|
893
893
|
};
|
|
894
|
-
|
|
894
|
+
1: {
|
|
895
895
|
default: string;
|
|
896
896
|
conditions: Record<string | number, string>;
|
|
897
897
|
};
|
|
898
|
-
|
|
898
|
+
auto: {
|
|
899
899
|
default: string;
|
|
900
900
|
conditions: Record<string | number, string>;
|
|
901
901
|
};
|
|
@@ -1064,15 +1064,15 @@ export declare const spaceAtoms: import("rainbow-sprinkles/dist/declarations/src
|
|
|
1064
1064
|
};
|
|
1065
1065
|
paddingTop: {
|
|
1066
1066
|
values: {
|
|
1067
|
-
|
|
1067
|
+
0: {
|
|
1068
1068
|
default: string;
|
|
1069
1069
|
conditions: Record<string | number, string>;
|
|
1070
1070
|
};
|
|
1071
|
-
|
|
1071
|
+
1: {
|
|
1072
1072
|
default: string;
|
|
1073
1073
|
conditions: Record<string | number, string>;
|
|
1074
1074
|
};
|
|
1075
|
-
|
|
1075
|
+
auto: {
|
|
1076
1076
|
default: string;
|
|
1077
1077
|
conditions: Record<string | number, string>;
|
|
1078
1078
|
};
|
|
@@ -1241,15 +1241,15 @@ export declare const spaceAtoms: import("rainbow-sprinkles/dist/declarations/src
|
|
|
1241
1241
|
};
|
|
1242
1242
|
paddingBottom: {
|
|
1243
1243
|
values: {
|
|
1244
|
-
|
|
1244
|
+
0: {
|
|
1245
1245
|
default: string;
|
|
1246
1246
|
conditions: Record<string | number, string>;
|
|
1247
1247
|
};
|
|
1248
|
-
|
|
1248
|
+
1: {
|
|
1249
1249
|
default: string;
|
|
1250
1250
|
conditions: Record<string | number, string>;
|
|
1251
1251
|
};
|
|
1252
|
-
|
|
1252
|
+
auto: {
|
|
1253
1253
|
default: string;
|
|
1254
1254
|
conditions: Record<string | number, string>;
|
|
1255
1255
|
};
|
|
@@ -1418,15 +1418,15 @@ export declare const spaceAtoms: import("rainbow-sprinkles/dist/declarations/src
|
|
|
1418
1418
|
};
|
|
1419
1419
|
paddingLeft: {
|
|
1420
1420
|
values: {
|
|
1421
|
-
|
|
1421
|
+
0: {
|
|
1422
1422
|
default: string;
|
|
1423
1423
|
conditions: Record<string | number, string>;
|
|
1424
1424
|
};
|
|
1425
|
-
|
|
1425
|
+
1: {
|
|
1426
1426
|
default: string;
|
|
1427
1427
|
conditions: Record<string | number, string>;
|
|
1428
1428
|
};
|
|
1429
|
-
|
|
1429
|
+
auto: {
|
|
1430
1430
|
default: string;
|
|
1431
1431
|
conditions: Record<string | number, string>;
|
|
1432
1432
|
};
|
|
@@ -1595,15 +1595,15 @@ export declare const spaceAtoms: import("rainbow-sprinkles/dist/declarations/src
|
|
|
1595
1595
|
};
|
|
1596
1596
|
paddingRight: {
|
|
1597
1597
|
values: {
|
|
1598
|
-
|
|
1598
|
+
0: {
|
|
1599
1599
|
default: string;
|
|
1600
1600
|
conditions: Record<string | number, string>;
|
|
1601
1601
|
};
|
|
1602
|
-
|
|
1602
|
+
1: {
|
|
1603
1603
|
default: string;
|
|
1604
1604
|
conditions: Record<string | number, string>;
|
|
1605
1605
|
};
|
|
1606
|
-
|
|
1606
|
+
auto: {
|
|
1607
1607
|
default: string;
|
|
1608
1608
|
conditions: Record<string | number, string>;
|
|
1609
1609
|
};
|
|
@@ -201,10 +201,6 @@ export declare const typographyAtoms: import("rainbow-sprinkles/dist/declaration
|
|
|
201
201
|
default: string;
|
|
202
202
|
conditions: Record<string | number, string>;
|
|
203
203
|
};
|
|
204
|
-
normal: {
|
|
205
|
-
default: string;
|
|
206
|
-
conditions: Record<string | number, string>;
|
|
207
|
-
};
|
|
208
204
|
black: {
|
|
209
205
|
default: string;
|
|
210
206
|
conditions: Record<string | number, string>;
|
|
@@ -221,6 +217,10 @@ export declare const typographyAtoms: import("rainbow-sprinkles/dist/declaration
|
|
|
221
217
|
default: string;
|
|
222
218
|
conditions: Record<string | number, string>;
|
|
223
219
|
};
|
|
220
|
+
reguler: {
|
|
221
|
+
default: string;
|
|
222
|
+
conditions: Record<string | number, string>;
|
|
223
|
+
};
|
|
224
224
|
medium: {
|
|
225
225
|
default: string;
|
|
226
226
|
conditions: Record<string | number, string>;
|
|
@@ -238,7 +238,7 @@ export declare const typographyAtoms: import("rainbow-sprinkles/dist/declaration
|
|
|
238
238
|
readonly hairline: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
239
239
|
readonly thin: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
240
240
|
readonly light: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
241
|
-
readonly
|
|
241
|
+
readonly reguler: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
242
242
|
readonly medium: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
243
243
|
readonly semibold: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
244
244
|
readonly bold: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
@@ -85,7 +85,7 @@ export declare const theme: {
|
|
|
85
85
|
readonly hairline: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
86
86
|
readonly thin: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
87
87
|
readonly light: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
88
|
-
readonly
|
|
88
|
+
readonly reguler: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
89
89
|
readonly medium: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
90
90
|
readonly semibold: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
91
91
|
readonly bold: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ctlyst.id/voila-ui",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
4
4
|
"description": "UI library for voila user facing library.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -37,8 +37,9 @@
|
|
|
37
37
|
"type-check": "tsc --emitDeclarationOnly"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@ctlyst.id/icons": "^1.0.
|
|
40
|
+
"@ctlyst.id/icons": "^1.0.4",
|
|
41
41
|
"@ctlyst.id/utils": "^1.0.3",
|
|
42
|
+
"@radix-ui/react-accordion": "^1.1.0",
|
|
42
43
|
"@radix-ui/react-checkbox": "^1.0.3",
|
|
43
44
|
"@radix-ui/react-dialog": "^1.0.3",
|
|
44
45
|
"@radix-ui/react-portal": "^1.0.1",
|
|
@@ -78,5 +79,5 @@
|
|
|
78
79
|
"jest-environment-jsdom": "29.4.1",
|
|
79
80
|
"polished": "^4.2.2"
|
|
80
81
|
},
|
|
81
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "92585ed1a98c2b327f29bffec1d7d86c1c14fe11"
|
|
82
83
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as Spinner } from './Spinner';
|
|
File without changes
|