@codecademy/gamut 67.6.4-alpha.1d4469.0 → 67.6.4-alpha.1d6b98.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 (38) hide show
  1. package/dist/Anchor/index.d.ts +60 -12
  2. package/dist/Badge/index.d.ts +60 -12
  3. package/dist/Box/props.d.ts +60 -12
  4. package/dist/Button/shared/styles.d.ts +60 -12
  5. package/dist/Card/elements.d.ts +180 -36
  6. package/dist/ConnectedForm/ConnectedFormGroup.d.ts +2 -8
  7. package/dist/ConnectedForm/ConnectedFormGroup.js +1 -1
  8. package/dist/Form/elements/Form.d.ts +60 -12
  9. package/dist/Form/elements/FormGroupLabel.d.ts +2 -2
  10. package/dist/Form/elements/FormGroupLabel.js +3 -14
  11. package/dist/GridForm/GridFormInputGroup/GridFormRadioGroupInput/index.js +11 -19
  12. package/dist/GridForm/GridFormInputGroup/__fixtures__/renderers.d.ts +0 -4
  13. package/dist/GridForm/types.d.ts +2 -7
  14. package/dist/InternalFloatingCard/InternalFloatingCard.d.ts +30 -6
  15. package/dist/Layout/Column.d.ts +60 -12
  16. package/dist/Layout/LayoutGrid.d.ts +60 -12
  17. package/dist/List/elements.d.ts +120 -24
  18. package/dist/Menu/elements.d.ts +60 -12
  19. package/dist/Pagination/AnimatedPaginationButtons.d.ts +60 -12
  20. package/dist/Pagination/utils.d.ts +60 -12
  21. package/dist/Tabs/props.d.ts +60 -12
  22. package/dist/Tag/types.d.ts +60 -12
  23. package/dist/Tip/InfoTip/InfoTipButton.js +2 -5
  24. package/dist/Tip/InfoTip/elements.d.ts +12 -0
  25. package/dist/Tip/InfoTip/elements.js +9 -0
  26. package/dist/Tip/InfoTip/index.d.ts +1 -33
  27. package/dist/Tip/InfoTip/index.js +68 -46
  28. package/dist/Tip/__tests__/helpers.d.ts +26 -5
  29. package/dist/Tip/shared/FloatingTip.js +3 -3
  30. package/dist/Tip/shared/InlineTip.js +1 -4
  31. package/dist/Tip/shared/types.d.ts +1 -1
  32. package/dist/Tip/shared/utils.d.ts +0 -19
  33. package/dist/Tip/shared/utils.js +0 -104
  34. package/dist/Toggle/elements.d.ts +120 -24
  35. package/dist/Typography/Text.d.ts +60 -12
  36. package/package.json +7 -7
  37. package/dist/Tip/InfoTip/utils.d.ts +0 -13
  38. package/dist/Tip/InfoTip/utils.js +0 -47
@@ -1,8 +1,7 @@
1
1
  import isString from 'lodash/isString';
2
- import { useId, createElement as _createElement } from 'react';
3
2
  import * as React from 'react';
4
3
  import { Radio, RadioGroup } from '../../../Form';
5
- import { createInfoTipProps } from '../../../Tip/InfoTip/utils';
4
+ import { createElement as _createElement } from "react";
6
5
  import { jsx as _jsx } from "react/jsx-runtime";
7
6
  export const GridFormRadioGroupInput = ({
8
7
  className,
@@ -14,7 +13,6 @@ export const GridFormRadioGroupInput = ({
14
13
  error
15
14
  }) => {
16
15
  const ariaLabel = field.ariaLabel ?? (isString(field.label) ? field.label : undefined);
17
- const defaultLabelId = useId();
18
16
  return /*#__PURE__*/_jsx(RadioGroup, {
19
17
  "aria-invalid": error,
20
18
  "aria-label": ariaLabel,
@@ -33,22 +31,16 @@ export const GridFormRadioGroupInput = ({
33
31
  children: field.options.map(({
34
32
  label,
35
33
  value,
36
- infotip,
37
34
  ...rest
38
- }) => {
39
- const optionLabelId = `${defaultLabelId}-${value}`;
40
- const infotipProps = infotip ? createInfoTipProps(infotip, optionLabelId).infotipProps : undefined;
41
- return /*#__PURE__*/_createElement(Radio, {
42
- ...register(field.name, field.validation),
43
- disabled: disabled,
44
- error: error,
45
- id: field.id,
46
- infotip: infotipProps,
47
- key: value,
48
- label: label,
49
- value: value,
50
- ...rest
51
- });
52
- })
35
+ }) => /*#__PURE__*/_createElement(Radio, {
36
+ ...register(field.name, field.validation),
37
+ disabled: disabled,
38
+ error: error,
39
+ id: field.id,
40
+ key: value,
41
+ label: label,
42
+ value: value,
43
+ ...rest
44
+ }))
53
45
  });
54
46
  };
@@ -21,10 +21,6 @@ export declare const getComponent: (componentName: string) => {
21
21
  };
22
22
  type GridFormInputGroupTestComponentProps = GridFormInputGroupProps & {
23
23
  mode?: 'onSubmit' | 'onChange';
24
- externalLabel?: {
25
- id: string;
26
- text: string;
27
- };
28
24
  };
29
25
  export declare const GridFormInputGroupTestComponent: React.FC<GridFormInputGroupTestComponentProps>;
30
26
  export {};
@@ -5,7 +5,7 @@ import { MinimalCheckboxProps } from '../ConnectedForm';
5
5
  import { CheckboxLabelUnion, TextAreaProps } from '../Form';
6
6
  import { CheckboxPaddingProps } from '../Form/types';
7
7
  import { ColumnProps } from '../Layout';
8
- import { InfoTipPropsWithoutAria } from '../Tip/InfoTip/utils';
8
+ import { InfoTipProps } from '../Tip/InfoTip';
9
9
  import { Text, TextProps } from '../Typography/Text';
10
10
  export interface BaseFormInputProps {
11
11
  className?: string;
@@ -25,12 +25,7 @@ export type BaseFormField<Value> = {
25
25
  * HTML id to use instead of the name.
26
26
  */
27
27
  id?: string;
28
- /**
29
- * InfoTip to display next to the field label. The InfoTip button is
30
- * automatically labelled by the field label. To override this behavior,
31
- * provide `ariaLabel` or `ariaLabelledby`.
32
- */
33
- infotip?: InfoTipPropsWithoutAria;
28
+ infotip?: InfoTipProps;
34
29
  isSoloField?: boolean;
35
30
  name: string;
36
31
  onUpdate?: (value: Value) => void;
@@ -95,29 +95,53 @@ declare const CardBody: import("@emotion/styled").StyledComponent<{
95
95
  }>;
96
96
  px?: import("@codecademy/variance/dist/types/config").Scale<{
97
97
  readonly property: "padding";
98
- readonly properties: readonly ["paddingLeft", "paddingRight"];
98
+ readonly properties: {
99
+ readonly physical: readonly ["paddingLeft", "paddingRight"];
100
+ readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
101
+ };
99
102
  readonly scale: "spacing";
103
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
100
104
  }>;
101
105
  py?: import("@codecademy/variance/dist/types/config").Scale<{
102
106
  readonly property: "padding";
103
- readonly properties: readonly ["paddingTop", "paddingBottom"];
107
+ readonly properties: {
108
+ readonly physical: readonly ["paddingTop", "paddingBottom"];
109
+ readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
110
+ };
104
111
  readonly scale: "spacing";
112
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
105
113
  }>;
106
114
  pt?: import("@codecademy/variance/dist/types/config").Scale<{
107
- readonly property: "paddingTop";
115
+ readonly property: {
116
+ readonly physical: "paddingTop";
117
+ readonly logical: "paddingBlockStart";
118
+ };
108
119
  readonly scale: "spacing";
120
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
109
121
  }>;
110
122
  pb?: import("@codecademy/variance/dist/types/config").Scale<{
111
- readonly property: "paddingBottom";
123
+ readonly property: {
124
+ readonly physical: "paddingBottom";
125
+ readonly logical: "paddingBlockEnd";
126
+ };
112
127
  readonly scale: "spacing";
128
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
113
129
  }>;
114
130
  pr?: import("@codecademy/variance/dist/types/config").Scale<{
115
- readonly property: "paddingRight";
131
+ readonly property: {
132
+ readonly physical: "paddingRight";
133
+ readonly logical: "paddingInlineEnd";
134
+ };
116
135
  readonly scale: "spacing";
136
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
117
137
  }>;
118
138
  pl?: import("@codecademy/variance/dist/types/config").Scale<{
119
- readonly property: "paddingLeft";
139
+ readonly property: {
140
+ readonly physical: "paddingLeft";
141
+ readonly logical: "paddingInlineStart";
142
+ };
120
143
  readonly scale: "spacing";
144
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
121
145
  }>;
122
146
  dimensions?: import("@codecademy/variance/dist/types/config").Scale<{
123
147
  readonly property: "width";
@@ -97,29 +97,53 @@ declare const columnProps: import("@codecademy/variance/dist/types/config").Pars
97
97
  };
98
98
  readonly px: {
99
99
  readonly property: "padding";
100
- readonly properties: readonly ["paddingLeft", "paddingRight"];
100
+ readonly properties: {
101
+ readonly physical: readonly ["paddingLeft", "paddingRight"];
102
+ readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
103
+ };
101
104
  readonly scale: "spacing";
105
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
102
106
  };
103
107
  readonly py: {
104
108
  readonly property: "padding";
105
- readonly properties: readonly ["paddingTop", "paddingBottom"];
109
+ readonly properties: {
110
+ readonly physical: readonly ["paddingTop", "paddingBottom"];
111
+ readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
112
+ };
106
113
  readonly scale: "spacing";
114
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
107
115
  };
108
116
  readonly pt: {
109
- readonly property: "paddingTop";
117
+ readonly property: {
118
+ readonly physical: "paddingTop";
119
+ readonly logical: "paddingBlockStart";
120
+ };
110
121
  readonly scale: "spacing";
122
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
111
123
  };
112
124
  readonly pb: {
113
- readonly property: "paddingBottom";
125
+ readonly property: {
126
+ readonly physical: "paddingBottom";
127
+ readonly logical: "paddingBlockEnd";
128
+ };
114
129
  readonly scale: "spacing";
130
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
115
131
  };
116
132
  readonly pr: {
117
- readonly property: "paddingRight";
133
+ readonly property: {
134
+ readonly physical: "paddingRight";
135
+ readonly logical: "paddingInlineEnd";
136
+ };
118
137
  readonly scale: "spacing";
138
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
119
139
  };
120
140
  readonly pl: {
121
- readonly property: "paddingLeft";
141
+ readonly property: {
142
+ readonly physical: "paddingLeft";
143
+ readonly logical: "paddingInlineStart";
144
+ };
122
145
  readonly scale: "spacing";
146
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
123
147
  };
124
148
  readonly m: {
125
149
  readonly property: "margin";
@@ -127,29 +151,53 @@ declare const columnProps: import("@codecademy/variance/dist/types/config").Pars
127
151
  };
128
152
  readonly mx: {
129
153
  readonly property: "margin";
130
- readonly properties: readonly ["marginLeft", "marginRight"];
154
+ readonly properties: {
155
+ readonly physical: readonly ["marginLeft", "marginRight"];
156
+ readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
157
+ };
158
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
131
159
  readonly scale: "spacing";
132
160
  };
133
161
  readonly my: {
134
162
  readonly property: "margin";
135
- readonly properties: readonly ["marginTop", "marginBottom"];
163
+ readonly properties: {
164
+ readonly physical: readonly ["marginTop", "marginBottom"];
165
+ readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
166
+ };
167
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
136
168
  readonly scale: "spacing";
137
169
  };
138
170
  readonly mt: {
139
- readonly property: "marginTop";
171
+ readonly property: {
172
+ readonly physical: "marginTop";
173
+ readonly logical: "marginBlockStart";
174
+ };
140
175
  readonly scale: "spacing";
176
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
141
177
  };
142
178
  readonly mb: {
143
- readonly property: "marginBottom";
179
+ readonly property: {
180
+ readonly physical: "marginBottom";
181
+ readonly logical: "marginBlockEnd";
182
+ };
144
183
  readonly scale: "spacing";
184
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
145
185
  };
146
186
  readonly mr: {
147
- readonly property: "marginRight";
187
+ readonly property: {
188
+ readonly physical: "marginRight";
189
+ readonly logical: "marginInlineEnd";
190
+ };
148
191
  readonly scale: "spacing";
192
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
149
193
  };
150
194
  readonly ml: {
151
- readonly property: "marginLeft";
195
+ readonly property: {
196
+ readonly physical: "marginLeft";
197
+ readonly logical: "marginInlineStart";
198
+ };
152
199
  readonly scale: "spacing";
200
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
153
201
  };
154
202
  }>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
155
203
  readonly gridColumn: {
@@ -7,29 +7,53 @@ declare const gridProps: import("@codecademy/variance/dist/types/config").Parser
7
7
  };
8
8
  readonly px: {
9
9
  readonly property: "padding";
10
- readonly properties: readonly ["paddingLeft", "paddingRight"];
10
+ readonly properties: {
11
+ readonly physical: readonly ["paddingLeft", "paddingRight"];
12
+ readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
13
+ };
11
14
  readonly scale: "spacing";
15
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
12
16
  };
13
17
  readonly py: {
14
18
  readonly property: "padding";
15
- readonly properties: readonly ["paddingTop", "paddingBottom"];
19
+ readonly properties: {
20
+ readonly physical: readonly ["paddingTop", "paddingBottom"];
21
+ readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
22
+ };
16
23
  readonly scale: "spacing";
24
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
17
25
  };
18
26
  readonly pt: {
19
- readonly property: "paddingTop";
27
+ readonly property: {
28
+ readonly physical: "paddingTop";
29
+ readonly logical: "paddingBlockStart";
30
+ };
20
31
  readonly scale: "spacing";
32
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
21
33
  };
22
34
  readonly pb: {
23
- readonly property: "paddingBottom";
35
+ readonly property: {
36
+ readonly physical: "paddingBottom";
37
+ readonly logical: "paddingBlockEnd";
38
+ };
24
39
  readonly scale: "spacing";
40
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
25
41
  };
26
42
  readonly pr: {
27
- readonly property: "paddingRight";
43
+ readonly property: {
44
+ readonly physical: "paddingRight";
45
+ readonly logical: "paddingInlineEnd";
46
+ };
28
47
  readonly scale: "spacing";
48
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
29
49
  };
30
50
  readonly pl: {
31
- readonly property: "paddingLeft";
51
+ readonly property: {
52
+ readonly physical: "paddingLeft";
53
+ readonly logical: "paddingInlineStart";
54
+ };
32
55
  readonly scale: "spacing";
56
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
33
57
  };
34
58
  readonly m: {
35
59
  readonly property: "margin";
@@ -37,29 +61,53 @@ declare const gridProps: import("@codecademy/variance/dist/types/config").Parser
37
61
  };
38
62
  readonly mx: {
39
63
  readonly property: "margin";
40
- readonly properties: readonly ["marginLeft", "marginRight"];
64
+ readonly properties: {
65
+ readonly physical: readonly ["marginLeft", "marginRight"];
66
+ readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
67
+ };
68
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
41
69
  readonly scale: "spacing";
42
70
  };
43
71
  readonly my: {
44
72
  readonly property: "margin";
45
- readonly properties: readonly ["marginTop", "marginBottom"];
73
+ readonly properties: {
74
+ readonly physical: readonly ["marginTop", "marginBottom"];
75
+ readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
76
+ };
77
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
46
78
  readonly scale: "spacing";
47
79
  };
48
80
  readonly mt: {
49
- readonly property: "marginTop";
81
+ readonly property: {
82
+ readonly physical: "marginTop";
83
+ readonly logical: "marginBlockStart";
84
+ };
50
85
  readonly scale: "spacing";
86
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
51
87
  };
52
88
  readonly mb: {
53
- readonly property: "marginBottom";
89
+ readonly property: {
90
+ readonly physical: "marginBottom";
91
+ readonly logical: "marginBlockEnd";
92
+ };
54
93
  readonly scale: "spacing";
94
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
55
95
  };
56
96
  readonly mr: {
57
- readonly property: "marginRight";
97
+ readonly property: {
98
+ readonly physical: "marginRight";
99
+ readonly logical: "marginInlineEnd";
100
+ };
58
101
  readonly scale: "spacing";
102
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
59
103
  };
60
104
  readonly ml: {
61
- readonly property: "marginLeft";
105
+ readonly property: {
106
+ readonly physical: "marginLeft";
107
+ readonly logical: "marginInlineStart";
108
+ };
62
109
  readonly scale: "spacing";
110
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
63
111
  };
64
112
  }>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
65
113
  gap: {
@@ -7,29 +7,53 @@ declare const space: import("@codecademy/variance/dist/types/config").Parser<imp
7
7
  };
8
8
  readonly px: {
9
9
  readonly property: "padding";
10
- readonly properties: readonly ["paddingLeft", "paddingRight"];
10
+ readonly properties: {
11
+ readonly physical: readonly ["paddingLeft", "paddingRight"];
12
+ readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
13
+ };
11
14
  readonly scale: "spacing";
15
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
12
16
  };
13
17
  readonly py: {
14
18
  readonly property: "padding";
15
- readonly properties: readonly ["paddingTop", "paddingBottom"];
19
+ readonly properties: {
20
+ readonly physical: readonly ["paddingTop", "paddingBottom"];
21
+ readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
22
+ };
16
23
  readonly scale: "spacing";
24
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
17
25
  };
18
26
  readonly pt: {
19
- readonly property: "paddingTop";
27
+ readonly property: {
28
+ readonly physical: "paddingTop";
29
+ readonly logical: "paddingBlockStart";
30
+ };
20
31
  readonly scale: "spacing";
32
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
21
33
  };
22
34
  readonly pb: {
23
- readonly property: "paddingBottom";
35
+ readonly property: {
36
+ readonly physical: "paddingBottom";
37
+ readonly logical: "paddingBlockEnd";
38
+ };
24
39
  readonly scale: "spacing";
40
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
25
41
  };
26
42
  readonly pr: {
27
- readonly property: "paddingRight";
43
+ readonly property: {
44
+ readonly physical: "paddingRight";
45
+ readonly logical: "paddingInlineEnd";
46
+ };
28
47
  readonly scale: "spacing";
48
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
29
49
  };
30
50
  readonly pl: {
31
- readonly property: "paddingLeft";
51
+ readonly property: {
52
+ readonly physical: "paddingLeft";
53
+ readonly logical: "paddingInlineStart";
54
+ };
32
55
  readonly scale: "spacing";
56
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
33
57
  };
34
58
  readonly m: {
35
59
  readonly property: "margin";
@@ -37,29 +61,53 @@ declare const space: import("@codecademy/variance/dist/types/config").Parser<imp
37
61
  };
38
62
  readonly mx: {
39
63
  readonly property: "margin";
40
- readonly properties: readonly ["marginLeft", "marginRight"];
64
+ readonly properties: {
65
+ readonly physical: readonly ["marginLeft", "marginRight"];
66
+ readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
67
+ };
68
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
41
69
  readonly scale: "spacing";
42
70
  };
43
71
  readonly my: {
44
72
  readonly property: "margin";
45
- readonly properties: readonly ["marginTop", "marginBottom"];
73
+ readonly properties: {
74
+ readonly physical: readonly ["marginTop", "marginBottom"];
75
+ readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
76
+ };
77
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
46
78
  readonly scale: "spacing";
47
79
  };
48
80
  readonly mt: {
49
- readonly property: "marginTop";
81
+ readonly property: {
82
+ readonly physical: "marginTop";
83
+ readonly logical: "marginBlockStart";
84
+ };
50
85
  readonly scale: "spacing";
86
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
51
87
  };
52
88
  readonly mb: {
53
- readonly property: "marginBottom";
89
+ readonly property: {
90
+ readonly physical: "marginBottom";
91
+ readonly logical: "marginBlockEnd";
92
+ };
54
93
  readonly scale: "spacing";
94
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
55
95
  };
56
96
  readonly mr: {
57
- readonly property: "marginRight";
97
+ readonly property: {
98
+ readonly physical: "marginRight";
99
+ readonly logical: "marginInlineEnd";
100
+ };
58
101
  readonly scale: "spacing";
102
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
59
103
  };
60
104
  readonly ml: {
61
- readonly property: "marginLeft";
105
+ readonly property: {
106
+ readonly physical: "marginLeft";
107
+ readonly logical: "marginInlineStart";
108
+ };
62
109
  readonly scale: "spacing";
110
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
63
111
  };
64
112
  }>>, grid: import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
65
113
  readonly gridColumn: {
@@ -833,29 +881,53 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
833
881
  }>;
834
882
  px?: import("@codecademy/variance/dist/types/config").Scale<{
835
883
  readonly property: "padding";
836
- readonly properties: readonly ["paddingLeft", "paddingRight"];
884
+ readonly properties: {
885
+ readonly physical: readonly ["paddingLeft", "paddingRight"];
886
+ readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
887
+ };
837
888
  readonly scale: "spacing";
889
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
838
890
  }>;
839
891
  py?: import("@codecademy/variance/dist/types/config").Scale<{
840
892
  readonly property: "padding";
841
- readonly properties: readonly ["paddingTop", "paddingBottom"];
893
+ readonly properties: {
894
+ readonly physical: readonly ["paddingTop", "paddingBottom"];
895
+ readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
896
+ };
842
897
  readonly scale: "spacing";
898
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
843
899
  }>;
844
900
  pt?: import("@codecademy/variance/dist/types/config").Scale<{
845
- readonly property: "paddingTop";
901
+ readonly property: {
902
+ readonly physical: "paddingTop";
903
+ readonly logical: "paddingBlockStart";
904
+ };
846
905
  readonly scale: "spacing";
906
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
847
907
  }>;
848
908
  pb?: import("@codecademy/variance/dist/types/config").Scale<{
849
- readonly property: "paddingBottom";
909
+ readonly property: {
910
+ readonly physical: "paddingBottom";
911
+ readonly logical: "paddingBlockEnd";
912
+ };
850
913
  readonly scale: "spacing";
914
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
851
915
  }>;
852
916
  pr?: import("@codecademy/variance/dist/types/config").Scale<{
853
- readonly property: "paddingRight";
917
+ readonly property: {
918
+ readonly physical: "paddingRight";
919
+ readonly logical: "paddingInlineEnd";
920
+ };
854
921
  readonly scale: "spacing";
922
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
855
923
  }>;
856
924
  pl?: import("@codecademy/variance/dist/types/config").Scale<{
857
- readonly property: "paddingLeft";
925
+ readonly property: {
926
+ readonly physical: "paddingLeft";
927
+ readonly logical: "paddingInlineStart";
928
+ };
858
929
  readonly scale: "spacing";
930
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
859
931
  }>;
860
932
  m?: import("@codecademy/variance/dist/types/config").Scale<{
861
933
  readonly property: "margin";
@@ -863,29 +935,53 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
863
935
  }>;
864
936
  mx?: import("@codecademy/variance/dist/types/config").Scale<{
865
937
  readonly property: "margin";
866
- readonly properties: readonly ["marginLeft", "marginRight"];
938
+ readonly properties: {
939
+ readonly physical: readonly ["marginLeft", "marginRight"];
940
+ readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
941
+ };
942
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
867
943
  readonly scale: "spacing";
868
944
  }>;
869
945
  my?: import("@codecademy/variance/dist/types/config").Scale<{
870
946
  readonly property: "margin";
871
- readonly properties: readonly ["marginTop", "marginBottom"];
947
+ readonly properties: {
948
+ readonly physical: readonly ["marginTop", "marginBottom"];
949
+ readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
950
+ };
951
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
872
952
  readonly scale: "spacing";
873
953
  }>;
874
954
  mt?: import("@codecademy/variance/dist/types/config").Scale<{
875
- readonly property: "marginTop";
955
+ readonly property: {
956
+ readonly physical: "marginTop";
957
+ readonly logical: "marginBlockStart";
958
+ };
876
959
  readonly scale: "spacing";
960
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
877
961
  }>;
878
962
  mb?: import("@codecademy/variance/dist/types/config").Scale<{
879
- readonly property: "marginBottom";
963
+ readonly property: {
964
+ readonly physical: "marginBottom";
965
+ readonly logical: "marginBlockEnd";
966
+ };
880
967
  readonly scale: "spacing";
968
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
881
969
  }>;
882
970
  mr?: import("@codecademy/variance/dist/types/config").Scale<{
883
- readonly property: "marginRight";
971
+ readonly property: {
972
+ readonly physical: "marginRight";
973
+ readonly logical: "marginInlineEnd";
974
+ };
884
975
  readonly scale: "spacing";
976
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
885
977
  }>;
886
978
  ml?: import("@codecademy/variance/dist/types/config").Scale<{
887
- readonly property: "marginLeft";
979
+ readonly property: {
980
+ readonly physical: "marginLeft";
981
+ readonly logical: "marginInlineStart";
982
+ };
888
983
  readonly scale: "spacing";
984
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
889
985
  }>;
890
986
  borderX?: import("@codecademy/variance/dist/types/config").Scale<{
891
987
  readonly property: "border";