@codecademy/gamut 68.0.1-alpha.a46571.0 → 68.0.1-alpha.bd18ee.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 +33 -6
- package/dist/Badge/index.d.ts +33 -6
- package/dist/Box/props.d.ts +45 -66
- package/dist/Button/shared/styles.d.ts +45 -66
- package/dist/Card/elements.d.ts +135 -198
- package/dist/Form/elements/Form.d.ts +45 -66
- package/dist/GridForm/GridFormSections/GridFormSectionBreak.d.ts +45 -66
- package/dist/InternalFloatingCard/InternalFloatingCard.d.ts +33 -6
- package/dist/Layout/Column.d.ts +33 -6
- package/dist/List/elements.d.ts +78 -72
- package/dist/Menu/elements.d.ts +45 -66
- package/dist/Pagination/AnimatedPaginationButtons.d.ts +47 -68
- package/dist/Pagination/EllipsisButton.d.ts +5 -5
- package/dist/Pagination/EllipsisButton.js +2 -2
- package/dist/Pagination/index.js +4 -4
- package/dist/Pagination/utils.d.ts +45 -66
- package/dist/Pagination/utils.js +1 -1
- package/dist/Tabs/props.d.ts +33 -6
- package/dist/Tag/types.d.ts +33 -6
- package/dist/Typography/Text.d.ts +33 -6
- package/package.json +7 -7
package/dist/Anchor/index.d.ts
CHANGED
|
@@ -68,32 +68,59 @@ declare const anchorProps: import("@codecademy/variance/dist/types/config").Pars
|
|
|
68
68
|
readonly transform: (value: string | number) => string | 0;
|
|
69
69
|
};
|
|
70
70
|
readonly width: {
|
|
71
|
-
readonly property:
|
|
71
|
+
readonly property: {
|
|
72
|
+
readonly physical: "width";
|
|
73
|
+
readonly logical: "inlineSize";
|
|
74
|
+
};
|
|
75
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
72
76
|
readonly transform: (value: string | number) => string | 0;
|
|
73
77
|
};
|
|
74
78
|
readonly minWidth: {
|
|
75
|
-
readonly property:
|
|
79
|
+
readonly property: {
|
|
80
|
+
readonly physical: "minWidth";
|
|
81
|
+
readonly logical: "minInlineSize";
|
|
82
|
+
};
|
|
83
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
76
84
|
readonly transform: (value: string | number) => string | 0;
|
|
77
85
|
};
|
|
78
86
|
readonly maxWidth: {
|
|
79
|
-
readonly property:
|
|
87
|
+
readonly property: {
|
|
88
|
+
readonly physical: "maxWidth";
|
|
89
|
+
readonly logical: "maxInlineSize";
|
|
90
|
+
};
|
|
91
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
80
92
|
readonly transform: (value: string | number) => string | 0;
|
|
81
93
|
};
|
|
82
94
|
readonly height: {
|
|
83
|
-
readonly property:
|
|
95
|
+
readonly property: {
|
|
96
|
+
readonly physical: "height";
|
|
97
|
+
readonly logical: "blockSize";
|
|
98
|
+
};
|
|
99
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
84
100
|
readonly transform: (value: string | number) => string | 0;
|
|
85
101
|
};
|
|
86
102
|
readonly minHeight: {
|
|
87
|
-
readonly property:
|
|
103
|
+
readonly property: {
|
|
104
|
+
readonly physical: "minHeight";
|
|
105
|
+
readonly logical: "minBlockSize";
|
|
106
|
+
};
|
|
107
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
88
108
|
readonly transform: (value: string | number) => string | 0;
|
|
89
109
|
};
|
|
90
110
|
readonly maxHeight: {
|
|
91
|
-
readonly property:
|
|
111
|
+
readonly property: {
|
|
112
|
+
readonly physical: "maxHeight";
|
|
113
|
+
readonly logical: "maxBlockSize";
|
|
114
|
+
};
|
|
115
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
92
116
|
readonly transform: (value: string | number) => string | 0;
|
|
93
117
|
};
|
|
94
118
|
readonly verticalAlign: {
|
|
95
119
|
readonly property: "verticalAlign";
|
|
96
120
|
};
|
|
121
|
+
readonly direction: {
|
|
122
|
+
readonly property: "direction";
|
|
123
|
+
};
|
|
97
124
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
98
125
|
readonly p: {
|
|
99
126
|
readonly property: "padding";
|
package/dist/Badge/index.d.ts
CHANGED
|
@@ -178,32 +178,59 @@ declare const badgeProps: import("@codecademy/variance/dist/types/config").Parse
|
|
|
178
178
|
readonly transform: (value: string | number) => string | 0;
|
|
179
179
|
};
|
|
180
180
|
readonly width: {
|
|
181
|
-
readonly property:
|
|
181
|
+
readonly property: {
|
|
182
|
+
readonly physical: "width";
|
|
183
|
+
readonly logical: "inlineSize";
|
|
184
|
+
};
|
|
185
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
182
186
|
readonly transform: (value: string | number) => string | 0;
|
|
183
187
|
};
|
|
184
188
|
readonly minWidth: {
|
|
185
|
-
readonly property:
|
|
189
|
+
readonly property: {
|
|
190
|
+
readonly physical: "minWidth";
|
|
191
|
+
readonly logical: "minInlineSize";
|
|
192
|
+
};
|
|
193
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
186
194
|
readonly transform: (value: string | number) => string | 0;
|
|
187
195
|
};
|
|
188
196
|
readonly maxWidth: {
|
|
189
|
-
readonly property:
|
|
197
|
+
readonly property: {
|
|
198
|
+
readonly physical: "maxWidth";
|
|
199
|
+
readonly logical: "maxInlineSize";
|
|
200
|
+
};
|
|
201
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
190
202
|
readonly transform: (value: string | number) => string | 0;
|
|
191
203
|
};
|
|
192
204
|
readonly height: {
|
|
193
|
-
readonly property:
|
|
205
|
+
readonly property: {
|
|
206
|
+
readonly physical: "height";
|
|
207
|
+
readonly logical: "blockSize";
|
|
208
|
+
};
|
|
209
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
194
210
|
readonly transform: (value: string | number) => string | 0;
|
|
195
211
|
};
|
|
196
212
|
readonly minHeight: {
|
|
197
|
-
readonly property:
|
|
213
|
+
readonly property: {
|
|
214
|
+
readonly physical: "minHeight";
|
|
215
|
+
readonly logical: "minBlockSize";
|
|
216
|
+
};
|
|
217
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
198
218
|
readonly transform: (value: string | number) => string | 0;
|
|
199
219
|
};
|
|
200
220
|
readonly maxHeight: {
|
|
201
|
-
readonly property:
|
|
221
|
+
readonly property: {
|
|
222
|
+
readonly physical: "maxHeight";
|
|
223
|
+
readonly logical: "maxBlockSize";
|
|
224
|
+
};
|
|
225
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
202
226
|
readonly transform: (value: string | number) => string | 0;
|
|
203
227
|
};
|
|
204
228
|
readonly verticalAlign: {
|
|
205
229
|
readonly property: "verticalAlign";
|
|
206
230
|
};
|
|
231
|
+
readonly direction: {
|
|
232
|
+
readonly property: "direction";
|
|
233
|
+
};
|
|
207
234
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
208
235
|
readonly fontFamily: {
|
|
209
236
|
readonly property: "fontFamily";
|
package/dist/Box/props.d.ts
CHANGED
|
@@ -116,52 +116,28 @@ export declare const boxProps: import("@codecademy/variance/dist/types/config").
|
|
|
116
116
|
};
|
|
117
117
|
readonly borderX: {
|
|
118
118
|
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;
|
|
119
|
+
readonly properties: readonly ["borderLeft", "borderRight"];
|
|
124
120
|
readonly scale: "borders";
|
|
125
121
|
};
|
|
126
122
|
readonly borderY: {
|
|
127
123
|
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;
|
|
124
|
+
readonly properties: readonly ["borderTop", "borderBottom"];
|
|
133
125
|
readonly scale: "borders";
|
|
134
126
|
};
|
|
135
127
|
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;
|
|
128
|
+
readonly property: "borderTop";
|
|
141
129
|
readonly scale: "borders";
|
|
142
130
|
};
|
|
143
131
|
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;
|
|
132
|
+
readonly property: "borderRight";
|
|
149
133
|
readonly scale: "borders";
|
|
150
134
|
};
|
|
151
135
|
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;
|
|
136
|
+
readonly property: "borderBottom";
|
|
157
137
|
readonly scale: "borders";
|
|
158
138
|
};
|
|
159
139
|
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;
|
|
140
|
+
readonly property: "borderLeft";
|
|
165
141
|
readonly scale: "borders";
|
|
166
142
|
};
|
|
167
143
|
readonly borderWidth: {
|
|
@@ -169,47 +145,23 @@ export declare const boxProps: import("@codecademy/variance/dist/types/config").
|
|
|
169
145
|
};
|
|
170
146
|
readonly borderWidthX: {
|
|
171
147
|
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;
|
|
148
|
+
readonly properties: readonly ["borderLeftWidth", "borderRightWidth"];
|
|
177
149
|
};
|
|
178
150
|
readonly borderWidthY: {
|
|
179
151
|
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;
|
|
152
|
+
readonly properties: readonly ["borderTopWidth", "borderBottomWidth"];
|
|
185
153
|
};
|
|
186
154
|
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;
|
|
155
|
+
readonly property: "borderLeftWidth";
|
|
192
156
|
};
|
|
193
157
|
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;
|
|
158
|
+
readonly property: "borderRightWidth";
|
|
199
159
|
};
|
|
200
160
|
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;
|
|
161
|
+
readonly property: "borderTopWidth";
|
|
206
162
|
};
|
|
207
163
|
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;
|
|
164
|
+
readonly property: "borderBottomWidth";
|
|
213
165
|
};
|
|
214
166
|
readonly borderRadius: {
|
|
215
167
|
readonly property: "borderRadius";
|
|
@@ -335,32 +287,59 @@ export declare const boxProps: import("@codecademy/variance/dist/types/config").
|
|
|
335
287
|
readonly transform: (value: string | number) => string | 0;
|
|
336
288
|
};
|
|
337
289
|
readonly width: {
|
|
338
|
-
readonly property:
|
|
290
|
+
readonly property: {
|
|
291
|
+
readonly physical: "width";
|
|
292
|
+
readonly logical: "inlineSize";
|
|
293
|
+
};
|
|
294
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
339
295
|
readonly transform: (value: string | number) => string | 0;
|
|
340
296
|
};
|
|
341
297
|
readonly minWidth: {
|
|
342
|
-
readonly property:
|
|
298
|
+
readonly property: {
|
|
299
|
+
readonly physical: "minWidth";
|
|
300
|
+
readonly logical: "minInlineSize";
|
|
301
|
+
};
|
|
302
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
343
303
|
readonly transform: (value: string | number) => string | 0;
|
|
344
304
|
};
|
|
345
305
|
readonly maxWidth: {
|
|
346
|
-
readonly property:
|
|
306
|
+
readonly property: {
|
|
307
|
+
readonly physical: "maxWidth";
|
|
308
|
+
readonly logical: "maxInlineSize";
|
|
309
|
+
};
|
|
310
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
347
311
|
readonly transform: (value: string | number) => string | 0;
|
|
348
312
|
};
|
|
349
313
|
readonly height: {
|
|
350
|
-
readonly property:
|
|
314
|
+
readonly property: {
|
|
315
|
+
readonly physical: "height";
|
|
316
|
+
readonly logical: "blockSize";
|
|
317
|
+
};
|
|
318
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
351
319
|
readonly transform: (value: string | number) => string | 0;
|
|
352
320
|
};
|
|
353
321
|
readonly minHeight: {
|
|
354
|
-
readonly property:
|
|
322
|
+
readonly property: {
|
|
323
|
+
readonly physical: "minHeight";
|
|
324
|
+
readonly logical: "minBlockSize";
|
|
325
|
+
};
|
|
326
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
355
327
|
readonly transform: (value: string | number) => string | 0;
|
|
356
328
|
};
|
|
357
329
|
readonly maxHeight: {
|
|
358
|
-
readonly property:
|
|
330
|
+
readonly property: {
|
|
331
|
+
readonly physical: "maxHeight";
|
|
332
|
+
readonly logical: "maxBlockSize";
|
|
333
|
+
};
|
|
334
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
359
335
|
readonly transform: (value: string | number) => string | 0;
|
|
360
336
|
};
|
|
361
337
|
readonly verticalAlign: {
|
|
362
338
|
readonly property: "verticalAlign";
|
|
363
339
|
};
|
|
340
|
+
readonly direction: {
|
|
341
|
+
readonly property: "direction";
|
|
342
|
+
};
|
|
364
343
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
365
344
|
readonly color: {
|
|
366
345
|
readonly property: "color";
|
|
@@ -65,32 +65,59 @@ export declare const buttonProps: import("@codecademy/variance/dist/types/config
|
|
|
65
65
|
readonly transform: (value: string | number) => string | 0;
|
|
66
66
|
};
|
|
67
67
|
readonly width: {
|
|
68
|
-
readonly property:
|
|
68
|
+
readonly property: {
|
|
69
|
+
readonly physical: "width";
|
|
70
|
+
readonly logical: "inlineSize";
|
|
71
|
+
};
|
|
72
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
69
73
|
readonly transform: (value: string | number) => string | 0;
|
|
70
74
|
};
|
|
71
75
|
readonly minWidth: {
|
|
72
|
-
readonly property:
|
|
76
|
+
readonly property: {
|
|
77
|
+
readonly physical: "minWidth";
|
|
78
|
+
readonly logical: "minInlineSize";
|
|
79
|
+
};
|
|
80
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
73
81
|
readonly transform: (value: string | number) => string | 0;
|
|
74
82
|
};
|
|
75
83
|
readonly maxWidth: {
|
|
76
|
-
readonly property:
|
|
84
|
+
readonly property: {
|
|
85
|
+
readonly physical: "maxWidth";
|
|
86
|
+
readonly logical: "maxInlineSize";
|
|
87
|
+
};
|
|
88
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
77
89
|
readonly transform: (value: string | number) => string | 0;
|
|
78
90
|
};
|
|
79
91
|
readonly height: {
|
|
80
|
-
readonly property:
|
|
92
|
+
readonly property: {
|
|
93
|
+
readonly physical: "height";
|
|
94
|
+
readonly logical: "blockSize";
|
|
95
|
+
};
|
|
96
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
81
97
|
readonly transform: (value: string | number) => string | 0;
|
|
82
98
|
};
|
|
83
99
|
readonly minHeight: {
|
|
84
|
-
readonly property:
|
|
100
|
+
readonly property: {
|
|
101
|
+
readonly physical: "minHeight";
|
|
102
|
+
readonly logical: "minBlockSize";
|
|
103
|
+
};
|
|
104
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
85
105
|
readonly transform: (value: string | number) => string | 0;
|
|
86
106
|
};
|
|
87
107
|
readonly maxHeight: {
|
|
88
|
-
readonly property:
|
|
108
|
+
readonly property: {
|
|
109
|
+
readonly physical: "maxHeight";
|
|
110
|
+
readonly logical: "maxBlockSize";
|
|
111
|
+
};
|
|
112
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
89
113
|
readonly transform: (value: string | number) => string | 0;
|
|
90
114
|
};
|
|
91
115
|
readonly verticalAlign: {
|
|
92
116
|
readonly property: "verticalAlign";
|
|
93
117
|
};
|
|
118
|
+
readonly direction: {
|
|
119
|
+
readonly property: "direction";
|
|
120
|
+
};
|
|
94
121
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
95
122
|
readonly position: {
|
|
96
123
|
readonly property: "position";
|
|
@@ -238,52 +265,28 @@ export declare const buttonProps: import("@codecademy/variance/dist/types/config
|
|
|
238
265
|
};
|
|
239
266
|
readonly borderX: {
|
|
240
267
|
readonly property: "border";
|
|
241
|
-
readonly properties:
|
|
242
|
-
readonly physical: readonly ["borderLeft", "borderRight"];
|
|
243
|
-
readonly logical: readonly ["borderInlineStart", "borderInlineEnd"];
|
|
244
|
-
};
|
|
245
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
268
|
+
readonly properties: readonly ["borderLeft", "borderRight"];
|
|
246
269
|
readonly scale: "borders";
|
|
247
270
|
};
|
|
248
271
|
readonly borderY: {
|
|
249
272
|
readonly property: "border";
|
|
250
|
-
readonly properties:
|
|
251
|
-
readonly physical: readonly ["borderTop", "borderBottom"];
|
|
252
|
-
readonly logical: readonly ["borderBlockStart", "borderBlockEnd"];
|
|
253
|
-
};
|
|
254
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
273
|
+
readonly properties: readonly ["borderTop", "borderBottom"];
|
|
255
274
|
readonly scale: "borders";
|
|
256
275
|
};
|
|
257
276
|
readonly borderTop: {
|
|
258
|
-
readonly property:
|
|
259
|
-
readonly physical: "borderTop";
|
|
260
|
-
readonly logical: "borderBlockStart";
|
|
261
|
-
};
|
|
262
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
277
|
+
readonly property: "borderTop";
|
|
263
278
|
readonly scale: "borders";
|
|
264
279
|
};
|
|
265
280
|
readonly borderRight: {
|
|
266
|
-
readonly property:
|
|
267
|
-
readonly physical: "borderRight";
|
|
268
|
-
readonly logical: "borderInlineEnd";
|
|
269
|
-
};
|
|
270
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
281
|
+
readonly property: "borderRight";
|
|
271
282
|
readonly scale: "borders";
|
|
272
283
|
};
|
|
273
284
|
readonly borderBottom: {
|
|
274
|
-
readonly property:
|
|
275
|
-
readonly physical: "borderBottom";
|
|
276
|
-
readonly logical: "borderBlockEnd";
|
|
277
|
-
};
|
|
278
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
285
|
+
readonly property: "borderBottom";
|
|
279
286
|
readonly scale: "borders";
|
|
280
287
|
};
|
|
281
288
|
readonly borderLeft: {
|
|
282
|
-
readonly property:
|
|
283
|
-
readonly physical: "borderLeft";
|
|
284
|
-
readonly logical: "borderInlineStart";
|
|
285
|
-
};
|
|
286
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
289
|
+
readonly property: "borderLeft";
|
|
287
290
|
readonly scale: "borders";
|
|
288
291
|
};
|
|
289
292
|
readonly borderWidth: {
|
|
@@ -291,47 +294,23 @@ export declare const buttonProps: import("@codecademy/variance/dist/types/config
|
|
|
291
294
|
};
|
|
292
295
|
readonly borderWidthX: {
|
|
293
296
|
readonly property: "borderWidth";
|
|
294
|
-
readonly properties:
|
|
295
|
-
readonly physical: readonly ["borderLeftWidth", "borderRightWidth"];
|
|
296
|
-
readonly logical: readonly ["borderInlineStartWidth", "borderInlineEndWidth"];
|
|
297
|
-
};
|
|
298
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
297
|
+
readonly properties: readonly ["borderLeftWidth", "borderRightWidth"];
|
|
299
298
|
};
|
|
300
299
|
readonly borderWidthY: {
|
|
301
300
|
readonly property: "borderWidth";
|
|
302
|
-
readonly properties:
|
|
303
|
-
readonly physical: readonly ["borderTopWidth", "borderBottomWidth"];
|
|
304
|
-
readonly logical: readonly ["borderBlockStartWidth", "borderBlockEndWidth"];
|
|
305
|
-
};
|
|
306
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
301
|
+
readonly properties: readonly ["borderTopWidth", "borderBottomWidth"];
|
|
307
302
|
};
|
|
308
303
|
readonly borderWidthLeft: {
|
|
309
|
-
readonly property:
|
|
310
|
-
readonly physical: "borderLeftWidth";
|
|
311
|
-
readonly logical: "borderInlineStartWidth";
|
|
312
|
-
};
|
|
313
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
304
|
+
readonly property: "borderLeftWidth";
|
|
314
305
|
};
|
|
315
306
|
readonly borderWidthRight: {
|
|
316
|
-
readonly property:
|
|
317
|
-
readonly physical: "borderRightWidth";
|
|
318
|
-
readonly logical: "borderInlineEndWidth";
|
|
319
|
-
};
|
|
320
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
307
|
+
readonly property: "borderRightWidth";
|
|
321
308
|
};
|
|
322
309
|
readonly borderWidthTop: {
|
|
323
|
-
readonly property:
|
|
324
|
-
readonly physical: "borderTopWidth";
|
|
325
|
-
readonly logical: "borderBlockStartWidth";
|
|
326
|
-
};
|
|
327
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
310
|
+
readonly property: "borderTopWidth";
|
|
328
311
|
};
|
|
329
312
|
readonly borderWidthBottom: {
|
|
330
|
-
readonly property:
|
|
331
|
-
readonly physical: "borderBottomWidth";
|
|
332
|
-
readonly logical: "borderBlockEndWidth";
|
|
333
|
-
};
|
|
334
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
313
|
+
readonly property: "borderBottomWidth";
|
|
335
314
|
};
|
|
336
315
|
readonly borderRadius: {
|
|
337
316
|
readonly property: "borderRadius";
|