@codecademy/gamut 68.0.1-alpha.470613.0 → 68.0.1-alpha.4746be.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/Badge/index.d.ts +14 -2
- package/dist/Box/props.d.ts +144 -28
- package/dist/Button/shared/styles.d.ts +130 -26
- package/dist/Card/elements.d.ts +432 -84
- package/dist/Form/elements/Form.d.ts +130 -26
- package/dist/GridForm/GridFormSections/GridFormSectionBreak.d.ts +144 -28
- package/dist/List/elements.d.ts +144 -28
- package/dist/Menu/elements.d.ts +144 -28
- package/dist/Pagination/AnimatedPaginationButtons.d.ts +130 -26
- package/dist/Pagination/utils.d.ts +130 -26
- package/dist/Toggle/elements.d.ts +14 -2
- package/dist/Typography/Text.d.ts +14 -2
- 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,89 +288,177 @@ 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";
|
|
305
|
-
readonly properties:
|
|
353
|
+
readonly properties: {
|
|
354
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
|
|
355
|
+
readonly logical: readonly ["borderStartStartRadius", "borderEndStartRadius"];
|
|
356
|
+
};
|
|
357
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
306
358
|
readonly scale: "borderRadii";
|
|
307
359
|
}>;
|
|
308
360
|
borderRadiusTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
309
361
|
readonly property: "borderRadius";
|
|
310
|
-
readonly properties:
|
|
362
|
+
readonly properties: {
|
|
363
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
|
|
364
|
+
readonly logical: readonly ["borderStartStartRadius", "borderStartEndRadius"];
|
|
365
|
+
};
|
|
366
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
311
367
|
readonly scale: "borderRadii";
|
|
312
368
|
}>;
|
|
313
369
|
borderRadiusBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
314
370
|
readonly property: "borderRadius";
|
|
315
|
-
readonly properties:
|
|
371
|
+
readonly properties: {
|
|
372
|
+
readonly physical: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
|
|
373
|
+
readonly logical: readonly ["borderEndStartRadius", "borderEndEndRadius"];
|
|
374
|
+
};
|
|
375
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
316
376
|
readonly scale: "borderRadii";
|
|
317
377
|
}>;
|
|
318
378
|
borderRadiusRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
319
379
|
readonly property: "borderRadius";
|
|
320
|
-
readonly properties:
|
|
380
|
+
readonly properties: {
|
|
381
|
+
readonly physical: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
|
|
382
|
+
readonly logical: readonly ["borderStartEndRadius", "borderEndEndRadius"];
|
|
383
|
+
};
|
|
384
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
321
385
|
readonly scale: "borderRadii";
|
|
322
386
|
}>;
|
|
323
387
|
borderRadiusTopLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
324
|
-
readonly property:
|
|
388
|
+
readonly property: {
|
|
389
|
+
readonly physical: "borderTopLeftRadius";
|
|
390
|
+
readonly logical: "borderStartStartRadius";
|
|
391
|
+
};
|
|
392
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
325
393
|
readonly scale: "borderRadii";
|
|
326
394
|
}>;
|
|
327
395
|
borderRadiusTopRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
328
|
-
readonly property:
|
|
396
|
+
readonly property: {
|
|
397
|
+
readonly physical: "borderTopRightRadius";
|
|
398
|
+
readonly logical: "borderStartEndRadius";
|
|
399
|
+
};
|
|
400
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
329
401
|
readonly scale: "borderRadii";
|
|
330
402
|
}>;
|
|
331
403
|
borderRadiusBottomRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
332
|
-
readonly property:
|
|
404
|
+
readonly property: {
|
|
405
|
+
readonly physical: "borderBottomRightRadius";
|
|
406
|
+
readonly logical: "borderEndEndRadius";
|
|
407
|
+
};
|
|
408
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
333
409
|
readonly scale: "borderRadii";
|
|
334
410
|
}>;
|
|
335
411
|
borderRadiusBottomLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
336
|
-
readonly property:
|
|
412
|
+
readonly property: {
|
|
413
|
+
readonly physical: "borderBottomLeftRadius";
|
|
414
|
+
readonly logical: "borderEndStartRadius";
|
|
415
|
+
};
|
|
416
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
337
417
|
readonly scale: "borderRadii";
|
|
338
418
|
}>;
|
|
339
419
|
borderStyleX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
340
420
|
readonly property: "borderStyle";
|
|
341
|
-
readonly properties:
|
|
421
|
+
readonly properties: {
|
|
422
|
+
readonly physical: readonly ["borderLeftStyle", "borderRightStyle"];
|
|
423
|
+
readonly logical: readonly ["borderInlineStartStyle", "borderInlineEndStyle"];
|
|
424
|
+
};
|
|
425
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
342
426
|
}>;
|
|
343
427
|
borderStyleY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
344
428
|
readonly property: "borderStyle";
|
|
345
|
-
readonly properties:
|
|
429
|
+
readonly properties: {
|
|
430
|
+
readonly physical: readonly ["borderTopStyle", "borderBottomStyle"];
|
|
431
|
+
readonly logical: readonly ["borderBlockStartStyle", "borderBlockEndStyle"];
|
|
432
|
+
};
|
|
433
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
346
434
|
}>;
|
|
347
435
|
borderStyleLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
348
|
-
readonly property:
|
|
436
|
+
readonly property: {
|
|
437
|
+
readonly physical: "borderLeftStyle";
|
|
438
|
+
readonly logical: "borderInlineStartStyle";
|
|
439
|
+
};
|
|
440
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
349
441
|
}>;
|
|
350
442
|
borderStyleRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
351
|
-
readonly property:
|
|
443
|
+
readonly property: {
|
|
444
|
+
readonly physical: "borderRightStyle";
|
|
445
|
+
readonly logical: "borderInlineEndStyle";
|
|
446
|
+
};
|
|
447
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
352
448
|
}>;
|
|
353
449
|
borderStyleTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
354
|
-
readonly property:
|
|
450
|
+
readonly property: {
|
|
451
|
+
readonly physical: "borderTopStyle";
|
|
452
|
+
readonly logical: "borderBlockStartStyle";
|
|
453
|
+
};
|
|
454
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
355
455
|
}>;
|
|
356
456
|
borderStyleBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
357
|
-
readonly property:
|
|
457
|
+
readonly property: {
|
|
458
|
+
readonly physical: "borderBottomStyle";
|
|
459
|
+
readonly logical: "borderBlockEndStyle";
|
|
460
|
+
};
|
|
461
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
358
462
|
}>;
|
|
359
463
|
dimensions?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
360
464
|
readonly property: "width";
|
|
@@ -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";
|
|
@@ -60,38 +108,70 @@ declare const hrProps: import("@codecademy/variance/dist/types/config").Parser<i
|
|
|
60
108
|
};
|
|
61
109
|
readonly borderRadiusLeft: {
|
|
62
110
|
readonly property: "borderRadius";
|
|
63
|
-
readonly properties:
|
|
111
|
+
readonly properties: {
|
|
112
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
|
|
113
|
+
readonly logical: readonly ["borderStartStartRadius", "borderEndStartRadius"];
|
|
114
|
+
};
|
|
115
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
64
116
|
readonly scale: "borderRadii";
|
|
65
117
|
};
|
|
66
118
|
readonly borderRadiusTop: {
|
|
67
119
|
readonly property: "borderRadius";
|
|
68
|
-
readonly properties:
|
|
120
|
+
readonly properties: {
|
|
121
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
|
|
122
|
+
readonly logical: readonly ["borderStartStartRadius", "borderStartEndRadius"];
|
|
123
|
+
};
|
|
124
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
69
125
|
readonly scale: "borderRadii";
|
|
70
126
|
};
|
|
71
127
|
readonly borderRadiusBottom: {
|
|
72
128
|
readonly property: "borderRadius";
|
|
73
|
-
readonly properties:
|
|
129
|
+
readonly properties: {
|
|
130
|
+
readonly physical: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
|
|
131
|
+
readonly logical: readonly ["borderEndStartRadius", "borderEndEndRadius"];
|
|
132
|
+
};
|
|
133
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
74
134
|
readonly scale: "borderRadii";
|
|
75
135
|
};
|
|
76
136
|
readonly borderRadiusRight: {
|
|
77
137
|
readonly property: "borderRadius";
|
|
78
|
-
readonly properties:
|
|
138
|
+
readonly properties: {
|
|
139
|
+
readonly physical: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
|
|
140
|
+
readonly logical: readonly ["borderStartEndRadius", "borderEndEndRadius"];
|
|
141
|
+
};
|
|
142
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
79
143
|
readonly scale: "borderRadii";
|
|
80
144
|
};
|
|
81
145
|
readonly borderRadiusTopLeft: {
|
|
82
|
-
readonly property:
|
|
146
|
+
readonly property: {
|
|
147
|
+
readonly physical: "borderTopLeftRadius";
|
|
148
|
+
readonly logical: "borderStartStartRadius";
|
|
149
|
+
};
|
|
150
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
83
151
|
readonly scale: "borderRadii";
|
|
84
152
|
};
|
|
85
153
|
readonly borderRadiusTopRight: {
|
|
86
|
-
readonly property:
|
|
154
|
+
readonly property: {
|
|
155
|
+
readonly physical: "borderTopRightRadius";
|
|
156
|
+
readonly logical: "borderStartEndRadius";
|
|
157
|
+
};
|
|
158
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
87
159
|
readonly scale: "borderRadii";
|
|
88
160
|
};
|
|
89
161
|
readonly borderRadiusBottomRight: {
|
|
90
|
-
readonly property:
|
|
162
|
+
readonly property: {
|
|
163
|
+
readonly physical: "borderBottomRightRadius";
|
|
164
|
+
readonly logical: "borderEndEndRadius";
|
|
165
|
+
};
|
|
166
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
91
167
|
readonly scale: "borderRadii";
|
|
92
168
|
};
|
|
93
169
|
readonly borderRadiusBottomLeft: {
|
|
94
|
-
readonly property:
|
|
170
|
+
readonly property: {
|
|
171
|
+
readonly physical: "borderBottomLeftRadius";
|
|
172
|
+
readonly logical: "borderEndStartRadius";
|
|
173
|
+
};
|
|
174
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
95
175
|
readonly scale: "borderRadii";
|
|
96
176
|
};
|
|
97
177
|
readonly borderStyle: {
|
|
@@ -99,23 +179,47 @@ declare const hrProps: import("@codecademy/variance/dist/types/config").Parser<i
|
|
|
99
179
|
};
|
|
100
180
|
readonly borderStyleX: {
|
|
101
181
|
readonly property: "borderStyle";
|
|
102
|
-
readonly properties:
|
|
182
|
+
readonly properties: {
|
|
183
|
+
readonly physical: readonly ["borderLeftStyle", "borderRightStyle"];
|
|
184
|
+
readonly logical: readonly ["borderInlineStartStyle", "borderInlineEndStyle"];
|
|
185
|
+
};
|
|
186
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
103
187
|
};
|
|
104
188
|
readonly borderStyleY: {
|
|
105
189
|
readonly property: "borderStyle";
|
|
106
|
-
readonly properties:
|
|
190
|
+
readonly properties: {
|
|
191
|
+
readonly physical: readonly ["borderTopStyle", "borderBottomStyle"];
|
|
192
|
+
readonly logical: readonly ["borderBlockStartStyle", "borderBlockEndStyle"];
|
|
193
|
+
};
|
|
194
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
107
195
|
};
|
|
108
196
|
readonly borderStyleLeft: {
|
|
109
|
-
readonly property:
|
|
197
|
+
readonly property: {
|
|
198
|
+
readonly physical: "borderLeftStyle";
|
|
199
|
+
readonly logical: "borderInlineStartStyle";
|
|
200
|
+
};
|
|
201
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
110
202
|
};
|
|
111
203
|
readonly borderStyleRight: {
|
|
112
|
-
readonly property:
|
|
204
|
+
readonly property: {
|
|
205
|
+
readonly physical: "borderRightStyle";
|
|
206
|
+
readonly logical: "borderInlineEndStyle";
|
|
207
|
+
};
|
|
208
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
113
209
|
};
|
|
114
210
|
readonly borderStyleTop: {
|
|
115
|
-
readonly property:
|
|
211
|
+
readonly property: {
|
|
212
|
+
readonly physical: "borderTopStyle";
|
|
213
|
+
readonly logical: "borderBlockStartStyle";
|
|
214
|
+
};
|
|
215
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
116
216
|
};
|
|
117
217
|
readonly borderStyleBottom: {
|
|
118
|
-
readonly property:
|
|
218
|
+
readonly property: {
|
|
219
|
+
readonly physical: "borderBottomStyle";
|
|
220
|
+
readonly logical: "borderBlockEndStyle";
|
|
221
|
+
};
|
|
222
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
119
223
|
};
|
|
120
224
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
121
225
|
readonly color: {
|
|
@@ -136,28 +240,40 @@ declare const hrProps: import("@codecademy/variance/dist/types/config").Parser<i
|
|
|
136
240
|
};
|
|
137
241
|
readonly borderColorX: {
|
|
138
242
|
readonly property: "borderColor";
|
|
139
|
-
readonly properties:
|
|
243
|
+
readonly properties: {
|
|
244
|
+
readonly physical: readonly ["borderLeftColor", "borderRightColor"];
|
|
245
|
+
readonly logical: readonly ["borderInlineStartColor", "borderInlineEndColor"];
|
|
246
|
+
};
|
|
247
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
140
248
|
readonly scale: "colors";
|
|
141
249
|
};
|
|
142
250
|
readonly borderColorY: {
|
|
143
251
|
readonly property: "borderColor";
|
|
144
|
-
readonly properties:
|
|
252
|
+
readonly properties: {
|
|
253
|
+
readonly physical: readonly ["borderTopColor", "borderBottomColor"];
|
|
254
|
+
readonly logical: readonly ["borderBlockStartColor", "borderBlockEndColor"];
|
|
255
|
+
};
|
|
256
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
145
257
|
readonly scale: "colors";
|
|
146
258
|
};
|
|
147
259
|
readonly borderColorLeft: {
|
|
148
260
|
readonly property: "borderLeftColor";
|
|
261
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
149
262
|
readonly scale: "colors";
|
|
150
263
|
};
|
|
151
264
|
readonly borderColorRight: {
|
|
152
265
|
readonly property: "borderRightColor";
|
|
266
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
153
267
|
readonly scale: "colors";
|
|
154
268
|
};
|
|
155
269
|
readonly borderColorTop: {
|
|
156
270
|
readonly property: "borderTopColor";
|
|
271
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
157
272
|
readonly scale: "colors";
|
|
158
273
|
};
|
|
159
274
|
readonly borderColorBottom: {
|
|
160
275
|
readonly property: "borderBottomColor";
|
|
276
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
161
277
|
readonly scale: "colors";
|
|
162
278
|
};
|
|
163
279
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|