@animus-ui/core 0.1.1-beta.8 → 0.1.1-c5e4903f.0

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/config.d.ts CHANGED
@@ -3,14 +3,14 @@ export declare const color: {
3
3
  readonly property: "color";
4
4
  readonly scale: "colors";
5
5
  };
6
- readonly textColor: {
7
- readonly property: "color";
8
- readonly scale: "colors";
9
- };
10
6
  readonly bg: {
11
7
  readonly property: "backgroundColor";
12
8
  readonly scale: "colors";
13
9
  };
10
+ readonly gradient: {
11
+ readonly property: "backgroundImage";
12
+ readonly scale: "gradients";
13
+ };
14
14
  readonly borderColor: {
15
15
  readonly property: "borderColor";
16
16
  readonly scale: "colors";
@@ -41,6 +41,14 @@ export declare const color: {
41
41
  readonly property: "borderBottomColor";
42
42
  readonly scale: "colors";
43
43
  };
44
+ readonly fill: {
45
+ readonly property: "fill";
46
+ readonly scale: "colors";
47
+ };
48
+ readonly stroke: {
49
+ readonly property: "stroke";
50
+ readonly scale: "colors";
51
+ };
44
52
  };
45
53
  export declare const border: {
46
54
  readonly border: {
@@ -82,75 +90,82 @@ export declare const border: {
82
90
  };
83
91
  readonly borderWidth: {
84
92
  readonly property: "borderWidth";
93
+ readonly scale: "borderWidths";
85
94
  };
86
95
  readonly borderWidthX: {
87
96
  readonly property: "borderWidth";
88
97
  readonly properties: readonly ["borderLeftWidth", "borderRightWidth"];
98
+ readonly scale: "borderWidths";
89
99
  };
90
100
  readonly borderWidthY: {
91
101
  readonly property: "borderWidth";
92
102
  readonly properties: readonly ["borderTopWidth", "borderBottomWidth"];
103
+ readonly scale: "borderWidths";
93
104
  };
94
105
  readonly borderWidthLeft: {
95
106
  readonly property: "borderLeftWidth";
107
+ readonly scale: "borderWidths";
96
108
  };
97
109
  readonly borderWidthRight: {
98
110
  readonly property: "borderRightWidth";
111
+ readonly scale: "borderWidths";
99
112
  };
100
113
  readonly borderWidthTop: {
101
114
  readonly property: "borderTopWidth";
115
+ readonly scale: "borderWidths";
102
116
  };
103
117
  readonly borderWidthBottom: {
104
118
  readonly property: "borderBottomWidth";
119
+ readonly scale: "borderWidths";
105
120
  };
106
121
  readonly borderRadius: {
107
122
  readonly property: "borderRadius";
108
123
  readonly scale: "radii";
109
- readonly transform: (val: string | number) => string;
124
+ readonly transform: (value: string | number) => string | 0;
110
125
  };
111
126
  readonly borderRadiusLeft: {
112
127
  readonly property: "borderRadius";
113
128
  readonly properties: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
114
129
  readonly scale: "radii";
115
- readonly transform: (val: string | number) => string;
130
+ readonly transform: (value: string | number) => string | 0;
116
131
  };
117
132
  readonly borderRadiusTop: {
118
133
  readonly property: "borderRadius";
119
134
  readonly properties: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
120
135
  readonly scale: "radii";
121
- readonly transform: (val: string | number) => string;
136
+ readonly transform: (value: string | number) => string | 0;
122
137
  };
123
138
  readonly borderRadiusBottom: {
124
139
  readonly property: "borderRadius";
125
140
  readonly properties: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
126
141
  readonly scale: "radii";
127
- readonly transform: (val: string | number) => string;
142
+ readonly transform: (value: string | number) => string | 0;
128
143
  };
129
144
  readonly borderRadiusRight: {
130
145
  readonly property: "borderRadius";
131
146
  readonly properties: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
132
147
  readonly scale: "radii";
133
- readonly transform: (val: string | number) => string;
148
+ readonly transform: (value: string | number) => string | 0;
134
149
  };
135
150
  readonly borderRadiusTopLeft: {
136
151
  readonly property: "borderTopLeftRadius";
137
152
  readonly scale: "radii";
138
- readonly transform: (val: string | number) => string;
153
+ readonly transform: (value: string | number) => string | 0;
139
154
  };
140
155
  readonly borderRadiusTopRight: {
141
156
  readonly property: "borderTopRightRadius";
142
157
  readonly scale: "radii";
143
- readonly transform: (val: string | number) => string;
158
+ readonly transform: (value: string | number) => string | 0;
144
159
  };
145
160
  readonly borderRadiusBottomRight: {
146
161
  readonly property: "borderBottomRightRadius";
147
162
  readonly scale: "radii";
148
- readonly transform: (val: string | number) => string;
163
+ readonly transform: (value: string | number) => string | 0;
149
164
  };
150
165
  readonly borderRadiusBottomLeft: {
151
166
  readonly property: "borderBottomLeftRadius";
152
167
  readonly scale: "radii";
153
- readonly transform: (val: string | number) => string;
168
+ readonly transform: (value: string | number) => string | 0;
154
169
  };
155
170
  readonly borderStyle: {
156
171
  readonly property: "borderStyle";
@@ -179,15 +194,15 @@ export declare const border: {
179
194
  export declare const flex: {
180
195
  readonly gap: {
181
196
  readonly property: "gap";
182
- readonly scale: "spacing";
197
+ readonly scale: "space";
183
198
  };
184
199
  readonly rowGap: {
185
200
  readonly property: "rowGap";
186
- readonly scale: "spacing";
201
+ readonly scale: "space";
187
202
  };
188
203
  readonly columnGap: {
189
204
  readonly property: "columnGap";
190
- readonly scale: "spacing";
205
+ readonly scale: "space";
191
206
  };
192
207
  readonly flexBasis: {
193
208
  readonly property: "flexBasis";
@@ -238,15 +253,15 @@ export declare const flex: {
238
253
  export declare const grid: {
239
254
  readonly gap: {
240
255
  readonly property: "gap";
241
- readonly scale: "spacing";
256
+ readonly scale: "space";
242
257
  };
243
258
  readonly rowGap: {
244
259
  readonly property: "rowGap";
245
- readonly scale: "spacing";
260
+ readonly scale: "space";
246
261
  };
247
262
  readonly columnGap: {
248
263
  readonly property: "columnGap";
249
- readonly scale: "spacing";
264
+ readonly scale: "space";
250
265
  };
251
266
  readonly gridColumn: {
252
267
  readonly property: "gridColumn";
@@ -385,17 +400,21 @@ export declare const positioning: {
385
400
  };
386
401
  readonly zIndex: {
387
402
  readonly property: "zIndex";
403
+ readonly scale: "zIndices";
388
404
  };
389
405
  readonly opacity: {
390
406
  readonly property: "opacity";
407
+ readonly scale: "opacities";
391
408
  };
392
409
  };
393
410
  export declare const shadows: {
394
411
  readonly boxShadow: {
395
412
  readonly property: "boxShadow";
413
+ readonly scale: "shadows";
396
414
  };
397
415
  readonly textShadow: {
398
416
  readonly property: "textShadow";
417
+ readonly scale: "shadows";
399
418
  };
400
419
  };
401
420
  export declare const layout: {
@@ -489,23 +508,24 @@ export declare const layout: {
489
508
  export declare const typography: {
490
509
  readonly fontFamily: {
491
510
  readonly property: "fontFamily";
492
- readonly scale: "fontFamily";
511
+ readonly scale: "fonts";
493
512
  };
494
513
  readonly fontWeight: {
495
514
  readonly property: "fontWeight";
496
- readonly scale: "fontWeight";
515
+ readonly scale: "fontWeights";
497
516
  };
498
517
  readonly lineHeight: {
499
518
  readonly property: "lineHeight";
500
- readonly scale: "lineHeight";
519
+ readonly scale: "lineHeights";
501
520
  readonly lineHeight: "lineHeight";
502
521
  };
503
522
  readonly fontSize: {
504
523
  readonly property: "fontSize";
505
- readonly scale: "fontSize";
524
+ readonly scale: "fontSizes";
506
525
  };
507
526
  readonly letterSpacing: {
508
527
  readonly property: "letterSpacing";
528
+ readonly scale: "letterSpacings";
509
529
  };
510
530
  readonly textAlign: {
511
531
  readonly property: "textAlign";
@@ -526,63 +546,76 @@ export declare const typography: {
526
546
  export declare const space: {
527
547
  readonly p: {
528
548
  readonly property: "padding";
529
- readonly scale: "spacing";
549
+ readonly scale: "space";
530
550
  };
531
551
  readonly px: {
532
552
  readonly property: "padding";
533
553
  readonly properties: readonly ["paddingLeft", "paddingRight"];
534
- readonly scale: "spacing";
554
+ readonly scale: "space";
535
555
  };
536
556
  readonly py: {
537
557
  readonly property: "padding";
538
558
  readonly properties: readonly ["paddingTop", "paddingBottom"];
539
- readonly scale: "spacing";
559
+ readonly scale: "space";
540
560
  };
541
561
  readonly pt: {
542
562
  readonly property: "paddingTop";
543
- readonly scale: "spacing";
563
+ readonly scale: "space";
544
564
  };
545
565
  readonly pb: {
546
566
  readonly property: "paddingBottom";
547
- readonly scale: "spacing";
567
+ readonly scale: "space";
548
568
  };
549
569
  readonly pr: {
550
570
  readonly property: "paddingRight";
551
- readonly scale: "spacing";
571
+ readonly scale: "space";
552
572
  };
553
573
  readonly pl: {
554
574
  readonly property: "paddingLeft";
555
- readonly scale: "spacing";
575
+ readonly scale: "space";
556
576
  };
557
577
  readonly m: {
558
578
  readonly property: "margin";
559
- readonly scale: "spacing";
579
+ readonly scale: "space";
560
580
  };
561
581
  readonly mx: {
562
582
  readonly property: "margin";
563
583
  readonly properties: readonly ["marginLeft", "marginRight"];
564
- readonly scale: "spacing";
584
+ readonly scale: "space";
565
585
  };
566
586
  readonly my: {
567
587
  readonly property: "margin";
568
588
  readonly properties: readonly ["marginTop", "marginBottom"];
569
- readonly scale: "spacing";
589
+ readonly scale: "space";
570
590
  };
571
591
  readonly mt: {
572
592
  readonly property: "marginTop";
573
- readonly scale: "spacing";
593
+ readonly scale: "space";
574
594
  };
575
595
  readonly mb: {
576
596
  readonly property: "marginBottom";
577
- readonly scale: "spacing";
597
+ readonly scale: "space";
578
598
  };
579
599
  readonly mr: {
580
600
  readonly property: "marginRight";
581
- readonly scale: "spacing";
601
+ readonly scale: "space";
582
602
  };
583
603
  readonly ml: {
584
604
  readonly property: "marginLeft";
585
- readonly scale: "spacing";
605
+ readonly scale: "space";
606
+ };
607
+ };
608
+ export declare const transitions: {
609
+ readonly transition: {
610
+ readonly property: "transition";
611
+ readonly scale: "transitions";
612
+ };
613
+ readonly animation: {
614
+ readonly property: "animation";
615
+ readonly scale: "animations";
616
+ };
617
+ readonly animationPlayState: {
618
+ readonly property: "animationPlayState";
586
619
  };
587
620
  };
588
621
  export declare const mode: {
@@ -599,15 +632,15 @@ export declare const vars: {
599
632
  export declare const config: import("./AnimusConfig").AnimusConfig<{
600
633
  readonly gap: {
601
634
  readonly property: "gap";
602
- readonly scale: "spacing";
635
+ readonly scale: "space";
603
636
  };
604
637
  readonly rowGap: {
605
638
  readonly property: "rowGap";
606
- readonly scale: "spacing";
639
+ readonly scale: "space";
607
640
  };
608
641
  readonly columnGap: {
609
642
  readonly property: "columnGap";
610
- readonly scale: "spacing";
643
+ readonly scale: "space";
611
644
  };
612
645
  readonly flexBasis: {
613
646
  readonly property: "flexBasis";
@@ -657,15 +690,15 @@ export declare const config: import("./AnimusConfig").AnimusConfig<{
657
690
  } & {
658
691
  readonly gap: {
659
692
  readonly property: "gap";
660
- readonly scale: "spacing";
693
+ readonly scale: "space";
661
694
  };
662
695
  readonly rowGap: {
663
696
  readonly property: "rowGap";
664
- readonly scale: "spacing";
697
+ readonly scale: "space";
665
698
  };
666
699
  readonly columnGap: {
667
700
  readonly property: "columnGap";
668
- readonly scale: "spacing";
701
+ readonly scale: "space";
669
702
  };
670
703
  readonly gridColumn: {
671
704
  readonly property: "gridColumn";
@@ -771,77 +804,77 @@ export declare const config: import("./AnimusConfig").AnimusConfig<{
771
804
  } & {
772
805
  readonly p: {
773
806
  readonly property: "padding";
774
- readonly scale: "spacing";
807
+ readonly scale: "space";
775
808
  };
776
809
  readonly px: {
777
810
  readonly property: "padding";
778
811
  readonly properties: readonly ["paddingLeft", "paddingRight"];
779
- readonly scale: "spacing";
812
+ readonly scale: "space";
780
813
  };
781
814
  readonly py: {
782
815
  readonly property: "padding";
783
816
  readonly properties: readonly ["paddingTop", "paddingBottom"];
784
- readonly scale: "spacing";
817
+ readonly scale: "space";
785
818
  };
786
819
  readonly pt: {
787
820
  readonly property: "paddingTop";
788
- readonly scale: "spacing";
821
+ readonly scale: "space";
789
822
  };
790
823
  readonly pb: {
791
824
  readonly property: "paddingBottom";
792
- readonly scale: "spacing";
825
+ readonly scale: "space";
793
826
  };
794
827
  readonly pr: {
795
828
  readonly property: "paddingRight";
796
- readonly scale: "spacing";
829
+ readonly scale: "space";
797
830
  };
798
831
  readonly pl: {
799
832
  readonly property: "paddingLeft";
800
- readonly scale: "spacing";
833
+ readonly scale: "space";
801
834
  };
802
835
  readonly m: {
803
836
  readonly property: "margin";
804
- readonly scale: "spacing";
837
+ readonly scale: "space";
805
838
  };
806
839
  readonly mx: {
807
840
  readonly property: "margin";
808
841
  readonly properties: readonly ["marginLeft", "marginRight"];
809
- readonly scale: "spacing";
842
+ readonly scale: "space";
810
843
  };
811
844
  readonly my: {
812
845
  readonly property: "margin";
813
846
  readonly properties: readonly ["marginTop", "marginBottom"];
814
- readonly scale: "spacing";
847
+ readonly scale: "space";
815
848
  };
816
849
  readonly mt: {
817
850
  readonly property: "marginTop";
818
- readonly scale: "spacing";
851
+ readonly scale: "space";
819
852
  };
820
853
  readonly mb: {
821
854
  readonly property: "marginBottom";
822
- readonly scale: "spacing";
855
+ readonly scale: "space";
823
856
  };
824
857
  readonly mr: {
825
858
  readonly property: "marginRight";
826
- readonly scale: "spacing";
859
+ readonly scale: "space";
827
860
  };
828
861
  readonly ml: {
829
862
  readonly property: "marginLeft";
830
- readonly scale: "spacing";
863
+ readonly scale: "space";
831
864
  };
832
865
  } & {
833
866
  readonly color: {
834
867
  readonly property: "color";
835
868
  readonly scale: "colors";
836
869
  };
837
- readonly textColor: {
838
- readonly property: "color";
839
- readonly scale: "colors";
840
- };
841
870
  readonly bg: {
842
871
  readonly property: "backgroundColor";
843
872
  readonly scale: "colors";
844
873
  };
874
+ readonly gradient: {
875
+ readonly property: "backgroundImage";
876
+ readonly scale: "gradients";
877
+ };
845
878
  readonly borderColor: {
846
879
  readonly property: "borderColor";
847
880
  readonly scale: "colors";
@@ -872,6 +905,14 @@ export declare const config: import("./AnimusConfig").AnimusConfig<{
872
905
  readonly property: "borderBottomColor";
873
906
  readonly scale: "colors";
874
907
  };
908
+ readonly fill: {
909
+ readonly property: "fill";
910
+ readonly scale: "colors";
911
+ };
912
+ readonly stroke: {
913
+ readonly property: "stroke";
914
+ readonly scale: "colors";
915
+ };
875
916
  } & {
876
917
  readonly flexBasis: {
877
918
  readonly property: "flexBasis";
@@ -999,75 +1040,82 @@ export declare const config: import("./AnimusConfig").AnimusConfig<{
999
1040
  };
1000
1041
  readonly borderWidth: {
1001
1042
  readonly property: "borderWidth";
1043
+ readonly scale: "borderWidths";
1002
1044
  };
1003
1045
  readonly borderWidthX: {
1004
1046
  readonly property: "borderWidth";
1005
1047
  readonly properties: readonly ["borderLeftWidth", "borderRightWidth"];
1048
+ readonly scale: "borderWidths";
1006
1049
  };
1007
1050
  readonly borderWidthY: {
1008
1051
  readonly property: "borderWidth";
1009
1052
  readonly properties: readonly ["borderTopWidth", "borderBottomWidth"];
1053
+ readonly scale: "borderWidths";
1010
1054
  };
1011
1055
  readonly borderWidthLeft: {
1012
1056
  readonly property: "borderLeftWidth";
1057
+ readonly scale: "borderWidths";
1013
1058
  };
1014
1059
  readonly borderWidthRight: {
1015
1060
  readonly property: "borderRightWidth";
1061
+ readonly scale: "borderWidths";
1016
1062
  };
1017
1063
  readonly borderWidthTop: {
1018
1064
  readonly property: "borderTopWidth";
1065
+ readonly scale: "borderWidths";
1019
1066
  };
1020
1067
  readonly borderWidthBottom: {
1021
1068
  readonly property: "borderBottomWidth";
1069
+ readonly scale: "borderWidths";
1022
1070
  };
1023
1071
  readonly borderRadius: {
1024
1072
  readonly property: "borderRadius";
1025
1073
  readonly scale: "radii";
1026
- readonly transform: (val: string | number) => string;
1074
+ readonly transform: (value: string | number) => string | 0;
1027
1075
  };
1028
1076
  readonly borderRadiusLeft: {
1029
1077
  readonly property: "borderRadius";
1030
1078
  readonly properties: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
1031
1079
  readonly scale: "radii";
1032
- readonly transform: (val: string | number) => string;
1080
+ readonly transform: (value: string | number) => string | 0;
1033
1081
  };
1034
1082
  readonly borderRadiusTop: {
1035
1083
  readonly property: "borderRadius";
1036
1084
  readonly properties: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
1037
1085
  readonly scale: "radii";
1038
- readonly transform: (val: string | number) => string;
1086
+ readonly transform: (value: string | number) => string | 0;
1039
1087
  };
1040
1088
  readonly borderRadiusBottom: {
1041
1089
  readonly property: "borderRadius";
1042
1090
  readonly properties: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
1043
1091
  readonly scale: "radii";
1044
- readonly transform: (val: string | number) => string;
1092
+ readonly transform: (value: string | number) => string | 0;
1045
1093
  };
1046
1094
  readonly borderRadiusRight: {
1047
1095
  readonly property: "borderRadius";
1048
1096
  readonly properties: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
1049
1097
  readonly scale: "radii";
1050
- readonly transform: (val: string | number) => string;
1098
+ readonly transform: (value: string | number) => string | 0;
1051
1099
  };
1052
1100
  readonly borderRadiusTopLeft: {
1053
1101
  readonly property: "borderTopLeftRadius";
1054
1102
  readonly scale: "radii";
1055
- readonly transform: (val: string | number) => string;
1103
+ readonly transform: (value: string | number) => string | 0;
1056
1104
  };
1057
1105
  readonly borderRadiusTopRight: {
1058
1106
  readonly property: "borderTopRightRadius";
1059
1107
  readonly scale: "radii";
1060
- readonly transform: (val: string | number) => string;
1108
+ readonly transform: (value: string | number) => string | 0;
1061
1109
  };
1062
1110
  readonly borderRadiusBottomRight: {
1063
1111
  readonly property: "borderBottomRightRadius";
1064
1112
  readonly scale: "radii";
1065
- readonly transform: (val: string | number) => string;
1113
+ readonly transform: (value: string | number) => string | 0;
1066
1114
  };
1067
1115
  readonly borderRadiusBottomLeft: {
1068
1116
  readonly property: "borderBottomLeftRadius";
1069
1117
  readonly scale: "radii";
1070
- readonly transform: (val: string | number) => string;
1118
+ readonly transform: (value: string | number) => string | 0;
1071
1119
  };
1072
1120
  readonly borderStyle: {
1073
1121
  readonly property: "borderStyle";
@@ -1095,9 +1143,11 @@ export declare const config: import("./AnimusConfig").AnimusConfig<{
1095
1143
  } & {
1096
1144
  readonly boxShadow: {
1097
1145
  readonly property: "boxShadow";
1146
+ readonly scale: "shadows";
1098
1147
  };
1099
1148
  readonly textShadow: {
1100
1149
  readonly property: "textShadow";
1150
+ readonly scale: "shadows";
1101
1151
  };
1102
1152
  } & {
1103
1153
  readonly background: {
@@ -1118,23 +1168,24 @@ export declare const config: import("./AnimusConfig").AnimusConfig<{
1118
1168
  } & {
1119
1169
  readonly fontFamily: {
1120
1170
  readonly property: "fontFamily";
1121
- readonly scale: "fontFamily";
1171
+ readonly scale: "fonts";
1122
1172
  };
1123
1173
  readonly fontWeight: {
1124
1174
  readonly property: "fontWeight";
1125
- readonly scale: "fontWeight";
1175
+ readonly scale: "fontWeights";
1126
1176
  };
1127
1177
  readonly lineHeight: {
1128
1178
  readonly property: "lineHeight";
1129
- readonly scale: "lineHeight";
1179
+ readonly scale: "lineHeights";
1130
1180
  readonly lineHeight: "lineHeight";
1131
1181
  };
1132
1182
  readonly fontSize: {
1133
1183
  readonly property: "fontSize";
1134
- readonly scale: "fontSize";
1184
+ readonly scale: "fontSizes";
1135
1185
  };
1136
1186
  readonly letterSpacing: {
1137
1187
  readonly property: "letterSpacing";
1188
+ readonly scale: "letterSpacings";
1138
1189
  };
1139
1190
  readonly textAlign: {
1140
1191
  readonly property: "textAlign";
@@ -1178,23 +1229,37 @@ export declare const config: import("./AnimusConfig").AnimusConfig<{
1178
1229
  };
1179
1230
  readonly zIndex: {
1180
1231
  readonly property: "zIndex";
1232
+ readonly scale: "zIndices";
1181
1233
  };
1182
1234
  readonly opacity: {
1183
1235
  readonly property: "opacity";
1236
+ readonly scale: "opacities";
1237
+ };
1238
+ } & {
1239
+ readonly transition: {
1240
+ readonly property: "transition";
1241
+ readonly scale: "transitions";
1242
+ };
1243
+ readonly animation: {
1244
+ readonly property: "animation";
1245
+ readonly scale: "animations";
1184
1246
  };
1185
- }, Record<"flex", ("gap" | "rowGap" | "columnGap" | "justifySelf" | "alignSelf" | "gridArea" | "justifyContent" | "justifyItems" | "alignItems" | "alignContent" | "flexBasis" | "flexShrink" | "flexGrow" | "order" | "flexDirection" | "flexWrap" | "flex" | "area")[]> & Record<"grid", ("gap" | "rowGap" | "columnGap" | "justifySelf" | "alignSelf" | "gridArea" | "justifyContent" | "justifyItems" | "alignItems" | "alignContent" | "gridColumn" | "gridRow" | "gridColumnStart" | "gridRowStart" | "gridColumnEnd" | "gridRowEnd" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateColumns" | "gridTemplateRows" | "gridTemplateAreas" | "gridAutoFlow" | "area" | "flow" | "cols" | "rows" | "autoRows" | "autoCols" | "alignAll")[]> & Record<"mode", "mode"[]> & Record<"vars", "vars"[]> & Record<"space", ("px" | "p" | "py" | "pt" | "pb" | "pr" | "pl" | "m" | "mx" | "my" | "mt" | "mb" | "mr" | "ml")[]> & Record<"color", ("color" | "borderColor" | "textColor" | "bg" | "borderColorX" | "borderColorY" | "borderColorLeft" | "borderColorRight" | "borderColorTop" | "borderColorBottom")[]> & Record<"layout", ("justifySelf" | "alignSelf" | "gridArea" | "flexBasis" | "flexShrink" | "flexGrow" | "order" | "gridColumn" | "gridRow" | "gridColumnStart" | "gridRowStart" | "gridColumnEnd" | "gridRowEnd" | "display" | "overflow" | "overflowX" | "overflowY" | "width" | "height" | "minWidth" | "maxWidth" | "minHeight" | "maxHeight" | "verticalAlign" | "area" | "size")[]> & Record<"borders", ("border" | "borderLeft" | "borderRight" | "borderTop" | "borderBottom" | "borderWidth" | "borderRadius" | "borderStyle" | "borderX" | "borderY" | "borderWidthX" | "borderWidthY" | "borderWidthLeft" | "borderWidthRight" | "borderWidthTop" | "borderWidthBottom" | "borderRadiusLeft" | "borderRadiusTop" | "borderRadiusBottom" | "borderRadiusRight" | "borderRadiusTopLeft" | "borderRadiusTopRight" | "borderRadiusBottomRight" | "borderRadiusBottomLeft" | "borderStyleX" | "borderStyleY" | "borderStyleLeft" | "borderStyleRight" | "borderStyleTop" | "borderStyleBottom")[]> & Record<"shadows", ("boxShadow" | "textShadow")[]> & Record<"background", ("background" | "backgroundImage" | "backgroundSize" | "backgroundRepeat" | "backgroundPosition")[]> & Record<"typography", ("fontFamily" | "fontWeight" | "lineHeight" | "fontSize" | "letterSpacing" | "textAlign" | "fontStyle" | "textDecoration" | "textTransform" | "whiteSpace")[]> & Record<"positioning", ("position" | "inset" | "top" | "right" | "bottom" | "left" | "zIndex" | "opacity")[]>>;
1247
+ readonly animationPlayState: {
1248
+ readonly property: "animationPlayState";
1249
+ };
1250
+ }, Record<"flex", ("gap" | "rowGap" | "columnGap" | "justifySelf" | "alignSelf" | "gridArea" | "justifyContent" | "justifyItems" | "alignItems" | "alignContent" | "flexBasis" | "flexShrink" | "flexGrow" | "order" | "flexDirection" | "flexWrap" | "flex" | "area")[]> & Record<"grid", ("gap" | "rowGap" | "columnGap" | "justifySelf" | "alignSelf" | "gridArea" | "justifyContent" | "justifyItems" | "alignItems" | "alignContent" | "gridColumn" | "gridRow" | "gridColumnStart" | "gridRowStart" | "gridColumnEnd" | "gridRowEnd" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateColumns" | "gridTemplateRows" | "gridTemplateAreas" | "gridAutoFlow" | "area" | "flow" | "cols" | "rows" | "autoRows" | "autoCols" | "alignAll")[]> & Record<"mode", "mode"[]> & Record<"vars", "vars"[]> & Record<"space", ("px" | "p" | "py" | "pt" | "pb" | "pr" | "pl" | "m" | "mx" | "my" | "mt" | "mb" | "mr" | "ml")[]> & Record<"color", ("color" | "borderColor" | "fill" | "stroke" | "bg" | "gradient" | "borderColorX" | "borderColorY" | "borderColorLeft" | "borderColorRight" | "borderColorTop" | "borderColorBottom")[]> & Record<"layout", ("justifySelf" | "alignSelf" | "gridArea" | "flexBasis" | "flexShrink" | "flexGrow" | "order" | "gridColumn" | "gridRow" | "gridColumnStart" | "gridRowStart" | "gridColumnEnd" | "gridRowEnd" | "display" | "overflow" | "overflowX" | "overflowY" | "width" | "height" | "minWidth" | "maxWidth" | "minHeight" | "maxHeight" | "verticalAlign" | "area" | "size")[]> & Record<"borders", ("border" | "borderLeft" | "borderRight" | "borderTop" | "borderBottom" | "borderWidth" | "borderRadius" | "borderStyle" | "borderX" | "borderY" | "borderWidthX" | "borderWidthY" | "borderWidthLeft" | "borderWidthRight" | "borderWidthTop" | "borderWidthBottom" | "borderRadiusLeft" | "borderRadiusTop" | "borderRadiusBottom" | "borderRadiusRight" | "borderRadiusTopLeft" | "borderRadiusTopRight" | "borderRadiusBottomRight" | "borderRadiusBottomLeft" | "borderStyleX" | "borderStyleY" | "borderStyleLeft" | "borderStyleRight" | "borderStyleTop" | "borderStyleBottom")[]> & Record<"shadows", ("boxShadow" | "textShadow")[]> & Record<"background", ("backgroundImage" | "background" | "backgroundSize" | "backgroundRepeat" | "backgroundPosition")[]> & Record<"typography", ("fontFamily" | "fontWeight" | "lineHeight" | "fontSize" | "letterSpacing" | "textAlign" | "fontStyle" | "textDecoration" | "textTransform" | "whiteSpace")[]> & Record<"positioning", ("position" | "inset" | "top" | "right" | "bottom" | "left" | "zIndex" | "opacity")[]> & Record<"transitions", ("transition" | "animation" | "animationPlayState")[]>>;
1186
1251
  export declare const animus: import("./Animus").Animus<{
1187
1252
  readonly gap: {
1188
1253
  readonly property: "gap";
1189
- readonly scale: "spacing";
1254
+ readonly scale: "space";
1190
1255
  };
1191
1256
  readonly rowGap: {
1192
1257
  readonly property: "rowGap";
1193
- readonly scale: "spacing";
1258
+ readonly scale: "space";
1194
1259
  };
1195
1260
  readonly columnGap: {
1196
1261
  readonly property: "columnGap";
1197
- readonly scale: "spacing";
1262
+ readonly scale: "space";
1198
1263
  };
1199
1264
  readonly flexBasis: {
1200
1265
  readonly property: "flexBasis";
@@ -1318,76 +1383,76 @@ export declare const animus: import("./Animus").Animus<{
1318
1383
  };
1319
1384
  readonly p: {
1320
1385
  readonly property: "padding";
1321
- readonly scale: "spacing";
1386
+ readonly scale: "space";
1322
1387
  };
1323
1388
  readonly px: {
1324
1389
  readonly property: "padding";
1325
1390
  readonly properties: readonly ["paddingLeft", "paddingRight"];
1326
- readonly scale: "spacing";
1391
+ readonly scale: "space";
1327
1392
  };
1328
1393
  readonly py: {
1329
1394
  readonly property: "padding";
1330
1395
  readonly properties: readonly ["paddingTop", "paddingBottom"];
1331
- readonly scale: "spacing";
1396
+ readonly scale: "space";
1332
1397
  };
1333
1398
  readonly pt: {
1334
1399
  readonly property: "paddingTop";
1335
- readonly scale: "spacing";
1400
+ readonly scale: "space";
1336
1401
  };
1337
1402
  readonly pb: {
1338
1403
  readonly property: "paddingBottom";
1339
- readonly scale: "spacing";
1404
+ readonly scale: "space";
1340
1405
  };
1341
1406
  readonly pr: {
1342
1407
  readonly property: "paddingRight";
1343
- readonly scale: "spacing";
1408
+ readonly scale: "space";
1344
1409
  };
1345
1410
  readonly pl: {
1346
1411
  readonly property: "paddingLeft";
1347
- readonly scale: "spacing";
1412
+ readonly scale: "space";
1348
1413
  };
1349
1414
  readonly m: {
1350
1415
  readonly property: "margin";
1351
- readonly scale: "spacing";
1416
+ readonly scale: "space";
1352
1417
  };
1353
1418
  readonly mx: {
1354
1419
  readonly property: "margin";
1355
1420
  readonly properties: readonly ["marginLeft", "marginRight"];
1356
- readonly scale: "spacing";
1421
+ readonly scale: "space";
1357
1422
  };
1358
1423
  readonly my: {
1359
1424
  readonly property: "margin";
1360
1425
  readonly properties: readonly ["marginTop", "marginBottom"];
1361
- readonly scale: "spacing";
1426
+ readonly scale: "space";
1362
1427
  };
1363
1428
  readonly mt: {
1364
1429
  readonly property: "marginTop";
1365
- readonly scale: "spacing";
1430
+ readonly scale: "space";
1366
1431
  };
1367
1432
  readonly mb: {
1368
1433
  readonly property: "marginBottom";
1369
- readonly scale: "spacing";
1434
+ readonly scale: "space";
1370
1435
  };
1371
1436
  readonly mr: {
1372
1437
  readonly property: "marginRight";
1373
- readonly scale: "spacing";
1438
+ readonly scale: "space";
1374
1439
  };
1375
1440
  readonly ml: {
1376
1441
  readonly property: "marginLeft";
1377
- readonly scale: "spacing";
1442
+ readonly scale: "space";
1378
1443
  };
1379
1444
  readonly color: {
1380
1445
  readonly property: "color";
1381
1446
  readonly scale: "colors";
1382
1447
  };
1383
- readonly textColor: {
1384
- readonly property: "color";
1385
- readonly scale: "colors";
1386
- };
1387
1448
  readonly bg: {
1388
1449
  readonly property: "backgroundColor";
1389
1450
  readonly scale: "colors";
1390
1451
  };
1452
+ readonly gradient: {
1453
+ readonly property: "backgroundImage";
1454
+ readonly scale: "gradients";
1455
+ };
1391
1456
  readonly borderColor: {
1392
1457
  readonly property: "borderColor";
1393
1458
  readonly scale: "colors";
@@ -1418,6 +1483,14 @@ export declare const animus: import("./Animus").Animus<{
1418
1483
  readonly property: "borderBottomColor";
1419
1484
  readonly scale: "colors";
1420
1485
  };
1486
+ readonly fill: {
1487
+ readonly property: "fill";
1488
+ readonly scale: "colors";
1489
+ };
1490
+ readonly stroke: {
1491
+ readonly property: "stroke";
1492
+ readonly scale: "colors";
1493
+ };
1421
1494
  readonly display: {
1422
1495
  readonly property: "display";
1423
1496
  };
@@ -1501,75 +1574,82 @@ export declare const animus: import("./Animus").Animus<{
1501
1574
  };
1502
1575
  readonly borderWidth: {
1503
1576
  readonly property: "borderWidth";
1577
+ readonly scale: "borderWidths";
1504
1578
  };
1505
1579
  readonly borderWidthX: {
1506
1580
  readonly property: "borderWidth";
1507
1581
  readonly properties: readonly ["borderLeftWidth", "borderRightWidth"];
1582
+ readonly scale: "borderWidths";
1508
1583
  };
1509
1584
  readonly borderWidthY: {
1510
1585
  readonly property: "borderWidth";
1511
1586
  readonly properties: readonly ["borderTopWidth", "borderBottomWidth"];
1587
+ readonly scale: "borderWidths";
1512
1588
  };
1513
1589
  readonly borderWidthLeft: {
1514
1590
  readonly property: "borderLeftWidth";
1591
+ readonly scale: "borderWidths";
1515
1592
  };
1516
1593
  readonly borderWidthRight: {
1517
1594
  readonly property: "borderRightWidth";
1595
+ readonly scale: "borderWidths";
1518
1596
  };
1519
1597
  readonly borderWidthTop: {
1520
1598
  readonly property: "borderTopWidth";
1599
+ readonly scale: "borderWidths";
1521
1600
  };
1522
1601
  readonly borderWidthBottom: {
1523
1602
  readonly property: "borderBottomWidth";
1603
+ readonly scale: "borderWidths";
1524
1604
  };
1525
1605
  readonly borderRadius: {
1526
1606
  readonly property: "borderRadius";
1527
1607
  readonly scale: "radii";
1528
- readonly transform: (val: string | number) => string;
1608
+ readonly transform: (value: string | number) => string | 0;
1529
1609
  };
1530
1610
  readonly borderRadiusLeft: {
1531
1611
  readonly property: "borderRadius";
1532
1612
  readonly properties: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
1533
1613
  readonly scale: "radii";
1534
- readonly transform: (val: string | number) => string;
1614
+ readonly transform: (value: string | number) => string | 0;
1535
1615
  };
1536
1616
  readonly borderRadiusTop: {
1537
1617
  readonly property: "borderRadius";
1538
1618
  readonly properties: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
1539
1619
  readonly scale: "radii";
1540
- readonly transform: (val: string | number) => string;
1620
+ readonly transform: (value: string | number) => string | 0;
1541
1621
  };
1542
1622
  readonly borderRadiusBottom: {
1543
1623
  readonly property: "borderRadius";
1544
1624
  readonly properties: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
1545
1625
  readonly scale: "radii";
1546
- readonly transform: (val: string | number) => string;
1626
+ readonly transform: (value: string | number) => string | 0;
1547
1627
  };
1548
1628
  readonly borderRadiusRight: {
1549
1629
  readonly property: "borderRadius";
1550
1630
  readonly properties: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
1551
1631
  readonly scale: "radii";
1552
- readonly transform: (val: string | number) => string;
1632
+ readonly transform: (value: string | number) => string | 0;
1553
1633
  };
1554
1634
  readonly borderRadiusTopLeft: {
1555
1635
  readonly property: "borderTopLeftRadius";
1556
1636
  readonly scale: "radii";
1557
- readonly transform: (val: string | number) => string;
1637
+ readonly transform: (value: string | number) => string | 0;
1558
1638
  };
1559
1639
  readonly borderRadiusTopRight: {
1560
1640
  readonly property: "borderTopRightRadius";
1561
1641
  readonly scale: "radii";
1562
- readonly transform: (val: string | number) => string;
1642
+ readonly transform: (value: string | number) => string | 0;
1563
1643
  };
1564
1644
  readonly borderRadiusBottomRight: {
1565
1645
  readonly property: "borderBottomRightRadius";
1566
1646
  readonly scale: "radii";
1567
- readonly transform: (val: string | number) => string;
1647
+ readonly transform: (value: string | number) => string | 0;
1568
1648
  };
1569
1649
  readonly borderRadiusBottomLeft: {
1570
1650
  readonly property: "borderBottomLeftRadius";
1571
1651
  readonly scale: "radii";
1572
- readonly transform: (val: string | number) => string;
1652
+ readonly transform: (value: string | number) => string | 0;
1573
1653
  };
1574
1654
  readonly borderStyle: {
1575
1655
  readonly property: "borderStyle";
@@ -1596,9 +1676,11 @@ export declare const animus: import("./Animus").Animus<{
1596
1676
  };
1597
1677
  readonly boxShadow: {
1598
1678
  readonly property: "boxShadow";
1679
+ readonly scale: "shadows";
1599
1680
  };
1600
1681
  readonly textShadow: {
1601
1682
  readonly property: "textShadow";
1683
+ readonly scale: "shadows";
1602
1684
  };
1603
1685
  readonly background: {
1604
1686
  readonly property: "background";
@@ -1617,23 +1699,24 @@ export declare const animus: import("./Animus").Animus<{
1617
1699
  };
1618
1700
  readonly fontFamily: {
1619
1701
  readonly property: "fontFamily";
1620
- readonly scale: "fontFamily";
1702
+ readonly scale: "fonts";
1621
1703
  };
1622
1704
  readonly fontWeight: {
1623
1705
  readonly property: "fontWeight";
1624
- readonly scale: "fontWeight";
1706
+ readonly scale: "fontWeights";
1625
1707
  };
1626
1708
  readonly lineHeight: {
1627
1709
  readonly property: "lineHeight";
1628
- readonly scale: "lineHeight";
1710
+ readonly scale: "lineHeights";
1629
1711
  readonly lineHeight: "lineHeight";
1630
1712
  };
1631
1713
  readonly fontSize: {
1632
1714
  readonly property: "fontSize";
1633
- readonly scale: "fontSize";
1715
+ readonly scale: "fontSizes";
1634
1716
  };
1635
1717
  readonly letterSpacing: {
1636
1718
  readonly property: "letterSpacing";
1719
+ readonly scale: "letterSpacings";
1637
1720
  };
1638
1721
  readonly textAlign: {
1639
1722
  readonly property: "textAlign";
@@ -1676,9 +1759,22 @@ export declare const animus: import("./Animus").Animus<{
1676
1759
  };
1677
1760
  readonly zIndex: {
1678
1761
  readonly property: "zIndex";
1762
+ readonly scale: "zIndices";
1679
1763
  };
1680
1764
  readonly opacity: {
1681
1765
  readonly property: "opacity";
1766
+ readonly scale: "opacities";
1767
+ };
1768
+ readonly transition: {
1769
+ readonly property: "transition";
1770
+ readonly scale: "transitions";
1771
+ };
1772
+ readonly animation: {
1773
+ readonly property: "animation";
1774
+ readonly scale: "animations";
1775
+ };
1776
+ readonly animationPlayState: {
1777
+ readonly property: "animationPlayState";
1682
1778
  };
1683
1779
  }, {
1684
1780
  flex: ("gap" | "rowGap" | "columnGap" | "justifySelf" | "alignSelf" | "gridArea" | "justifyContent" | "justifyItems" | "alignItems" | "alignContent" | "flexBasis" | "flexShrink" | "flexGrow" | "order" | "flexDirection" | "flexWrap" | "flex" | "area")[];
@@ -1686,25 +1782,26 @@ export declare const animus: import("./Animus").Animus<{
1686
1782
  mode: "mode"[];
1687
1783
  vars: "vars"[];
1688
1784
  space: ("px" | "p" | "py" | "pt" | "pb" | "pr" | "pl" | "m" | "mx" | "my" | "mt" | "mb" | "mr" | "ml")[];
1689
- color: ("color" | "borderColor" | "textColor" | "bg" | "borderColorX" | "borderColorY" | "borderColorLeft" | "borderColorRight" | "borderColorTop" | "borderColorBottom")[];
1785
+ color: ("color" | "borderColor" | "fill" | "stroke" | "bg" | "gradient" | "borderColorX" | "borderColorY" | "borderColorLeft" | "borderColorRight" | "borderColorTop" | "borderColorBottom")[];
1690
1786
  layout: ("justifySelf" | "alignSelf" | "gridArea" | "flexBasis" | "flexShrink" | "flexGrow" | "order" | "gridColumn" | "gridRow" | "gridColumnStart" | "gridRowStart" | "gridColumnEnd" | "gridRowEnd" | "display" | "overflow" | "overflowX" | "overflowY" | "width" | "height" | "minWidth" | "maxWidth" | "minHeight" | "maxHeight" | "verticalAlign" | "area" | "size")[];
1691
1787
  borders: ("border" | "borderLeft" | "borderRight" | "borderTop" | "borderBottom" | "borderWidth" | "borderRadius" | "borderStyle" | "borderX" | "borderY" | "borderWidthX" | "borderWidthY" | "borderWidthLeft" | "borderWidthRight" | "borderWidthTop" | "borderWidthBottom" | "borderRadiusLeft" | "borderRadiusTop" | "borderRadiusBottom" | "borderRadiusRight" | "borderRadiusTopLeft" | "borderRadiusTopRight" | "borderRadiusBottomRight" | "borderRadiusBottomLeft" | "borderStyleX" | "borderStyleY" | "borderStyleLeft" | "borderStyleRight" | "borderStyleTop" | "borderStyleBottom")[];
1692
1788
  shadows: ("boxShadow" | "textShadow")[];
1693
- background: ("background" | "backgroundImage" | "backgroundSize" | "backgroundRepeat" | "backgroundPosition")[];
1789
+ background: ("backgroundImage" | "background" | "backgroundSize" | "backgroundRepeat" | "backgroundPosition")[];
1694
1790
  typography: ("fontFamily" | "fontWeight" | "lineHeight" | "fontSize" | "letterSpacing" | "textAlign" | "fontStyle" | "textDecoration" | "textTransform" | "whiteSpace")[];
1695
1791
  positioning: ("position" | "inset" | "top" | "right" | "bottom" | "left" | "zIndex" | "opacity")[];
1792
+ transitions: ("transition" | "animation" | "animationPlayState")[];
1696
1793
  }, import("./types/config").Parser<{
1697
1794
  readonly gap: {
1698
1795
  readonly property: "gap";
1699
- readonly scale: "spacing";
1796
+ readonly scale: "space";
1700
1797
  };
1701
1798
  readonly rowGap: {
1702
1799
  readonly property: "rowGap";
1703
- readonly scale: "spacing";
1800
+ readonly scale: "space";
1704
1801
  };
1705
1802
  readonly columnGap: {
1706
1803
  readonly property: "columnGap";
1707
- readonly scale: "spacing";
1804
+ readonly scale: "space";
1708
1805
  };
1709
1806
  readonly flexBasis: {
1710
1807
  readonly property: "flexBasis";
@@ -1828,76 +1925,76 @@ export declare const animus: import("./Animus").Animus<{
1828
1925
  };
1829
1926
  readonly p: {
1830
1927
  readonly property: "padding";
1831
- readonly scale: "spacing";
1928
+ readonly scale: "space";
1832
1929
  };
1833
1930
  readonly px: {
1834
1931
  readonly property: "padding";
1835
1932
  readonly properties: readonly ["paddingLeft", "paddingRight"];
1836
- readonly scale: "spacing";
1933
+ readonly scale: "space";
1837
1934
  };
1838
1935
  readonly py: {
1839
1936
  readonly property: "padding";
1840
1937
  readonly properties: readonly ["paddingTop", "paddingBottom"];
1841
- readonly scale: "spacing";
1938
+ readonly scale: "space";
1842
1939
  };
1843
1940
  readonly pt: {
1844
1941
  readonly property: "paddingTop";
1845
- readonly scale: "spacing";
1942
+ readonly scale: "space";
1846
1943
  };
1847
1944
  readonly pb: {
1848
1945
  readonly property: "paddingBottom";
1849
- readonly scale: "spacing";
1946
+ readonly scale: "space";
1850
1947
  };
1851
1948
  readonly pr: {
1852
1949
  readonly property: "paddingRight";
1853
- readonly scale: "spacing";
1950
+ readonly scale: "space";
1854
1951
  };
1855
1952
  readonly pl: {
1856
1953
  readonly property: "paddingLeft";
1857
- readonly scale: "spacing";
1954
+ readonly scale: "space";
1858
1955
  };
1859
1956
  readonly m: {
1860
1957
  readonly property: "margin";
1861
- readonly scale: "spacing";
1958
+ readonly scale: "space";
1862
1959
  };
1863
1960
  readonly mx: {
1864
1961
  readonly property: "margin";
1865
1962
  readonly properties: readonly ["marginLeft", "marginRight"];
1866
- readonly scale: "spacing";
1963
+ readonly scale: "space";
1867
1964
  };
1868
1965
  readonly my: {
1869
1966
  readonly property: "margin";
1870
1967
  readonly properties: readonly ["marginTop", "marginBottom"];
1871
- readonly scale: "spacing";
1968
+ readonly scale: "space";
1872
1969
  };
1873
1970
  readonly mt: {
1874
1971
  readonly property: "marginTop";
1875
- readonly scale: "spacing";
1972
+ readonly scale: "space";
1876
1973
  };
1877
1974
  readonly mb: {
1878
1975
  readonly property: "marginBottom";
1879
- readonly scale: "spacing";
1976
+ readonly scale: "space";
1880
1977
  };
1881
1978
  readonly mr: {
1882
1979
  readonly property: "marginRight";
1883
- readonly scale: "spacing";
1980
+ readonly scale: "space";
1884
1981
  };
1885
1982
  readonly ml: {
1886
1983
  readonly property: "marginLeft";
1887
- readonly scale: "spacing";
1984
+ readonly scale: "space";
1888
1985
  };
1889
1986
  readonly color: {
1890
1987
  readonly property: "color";
1891
1988
  readonly scale: "colors";
1892
1989
  };
1893
- readonly textColor: {
1894
- readonly property: "color";
1895
- readonly scale: "colors";
1896
- };
1897
1990
  readonly bg: {
1898
1991
  readonly property: "backgroundColor";
1899
1992
  readonly scale: "colors";
1900
1993
  };
1994
+ readonly gradient: {
1995
+ readonly property: "backgroundImage";
1996
+ readonly scale: "gradients";
1997
+ };
1901
1998
  readonly borderColor: {
1902
1999
  readonly property: "borderColor";
1903
2000
  readonly scale: "colors";
@@ -1928,6 +2025,14 @@ export declare const animus: import("./Animus").Animus<{
1928
2025
  readonly property: "borderBottomColor";
1929
2026
  readonly scale: "colors";
1930
2027
  };
2028
+ readonly fill: {
2029
+ readonly property: "fill";
2030
+ readonly scale: "colors";
2031
+ };
2032
+ readonly stroke: {
2033
+ readonly property: "stroke";
2034
+ readonly scale: "colors";
2035
+ };
1931
2036
  readonly display: {
1932
2037
  readonly property: "display";
1933
2038
  };
@@ -2011,75 +2116,82 @@ export declare const animus: import("./Animus").Animus<{
2011
2116
  };
2012
2117
  readonly borderWidth: {
2013
2118
  readonly property: "borderWidth";
2119
+ readonly scale: "borderWidths";
2014
2120
  };
2015
2121
  readonly borderWidthX: {
2016
2122
  readonly property: "borderWidth";
2017
2123
  readonly properties: readonly ["borderLeftWidth", "borderRightWidth"];
2124
+ readonly scale: "borderWidths";
2018
2125
  };
2019
2126
  readonly borderWidthY: {
2020
2127
  readonly property: "borderWidth";
2021
2128
  readonly properties: readonly ["borderTopWidth", "borderBottomWidth"];
2129
+ readonly scale: "borderWidths";
2022
2130
  };
2023
2131
  readonly borderWidthLeft: {
2024
2132
  readonly property: "borderLeftWidth";
2133
+ readonly scale: "borderWidths";
2025
2134
  };
2026
2135
  readonly borderWidthRight: {
2027
2136
  readonly property: "borderRightWidth";
2137
+ readonly scale: "borderWidths";
2028
2138
  };
2029
2139
  readonly borderWidthTop: {
2030
2140
  readonly property: "borderTopWidth";
2141
+ readonly scale: "borderWidths";
2031
2142
  };
2032
2143
  readonly borderWidthBottom: {
2033
2144
  readonly property: "borderBottomWidth";
2145
+ readonly scale: "borderWidths";
2034
2146
  };
2035
2147
  readonly borderRadius: {
2036
2148
  readonly property: "borderRadius";
2037
2149
  readonly scale: "radii";
2038
- readonly transform: (val: string | number) => string;
2150
+ readonly transform: (value: string | number) => string | 0;
2039
2151
  };
2040
2152
  readonly borderRadiusLeft: {
2041
2153
  readonly property: "borderRadius";
2042
2154
  readonly properties: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
2043
2155
  readonly scale: "radii";
2044
- readonly transform: (val: string | number) => string;
2156
+ readonly transform: (value: string | number) => string | 0;
2045
2157
  };
2046
2158
  readonly borderRadiusTop: {
2047
2159
  readonly property: "borderRadius";
2048
2160
  readonly properties: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
2049
2161
  readonly scale: "radii";
2050
- readonly transform: (val: string | number) => string;
2162
+ readonly transform: (value: string | number) => string | 0;
2051
2163
  };
2052
2164
  readonly borderRadiusBottom: {
2053
2165
  readonly property: "borderRadius";
2054
2166
  readonly properties: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
2055
2167
  readonly scale: "radii";
2056
- readonly transform: (val: string | number) => string;
2168
+ readonly transform: (value: string | number) => string | 0;
2057
2169
  };
2058
2170
  readonly borderRadiusRight: {
2059
2171
  readonly property: "borderRadius";
2060
2172
  readonly properties: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
2061
2173
  readonly scale: "radii";
2062
- readonly transform: (val: string | number) => string;
2174
+ readonly transform: (value: string | number) => string | 0;
2063
2175
  };
2064
2176
  readonly borderRadiusTopLeft: {
2065
2177
  readonly property: "borderTopLeftRadius";
2066
2178
  readonly scale: "radii";
2067
- readonly transform: (val: string | number) => string;
2179
+ readonly transform: (value: string | number) => string | 0;
2068
2180
  };
2069
2181
  readonly borderRadiusTopRight: {
2070
2182
  readonly property: "borderTopRightRadius";
2071
2183
  readonly scale: "radii";
2072
- readonly transform: (val: string | number) => string;
2184
+ readonly transform: (value: string | number) => string | 0;
2073
2185
  };
2074
2186
  readonly borderRadiusBottomRight: {
2075
2187
  readonly property: "borderBottomRightRadius";
2076
2188
  readonly scale: "radii";
2077
- readonly transform: (val: string | number) => string;
2189
+ readonly transform: (value: string | number) => string | 0;
2078
2190
  };
2079
2191
  readonly borderRadiusBottomLeft: {
2080
2192
  readonly property: "borderBottomLeftRadius";
2081
2193
  readonly scale: "radii";
2082
- readonly transform: (val: string | number) => string;
2194
+ readonly transform: (value: string | number) => string | 0;
2083
2195
  };
2084
2196
  readonly borderStyle: {
2085
2197
  readonly property: "borderStyle";
@@ -2106,9 +2218,11 @@ export declare const animus: import("./Animus").Animus<{
2106
2218
  };
2107
2219
  readonly boxShadow: {
2108
2220
  readonly property: "boxShadow";
2221
+ readonly scale: "shadows";
2109
2222
  };
2110
2223
  readonly textShadow: {
2111
2224
  readonly property: "textShadow";
2225
+ readonly scale: "shadows";
2112
2226
  };
2113
2227
  readonly background: {
2114
2228
  readonly property: "background";
@@ -2127,23 +2241,24 @@ export declare const animus: import("./Animus").Animus<{
2127
2241
  };
2128
2242
  readonly fontFamily: {
2129
2243
  readonly property: "fontFamily";
2130
- readonly scale: "fontFamily";
2244
+ readonly scale: "fonts";
2131
2245
  };
2132
2246
  readonly fontWeight: {
2133
2247
  readonly property: "fontWeight";
2134
- readonly scale: "fontWeight";
2248
+ readonly scale: "fontWeights";
2135
2249
  };
2136
2250
  readonly lineHeight: {
2137
2251
  readonly property: "lineHeight";
2138
- readonly scale: "lineHeight";
2252
+ readonly scale: "lineHeights";
2139
2253
  readonly lineHeight: "lineHeight";
2140
2254
  };
2141
2255
  readonly fontSize: {
2142
2256
  readonly property: "fontSize";
2143
- readonly scale: "fontSize";
2257
+ readonly scale: "fontSizes";
2144
2258
  };
2145
2259
  readonly letterSpacing: {
2146
2260
  readonly property: "letterSpacing";
2261
+ readonly scale: "letterSpacings";
2147
2262
  };
2148
2263
  readonly textAlign: {
2149
2264
  readonly property: "textAlign";
@@ -2186,8 +2301,21 @@ export declare const animus: import("./Animus").Animus<{
2186
2301
  };
2187
2302
  readonly zIndex: {
2188
2303
  readonly property: "zIndex";
2304
+ readonly scale: "zIndices";
2189
2305
  };
2190
2306
  readonly opacity: {
2191
2307
  readonly property: "opacity";
2308
+ readonly scale: "opacities";
2309
+ };
2310
+ readonly transition: {
2311
+ readonly property: "transition";
2312
+ readonly scale: "transitions";
2313
+ };
2314
+ readonly animation: {
2315
+ readonly property: "animation";
2316
+ readonly scale: "animations";
2317
+ };
2318
+ readonly animationPlayState: {
2319
+ readonly property: "animationPlayState";
2192
2320
  };
2193
2321
  }>>;