@codecademy/gamut 68.0.1-alpha.4aeb6d.0 → 68.0.1-alpha.588625.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.
@@ -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: "height";
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: "width";
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: "maxHeight";
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: "maxWidth";
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: "minHeight";
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: "minWidth";
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,19 +150,11 @@ 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: {
127
- readonly physical: "borderBottom";
128
- readonly logical: "borderBlockEnd";
129
- };
130
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
153
+ readonly property: "borderBottom";
131
154
  readonly scale: "borders";
132
155
  }>;
133
156
  borderLeft?: import("@codecademy/variance/dist/types/config").Scale<{
134
- readonly property: {
135
- readonly physical: "borderLeft";
136
- readonly logical: "borderInlineStart";
137
- };
138
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
157
+ readonly property: "borderLeft";
139
158
  readonly scale: "borders";
140
159
  }>;
141
160
  borderRadius?: import("@codecademy/variance/dist/types/config").Scale<{
@@ -143,22 +162,14 @@ declare const StyledForm: import("@emotion/styled").StyledComponent<{
143
162
  readonly scale: "borderRadii";
144
163
  }>;
145
164
  borderRight?: import("@codecademy/variance/dist/types/config").Scale<{
146
- readonly property: {
147
- readonly physical: "borderRight";
148
- readonly logical: "borderInlineEnd";
149
- };
150
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
165
+ readonly property: "borderRight";
151
166
  readonly scale: "borders";
152
167
  }>;
153
168
  borderStyle?: import("@codecademy/variance/dist/types/config").Scale<{
154
169
  readonly property: "borderStyle";
155
170
  }>;
156
171
  borderTop?: import("@codecademy/variance/dist/types/config").Scale<{
157
- readonly property: {
158
- readonly physical: "borderTop";
159
- readonly logical: "borderBlockStart";
160
- };
161
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
172
+ readonly property: "borderTop";
162
173
  readonly scale: "borders";
163
174
  }>;
164
175
  borderWidth?: import("@codecademy/variance/dist/types/config").Scale<{
@@ -288,177 +299,89 @@ declare const StyledForm: import("@emotion/styled").StyledComponent<{
288
299
  }>;
289
300
  borderX?: import("@codecademy/variance/dist/types/config").Scale<{
290
301
  readonly property: "border";
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;
302
+ readonly properties: readonly ["borderLeft", "borderRight"];
296
303
  readonly scale: "borders";
297
304
  }>;
298
305
  borderY?: import("@codecademy/variance/dist/types/config").Scale<{
299
306
  readonly property: "border";
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;
307
+ readonly properties: readonly ["borderTop", "borderBottom"];
305
308
  readonly scale: "borders";
306
309
  }>;
307
310
  borderWidthX?: import("@codecademy/variance/dist/types/config").Scale<{
308
311
  readonly property: "borderWidth";
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;
312
+ readonly properties: readonly ["borderLeftWidth", "borderRightWidth"];
314
313
  }>;
315
314
  borderWidthY?: import("@codecademy/variance/dist/types/config").Scale<{
316
315
  readonly property: "borderWidth";
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;
316
+ readonly properties: readonly ["borderTopWidth", "borderBottomWidth"];
322
317
  }>;
323
318
  borderWidthLeft?: import("@codecademy/variance/dist/types/config").Scale<{
324
- readonly property: {
325
- readonly physical: "borderLeftWidth";
326
- readonly logical: "borderInlineStartWidth";
327
- };
328
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
319
+ readonly property: "borderLeftWidth";
329
320
  }>;
330
321
  borderWidthRight?: import("@codecademy/variance/dist/types/config").Scale<{
331
- readonly property: {
332
- readonly physical: "borderRightWidth";
333
- readonly logical: "borderInlineEndWidth";
334
- };
335
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
322
+ readonly property: "borderRightWidth";
336
323
  }>;
337
324
  borderWidthTop?: import("@codecademy/variance/dist/types/config").Scale<{
338
- readonly property: {
339
- readonly physical: "borderTopWidth";
340
- readonly logical: "borderBlockStartWidth";
341
- };
342
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
325
+ readonly property: "borderTopWidth";
343
326
  }>;
344
327
  borderWidthBottom?: import("@codecademy/variance/dist/types/config").Scale<{
345
- readonly property: {
346
- readonly physical: "borderBottomWidth";
347
- readonly logical: "borderBlockEndWidth";
348
- };
349
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
328
+ readonly property: "borderBottomWidth";
350
329
  }>;
351
330
  borderRadiusLeft?: import("@codecademy/variance/dist/types/config").Scale<{
352
331
  readonly property: "borderRadius";
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;
332
+ readonly properties: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
358
333
  readonly scale: "borderRadii";
359
334
  }>;
360
335
  borderRadiusTop?: import("@codecademy/variance/dist/types/config").Scale<{
361
336
  readonly property: "borderRadius";
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;
337
+ readonly properties: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
367
338
  readonly scale: "borderRadii";
368
339
  }>;
369
340
  borderRadiusBottom?: import("@codecademy/variance/dist/types/config").Scale<{
370
341
  readonly property: "borderRadius";
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;
342
+ readonly properties: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
376
343
  readonly scale: "borderRadii";
377
344
  }>;
378
345
  borderRadiusRight?: import("@codecademy/variance/dist/types/config").Scale<{
379
346
  readonly property: "borderRadius";
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;
347
+ readonly properties: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
385
348
  readonly scale: "borderRadii";
386
349
  }>;
387
350
  borderRadiusTopLeft?: import("@codecademy/variance/dist/types/config").Scale<{
388
- readonly property: {
389
- readonly physical: "borderTopLeftRadius";
390
- readonly logical: "borderStartStartRadius";
391
- };
392
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
351
+ readonly property: "borderTopLeftRadius";
393
352
  readonly scale: "borderRadii";
394
353
  }>;
395
354
  borderRadiusTopRight?: import("@codecademy/variance/dist/types/config").Scale<{
396
- readonly property: {
397
- readonly physical: "borderTopRightRadius";
398
- readonly logical: "borderStartEndRadius";
399
- };
400
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
355
+ readonly property: "borderTopRightRadius";
401
356
  readonly scale: "borderRadii";
402
357
  }>;
403
358
  borderRadiusBottomRight?: import("@codecademy/variance/dist/types/config").Scale<{
404
- readonly property: {
405
- readonly physical: "borderBottomRightRadius";
406
- readonly logical: "borderEndEndRadius";
407
- };
408
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
359
+ readonly property: "borderBottomRightRadius";
409
360
  readonly scale: "borderRadii";
410
361
  }>;
411
362
  borderRadiusBottomLeft?: import("@codecademy/variance/dist/types/config").Scale<{
412
- readonly property: {
413
- readonly physical: "borderBottomLeftRadius";
414
- readonly logical: "borderEndStartRadius";
415
- };
416
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
363
+ readonly property: "borderBottomLeftRadius";
417
364
  readonly scale: "borderRadii";
418
365
  }>;
419
366
  borderStyleX?: import("@codecademy/variance/dist/types/config").Scale<{
420
367
  readonly property: "borderStyle";
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;
368
+ readonly properties: readonly ["borderLeftStyle", "borderRightStyle"];
426
369
  }>;
427
370
  borderStyleY?: import("@codecademy/variance/dist/types/config").Scale<{
428
371
  readonly property: "borderStyle";
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;
372
+ readonly properties: readonly ["borderTopStyle", "borderBottomStyle"];
434
373
  }>;
435
374
  borderStyleLeft?: import("@codecademy/variance/dist/types/config").Scale<{
436
- readonly property: {
437
- readonly physical: "borderLeftStyle";
438
- readonly logical: "borderInlineStartStyle";
439
- };
440
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
375
+ readonly property: "borderLeftStyle";
441
376
  }>;
442
377
  borderStyleRight?: import("@codecademy/variance/dist/types/config").Scale<{
443
- readonly property: {
444
- readonly physical: "borderRightStyle";
445
- readonly logical: "borderInlineEndStyle";
446
- };
447
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
378
+ readonly property: "borderRightStyle";
448
379
  }>;
449
380
  borderStyleTop?: import("@codecademy/variance/dist/types/config").Scale<{
450
- readonly property: {
451
- readonly physical: "borderTopStyle";
452
- readonly logical: "borderBlockStartStyle";
453
- };
454
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
381
+ readonly property: "borderTopStyle";
455
382
  }>;
456
383
  borderStyleBottom?: import("@codecademy/variance/dist/types/config").Scale<{
457
- readonly property: {
458
- readonly physical: "borderBottomStyle";
459
- readonly logical: "borderBlockEndStyle";
460
- };
461
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
384
+ readonly property: "borderBottomStyle";
462
385
  }>;
463
386
  dimensions?: import("@codecademy/variance/dist/types/config").Scale<{
464
387
  readonly property: "width";