@codecademy/gamut 68.0.1-alpha.5b7e3d.0 → 68.0.1-alpha.7afb48.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/Anchor/index.d.ts +12 -60
- package/dist/Badge/index.d.ts +14 -74
- package/dist/BarChart/BarChartProvider.d.ts +19 -0
- package/dist/BarChart/BarChartProvider.js +31 -0
- package/dist/BarChart/BarRow/elements.d.ts +713 -0
- package/dist/BarChart/BarRow/elements.js +89 -0
- package/dist/BarChart/BarRow/index.d.ts +26 -0
- package/dist/BarChart/BarRow/index.js +254 -0
- package/dist/BarChart/GENERIC_EXAMPLE.d.ts +14 -0
- package/dist/BarChart/GENERIC_EXAMPLE.js +333 -0
- package/dist/BarChart/index.d.ts +4 -0
- package/dist/BarChart/index.js +158 -0
- package/dist/BarChart/layout/GridLines.d.ts +7 -0
- package/dist/BarChart/layout/GridLines.js +78 -0
- package/dist/BarChart/layout/ScaleChartHeader.d.ts +10 -0
- package/dist/BarChart/layout/ScaleChartHeader.js +89 -0
- package/dist/BarChart/layout/VerticalSpacer.d.ts +6 -0
- package/dist/BarChart/layout/VerticalSpacer.js +56 -0
- package/dist/BarChart/shared/elements.d.ts +7 -0
- package/dist/BarChart/shared/elements.js +12 -0
- package/dist/BarChart/shared/styles.d.ts +4 -0
- package/dist/BarChart/shared/styles.js +4 -0
- package/dist/BarChart/shared/translations.d.ts +17 -0
- package/dist/BarChart/shared/translations.js +16 -0
- package/dist/BarChart/shared/types.d.ts +88 -0
- package/dist/BarChart/shared/types.js +1 -0
- package/dist/BarChart/utils/hooks.d.ts +93 -0
- package/dist/BarChart/utils/hooks.js +301 -0
- package/dist/BarChart/utils/index.d.ts +86 -0
- package/dist/BarChart/utils/index.js +165 -0
- package/dist/Box/props.d.ts +40 -204
- package/dist/Button/shared/styles.d.ts +38 -190
- package/dist/Card/elements.d.ts +120 -612
- package/dist/ConnectedForm/utils.d.ts +1 -1
- package/dist/Form/SelectDropdown/styles.d.ts +1 -1
- package/dist/Form/elements/Form.d.ts +39 -191
- package/dist/Form/elements/FormGroupLabel.js +2 -2
- package/dist/Form/inputs/Select.js +6 -5
- package/dist/GridForm/GridFormSections/GridFormSectionBreak.d.ts +28 -144
- package/dist/InternalFloatingCard/InternalFloatingCard.d.ts +6 -30
- package/dist/Layout/Column.d.ts +12 -60
- package/dist/Layout/LayoutGrid.d.ts +12 -60
- package/dist/List/elements.d.ts +53 -265
- package/dist/Menu/elements.d.ts +40 -204
- package/dist/Pagination/AnimatedPaginationButtons.d.ts +38 -190
- package/dist/Pagination/utils.d.ts +38 -190
- package/dist/Tabs/props.d.ts +12 -60
- package/dist/Tag/types.d.ts +12 -60
- package/dist/Toggle/elements.d.ts +26 -134
- package/dist/Typography/Text.d.ts +14 -74
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +7 -7
package/dist/Box/props.d.ts
CHANGED
|
@@ -7,53 +7,29 @@ export declare const boxProps: import("@codecademy/variance/dist/types/config").
|
|
|
7
7
|
};
|
|
8
8
|
readonly px: {
|
|
9
9
|
readonly property: "padding";
|
|
10
|
-
readonly properties:
|
|
11
|
-
readonly physical: readonly ["paddingLeft", "paddingRight"];
|
|
12
|
-
readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
|
|
13
|
-
};
|
|
10
|
+
readonly properties: readonly ["paddingLeft", "paddingRight"];
|
|
14
11
|
readonly scale: "spacing";
|
|
15
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
16
12
|
};
|
|
17
13
|
readonly py: {
|
|
18
14
|
readonly property: "padding";
|
|
19
|
-
readonly properties:
|
|
20
|
-
readonly physical: readonly ["paddingTop", "paddingBottom"];
|
|
21
|
-
readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
|
|
22
|
-
};
|
|
15
|
+
readonly properties: readonly ["paddingTop", "paddingBottom"];
|
|
23
16
|
readonly scale: "spacing";
|
|
24
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
25
17
|
};
|
|
26
18
|
readonly pt: {
|
|
27
|
-
readonly property:
|
|
28
|
-
readonly physical: "paddingTop";
|
|
29
|
-
readonly logical: "paddingBlockStart";
|
|
30
|
-
};
|
|
19
|
+
readonly property: "paddingTop";
|
|
31
20
|
readonly scale: "spacing";
|
|
32
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
33
21
|
};
|
|
34
22
|
readonly pb: {
|
|
35
|
-
readonly property:
|
|
36
|
-
readonly physical: "paddingBottom";
|
|
37
|
-
readonly logical: "paddingBlockEnd";
|
|
38
|
-
};
|
|
23
|
+
readonly property: "paddingBottom";
|
|
39
24
|
readonly scale: "spacing";
|
|
40
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
41
25
|
};
|
|
42
26
|
readonly pr: {
|
|
43
|
-
readonly property:
|
|
44
|
-
readonly physical: "paddingRight";
|
|
45
|
-
readonly logical: "paddingInlineEnd";
|
|
46
|
-
};
|
|
27
|
+
readonly property: "paddingRight";
|
|
47
28
|
readonly scale: "spacing";
|
|
48
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
49
29
|
};
|
|
50
30
|
readonly pl: {
|
|
51
|
-
readonly property:
|
|
52
|
-
readonly physical: "paddingLeft";
|
|
53
|
-
readonly logical: "paddingInlineStart";
|
|
54
|
-
};
|
|
31
|
+
readonly property: "paddingLeft";
|
|
55
32
|
readonly scale: "spacing";
|
|
56
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
57
33
|
};
|
|
58
34
|
readonly m: {
|
|
59
35
|
readonly property: "margin";
|
|
@@ -61,53 +37,29 @@ export declare const boxProps: import("@codecademy/variance/dist/types/config").
|
|
|
61
37
|
};
|
|
62
38
|
readonly mx: {
|
|
63
39
|
readonly property: "margin";
|
|
64
|
-
readonly properties:
|
|
65
|
-
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
66
|
-
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
67
|
-
};
|
|
68
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
40
|
+
readonly properties: readonly ["marginLeft", "marginRight"];
|
|
69
41
|
readonly scale: "spacing";
|
|
70
42
|
};
|
|
71
43
|
readonly my: {
|
|
72
44
|
readonly property: "margin";
|
|
73
|
-
readonly properties:
|
|
74
|
-
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
75
|
-
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
76
|
-
};
|
|
77
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
45
|
+
readonly properties: readonly ["marginTop", "marginBottom"];
|
|
78
46
|
readonly scale: "spacing";
|
|
79
47
|
};
|
|
80
48
|
readonly mt: {
|
|
81
|
-
readonly property:
|
|
82
|
-
readonly physical: "marginTop";
|
|
83
|
-
readonly logical: "marginBlockStart";
|
|
84
|
-
};
|
|
49
|
+
readonly property: "marginTop";
|
|
85
50
|
readonly scale: "spacing";
|
|
86
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
87
51
|
};
|
|
88
52
|
readonly mb: {
|
|
89
|
-
readonly property:
|
|
90
|
-
readonly physical: "marginBottom";
|
|
91
|
-
readonly logical: "marginBlockEnd";
|
|
92
|
-
};
|
|
53
|
+
readonly property: "marginBottom";
|
|
93
54
|
readonly scale: "spacing";
|
|
94
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
95
55
|
};
|
|
96
56
|
readonly mr: {
|
|
97
|
-
readonly property:
|
|
98
|
-
readonly physical: "marginRight";
|
|
99
|
-
readonly logical: "marginInlineEnd";
|
|
100
|
-
};
|
|
57
|
+
readonly property: "marginRight";
|
|
101
58
|
readonly scale: "spacing";
|
|
102
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
103
59
|
};
|
|
104
60
|
readonly ml: {
|
|
105
|
-
readonly property:
|
|
106
|
-
readonly physical: "marginLeft";
|
|
107
|
-
readonly logical: "marginInlineStart";
|
|
108
|
-
};
|
|
61
|
+
readonly property: "marginLeft";
|
|
109
62
|
readonly scale: "spacing";
|
|
110
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
111
63
|
};
|
|
112
64
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
113
65
|
readonly border: {
|
|
@@ -116,52 +68,28 @@ export declare const boxProps: import("@codecademy/variance/dist/types/config").
|
|
|
116
68
|
};
|
|
117
69
|
readonly borderX: {
|
|
118
70
|
readonly property: "border";
|
|
119
|
-
readonly properties:
|
|
120
|
-
readonly physical: readonly ["borderLeft", "borderRight"];
|
|
121
|
-
readonly logical: readonly ["borderInlineStart", "borderInlineEnd"];
|
|
122
|
-
};
|
|
123
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
71
|
+
readonly properties: readonly ["borderLeft", "borderRight"];
|
|
124
72
|
readonly scale: "borders";
|
|
125
73
|
};
|
|
126
74
|
readonly borderY: {
|
|
127
75
|
readonly property: "border";
|
|
128
|
-
readonly properties:
|
|
129
|
-
readonly physical: readonly ["borderTop", "borderBottom"];
|
|
130
|
-
readonly logical: readonly ["borderBlockStart", "borderBlockEnd"];
|
|
131
|
-
};
|
|
132
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
76
|
+
readonly properties: readonly ["borderTop", "borderBottom"];
|
|
133
77
|
readonly scale: "borders";
|
|
134
78
|
};
|
|
135
79
|
readonly borderTop: {
|
|
136
|
-
readonly property:
|
|
137
|
-
readonly physical: "borderTop";
|
|
138
|
-
readonly logical: "borderBlockStart";
|
|
139
|
-
};
|
|
140
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
80
|
+
readonly property: "borderTop";
|
|
141
81
|
readonly scale: "borders";
|
|
142
82
|
};
|
|
143
83
|
readonly borderRight: {
|
|
144
|
-
readonly property:
|
|
145
|
-
readonly physical: "borderRight";
|
|
146
|
-
readonly logical: "borderInlineEnd";
|
|
147
|
-
};
|
|
148
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
84
|
+
readonly property: "borderRight";
|
|
149
85
|
readonly scale: "borders";
|
|
150
86
|
};
|
|
151
87
|
readonly borderBottom: {
|
|
152
|
-
readonly property:
|
|
153
|
-
readonly physical: "borderBottom";
|
|
154
|
-
readonly logical: "borderBlockEnd";
|
|
155
|
-
};
|
|
156
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
88
|
+
readonly property: "borderBottom";
|
|
157
89
|
readonly scale: "borders";
|
|
158
90
|
};
|
|
159
91
|
readonly borderLeft: {
|
|
160
|
-
readonly property:
|
|
161
|
-
readonly physical: "borderLeft";
|
|
162
|
-
readonly logical: "borderInlineStart";
|
|
163
|
-
};
|
|
164
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
92
|
+
readonly property: "borderLeft";
|
|
165
93
|
readonly scale: "borders";
|
|
166
94
|
};
|
|
167
95
|
readonly borderWidth: {
|
|
@@ -169,47 +97,23 @@ export declare const boxProps: import("@codecademy/variance/dist/types/config").
|
|
|
169
97
|
};
|
|
170
98
|
readonly borderWidthX: {
|
|
171
99
|
readonly property: "borderWidth";
|
|
172
|
-
readonly properties:
|
|
173
|
-
readonly physical: readonly ["borderLeftWidth", "borderRightWidth"];
|
|
174
|
-
readonly logical: readonly ["borderInlineStartWidth", "borderInlineEndWidth"];
|
|
175
|
-
};
|
|
176
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
100
|
+
readonly properties: readonly ["borderLeftWidth", "borderRightWidth"];
|
|
177
101
|
};
|
|
178
102
|
readonly borderWidthY: {
|
|
179
103
|
readonly property: "borderWidth";
|
|
180
|
-
readonly properties:
|
|
181
|
-
readonly physical: readonly ["borderTopWidth", "borderBottomWidth"];
|
|
182
|
-
readonly logical: readonly ["borderBlockStartWidth", "borderBlockEndWidth"];
|
|
183
|
-
};
|
|
184
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
104
|
+
readonly properties: readonly ["borderTopWidth", "borderBottomWidth"];
|
|
185
105
|
};
|
|
186
106
|
readonly borderWidthLeft: {
|
|
187
|
-
readonly property:
|
|
188
|
-
readonly physical: "borderLeftWidth";
|
|
189
|
-
readonly logical: "borderInlineStartWidth";
|
|
190
|
-
};
|
|
191
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
107
|
+
readonly property: "borderLeftWidth";
|
|
192
108
|
};
|
|
193
109
|
readonly borderWidthRight: {
|
|
194
|
-
readonly property:
|
|
195
|
-
readonly physical: "borderRightWidth";
|
|
196
|
-
readonly logical: "borderInlineEndWidth";
|
|
197
|
-
};
|
|
198
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
110
|
+
readonly property: "borderRightWidth";
|
|
199
111
|
};
|
|
200
112
|
readonly borderWidthTop: {
|
|
201
|
-
readonly property:
|
|
202
|
-
readonly physical: "borderTopWidth";
|
|
203
|
-
readonly logical: "borderBlockStartWidth";
|
|
204
|
-
};
|
|
205
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
113
|
+
readonly property: "borderTopWidth";
|
|
206
114
|
};
|
|
207
115
|
readonly borderWidthBottom: {
|
|
208
|
-
readonly property:
|
|
209
|
-
readonly physical: "borderBottomWidth";
|
|
210
|
-
readonly logical: "borderBlockEndWidth";
|
|
211
|
-
};
|
|
212
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
116
|
+
readonly property: "borderBottomWidth";
|
|
213
117
|
};
|
|
214
118
|
readonly borderRadius: {
|
|
215
119
|
readonly property: "borderRadius";
|
|
@@ -217,70 +121,38 @@ export declare const boxProps: import("@codecademy/variance/dist/types/config").
|
|
|
217
121
|
};
|
|
218
122
|
readonly borderRadiusLeft: {
|
|
219
123
|
readonly property: "borderRadius";
|
|
220
|
-
readonly properties:
|
|
221
|
-
readonly physical: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
|
|
222
|
-
readonly logical: readonly ["borderStartStartRadius", "borderEndStartRadius"];
|
|
223
|
-
};
|
|
224
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
124
|
+
readonly properties: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
|
|
225
125
|
readonly scale: "borderRadii";
|
|
226
126
|
};
|
|
227
127
|
readonly borderRadiusTop: {
|
|
228
128
|
readonly property: "borderRadius";
|
|
229
|
-
readonly properties:
|
|
230
|
-
readonly physical: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
|
|
231
|
-
readonly logical: readonly ["borderStartStartRadius", "borderStartEndRadius"];
|
|
232
|
-
};
|
|
233
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
129
|
+
readonly properties: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
|
|
234
130
|
readonly scale: "borderRadii";
|
|
235
131
|
};
|
|
236
132
|
readonly borderRadiusBottom: {
|
|
237
133
|
readonly property: "borderRadius";
|
|
238
|
-
readonly properties:
|
|
239
|
-
readonly physical: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
|
|
240
|
-
readonly logical: readonly ["borderEndStartRadius", "borderEndEndRadius"];
|
|
241
|
-
};
|
|
242
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
134
|
+
readonly properties: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
|
|
243
135
|
readonly scale: "borderRadii";
|
|
244
136
|
};
|
|
245
137
|
readonly borderRadiusRight: {
|
|
246
138
|
readonly property: "borderRadius";
|
|
247
|
-
readonly properties:
|
|
248
|
-
readonly physical: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
|
|
249
|
-
readonly logical: readonly ["borderStartEndRadius", "borderEndEndRadius"];
|
|
250
|
-
};
|
|
251
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
139
|
+
readonly properties: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
|
|
252
140
|
readonly scale: "borderRadii";
|
|
253
141
|
};
|
|
254
142
|
readonly borderRadiusTopLeft: {
|
|
255
|
-
readonly property:
|
|
256
|
-
readonly physical: "borderTopLeftRadius";
|
|
257
|
-
readonly logical: "borderStartStartRadius";
|
|
258
|
-
};
|
|
259
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
143
|
+
readonly property: "borderTopLeftRadius";
|
|
260
144
|
readonly scale: "borderRadii";
|
|
261
145
|
};
|
|
262
146
|
readonly borderRadiusTopRight: {
|
|
263
|
-
readonly property:
|
|
264
|
-
readonly physical: "borderTopRightRadius";
|
|
265
|
-
readonly logical: "borderStartEndRadius";
|
|
266
|
-
};
|
|
267
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
147
|
+
readonly property: "borderTopRightRadius";
|
|
268
148
|
readonly scale: "borderRadii";
|
|
269
149
|
};
|
|
270
150
|
readonly borderRadiusBottomRight: {
|
|
271
|
-
readonly property:
|
|
272
|
-
readonly physical: "borderBottomRightRadius";
|
|
273
|
-
readonly logical: "borderEndEndRadius";
|
|
274
|
-
};
|
|
275
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
151
|
+
readonly property: "borderBottomRightRadius";
|
|
276
152
|
readonly scale: "borderRadii";
|
|
277
153
|
};
|
|
278
154
|
readonly borderRadiusBottomLeft: {
|
|
279
|
-
readonly property:
|
|
280
|
-
readonly physical: "borderBottomLeftRadius";
|
|
281
|
-
readonly logical: "borderEndStartRadius";
|
|
282
|
-
};
|
|
283
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
155
|
+
readonly property: "borderBottomLeftRadius";
|
|
284
156
|
readonly scale: "borderRadii";
|
|
285
157
|
};
|
|
286
158
|
readonly borderStyle: {
|
|
@@ -288,47 +160,23 @@ export declare const boxProps: import("@codecademy/variance/dist/types/config").
|
|
|
288
160
|
};
|
|
289
161
|
readonly borderStyleX: {
|
|
290
162
|
readonly property: "borderStyle";
|
|
291
|
-
readonly properties:
|
|
292
|
-
readonly physical: readonly ["borderLeftStyle", "borderRightStyle"];
|
|
293
|
-
readonly logical: readonly ["borderInlineStartStyle", "borderInlineEndStyle"];
|
|
294
|
-
};
|
|
295
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
163
|
+
readonly properties: readonly ["borderLeftStyle", "borderRightStyle"];
|
|
296
164
|
};
|
|
297
165
|
readonly borderStyleY: {
|
|
298
166
|
readonly property: "borderStyle";
|
|
299
|
-
readonly properties:
|
|
300
|
-
readonly physical: readonly ["borderTopStyle", "borderBottomStyle"];
|
|
301
|
-
readonly logical: readonly ["borderBlockStartStyle", "borderBlockEndStyle"];
|
|
302
|
-
};
|
|
303
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
167
|
+
readonly properties: readonly ["borderTopStyle", "borderBottomStyle"];
|
|
304
168
|
};
|
|
305
169
|
readonly borderStyleLeft: {
|
|
306
|
-
readonly property:
|
|
307
|
-
readonly physical: "borderLeftStyle";
|
|
308
|
-
readonly logical: "borderInlineStartStyle";
|
|
309
|
-
};
|
|
310
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
170
|
+
readonly property: "borderLeftStyle";
|
|
311
171
|
};
|
|
312
172
|
readonly borderStyleRight: {
|
|
313
|
-
readonly property:
|
|
314
|
-
readonly physical: "borderRightStyle";
|
|
315
|
-
readonly logical: "borderInlineEndStyle";
|
|
316
|
-
};
|
|
317
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
173
|
+
readonly property: "borderRightStyle";
|
|
318
174
|
};
|
|
319
175
|
readonly borderStyleTop: {
|
|
320
|
-
readonly property:
|
|
321
|
-
readonly physical: "borderTopStyle";
|
|
322
|
-
readonly logical: "borderBlockStartStyle";
|
|
323
|
-
};
|
|
324
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
176
|
+
readonly property: "borderTopStyle";
|
|
325
177
|
};
|
|
326
178
|
readonly borderStyleBottom: {
|
|
327
|
-
readonly property:
|
|
328
|
-
readonly physical: "borderBottomStyle";
|
|
329
|
-
readonly logical: "borderBlockEndStyle";
|
|
330
|
-
};
|
|
331
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
179
|
+
readonly property: "borderBottomStyle";
|
|
332
180
|
};
|
|
333
181
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
334
182
|
readonly flexBasis: {
|
|
@@ -436,40 +284,28 @@ export declare const boxProps: import("@codecademy/variance/dist/types/config").
|
|
|
436
284
|
};
|
|
437
285
|
readonly borderColorX: {
|
|
438
286
|
readonly property: "borderColor";
|
|
439
|
-
readonly properties:
|
|
440
|
-
readonly physical: readonly ["borderLeftColor", "borderRightColor"];
|
|
441
|
-
readonly logical: readonly ["borderInlineStartColor", "borderInlineEndColor"];
|
|
442
|
-
};
|
|
443
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
287
|
+
readonly properties: readonly ["borderLeftColor", "borderRightColor"];
|
|
444
288
|
readonly scale: "colors";
|
|
445
289
|
};
|
|
446
290
|
readonly borderColorY: {
|
|
447
291
|
readonly property: "borderColor";
|
|
448
|
-
readonly properties:
|
|
449
|
-
readonly physical: readonly ["borderTopColor", "borderBottomColor"];
|
|
450
|
-
readonly logical: readonly ["borderBlockStartColor", "borderBlockEndColor"];
|
|
451
|
-
};
|
|
452
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
292
|
+
readonly properties: readonly ["borderTopColor", "borderBottomColor"];
|
|
453
293
|
readonly scale: "colors";
|
|
454
294
|
};
|
|
455
295
|
readonly borderColorLeft: {
|
|
456
296
|
readonly property: "borderLeftColor";
|
|
457
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
458
297
|
readonly scale: "colors";
|
|
459
298
|
};
|
|
460
299
|
readonly borderColorRight: {
|
|
461
300
|
readonly property: "borderRightColor";
|
|
462
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
463
301
|
readonly scale: "colors";
|
|
464
302
|
};
|
|
465
303
|
readonly borderColorTop: {
|
|
466
304
|
readonly property: "borderTopColor";
|
|
467
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
468
305
|
readonly scale: "colors";
|
|
469
306
|
};
|
|
470
307
|
readonly borderColorBottom: {
|
|
471
308
|
readonly property: "borderBottomColor";
|
|
472
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
473
309
|
readonly scale: "colors";
|
|
474
310
|
};
|
|
475
311
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|