@codecademy/gamut 68.0.2-alpha.f8c3b5.0 → 68.1.0-alpha.46f13d.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 +60 -12
- package/dist/Badge/index.d.ts +74 -14
- package/dist/Box/props.d.ts +204 -40
- package/dist/Button/shared/styles.d.ts +190 -38
- package/dist/Card/elements.d.ts +612 -120
- package/dist/ConnectedForm/utils.d.ts +1 -1
- package/dist/Form/SelectDropdown/styles.d.ts +1 -1
- package/dist/Form/elements/Form.d.ts +191 -39
- package/dist/Form/elements/FormGroupLabel.js +2 -2
- package/dist/Form/inputs/Select.js +5 -6
- package/dist/GridForm/GridFormSections/GridFormSectionBreak.d.ts +144 -28
- package/dist/InternalFloatingCard/InternalFloatingCard.d.ts +30 -6
- package/dist/Layout/Column.d.ts +60 -12
- package/dist/Layout/LayoutGrid.d.ts +60 -12
- package/dist/List/elements.d.ts +265 -53
- package/dist/Menu/elements.d.ts +204 -40
- package/dist/Pagination/AnimatedPaginationButtons.d.ts +190 -38
- package/dist/Pagination/utils.d.ts +190 -38
- package/dist/Tabs/props.d.ts +60 -12
- package/dist/Tag/types.d.ts +60 -12
- package/dist/Toggle/elements.d.ts +134 -26
- package/dist/Typography/Text.d.ts +74 -14
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -1
- package/package.json +7 -7
- package/dist/BarChart/BarChartProvider.d.ts +0 -20
- package/dist/BarChart/BarChartProvider.js +0 -31
- package/dist/BarChart/BarRow/ValueLabelsContent.d.ts +0 -7
- package/dist/BarChart/BarRow/ValueLabelsContent.js +0 -30
- package/dist/BarChart/BarRow/elements.d.ts +0 -719
- package/dist/BarChart/BarRow/elements.js +0 -97
- package/dist/BarChart/BarRow/index.d.ts +0 -26
- package/dist/BarChart/BarRow/index.js +0 -243
- package/dist/BarChart/GENERIC_EXAMPLE.d.ts +0 -14
- package/dist/BarChart/GENERIC_EXAMPLE.js +0 -328
- package/dist/BarChart/index.d.ts +0 -4
- package/dist/BarChart/index.js +0 -155
- package/dist/BarChart/layout/GridLines.d.ts +0 -7
- package/dist/BarChart/layout/GridLines.js +0 -78
- package/dist/BarChart/layout/ScaleChartHeader.d.ts +0 -10
- package/dist/BarChart/layout/ScaleChartHeader.js +0 -89
- package/dist/BarChart/layout/VerticalSpacer.d.ts +0 -6
- package/dist/BarChart/layout/VerticalSpacer.js +0 -56
- package/dist/BarChart/shared/elements.d.ts +0 -7
- package/dist/BarChart/shared/elements.js +0 -12
- package/dist/BarChart/shared/styles.d.ts +0 -4
- package/dist/BarChart/shared/styles.js +0 -4
- package/dist/BarChart/shared/translations.d.ts +0 -68
- package/dist/BarChart/shared/translations.js +0 -52
- package/dist/BarChart/shared/types.d.ts +0 -94
- package/dist/BarChart/shared/types.js +0 -1
- package/dist/BarChart/utils/hooks.d.ts +0 -91
- package/dist/BarChart/utils/hooks.js +0 -291
- package/dist/BarChart/utils/index.d.ts +0 -100
- package/dist/BarChart/utils/index.js +0 -224
package/dist/List/elements.d.ts
CHANGED
|
@@ -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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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: {
|
|
@@ -301,7 +349,7 @@ export declare const HeaderRowEl: import("@emotion/styled").StyledComponent<{
|
|
|
301
349
|
theme?: import("@emotion/react").Theme | undefined;
|
|
302
350
|
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
303
351
|
} & 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" | "
|
|
352
|
+
declare const columnType: (props: import("@codecademy/variance/dist/types/config").VariantProps<"type", false | "header" | "select" | "content" | "orderedHeader" | "control" | "tableControl" | "expand" | "expandControl"> & {
|
|
305
353
|
theme?: import("@emotion/react").Theme | undefined;
|
|
306
354
|
}) => import("@codecademy/variance").CSSObject;
|
|
307
355
|
declare const columnJustify: (props: import("@codecademy/variance/dist/types/config").VariantProps<"justify", false | "left" | "right"> & {
|
|
@@ -779,7 +827,11 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
|
|
|
779
827
|
readonly property: "backgroundPosition";
|
|
780
828
|
}>;
|
|
781
829
|
borderBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
782
|
-
readonly property:
|
|
830
|
+
readonly property: {
|
|
831
|
+
readonly physical: "borderBottom";
|
|
832
|
+
readonly logical: "borderBlockEnd";
|
|
833
|
+
};
|
|
834
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
783
835
|
readonly scale: "borders";
|
|
784
836
|
}>;
|
|
785
837
|
borderColor?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -787,7 +839,11 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
|
|
|
787
839
|
readonly scale: "colors";
|
|
788
840
|
}>;
|
|
789
841
|
borderLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
790
|
-
readonly property:
|
|
842
|
+
readonly property: {
|
|
843
|
+
readonly physical: "borderLeft";
|
|
844
|
+
readonly logical: "borderInlineStart";
|
|
845
|
+
};
|
|
846
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
791
847
|
readonly scale: "borders";
|
|
792
848
|
}>;
|
|
793
849
|
borderRadius?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -795,14 +851,22 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
|
|
|
795
851
|
readonly scale: "borderRadii";
|
|
796
852
|
}>;
|
|
797
853
|
borderRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
798
|
-
readonly property:
|
|
854
|
+
readonly property: {
|
|
855
|
+
readonly physical: "borderRight";
|
|
856
|
+
readonly logical: "borderInlineEnd";
|
|
857
|
+
};
|
|
858
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
799
859
|
readonly scale: "borders";
|
|
800
860
|
}>;
|
|
801
861
|
borderStyle?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
802
862
|
readonly property: "borderStyle";
|
|
803
863
|
}>;
|
|
804
864
|
borderTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
805
|
-
readonly property:
|
|
865
|
+
readonly property: {
|
|
866
|
+
readonly physical: "borderTop";
|
|
867
|
+
readonly logical: "borderBlockStart";
|
|
868
|
+
};
|
|
869
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
806
870
|
readonly scale: "borders";
|
|
807
871
|
}>;
|
|
808
872
|
borderWidth?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -834,29 +898,53 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
|
|
|
834
898
|
}>;
|
|
835
899
|
px?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
836
900
|
readonly property: "padding";
|
|
837
|
-
readonly properties:
|
|
901
|
+
readonly properties: {
|
|
902
|
+
readonly physical: readonly ["paddingLeft", "paddingRight"];
|
|
903
|
+
readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
|
|
904
|
+
};
|
|
838
905
|
readonly scale: "spacing";
|
|
906
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
839
907
|
}>;
|
|
840
908
|
py?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
841
909
|
readonly property: "padding";
|
|
842
|
-
readonly properties:
|
|
910
|
+
readonly properties: {
|
|
911
|
+
readonly physical: readonly ["paddingTop", "paddingBottom"];
|
|
912
|
+
readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
|
|
913
|
+
};
|
|
843
914
|
readonly scale: "spacing";
|
|
915
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
844
916
|
}>;
|
|
845
917
|
pt?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
846
|
-
readonly property:
|
|
918
|
+
readonly property: {
|
|
919
|
+
readonly physical: "paddingTop";
|
|
920
|
+
readonly logical: "paddingBlockStart";
|
|
921
|
+
};
|
|
847
922
|
readonly scale: "spacing";
|
|
923
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
848
924
|
}>;
|
|
849
925
|
pb?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
850
|
-
readonly property:
|
|
926
|
+
readonly property: {
|
|
927
|
+
readonly physical: "paddingBottom";
|
|
928
|
+
readonly logical: "paddingBlockEnd";
|
|
929
|
+
};
|
|
851
930
|
readonly scale: "spacing";
|
|
931
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
852
932
|
}>;
|
|
853
933
|
pr?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
854
|
-
readonly property:
|
|
934
|
+
readonly property: {
|
|
935
|
+
readonly physical: "paddingRight";
|
|
936
|
+
readonly logical: "paddingInlineEnd";
|
|
937
|
+
};
|
|
855
938
|
readonly scale: "spacing";
|
|
939
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
856
940
|
}>;
|
|
857
941
|
pl?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
858
|
-
readonly property:
|
|
942
|
+
readonly property: {
|
|
943
|
+
readonly physical: "paddingLeft";
|
|
944
|
+
readonly logical: "paddingInlineStart";
|
|
945
|
+
};
|
|
859
946
|
readonly scale: "spacing";
|
|
947
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
860
948
|
}>;
|
|
861
949
|
m?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
862
950
|
readonly property: "margin";
|
|
@@ -864,115 +952,227 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
|
|
|
864
952
|
}>;
|
|
865
953
|
mx?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
866
954
|
readonly property: "margin";
|
|
867
|
-
readonly properties:
|
|
955
|
+
readonly properties: {
|
|
956
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
957
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
958
|
+
};
|
|
959
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
868
960
|
readonly scale: "spacing";
|
|
869
961
|
}>;
|
|
870
962
|
my?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
871
963
|
readonly property: "margin";
|
|
872
|
-
readonly properties:
|
|
964
|
+
readonly properties: {
|
|
965
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
966
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
967
|
+
};
|
|
968
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
873
969
|
readonly scale: "spacing";
|
|
874
970
|
}>;
|
|
875
971
|
mt?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
876
|
-
readonly property:
|
|
972
|
+
readonly property: {
|
|
973
|
+
readonly physical: "marginTop";
|
|
974
|
+
readonly logical: "marginBlockStart";
|
|
975
|
+
};
|
|
877
976
|
readonly scale: "spacing";
|
|
977
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
878
978
|
}>;
|
|
879
979
|
mb?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
880
|
-
readonly property:
|
|
980
|
+
readonly property: {
|
|
981
|
+
readonly physical: "marginBottom";
|
|
982
|
+
readonly logical: "marginBlockEnd";
|
|
983
|
+
};
|
|
881
984
|
readonly scale: "spacing";
|
|
985
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
882
986
|
}>;
|
|
883
987
|
mr?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
884
|
-
readonly property:
|
|
988
|
+
readonly property: {
|
|
989
|
+
readonly physical: "marginRight";
|
|
990
|
+
readonly logical: "marginInlineEnd";
|
|
991
|
+
};
|
|
885
992
|
readonly scale: "spacing";
|
|
993
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
886
994
|
}>;
|
|
887
995
|
ml?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
888
|
-
readonly property:
|
|
996
|
+
readonly property: {
|
|
997
|
+
readonly physical: "marginLeft";
|
|
998
|
+
readonly logical: "marginInlineStart";
|
|
999
|
+
};
|
|
889
1000
|
readonly scale: "spacing";
|
|
1001
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
890
1002
|
}>;
|
|
891
1003
|
borderX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
892
1004
|
readonly property: "border";
|
|
893
|
-
readonly properties:
|
|
1005
|
+
readonly properties: {
|
|
1006
|
+
readonly physical: readonly ["borderLeft", "borderRight"];
|
|
1007
|
+
readonly logical: readonly ["borderInlineStart", "borderInlineEnd"];
|
|
1008
|
+
};
|
|
1009
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
894
1010
|
readonly scale: "borders";
|
|
895
1011
|
}>;
|
|
896
1012
|
borderY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
897
1013
|
readonly property: "border";
|
|
898
|
-
readonly properties:
|
|
1014
|
+
readonly properties: {
|
|
1015
|
+
readonly physical: readonly ["borderTop", "borderBottom"];
|
|
1016
|
+
readonly logical: readonly ["borderBlockStart", "borderBlockEnd"];
|
|
1017
|
+
};
|
|
1018
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
899
1019
|
readonly scale: "borders";
|
|
900
1020
|
}>;
|
|
901
1021
|
borderWidthX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
902
1022
|
readonly property: "borderWidth";
|
|
903
|
-
readonly properties:
|
|
1023
|
+
readonly properties: {
|
|
1024
|
+
readonly physical: readonly ["borderLeftWidth", "borderRightWidth"];
|
|
1025
|
+
readonly logical: readonly ["borderInlineStartWidth", "borderInlineEndWidth"];
|
|
1026
|
+
};
|
|
1027
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
904
1028
|
}>;
|
|
905
1029
|
borderWidthY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
906
1030
|
readonly property: "borderWidth";
|
|
907
|
-
readonly properties:
|
|
1031
|
+
readonly properties: {
|
|
1032
|
+
readonly physical: readonly ["borderTopWidth", "borderBottomWidth"];
|
|
1033
|
+
readonly logical: readonly ["borderBlockStartWidth", "borderBlockEndWidth"];
|
|
1034
|
+
};
|
|
1035
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
908
1036
|
}>;
|
|
909
1037
|
borderWidthLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
910
|
-
readonly property:
|
|
1038
|
+
readonly property: {
|
|
1039
|
+
readonly physical: "borderLeftWidth";
|
|
1040
|
+
readonly logical: "borderInlineStartWidth";
|
|
1041
|
+
};
|
|
1042
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
911
1043
|
}>;
|
|
912
1044
|
borderWidthRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
913
|
-
readonly property:
|
|
1045
|
+
readonly property: {
|
|
1046
|
+
readonly physical: "borderRightWidth";
|
|
1047
|
+
readonly logical: "borderInlineEndWidth";
|
|
1048
|
+
};
|
|
1049
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
914
1050
|
}>;
|
|
915
1051
|
borderWidthTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
916
|
-
readonly property:
|
|
1052
|
+
readonly property: {
|
|
1053
|
+
readonly physical: "borderTopWidth";
|
|
1054
|
+
readonly logical: "borderBlockStartWidth";
|
|
1055
|
+
};
|
|
1056
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
917
1057
|
}>;
|
|
918
1058
|
borderWidthBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
919
|
-
readonly property:
|
|
1059
|
+
readonly property: {
|
|
1060
|
+
readonly physical: "borderBottomWidth";
|
|
1061
|
+
readonly logical: "borderBlockEndWidth";
|
|
1062
|
+
};
|
|
1063
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
920
1064
|
}>;
|
|
921
1065
|
borderRadiusLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
922
1066
|
readonly property: "borderRadius";
|
|
923
|
-
readonly properties:
|
|
1067
|
+
readonly properties: {
|
|
1068
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
|
|
1069
|
+
readonly logical: readonly ["borderStartStartRadius", "borderEndStartRadius"];
|
|
1070
|
+
};
|
|
1071
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
924
1072
|
readonly scale: "borderRadii";
|
|
925
1073
|
}>;
|
|
926
1074
|
borderRadiusTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
927
1075
|
readonly property: "borderRadius";
|
|
928
|
-
readonly properties:
|
|
1076
|
+
readonly properties: {
|
|
1077
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
|
|
1078
|
+
readonly logical: readonly ["borderStartStartRadius", "borderStartEndRadius"];
|
|
1079
|
+
};
|
|
1080
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
929
1081
|
readonly scale: "borderRadii";
|
|
930
1082
|
}>;
|
|
931
1083
|
borderRadiusBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
932
1084
|
readonly property: "borderRadius";
|
|
933
|
-
readonly properties:
|
|
1085
|
+
readonly properties: {
|
|
1086
|
+
readonly physical: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
|
|
1087
|
+
readonly logical: readonly ["borderEndStartRadius", "borderEndEndRadius"];
|
|
1088
|
+
};
|
|
1089
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
934
1090
|
readonly scale: "borderRadii";
|
|
935
1091
|
}>;
|
|
936
1092
|
borderRadiusRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
937
1093
|
readonly property: "borderRadius";
|
|
938
|
-
readonly properties:
|
|
1094
|
+
readonly properties: {
|
|
1095
|
+
readonly physical: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
|
|
1096
|
+
readonly logical: readonly ["borderStartEndRadius", "borderEndEndRadius"];
|
|
1097
|
+
};
|
|
1098
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
939
1099
|
readonly scale: "borderRadii";
|
|
940
1100
|
}>;
|
|
941
1101
|
borderRadiusTopLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
942
|
-
readonly property:
|
|
1102
|
+
readonly property: {
|
|
1103
|
+
readonly physical: "borderTopLeftRadius";
|
|
1104
|
+
readonly logical: "borderStartStartRadius";
|
|
1105
|
+
};
|
|
1106
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
943
1107
|
readonly scale: "borderRadii";
|
|
944
1108
|
}>;
|
|
945
1109
|
borderRadiusTopRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
946
|
-
readonly property:
|
|
1110
|
+
readonly property: {
|
|
1111
|
+
readonly physical: "borderTopRightRadius";
|
|
1112
|
+
readonly logical: "borderStartEndRadius";
|
|
1113
|
+
};
|
|
1114
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
947
1115
|
readonly scale: "borderRadii";
|
|
948
1116
|
}>;
|
|
949
1117
|
borderRadiusBottomRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
950
|
-
readonly property:
|
|
1118
|
+
readonly property: {
|
|
1119
|
+
readonly physical: "borderBottomRightRadius";
|
|
1120
|
+
readonly logical: "borderEndEndRadius";
|
|
1121
|
+
};
|
|
1122
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
951
1123
|
readonly scale: "borderRadii";
|
|
952
1124
|
}>;
|
|
953
1125
|
borderRadiusBottomLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
954
|
-
readonly property:
|
|
1126
|
+
readonly property: {
|
|
1127
|
+
readonly physical: "borderBottomLeftRadius";
|
|
1128
|
+
readonly logical: "borderEndStartRadius";
|
|
1129
|
+
};
|
|
1130
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
955
1131
|
readonly scale: "borderRadii";
|
|
956
1132
|
}>;
|
|
957
1133
|
borderStyleX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
958
1134
|
readonly property: "borderStyle";
|
|
959
|
-
readonly properties:
|
|
1135
|
+
readonly properties: {
|
|
1136
|
+
readonly physical: readonly ["borderLeftStyle", "borderRightStyle"];
|
|
1137
|
+
readonly logical: readonly ["borderInlineStartStyle", "borderInlineEndStyle"];
|
|
1138
|
+
};
|
|
1139
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
960
1140
|
}>;
|
|
961
1141
|
borderStyleY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
962
1142
|
readonly property: "borderStyle";
|
|
963
|
-
readonly properties:
|
|
1143
|
+
readonly properties: {
|
|
1144
|
+
readonly physical: readonly ["borderTopStyle", "borderBottomStyle"];
|
|
1145
|
+
readonly logical: readonly ["borderBlockStartStyle", "borderBlockEndStyle"];
|
|
1146
|
+
};
|
|
1147
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
964
1148
|
}>;
|
|
965
1149
|
borderStyleLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
966
|
-
readonly property:
|
|
1150
|
+
readonly property: {
|
|
1151
|
+
readonly physical: "borderLeftStyle";
|
|
1152
|
+
readonly logical: "borderInlineStartStyle";
|
|
1153
|
+
};
|
|
1154
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
967
1155
|
}>;
|
|
968
1156
|
borderStyleRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
969
|
-
readonly property:
|
|
1157
|
+
readonly property: {
|
|
1158
|
+
readonly physical: "borderRightStyle";
|
|
1159
|
+
readonly logical: "borderInlineEndStyle";
|
|
1160
|
+
};
|
|
1161
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
970
1162
|
}>;
|
|
971
1163
|
borderStyleTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
972
|
-
readonly property:
|
|
1164
|
+
readonly property: {
|
|
1165
|
+
readonly physical: "borderTopStyle";
|
|
1166
|
+
readonly logical: "borderBlockStartStyle";
|
|
1167
|
+
};
|
|
1168
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
973
1169
|
}>;
|
|
974
1170
|
borderStyleBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
975
|
-
readonly property:
|
|
1171
|
+
readonly property: {
|
|
1172
|
+
readonly physical: "borderBottomStyle";
|
|
1173
|
+
readonly logical: "borderBlockEndStyle";
|
|
1174
|
+
};
|
|
1175
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
976
1176
|
}>;
|
|
977
1177
|
dimensions?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
978
1178
|
readonly property: "width";
|
|
@@ -989,28 +1189,40 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
|
|
|
989
1189
|
}>;
|
|
990
1190
|
borderColorX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
991
1191
|
readonly property: "borderColor";
|
|
992
|
-
readonly properties:
|
|
1192
|
+
readonly properties: {
|
|
1193
|
+
readonly physical: readonly ["borderLeftColor", "borderRightColor"];
|
|
1194
|
+
readonly logical: readonly ["borderInlineStartColor", "borderInlineEndColor"];
|
|
1195
|
+
};
|
|
1196
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
993
1197
|
readonly scale: "colors";
|
|
994
1198
|
}>;
|
|
995
1199
|
borderColorY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
996
1200
|
readonly property: "borderColor";
|
|
997
|
-
readonly properties:
|
|
1201
|
+
readonly properties: {
|
|
1202
|
+
readonly physical: readonly ["borderTopColor", "borderBottomColor"];
|
|
1203
|
+
readonly logical: readonly ["borderBlockStartColor", "borderBlockEndColor"];
|
|
1204
|
+
};
|
|
1205
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
998
1206
|
readonly scale: "colors";
|
|
999
1207
|
}>;
|
|
1000
1208
|
borderColorLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1001
1209
|
readonly property: "borderLeftColor";
|
|
1210
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1002
1211
|
readonly scale: "colors";
|
|
1003
1212
|
}>;
|
|
1004
1213
|
borderColorRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1005
1214
|
readonly property: "borderRightColor";
|
|
1215
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1006
1216
|
readonly scale: "colors";
|
|
1007
1217
|
}>;
|
|
1008
1218
|
borderColorTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1009
1219
|
readonly property: "borderTopColor";
|
|
1220
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1010
1221
|
readonly scale: "colors";
|
|
1011
1222
|
}>;
|
|
1012
1223
|
borderColorBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1013
1224
|
readonly property: "borderBottomColor";
|
|
1225
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1014
1226
|
readonly scale: "colors";
|
|
1015
1227
|
}>;
|
|
1016
1228
|
theme?: import("@emotion/react").Theme | undefined;
|