@codecademy/gamut 67.6.4-alpha.c5c6be.0 → 67.6.4-alpha.d8f776.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 +30 -6
- package/dist/Badge/index.d.ts +30 -6
- package/dist/Box/props.d.ts +30 -6
- package/dist/Button/shared/styles.d.ts +30 -6
- package/dist/Card/elements.d.ts +90 -19
- package/dist/Form/elements/Form.d.ts +30 -6
- package/dist/Layout/Column.d.ts +30 -6
- package/dist/Layout/LayoutGrid.d.ts +30 -6
- package/dist/List/elements.d.ts +60 -13
- package/dist/Menu/elements.d.ts +30 -6
- package/dist/Pagination/AnimatedPaginationButtons.d.ts +30 -7
- package/dist/Pagination/utils.d.ts +30 -6
- package/dist/Tabs/props.d.ts +30 -6
- package/dist/Tag/types.d.ts +30 -6
- package/dist/Tip/__tests__/helpers.d.ts +2 -0
- package/dist/Toggle/elements.d.ts +60 -12
- package/dist/Typography/Text.d.ts +30 -6
- package/package.json +7 -7
package/dist/Anchor/index.d.ts
CHANGED
|
@@ -131,29 +131,53 @@ declare const anchorProps: import("@codecademy/variance/dist/types/config").Pars
|
|
|
131
131
|
};
|
|
132
132
|
readonly mx: {
|
|
133
133
|
readonly property: "margin";
|
|
134
|
-
readonly properties:
|
|
134
|
+
readonly properties: {
|
|
135
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
136
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
137
|
+
};
|
|
138
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
135
139
|
readonly scale: "spacing";
|
|
136
140
|
};
|
|
137
141
|
readonly my: {
|
|
138
142
|
readonly property: "margin";
|
|
139
|
-
readonly properties:
|
|
143
|
+
readonly properties: {
|
|
144
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
145
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
146
|
+
};
|
|
147
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
140
148
|
readonly scale: "spacing";
|
|
141
149
|
};
|
|
142
150
|
readonly mt: {
|
|
143
|
-
readonly property:
|
|
151
|
+
readonly property: {
|
|
152
|
+
readonly physical: "marginTop";
|
|
153
|
+
readonly logical: "marginBlockStart";
|
|
154
|
+
};
|
|
144
155
|
readonly scale: "spacing";
|
|
156
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
145
157
|
};
|
|
146
158
|
readonly mb: {
|
|
147
|
-
readonly property:
|
|
159
|
+
readonly property: {
|
|
160
|
+
readonly physical: "marginBottom";
|
|
161
|
+
readonly logical: "marginBlockEnd";
|
|
162
|
+
};
|
|
148
163
|
readonly scale: "spacing";
|
|
164
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
149
165
|
};
|
|
150
166
|
readonly mr: {
|
|
151
|
-
readonly property:
|
|
167
|
+
readonly property: {
|
|
168
|
+
readonly physical: "marginRight";
|
|
169
|
+
readonly logical: "marginInlineEnd";
|
|
170
|
+
};
|
|
152
171
|
readonly scale: "spacing";
|
|
172
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
153
173
|
};
|
|
154
174
|
readonly ml: {
|
|
155
|
-
readonly property:
|
|
175
|
+
readonly property: {
|
|
176
|
+
readonly physical: "marginLeft";
|
|
177
|
+
readonly logical: "marginInlineStart";
|
|
178
|
+
};
|
|
156
179
|
readonly scale: "spacing";
|
|
180
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
157
181
|
};
|
|
158
182
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
159
183
|
readonly fontFamily: {
|
package/dist/Badge/index.d.ts
CHANGED
|
@@ -45,29 +45,53 @@ declare const badgeProps: import("@codecademy/variance/dist/types/config").Parse
|
|
|
45
45
|
};
|
|
46
46
|
readonly mx: {
|
|
47
47
|
readonly property: "margin";
|
|
48
|
-
readonly properties:
|
|
48
|
+
readonly properties: {
|
|
49
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
50
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
51
|
+
};
|
|
52
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
49
53
|
readonly scale: "spacing";
|
|
50
54
|
};
|
|
51
55
|
readonly my: {
|
|
52
56
|
readonly property: "margin";
|
|
53
|
-
readonly properties:
|
|
57
|
+
readonly properties: {
|
|
58
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
59
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
60
|
+
};
|
|
61
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
54
62
|
readonly scale: "spacing";
|
|
55
63
|
};
|
|
56
64
|
readonly mt: {
|
|
57
|
-
readonly property:
|
|
65
|
+
readonly property: {
|
|
66
|
+
readonly physical: "marginTop";
|
|
67
|
+
readonly logical: "marginBlockStart";
|
|
68
|
+
};
|
|
58
69
|
readonly scale: "spacing";
|
|
70
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
59
71
|
};
|
|
60
72
|
readonly mb: {
|
|
61
|
-
readonly property:
|
|
73
|
+
readonly property: {
|
|
74
|
+
readonly physical: "marginBottom";
|
|
75
|
+
readonly logical: "marginBlockEnd";
|
|
76
|
+
};
|
|
62
77
|
readonly scale: "spacing";
|
|
78
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
63
79
|
};
|
|
64
80
|
readonly mr: {
|
|
65
|
-
readonly property:
|
|
81
|
+
readonly property: {
|
|
82
|
+
readonly physical: "marginRight";
|
|
83
|
+
readonly logical: "marginInlineEnd";
|
|
84
|
+
};
|
|
66
85
|
readonly scale: "spacing";
|
|
86
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
67
87
|
};
|
|
68
88
|
readonly ml: {
|
|
69
|
-
readonly property:
|
|
89
|
+
readonly property: {
|
|
90
|
+
readonly physical: "marginLeft";
|
|
91
|
+
readonly logical: "marginInlineStart";
|
|
92
|
+
};
|
|
70
93
|
readonly scale: "spacing";
|
|
94
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
71
95
|
};
|
|
72
96
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
73
97
|
readonly flexBasis: {
|
package/dist/Box/props.d.ts
CHANGED
|
@@ -37,29 +37,53 @@ export declare const boxProps: import("@codecademy/variance/dist/types/config").
|
|
|
37
37
|
};
|
|
38
38
|
readonly mx: {
|
|
39
39
|
readonly property: "margin";
|
|
40
|
-
readonly properties:
|
|
40
|
+
readonly properties: {
|
|
41
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
42
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
43
|
+
};
|
|
44
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
41
45
|
readonly scale: "spacing";
|
|
42
46
|
};
|
|
43
47
|
readonly my: {
|
|
44
48
|
readonly property: "margin";
|
|
45
|
-
readonly properties:
|
|
49
|
+
readonly properties: {
|
|
50
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
51
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
52
|
+
};
|
|
53
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
46
54
|
readonly scale: "spacing";
|
|
47
55
|
};
|
|
48
56
|
readonly mt: {
|
|
49
|
-
readonly property:
|
|
57
|
+
readonly property: {
|
|
58
|
+
readonly physical: "marginTop";
|
|
59
|
+
readonly logical: "marginBlockStart";
|
|
60
|
+
};
|
|
50
61
|
readonly scale: "spacing";
|
|
62
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
51
63
|
};
|
|
52
64
|
readonly mb: {
|
|
53
|
-
readonly property:
|
|
65
|
+
readonly property: {
|
|
66
|
+
readonly physical: "marginBottom";
|
|
67
|
+
readonly logical: "marginBlockEnd";
|
|
68
|
+
};
|
|
54
69
|
readonly scale: "spacing";
|
|
70
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
55
71
|
};
|
|
56
72
|
readonly mr: {
|
|
57
|
-
readonly property:
|
|
73
|
+
readonly property: {
|
|
74
|
+
readonly physical: "marginRight";
|
|
75
|
+
readonly logical: "marginInlineEnd";
|
|
76
|
+
};
|
|
58
77
|
readonly scale: "spacing";
|
|
78
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
59
79
|
};
|
|
60
80
|
readonly ml: {
|
|
61
|
-
readonly property:
|
|
81
|
+
readonly property: {
|
|
82
|
+
readonly physical: "marginLeft";
|
|
83
|
+
readonly logical: "marginInlineStart";
|
|
84
|
+
};
|
|
62
85
|
readonly scale: "spacing";
|
|
86
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
63
87
|
};
|
|
64
88
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
65
89
|
readonly border: {
|
|
@@ -159,29 +159,53 @@ export declare const buttonProps: import("@codecademy/variance/dist/types/config
|
|
|
159
159
|
};
|
|
160
160
|
readonly mx: {
|
|
161
161
|
readonly property: "margin";
|
|
162
|
-
readonly properties:
|
|
162
|
+
readonly properties: {
|
|
163
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
164
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
165
|
+
};
|
|
166
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
163
167
|
readonly scale: "spacing";
|
|
164
168
|
};
|
|
165
169
|
readonly my: {
|
|
166
170
|
readonly property: "margin";
|
|
167
|
-
readonly properties:
|
|
171
|
+
readonly properties: {
|
|
172
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
173
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
174
|
+
};
|
|
175
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
168
176
|
readonly scale: "spacing";
|
|
169
177
|
};
|
|
170
178
|
readonly mt: {
|
|
171
|
-
readonly property:
|
|
179
|
+
readonly property: {
|
|
180
|
+
readonly physical: "marginTop";
|
|
181
|
+
readonly logical: "marginBlockStart";
|
|
182
|
+
};
|
|
172
183
|
readonly scale: "spacing";
|
|
184
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
173
185
|
};
|
|
174
186
|
readonly mb: {
|
|
175
|
-
readonly property:
|
|
187
|
+
readonly property: {
|
|
188
|
+
readonly physical: "marginBottom";
|
|
189
|
+
readonly logical: "marginBlockEnd";
|
|
190
|
+
};
|
|
176
191
|
readonly scale: "spacing";
|
|
192
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
177
193
|
};
|
|
178
194
|
readonly mr: {
|
|
179
|
-
readonly property:
|
|
195
|
+
readonly property: {
|
|
196
|
+
readonly physical: "marginRight";
|
|
197
|
+
readonly logical: "marginInlineEnd";
|
|
198
|
+
};
|
|
180
199
|
readonly scale: "spacing";
|
|
200
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
181
201
|
};
|
|
182
202
|
readonly ml: {
|
|
183
|
-
readonly property:
|
|
203
|
+
readonly property: {
|
|
204
|
+
readonly physical: "marginLeft";
|
|
205
|
+
readonly logical: "marginInlineStart";
|
|
206
|
+
};
|
|
184
207
|
readonly scale: "spacing";
|
|
208
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
185
209
|
};
|
|
186
210
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
187
211
|
readonly border: {
|
package/dist/Card/elements.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
/// <reference types="react" />
|
|
3
2
|
import { CardWrapperProps } from './types';
|
|
4
3
|
export declare const MotionBox: import("react").ComponentType<{
|
|
5
4
|
color?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -531,29 +530,53 @@ export declare const MotionBox: import("react").ComponentType<{
|
|
|
531
530
|
}>;
|
|
532
531
|
mx?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
533
532
|
readonly property: "margin";
|
|
534
|
-
readonly properties:
|
|
533
|
+
readonly properties: {
|
|
534
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
535
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
536
|
+
};
|
|
537
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
535
538
|
readonly scale: "spacing";
|
|
536
539
|
}>;
|
|
537
540
|
my?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
538
541
|
readonly property: "margin";
|
|
539
|
-
readonly properties:
|
|
542
|
+
readonly properties: {
|
|
543
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
544
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
545
|
+
};
|
|
546
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
540
547
|
readonly scale: "spacing";
|
|
541
548
|
}>;
|
|
542
549
|
mt?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
543
|
-
readonly property:
|
|
550
|
+
readonly property: {
|
|
551
|
+
readonly physical: "marginTop";
|
|
552
|
+
readonly logical: "marginBlockStart";
|
|
553
|
+
};
|
|
544
554
|
readonly scale: "spacing";
|
|
555
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
545
556
|
}>;
|
|
546
557
|
mb?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
547
|
-
readonly property:
|
|
558
|
+
readonly property: {
|
|
559
|
+
readonly physical: "marginBottom";
|
|
560
|
+
readonly logical: "marginBlockEnd";
|
|
561
|
+
};
|
|
548
562
|
readonly scale: "spacing";
|
|
563
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
549
564
|
}>;
|
|
550
565
|
mr?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
551
|
-
readonly property:
|
|
566
|
+
readonly property: {
|
|
567
|
+
readonly physical: "marginRight";
|
|
568
|
+
readonly logical: "marginInlineEnd";
|
|
569
|
+
};
|
|
552
570
|
readonly scale: "spacing";
|
|
571
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
553
572
|
}>;
|
|
554
573
|
ml?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
555
|
-
readonly property:
|
|
574
|
+
readonly property: {
|
|
575
|
+
readonly physical: "marginLeft";
|
|
576
|
+
readonly logical: "marginInlineStart";
|
|
577
|
+
};
|
|
556
578
|
readonly scale: "spacing";
|
|
579
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
557
580
|
}>;
|
|
558
581
|
borderX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
559
582
|
readonly property: "border";
|
|
@@ -1216,29 +1239,53 @@ export declare const DynamicCardWrapper: import("@emotion/styled").StyledCompone
|
|
|
1216
1239
|
}>;
|
|
1217
1240
|
mx?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1218
1241
|
readonly property: "margin";
|
|
1219
|
-
readonly properties:
|
|
1242
|
+
readonly properties: {
|
|
1243
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
1244
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
1245
|
+
};
|
|
1246
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1220
1247
|
readonly scale: "spacing";
|
|
1221
1248
|
}>;
|
|
1222
1249
|
my?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1223
1250
|
readonly property: "margin";
|
|
1224
|
-
readonly properties:
|
|
1251
|
+
readonly properties: {
|
|
1252
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
1253
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
1254
|
+
};
|
|
1255
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1225
1256
|
readonly scale: "spacing";
|
|
1226
1257
|
}>;
|
|
1227
1258
|
mt?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1228
|
-
readonly property:
|
|
1259
|
+
readonly property: {
|
|
1260
|
+
readonly physical: "marginTop";
|
|
1261
|
+
readonly logical: "marginBlockStart";
|
|
1262
|
+
};
|
|
1229
1263
|
readonly scale: "spacing";
|
|
1264
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1230
1265
|
}>;
|
|
1231
1266
|
mb?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1232
|
-
readonly property:
|
|
1267
|
+
readonly property: {
|
|
1268
|
+
readonly physical: "marginBottom";
|
|
1269
|
+
readonly logical: "marginBlockEnd";
|
|
1270
|
+
};
|
|
1233
1271
|
readonly scale: "spacing";
|
|
1272
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1234
1273
|
}>;
|
|
1235
1274
|
mr?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1236
|
-
readonly property:
|
|
1275
|
+
readonly property: {
|
|
1276
|
+
readonly physical: "marginRight";
|
|
1277
|
+
readonly logical: "marginInlineEnd";
|
|
1278
|
+
};
|
|
1237
1279
|
readonly scale: "spacing";
|
|
1280
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1238
1281
|
}>;
|
|
1239
1282
|
ml?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1240
|
-
readonly property:
|
|
1283
|
+
readonly property: {
|
|
1284
|
+
readonly physical: "marginLeft";
|
|
1285
|
+
readonly logical: "marginInlineStart";
|
|
1286
|
+
};
|
|
1241
1287
|
readonly scale: "spacing";
|
|
1288
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1242
1289
|
}>;
|
|
1243
1290
|
borderX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1244
1291
|
readonly property: "border";
|
|
@@ -1885,29 +1932,53 @@ export declare const StaticCardWrapper: import("@emotion/styled").StyledComponen
|
|
|
1885
1932
|
}>;
|
|
1886
1933
|
mx?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1887
1934
|
readonly property: "margin";
|
|
1888
|
-
readonly properties:
|
|
1935
|
+
readonly properties: {
|
|
1936
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
1937
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
1938
|
+
};
|
|
1939
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1889
1940
|
readonly scale: "spacing";
|
|
1890
1941
|
}>;
|
|
1891
1942
|
my?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1892
1943
|
readonly property: "margin";
|
|
1893
|
-
readonly properties:
|
|
1944
|
+
readonly properties: {
|
|
1945
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
1946
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
1947
|
+
};
|
|
1948
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1894
1949
|
readonly scale: "spacing";
|
|
1895
1950
|
}>;
|
|
1896
1951
|
mt?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1897
|
-
readonly property:
|
|
1952
|
+
readonly property: {
|
|
1953
|
+
readonly physical: "marginTop";
|
|
1954
|
+
readonly logical: "marginBlockStart";
|
|
1955
|
+
};
|
|
1898
1956
|
readonly scale: "spacing";
|
|
1957
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1899
1958
|
}>;
|
|
1900
1959
|
mb?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1901
|
-
readonly property:
|
|
1960
|
+
readonly property: {
|
|
1961
|
+
readonly physical: "marginBottom";
|
|
1962
|
+
readonly logical: "marginBlockEnd";
|
|
1963
|
+
};
|
|
1902
1964
|
readonly scale: "spacing";
|
|
1965
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1903
1966
|
}>;
|
|
1904
1967
|
mr?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1905
|
-
readonly property:
|
|
1968
|
+
readonly property: {
|
|
1969
|
+
readonly physical: "marginRight";
|
|
1970
|
+
readonly logical: "marginInlineEnd";
|
|
1971
|
+
};
|
|
1906
1972
|
readonly scale: "spacing";
|
|
1973
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1907
1974
|
}>;
|
|
1908
1975
|
ml?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1909
|
-
readonly property:
|
|
1976
|
+
readonly property: {
|
|
1977
|
+
readonly physical: "marginLeft";
|
|
1978
|
+
readonly logical: "marginInlineStart";
|
|
1979
|
+
};
|
|
1910
1980
|
readonly scale: "spacing";
|
|
1981
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1911
1982
|
}>;
|
|
1912
1983
|
borderX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1913
1984
|
readonly property: "border";
|
|
@@ -198,29 +198,53 @@ declare const StyledForm: import("@emotion/styled").StyledComponent<{
|
|
|
198
198
|
}>;
|
|
199
199
|
mx?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
200
200
|
readonly property: "margin";
|
|
201
|
-
readonly properties:
|
|
201
|
+
readonly properties: {
|
|
202
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
203
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
204
|
+
};
|
|
205
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
202
206
|
readonly scale: "spacing";
|
|
203
207
|
}>;
|
|
204
208
|
my?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
205
209
|
readonly property: "margin";
|
|
206
|
-
readonly properties:
|
|
210
|
+
readonly properties: {
|
|
211
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
212
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
213
|
+
};
|
|
214
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
207
215
|
readonly scale: "spacing";
|
|
208
216
|
}>;
|
|
209
217
|
mt?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
210
|
-
readonly property:
|
|
218
|
+
readonly property: {
|
|
219
|
+
readonly physical: "marginTop";
|
|
220
|
+
readonly logical: "marginBlockStart";
|
|
221
|
+
};
|
|
211
222
|
readonly scale: "spacing";
|
|
223
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
212
224
|
}>;
|
|
213
225
|
mb?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
214
|
-
readonly property:
|
|
226
|
+
readonly property: {
|
|
227
|
+
readonly physical: "marginBottom";
|
|
228
|
+
readonly logical: "marginBlockEnd";
|
|
229
|
+
};
|
|
215
230
|
readonly scale: "spacing";
|
|
231
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
216
232
|
}>;
|
|
217
233
|
mr?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
218
|
-
readonly property:
|
|
234
|
+
readonly property: {
|
|
235
|
+
readonly physical: "marginRight";
|
|
236
|
+
readonly logical: "marginInlineEnd";
|
|
237
|
+
};
|
|
219
238
|
readonly scale: "spacing";
|
|
239
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
220
240
|
}>;
|
|
221
241
|
ml?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
222
|
-
readonly property:
|
|
242
|
+
readonly property: {
|
|
243
|
+
readonly physical: "marginLeft";
|
|
244
|
+
readonly logical: "marginInlineStart";
|
|
245
|
+
};
|
|
223
246
|
readonly scale: "spacing";
|
|
247
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
224
248
|
}>;
|
|
225
249
|
borderX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
226
250
|
readonly property: "border";
|
package/dist/Layout/Column.d.ts
CHANGED
|
@@ -127,29 +127,53 @@ declare const columnProps: import("@codecademy/variance/dist/types/config").Pars
|
|
|
127
127
|
};
|
|
128
128
|
readonly mx: {
|
|
129
129
|
readonly property: "margin";
|
|
130
|
-
readonly properties:
|
|
130
|
+
readonly properties: {
|
|
131
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
132
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
133
|
+
};
|
|
134
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
131
135
|
readonly scale: "spacing";
|
|
132
136
|
};
|
|
133
137
|
readonly my: {
|
|
134
138
|
readonly property: "margin";
|
|
135
|
-
readonly properties:
|
|
139
|
+
readonly properties: {
|
|
140
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
141
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
142
|
+
};
|
|
143
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
136
144
|
readonly scale: "spacing";
|
|
137
145
|
};
|
|
138
146
|
readonly mt: {
|
|
139
|
-
readonly property:
|
|
147
|
+
readonly property: {
|
|
148
|
+
readonly physical: "marginTop";
|
|
149
|
+
readonly logical: "marginBlockStart";
|
|
150
|
+
};
|
|
140
151
|
readonly scale: "spacing";
|
|
152
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
141
153
|
};
|
|
142
154
|
readonly mb: {
|
|
143
|
-
readonly property:
|
|
155
|
+
readonly property: {
|
|
156
|
+
readonly physical: "marginBottom";
|
|
157
|
+
readonly logical: "marginBlockEnd";
|
|
158
|
+
};
|
|
144
159
|
readonly scale: "spacing";
|
|
160
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
145
161
|
};
|
|
146
162
|
readonly mr: {
|
|
147
|
-
readonly property:
|
|
163
|
+
readonly property: {
|
|
164
|
+
readonly physical: "marginRight";
|
|
165
|
+
readonly logical: "marginInlineEnd";
|
|
166
|
+
};
|
|
148
167
|
readonly scale: "spacing";
|
|
168
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
149
169
|
};
|
|
150
170
|
readonly ml: {
|
|
151
|
-
readonly property:
|
|
171
|
+
readonly property: {
|
|
172
|
+
readonly physical: "marginLeft";
|
|
173
|
+
readonly logical: "marginInlineStart";
|
|
174
|
+
};
|
|
152
175
|
readonly scale: "spacing";
|
|
176
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
153
177
|
};
|
|
154
178
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
155
179
|
readonly gridColumn: {
|
|
@@ -37,29 +37,53 @@ declare const gridProps: import("@codecademy/variance/dist/types/config").Parser
|
|
|
37
37
|
};
|
|
38
38
|
readonly mx: {
|
|
39
39
|
readonly property: "margin";
|
|
40
|
-
readonly properties:
|
|
40
|
+
readonly properties: {
|
|
41
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
42
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
43
|
+
};
|
|
44
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
41
45
|
readonly scale: "spacing";
|
|
42
46
|
};
|
|
43
47
|
readonly my: {
|
|
44
48
|
readonly property: "margin";
|
|
45
|
-
readonly properties:
|
|
49
|
+
readonly properties: {
|
|
50
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
51
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
52
|
+
};
|
|
53
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
46
54
|
readonly scale: "spacing";
|
|
47
55
|
};
|
|
48
56
|
readonly mt: {
|
|
49
|
-
readonly property:
|
|
57
|
+
readonly property: {
|
|
58
|
+
readonly physical: "marginTop";
|
|
59
|
+
readonly logical: "marginBlockStart";
|
|
60
|
+
};
|
|
50
61
|
readonly scale: "spacing";
|
|
62
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
51
63
|
};
|
|
52
64
|
readonly mb: {
|
|
53
|
-
readonly property:
|
|
65
|
+
readonly property: {
|
|
66
|
+
readonly physical: "marginBottom";
|
|
67
|
+
readonly logical: "marginBlockEnd";
|
|
68
|
+
};
|
|
54
69
|
readonly scale: "spacing";
|
|
70
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
55
71
|
};
|
|
56
72
|
readonly mr: {
|
|
57
|
-
readonly property:
|
|
73
|
+
readonly property: {
|
|
74
|
+
readonly physical: "marginRight";
|
|
75
|
+
readonly logical: "marginInlineEnd";
|
|
76
|
+
};
|
|
58
77
|
readonly scale: "spacing";
|
|
78
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
59
79
|
};
|
|
60
80
|
readonly ml: {
|
|
61
|
-
readonly property:
|
|
81
|
+
readonly property: {
|
|
82
|
+
readonly physical: "marginLeft";
|
|
83
|
+
readonly logical: "marginInlineStart";
|
|
84
|
+
};
|
|
62
85
|
readonly scale: "spacing";
|
|
86
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
63
87
|
};
|
|
64
88
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
65
89
|
gap: {
|
package/dist/List/elements.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
/// <reference types="react" />
|
|
3
2
|
import { StyleProps } from '@codecademy/variance';
|
|
4
3
|
declare const space: import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
5
4
|
readonly p: {
|
|
@@ -38,29 +37,53 @@ declare const space: import("@codecademy/variance/dist/types/config").Parser<imp
|
|
|
38
37
|
};
|
|
39
38
|
readonly mx: {
|
|
40
39
|
readonly property: "margin";
|
|
41
|
-
readonly properties:
|
|
40
|
+
readonly properties: {
|
|
41
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
42
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
43
|
+
};
|
|
44
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
42
45
|
readonly scale: "spacing";
|
|
43
46
|
};
|
|
44
47
|
readonly my: {
|
|
45
48
|
readonly property: "margin";
|
|
46
|
-
readonly properties:
|
|
49
|
+
readonly properties: {
|
|
50
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
51
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
52
|
+
};
|
|
53
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
47
54
|
readonly scale: "spacing";
|
|
48
55
|
};
|
|
49
56
|
readonly mt: {
|
|
50
|
-
readonly property:
|
|
57
|
+
readonly property: {
|
|
58
|
+
readonly physical: "marginTop";
|
|
59
|
+
readonly logical: "marginBlockStart";
|
|
60
|
+
};
|
|
51
61
|
readonly scale: "spacing";
|
|
62
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
52
63
|
};
|
|
53
64
|
readonly mb: {
|
|
54
|
-
readonly property:
|
|
65
|
+
readonly property: {
|
|
66
|
+
readonly physical: "marginBottom";
|
|
67
|
+
readonly logical: "marginBlockEnd";
|
|
68
|
+
};
|
|
55
69
|
readonly scale: "spacing";
|
|
70
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
56
71
|
};
|
|
57
72
|
readonly mr: {
|
|
58
|
-
readonly property:
|
|
73
|
+
readonly property: {
|
|
74
|
+
readonly physical: "marginRight";
|
|
75
|
+
readonly logical: "marginInlineEnd";
|
|
76
|
+
};
|
|
59
77
|
readonly scale: "spacing";
|
|
78
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
60
79
|
};
|
|
61
80
|
readonly ml: {
|
|
62
|
-
readonly property:
|
|
81
|
+
readonly property: {
|
|
82
|
+
readonly physical: "marginLeft";
|
|
83
|
+
readonly logical: "marginInlineStart";
|
|
84
|
+
};
|
|
63
85
|
readonly scale: "spacing";
|
|
86
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
64
87
|
};
|
|
65
88
|
}>>, grid: import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
66
89
|
readonly gridColumn: {
|
|
@@ -864,29 +887,53 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
|
|
|
864
887
|
}>;
|
|
865
888
|
mx?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
866
889
|
readonly property: "margin";
|
|
867
|
-
readonly properties:
|
|
890
|
+
readonly properties: {
|
|
891
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
892
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
893
|
+
};
|
|
894
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
868
895
|
readonly scale: "spacing";
|
|
869
896
|
}>;
|
|
870
897
|
my?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
871
898
|
readonly property: "margin";
|
|
872
|
-
readonly properties:
|
|
899
|
+
readonly properties: {
|
|
900
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
901
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
902
|
+
};
|
|
903
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
873
904
|
readonly scale: "spacing";
|
|
874
905
|
}>;
|
|
875
906
|
mt?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
876
|
-
readonly property:
|
|
907
|
+
readonly property: {
|
|
908
|
+
readonly physical: "marginTop";
|
|
909
|
+
readonly logical: "marginBlockStart";
|
|
910
|
+
};
|
|
877
911
|
readonly scale: "spacing";
|
|
912
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
878
913
|
}>;
|
|
879
914
|
mb?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
880
|
-
readonly property:
|
|
915
|
+
readonly property: {
|
|
916
|
+
readonly physical: "marginBottom";
|
|
917
|
+
readonly logical: "marginBlockEnd";
|
|
918
|
+
};
|
|
881
919
|
readonly scale: "spacing";
|
|
920
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
882
921
|
}>;
|
|
883
922
|
mr?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
884
|
-
readonly property:
|
|
923
|
+
readonly property: {
|
|
924
|
+
readonly physical: "marginRight";
|
|
925
|
+
readonly logical: "marginInlineEnd";
|
|
926
|
+
};
|
|
885
927
|
readonly scale: "spacing";
|
|
928
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
886
929
|
}>;
|
|
887
930
|
ml?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
888
|
-
readonly property:
|
|
931
|
+
readonly property: {
|
|
932
|
+
readonly physical: "marginLeft";
|
|
933
|
+
readonly logical: "marginInlineStart";
|
|
934
|
+
};
|
|
889
935
|
readonly scale: "spacing";
|
|
936
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
890
937
|
}>;
|
|
891
938
|
borderX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
892
939
|
readonly property: "border";
|
package/dist/Menu/elements.d.ts
CHANGED
|
@@ -163,29 +163,53 @@ declare const listProps: import("@codecademy/variance/dist/types/config").Parser
|
|
|
163
163
|
};
|
|
164
164
|
readonly mx: {
|
|
165
165
|
readonly property: "margin";
|
|
166
|
-
readonly properties:
|
|
166
|
+
readonly properties: {
|
|
167
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
168
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
169
|
+
};
|
|
170
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
167
171
|
readonly scale: "spacing";
|
|
168
172
|
};
|
|
169
173
|
readonly my: {
|
|
170
174
|
readonly property: "margin";
|
|
171
|
-
readonly properties:
|
|
175
|
+
readonly properties: {
|
|
176
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
177
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
178
|
+
};
|
|
179
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
172
180
|
readonly scale: "spacing";
|
|
173
181
|
};
|
|
174
182
|
readonly mt: {
|
|
175
|
-
readonly property:
|
|
183
|
+
readonly property: {
|
|
184
|
+
readonly physical: "marginTop";
|
|
185
|
+
readonly logical: "marginBlockStart";
|
|
186
|
+
};
|
|
176
187
|
readonly scale: "spacing";
|
|
188
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
177
189
|
};
|
|
178
190
|
readonly mb: {
|
|
179
|
-
readonly property:
|
|
191
|
+
readonly property: {
|
|
192
|
+
readonly physical: "marginBottom";
|
|
193
|
+
readonly logical: "marginBlockEnd";
|
|
194
|
+
};
|
|
180
195
|
readonly scale: "spacing";
|
|
196
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
181
197
|
};
|
|
182
198
|
readonly mr: {
|
|
183
|
-
readonly property:
|
|
199
|
+
readonly property: {
|
|
200
|
+
readonly physical: "marginRight";
|
|
201
|
+
readonly logical: "marginInlineEnd";
|
|
202
|
+
};
|
|
184
203
|
readonly scale: "spacing";
|
|
204
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
185
205
|
};
|
|
186
206
|
readonly ml: {
|
|
187
|
-
readonly property:
|
|
207
|
+
readonly property: {
|
|
208
|
+
readonly physical: "marginLeft";
|
|
209
|
+
readonly logical: "marginInlineStart";
|
|
210
|
+
};
|
|
188
211
|
readonly scale: "spacing";
|
|
212
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
189
213
|
};
|
|
190
214
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
191
215
|
readonly position: {
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
/// <reference types="react" />
|
|
3
2
|
export declare const AnimatedFadeButton: (props: {
|
|
4
3
|
mode?: "dark" | "light" | undefined;
|
|
5
4
|
border?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -448,29 +447,53 @@ export declare const AnimatedFadeButton: (props: {
|
|
|
448
447
|
}>;
|
|
449
448
|
mx?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
450
449
|
readonly property: "margin";
|
|
451
|
-
readonly properties:
|
|
450
|
+
readonly properties: {
|
|
451
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
452
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
453
|
+
};
|
|
454
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
452
455
|
readonly scale: "spacing";
|
|
453
456
|
}>;
|
|
454
457
|
my?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
455
458
|
readonly property: "margin";
|
|
456
|
-
readonly properties:
|
|
459
|
+
readonly properties: {
|
|
460
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
461
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
462
|
+
};
|
|
463
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
457
464
|
readonly scale: "spacing";
|
|
458
465
|
}>;
|
|
459
466
|
mt?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
460
|
-
readonly property:
|
|
467
|
+
readonly property: {
|
|
468
|
+
readonly physical: "marginTop";
|
|
469
|
+
readonly logical: "marginBlockStart";
|
|
470
|
+
};
|
|
461
471
|
readonly scale: "spacing";
|
|
472
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
462
473
|
}>;
|
|
463
474
|
mb?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
464
|
-
readonly property:
|
|
475
|
+
readonly property: {
|
|
476
|
+
readonly physical: "marginBottom";
|
|
477
|
+
readonly logical: "marginBlockEnd";
|
|
478
|
+
};
|
|
465
479
|
readonly scale: "spacing";
|
|
480
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
466
481
|
}>;
|
|
467
482
|
mr?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
468
|
-
readonly property:
|
|
483
|
+
readonly property: {
|
|
484
|
+
readonly physical: "marginRight";
|
|
485
|
+
readonly logical: "marginInlineEnd";
|
|
486
|
+
};
|
|
469
487
|
readonly scale: "spacing";
|
|
488
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
470
489
|
}>;
|
|
471
490
|
ml?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
472
|
-
readonly property:
|
|
491
|
+
readonly property: {
|
|
492
|
+
readonly physical: "marginLeft";
|
|
493
|
+
readonly logical: "marginInlineStart";
|
|
494
|
+
};
|
|
473
495
|
readonly scale: "spacing";
|
|
496
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
474
497
|
}>;
|
|
475
498
|
borderX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
476
499
|
readonly property: "border";
|
|
@@ -460,29 +460,53 @@ export declare const createAnimatedFadeButton: (WrappedComponent: typeof Paginat
|
|
|
460
460
|
}>;
|
|
461
461
|
mx?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
462
462
|
readonly property: "margin";
|
|
463
|
-
readonly properties:
|
|
463
|
+
readonly properties: {
|
|
464
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
465
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
466
|
+
};
|
|
467
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
464
468
|
readonly scale: "spacing";
|
|
465
469
|
}>;
|
|
466
470
|
my?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
467
471
|
readonly property: "margin";
|
|
468
|
-
readonly properties:
|
|
472
|
+
readonly properties: {
|
|
473
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
474
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
475
|
+
};
|
|
476
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
469
477
|
readonly scale: "spacing";
|
|
470
478
|
}>;
|
|
471
479
|
mt?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
472
|
-
readonly property:
|
|
480
|
+
readonly property: {
|
|
481
|
+
readonly physical: "marginTop";
|
|
482
|
+
readonly logical: "marginBlockStart";
|
|
483
|
+
};
|
|
473
484
|
readonly scale: "spacing";
|
|
485
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
474
486
|
}>;
|
|
475
487
|
mb?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
476
|
-
readonly property:
|
|
488
|
+
readonly property: {
|
|
489
|
+
readonly physical: "marginBottom";
|
|
490
|
+
readonly logical: "marginBlockEnd";
|
|
491
|
+
};
|
|
477
492
|
readonly scale: "spacing";
|
|
493
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
478
494
|
}>;
|
|
479
495
|
mr?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
480
|
-
readonly property:
|
|
496
|
+
readonly property: {
|
|
497
|
+
readonly physical: "marginRight";
|
|
498
|
+
readonly logical: "marginInlineEnd";
|
|
499
|
+
};
|
|
481
500
|
readonly scale: "spacing";
|
|
501
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
482
502
|
}>;
|
|
483
503
|
ml?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
484
|
-
readonly property:
|
|
504
|
+
readonly property: {
|
|
505
|
+
readonly physical: "marginLeft";
|
|
506
|
+
readonly logical: "marginInlineStart";
|
|
507
|
+
};
|
|
485
508
|
readonly scale: "spacing";
|
|
509
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
486
510
|
}>;
|
|
487
511
|
borderX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
488
512
|
readonly property: "border";
|
package/dist/Tabs/props.d.ts
CHANGED
|
@@ -165,28 +165,52 @@ export declare const tabElementBaseProps: import("@codecademy/variance/dist/type
|
|
|
165
165
|
};
|
|
166
166
|
readonly mx: {
|
|
167
167
|
readonly property: "margin";
|
|
168
|
-
readonly properties:
|
|
168
|
+
readonly properties: {
|
|
169
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
170
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
171
|
+
};
|
|
172
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
169
173
|
readonly scale: "spacing";
|
|
170
174
|
};
|
|
171
175
|
readonly my: {
|
|
172
176
|
readonly property: "margin";
|
|
173
|
-
readonly properties:
|
|
177
|
+
readonly properties: {
|
|
178
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
179
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
180
|
+
};
|
|
181
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
174
182
|
readonly scale: "spacing";
|
|
175
183
|
};
|
|
176
184
|
readonly mt: {
|
|
177
|
-
readonly property:
|
|
185
|
+
readonly property: {
|
|
186
|
+
readonly physical: "marginTop";
|
|
187
|
+
readonly logical: "marginBlockStart";
|
|
188
|
+
};
|
|
178
189
|
readonly scale: "spacing";
|
|
190
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
179
191
|
};
|
|
180
192
|
readonly mb: {
|
|
181
|
-
readonly property:
|
|
193
|
+
readonly property: {
|
|
194
|
+
readonly physical: "marginBottom";
|
|
195
|
+
readonly logical: "marginBlockEnd";
|
|
196
|
+
};
|
|
182
197
|
readonly scale: "spacing";
|
|
198
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
183
199
|
};
|
|
184
200
|
readonly mr: {
|
|
185
|
-
readonly property:
|
|
201
|
+
readonly property: {
|
|
202
|
+
readonly physical: "marginRight";
|
|
203
|
+
readonly logical: "marginInlineEnd";
|
|
204
|
+
};
|
|
186
205
|
readonly scale: "spacing";
|
|
206
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
187
207
|
};
|
|
188
208
|
readonly ml: {
|
|
189
|
-
readonly property:
|
|
209
|
+
readonly property: {
|
|
210
|
+
readonly physical: "marginLeft";
|
|
211
|
+
readonly logical: "marginInlineStart";
|
|
212
|
+
};
|
|
190
213
|
readonly scale: "spacing";
|
|
214
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
191
215
|
};
|
|
192
216
|
}>>]>>;
|
package/dist/Tag/types.d.ts
CHANGED
|
@@ -40,29 +40,53 @@ export declare const tagProps: import("@codecademy/variance/dist/types/config").
|
|
|
40
40
|
};
|
|
41
41
|
readonly mx: {
|
|
42
42
|
readonly property: "margin";
|
|
43
|
-
readonly properties:
|
|
43
|
+
readonly properties: {
|
|
44
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
45
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
46
|
+
};
|
|
47
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
44
48
|
readonly scale: "spacing";
|
|
45
49
|
};
|
|
46
50
|
readonly my: {
|
|
47
51
|
readonly property: "margin";
|
|
48
|
-
readonly properties:
|
|
52
|
+
readonly properties: {
|
|
53
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
54
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
55
|
+
};
|
|
56
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
49
57
|
readonly scale: "spacing";
|
|
50
58
|
};
|
|
51
59
|
readonly mt: {
|
|
52
|
-
readonly property:
|
|
60
|
+
readonly property: {
|
|
61
|
+
readonly physical: "marginTop";
|
|
62
|
+
readonly logical: "marginBlockStart";
|
|
63
|
+
};
|
|
53
64
|
readonly scale: "spacing";
|
|
65
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
54
66
|
};
|
|
55
67
|
readonly mb: {
|
|
56
|
-
readonly property:
|
|
68
|
+
readonly property: {
|
|
69
|
+
readonly physical: "marginBottom";
|
|
70
|
+
readonly logical: "marginBlockEnd";
|
|
71
|
+
};
|
|
57
72
|
readonly scale: "spacing";
|
|
73
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
58
74
|
};
|
|
59
75
|
readonly mr: {
|
|
60
|
-
readonly property:
|
|
76
|
+
readonly property: {
|
|
77
|
+
readonly physical: "marginRight";
|
|
78
|
+
readonly logical: "marginInlineEnd";
|
|
79
|
+
};
|
|
61
80
|
readonly scale: "spacing";
|
|
81
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
62
82
|
};
|
|
63
83
|
readonly ml: {
|
|
64
|
-
readonly property:
|
|
84
|
+
readonly property: {
|
|
85
|
+
readonly physical: "marginLeft";
|
|
86
|
+
readonly logical: "marginInlineStart";
|
|
87
|
+
};
|
|
65
88
|
readonly scale: "spacing";
|
|
89
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
66
90
|
};
|
|
67
91
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
68
92
|
readonly flexBasis: {
|
|
@@ -61,29 +61,53 @@ export declare const ToggleTrack: import("@emotion/styled").StyledComponent<{
|
|
|
61
61
|
}>;
|
|
62
62
|
mx?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
63
63
|
readonly property: "margin";
|
|
64
|
-
readonly properties:
|
|
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;
|
|
65
69
|
readonly scale: "spacing";
|
|
66
70
|
}>;
|
|
67
71
|
my?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
68
72
|
readonly property: "margin";
|
|
69
|
-
readonly properties:
|
|
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;
|
|
70
78
|
readonly scale: "spacing";
|
|
71
79
|
}>;
|
|
72
80
|
mt?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
73
|
-
readonly property:
|
|
81
|
+
readonly property: {
|
|
82
|
+
readonly physical: "marginTop";
|
|
83
|
+
readonly logical: "marginBlockStart";
|
|
84
|
+
};
|
|
74
85
|
readonly scale: "spacing";
|
|
86
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
75
87
|
}>;
|
|
76
88
|
mb?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
77
|
-
readonly property:
|
|
89
|
+
readonly property: {
|
|
90
|
+
readonly physical: "marginBottom";
|
|
91
|
+
readonly logical: "marginBlockEnd";
|
|
92
|
+
};
|
|
78
93
|
readonly scale: "spacing";
|
|
94
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
79
95
|
}>;
|
|
80
96
|
mr?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
81
|
-
readonly property:
|
|
97
|
+
readonly property: {
|
|
98
|
+
readonly physical: "marginRight";
|
|
99
|
+
readonly logical: "marginInlineEnd";
|
|
100
|
+
};
|
|
82
101
|
readonly scale: "spacing";
|
|
102
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
83
103
|
}>;
|
|
84
104
|
ml?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
85
|
-
readonly property:
|
|
105
|
+
readonly property: {
|
|
106
|
+
readonly physical: "marginLeft";
|
|
107
|
+
readonly logical: "marginInlineStart";
|
|
108
|
+
};
|
|
86
109
|
readonly scale: "spacing";
|
|
110
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
87
111
|
}>;
|
|
88
112
|
textColor?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
89
113
|
readonly property: "color";
|
|
@@ -173,28 +197,52 @@ export declare const ToggleLabel: import("@emotion/styled").StyledComponent<{
|
|
|
173
197
|
}>;
|
|
174
198
|
mx?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
175
199
|
readonly property: "margin";
|
|
176
|
-
readonly properties:
|
|
200
|
+
readonly properties: {
|
|
201
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
202
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
203
|
+
};
|
|
204
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
177
205
|
readonly scale: "spacing";
|
|
178
206
|
}>;
|
|
179
207
|
my?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
180
208
|
readonly property: "margin";
|
|
181
|
-
readonly properties:
|
|
209
|
+
readonly properties: {
|
|
210
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
211
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
212
|
+
};
|
|
213
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
182
214
|
readonly scale: "spacing";
|
|
183
215
|
}>;
|
|
184
216
|
mt?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
185
|
-
readonly property:
|
|
217
|
+
readonly property: {
|
|
218
|
+
readonly physical: "marginTop";
|
|
219
|
+
readonly logical: "marginBlockStart";
|
|
220
|
+
};
|
|
186
221
|
readonly scale: "spacing";
|
|
222
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
187
223
|
}>;
|
|
188
224
|
mb?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
189
|
-
readonly property:
|
|
225
|
+
readonly property: {
|
|
226
|
+
readonly physical: "marginBottom";
|
|
227
|
+
readonly logical: "marginBlockEnd";
|
|
228
|
+
};
|
|
190
229
|
readonly scale: "spacing";
|
|
230
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
191
231
|
}>;
|
|
192
232
|
mr?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
193
|
-
readonly property:
|
|
233
|
+
readonly property: {
|
|
234
|
+
readonly physical: "marginRight";
|
|
235
|
+
readonly logical: "marginInlineEnd";
|
|
236
|
+
};
|
|
194
237
|
readonly scale: "spacing";
|
|
238
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
195
239
|
}>;
|
|
196
240
|
ml?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
197
|
-
readonly property:
|
|
241
|
+
readonly property: {
|
|
242
|
+
readonly physical: "marginLeft";
|
|
243
|
+
readonly logical: "marginInlineStart";
|
|
244
|
+
};
|
|
198
245
|
readonly scale: "spacing";
|
|
246
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
199
247
|
}>;
|
|
200
248
|
}, import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, {}>;
|
|
@@ -214,29 +214,53 @@ declare const textProps: import("@codecademy/variance/dist/types/config").Parser
|
|
|
214
214
|
};
|
|
215
215
|
readonly mx: {
|
|
216
216
|
readonly property: "margin";
|
|
217
|
-
readonly properties:
|
|
217
|
+
readonly properties: {
|
|
218
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
219
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
220
|
+
};
|
|
221
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
218
222
|
readonly scale: "spacing";
|
|
219
223
|
};
|
|
220
224
|
readonly my: {
|
|
221
225
|
readonly property: "margin";
|
|
222
|
-
readonly properties:
|
|
226
|
+
readonly properties: {
|
|
227
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
228
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
229
|
+
};
|
|
230
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
223
231
|
readonly scale: "spacing";
|
|
224
232
|
};
|
|
225
233
|
readonly mt: {
|
|
226
|
-
readonly property:
|
|
234
|
+
readonly property: {
|
|
235
|
+
readonly physical: "marginTop";
|
|
236
|
+
readonly logical: "marginBlockStart";
|
|
237
|
+
};
|
|
227
238
|
readonly scale: "spacing";
|
|
239
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
228
240
|
};
|
|
229
241
|
readonly mb: {
|
|
230
|
-
readonly property:
|
|
242
|
+
readonly property: {
|
|
243
|
+
readonly physical: "marginBottom";
|
|
244
|
+
readonly logical: "marginBlockEnd";
|
|
245
|
+
};
|
|
231
246
|
readonly scale: "spacing";
|
|
247
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
232
248
|
};
|
|
233
249
|
readonly mr: {
|
|
234
|
-
readonly property:
|
|
250
|
+
readonly property: {
|
|
251
|
+
readonly physical: "marginRight";
|
|
252
|
+
readonly logical: "marginInlineEnd";
|
|
253
|
+
};
|
|
235
254
|
readonly scale: "spacing";
|
|
255
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
236
256
|
};
|
|
237
257
|
readonly ml: {
|
|
238
|
-
readonly property:
|
|
258
|
+
readonly property: {
|
|
259
|
+
readonly physical: "marginLeft";
|
|
260
|
+
readonly logical: "marginInlineStart";
|
|
261
|
+
};
|
|
239
262
|
readonly scale: "spacing";
|
|
263
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
240
264
|
};
|
|
241
265
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
242
266
|
truncateLines: {
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut",
|
|
3
3
|
"description": "Styleguide & Component library for Codecademy",
|
|
4
|
-
"version": "67.6.4-alpha.
|
|
4
|
+
"version": "67.6.4-alpha.d8f776.0",
|
|
5
5
|
"author": "Codecademy Engineering <dev@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@codecademy/gamut-icons": "9.54.1-alpha.
|
|
8
|
-
"@codecademy/gamut-illustrations": "0.58.1-alpha.
|
|
9
|
-
"@codecademy/gamut-patterns": "0.10.20-alpha.
|
|
10
|
-
"@codecademy/gamut-styles": "17.11.1-alpha.
|
|
11
|
-
"@codecademy/variance": "0.25.1-alpha.
|
|
7
|
+
"@codecademy/gamut-icons": "9.54.1-alpha.d8f776.0",
|
|
8
|
+
"@codecademy/gamut-illustrations": "0.58.1-alpha.d8f776.0",
|
|
9
|
+
"@codecademy/gamut-patterns": "0.10.20-alpha.d8f776.0",
|
|
10
|
+
"@codecademy/gamut-styles": "17.11.1-alpha.d8f776.0",
|
|
11
|
+
"@codecademy/variance": "0.25.1-alpha.d8f776.0",
|
|
12
12
|
"@types/marked": "^4.0.8",
|
|
13
13
|
"@vidstack/react": "^1.12.12",
|
|
14
14
|
"classnames": "^2.2.5",
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"dist/**/[A-Z]**/[A-Z]*.js",
|
|
57
57
|
"dist/**/[A-Z]**/index.js"
|
|
58
58
|
],
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "f4883da9c063cbc1c3f459bd816312407928bc19"
|
|
60
60
|
}
|