@codecademy/gamut 68.1.0-alpha.f9ca97.0 → 68.1.1-alpha.2babc6.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/Alert/elements.d.ts +3 -3
- package/dist/Anchor/index.d.ts +44 -13
- package/dist/Badge/index.d.ts +38 -7
- package/dist/Box/Box.d.ts +1 -1
- package/dist/Box/FlexBox.d.ts +1 -1
- package/dist/Box/GridBox.d.ts +1 -1
- package/dist/Box/props.d.ts +38 -7
- package/dist/Button/CTAButton.d.ts +2 -2
- package/dist/Button/FillButton.d.ts +4 -4
- package/dist/Button/IconButton.d.ts +4 -4
- package/dist/Button/StrokeButton.d.ts +4 -4
- package/dist/Button/TextButton.d.ts +4 -4
- package/dist/Button/shared/InlineIconButton.d.ts +2 -2
- package/dist/Button/shared/styles.d.ts +41 -10
- package/dist/ButtonBase/ButtonBase.d.ts +2 -2
- package/dist/Card/elements.d.ts +139 -43
- package/dist/ConnectedForm/ConnectedFormGroup.js +10 -4
- package/dist/ConnectedForm/utils.d.ts +2 -2
- package/dist/ContentContainer/index.d.ts +1 -1
- package/dist/Disclosure/elements.d.ts +13 -13
- package/dist/Form/elements/Form.d.ts +44 -13
- package/dist/Form/elements/FormGroup.d.ts +1 -1
- package/dist/GridForm/GridFormButtons/index.d.ts +4 -4
- package/dist/GridForm/GridFormInputGroup/index.js +10 -4
- package/dist/GridForm/GridFormSections/GridFormSectionBreak.d.ts +38 -7
- package/dist/InternalFloatingCard/InternalFloatingCard.d.ts +39 -8
- package/dist/Layout/Column.d.ts +39 -8
- package/dist/Layout/LayoutGrid.d.ts +1 -1
- package/dist/List/elements.d.ts +91 -28
- package/dist/Markdown/index.js +7 -3
- package/dist/Markdown/libs/overrides/index.d.ts +8 -4
- package/dist/Markdown/libs/overrides/index.js +43 -24
- package/dist/Menu/Menu.d.ts +1 -1
- package/dist/Menu/elements.d.ts +42 -11
- package/dist/Pagination/AnimatedPaginationButtons.d.ts +47 -15
- package/dist/Pagination/EllipsisButton.d.ts +9 -9
- package/dist/Pagination/EllipsisButton.js +2 -2
- package/dist/Pagination/PaginationButton.d.ts +6 -6
- package/dist/Pagination/index.js +4 -4
- package/dist/Pagination/utils.d.ts +43 -11
- package/dist/Pagination/utils.js +1 -1
- package/dist/Popover/elements.d.ts +2 -2
- package/dist/PopoverContainer/PopoverContainer.js +31 -4
- package/dist/PopoverContainer/utils.d.ts +25 -1
- package/dist/PopoverContainer/utils.js +36 -5
- package/dist/Tabs/TabButton.d.ts +2 -2
- package/dist/Tabs/TabNav.d.ts +1 -1
- package/dist/Tabs/TabNavLink.d.ts +2 -2
- package/dist/Tabs/props.d.ts +38 -7
- package/dist/Tag/elements.d.ts +11 -11
- package/dist/Tag/types.d.ts +38 -7
- package/dist/Tip/InfoTip/InfoTipButton.d.ts +4 -4
- package/dist/Tip/InfoTip/styles.d.ts +1 -1
- package/dist/Tip/PreviewTip/elements.d.ts +6 -6
- package/dist/Tip/ToolTip/elements.d.ts +1 -1
- package/dist/Tip/shared/elements.d.ts +3 -3
- package/dist/Toggle/elements.d.ts +1 -1
- package/dist/Typography/Text.d.ts +40 -9
- package/package.json +15 -12
- package/dist/typings/react-aria-tabpanel.d.ts +0 -7
package/dist/Tabs/props.d.ts
CHANGED
|
@@ -75,36 +75,67 @@ export declare const tabElementBaseProps: import("@codecademy/variance/dist/type
|
|
|
75
75
|
};
|
|
76
76
|
readonly dimensions: {
|
|
77
77
|
readonly property: "width";
|
|
78
|
-
readonly properties:
|
|
78
|
+
readonly properties: {
|
|
79
|
+
readonly physical: readonly ["width", "height"];
|
|
80
|
+
readonly logical: readonly ["inlineSize", "blockSize"];
|
|
81
|
+
};
|
|
82
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
79
83
|
readonly transform: (value: string | number) => string | 0;
|
|
80
84
|
};
|
|
81
85
|
readonly width: {
|
|
82
|
-
readonly property:
|
|
86
|
+
readonly property: {
|
|
87
|
+
readonly physical: "width";
|
|
88
|
+
readonly logical: "inlineSize";
|
|
89
|
+
};
|
|
90
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
83
91
|
readonly transform: (value: string | number) => string | 0;
|
|
84
92
|
};
|
|
85
93
|
readonly minWidth: {
|
|
86
|
-
readonly property:
|
|
94
|
+
readonly property: {
|
|
95
|
+
readonly physical: "minWidth";
|
|
96
|
+
readonly logical: "minInlineSize";
|
|
97
|
+
};
|
|
98
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
87
99
|
readonly transform: (value: string | number) => string | 0;
|
|
88
100
|
};
|
|
89
101
|
readonly maxWidth: {
|
|
90
|
-
readonly property:
|
|
102
|
+
readonly property: {
|
|
103
|
+
readonly physical: "maxWidth";
|
|
104
|
+
readonly logical: "maxInlineSize";
|
|
105
|
+
};
|
|
106
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
91
107
|
readonly transform: (value: string | number) => string | 0;
|
|
92
108
|
};
|
|
93
109
|
readonly height: {
|
|
94
|
-
readonly property:
|
|
110
|
+
readonly property: {
|
|
111
|
+
readonly physical: "height";
|
|
112
|
+
readonly logical: "blockSize";
|
|
113
|
+
};
|
|
114
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
95
115
|
readonly transform: (value: string | number) => string | 0;
|
|
96
116
|
};
|
|
97
117
|
readonly minHeight: {
|
|
98
|
-
readonly property:
|
|
118
|
+
readonly property: {
|
|
119
|
+
readonly physical: "minHeight";
|
|
120
|
+
readonly logical: "minBlockSize";
|
|
121
|
+
};
|
|
122
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
99
123
|
readonly transform: (value: string | number) => string | 0;
|
|
100
124
|
};
|
|
101
125
|
readonly maxHeight: {
|
|
102
|
-
readonly property:
|
|
126
|
+
readonly property: {
|
|
127
|
+
readonly physical: "maxHeight";
|
|
128
|
+
readonly logical: "maxBlockSize";
|
|
129
|
+
};
|
|
130
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
103
131
|
readonly transform: (value: string | number) => string | 0;
|
|
104
132
|
};
|
|
105
133
|
readonly verticalAlign: {
|
|
106
134
|
readonly property: "verticalAlign";
|
|
107
135
|
};
|
|
136
|
+
readonly direction: {
|
|
137
|
+
readonly property: "direction";
|
|
138
|
+
};
|
|
108
139
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
109
140
|
readonly position: {
|
|
110
141
|
readonly property: "position";
|