@codecademy/gamut 68.0.0 → 68.0.1-alpha.097b76.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 +93 -18
- package/dist/Badge/index.d.ts +107 -20
- package/dist/Box/props.d.ts +237 -46
- package/dist/Button/shared/styles.d.ts +223 -44
- package/dist/Card/elements.d.ts +711 -138
- package/dist/Form/elements/Form.d.ts +223 -44
- package/dist/GridForm/GridFormSections/GridFormSectionBreak.d.ts +177 -34
- package/dist/InternalFloatingCard/InternalFloatingCard.d.ts +63 -12
- package/dist/Layout/Column.d.ts +93 -18
- package/dist/Layout/LayoutGrid.d.ts +60 -12
- package/dist/List/elements.d.ts +330 -64
- package/dist/Menu/elements.d.ts +237 -46
- package/dist/Pagination/AnimatedPaginationButtons.d.ts +225 -46
- 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 +223 -44
- package/dist/Pagination/utils.js +1 -1
- package/dist/Tabs/props.d.ts +93 -18
- package/dist/Tag/types.d.ts +93 -18
- package/dist/Toggle/elements.d.ts +134 -26
- package/dist/Typography/Text.d.ts +107 -20
- package/package.json +7 -7
|
@@ -13,11 +13,19 @@ declare const StyledForm: import("@emotion/styled").StyledComponent<{
|
|
|
13
13
|
readonly scale: "spacing";
|
|
14
14
|
}>;
|
|
15
15
|
height?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
16
|
-
readonly property:
|
|
16
|
+
readonly property: {
|
|
17
|
+
readonly physical: "height";
|
|
18
|
+
readonly logical: "blockSize";
|
|
19
|
+
};
|
|
20
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
17
21
|
readonly transform: (value: string | number) => string | 0;
|
|
18
22
|
}>;
|
|
19
23
|
width?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
20
|
-
readonly property:
|
|
24
|
+
readonly property: {
|
|
25
|
+
readonly physical: "width";
|
|
26
|
+
readonly logical: "inlineSize";
|
|
27
|
+
};
|
|
28
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
21
29
|
readonly transform: (value: string | number) => string | 0;
|
|
22
30
|
}>;
|
|
23
31
|
alignContent?: "center" | "initial" | "inherit" | "normal" | (string & {}) | "-moz-initial" | "revert" | "revert-layer" | "unset" | "baseline" | "end" | "start" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | "space-evenly" | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignContent | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.AlignContent | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignContent | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.AlignContent | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignContent | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignContent | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.AlignContent | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignContent | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.AlignContent | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignContent | undefined) | undefined> | undefined;
|
|
@@ -34,6 +42,9 @@ declare const StyledForm: import("@emotion/styled").StyledComponent<{
|
|
|
34
42
|
containerType?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
35
43
|
readonly property: "containerType";
|
|
36
44
|
}>;
|
|
45
|
+
direction?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
46
|
+
readonly property: "direction";
|
|
47
|
+
}>;
|
|
37
48
|
display?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
38
49
|
readonly property: "display";
|
|
39
50
|
}>;
|
|
@@ -76,19 +87,35 @@ declare const StyledForm: import("@emotion/styled").StyledComponent<{
|
|
|
76
87
|
readonly transform: (value: string | number) => string | 0;
|
|
77
88
|
}>;
|
|
78
89
|
maxHeight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
79
|
-
readonly property:
|
|
90
|
+
readonly property: {
|
|
91
|
+
readonly physical: "maxHeight";
|
|
92
|
+
readonly logical: "maxBlockSize";
|
|
93
|
+
};
|
|
94
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
80
95
|
readonly transform: (value: string | number) => string | 0;
|
|
81
96
|
}>;
|
|
82
97
|
maxWidth?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
83
|
-
readonly property:
|
|
98
|
+
readonly property: {
|
|
99
|
+
readonly physical: "maxWidth";
|
|
100
|
+
readonly logical: "maxInlineSize";
|
|
101
|
+
};
|
|
102
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
84
103
|
readonly transform: (value: string | number) => string | 0;
|
|
85
104
|
}>;
|
|
86
105
|
minHeight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
87
|
-
readonly property:
|
|
106
|
+
readonly property: {
|
|
107
|
+
readonly physical: "minHeight";
|
|
108
|
+
readonly logical: "minBlockSize";
|
|
109
|
+
};
|
|
110
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
88
111
|
readonly transform: (value: string | number) => string | 0;
|
|
89
112
|
}>;
|
|
90
113
|
minWidth?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
91
|
-
readonly property:
|
|
114
|
+
readonly property: {
|
|
115
|
+
readonly physical: "minWidth";
|
|
116
|
+
readonly logical: "minInlineSize";
|
|
117
|
+
};
|
|
118
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
92
119
|
readonly transform: (value: string | number) => string | 0;
|
|
93
120
|
}>;
|
|
94
121
|
opacity?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -123,11 +150,19 @@ declare const StyledForm: import("@emotion/styled").StyledComponent<{
|
|
|
123
150
|
readonly property: "zIndex";
|
|
124
151
|
}>;
|
|
125
152
|
borderBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
126
|
-
readonly property:
|
|
153
|
+
readonly property: {
|
|
154
|
+
readonly physical: "borderBottom";
|
|
155
|
+
readonly logical: "borderBlockEnd";
|
|
156
|
+
};
|
|
157
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
127
158
|
readonly scale: "borders";
|
|
128
159
|
}>;
|
|
129
160
|
borderLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
130
|
-
readonly property:
|
|
161
|
+
readonly property: {
|
|
162
|
+
readonly physical: "borderLeft";
|
|
163
|
+
readonly logical: "borderInlineStart";
|
|
164
|
+
};
|
|
165
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
131
166
|
readonly scale: "borders";
|
|
132
167
|
}>;
|
|
133
168
|
borderRadius?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -135,14 +170,22 @@ declare const StyledForm: import("@emotion/styled").StyledComponent<{
|
|
|
135
170
|
readonly scale: "borderRadii";
|
|
136
171
|
}>;
|
|
137
172
|
borderRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
138
|
-
readonly property:
|
|
173
|
+
readonly property: {
|
|
174
|
+
readonly physical: "borderRight";
|
|
175
|
+
readonly logical: "borderInlineEnd";
|
|
176
|
+
};
|
|
177
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
139
178
|
readonly scale: "borders";
|
|
140
179
|
}>;
|
|
141
180
|
borderStyle?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
142
181
|
readonly property: "borderStyle";
|
|
143
182
|
}>;
|
|
144
183
|
borderTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
145
|
-
readonly property:
|
|
184
|
+
readonly property: {
|
|
185
|
+
readonly physical: "borderTop";
|
|
186
|
+
readonly logical: "borderBlockStart";
|
|
187
|
+
};
|
|
188
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
146
189
|
readonly scale: "borders";
|
|
147
190
|
}>;
|
|
148
191
|
borderWidth?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -168,29 +211,53 @@ declare const StyledForm: import("@emotion/styled").StyledComponent<{
|
|
|
168
211
|
}>;
|
|
169
212
|
px?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
170
213
|
readonly property: "padding";
|
|
171
|
-
readonly properties:
|
|
214
|
+
readonly properties: {
|
|
215
|
+
readonly physical: readonly ["paddingLeft", "paddingRight"];
|
|
216
|
+
readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
|
|
217
|
+
};
|
|
172
218
|
readonly scale: "spacing";
|
|
219
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
173
220
|
}>;
|
|
174
221
|
py?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
175
222
|
readonly property: "padding";
|
|
176
|
-
readonly properties:
|
|
223
|
+
readonly properties: {
|
|
224
|
+
readonly physical: readonly ["paddingTop", "paddingBottom"];
|
|
225
|
+
readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
|
|
226
|
+
};
|
|
177
227
|
readonly scale: "spacing";
|
|
228
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
178
229
|
}>;
|
|
179
230
|
pt?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
180
|
-
readonly property:
|
|
231
|
+
readonly property: {
|
|
232
|
+
readonly physical: "paddingTop";
|
|
233
|
+
readonly logical: "paddingBlockStart";
|
|
234
|
+
};
|
|
181
235
|
readonly scale: "spacing";
|
|
236
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
182
237
|
}>;
|
|
183
238
|
pb?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
184
|
-
readonly property:
|
|
239
|
+
readonly property: {
|
|
240
|
+
readonly physical: "paddingBottom";
|
|
241
|
+
readonly logical: "paddingBlockEnd";
|
|
242
|
+
};
|
|
185
243
|
readonly scale: "spacing";
|
|
244
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
186
245
|
}>;
|
|
187
246
|
pr?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
188
|
-
readonly property:
|
|
247
|
+
readonly property: {
|
|
248
|
+
readonly physical: "paddingRight";
|
|
249
|
+
readonly logical: "paddingInlineEnd";
|
|
250
|
+
};
|
|
189
251
|
readonly scale: "spacing";
|
|
252
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
190
253
|
}>;
|
|
191
254
|
pl?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
192
|
-
readonly property:
|
|
255
|
+
readonly property: {
|
|
256
|
+
readonly physical: "paddingLeft";
|
|
257
|
+
readonly logical: "paddingInlineStart";
|
|
258
|
+
};
|
|
193
259
|
readonly scale: "spacing";
|
|
260
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
194
261
|
}>;
|
|
195
262
|
m?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
196
263
|
readonly property: "margin";
|
|
@@ -198,115 +265,227 @@ declare const StyledForm: import("@emotion/styled").StyledComponent<{
|
|
|
198
265
|
}>;
|
|
199
266
|
mx?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
200
267
|
readonly property: "margin";
|
|
201
|
-
readonly properties:
|
|
268
|
+
readonly properties: {
|
|
269
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
270
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
271
|
+
};
|
|
272
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
202
273
|
readonly scale: "spacing";
|
|
203
274
|
}>;
|
|
204
275
|
my?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
205
276
|
readonly property: "margin";
|
|
206
|
-
readonly properties:
|
|
277
|
+
readonly properties: {
|
|
278
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
279
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
280
|
+
};
|
|
281
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
207
282
|
readonly scale: "spacing";
|
|
208
283
|
}>;
|
|
209
284
|
mt?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
210
|
-
readonly property:
|
|
285
|
+
readonly property: {
|
|
286
|
+
readonly physical: "marginTop";
|
|
287
|
+
readonly logical: "marginBlockStart";
|
|
288
|
+
};
|
|
211
289
|
readonly scale: "spacing";
|
|
290
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
212
291
|
}>;
|
|
213
292
|
mb?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
214
|
-
readonly property:
|
|
293
|
+
readonly property: {
|
|
294
|
+
readonly physical: "marginBottom";
|
|
295
|
+
readonly logical: "marginBlockEnd";
|
|
296
|
+
};
|
|
215
297
|
readonly scale: "spacing";
|
|
298
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
216
299
|
}>;
|
|
217
300
|
mr?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
218
|
-
readonly property:
|
|
301
|
+
readonly property: {
|
|
302
|
+
readonly physical: "marginRight";
|
|
303
|
+
readonly logical: "marginInlineEnd";
|
|
304
|
+
};
|
|
219
305
|
readonly scale: "spacing";
|
|
306
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
220
307
|
}>;
|
|
221
308
|
ml?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
222
|
-
readonly property:
|
|
309
|
+
readonly property: {
|
|
310
|
+
readonly physical: "marginLeft";
|
|
311
|
+
readonly logical: "marginInlineStart";
|
|
312
|
+
};
|
|
223
313
|
readonly scale: "spacing";
|
|
314
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
224
315
|
}>;
|
|
225
316
|
borderX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
226
317
|
readonly property: "border";
|
|
227
|
-
readonly properties:
|
|
318
|
+
readonly properties: {
|
|
319
|
+
readonly physical: readonly ["borderLeft", "borderRight"];
|
|
320
|
+
readonly logical: readonly ["borderInlineStart", "borderInlineEnd"];
|
|
321
|
+
};
|
|
322
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
228
323
|
readonly scale: "borders";
|
|
229
324
|
}>;
|
|
230
325
|
borderY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
231
326
|
readonly property: "border";
|
|
232
|
-
readonly properties:
|
|
327
|
+
readonly properties: {
|
|
328
|
+
readonly physical: readonly ["borderTop", "borderBottom"];
|
|
329
|
+
readonly logical: readonly ["borderBlockStart", "borderBlockEnd"];
|
|
330
|
+
};
|
|
331
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
233
332
|
readonly scale: "borders";
|
|
234
333
|
}>;
|
|
235
334
|
borderWidthX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
236
335
|
readonly property: "borderWidth";
|
|
237
|
-
readonly properties:
|
|
336
|
+
readonly properties: {
|
|
337
|
+
readonly physical: readonly ["borderLeftWidth", "borderRightWidth"];
|
|
338
|
+
readonly logical: readonly ["borderInlineStartWidth", "borderInlineEndWidth"];
|
|
339
|
+
};
|
|
340
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
238
341
|
}>;
|
|
239
342
|
borderWidthY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
240
343
|
readonly property: "borderWidth";
|
|
241
|
-
readonly properties:
|
|
344
|
+
readonly properties: {
|
|
345
|
+
readonly physical: readonly ["borderTopWidth", "borderBottomWidth"];
|
|
346
|
+
readonly logical: readonly ["borderBlockStartWidth", "borderBlockEndWidth"];
|
|
347
|
+
};
|
|
348
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
242
349
|
}>;
|
|
243
350
|
borderWidthLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
244
|
-
readonly property:
|
|
351
|
+
readonly property: {
|
|
352
|
+
readonly physical: "borderLeftWidth";
|
|
353
|
+
readonly logical: "borderInlineStartWidth";
|
|
354
|
+
};
|
|
355
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
245
356
|
}>;
|
|
246
357
|
borderWidthRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
247
|
-
readonly property:
|
|
358
|
+
readonly property: {
|
|
359
|
+
readonly physical: "borderRightWidth";
|
|
360
|
+
readonly logical: "borderInlineEndWidth";
|
|
361
|
+
};
|
|
362
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
248
363
|
}>;
|
|
249
364
|
borderWidthTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
250
|
-
readonly property:
|
|
365
|
+
readonly property: {
|
|
366
|
+
readonly physical: "borderTopWidth";
|
|
367
|
+
readonly logical: "borderBlockStartWidth";
|
|
368
|
+
};
|
|
369
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
251
370
|
}>;
|
|
252
371
|
borderWidthBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
253
|
-
readonly property:
|
|
372
|
+
readonly property: {
|
|
373
|
+
readonly physical: "borderBottomWidth";
|
|
374
|
+
readonly logical: "borderBlockEndWidth";
|
|
375
|
+
};
|
|
376
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
254
377
|
}>;
|
|
255
378
|
borderRadiusLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
256
379
|
readonly property: "borderRadius";
|
|
257
|
-
readonly properties:
|
|
380
|
+
readonly properties: {
|
|
381
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
|
|
382
|
+
readonly logical: readonly ["borderStartStartRadius", "borderEndStartRadius"];
|
|
383
|
+
};
|
|
384
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
258
385
|
readonly scale: "borderRadii";
|
|
259
386
|
}>;
|
|
260
387
|
borderRadiusTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
261
388
|
readonly property: "borderRadius";
|
|
262
|
-
readonly properties:
|
|
389
|
+
readonly properties: {
|
|
390
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
|
|
391
|
+
readonly logical: readonly ["borderStartStartRadius", "borderStartEndRadius"];
|
|
392
|
+
};
|
|
393
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
263
394
|
readonly scale: "borderRadii";
|
|
264
395
|
}>;
|
|
265
396
|
borderRadiusBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
266
397
|
readonly property: "borderRadius";
|
|
267
|
-
readonly properties:
|
|
398
|
+
readonly properties: {
|
|
399
|
+
readonly physical: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
|
|
400
|
+
readonly logical: readonly ["borderEndStartRadius", "borderEndEndRadius"];
|
|
401
|
+
};
|
|
402
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
268
403
|
readonly scale: "borderRadii";
|
|
269
404
|
}>;
|
|
270
405
|
borderRadiusRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
271
406
|
readonly property: "borderRadius";
|
|
272
|
-
readonly properties:
|
|
407
|
+
readonly properties: {
|
|
408
|
+
readonly physical: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
|
|
409
|
+
readonly logical: readonly ["borderStartEndRadius", "borderEndEndRadius"];
|
|
410
|
+
};
|
|
411
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
273
412
|
readonly scale: "borderRadii";
|
|
274
413
|
}>;
|
|
275
414
|
borderRadiusTopLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
276
|
-
readonly property:
|
|
415
|
+
readonly property: {
|
|
416
|
+
readonly physical: "borderTopLeftRadius";
|
|
417
|
+
readonly logical: "borderStartStartRadius";
|
|
418
|
+
};
|
|
419
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
277
420
|
readonly scale: "borderRadii";
|
|
278
421
|
}>;
|
|
279
422
|
borderRadiusTopRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
280
|
-
readonly property:
|
|
423
|
+
readonly property: {
|
|
424
|
+
readonly physical: "borderTopRightRadius";
|
|
425
|
+
readonly logical: "borderStartEndRadius";
|
|
426
|
+
};
|
|
427
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
281
428
|
readonly scale: "borderRadii";
|
|
282
429
|
}>;
|
|
283
430
|
borderRadiusBottomRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
284
|
-
readonly property:
|
|
431
|
+
readonly property: {
|
|
432
|
+
readonly physical: "borderBottomRightRadius";
|
|
433
|
+
readonly logical: "borderEndEndRadius";
|
|
434
|
+
};
|
|
435
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
285
436
|
readonly scale: "borderRadii";
|
|
286
437
|
}>;
|
|
287
438
|
borderRadiusBottomLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
288
|
-
readonly property:
|
|
439
|
+
readonly property: {
|
|
440
|
+
readonly physical: "borderBottomLeftRadius";
|
|
441
|
+
readonly logical: "borderEndStartRadius";
|
|
442
|
+
};
|
|
443
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
289
444
|
readonly scale: "borderRadii";
|
|
290
445
|
}>;
|
|
291
446
|
borderStyleX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
292
447
|
readonly property: "borderStyle";
|
|
293
|
-
readonly properties:
|
|
448
|
+
readonly properties: {
|
|
449
|
+
readonly physical: readonly ["borderLeftStyle", "borderRightStyle"];
|
|
450
|
+
readonly logical: readonly ["borderInlineStartStyle", "borderInlineEndStyle"];
|
|
451
|
+
};
|
|
452
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
294
453
|
}>;
|
|
295
454
|
borderStyleY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
296
455
|
readonly property: "borderStyle";
|
|
297
|
-
readonly properties:
|
|
456
|
+
readonly properties: {
|
|
457
|
+
readonly physical: readonly ["borderTopStyle", "borderBottomStyle"];
|
|
458
|
+
readonly logical: readonly ["borderBlockStartStyle", "borderBlockEndStyle"];
|
|
459
|
+
};
|
|
460
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
298
461
|
}>;
|
|
299
462
|
borderStyleLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
300
|
-
readonly property:
|
|
463
|
+
readonly property: {
|
|
464
|
+
readonly physical: "borderLeftStyle";
|
|
465
|
+
readonly logical: "borderInlineStartStyle";
|
|
466
|
+
};
|
|
467
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
301
468
|
}>;
|
|
302
469
|
borderStyleRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
303
|
-
readonly property:
|
|
470
|
+
readonly property: {
|
|
471
|
+
readonly physical: "borderRightStyle";
|
|
472
|
+
readonly logical: "borderInlineEndStyle";
|
|
473
|
+
};
|
|
474
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
304
475
|
}>;
|
|
305
476
|
borderStyleTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
306
|
-
readonly property:
|
|
477
|
+
readonly property: {
|
|
478
|
+
readonly physical: "borderTopStyle";
|
|
479
|
+
readonly logical: "borderBlockStartStyle";
|
|
480
|
+
};
|
|
481
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
307
482
|
}>;
|
|
308
483
|
borderStyleBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
309
|
-
readonly property:
|
|
484
|
+
readonly property: {
|
|
485
|
+
readonly physical: "borderBottomStyle";
|
|
486
|
+
readonly logical: "borderBlockEndStyle";
|
|
487
|
+
};
|
|
488
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
310
489
|
}>;
|
|
311
490
|
dimensions?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
312
491
|
readonly property: "width";
|