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