@codecademy/gamut 68.0.1-alpha.8aa868.0 → 68.0.1-alpha.a46571.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/Box/props.d.ts +60 -12
- package/dist/Button/shared/styles.d.ts +60 -12
- package/dist/Card/elements.d.ts +180 -36
- package/dist/Form/elements/Form.d.ts +60 -12
- package/dist/GridForm/GridFormSections/GridFormSectionBreak.d.ts +60 -12
- package/dist/List/elements.d.ts +60 -12
- package/dist/Menu/elements.d.ts +60 -12
- package/dist/Pagination/AnimatedPaginationButtons.d.ts +60 -12
- package/dist/Pagination/utils.d.ts +60 -12
- package/package.json +7 -7
|
@@ -123,11 +123,19 @@ declare const StyledForm: import("@emotion/styled").StyledComponent<{
|
|
|
123
123
|
readonly property: "zIndex";
|
|
124
124
|
}>;
|
|
125
125
|
borderBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
126
|
-
readonly property:
|
|
126
|
+
readonly property: {
|
|
127
|
+
readonly physical: "borderBottom";
|
|
128
|
+
readonly logical: "borderBlockEnd";
|
|
129
|
+
};
|
|
130
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
127
131
|
readonly scale: "borders";
|
|
128
132
|
}>;
|
|
129
133
|
borderLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
130
|
-
readonly property:
|
|
134
|
+
readonly property: {
|
|
135
|
+
readonly physical: "borderLeft";
|
|
136
|
+
readonly logical: "borderInlineStart";
|
|
137
|
+
};
|
|
138
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
131
139
|
readonly scale: "borders";
|
|
132
140
|
}>;
|
|
133
141
|
borderRadius?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -135,14 +143,22 @@ declare const StyledForm: import("@emotion/styled").StyledComponent<{
|
|
|
135
143
|
readonly scale: "borderRadii";
|
|
136
144
|
}>;
|
|
137
145
|
borderRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
138
|
-
readonly property:
|
|
146
|
+
readonly property: {
|
|
147
|
+
readonly physical: "borderRight";
|
|
148
|
+
readonly logical: "borderInlineEnd";
|
|
149
|
+
};
|
|
150
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
139
151
|
readonly scale: "borders";
|
|
140
152
|
}>;
|
|
141
153
|
borderStyle?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
142
154
|
readonly property: "borderStyle";
|
|
143
155
|
}>;
|
|
144
156
|
borderTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
145
|
-
readonly property:
|
|
157
|
+
readonly property: {
|
|
158
|
+
readonly physical: "borderTop";
|
|
159
|
+
readonly logical: "borderBlockStart";
|
|
160
|
+
};
|
|
161
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
146
162
|
readonly scale: "borders";
|
|
147
163
|
}>;
|
|
148
164
|
borderWidth?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -272,33 +288,65 @@ declare const StyledForm: import("@emotion/styled").StyledComponent<{
|
|
|
272
288
|
}>;
|
|
273
289
|
borderX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
274
290
|
readonly property: "border";
|
|
275
|
-
readonly properties:
|
|
291
|
+
readonly properties: {
|
|
292
|
+
readonly physical: readonly ["borderLeft", "borderRight"];
|
|
293
|
+
readonly logical: readonly ["borderInlineStart", "borderInlineEnd"];
|
|
294
|
+
};
|
|
295
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
276
296
|
readonly scale: "borders";
|
|
277
297
|
}>;
|
|
278
298
|
borderY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
279
299
|
readonly property: "border";
|
|
280
|
-
readonly properties:
|
|
300
|
+
readonly properties: {
|
|
301
|
+
readonly physical: readonly ["borderTop", "borderBottom"];
|
|
302
|
+
readonly logical: readonly ["borderBlockStart", "borderBlockEnd"];
|
|
303
|
+
};
|
|
304
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
281
305
|
readonly scale: "borders";
|
|
282
306
|
}>;
|
|
283
307
|
borderWidthX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
284
308
|
readonly property: "borderWidth";
|
|
285
|
-
readonly properties:
|
|
309
|
+
readonly properties: {
|
|
310
|
+
readonly physical: readonly ["borderLeftWidth", "borderRightWidth"];
|
|
311
|
+
readonly logical: readonly ["borderInlineStartWidth", "borderInlineEndWidth"];
|
|
312
|
+
};
|
|
313
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
286
314
|
}>;
|
|
287
315
|
borderWidthY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
288
316
|
readonly property: "borderWidth";
|
|
289
|
-
readonly properties:
|
|
317
|
+
readonly properties: {
|
|
318
|
+
readonly physical: readonly ["borderTopWidth", "borderBottomWidth"];
|
|
319
|
+
readonly logical: readonly ["borderBlockStartWidth", "borderBlockEndWidth"];
|
|
320
|
+
};
|
|
321
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
290
322
|
}>;
|
|
291
323
|
borderWidthLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
292
|
-
readonly property:
|
|
324
|
+
readonly property: {
|
|
325
|
+
readonly physical: "borderLeftWidth";
|
|
326
|
+
readonly logical: "borderInlineStartWidth";
|
|
327
|
+
};
|
|
328
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
293
329
|
}>;
|
|
294
330
|
borderWidthRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
295
|
-
readonly property:
|
|
331
|
+
readonly property: {
|
|
332
|
+
readonly physical: "borderRightWidth";
|
|
333
|
+
readonly logical: "borderInlineEndWidth";
|
|
334
|
+
};
|
|
335
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
296
336
|
}>;
|
|
297
337
|
borderWidthTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
298
|
-
readonly property:
|
|
338
|
+
readonly property: {
|
|
339
|
+
readonly physical: "borderTopWidth";
|
|
340
|
+
readonly logical: "borderBlockStartWidth";
|
|
341
|
+
};
|
|
342
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
299
343
|
}>;
|
|
300
344
|
borderWidthBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
301
|
-
readonly property:
|
|
345
|
+
readonly property: {
|
|
346
|
+
readonly physical: "borderBottomWidth";
|
|
347
|
+
readonly logical: "borderBlockEndWidth";
|
|
348
|
+
};
|
|
349
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
302
350
|
}>;
|
|
303
351
|
borderRadiusLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
304
352
|
readonly property: "borderRadius";
|
|
@@ -7,28 +7,52 @@ declare const hrProps: import("@codecademy/variance/dist/types/config").Parser<i
|
|
|
7
7
|
};
|
|
8
8
|
readonly borderX: {
|
|
9
9
|
readonly property: "border";
|
|
10
|
-
readonly properties:
|
|
10
|
+
readonly properties: {
|
|
11
|
+
readonly physical: readonly ["borderLeft", "borderRight"];
|
|
12
|
+
readonly logical: readonly ["borderInlineStart", "borderInlineEnd"];
|
|
13
|
+
};
|
|
14
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
11
15
|
readonly scale: "borders";
|
|
12
16
|
};
|
|
13
17
|
readonly borderY: {
|
|
14
18
|
readonly property: "border";
|
|
15
|
-
readonly properties:
|
|
19
|
+
readonly properties: {
|
|
20
|
+
readonly physical: readonly ["borderTop", "borderBottom"];
|
|
21
|
+
readonly logical: readonly ["borderBlockStart", "borderBlockEnd"];
|
|
22
|
+
};
|
|
23
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
16
24
|
readonly scale: "borders";
|
|
17
25
|
};
|
|
18
26
|
readonly borderTop: {
|
|
19
|
-
readonly property:
|
|
27
|
+
readonly property: {
|
|
28
|
+
readonly physical: "borderTop";
|
|
29
|
+
readonly logical: "borderBlockStart";
|
|
30
|
+
};
|
|
31
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
20
32
|
readonly scale: "borders";
|
|
21
33
|
};
|
|
22
34
|
readonly borderRight: {
|
|
23
|
-
readonly property:
|
|
35
|
+
readonly property: {
|
|
36
|
+
readonly physical: "borderRight";
|
|
37
|
+
readonly logical: "borderInlineEnd";
|
|
38
|
+
};
|
|
39
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
24
40
|
readonly scale: "borders";
|
|
25
41
|
};
|
|
26
42
|
readonly borderBottom: {
|
|
27
|
-
readonly property:
|
|
43
|
+
readonly property: {
|
|
44
|
+
readonly physical: "borderBottom";
|
|
45
|
+
readonly logical: "borderBlockEnd";
|
|
46
|
+
};
|
|
47
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
28
48
|
readonly scale: "borders";
|
|
29
49
|
};
|
|
30
50
|
readonly borderLeft: {
|
|
31
|
-
readonly property:
|
|
51
|
+
readonly property: {
|
|
52
|
+
readonly physical: "borderLeft";
|
|
53
|
+
readonly logical: "borderInlineStart";
|
|
54
|
+
};
|
|
55
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
32
56
|
readonly scale: "borders";
|
|
33
57
|
};
|
|
34
58
|
readonly borderWidth: {
|
|
@@ -36,23 +60,47 @@ declare const hrProps: import("@codecademy/variance/dist/types/config").Parser<i
|
|
|
36
60
|
};
|
|
37
61
|
readonly borderWidthX: {
|
|
38
62
|
readonly property: "borderWidth";
|
|
39
|
-
readonly properties:
|
|
63
|
+
readonly properties: {
|
|
64
|
+
readonly physical: readonly ["borderLeftWidth", "borderRightWidth"];
|
|
65
|
+
readonly logical: readonly ["borderInlineStartWidth", "borderInlineEndWidth"];
|
|
66
|
+
};
|
|
67
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
40
68
|
};
|
|
41
69
|
readonly borderWidthY: {
|
|
42
70
|
readonly property: "borderWidth";
|
|
43
|
-
readonly properties:
|
|
71
|
+
readonly properties: {
|
|
72
|
+
readonly physical: readonly ["borderTopWidth", "borderBottomWidth"];
|
|
73
|
+
readonly logical: readonly ["borderBlockStartWidth", "borderBlockEndWidth"];
|
|
74
|
+
};
|
|
75
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
44
76
|
};
|
|
45
77
|
readonly borderWidthLeft: {
|
|
46
|
-
readonly property:
|
|
78
|
+
readonly property: {
|
|
79
|
+
readonly physical: "borderLeftWidth";
|
|
80
|
+
readonly logical: "borderInlineStartWidth";
|
|
81
|
+
};
|
|
82
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
47
83
|
};
|
|
48
84
|
readonly borderWidthRight: {
|
|
49
|
-
readonly property:
|
|
85
|
+
readonly property: {
|
|
86
|
+
readonly physical: "borderRightWidth";
|
|
87
|
+
readonly logical: "borderInlineEndWidth";
|
|
88
|
+
};
|
|
89
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
50
90
|
};
|
|
51
91
|
readonly borderWidthTop: {
|
|
52
|
-
readonly property:
|
|
92
|
+
readonly property: {
|
|
93
|
+
readonly physical: "borderTopWidth";
|
|
94
|
+
readonly logical: "borderBlockStartWidth";
|
|
95
|
+
};
|
|
96
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
53
97
|
};
|
|
54
98
|
readonly borderWidthBottom: {
|
|
55
|
-
readonly property:
|
|
99
|
+
readonly property: {
|
|
100
|
+
readonly physical: "borderBottomWidth";
|
|
101
|
+
readonly logical: "borderBlockEndWidth";
|
|
102
|
+
};
|
|
103
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
56
104
|
};
|
|
57
105
|
readonly borderRadius: {
|
|
58
106
|
readonly property: "borderRadius";
|
package/dist/List/elements.d.ts
CHANGED
|
@@ -827,7 +827,11 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
|
|
|
827
827
|
readonly property: "backgroundPosition";
|
|
828
828
|
}>;
|
|
829
829
|
borderBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
830
|
-
readonly property:
|
|
830
|
+
readonly property: {
|
|
831
|
+
readonly physical: "borderBottom";
|
|
832
|
+
readonly logical: "borderBlockEnd";
|
|
833
|
+
};
|
|
834
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
831
835
|
readonly scale: "borders";
|
|
832
836
|
}>;
|
|
833
837
|
borderColor?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -835,7 +839,11 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
|
|
|
835
839
|
readonly scale: "colors";
|
|
836
840
|
}>;
|
|
837
841
|
borderLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
838
|
-
readonly property:
|
|
842
|
+
readonly property: {
|
|
843
|
+
readonly physical: "borderLeft";
|
|
844
|
+
readonly logical: "borderInlineStart";
|
|
845
|
+
};
|
|
846
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
839
847
|
readonly scale: "borders";
|
|
840
848
|
}>;
|
|
841
849
|
borderRadius?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -843,14 +851,22 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
|
|
|
843
851
|
readonly scale: "borderRadii";
|
|
844
852
|
}>;
|
|
845
853
|
borderRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
846
|
-
readonly property:
|
|
854
|
+
readonly property: {
|
|
855
|
+
readonly physical: "borderRight";
|
|
856
|
+
readonly logical: "borderInlineEnd";
|
|
857
|
+
};
|
|
858
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
847
859
|
readonly scale: "borders";
|
|
848
860
|
}>;
|
|
849
861
|
borderStyle?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
850
862
|
readonly property: "borderStyle";
|
|
851
863
|
}>;
|
|
852
864
|
borderTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
853
|
-
readonly property:
|
|
865
|
+
readonly property: {
|
|
866
|
+
readonly physical: "borderTop";
|
|
867
|
+
readonly logical: "borderBlockStart";
|
|
868
|
+
};
|
|
869
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
854
870
|
readonly scale: "borders";
|
|
855
871
|
}>;
|
|
856
872
|
borderWidth?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -986,33 +1002,65 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
|
|
|
986
1002
|
}>;
|
|
987
1003
|
borderX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
988
1004
|
readonly property: "border";
|
|
989
|
-
readonly properties:
|
|
1005
|
+
readonly properties: {
|
|
1006
|
+
readonly physical: readonly ["borderLeft", "borderRight"];
|
|
1007
|
+
readonly logical: readonly ["borderInlineStart", "borderInlineEnd"];
|
|
1008
|
+
};
|
|
1009
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
990
1010
|
readonly scale: "borders";
|
|
991
1011
|
}>;
|
|
992
1012
|
borderY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
993
1013
|
readonly property: "border";
|
|
994
|
-
readonly properties:
|
|
1014
|
+
readonly properties: {
|
|
1015
|
+
readonly physical: readonly ["borderTop", "borderBottom"];
|
|
1016
|
+
readonly logical: readonly ["borderBlockStart", "borderBlockEnd"];
|
|
1017
|
+
};
|
|
1018
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
995
1019
|
readonly scale: "borders";
|
|
996
1020
|
}>;
|
|
997
1021
|
borderWidthX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
998
1022
|
readonly property: "borderWidth";
|
|
999
|
-
readonly properties:
|
|
1023
|
+
readonly properties: {
|
|
1024
|
+
readonly physical: readonly ["borderLeftWidth", "borderRightWidth"];
|
|
1025
|
+
readonly logical: readonly ["borderInlineStartWidth", "borderInlineEndWidth"];
|
|
1026
|
+
};
|
|
1027
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1000
1028
|
}>;
|
|
1001
1029
|
borderWidthY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1002
1030
|
readonly property: "borderWidth";
|
|
1003
|
-
readonly properties:
|
|
1031
|
+
readonly properties: {
|
|
1032
|
+
readonly physical: readonly ["borderTopWidth", "borderBottomWidth"];
|
|
1033
|
+
readonly logical: readonly ["borderBlockStartWidth", "borderBlockEndWidth"];
|
|
1034
|
+
};
|
|
1035
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1004
1036
|
}>;
|
|
1005
1037
|
borderWidthLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1006
|
-
readonly property:
|
|
1038
|
+
readonly property: {
|
|
1039
|
+
readonly physical: "borderLeftWidth";
|
|
1040
|
+
readonly logical: "borderInlineStartWidth";
|
|
1041
|
+
};
|
|
1042
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1007
1043
|
}>;
|
|
1008
1044
|
borderWidthRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1009
|
-
readonly property:
|
|
1045
|
+
readonly property: {
|
|
1046
|
+
readonly physical: "borderRightWidth";
|
|
1047
|
+
readonly logical: "borderInlineEndWidth";
|
|
1048
|
+
};
|
|
1049
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1010
1050
|
}>;
|
|
1011
1051
|
borderWidthTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1012
|
-
readonly property:
|
|
1052
|
+
readonly property: {
|
|
1053
|
+
readonly physical: "borderTopWidth";
|
|
1054
|
+
readonly logical: "borderBlockStartWidth";
|
|
1055
|
+
};
|
|
1056
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1013
1057
|
}>;
|
|
1014
1058
|
borderWidthBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1015
|
-
readonly property:
|
|
1059
|
+
readonly property: {
|
|
1060
|
+
readonly physical: "borderBottomWidth";
|
|
1061
|
+
readonly logical: "borderBlockEndWidth";
|
|
1062
|
+
};
|
|
1063
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1016
1064
|
}>;
|
|
1017
1065
|
borderRadiusLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1018
1066
|
readonly property: "borderRadius";
|
package/dist/Menu/elements.d.ts
CHANGED
|
@@ -273,28 +273,52 @@ declare const listProps: import("@codecademy/variance/dist/types/config").Parser
|
|
|
273
273
|
};
|
|
274
274
|
readonly borderX: {
|
|
275
275
|
readonly property: "border";
|
|
276
|
-
readonly properties:
|
|
276
|
+
readonly properties: {
|
|
277
|
+
readonly physical: readonly ["borderLeft", "borderRight"];
|
|
278
|
+
readonly logical: readonly ["borderInlineStart", "borderInlineEnd"];
|
|
279
|
+
};
|
|
280
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
277
281
|
readonly scale: "borders";
|
|
278
282
|
};
|
|
279
283
|
readonly borderY: {
|
|
280
284
|
readonly property: "border";
|
|
281
|
-
readonly properties:
|
|
285
|
+
readonly properties: {
|
|
286
|
+
readonly physical: readonly ["borderTop", "borderBottom"];
|
|
287
|
+
readonly logical: readonly ["borderBlockStart", "borderBlockEnd"];
|
|
288
|
+
};
|
|
289
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
282
290
|
readonly scale: "borders";
|
|
283
291
|
};
|
|
284
292
|
readonly borderTop: {
|
|
285
|
-
readonly property:
|
|
293
|
+
readonly property: {
|
|
294
|
+
readonly physical: "borderTop";
|
|
295
|
+
readonly logical: "borderBlockStart";
|
|
296
|
+
};
|
|
297
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
286
298
|
readonly scale: "borders";
|
|
287
299
|
};
|
|
288
300
|
readonly borderRight: {
|
|
289
|
-
readonly property:
|
|
301
|
+
readonly property: {
|
|
302
|
+
readonly physical: "borderRight";
|
|
303
|
+
readonly logical: "borderInlineEnd";
|
|
304
|
+
};
|
|
305
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
290
306
|
readonly scale: "borders";
|
|
291
307
|
};
|
|
292
308
|
readonly borderBottom: {
|
|
293
|
-
readonly property:
|
|
309
|
+
readonly property: {
|
|
310
|
+
readonly physical: "borderBottom";
|
|
311
|
+
readonly logical: "borderBlockEnd";
|
|
312
|
+
};
|
|
313
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
294
314
|
readonly scale: "borders";
|
|
295
315
|
};
|
|
296
316
|
readonly borderLeft: {
|
|
297
|
-
readonly property:
|
|
317
|
+
readonly property: {
|
|
318
|
+
readonly physical: "borderLeft";
|
|
319
|
+
readonly logical: "borderInlineStart";
|
|
320
|
+
};
|
|
321
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
298
322
|
readonly scale: "borders";
|
|
299
323
|
};
|
|
300
324
|
readonly borderWidth: {
|
|
@@ -302,23 +326,47 @@ declare const listProps: import("@codecademy/variance/dist/types/config").Parser
|
|
|
302
326
|
};
|
|
303
327
|
readonly borderWidthX: {
|
|
304
328
|
readonly property: "borderWidth";
|
|
305
|
-
readonly properties:
|
|
329
|
+
readonly properties: {
|
|
330
|
+
readonly physical: readonly ["borderLeftWidth", "borderRightWidth"];
|
|
331
|
+
readonly logical: readonly ["borderInlineStartWidth", "borderInlineEndWidth"];
|
|
332
|
+
};
|
|
333
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
306
334
|
};
|
|
307
335
|
readonly borderWidthY: {
|
|
308
336
|
readonly property: "borderWidth";
|
|
309
|
-
readonly properties:
|
|
337
|
+
readonly properties: {
|
|
338
|
+
readonly physical: readonly ["borderTopWidth", "borderBottomWidth"];
|
|
339
|
+
readonly logical: readonly ["borderBlockStartWidth", "borderBlockEndWidth"];
|
|
340
|
+
};
|
|
341
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
310
342
|
};
|
|
311
343
|
readonly borderWidthLeft: {
|
|
312
|
-
readonly property:
|
|
344
|
+
readonly property: {
|
|
345
|
+
readonly physical: "borderLeftWidth";
|
|
346
|
+
readonly logical: "borderInlineStartWidth";
|
|
347
|
+
};
|
|
348
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
313
349
|
};
|
|
314
350
|
readonly borderWidthRight: {
|
|
315
|
-
readonly property:
|
|
351
|
+
readonly property: {
|
|
352
|
+
readonly physical: "borderRightWidth";
|
|
353
|
+
readonly logical: "borderInlineEndWidth";
|
|
354
|
+
};
|
|
355
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
316
356
|
};
|
|
317
357
|
readonly borderWidthTop: {
|
|
318
|
-
readonly property:
|
|
358
|
+
readonly property: {
|
|
359
|
+
readonly physical: "borderTopWidth";
|
|
360
|
+
readonly logical: "borderBlockStartWidth";
|
|
361
|
+
};
|
|
362
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
319
363
|
};
|
|
320
364
|
readonly borderWidthBottom: {
|
|
321
|
-
readonly property:
|
|
365
|
+
readonly property: {
|
|
366
|
+
readonly physical: "borderBottomWidth";
|
|
367
|
+
readonly logical: "borderBlockEndWidth";
|
|
368
|
+
};
|
|
369
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
322
370
|
};
|
|
323
371
|
readonly borderRadius: {
|
|
324
372
|
readonly property: "borderRadius";
|
|
@@ -369,11 +369,19 @@ export declare const AnimatedFadeButton: (props: {
|
|
|
369
369
|
readonly property: "zIndex";
|
|
370
370
|
}>;
|
|
371
371
|
borderBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
372
|
-
readonly property:
|
|
372
|
+
readonly property: {
|
|
373
|
+
readonly physical: "borderBottom";
|
|
374
|
+
readonly logical: "borderBlockEnd";
|
|
375
|
+
};
|
|
376
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
373
377
|
readonly scale: "borders";
|
|
374
378
|
}>;
|
|
375
379
|
borderLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
376
|
-
readonly property:
|
|
380
|
+
readonly property: {
|
|
381
|
+
readonly physical: "borderLeft";
|
|
382
|
+
readonly logical: "borderInlineStart";
|
|
383
|
+
};
|
|
384
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
377
385
|
readonly scale: "borders";
|
|
378
386
|
}>;
|
|
379
387
|
borderRadius?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -381,14 +389,22 @@ export declare const AnimatedFadeButton: (props: {
|
|
|
381
389
|
readonly scale: "borderRadii";
|
|
382
390
|
}>;
|
|
383
391
|
borderRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
384
|
-
readonly property:
|
|
392
|
+
readonly property: {
|
|
393
|
+
readonly physical: "borderRight";
|
|
394
|
+
readonly logical: "borderInlineEnd";
|
|
395
|
+
};
|
|
396
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
385
397
|
readonly scale: "borders";
|
|
386
398
|
}>;
|
|
387
399
|
borderStyle?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
388
400
|
readonly property: "borderStyle";
|
|
389
401
|
}>;
|
|
390
402
|
borderTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
391
|
-
readonly property:
|
|
403
|
+
readonly property: {
|
|
404
|
+
readonly physical: "borderTop";
|
|
405
|
+
readonly logical: "borderBlockStart";
|
|
406
|
+
};
|
|
407
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
392
408
|
readonly scale: "borders";
|
|
393
409
|
}>;
|
|
394
410
|
borderWidth?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -522,33 +538,65 @@ export declare const AnimatedFadeButton: (props: {
|
|
|
522
538
|
}>;
|
|
523
539
|
borderX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
524
540
|
readonly property: "border";
|
|
525
|
-
readonly properties:
|
|
541
|
+
readonly properties: {
|
|
542
|
+
readonly physical: readonly ["borderLeft", "borderRight"];
|
|
543
|
+
readonly logical: readonly ["borderInlineStart", "borderInlineEnd"];
|
|
544
|
+
};
|
|
545
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
526
546
|
readonly scale: "borders";
|
|
527
547
|
}>;
|
|
528
548
|
borderY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
529
549
|
readonly property: "border";
|
|
530
|
-
readonly properties:
|
|
550
|
+
readonly properties: {
|
|
551
|
+
readonly physical: readonly ["borderTop", "borderBottom"];
|
|
552
|
+
readonly logical: readonly ["borderBlockStart", "borderBlockEnd"];
|
|
553
|
+
};
|
|
554
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
531
555
|
readonly scale: "borders";
|
|
532
556
|
}>;
|
|
533
557
|
borderWidthX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
534
558
|
readonly property: "borderWidth";
|
|
535
|
-
readonly properties:
|
|
559
|
+
readonly properties: {
|
|
560
|
+
readonly physical: readonly ["borderLeftWidth", "borderRightWidth"];
|
|
561
|
+
readonly logical: readonly ["borderInlineStartWidth", "borderInlineEndWidth"];
|
|
562
|
+
};
|
|
563
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
536
564
|
}>;
|
|
537
565
|
borderWidthY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
538
566
|
readonly property: "borderWidth";
|
|
539
|
-
readonly properties:
|
|
567
|
+
readonly properties: {
|
|
568
|
+
readonly physical: readonly ["borderTopWidth", "borderBottomWidth"];
|
|
569
|
+
readonly logical: readonly ["borderBlockStartWidth", "borderBlockEndWidth"];
|
|
570
|
+
};
|
|
571
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
540
572
|
}>;
|
|
541
573
|
borderWidthLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
542
|
-
readonly property:
|
|
574
|
+
readonly property: {
|
|
575
|
+
readonly physical: "borderLeftWidth";
|
|
576
|
+
readonly logical: "borderInlineStartWidth";
|
|
577
|
+
};
|
|
578
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
543
579
|
}>;
|
|
544
580
|
borderWidthRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
545
|
-
readonly property:
|
|
581
|
+
readonly property: {
|
|
582
|
+
readonly physical: "borderRightWidth";
|
|
583
|
+
readonly logical: "borderInlineEndWidth";
|
|
584
|
+
};
|
|
585
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
546
586
|
}>;
|
|
547
587
|
borderWidthTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
548
|
-
readonly property:
|
|
588
|
+
readonly property: {
|
|
589
|
+
readonly physical: "borderTopWidth";
|
|
590
|
+
readonly logical: "borderBlockStartWidth";
|
|
591
|
+
};
|
|
592
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
549
593
|
}>;
|
|
550
594
|
borderWidthBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
551
|
-
readonly property:
|
|
595
|
+
readonly property: {
|
|
596
|
+
readonly physical: "borderBottomWidth";
|
|
597
|
+
readonly logical: "borderBlockEndWidth";
|
|
598
|
+
};
|
|
599
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
552
600
|
}>;
|
|
553
601
|
borderRadiusLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
554
602
|
readonly property: "borderRadius";
|