@codecademy/gamut 68.0.1-alpha.7afb48.0 → 68.0.1-alpha.800a90.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.
Files changed (57) hide show
  1. package/dist/Anchor/index.d.ts +93 -18
  2. package/dist/Badge/index.d.ts +93 -18
  3. package/dist/Box/props.d.ts +93 -18
  4. package/dist/Button/shared/styles.d.ts +93 -18
  5. package/dist/Card/elements.d.ts +279 -54
  6. package/dist/ConnectedForm/utils.d.ts +1 -1
  7. package/dist/Form/SelectDropdown/styles.d.ts +1 -1
  8. package/dist/Form/elements/Form.d.ts +94 -19
  9. package/dist/Form/elements/FormGroupLabel.js +2 -2
  10. package/dist/Form/inputs/Select.js +5 -6
  11. package/dist/GridForm/GridFormSections/GridFormSectionBreak.d.ts +33 -6
  12. package/dist/InternalFloatingCard/InternalFloatingCard.d.ts +63 -12
  13. package/dist/Layout/Column.d.ts +93 -18
  14. package/dist/Layout/LayoutGrid.d.ts +60 -12
  15. package/dist/List/elements.d.ts +187 -37
  16. package/dist/Menu/elements.d.ts +93 -18
  17. package/dist/Pagination/AnimatedPaginationButtons.d.ts +95 -20
  18. package/dist/Pagination/EllipsisButton.d.ts +5 -5
  19. package/dist/Pagination/EllipsisButton.js +2 -2
  20. package/dist/Pagination/index.js +4 -4
  21. package/dist/Pagination/utils.d.ts +93 -18
  22. package/dist/Pagination/utils.js +1 -1
  23. package/dist/Tabs/props.d.ts +93 -18
  24. package/dist/Tag/types.d.ts +93 -18
  25. package/dist/Toggle/elements.d.ts +120 -24
  26. package/dist/Typography/Text.d.ts +93 -18
  27. package/dist/index.d.ts +0 -1
  28. package/dist/index.js +0 -1
  29. package/package.json +7 -7
  30. package/dist/BarChart/BarChartProvider.d.ts +0 -19
  31. package/dist/BarChart/BarChartProvider.js +0 -31
  32. package/dist/BarChart/BarRow/elements.d.ts +0 -713
  33. package/dist/BarChart/BarRow/elements.js +0 -89
  34. package/dist/BarChart/BarRow/index.d.ts +0 -26
  35. package/dist/BarChart/BarRow/index.js +0 -254
  36. package/dist/BarChart/GENERIC_EXAMPLE.d.ts +0 -14
  37. package/dist/BarChart/GENERIC_EXAMPLE.js +0 -333
  38. package/dist/BarChart/index.d.ts +0 -4
  39. package/dist/BarChart/index.js +0 -158
  40. package/dist/BarChart/layout/GridLines.d.ts +0 -7
  41. package/dist/BarChart/layout/GridLines.js +0 -78
  42. package/dist/BarChart/layout/ScaleChartHeader.d.ts +0 -10
  43. package/dist/BarChart/layout/ScaleChartHeader.js +0 -89
  44. package/dist/BarChart/layout/VerticalSpacer.d.ts +0 -6
  45. package/dist/BarChart/layout/VerticalSpacer.js +0 -56
  46. package/dist/BarChart/shared/elements.d.ts +0 -7
  47. package/dist/BarChart/shared/elements.js +0 -12
  48. package/dist/BarChart/shared/styles.d.ts +0 -4
  49. package/dist/BarChart/shared/styles.js +0 -4
  50. package/dist/BarChart/shared/translations.d.ts +0 -17
  51. package/dist/BarChart/shared/translations.js +0 -16
  52. package/dist/BarChart/shared/types.d.ts +0 -88
  53. package/dist/BarChart/shared/types.js +0 -1
  54. package/dist/BarChart/utils/hooks.d.ts +0 -93
  55. package/dist/BarChart/utils/hooks.js +0 -301
  56. package/dist/BarChart/utils/index.d.ts +0 -86
  57. package/dist/BarChart/utils/index.js +0 -165
@@ -8,29 +8,53 @@ declare const space: import("@codecademy/variance/dist/types/config").Parser<imp
8
8
  };
9
9
  readonly px: {
10
10
  readonly property: "padding";
11
- readonly properties: readonly ["paddingLeft", "paddingRight"];
11
+ readonly properties: {
12
+ readonly physical: readonly ["paddingLeft", "paddingRight"];
13
+ readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
14
+ };
12
15
  readonly scale: "spacing";
16
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
13
17
  };
14
18
  readonly py: {
15
19
  readonly property: "padding";
16
- readonly properties: readonly ["paddingTop", "paddingBottom"];
20
+ readonly properties: {
21
+ readonly physical: readonly ["paddingTop", "paddingBottom"];
22
+ readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
23
+ };
17
24
  readonly scale: "spacing";
25
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
18
26
  };
19
27
  readonly pt: {
20
- readonly property: "paddingTop";
28
+ readonly property: {
29
+ readonly physical: "paddingTop";
30
+ readonly logical: "paddingBlockStart";
31
+ };
21
32
  readonly scale: "spacing";
33
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
22
34
  };
23
35
  readonly pb: {
24
- readonly property: "paddingBottom";
36
+ readonly property: {
37
+ readonly physical: "paddingBottom";
38
+ readonly logical: "paddingBlockEnd";
39
+ };
25
40
  readonly scale: "spacing";
41
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
26
42
  };
27
43
  readonly pr: {
28
- readonly property: "paddingRight";
44
+ readonly property: {
45
+ readonly physical: "paddingRight";
46
+ readonly logical: "paddingInlineEnd";
47
+ };
29
48
  readonly scale: "spacing";
49
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
30
50
  };
31
51
  readonly pl: {
32
- readonly property: "paddingLeft";
52
+ readonly property: {
53
+ readonly physical: "paddingLeft";
54
+ readonly logical: "paddingInlineStart";
55
+ };
33
56
  readonly scale: "spacing";
57
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
34
58
  };
35
59
  readonly m: {
36
60
  readonly property: "margin";
@@ -38,29 +62,53 @@ declare const space: import("@codecademy/variance/dist/types/config").Parser<imp
38
62
  };
39
63
  readonly mx: {
40
64
  readonly property: "margin";
41
- readonly properties: readonly ["marginLeft", "marginRight"];
65
+ readonly properties: {
66
+ readonly physical: readonly ["marginLeft", "marginRight"];
67
+ readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
68
+ };
69
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
42
70
  readonly scale: "spacing";
43
71
  };
44
72
  readonly my: {
45
73
  readonly property: "margin";
46
- readonly properties: readonly ["marginTop", "marginBottom"];
74
+ readonly properties: {
75
+ readonly physical: readonly ["marginTop", "marginBottom"];
76
+ readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
77
+ };
78
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
47
79
  readonly scale: "spacing";
48
80
  };
49
81
  readonly mt: {
50
- readonly property: "marginTop";
82
+ readonly property: {
83
+ readonly physical: "marginTop";
84
+ readonly logical: "marginBlockStart";
85
+ };
51
86
  readonly scale: "spacing";
87
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
52
88
  };
53
89
  readonly mb: {
54
- readonly property: "marginBottom";
90
+ readonly property: {
91
+ readonly physical: "marginBottom";
92
+ readonly logical: "marginBlockEnd";
93
+ };
55
94
  readonly scale: "spacing";
95
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
56
96
  };
57
97
  readonly mr: {
58
- readonly property: "marginRight";
98
+ readonly property: {
99
+ readonly physical: "marginRight";
100
+ readonly logical: "marginInlineEnd";
101
+ };
59
102
  readonly scale: "spacing";
103
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
60
104
  };
61
105
  readonly ml: {
62
- readonly property: "marginLeft";
106
+ readonly property: {
107
+ readonly physical: "marginLeft";
108
+ readonly logical: "marginInlineStart";
109
+ };
63
110
  readonly scale: "spacing";
111
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
64
112
  };
65
113
  }>>, grid: import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
66
114
  readonly gridColumn: {
@@ -238,32 +286,59 @@ declare const space: import("@codecademy/variance/dist/types/config").Parser<imp
238
286
  readonly transform: (value: string | number) => string | 0;
239
287
  };
240
288
  readonly width: {
241
- readonly property: "width";
289
+ readonly property: {
290
+ readonly physical: "width";
291
+ readonly logical: "inlineSize";
292
+ };
293
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
242
294
  readonly transform: (value: string | number) => string | 0;
243
295
  };
244
296
  readonly minWidth: {
245
- readonly property: "minWidth";
297
+ readonly property: {
298
+ readonly physical: "minWidth";
299
+ readonly logical: "minInlineSize";
300
+ };
301
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
246
302
  readonly transform: (value: string | number) => string | 0;
247
303
  };
248
304
  readonly maxWidth: {
249
- readonly property: "maxWidth";
305
+ readonly property: {
306
+ readonly physical: "maxWidth";
307
+ readonly logical: "maxInlineSize";
308
+ };
309
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
250
310
  readonly transform: (value: string | number) => string | 0;
251
311
  };
252
312
  readonly height: {
253
- readonly property: "height";
313
+ readonly property: {
314
+ readonly physical: "height";
315
+ readonly logical: "blockSize";
316
+ };
317
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
254
318
  readonly transform: (value: string | number) => string | 0;
255
319
  };
256
320
  readonly minHeight: {
257
- readonly property: "minHeight";
321
+ readonly property: {
322
+ readonly physical: "minHeight";
323
+ readonly logical: "minBlockSize";
324
+ };
325
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
258
326
  readonly transform: (value: string | number) => string | 0;
259
327
  };
260
328
  readonly maxHeight: {
261
- readonly property: "maxHeight";
329
+ readonly property: {
330
+ readonly physical: "maxHeight";
331
+ readonly logical: "maxBlockSize";
332
+ };
333
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
262
334
  readonly transform: (value: string | number) => string | 0;
263
335
  };
264
336
  readonly verticalAlign: {
265
337
  readonly property: "verticalAlign";
266
338
  };
339
+ readonly direction: {
340
+ readonly property: "direction";
341
+ };
267
342
  }>>;
268
343
  declare const listVariants: (props: import("@codecademy/variance/dist/types/config").VariantProps<"variant", false | "table" | "default" | "block" | "plain" | "card"> & {
269
344
  theme?: import("@emotion/react").Theme | undefined;
@@ -301,7 +376,7 @@ export declare const HeaderRowEl: import("@emotion/styled").StyledComponent<{
301
376
  theme?: import("@emotion/react").Theme | undefined;
302
377
  as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
303
378
  } & HeaderProps, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "slot" | "style" | "title" | "dir" | "children" | "className" | "aria-hidden" | "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag" | keyof import("react").ClassAttributes<HTMLDivElement> | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture">, {}>;
304
- declare const columnType: (props: import("@codecademy/variance/dist/types/config").VariantProps<"type", false | "header" | "select" | "content" | "control" | "orderedHeader" | "tableControl" | "expand" | "expandControl"> & {
379
+ declare const columnType: (props: import("@codecademy/variance/dist/types/config").VariantProps<"type", false | "header" | "select" | "content" | "orderedHeader" | "control" | "tableControl" | "expand" | "expandControl"> & {
305
380
  theme?: import("@emotion/react").Theme | undefined;
306
381
  }) => import("@codecademy/variance").CSSObject;
307
382
  declare const columnJustify: (props: import("@codecademy/variance/dist/types/config").VariantProps<"justify", false | "left" | "right"> & {
@@ -371,11 +446,19 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
371
446
  dir?: string | undefined;
372
447
  className?: string | undefined;
373
448
  height?: import("@codecademy/variance/dist/types/config").Scale<{
374
- readonly property: "height";
449
+ readonly property: {
450
+ readonly physical: "height";
451
+ readonly logical: "blockSize";
452
+ };
453
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
375
454
  readonly transform: (value: string | number) => string | 0;
376
455
  }>;
377
456
  width?: import("@codecademy/variance/dist/types/config").Scale<{
378
- readonly property: "width";
457
+ readonly property: {
458
+ readonly physical: "width";
459
+ readonly logical: "inlineSize";
460
+ };
461
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
379
462
  readonly transform: (value: string | number) => string | 0;
380
463
  }>;
381
464
  "aria-hidden"?: (boolean | "false" | "true") | undefined;
@@ -660,6 +743,9 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
660
743
  containerType?: import("@codecademy/variance/dist/types/config").Scale<{
661
744
  readonly property: "containerType";
662
745
  }>;
746
+ direction?: import("@codecademy/variance/dist/types/config").Scale<{
747
+ readonly property: "direction";
748
+ }>;
663
749
  display?: import("@codecademy/variance/dist/types/config").Scale<{
664
750
  readonly property: "display";
665
751
  }>;
@@ -717,19 +803,35 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
717
803
  readonly property: "listStyleType";
718
804
  }>;
719
805
  maxHeight?: import("@codecademy/variance/dist/types/config").Scale<{
720
- readonly property: "maxHeight";
806
+ readonly property: {
807
+ readonly physical: "maxHeight";
808
+ readonly logical: "maxBlockSize";
809
+ };
810
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
721
811
  readonly transform: (value: string | number) => string | 0;
722
812
  }>;
723
813
  maxWidth?: import("@codecademy/variance/dist/types/config").Scale<{
724
- readonly property: "maxWidth";
814
+ readonly property: {
815
+ readonly physical: "maxWidth";
816
+ readonly logical: "maxInlineSize";
817
+ };
818
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
725
819
  readonly transform: (value: string | number) => string | 0;
726
820
  }>;
727
821
  minHeight?: import("@codecademy/variance/dist/types/config").Scale<{
728
- readonly property: "minHeight";
822
+ readonly property: {
823
+ readonly physical: "minHeight";
824
+ readonly logical: "minBlockSize";
825
+ };
826
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
729
827
  readonly transform: (value: string | number) => string | 0;
730
828
  }>;
731
829
  minWidth?: import("@codecademy/variance/dist/types/config").Scale<{
732
- readonly property: "minWidth";
830
+ readonly property: {
831
+ readonly physical: "minWidth";
832
+ readonly logical: "minInlineSize";
833
+ };
834
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
733
835
  readonly transform: (value: string | number) => string | 0;
734
836
  }>;
735
837
  opacity?: import("@codecademy/variance/dist/types/config").Scale<{
@@ -834,29 +936,53 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
834
936
  }>;
835
937
  px?: import("@codecademy/variance/dist/types/config").Scale<{
836
938
  readonly property: "padding";
837
- readonly properties: readonly ["paddingLeft", "paddingRight"];
939
+ readonly properties: {
940
+ readonly physical: readonly ["paddingLeft", "paddingRight"];
941
+ readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
942
+ };
838
943
  readonly scale: "spacing";
944
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
839
945
  }>;
840
946
  py?: import("@codecademy/variance/dist/types/config").Scale<{
841
947
  readonly property: "padding";
842
- readonly properties: readonly ["paddingTop", "paddingBottom"];
948
+ readonly properties: {
949
+ readonly physical: readonly ["paddingTop", "paddingBottom"];
950
+ readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
951
+ };
843
952
  readonly scale: "spacing";
953
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
844
954
  }>;
845
955
  pt?: import("@codecademy/variance/dist/types/config").Scale<{
846
- readonly property: "paddingTop";
956
+ readonly property: {
957
+ readonly physical: "paddingTop";
958
+ readonly logical: "paddingBlockStart";
959
+ };
847
960
  readonly scale: "spacing";
961
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
848
962
  }>;
849
963
  pb?: import("@codecademy/variance/dist/types/config").Scale<{
850
- readonly property: "paddingBottom";
964
+ readonly property: {
965
+ readonly physical: "paddingBottom";
966
+ readonly logical: "paddingBlockEnd";
967
+ };
851
968
  readonly scale: "spacing";
969
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
852
970
  }>;
853
971
  pr?: import("@codecademy/variance/dist/types/config").Scale<{
854
- readonly property: "paddingRight";
972
+ readonly property: {
973
+ readonly physical: "paddingRight";
974
+ readonly logical: "paddingInlineEnd";
975
+ };
855
976
  readonly scale: "spacing";
977
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
856
978
  }>;
857
979
  pl?: import("@codecademy/variance/dist/types/config").Scale<{
858
- readonly property: "paddingLeft";
980
+ readonly property: {
981
+ readonly physical: "paddingLeft";
982
+ readonly logical: "paddingInlineStart";
983
+ };
859
984
  readonly scale: "spacing";
985
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
860
986
  }>;
861
987
  m?: import("@codecademy/variance/dist/types/config").Scale<{
862
988
  readonly property: "margin";
@@ -864,29 +990,53 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
864
990
  }>;
865
991
  mx?: import("@codecademy/variance/dist/types/config").Scale<{
866
992
  readonly property: "margin";
867
- readonly properties: readonly ["marginLeft", "marginRight"];
993
+ readonly properties: {
994
+ readonly physical: readonly ["marginLeft", "marginRight"];
995
+ readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
996
+ };
997
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
868
998
  readonly scale: "spacing";
869
999
  }>;
870
1000
  my?: import("@codecademy/variance/dist/types/config").Scale<{
871
1001
  readonly property: "margin";
872
- readonly properties: readonly ["marginTop", "marginBottom"];
1002
+ readonly properties: {
1003
+ readonly physical: readonly ["marginTop", "marginBottom"];
1004
+ readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
1005
+ };
1006
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
873
1007
  readonly scale: "spacing";
874
1008
  }>;
875
1009
  mt?: import("@codecademy/variance/dist/types/config").Scale<{
876
- readonly property: "marginTop";
1010
+ readonly property: {
1011
+ readonly physical: "marginTop";
1012
+ readonly logical: "marginBlockStart";
1013
+ };
877
1014
  readonly scale: "spacing";
1015
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
878
1016
  }>;
879
1017
  mb?: import("@codecademy/variance/dist/types/config").Scale<{
880
- readonly property: "marginBottom";
1018
+ readonly property: {
1019
+ readonly physical: "marginBottom";
1020
+ readonly logical: "marginBlockEnd";
1021
+ };
881
1022
  readonly scale: "spacing";
1023
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
882
1024
  }>;
883
1025
  mr?: import("@codecademy/variance/dist/types/config").Scale<{
884
- readonly property: "marginRight";
1026
+ readonly property: {
1027
+ readonly physical: "marginRight";
1028
+ readonly logical: "marginInlineEnd";
1029
+ };
885
1030
  readonly scale: "spacing";
1031
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
886
1032
  }>;
887
1033
  ml?: import("@codecademy/variance/dist/types/config").Scale<{
888
- readonly property: "marginLeft";
1034
+ readonly property: {
1035
+ readonly physical: "marginLeft";
1036
+ readonly logical: "marginInlineStart";
1037
+ };
889
1038
  readonly scale: "spacing";
1039
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
890
1040
  }>;
891
1041
  borderX?: import("@codecademy/variance/dist/types/config").Scale<{
892
1042
  readonly property: "border";
@@ -65,32 +65,59 @@ declare const listProps: import("@codecademy/variance/dist/types/config").Parser
65
65
  readonly transform: (value: string | number) => string | 0;
66
66
  };
67
67
  readonly width: {
68
- readonly property: "width";
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: "minWidth";
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: "maxWidth";
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: "height";
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: "minHeight";
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: "maxHeight";
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 fontFamily: {
96
123
  readonly property: "fontFamily";
@@ -133,29 +160,53 @@ declare const listProps: import("@codecademy/variance/dist/types/config").Parser
133
160
  };
134
161
  readonly px: {
135
162
  readonly property: "padding";
136
- readonly properties: readonly ["paddingLeft", "paddingRight"];
163
+ readonly properties: {
164
+ readonly physical: readonly ["paddingLeft", "paddingRight"];
165
+ readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
166
+ };
137
167
  readonly scale: "spacing";
168
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
138
169
  };
139
170
  readonly py: {
140
171
  readonly property: "padding";
141
- readonly properties: readonly ["paddingTop", "paddingBottom"];
172
+ readonly properties: {
173
+ readonly physical: readonly ["paddingTop", "paddingBottom"];
174
+ readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
175
+ };
142
176
  readonly scale: "spacing";
177
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
143
178
  };
144
179
  readonly pt: {
145
- readonly property: "paddingTop";
180
+ readonly property: {
181
+ readonly physical: "paddingTop";
182
+ readonly logical: "paddingBlockStart";
183
+ };
146
184
  readonly scale: "spacing";
185
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
147
186
  };
148
187
  readonly pb: {
149
- readonly property: "paddingBottom";
188
+ readonly property: {
189
+ readonly physical: "paddingBottom";
190
+ readonly logical: "paddingBlockEnd";
191
+ };
150
192
  readonly scale: "spacing";
193
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
151
194
  };
152
195
  readonly pr: {
153
- readonly property: "paddingRight";
196
+ readonly property: {
197
+ readonly physical: "paddingRight";
198
+ readonly logical: "paddingInlineEnd";
199
+ };
154
200
  readonly scale: "spacing";
201
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
155
202
  };
156
203
  readonly pl: {
157
- readonly property: "paddingLeft";
204
+ readonly property: {
205
+ readonly physical: "paddingLeft";
206
+ readonly logical: "paddingInlineStart";
207
+ };
158
208
  readonly scale: "spacing";
209
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
159
210
  };
160
211
  readonly m: {
161
212
  readonly property: "margin";
@@ -163,29 +214,53 @@ declare const listProps: import("@codecademy/variance/dist/types/config").Parser
163
214
  };
164
215
  readonly mx: {
165
216
  readonly property: "margin";
166
- readonly properties: readonly ["marginLeft", "marginRight"];
217
+ readonly properties: {
218
+ readonly physical: readonly ["marginLeft", "marginRight"];
219
+ readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
220
+ };
221
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
167
222
  readonly scale: "spacing";
168
223
  };
169
224
  readonly my: {
170
225
  readonly property: "margin";
171
- readonly properties: readonly ["marginTop", "marginBottom"];
226
+ readonly properties: {
227
+ readonly physical: readonly ["marginTop", "marginBottom"];
228
+ readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
229
+ };
230
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
172
231
  readonly scale: "spacing";
173
232
  };
174
233
  readonly mt: {
175
- readonly property: "marginTop";
234
+ readonly property: {
235
+ readonly physical: "marginTop";
236
+ readonly logical: "marginBlockStart";
237
+ };
176
238
  readonly scale: "spacing";
239
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
177
240
  };
178
241
  readonly mb: {
179
- readonly property: "marginBottom";
242
+ readonly property: {
243
+ readonly physical: "marginBottom";
244
+ readonly logical: "marginBlockEnd";
245
+ };
180
246
  readonly scale: "spacing";
247
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
181
248
  };
182
249
  readonly mr: {
183
- readonly property: "marginRight";
250
+ readonly property: {
251
+ readonly physical: "marginRight";
252
+ readonly logical: "marginInlineEnd";
253
+ };
184
254
  readonly scale: "spacing";
255
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
185
256
  };
186
257
  readonly ml: {
187
- readonly property: "marginLeft";
258
+ readonly property: {
259
+ readonly physical: "marginLeft";
260
+ readonly logical: "marginInlineStart";
261
+ };
188
262
  readonly scale: "spacing";
263
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
189
264
  };
190
265
  }>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
191
266
  readonly position: {