@codecademy/gamut 68.1.0-alpha.8bbf79.0 → 68.1.0-alpha.9527f6.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.
@@ -274,28 +274,40 @@ declare const badgeProps: import("@codecademy/variance/dist/types/config").Parse
274
274
  };
275
275
  readonly borderColorX: {
276
276
  readonly property: "borderColor";
277
- readonly properties: readonly ["borderLeftColor", "borderRightColor"];
277
+ readonly properties: {
278
+ readonly physical: readonly ["borderLeftColor", "borderRightColor"];
279
+ readonly logical: readonly ["borderInlineStartColor", "borderInlineEndColor"];
280
+ };
281
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
278
282
  readonly scale: "colors";
279
283
  };
280
284
  readonly borderColorY: {
281
285
  readonly property: "borderColor";
282
- readonly properties: readonly ["borderTopColor", "borderBottomColor"];
286
+ readonly properties: {
287
+ readonly physical: readonly ["borderTopColor", "borderBottomColor"];
288
+ readonly logical: readonly ["borderBlockStartColor", "borderBlockEndColor"];
289
+ };
290
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
283
291
  readonly scale: "colors";
284
292
  };
285
293
  readonly borderColorLeft: {
286
294
  readonly property: "borderLeftColor";
295
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
287
296
  readonly scale: "colors";
288
297
  };
289
298
  readonly borderColorRight: {
290
299
  readonly property: "borderRightColor";
300
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
291
301
  readonly scale: "colors";
292
302
  };
293
303
  readonly borderColorTop: {
294
304
  readonly property: "borderTopColor";
305
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
295
306
  readonly scale: "colors";
296
307
  };
297
308
  readonly borderColorBottom: {
298
309
  readonly property: "borderBottomColor";
310
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
299
311
  readonly scale: "colors";
300
312
  };
301
313
  }>>]>>;
@@ -116,28 +116,52 @@ export declare const boxProps: import("@codecademy/variance/dist/types/config").
116
116
  };
117
117
  readonly borderX: {
118
118
  readonly property: "border";
119
- readonly properties: readonly ["borderLeft", "borderRight"];
119
+ readonly properties: {
120
+ readonly physical: readonly ["borderLeft", "borderRight"];
121
+ readonly logical: readonly ["borderInlineStart", "borderInlineEnd"];
122
+ };
123
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
120
124
  readonly scale: "borders";
121
125
  };
122
126
  readonly borderY: {
123
127
  readonly property: "border";
124
- readonly properties: readonly ["borderTop", "borderBottom"];
128
+ readonly properties: {
129
+ readonly physical: readonly ["borderTop", "borderBottom"];
130
+ readonly logical: readonly ["borderBlockStart", "borderBlockEnd"];
131
+ };
132
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
125
133
  readonly scale: "borders";
126
134
  };
127
135
  readonly borderTop: {
128
- readonly property: "borderTop";
136
+ readonly property: {
137
+ readonly physical: "borderTop";
138
+ readonly logical: "borderBlockStart";
139
+ };
140
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
129
141
  readonly scale: "borders";
130
142
  };
131
143
  readonly borderRight: {
132
- readonly property: "borderRight";
144
+ readonly property: {
145
+ readonly physical: "borderRight";
146
+ readonly logical: "borderInlineEnd";
147
+ };
148
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
133
149
  readonly scale: "borders";
134
150
  };
135
151
  readonly borderBottom: {
136
- readonly property: "borderBottom";
152
+ readonly property: {
153
+ readonly physical: "borderBottom";
154
+ readonly logical: "borderBlockEnd";
155
+ };
156
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
137
157
  readonly scale: "borders";
138
158
  };
139
159
  readonly borderLeft: {
140
- readonly property: "borderLeft";
160
+ readonly property: {
161
+ readonly physical: "borderLeft";
162
+ readonly logical: "borderInlineStart";
163
+ };
164
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
141
165
  readonly scale: "borders";
142
166
  };
143
167
  readonly borderWidth: {
@@ -145,23 +169,47 @@ export declare const boxProps: import("@codecademy/variance/dist/types/config").
145
169
  };
146
170
  readonly borderWidthX: {
147
171
  readonly property: "borderWidth";
148
- readonly properties: readonly ["borderLeftWidth", "borderRightWidth"];
172
+ readonly properties: {
173
+ readonly physical: readonly ["borderLeftWidth", "borderRightWidth"];
174
+ readonly logical: readonly ["borderInlineStartWidth", "borderInlineEndWidth"];
175
+ };
176
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
149
177
  };
150
178
  readonly borderWidthY: {
151
179
  readonly property: "borderWidth";
152
- readonly properties: readonly ["borderTopWidth", "borderBottomWidth"];
180
+ readonly properties: {
181
+ readonly physical: readonly ["borderTopWidth", "borderBottomWidth"];
182
+ readonly logical: readonly ["borderBlockStartWidth", "borderBlockEndWidth"];
183
+ };
184
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
153
185
  };
154
186
  readonly borderWidthLeft: {
155
- readonly property: "borderLeftWidth";
187
+ readonly property: {
188
+ readonly physical: "borderLeftWidth";
189
+ readonly logical: "borderInlineStartWidth";
190
+ };
191
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
156
192
  };
157
193
  readonly borderWidthRight: {
158
- readonly property: "borderRightWidth";
194
+ readonly property: {
195
+ readonly physical: "borderRightWidth";
196
+ readonly logical: "borderInlineEndWidth";
197
+ };
198
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
159
199
  };
160
200
  readonly borderWidthTop: {
161
- readonly property: "borderTopWidth";
201
+ readonly property: {
202
+ readonly physical: "borderTopWidth";
203
+ readonly logical: "borderBlockStartWidth";
204
+ };
205
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
162
206
  };
163
207
  readonly borderWidthBottom: {
164
- readonly property: "borderBottomWidth";
208
+ readonly property: {
209
+ readonly physical: "borderBottomWidth";
210
+ readonly logical: "borderBlockEndWidth";
211
+ };
212
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
165
213
  };
166
214
  readonly borderRadius: {
167
215
  readonly property: "borderRadius";
@@ -169,38 +217,70 @@ export declare const boxProps: import("@codecademy/variance/dist/types/config").
169
217
  };
170
218
  readonly borderRadiusLeft: {
171
219
  readonly property: "borderRadius";
172
- readonly properties: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
220
+ readonly properties: {
221
+ readonly physical: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
222
+ readonly logical: readonly ["borderStartStartRadius", "borderEndStartRadius"];
223
+ };
224
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
173
225
  readonly scale: "borderRadii";
174
226
  };
175
227
  readonly borderRadiusTop: {
176
228
  readonly property: "borderRadius";
177
- readonly properties: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
229
+ readonly properties: {
230
+ readonly physical: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
231
+ readonly logical: readonly ["borderStartStartRadius", "borderStartEndRadius"];
232
+ };
233
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
178
234
  readonly scale: "borderRadii";
179
235
  };
180
236
  readonly borderRadiusBottom: {
181
237
  readonly property: "borderRadius";
182
- readonly properties: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
238
+ readonly properties: {
239
+ readonly physical: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
240
+ readonly logical: readonly ["borderEndStartRadius", "borderEndEndRadius"];
241
+ };
242
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
183
243
  readonly scale: "borderRadii";
184
244
  };
185
245
  readonly borderRadiusRight: {
186
246
  readonly property: "borderRadius";
187
- readonly properties: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
247
+ readonly properties: {
248
+ readonly physical: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
249
+ readonly logical: readonly ["borderStartEndRadius", "borderEndEndRadius"];
250
+ };
251
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
188
252
  readonly scale: "borderRadii";
189
253
  };
190
254
  readonly borderRadiusTopLeft: {
191
- readonly property: "borderTopLeftRadius";
255
+ readonly property: {
256
+ readonly physical: "borderTopLeftRadius";
257
+ readonly logical: "borderStartStartRadius";
258
+ };
259
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
192
260
  readonly scale: "borderRadii";
193
261
  };
194
262
  readonly borderRadiusTopRight: {
195
- readonly property: "borderTopRightRadius";
263
+ readonly property: {
264
+ readonly physical: "borderTopRightRadius";
265
+ readonly logical: "borderStartEndRadius";
266
+ };
267
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
196
268
  readonly scale: "borderRadii";
197
269
  };
198
270
  readonly borderRadiusBottomRight: {
199
- readonly property: "borderBottomRightRadius";
271
+ readonly property: {
272
+ readonly physical: "borderBottomRightRadius";
273
+ readonly logical: "borderEndEndRadius";
274
+ };
275
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
200
276
  readonly scale: "borderRadii";
201
277
  };
202
278
  readonly borderRadiusBottomLeft: {
203
- readonly property: "borderBottomLeftRadius";
279
+ readonly property: {
280
+ readonly physical: "borderBottomLeftRadius";
281
+ readonly logical: "borderEndStartRadius";
282
+ };
283
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
204
284
  readonly scale: "borderRadii";
205
285
  };
206
286
  readonly borderStyle: {
@@ -208,23 +288,47 @@ export declare const boxProps: import("@codecademy/variance/dist/types/config").
208
288
  };
209
289
  readonly borderStyleX: {
210
290
  readonly property: "borderStyle";
211
- readonly properties: readonly ["borderLeftStyle", "borderRightStyle"];
291
+ readonly properties: {
292
+ readonly physical: readonly ["borderLeftStyle", "borderRightStyle"];
293
+ readonly logical: readonly ["borderInlineStartStyle", "borderInlineEndStyle"];
294
+ };
295
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
212
296
  };
213
297
  readonly borderStyleY: {
214
298
  readonly property: "borderStyle";
215
- readonly properties: readonly ["borderTopStyle", "borderBottomStyle"];
299
+ readonly properties: {
300
+ readonly physical: readonly ["borderTopStyle", "borderBottomStyle"];
301
+ readonly logical: readonly ["borderBlockStartStyle", "borderBlockEndStyle"];
302
+ };
303
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
216
304
  };
217
305
  readonly borderStyleLeft: {
218
- readonly property: "borderLeftStyle";
306
+ readonly property: {
307
+ readonly physical: "borderLeftStyle";
308
+ readonly logical: "borderInlineStartStyle";
309
+ };
310
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
219
311
  };
220
312
  readonly borderStyleRight: {
221
- readonly property: "borderRightStyle";
313
+ readonly property: {
314
+ readonly physical: "borderRightStyle";
315
+ readonly logical: "borderInlineEndStyle";
316
+ };
317
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
222
318
  };
223
319
  readonly borderStyleTop: {
224
- readonly property: "borderTopStyle";
320
+ readonly property: {
321
+ readonly physical: "borderTopStyle";
322
+ readonly logical: "borderBlockStartStyle";
323
+ };
324
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
225
325
  };
226
326
  readonly borderStyleBottom: {
227
- readonly property: "borderBottomStyle";
327
+ readonly property: {
328
+ readonly physical: "borderBottomStyle";
329
+ readonly logical: "borderBlockEndStyle";
330
+ };
331
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
228
332
  };
229
333
  }>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
230
334
  readonly flexBasis: {
@@ -332,28 +436,40 @@ export declare const boxProps: import("@codecademy/variance/dist/types/config").
332
436
  };
333
437
  readonly borderColorX: {
334
438
  readonly property: "borderColor";
335
- readonly properties: readonly ["borderLeftColor", "borderRightColor"];
439
+ readonly properties: {
440
+ readonly physical: readonly ["borderLeftColor", "borderRightColor"];
441
+ readonly logical: readonly ["borderInlineStartColor", "borderInlineEndColor"];
442
+ };
443
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
336
444
  readonly scale: "colors";
337
445
  };
338
446
  readonly borderColorY: {
339
447
  readonly property: "borderColor";
340
- readonly properties: readonly ["borderTopColor", "borderBottomColor"];
448
+ readonly properties: {
449
+ readonly physical: readonly ["borderTopColor", "borderBottomColor"];
450
+ readonly logical: readonly ["borderBlockStartColor", "borderBlockEndColor"];
451
+ };
452
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
341
453
  readonly scale: "colors";
342
454
  };
343
455
  readonly borderColorLeft: {
344
456
  readonly property: "borderLeftColor";
457
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
345
458
  readonly scale: "colors";
346
459
  };
347
460
  readonly borderColorRight: {
348
461
  readonly property: "borderRightColor";
462
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
349
463
  readonly scale: "colors";
350
464
  };
351
465
  readonly borderColorTop: {
352
466
  readonly property: "borderTopColor";
467
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
353
468
  readonly scale: "colors";
354
469
  };
355
470
  readonly borderColorBottom: {
356
471
  readonly property: "borderBottomColor";
472
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
357
473
  readonly scale: "colors";
358
474
  };
359
475
  }>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
@@ -238,28 +238,52 @@ export declare const buttonProps: import("@codecademy/variance/dist/types/config
238
238
  };
239
239
  readonly borderX: {
240
240
  readonly property: "border";
241
- readonly properties: readonly ["borderLeft", "borderRight"];
241
+ readonly properties: {
242
+ readonly physical: readonly ["borderLeft", "borderRight"];
243
+ readonly logical: readonly ["borderInlineStart", "borderInlineEnd"];
244
+ };
245
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
242
246
  readonly scale: "borders";
243
247
  };
244
248
  readonly borderY: {
245
249
  readonly property: "border";
246
- readonly properties: readonly ["borderTop", "borderBottom"];
250
+ readonly properties: {
251
+ readonly physical: readonly ["borderTop", "borderBottom"];
252
+ readonly logical: readonly ["borderBlockStart", "borderBlockEnd"];
253
+ };
254
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
247
255
  readonly scale: "borders";
248
256
  };
249
257
  readonly borderTop: {
250
- readonly property: "borderTop";
258
+ readonly property: {
259
+ readonly physical: "borderTop";
260
+ readonly logical: "borderBlockStart";
261
+ };
262
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
251
263
  readonly scale: "borders";
252
264
  };
253
265
  readonly borderRight: {
254
- readonly property: "borderRight";
266
+ readonly property: {
267
+ readonly physical: "borderRight";
268
+ readonly logical: "borderInlineEnd";
269
+ };
270
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
255
271
  readonly scale: "borders";
256
272
  };
257
273
  readonly borderBottom: {
258
- readonly property: "borderBottom";
274
+ readonly property: {
275
+ readonly physical: "borderBottom";
276
+ readonly logical: "borderBlockEnd";
277
+ };
278
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
259
279
  readonly scale: "borders";
260
280
  };
261
281
  readonly borderLeft: {
262
- readonly property: "borderLeft";
282
+ readonly property: {
283
+ readonly physical: "borderLeft";
284
+ readonly logical: "borderInlineStart";
285
+ };
286
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
263
287
  readonly scale: "borders";
264
288
  };
265
289
  readonly borderWidth: {
@@ -267,23 +291,47 @@ export declare const buttonProps: import("@codecademy/variance/dist/types/config
267
291
  };
268
292
  readonly borderWidthX: {
269
293
  readonly property: "borderWidth";
270
- readonly properties: readonly ["borderLeftWidth", "borderRightWidth"];
294
+ readonly properties: {
295
+ readonly physical: readonly ["borderLeftWidth", "borderRightWidth"];
296
+ readonly logical: readonly ["borderInlineStartWidth", "borderInlineEndWidth"];
297
+ };
298
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
271
299
  };
272
300
  readonly borderWidthY: {
273
301
  readonly property: "borderWidth";
274
- readonly properties: readonly ["borderTopWidth", "borderBottomWidth"];
302
+ readonly properties: {
303
+ readonly physical: readonly ["borderTopWidth", "borderBottomWidth"];
304
+ readonly logical: readonly ["borderBlockStartWidth", "borderBlockEndWidth"];
305
+ };
306
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
275
307
  };
276
308
  readonly borderWidthLeft: {
277
- readonly property: "borderLeftWidth";
309
+ readonly property: {
310
+ readonly physical: "borderLeftWidth";
311
+ readonly logical: "borderInlineStartWidth";
312
+ };
313
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
278
314
  };
279
315
  readonly borderWidthRight: {
280
- readonly property: "borderRightWidth";
316
+ readonly property: {
317
+ readonly physical: "borderRightWidth";
318
+ readonly logical: "borderInlineEndWidth";
319
+ };
320
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
281
321
  };
282
322
  readonly borderWidthTop: {
283
- readonly property: "borderTopWidth";
323
+ readonly property: {
324
+ readonly physical: "borderTopWidth";
325
+ readonly logical: "borderBlockStartWidth";
326
+ };
327
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
284
328
  };
285
329
  readonly borderWidthBottom: {
286
- readonly property: "borderBottomWidth";
330
+ readonly property: {
331
+ readonly physical: "borderBottomWidth";
332
+ readonly logical: "borderBlockEndWidth";
333
+ };
334
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
287
335
  };
288
336
  readonly borderRadius: {
289
337
  readonly property: "borderRadius";
@@ -291,38 +339,70 @@ export declare const buttonProps: import("@codecademy/variance/dist/types/config
291
339
  };
292
340
  readonly borderRadiusLeft: {
293
341
  readonly property: "borderRadius";
294
- readonly properties: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
342
+ readonly properties: {
343
+ readonly physical: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
344
+ readonly logical: readonly ["borderStartStartRadius", "borderEndStartRadius"];
345
+ };
346
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
295
347
  readonly scale: "borderRadii";
296
348
  };
297
349
  readonly borderRadiusTop: {
298
350
  readonly property: "borderRadius";
299
- readonly properties: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
351
+ readonly properties: {
352
+ readonly physical: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
353
+ readonly logical: readonly ["borderStartStartRadius", "borderStartEndRadius"];
354
+ };
355
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
300
356
  readonly scale: "borderRadii";
301
357
  };
302
358
  readonly borderRadiusBottom: {
303
359
  readonly property: "borderRadius";
304
- readonly properties: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
360
+ readonly properties: {
361
+ readonly physical: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
362
+ readonly logical: readonly ["borderEndStartRadius", "borderEndEndRadius"];
363
+ };
364
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
305
365
  readonly scale: "borderRadii";
306
366
  };
307
367
  readonly borderRadiusRight: {
308
368
  readonly property: "borderRadius";
309
- readonly properties: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
369
+ readonly properties: {
370
+ readonly physical: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
371
+ readonly logical: readonly ["borderStartEndRadius", "borderEndEndRadius"];
372
+ };
373
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
310
374
  readonly scale: "borderRadii";
311
375
  };
312
376
  readonly borderRadiusTopLeft: {
313
- readonly property: "borderTopLeftRadius";
377
+ readonly property: {
378
+ readonly physical: "borderTopLeftRadius";
379
+ readonly logical: "borderStartStartRadius";
380
+ };
381
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
314
382
  readonly scale: "borderRadii";
315
383
  };
316
384
  readonly borderRadiusTopRight: {
317
- readonly property: "borderTopRightRadius";
385
+ readonly property: {
386
+ readonly physical: "borderTopRightRadius";
387
+ readonly logical: "borderStartEndRadius";
388
+ };
389
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
318
390
  readonly scale: "borderRadii";
319
391
  };
320
392
  readonly borderRadiusBottomRight: {
321
- readonly property: "borderBottomRightRadius";
393
+ readonly property: {
394
+ readonly physical: "borderBottomRightRadius";
395
+ readonly logical: "borderEndEndRadius";
396
+ };
397
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
322
398
  readonly scale: "borderRadii";
323
399
  };
324
400
  readonly borderRadiusBottomLeft: {
325
- readonly property: "borderBottomLeftRadius";
401
+ readonly property: {
402
+ readonly physical: "borderBottomLeftRadius";
403
+ readonly logical: "borderEndStartRadius";
404
+ };
405
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
326
406
  readonly scale: "borderRadii";
327
407
  };
328
408
  readonly borderStyle: {
@@ -330,23 +410,47 @@ export declare const buttonProps: import("@codecademy/variance/dist/types/config
330
410
  };
331
411
  readonly borderStyleX: {
332
412
  readonly property: "borderStyle";
333
- readonly properties: readonly ["borderLeftStyle", "borderRightStyle"];
413
+ readonly properties: {
414
+ readonly physical: readonly ["borderLeftStyle", "borderRightStyle"];
415
+ readonly logical: readonly ["borderInlineStartStyle", "borderInlineEndStyle"];
416
+ };
417
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
334
418
  };
335
419
  readonly borderStyleY: {
336
420
  readonly property: "borderStyle";
337
- readonly properties: readonly ["borderTopStyle", "borderBottomStyle"];
421
+ readonly properties: {
422
+ readonly physical: readonly ["borderTopStyle", "borderBottomStyle"];
423
+ readonly logical: readonly ["borderBlockStartStyle", "borderBlockEndStyle"];
424
+ };
425
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
338
426
  };
339
427
  readonly borderStyleLeft: {
340
- readonly property: "borderLeftStyle";
428
+ readonly property: {
429
+ readonly physical: "borderLeftStyle";
430
+ readonly logical: "borderInlineStartStyle";
431
+ };
432
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
341
433
  };
342
434
  readonly borderStyleRight: {
343
- readonly property: "borderRightStyle";
435
+ readonly property: {
436
+ readonly physical: "borderRightStyle";
437
+ readonly logical: "borderInlineEndStyle";
438
+ };
439
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
344
440
  };
345
441
  readonly borderStyleTop: {
346
- readonly property: "borderTopStyle";
442
+ readonly property: {
443
+ readonly physical: "borderTopStyle";
444
+ readonly logical: "borderBlockStartStyle";
445
+ };
446
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
347
447
  };
348
448
  readonly borderStyleBottom: {
349
- readonly property: "borderBottomStyle";
449
+ readonly property: {
450
+ readonly physical: "borderBottomStyle";
451
+ readonly logical: "borderBlockEndStyle";
452
+ };
453
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
350
454
  };
351
455
  }>>]>>;
352
456
  export declare const templateVariants: <Variant extends string, Styles>(variants: readonly Variant[], template: (colors: Variant) => Styles) => (props: import("@codecademy/variance/dist/types/config").VariantProps<"variant", unknown> & {