@codecademy/gamut-icons 9.56.2 → 9.56.3-alpha.2b9208.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/props.d.ts +555 -109
- package/package.json +4 -4
package/dist/props.d.ts
CHANGED
|
@@ -80,43 +80,82 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
80
80
|
readonly property: "overflow";
|
|
81
81
|
};
|
|
82
82
|
readonly overflowX: {
|
|
83
|
-
readonly property:
|
|
83
|
+
readonly property: {
|
|
84
|
+
readonly physical: "overflowX";
|
|
85
|
+
readonly logical: "overflowInline";
|
|
86
|
+
};
|
|
87
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
84
88
|
};
|
|
85
89
|
readonly overflowY: {
|
|
86
|
-
readonly property:
|
|
90
|
+
readonly property: {
|
|
91
|
+
readonly physical: "overflowY";
|
|
92
|
+
readonly logical: "overflowBlock";
|
|
93
|
+
};
|
|
94
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
87
95
|
};
|
|
88
96
|
readonly dimensions: {
|
|
89
97
|
readonly property: "width";
|
|
90
|
-
readonly properties:
|
|
98
|
+
readonly properties: {
|
|
99
|
+
readonly physical: readonly ["width", "height"];
|
|
100
|
+
readonly logical: readonly ["inlineSize", "blockSize"];
|
|
101
|
+
};
|
|
102
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
91
103
|
readonly transform: (value: string | number) => string | 0;
|
|
92
104
|
};
|
|
93
105
|
readonly width: {
|
|
94
|
-
readonly property:
|
|
106
|
+
readonly property: {
|
|
107
|
+
readonly physical: "width";
|
|
108
|
+
readonly logical: "inlineSize";
|
|
109
|
+
};
|
|
110
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
95
111
|
readonly transform: (value: string | number) => string | 0;
|
|
96
112
|
};
|
|
97
113
|
readonly minWidth: {
|
|
98
|
-
readonly property:
|
|
114
|
+
readonly property: {
|
|
115
|
+
readonly physical: "minWidth";
|
|
116
|
+
readonly logical: "minInlineSize";
|
|
117
|
+
};
|
|
118
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
99
119
|
readonly transform: (value: string | number) => string | 0;
|
|
100
120
|
};
|
|
101
121
|
readonly maxWidth: {
|
|
102
|
-
readonly property:
|
|
122
|
+
readonly property: {
|
|
123
|
+
readonly physical: "maxWidth";
|
|
124
|
+
readonly logical: "maxInlineSize";
|
|
125
|
+
};
|
|
126
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
103
127
|
readonly transform: (value: string | number) => string | 0;
|
|
104
128
|
};
|
|
105
129
|
readonly height: {
|
|
106
|
-
readonly property:
|
|
130
|
+
readonly property: {
|
|
131
|
+
readonly physical: "height";
|
|
132
|
+
readonly logical: "blockSize";
|
|
133
|
+
};
|
|
134
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
107
135
|
readonly transform: (value: string | number) => string | 0;
|
|
108
136
|
};
|
|
109
137
|
readonly minHeight: {
|
|
110
|
-
readonly property:
|
|
138
|
+
readonly property: {
|
|
139
|
+
readonly physical: "minHeight";
|
|
140
|
+
readonly logical: "minBlockSize";
|
|
141
|
+
};
|
|
142
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
111
143
|
readonly transform: (value: string | number) => string | 0;
|
|
112
144
|
};
|
|
113
145
|
readonly maxHeight: {
|
|
114
|
-
readonly property:
|
|
146
|
+
readonly property: {
|
|
147
|
+
readonly physical: "maxHeight";
|
|
148
|
+
readonly logical: "maxBlockSize";
|
|
149
|
+
};
|
|
150
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
115
151
|
readonly transform: (value: string | number) => string | 0;
|
|
116
152
|
};
|
|
117
153
|
readonly verticalAlign: {
|
|
118
154
|
readonly property: "verticalAlign";
|
|
119
155
|
};
|
|
156
|
+
readonly direction: {
|
|
157
|
+
readonly property: "direction";
|
|
158
|
+
};
|
|
120
159
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
121
160
|
readonly color: {
|
|
122
161
|
readonly property: "color";
|
|
@@ -136,28 +175,40 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
136
175
|
};
|
|
137
176
|
readonly borderColorX: {
|
|
138
177
|
readonly property: "borderColor";
|
|
139
|
-
readonly properties:
|
|
178
|
+
readonly properties: {
|
|
179
|
+
readonly physical: readonly ["borderLeftColor", "borderRightColor"];
|
|
180
|
+
readonly logical: readonly ["borderInlineStartColor", "borderInlineEndColor"];
|
|
181
|
+
};
|
|
182
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
140
183
|
readonly scale: "colors";
|
|
141
184
|
};
|
|
142
185
|
readonly borderColorY: {
|
|
143
186
|
readonly property: "borderColor";
|
|
144
|
-
readonly properties:
|
|
187
|
+
readonly properties: {
|
|
188
|
+
readonly physical: readonly ["borderTopColor", "borderBottomColor"];
|
|
189
|
+
readonly logical: readonly ["borderBlockStartColor", "borderBlockEndColor"];
|
|
190
|
+
};
|
|
191
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
145
192
|
readonly scale: "colors";
|
|
146
193
|
};
|
|
147
194
|
readonly borderColorLeft: {
|
|
148
195
|
readonly property: "borderLeftColor";
|
|
196
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
149
197
|
readonly scale: "colors";
|
|
150
198
|
};
|
|
151
199
|
readonly borderColorRight: {
|
|
152
200
|
readonly property: "borderRightColor";
|
|
201
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
153
202
|
readonly scale: "colors";
|
|
154
203
|
};
|
|
155
204
|
readonly borderColorTop: {
|
|
156
205
|
readonly property: "borderTopColor";
|
|
206
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
157
207
|
readonly scale: "colors";
|
|
158
208
|
};
|
|
159
209
|
readonly borderColorBottom: {
|
|
160
210
|
readonly property: "borderBottomColor";
|
|
211
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
161
212
|
readonly scale: "colors";
|
|
162
213
|
};
|
|
163
214
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
@@ -167,29 +218,53 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
167
218
|
};
|
|
168
219
|
readonly px: {
|
|
169
220
|
readonly property: "padding";
|
|
170
|
-
readonly properties:
|
|
221
|
+
readonly properties: {
|
|
222
|
+
readonly physical: readonly ["paddingLeft", "paddingRight"];
|
|
223
|
+
readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
|
|
224
|
+
};
|
|
171
225
|
readonly scale: "spacing";
|
|
226
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
172
227
|
};
|
|
173
228
|
readonly py: {
|
|
174
229
|
readonly property: "padding";
|
|
175
|
-
readonly properties:
|
|
230
|
+
readonly properties: {
|
|
231
|
+
readonly physical: readonly ["paddingTop", "paddingBottom"];
|
|
232
|
+
readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
|
|
233
|
+
};
|
|
176
234
|
readonly scale: "spacing";
|
|
235
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
177
236
|
};
|
|
178
237
|
readonly pt: {
|
|
179
|
-
readonly property:
|
|
238
|
+
readonly property: {
|
|
239
|
+
readonly physical: "paddingTop";
|
|
240
|
+
readonly logical: "paddingBlockStart";
|
|
241
|
+
};
|
|
180
242
|
readonly scale: "spacing";
|
|
243
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
181
244
|
};
|
|
182
245
|
readonly pb: {
|
|
183
|
-
readonly property:
|
|
246
|
+
readonly property: {
|
|
247
|
+
readonly physical: "paddingBottom";
|
|
248
|
+
readonly logical: "paddingBlockEnd";
|
|
249
|
+
};
|
|
184
250
|
readonly scale: "spacing";
|
|
251
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
185
252
|
};
|
|
186
253
|
readonly pr: {
|
|
187
|
-
readonly property:
|
|
254
|
+
readonly property: {
|
|
255
|
+
readonly physical: "paddingRight";
|
|
256
|
+
readonly logical: "paddingInlineEnd";
|
|
257
|
+
};
|
|
188
258
|
readonly scale: "spacing";
|
|
259
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
189
260
|
};
|
|
190
261
|
readonly pl: {
|
|
191
|
-
readonly property:
|
|
262
|
+
readonly property: {
|
|
263
|
+
readonly physical: "paddingLeft";
|
|
264
|
+
readonly logical: "paddingInlineStart";
|
|
265
|
+
};
|
|
192
266
|
readonly scale: "spacing";
|
|
267
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
193
268
|
};
|
|
194
269
|
readonly m: {
|
|
195
270
|
readonly property: "margin";
|
|
@@ -197,29 +272,53 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
197
272
|
};
|
|
198
273
|
readonly mx: {
|
|
199
274
|
readonly property: "margin";
|
|
200
|
-
readonly properties:
|
|
275
|
+
readonly properties: {
|
|
276
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
277
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
278
|
+
};
|
|
279
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
201
280
|
readonly scale: "spacing";
|
|
202
281
|
};
|
|
203
282
|
readonly my: {
|
|
204
283
|
readonly property: "margin";
|
|
205
|
-
readonly properties:
|
|
284
|
+
readonly properties: {
|
|
285
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
286
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
287
|
+
};
|
|
288
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
206
289
|
readonly scale: "spacing";
|
|
207
290
|
};
|
|
208
291
|
readonly mt: {
|
|
209
|
-
readonly property:
|
|
292
|
+
readonly property: {
|
|
293
|
+
readonly physical: "marginTop";
|
|
294
|
+
readonly logical: "marginBlockStart";
|
|
295
|
+
};
|
|
210
296
|
readonly scale: "spacing";
|
|
297
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
211
298
|
};
|
|
212
299
|
readonly mb: {
|
|
213
|
-
readonly property:
|
|
300
|
+
readonly property: {
|
|
301
|
+
readonly physical: "marginBottom";
|
|
302
|
+
readonly logical: "marginBlockEnd";
|
|
303
|
+
};
|
|
214
304
|
readonly scale: "spacing";
|
|
305
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
215
306
|
};
|
|
216
307
|
readonly mr: {
|
|
217
|
-
readonly property:
|
|
308
|
+
readonly property: {
|
|
309
|
+
readonly physical: "marginRight";
|
|
310
|
+
readonly logical: "marginInlineEnd";
|
|
311
|
+
};
|
|
218
312
|
readonly scale: "spacing";
|
|
313
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
219
314
|
};
|
|
220
315
|
readonly ml: {
|
|
221
|
-
readonly property:
|
|
316
|
+
readonly property: {
|
|
317
|
+
readonly physical: "marginLeft";
|
|
318
|
+
readonly logical: "marginInlineStart";
|
|
319
|
+
};
|
|
222
320
|
readonly scale: "spacing";
|
|
321
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
223
322
|
};
|
|
224
323
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
225
324
|
readonly position: {
|
|
@@ -227,23 +326,43 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
227
326
|
};
|
|
228
327
|
readonly inset: {
|
|
229
328
|
readonly property: "inset";
|
|
230
|
-
readonly properties:
|
|
329
|
+
readonly properties: {
|
|
330
|
+
readonly physical: readonly ["top", "right", "bottom", "left"];
|
|
331
|
+
readonly logical: readonly ["insetBlockStart", "insetInlineEnd", "insetBlockEnd", "insetInlineStart"];
|
|
332
|
+
};
|
|
333
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
231
334
|
readonly transform: (value: string | number) => string | 0;
|
|
232
335
|
};
|
|
233
336
|
readonly top: {
|
|
234
|
-
readonly property:
|
|
337
|
+
readonly property: {
|
|
338
|
+
readonly physical: "top";
|
|
339
|
+
readonly logical: "insetBlockStart";
|
|
340
|
+
};
|
|
341
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
235
342
|
readonly transform: (value: string | number) => string | 0;
|
|
236
343
|
};
|
|
237
344
|
readonly right: {
|
|
238
|
-
readonly property:
|
|
345
|
+
readonly property: {
|
|
346
|
+
readonly physical: "right";
|
|
347
|
+
readonly logical: "insetInlineEnd";
|
|
348
|
+
};
|
|
349
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
239
350
|
readonly transform: (value: string | number) => string | 0;
|
|
240
351
|
};
|
|
241
352
|
readonly bottom: {
|
|
242
|
-
readonly property:
|
|
353
|
+
readonly property: {
|
|
354
|
+
readonly physical: "bottom";
|
|
355
|
+
readonly logical: "insetBlockEnd";
|
|
356
|
+
};
|
|
357
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
243
358
|
readonly transform: (value: string | number) => string | 0;
|
|
244
359
|
};
|
|
245
360
|
readonly left: {
|
|
246
|
-
readonly property:
|
|
361
|
+
readonly property: {
|
|
362
|
+
readonly physical: "left";
|
|
363
|
+
readonly logical: "insetInlineStart";
|
|
364
|
+
};
|
|
365
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
247
366
|
readonly transform: (value: string | number) => string | 0;
|
|
248
367
|
};
|
|
249
368
|
readonly zIndex: {
|
|
@@ -259,28 +378,52 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
259
378
|
};
|
|
260
379
|
readonly borderX: {
|
|
261
380
|
readonly property: "border";
|
|
262
|
-
readonly properties:
|
|
381
|
+
readonly properties: {
|
|
382
|
+
readonly physical: readonly ["borderLeft", "borderRight"];
|
|
383
|
+
readonly logical: readonly ["borderInlineStart", "borderInlineEnd"];
|
|
384
|
+
};
|
|
385
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
263
386
|
readonly scale: "borders";
|
|
264
387
|
};
|
|
265
388
|
readonly borderY: {
|
|
266
389
|
readonly property: "border";
|
|
267
|
-
readonly properties:
|
|
390
|
+
readonly properties: {
|
|
391
|
+
readonly physical: readonly ["borderTop", "borderBottom"];
|
|
392
|
+
readonly logical: readonly ["borderBlockStart", "borderBlockEnd"];
|
|
393
|
+
};
|
|
394
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
268
395
|
readonly scale: "borders";
|
|
269
396
|
};
|
|
270
397
|
readonly borderTop: {
|
|
271
|
-
readonly property:
|
|
398
|
+
readonly property: {
|
|
399
|
+
readonly physical: "borderTop";
|
|
400
|
+
readonly logical: "borderBlockStart";
|
|
401
|
+
};
|
|
402
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
272
403
|
readonly scale: "borders";
|
|
273
404
|
};
|
|
274
405
|
readonly borderRight: {
|
|
275
|
-
readonly property:
|
|
406
|
+
readonly property: {
|
|
407
|
+
readonly physical: "borderRight";
|
|
408
|
+
readonly logical: "borderInlineEnd";
|
|
409
|
+
};
|
|
410
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
276
411
|
readonly scale: "borders";
|
|
277
412
|
};
|
|
278
413
|
readonly borderBottom: {
|
|
279
|
-
readonly property:
|
|
414
|
+
readonly property: {
|
|
415
|
+
readonly physical: "borderBottom";
|
|
416
|
+
readonly logical: "borderBlockEnd";
|
|
417
|
+
};
|
|
418
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
280
419
|
readonly scale: "borders";
|
|
281
420
|
};
|
|
282
421
|
readonly borderLeft: {
|
|
283
|
-
readonly property:
|
|
422
|
+
readonly property: {
|
|
423
|
+
readonly physical: "borderLeft";
|
|
424
|
+
readonly logical: "borderInlineStart";
|
|
425
|
+
};
|
|
426
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
284
427
|
readonly scale: "borders";
|
|
285
428
|
};
|
|
286
429
|
readonly borderWidth: {
|
|
@@ -288,23 +431,47 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
288
431
|
};
|
|
289
432
|
readonly borderWidthX: {
|
|
290
433
|
readonly property: "borderWidth";
|
|
291
|
-
readonly properties:
|
|
434
|
+
readonly properties: {
|
|
435
|
+
readonly physical: readonly ["borderLeftWidth", "borderRightWidth"];
|
|
436
|
+
readonly logical: readonly ["borderInlineStartWidth", "borderInlineEndWidth"];
|
|
437
|
+
};
|
|
438
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
292
439
|
};
|
|
293
440
|
readonly borderWidthY: {
|
|
294
441
|
readonly property: "borderWidth";
|
|
295
|
-
readonly properties:
|
|
442
|
+
readonly properties: {
|
|
443
|
+
readonly physical: readonly ["borderTopWidth", "borderBottomWidth"];
|
|
444
|
+
readonly logical: readonly ["borderBlockStartWidth", "borderBlockEndWidth"];
|
|
445
|
+
};
|
|
446
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
296
447
|
};
|
|
297
448
|
readonly borderWidthLeft: {
|
|
298
|
-
readonly property:
|
|
449
|
+
readonly property: {
|
|
450
|
+
readonly physical: "borderLeftWidth";
|
|
451
|
+
readonly logical: "borderInlineStartWidth";
|
|
452
|
+
};
|
|
453
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
299
454
|
};
|
|
300
455
|
readonly borderWidthRight: {
|
|
301
|
-
readonly property:
|
|
456
|
+
readonly property: {
|
|
457
|
+
readonly physical: "borderRightWidth";
|
|
458
|
+
readonly logical: "borderInlineEndWidth";
|
|
459
|
+
};
|
|
460
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
302
461
|
};
|
|
303
462
|
readonly borderWidthTop: {
|
|
304
|
-
readonly property:
|
|
463
|
+
readonly property: {
|
|
464
|
+
readonly physical: "borderTopWidth";
|
|
465
|
+
readonly logical: "borderBlockStartWidth";
|
|
466
|
+
};
|
|
467
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
305
468
|
};
|
|
306
469
|
readonly borderWidthBottom: {
|
|
307
|
-
readonly property:
|
|
470
|
+
readonly property: {
|
|
471
|
+
readonly physical: "borderBottomWidth";
|
|
472
|
+
readonly logical: "borderBlockEndWidth";
|
|
473
|
+
};
|
|
474
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
308
475
|
};
|
|
309
476
|
readonly borderRadius: {
|
|
310
477
|
readonly property: "borderRadius";
|
|
@@ -312,38 +479,70 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
312
479
|
};
|
|
313
480
|
readonly borderRadiusLeft: {
|
|
314
481
|
readonly property: "borderRadius";
|
|
315
|
-
readonly properties:
|
|
482
|
+
readonly properties: {
|
|
483
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
|
|
484
|
+
readonly logical: readonly ["borderStartStartRadius", "borderEndStartRadius"];
|
|
485
|
+
};
|
|
486
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
316
487
|
readonly scale: "borderRadii";
|
|
317
488
|
};
|
|
318
489
|
readonly borderRadiusTop: {
|
|
319
490
|
readonly property: "borderRadius";
|
|
320
|
-
readonly properties:
|
|
491
|
+
readonly properties: {
|
|
492
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
|
|
493
|
+
readonly logical: readonly ["borderStartStartRadius", "borderStartEndRadius"];
|
|
494
|
+
};
|
|
495
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
321
496
|
readonly scale: "borderRadii";
|
|
322
497
|
};
|
|
323
498
|
readonly borderRadiusBottom: {
|
|
324
499
|
readonly property: "borderRadius";
|
|
325
|
-
readonly properties:
|
|
500
|
+
readonly properties: {
|
|
501
|
+
readonly physical: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
|
|
502
|
+
readonly logical: readonly ["borderEndStartRadius", "borderEndEndRadius"];
|
|
503
|
+
};
|
|
504
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
326
505
|
readonly scale: "borderRadii";
|
|
327
506
|
};
|
|
328
507
|
readonly borderRadiusRight: {
|
|
329
508
|
readonly property: "borderRadius";
|
|
330
|
-
readonly properties:
|
|
509
|
+
readonly properties: {
|
|
510
|
+
readonly physical: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
|
|
511
|
+
readonly logical: readonly ["borderStartEndRadius", "borderEndEndRadius"];
|
|
512
|
+
};
|
|
513
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
331
514
|
readonly scale: "borderRadii";
|
|
332
515
|
};
|
|
333
516
|
readonly borderRadiusTopLeft: {
|
|
334
|
-
readonly property:
|
|
517
|
+
readonly property: {
|
|
518
|
+
readonly physical: "borderTopLeftRadius";
|
|
519
|
+
readonly logical: "borderStartStartRadius";
|
|
520
|
+
};
|
|
521
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
335
522
|
readonly scale: "borderRadii";
|
|
336
523
|
};
|
|
337
524
|
readonly borderRadiusTopRight: {
|
|
338
|
-
readonly property:
|
|
525
|
+
readonly property: {
|
|
526
|
+
readonly physical: "borderTopRightRadius";
|
|
527
|
+
readonly logical: "borderStartEndRadius";
|
|
528
|
+
};
|
|
529
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
339
530
|
readonly scale: "borderRadii";
|
|
340
531
|
};
|
|
341
532
|
readonly borderRadiusBottomRight: {
|
|
342
|
-
readonly property:
|
|
533
|
+
readonly property: {
|
|
534
|
+
readonly physical: "borderBottomRightRadius";
|
|
535
|
+
readonly logical: "borderEndEndRadius";
|
|
536
|
+
};
|
|
537
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
343
538
|
readonly scale: "borderRadii";
|
|
344
539
|
};
|
|
345
540
|
readonly borderRadiusBottomLeft: {
|
|
346
|
-
readonly property:
|
|
541
|
+
readonly property: {
|
|
542
|
+
readonly physical: "borderBottomLeftRadius";
|
|
543
|
+
readonly logical: "borderEndStartRadius";
|
|
544
|
+
};
|
|
545
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
347
546
|
readonly scale: "borderRadii";
|
|
348
547
|
};
|
|
349
548
|
readonly borderStyle: {
|
|
@@ -351,23 +550,47 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
351
550
|
};
|
|
352
551
|
readonly borderStyleX: {
|
|
353
552
|
readonly property: "borderStyle";
|
|
354
|
-
readonly properties:
|
|
553
|
+
readonly properties: {
|
|
554
|
+
readonly physical: readonly ["borderLeftStyle", "borderRightStyle"];
|
|
555
|
+
readonly logical: readonly ["borderInlineStartStyle", "borderInlineEndStyle"];
|
|
556
|
+
};
|
|
557
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
355
558
|
};
|
|
356
559
|
readonly borderStyleY: {
|
|
357
560
|
readonly property: "borderStyle";
|
|
358
|
-
readonly properties:
|
|
561
|
+
readonly properties: {
|
|
562
|
+
readonly physical: readonly ["borderTopStyle", "borderBottomStyle"];
|
|
563
|
+
readonly logical: readonly ["borderBlockStartStyle", "borderBlockEndStyle"];
|
|
564
|
+
};
|
|
565
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
359
566
|
};
|
|
360
567
|
readonly borderStyleLeft: {
|
|
361
|
-
readonly property:
|
|
568
|
+
readonly property: {
|
|
569
|
+
readonly physical: "borderLeftStyle";
|
|
570
|
+
readonly logical: "borderInlineStartStyle";
|
|
571
|
+
};
|
|
572
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
362
573
|
};
|
|
363
574
|
readonly borderStyleRight: {
|
|
364
|
-
readonly property:
|
|
575
|
+
readonly property: {
|
|
576
|
+
readonly physical: "borderRightStyle";
|
|
577
|
+
readonly logical: "borderInlineEndStyle";
|
|
578
|
+
};
|
|
579
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
365
580
|
};
|
|
366
581
|
readonly borderStyleTop: {
|
|
367
|
-
readonly property:
|
|
582
|
+
readonly property: {
|
|
583
|
+
readonly physical: "borderTopStyle";
|
|
584
|
+
readonly logical: "borderBlockStartStyle";
|
|
585
|
+
};
|
|
586
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
368
587
|
};
|
|
369
588
|
readonly borderStyleBottom: {
|
|
370
|
-
readonly property:
|
|
589
|
+
readonly property: {
|
|
590
|
+
readonly physical: "borderBottomStyle";
|
|
591
|
+
readonly logical: "borderBlockEndStyle";
|
|
592
|
+
};
|
|
593
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
371
594
|
};
|
|
372
595
|
}>>]>>;
|
|
373
596
|
export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
@@ -423,43 +646,82 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
423
646
|
readonly property: "overflow";
|
|
424
647
|
}>;
|
|
425
648
|
overflowX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
426
|
-
readonly property:
|
|
649
|
+
readonly property: {
|
|
650
|
+
readonly physical: "overflowX";
|
|
651
|
+
readonly logical: "overflowInline";
|
|
652
|
+
};
|
|
653
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
427
654
|
}>;
|
|
428
655
|
overflowY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
429
|
-
readonly property:
|
|
656
|
+
readonly property: {
|
|
657
|
+
readonly physical: "overflowY";
|
|
658
|
+
readonly logical: "overflowBlock";
|
|
659
|
+
};
|
|
660
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
430
661
|
}>;
|
|
431
662
|
dimensions?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
432
663
|
readonly property: "width";
|
|
433
|
-
readonly properties:
|
|
664
|
+
readonly properties: {
|
|
665
|
+
readonly physical: readonly ["width", "height"];
|
|
666
|
+
readonly logical: readonly ["inlineSize", "blockSize"];
|
|
667
|
+
};
|
|
668
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
434
669
|
readonly transform: (value: string | number) => string | 0;
|
|
435
670
|
}>;
|
|
436
671
|
width?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
437
|
-
readonly property:
|
|
672
|
+
readonly property: {
|
|
673
|
+
readonly physical: "width";
|
|
674
|
+
readonly logical: "inlineSize";
|
|
675
|
+
};
|
|
676
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
438
677
|
readonly transform: (value: string | number) => string | 0;
|
|
439
678
|
}>;
|
|
440
679
|
minWidth?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
441
|
-
readonly property:
|
|
680
|
+
readonly property: {
|
|
681
|
+
readonly physical: "minWidth";
|
|
682
|
+
readonly logical: "minInlineSize";
|
|
683
|
+
};
|
|
684
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
442
685
|
readonly transform: (value: string | number) => string | 0;
|
|
443
686
|
}>;
|
|
444
687
|
maxWidth?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
445
|
-
readonly property:
|
|
688
|
+
readonly property: {
|
|
689
|
+
readonly physical: "maxWidth";
|
|
690
|
+
readonly logical: "maxInlineSize";
|
|
691
|
+
};
|
|
692
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
446
693
|
readonly transform: (value: string | number) => string | 0;
|
|
447
694
|
}>;
|
|
448
695
|
height?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
449
|
-
readonly property:
|
|
696
|
+
readonly property: {
|
|
697
|
+
readonly physical: "height";
|
|
698
|
+
readonly logical: "blockSize";
|
|
699
|
+
};
|
|
700
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
450
701
|
readonly transform: (value: string | number) => string | 0;
|
|
451
702
|
}>;
|
|
452
703
|
minHeight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
453
|
-
readonly property:
|
|
704
|
+
readonly property: {
|
|
705
|
+
readonly physical: "minHeight";
|
|
706
|
+
readonly logical: "minBlockSize";
|
|
707
|
+
};
|
|
708
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
454
709
|
readonly transform: (value: string | number) => string | 0;
|
|
455
710
|
}>;
|
|
456
711
|
maxHeight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
457
|
-
readonly property:
|
|
712
|
+
readonly property: {
|
|
713
|
+
readonly physical: "maxHeight";
|
|
714
|
+
readonly logical: "maxBlockSize";
|
|
715
|
+
};
|
|
716
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
458
717
|
readonly transform: (value: string | number) => string | 0;
|
|
459
718
|
}>;
|
|
460
719
|
verticalAlign?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
461
720
|
readonly property: "verticalAlign";
|
|
462
721
|
}>;
|
|
722
|
+
direction?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
723
|
+
readonly property: "direction";
|
|
724
|
+
}>;
|
|
463
725
|
color?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
464
726
|
readonly property: "color";
|
|
465
727
|
readonly scale: "colors";
|
|
@@ -478,28 +740,40 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
478
740
|
}>;
|
|
479
741
|
borderColorX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
480
742
|
readonly property: "borderColor";
|
|
481
|
-
readonly properties:
|
|
743
|
+
readonly properties: {
|
|
744
|
+
readonly physical: readonly ["borderLeftColor", "borderRightColor"];
|
|
745
|
+
readonly logical: readonly ["borderInlineStartColor", "borderInlineEndColor"];
|
|
746
|
+
};
|
|
747
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
482
748
|
readonly scale: "colors";
|
|
483
749
|
}>;
|
|
484
750
|
borderColorY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
485
751
|
readonly property: "borderColor";
|
|
486
|
-
readonly properties:
|
|
752
|
+
readonly properties: {
|
|
753
|
+
readonly physical: readonly ["borderTopColor", "borderBottomColor"];
|
|
754
|
+
readonly logical: readonly ["borderBlockStartColor", "borderBlockEndColor"];
|
|
755
|
+
};
|
|
756
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
487
757
|
readonly scale: "colors";
|
|
488
758
|
}>;
|
|
489
759
|
borderColorLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
490
760
|
readonly property: "borderLeftColor";
|
|
761
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
491
762
|
readonly scale: "colors";
|
|
492
763
|
}>;
|
|
493
764
|
borderColorRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
494
765
|
readonly property: "borderRightColor";
|
|
766
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
495
767
|
readonly scale: "colors";
|
|
496
768
|
}>;
|
|
497
769
|
borderColorTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
498
770
|
readonly property: "borderTopColor";
|
|
771
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
499
772
|
readonly scale: "colors";
|
|
500
773
|
}>;
|
|
501
774
|
borderColorBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
502
775
|
readonly property: "borderBottomColor";
|
|
776
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
503
777
|
readonly scale: "colors";
|
|
504
778
|
}>;
|
|
505
779
|
p?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -508,29 +782,53 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
508
782
|
}>;
|
|
509
783
|
px?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
510
784
|
readonly property: "padding";
|
|
511
|
-
readonly properties:
|
|
785
|
+
readonly properties: {
|
|
786
|
+
readonly physical: readonly ["paddingLeft", "paddingRight"];
|
|
787
|
+
readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
|
|
788
|
+
};
|
|
512
789
|
readonly scale: "spacing";
|
|
790
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
513
791
|
}>;
|
|
514
792
|
py?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
515
793
|
readonly property: "padding";
|
|
516
|
-
readonly properties:
|
|
794
|
+
readonly properties: {
|
|
795
|
+
readonly physical: readonly ["paddingTop", "paddingBottom"];
|
|
796
|
+
readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
|
|
797
|
+
};
|
|
517
798
|
readonly scale: "spacing";
|
|
799
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
518
800
|
}>;
|
|
519
801
|
pt?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
520
|
-
readonly property:
|
|
802
|
+
readonly property: {
|
|
803
|
+
readonly physical: "paddingTop";
|
|
804
|
+
readonly logical: "paddingBlockStart";
|
|
805
|
+
};
|
|
521
806
|
readonly scale: "spacing";
|
|
807
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
522
808
|
}>;
|
|
523
809
|
pb?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
524
|
-
readonly property:
|
|
810
|
+
readonly property: {
|
|
811
|
+
readonly physical: "paddingBottom";
|
|
812
|
+
readonly logical: "paddingBlockEnd";
|
|
813
|
+
};
|
|
525
814
|
readonly scale: "spacing";
|
|
815
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
526
816
|
}>;
|
|
527
817
|
pr?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
528
|
-
readonly property:
|
|
818
|
+
readonly property: {
|
|
819
|
+
readonly physical: "paddingRight";
|
|
820
|
+
readonly logical: "paddingInlineEnd";
|
|
821
|
+
};
|
|
529
822
|
readonly scale: "spacing";
|
|
823
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
530
824
|
}>;
|
|
531
825
|
pl?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
532
|
-
readonly property:
|
|
826
|
+
readonly property: {
|
|
827
|
+
readonly physical: "paddingLeft";
|
|
828
|
+
readonly logical: "paddingInlineStart";
|
|
829
|
+
};
|
|
533
830
|
readonly scale: "spacing";
|
|
831
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
534
832
|
}>;
|
|
535
833
|
m?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
536
834
|
readonly property: "margin";
|
|
@@ -538,52 +836,96 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
538
836
|
}>;
|
|
539
837
|
mx?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
540
838
|
readonly property: "margin";
|
|
541
|
-
readonly properties:
|
|
839
|
+
readonly properties: {
|
|
840
|
+
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
841
|
+
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
842
|
+
};
|
|
843
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
542
844
|
readonly scale: "spacing";
|
|
543
845
|
}>;
|
|
544
846
|
my?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
545
847
|
readonly property: "margin";
|
|
546
|
-
readonly properties:
|
|
848
|
+
readonly properties: {
|
|
849
|
+
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
850
|
+
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
851
|
+
};
|
|
852
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
547
853
|
readonly scale: "spacing";
|
|
548
854
|
}>;
|
|
549
855
|
mt?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
550
|
-
readonly property:
|
|
856
|
+
readonly property: {
|
|
857
|
+
readonly physical: "marginTop";
|
|
858
|
+
readonly logical: "marginBlockStart";
|
|
859
|
+
};
|
|
551
860
|
readonly scale: "spacing";
|
|
861
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
552
862
|
}>;
|
|
553
863
|
mb?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
554
|
-
readonly property:
|
|
864
|
+
readonly property: {
|
|
865
|
+
readonly physical: "marginBottom";
|
|
866
|
+
readonly logical: "marginBlockEnd";
|
|
867
|
+
};
|
|
555
868
|
readonly scale: "spacing";
|
|
869
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
556
870
|
}>;
|
|
557
871
|
mr?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
558
|
-
readonly property:
|
|
872
|
+
readonly property: {
|
|
873
|
+
readonly physical: "marginRight";
|
|
874
|
+
readonly logical: "marginInlineEnd";
|
|
875
|
+
};
|
|
559
876
|
readonly scale: "spacing";
|
|
877
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
560
878
|
}>;
|
|
561
879
|
ml?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
562
|
-
readonly property:
|
|
880
|
+
readonly property: {
|
|
881
|
+
readonly physical: "marginLeft";
|
|
882
|
+
readonly logical: "marginInlineStart";
|
|
883
|
+
};
|
|
563
884
|
readonly scale: "spacing";
|
|
885
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
564
886
|
}>;
|
|
565
887
|
position?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
566
888
|
readonly property: "position";
|
|
567
889
|
}>;
|
|
568
890
|
inset?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
569
891
|
readonly property: "inset";
|
|
570
|
-
readonly properties:
|
|
892
|
+
readonly properties: {
|
|
893
|
+
readonly physical: readonly ["top", "right", "bottom", "left"];
|
|
894
|
+
readonly logical: readonly ["insetBlockStart", "insetInlineEnd", "insetBlockEnd", "insetInlineStart"];
|
|
895
|
+
};
|
|
896
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
571
897
|
readonly transform: (value: string | number) => string | 0;
|
|
572
898
|
}>;
|
|
573
899
|
top?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
574
|
-
readonly property:
|
|
900
|
+
readonly property: {
|
|
901
|
+
readonly physical: "top";
|
|
902
|
+
readonly logical: "insetBlockStart";
|
|
903
|
+
};
|
|
904
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
575
905
|
readonly transform: (value: string | number) => string | 0;
|
|
576
906
|
}>;
|
|
577
907
|
right?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
578
|
-
readonly property:
|
|
908
|
+
readonly property: {
|
|
909
|
+
readonly physical: "right";
|
|
910
|
+
readonly logical: "insetInlineEnd";
|
|
911
|
+
};
|
|
912
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
579
913
|
readonly transform: (value: string | number) => string | 0;
|
|
580
914
|
}>;
|
|
581
915
|
bottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
582
|
-
readonly property:
|
|
916
|
+
readonly property: {
|
|
917
|
+
readonly physical: "bottom";
|
|
918
|
+
readonly logical: "insetBlockEnd";
|
|
919
|
+
};
|
|
920
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
583
921
|
readonly transform: (value: string | number) => string | 0;
|
|
584
922
|
}>;
|
|
585
923
|
left?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
586
|
-
readonly property:
|
|
924
|
+
readonly property: {
|
|
925
|
+
readonly physical: "left";
|
|
926
|
+
readonly logical: "insetInlineStart";
|
|
927
|
+
};
|
|
928
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
587
929
|
readonly transform: (value: string | number) => string | 0;
|
|
588
930
|
}>;
|
|
589
931
|
zIndex?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -598,28 +940,52 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
598
940
|
}>;
|
|
599
941
|
borderX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
600
942
|
readonly property: "border";
|
|
601
|
-
readonly properties:
|
|
943
|
+
readonly properties: {
|
|
944
|
+
readonly physical: readonly ["borderLeft", "borderRight"];
|
|
945
|
+
readonly logical: readonly ["borderInlineStart", "borderInlineEnd"];
|
|
946
|
+
};
|
|
947
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
602
948
|
readonly scale: "borders";
|
|
603
949
|
}>;
|
|
604
950
|
borderY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
605
951
|
readonly property: "border";
|
|
606
|
-
readonly properties:
|
|
952
|
+
readonly properties: {
|
|
953
|
+
readonly physical: readonly ["borderTop", "borderBottom"];
|
|
954
|
+
readonly logical: readonly ["borderBlockStart", "borderBlockEnd"];
|
|
955
|
+
};
|
|
956
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
607
957
|
readonly scale: "borders";
|
|
608
958
|
}>;
|
|
609
959
|
borderTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
610
|
-
readonly property:
|
|
960
|
+
readonly property: {
|
|
961
|
+
readonly physical: "borderTop";
|
|
962
|
+
readonly logical: "borderBlockStart";
|
|
963
|
+
};
|
|
964
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
611
965
|
readonly scale: "borders";
|
|
612
966
|
}>;
|
|
613
967
|
borderRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
614
|
-
readonly property:
|
|
968
|
+
readonly property: {
|
|
969
|
+
readonly physical: "borderRight";
|
|
970
|
+
readonly logical: "borderInlineEnd";
|
|
971
|
+
};
|
|
972
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
615
973
|
readonly scale: "borders";
|
|
616
974
|
}>;
|
|
617
975
|
borderBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
618
|
-
readonly property:
|
|
976
|
+
readonly property: {
|
|
977
|
+
readonly physical: "borderBottom";
|
|
978
|
+
readonly logical: "borderBlockEnd";
|
|
979
|
+
};
|
|
980
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
619
981
|
readonly scale: "borders";
|
|
620
982
|
}>;
|
|
621
983
|
borderLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
622
|
-
readonly property:
|
|
984
|
+
readonly property: {
|
|
985
|
+
readonly physical: "borderLeft";
|
|
986
|
+
readonly logical: "borderInlineStart";
|
|
987
|
+
};
|
|
988
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
623
989
|
readonly scale: "borders";
|
|
624
990
|
}>;
|
|
625
991
|
borderWidth?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -627,23 +993,47 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
627
993
|
}>;
|
|
628
994
|
borderWidthX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
629
995
|
readonly property: "borderWidth";
|
|
630
|
-
readonly properties:
|
|
996
|
+
readonly properties: {
|
|
997
|
+
readonly physical: readonly ["borderLeftWidth", "borderRightWidth"];
|
|
998
|
+
readonly logical: readonly ["borderInlineStartWidth", "borderInlineEndWidth"];
|
|
999
|
+
};
|
|
1000
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
631
1001
|
}>;
|
|
632
1002
|
borderWidthY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
633
1003
|
readonly property: "borderWidth";
|
|
634
|
-
readonly properties:
|
|
1004
|
+
readonly properties: {
|
|
1005
|
+
readonly physical: readonly ["borderTopWidth", "borderBottomWidth"];
|
|
1006
|
+
readonly logical: readonly ["borderBlockStartWidth", "borderBlockEndWidth"];
|
|
1007
|
+
};
|
|
1008
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
635
1009
|
}>;
|
|
636
1010
|
borderWidthLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
637
|
-
readonly property:
|
|
1011
|
+
readonly property: {
|
|
1012
|
+
readonly physical: "borderLeftWidth";
|
|
1013
|
+
readonly logical: "borderInlineStartWidth";
|
|
1014
|
+
};
|
|
1015
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
638
1016
|
}>;
|
|
639
1017
|
borderWidthRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
640
|
-
readonly property:
|
|
1018
|
+
readonly property: {
|
|
1019
|
+
readonly physical: "borderRightWidth";
|
|
1020
|
+
readonly logical: "borderInlineEndWidth";
|
|
1021
|
+
};
|
|
1022
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
641
1023
|
}>;
|
|
642
1024
|
borderWidthTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
643
|
-
readonly property:
|
|
1025
|
+
readonly property: {
|
|
1026
|
+
readonly physical: "borderTopWidth";
|
|
1027
|
+
readonly logical: "borderBlockStartWidth";
|
|
1028
|
+
};
|
|
1029
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
644
1030
|
}>;
|
|
645
1031
|
borderWidthBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
646
|
-
readonly property:
|
|
1032
|
+
readonly property: {
|
|
1033
|
+
readonly physical: "borderBottomWidth";
|
|
1034
|
+
readonly logical: "borderBlockEndWidth";
|
|
1035
|
+
};
|
|
1036
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
647
1037
|
}>;
|
|
648
1038
|
borderRadius?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
649
1039
|
readonly property: "borderRadius";
|
|
@@ -651,38 +1041,70 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
651
1041
|
}>;
|
|
652
1042
|
borderRadiusLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
653
1043
|
readonly property: "borderRadius";
|
|
654
|
-
readonly properties:
|
|
1044
|
+
readonly properties: {
|
|
1045
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
|
|
1046
|
+
readonly logical: readonly ["borderStartStartRadius", "borderEndStartRadius"];
|
|
1047
|
+
};
|
|
1048
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
655
1049
|
readonly scale: "borderRadii";
|
|
656
1050
|
}>;
|
|
657
1051
|
borderRadiusTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
658
1052
|
readonly property: "borderRadius";
|
|
659
|
-
readonly properties:
|
|
1053
|
+
readonly properties: {
|
|
1054
|
+
readonly physical: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
|
|
1055
|
+
readonly logical: readonly ["borderStartStartRadius", "borderStartEndRadius"];
|
|
1056
|
+
};
|
|
1057
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
660
1058
|
readonly scale: "borderRadii";
|
|
661
1059
|
}>;
|
|
662
1060
|
borderRadiusBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
663
1061
|
readonly property: "borderRadius";
|
|
664
|
-
readonly properties:
|
|
1062
|
+
readonly properties: {
|
|
1063
|
+
readonly physical: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
|
|
1064
|
+
readonly logical: readonly ["borderEndStartRadius", "borderEndEndRadius"];
|
|
1065
|
+
};
|
|
1066
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
665
1067
|
readonly scale: "borderRadii";
|
|
666
1068
|
}>;
|
|
667
1069
|
borderRadiusRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
668
1070
|
readonly property: "borderRadius";
|
|
669
|
-
readonly properties:
|
|
1071
|
+
readonly properties: {
|
|
1072
|
+
readonly physical: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
|
|
1073
|
+
readonly logical: readonly ["borderStartEndRadius", "borderEndEndRadius"];
|
|
1074
|
+
};
|
|
1075
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
670
1076
|
readonly scale: "borderRadii";
|
|
671
1077
|
}>;
|
|
672
1078
|
borderRadiusTopLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
673
|
-
readonly property:
|
|
1079
|
+
readonly property: {
|
|
1080
|
+
readonly physical: "borderTopLeftRadius";
|
|
1081
|
+
readonly logical: "borderStartStartRadius";
|
|
1082
|
+
};
|
|
1083
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
674
1084
|
readonly scale: "borderRadii";
|
|
675
1085
|
}>;
|
|
676
1086
|
borderRadiusTopRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
677
|
-
readonly property:
|
|
1087
|
+
readonly property: {
|
|
1088
|
+
readonly physical: "borderTopRightRadius";
|
|
1089
|
+
readonly logical: "borderStartEndRadius";
|
|
1090
|
+
};
|
|
1091
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
678
1092
|
readonly scale: "borderRadii";
|
|
679
1093
|
}>;
|
|
680
1094
|
borderRadiusBottomRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
681
|
-
readonly property:
|
|
1095
|
+
readonly property: {
|
|
1096
|
+
readonly physical: "borderBottomRightRadius";
|
|
1097
|
+
readonly logical: "borderEndEndRadius";
|
|
1098
|
+
};
|
|
1099
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
682
1100
|
readonly scale: "borderRadii";
|
|
683
1101
|
}>;
|
|
684
1102
|
borderRadiusBottomLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
685
|
-
readonly property:
|
|
1103
|
+
readonly property: {
|
|
1104
|
+
readonly physical: "borderBottomLeftRadius";
|
|
1105
|
+
readonly logical: "borderEndStartRadius";
|
|
1106
|
+
};
|
|
1107
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
686
1108
|
readonly scale: "borderRadii";
|
|
687
1109
|
}>;
|
|
688
1110
|
borderStyle?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -690,25 +1112,49 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
690
1112
|
}>;
|
|
691
1113
|
borderStyleX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
692
1114
|
readonly property: "borderStyle";
|
|
693
|
-
readonly properties:
|
|
1115
|
+
readonly properties: {
|
|
1116
|
+
readonly physical: readonly ["borderLeftStyle", "borderRightStyle"];
|
|
1117
|
+
readonly logical: readonly ["borderInlineStartStyle", "borderInlineEndStyle"];
|
|
1118
|
+
};
|
|
1119
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
694
1120
|
}>;
|
|
695
1121
|
borderStyleY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
696
1122
|
readonly property: "borderStyle";
|
|
697
|
-
readonly properties:
|
|
1123
|
+
readonly properties: {
|
|
1124
|
+
readonly physical: readonly ["borderTopStyle", "borderBottomStyle"];
|
|
1125
|
+
readonly logical: readonly ["borderBlockStartStyle", "borderBlockEndStyle"];
|
|
1126
|
+
};
|
|
1127
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
698
1128
|
}>;
|
|
699
1129
|
borderStyleLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
700
|
-
readonly property:
|
|
1130
|
+
readonly property: {
|
|
1131
|
+
readonly physical: "borderLeftStyle";
|
|
1132
|
+
readonly logical: "borderInlineStartStyle";
|
|
1133
|
+
};
|
|
1134
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
701
1135
|
}>;
|
|
702
1136
|
borderStyleRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
703
|
-
readonly property:
|
|
1137
|
+
readonly property: {
|
|
1138
|
+
readonly physical: "borderRightStyle";
|
|
1139
|
+
readonly logical: "borderInlineEndStyle";
|
|
1140
|
+
};
|
|
1141
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
704
1142
|
}>;
|
|
705
1143
|
borderStyleTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
706
|
-
readonly property:
|
|
1144
|
+
readonly property: {
|
|
1145
|
+
readonly physical: "borderTopStyle";
|
|
1146
|
+
readonly logical: "borderBlockStartStyle";
|
|
1147
|
+
};
|
|
1148
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
707
1149
|
}>;
|
|
708
1150
|
borderStyleBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
709
|
-
readonly property:
|
|
1151
|
+
readonly property: {
|
|
1152
|
+
readonly physical: "borderBottomStyle";
|
|
1153
|
+
readonly logical: "borderBlockEndStyle";
|
|
1154
|
+
};
|
|
1155
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
710
1156
|
}>;
|
|
711
1157
|
} & {
|
|
712
1158
|
theme?: import("@emotion/react").Theme | undefined;
|
|
713
|
-
}, Pick<import("react").SVGProps<SVGSVGElement>, "string" | "scale" | "filter" | "fill" | "values" | "spacing" | "name" | "alignmentBaseline" | "baselineShift" | "clipPath" | "clipRule" | "colorInterpolationFilters" | "cursor" | "cx" | "cy" | "d" | "
|
|
1159
|
+
}, Pick<import("react").SVGProps<SVGSVGElement>, "string" | "scale" | "filter" | "fill" | "values" | "spacing" | "name" | "alignmentBaseline" | "baselineShift" | "clipPath" | "clipRule" | "colorInterpolationFilters" | "cursor" | "cx" | "cy" | "d" | "dominantBaseline" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "fontSizeAdjust" | "fontVariant" | "imageRendering" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "paintOrder" | "pointerEvents" | "r" | "rotate" | "rx" | "ry" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "textRendering" | "transform" | "transformOrigin" | "unicodeBidi" | "vectorEffect" | "visibility" | "wordSpacing" | "writingMode" | "x" | "y" | "mask" | "offset" | "min" | "max" | "end" | "clip" | "suppressHydrationWarning" | "className" | "id" | "lang" | "media" | "method" | "style" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolation" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "fontStretch" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "local" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mathematical" | "numOctaves" | "operator" | "orient" | "orientation" | "origin" | "overlinePosition" | "overlineThickness" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "seed" | "slope" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "ref" | "key">, {}>;
|
|
714
1160
|
export {};
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut-icons",
|
|
3
3
|
"description": "Icon library for codecademy.com",
|
|
4
|
-
"version": "9.56.
|
|
4
|
+
"version": "9.56.3-alpha.2b9208.0",
|
|
5
5
|
"author": "Codecademy <dev@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@codecademy/gamut-styles": "17.
|
|
8
|
-
"@codecademy/variance": "0.
|
|
7
|
+
"@codecademy/gamut-styles": "17.12.0-alpha.2b9208.0",
|
|
8
|
+
"@codecademy/variance": "0.26.0-alpha.2b9208.0"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist"
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": false,
|
|
31
31
|
"types": "dist/index.d.ts",
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "586e5a0c80b43ae67c14441e76eca1d4b04e3999"
|
|
33
33
|
}
|