@codecademy/gamut 68.0.1-alpha.470613.0 → 68.0.1-alpha.4746be.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.
@@ -827,7 +827,11 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
827
827
  readonly property: "backgroundPosition";
828
828
  }>;
829
829
  borderBottom?: import("@codecademy/variance/dist/types/config").Scale<{
830
- readonly property: "borderBottom";
830
+ readonly property: {
831
+ readonly physical: "borderBottom";
832
+ readonly logical: "borderBlockEnd";
833
+ };
834
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
831
835
  readonly scale: "borders";
832
836
  }>;
833
837
  borderColor?: import("@codecademy/variance/dist/types/config").Scale<{
@@ -835,7 +839,11 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
835
839
  readonly scale: "colors";
836
840
  }>;
837
841
  borderLeft?: import("@codecademy/variance/dist/types/config").Scale<{
838
- readonly property: "borderLeft";
842
+ readonly property: {
843
+ readonly physical: "borderLeft";
844
+ readonly logical: "borderInlineStart";
845
+ };
846
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
839
847
  readonly scale: "borders";
840
848
  }>;
841
849
  borderRadius?: import("@codecademy/variance/dist/types/config").Scale<{
@@ -843,14 +851,22 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
843
851
  readonly scale: "borderRadii";
844
852
  }>;
845
853
  borderRight?: import("@codecademy/variance/dist/types/config").Scale<{
846
- readonly property: "borderRight";
854
+ readonly property: {
855
+ readonly physical: "borderRight";
856
+ readonly logical: "borderInlineEnd";
857
+ };
858
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
847
859
  readonly scale: "borders";
848
860
  }>;
849
861
  borderStyle?: import("@codecademy/variance/dist/types/config").Scale<{
850
862
  readonly property: "borderStyle";
851
863
  }>;
852
864
  borderTop?: import("@codecademy/variance/dist/types/config").Scale<{
853
- readonly property: "borderTop";
865
+ readonly property: {
866
+ readonly physical: "borderTop";
867
+ readonly logical: "borderBlockStart";
868
+ };
869
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
854
870
  readonly scale: "borders";
855
871
  }>;
856
872
  borderWidth?: import("@codecademy/variance/dist/types/config").Scale<{
@@ -986,89 +1002,177 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
986
1002
  }>;
987
1003
  borderX?: import("@codecademy/variance/dist/types/config").Scale<{
988
1004
  readonly property: "border";
989
- readonly properties: readonly ["borderLeft", "borderRight"];
1005
+ readonly properties: {
1006
+ readonly physical: readonly ["borderLeft", "borderRight"];
1007
+ readonly logical: readonly ["borderInlineStart", "borderInlineEnd"];
1008
+ };
1009
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
990
1010
  readonly scale: "borders";
991
1011
  }>;
992
1012
  borderY?: import("@codecademy/variance/dist/types/config").Scale<{
993
1013
  readonly property: "border";
994
- readonly properties: readonly ["borderTop", "borderBottom"];
1014
+ readonly properties: {
1015
+ readonly physical: readonly ["borderTop", "borderBottom"];
1016
+ readonly logical: readonly ["borderBlockStart", "borderBlockEnd"];
1017
+ };
1018
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
995
1019
  readonly scale: "borders";
996
1020
  }>;
997
1021
  borderWidthX?: import("@codecademy/variance/dist/types/config").Scale<{
998
1022
  readonly property: "borderWidth";
999
- readonly properties: readonly ["borderLeftWidth", "borderRightWidth"];
1023
+ readonly properties: {
1024
+ readonly physical: readonly ["borderLeftWidth", "borderRightWidth"];
1025
+ readonly logical: readonly ["borderInlineStartWidth", "borderInlineEndWidth"];
1026
+ };
1027
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1000
1028
  }>;
1001
1029
  borderWidthY?: import("@codecademy/variance/dist/types/config").Scale<{
1002
1030
  readonly property: "borderWidth";
1003
- readonly properties: readonly ["borderTopWidth", "borderBottomWidth"];
1031
+ readonly properties: {
1032
+ readonly physical: readonly ["borderTopWidth", "borderBottomWidth"];
1033
+ readonly logical: readonly ["borderBlockStartWidth", "borderBlockEndWidth"];
1034
+ };
1035
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1004
1036
  }>;
1005
1037
  borderWidthLeft?: import("@codecademy/variance/dist/types/config").Scale<{
1006
- readonly property: "borderLeftWidth";
1038
+ readonly property: {
1039
+ readonly physical: "borderLeftWidth";
1040
+ readonly logical: "borderInlineStartWidth";
1041
+ };
1042
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1007
1043
  }>;
1008
1044
  borderWidthRight?: import("@codecademy/variance/dist/types/config").Scale<{
1009
- readonly property: "borderRightWidth";
1045
+ readonly property: {
1046
+ readonly physical: "borderRightWidth";
1047
+ readonly logical: "borderInlineEndWidth";
1048
+ };
1049
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1010
1050
  }>;
1011
1051
  borderWidthTop?: import("@codecademy/variance/dist/types/config").Scale<{
1012
- readonly property: "borderTopWidth";
1052
+ readonly property: {
1053
+ readonly physical: "borderTopWidth";
1054
+ readonly logical: "borderBlockStartWidth";
1055
+ };
1056
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1013
1057
  }>;
1014
1058
  borderWidthBottom?: import("@codecademy/variance/dist/types/config").Scale<{
1015
- readonly property: "borderBottomWidth";
1059
+ readonly property: {
1060
+ readonly physical: "borderBottomWidth";
1061
+ readonly logical: "borderBlockEndWidth";
1062
+ };
1063
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1016
1064
  }>;
1017
1065
  borderRadiusLeft?: import("@codecademy/variance/dist/types/config").Scale<{
1018
1066
  readonly property: "borderRadius";
1019
- readonly properties: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
1067
+ readonly properties: {
1068
+ readonly physical: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
1069
+ readonly logical: readonly ["borderStartStartRadius", "borderEndStartRadius"];
1070
+ };
1071
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1020
1072
  readonly scale: "borderRadii";
1021
1073
  }>;
1022
1074
  borderRadiusTop?: import("@codecademy/variance/dist/types/config").Scale<{
1023
1075
  readonly property: "borderRadius";
1024
- readonly properties: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
1076
+ readonly properties: {
1077
+ readonly physical: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
1078
+ readonly logical: readonly ["borderStartStartRadius", "borderStartEndRadius"];
1079
+ };
1080
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1025
1081
  readonly scale: "borderRadii";
1026
1082
  }>;
1027
1083
  borderRadiusBottom?: import("@codecademy/variance/dist/types/config").Scale<{
1028
1084
  readonly property: "borderRadius";
1029
- readonly properties: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
1085
+ readonly properties: {
1086
+ readonly physical: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
1087
+ readonly logical: readonly ["borderEndStartRadius", "borderEndEndRadius"];
1088
+ };
1089
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1030
1090
  readonly scale: "borderRadii";
1031
1091
  }>;
1032
1092
  borderRadiusRight?: import("@codecademy/variance/dist/types/config").Scale<{
1033
1093
  readonly property: "borderRadius";
1034
- readonly properties: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
1094
+ readonly properties: {
1095
+ readonly physical: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
1096
+ readonly logical: readonly ["borderStartEndRadius", "borderEndEndRadius"];
1097
+ };
1098
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1035
1099
  readonly scale: "borderRadii";
1036
1100
  }>;
1037
1101
  borderRadiusTopLeft?: import("@codecademy/variance/dist/types/config").Scale<{
1038
- readonly property: "borderTopLeftRadius";
1102
+ readonly property: {
1103
+ readonly physical: "borderTopLeftRadius";
1104
+ readonly logical: "borderStartStartRadius";
1105
+ };
1106
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1039
1107
  readonly scale: "borderRadii";
1040
1108
  }>;
1041
1109
  borderRadiusTopRight?: import("@codecademy/variance/dist/types/config").Scale<{
1042
- readonly property: "borderTopRightRadius";
1110
+ readonly property: {
1111
+ readonly physical: "borderTopRightRadius";
1112
+ readonly logical: "borderStartEndRadius";
1113
+ };
1114
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1043
1115
  readonly scale: "borderRadii";
1044
1116
  }>;
1045
1117
  borderRadiusBottomRight?: import("@codecademy/variance/dist/types/config").Scale<{
1046
- readonly property: "borderBottomRightRadius";
1118
+ readonly property: {
1119
+ readonly physical: "borderBottomRightRadius";
1120
+ readonly logical: "borderEndEndRadius";
1121
+ };
1122
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1047
1123
  readonly scale: "borderRadii";
1048
1124
  }>;
1049
1125
  borderRadiusBottomLeft?: import("@codecademy/variance/dist/types/config").Scale<{
1050
- readonly property: "borderBottomLeftRadius";
1126
+ readonly property: {
1127
+ readonly physical: "borderBottomLeftRadius";
1128
+ readonly logical: "borderEndStartRadius";
1129
+ };
1130
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1051
1131
  readonly scale: "borderRadii";
1052
1132
  }>;
1053
1133
  borderStyleX?: import("@codecademy/variance/dist/types/config").Scale<{
1054
1134
  readonly property: "borderStyle";
1055
- readonly properties: readonly ["borderLeftStyle", "borderRightStyle"];
1135
+ readonly properties: {
1136
+ readonly physical: readonly ["borderLeftStyle", "borderRightStyle"];
1137
+ readonly logical: readonly ["borderInlineStartStyle", "borderInlineEndStyle"];
1138
+ };
1139
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1056
1140
  }>;
1057
1141
  borderStyleY?: import("@codecademy/variance/dist/types/config").Scale<{
1058
1142
  readonly property: "borderStyle";
1059
- readonly properties: readonly ["borderTopStyle", "borderBottomStyle"];
1143
+ readonly properties: {
1144
+ readonly physical: readonly ["borderTopStyle", "borderBottomStyle"];
1145
+ readonly logical: readonly ["borderBlockStartStyle", "borderBlockEndStyle"];
1146
+ };
1147
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1060
1148
  }>;
1061
1149
  borderStyleLeft?: import("@codecademy/variance/dist/types/config").Scale<{
1062
- readonly property: "borderLeftStyle";
1150
+ readonly property: {
1151
+ readonly physical: "borderLeftStyle";
1152
+ readonly logical: "borderInlineStartStyle";
1153
+ };
1154
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1063
1155
  }>;
1064
1156
  borderStyleRight?: import("@codecademy/variance/dist/types/config").Scale<{
1065
- readonly property: "borderRightStyle";
1157
+ readonly property: {
1158
+ readonly physical: "borderRightStyle";
1159
+ readonly logical: "borderInlineEndStyle";
1160
+ };
1161
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1066
1162
  }>;
1067
1163
  borderStyleTop?: import("@codecademy/variance/dist/types/config").Scale<{
1068
- readonly property: "borderTopStyle";
1164
+ readonly property: {
1165
+ readonly physical: "borderTopStyle";
1166
+ readonly logical: "borderBlockStartStyle";
1167
+ };
1168
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1069
1169
  }>;
1070
1170
  borderStyleBottom?: import("@codecademy/variance/dist/types/config").Scale<{
1071
- readonly property: "borderBottomStyle";
1171
+ readonly property: {
1172
+ readonly physical: "borderBottomStyle";
1173
+ readonly logical: "borderBlockEndStyle";
1174
+ };
1175
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1072
1176
  }>;
1073
1177
  dimensions?: import("@codecademy/variance/dist/types/config").Scale<{
1074
1178
  readonly property: "width";
@@ -1085,28 +1189,40 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
1085
1189
  }>;
1086
1190
  borderColorX?: import("@codecademy/variance/dist/types/config").Scale<{
1087
1191
  readonly property: "borderColor";
1088
- readonly properties: readonly ["borderLeftColor", "borderRightColor"];
1192
+ readonly properties: {
1193
+ readonly physical: readonly ["borderLeftColor", "borderRightColor"];
1194
+ readonly logical: readonly ["borderInlineStartColor", "borderInlineEndColor"];
1195
+ };
1196
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1089
1197
  readonly scale: "colors";
1090
1198
  }>;
1091
1199
  borderColorY?: import("@codecademy/variance/dist/types/config").Scale<{
1092
1200
  readonly property: "borderColor";
1093
- readonly properties: readonly ["borderTopColor", "borderBottomColor"];
1201
+ readonly properties: {
1202
+ readonly physical: readonly ["borderTopColor", "borderBottomColor"];
1203
+ readonly logical: readonly ["borderBlockStartColor", "borderBlockEndColor"];
1204
+ };
1205
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1094
1206
  readonly scale: "colors";
1095
1207
  }>;
1096
1208
  borderColorLeft?: import("@codecademy/variance/dist/types/config").Scale<{
1097
1209
  readonly property: "borderLeftColor";
1210
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1098
1211
  readonly scale: "colors";
1099
1212
  }>;
1100
1213
  borderColorRight?: import("@codecademy/variance/dist/types/config").Scale<{
1101
1214
  readonly property: "borderRightColor";
1215
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1102
1216
  readonly scale: "colors";
1103
1217
  }>;
1104
1218
  borderColorTop?: import("@codecademy/variance/dist/types/config").Scale<{
1105
1219
  readonly property: "borderTopColor";
1220
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1106
1221
  readonly scale: "colors";
1107
1222
  }>;
1108
1223
  borderColorBottom?: import("@codecademy/variance/dist/types/config").Scale<{
1109
1224
  readonly property: "borderBottomColor";
1225
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1110
1226
  readonly scale: "colors";
1111
1227
  }>;
1112
1228
  theme?: import("@emotion/react").Theme | undefined;
@@ -273,28 +273,52 @@ declare const listProps: import("@codecademy/variance/dist/types/config").Parser
273
273
  };
274
274
  readonly borderX: {
275
275
  readonly property: "border";
276
- readonly properties: readonly ["borderLeft", "borderRight"];
276
+ readonly properties: {
277
+ readonly physical: readonly ["borderLeft", "borderRight"];
278
+ readonly logical: readonly ["borderInlineStart", "borderInlineEnd"];
279
+ };
280
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
277
281
  readonly scale: "borders";
278
282
  };
279
283
  readonly borderY: {
280
284
  readonly property: "border";
281
- readonly properties: readonly ["borderTop", "borderBottom"];
285
+ readonly properties: {
286
+ readonly physical: readonly ["borderTop", "borderBottom"];
287
+ readonly logical: readonly ["borderBlockStart", "borderBlockEnd"];
288
+ };
289
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
282
290
  readonly scale: "borders";
283
291
  };
284
292
  readonly borderTop: {
285
- readonly property: "borderTop";
293
+ readonly property: {
294
+ readonly physical: "borderTop";
295
+ readonly logical: "borderBlockStart";
296
+ };
297
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
286
298
  readonly scale: "borders";
287
299
  };
288
300
  readonly borderRight: {
289
- readonly property: "borderRight";
301
+ readonly property: {
302
+ readonly physical: "borderRight";
303
+ readonly logical: "borderInlineEnd";
304
+ };
305
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
290
306
  readonly scale: "borders";
291
307
  };
292
308
  readonly borderBottom: {
293
- readonly property: "borderBottom";
309
+ readonly property: {
310
+ readonly physical: "borderBottom";
311
+ readonly logical: "borderBlockEnd";
312
+ };
313
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
294
314
  readonly scale: "borders";
295
315
  };
296
316
  readonly borderLeft: {
297
- readonly property: "borderLeft";
317
+ readonly property: {
318
+ readonly physical: "borderLeft";
319
+ readonly logical: "borderInlineStart";
320
+ };
321
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
298
322
  readonly scale: "borders";
299
323
  };
300
324
  readonly borderWidth: {
@@ -302,23 +326,47 @@ declare const listProps: import("@codecademy/variance/dist/types/config").Parser
302
326
  };
303
327
  readonly borderWidthX: {
304
328
  readonly property: "borderWidth";
305
- readonly properties: readonly ["borderLeftWidth", "borderRightWidth"];
329
+ readonly properties: {
330
+ readonly physical: readonly ["borderLeftWidth", "borderRightWidth"];
331
+ readonly logical: readonly ["borderInlineStartWidth", "borderInlineEndWidth"];
332
+ };
333
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
306
334
  };
307
335
  readonly borderWidthY: {
308
336
  readonly property: "borderWidth";
309
- readonly properties: readonly ["borderTopWidth", "borderBottomWidth"];
337
+ readonly properties: {
338
+ readonly physical: readonly ["borderTopWidth", "borderBottomWidth"];
339
+ readonly logical: readonly ["borderBlockStartWidth", "borderBlockEndWidth"];
340
+ };
341
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
310
342
  };
311
343
  readonly borderWidthLeft: {
312
- readonly property: "borderLeftWidth";
344
+ readonly property: {
345
+ readonly physical: "borderLeftWidth";
346
+ readonly logical: "borderInlineStartWidth";
347
+ };
348
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
313
349
  };
314
350
  readonly borderWidthRight: {
315
- readonly property: "borderRightWidth";
351
+ readonly property: {
352
+ readonly physical: "borderRightWidth";
353
+ readonly logical: "borderInlineEndWidth";
354
+ };
355
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
316
356
  };
317
357
  readonly borderWidthTop: {
318
- readonly property: "borderTopWidth";
358
+ readonly property: {
359
+ readonly physical: "borderTopWidth";
360
+ readonly logical: "borderBlockStartWidth";
361
+ };
362
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
319
363
  };
320
364
  readonly borderWidthBottom: {
321
- readonly property: "borderBottomWidth";
365
+ readonly property: {
366
+ readonly physical: "borderBottomWidth";
367
+ readonly logical: "borderBlockEndWidth";
368
+ };
369
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
322
370
  };
323
371
  readonly borderRadius: {
324
372
  readonly property: "borderRadius";
@@ -326,38 +374,70 @@ declare const listProps: import("@codecademy/variance/dist/types/config").Parser
326
374
  };
327
375
  readonly borderRadiusLeft: {
328
376
  readonly property: "borderRadius";
329
- readonly properties: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
377
+ readonly properties: {
378
+ readonly physical: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
379
+ readonly logical: readonly ["borderStartStartRadius", "borderEndStartRadius"];
380
+ };
381
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
330
382
  readonly scale: "borderRadii";
331
383
  };
332
384
  readonly borderRadiusTop: {
333
385
  readonly property: "borderRadius";
334
- readonly properties: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
386
+ readonly properties: {
387
+ readonly physical: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
388
+ readonly logical: readonly ["borderStartStartRadius", "borderStartEndRadius"];
389
+ };
390
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
335
391
  readonly scale: "borderRadii";
336
392
  };
337
393
  readonly borderRadiusBottom: {
338
394
  readonly property: "borderRadius";
339
- readonly properties: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
395
+ readonly properties: {
396
+ readonly physical: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
397
+ readonly logical: readonly ["borderEndStartRadius", "borderEndEndRadius"];
398
+ };
399
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
340
400
  readonly scale: "borderRadii";
341
401
  };
342
402
  readonly borderRadiusRight: {
343
403
  readonly property: "borderRadius";
344
- readonly properties: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
404
+ readonly properties: {
405
+ readonly physical: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
406
+ readonly logical: readonly ["borderStartEndRadius", "borderEndEndRadius"];
407
+ };
408
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
345
409
  readonly scale: "borderRadii";
346
410
  };
347
411
  readonly borderRadiusTopLeft: {
348
- readonly property: "borderTopLeftRadius";
412
+ readonly property: {
413
+ readonly physical: "borderTopLeftRadius";
414
+ readonly logical: "borderStartStartRadius";
415
+ };
416
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
349
417
  readonly scale: "borderRadii";
350
418
  };
351
419
  readonly borderRadiusTopRight: {
352
- readonly property: "borderTopRightRadius";
420
+ readonly property: {
421
+ readonly physical: "borderTopRightRadius";
422
+ readonly logical: "borderStartEndRadius";
423
+ };
424
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
353
425
  readonly scale: "borderRadii";
354
426
  };
355
427
  readonly borderRadiusBottomRight: {
356
- readonly property: "borderBottomRightRadius";
428
+ readonly property: {
429
+ readonly physical: "borderBottomRightRadius";
430
+ readonly logical: "borderEndEndRadius";
431
+ };
432
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
357
433
  readonly scale: "borderRadii";
358
434
  };
359
435
  readonly borderRadiusBottomLeft: {
360
- readonly property: "borderBottomLeftRadius";
436
+ readonly property: {
437
+ readonly physical: "borderBottomLeftRadius";
438
+ readonly logical: "borderEndStartRadius";
439
+ };
440
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
361
441
  readonly scale: "borderRadii";
362
442
  };
363
443
  readonly borderStyle: {
@@ -365,23 +445,47 @@ declare const listProps: import("@codecademy/variance/dist/types/config").Parser
365
445
  };
366
446
  readonly borderStyleX: {
367
447
  readonly property: "borderStyle";
368
- readonly properties: readonly ["borderLeftStyle", "borderRightStyle"];
448
+ readonly properties: {
449
+ readonly physical: readonly ["borderLeftStyle", "borderRightStyle"];
450
+ readonly logical: readonly ["borderInlineStartStyle", "borderInlineEndStyle"];
451
+ };
452
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
369
453
  };
370
454
  readonly borderStyleY: {
371
455
  readonly property: "borderStyle";
372
- readonly properties: readonly ["borderTopStyle", "borderBottomStyle"];
456
+ readonly properties: {
457
+ readonly physical: readonly ["borderTopStyle", "borderBottomStyle"];
458
+ readonly logical: readonly ["borderBlockStartStyle", "borderBlockEndStyle"];
459
+ };
460
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
373
461
  };
374
462
  readonly borderStyleLeft: {
375
- readonly property: "borderLeftStyle";
463
+ readonly property: {
464
+ readonly physical: "borderLeftStyle";
465
+ readonly logical: "borderInlineStartStyle";
466
+ };
467
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
376
468
  };
377
469
  readonly borderStyleRight: {
378
- readonly property: "borderRightStyle";
470
+ readonly property: {
471
+ readonly physical: "borderRightStyle";
472
+ readonly logical: "borderInlineEndStyle";
473
+ };
474
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
379
475
  };
380
476
  readonly borderStyleTop: {
381
- readonly property: "borderTopStyle";
477
+ readonly property: {
478
+ readonly physical: "borderTopStyle";
479
+ readonly logical: "borderBlockStartStyle";
480
+ };
481
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
382
482
  };
383
483
  readonly borderStyleBottom: {
384
- readonly property: "borderBottomStyle";
484
+ readonly property: {
485
+ readonly physical: "borderBottomStyle";
486
+ readonly logical: "borderBlockEndStyle";
487
+ };
488
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
385
489
  };
386
490
  }>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
387
491
  readonly color: {
@@ -402,28 +506,40 @@ declare const listProps: import("@codecademy/variance/dist/types/config").Parser
402
506
  };
403
507
  readonly borderColorX: {
404
508
  readonly property: "borderColor";
405
- readonly properties: readonly ["borderLeftColor", "borderRightColor"];
509
+ readonly properties: {
510
+ readonly physical: readonly ["borderLeftColor", "borderRightColor"];
511
+ readonly logical: readonly ["borderInlineStartColor", "borderInlineEndColor"];
512
+ };
513
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
406
514
  readonly scale: "colors";
407
515
  };
408
516
  readonly borderColorY: {
409
517
  readonly property: "borderColor";
410
- readonly properties: readonly ["borderTopColor", "borderBottomColor"];
518
+ readonly properties: {
519
+ readonly physical: readonly ["borderTopColor", "borderBottomColor"];
520
+ readonly logical: readonly ["borderBlockStartColor", "borderBlockEndColor"];
521
+ };
522
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
411
523
  readonly scale: "colors";
412
524
  };
413
525
  readonly borderColorLeft: {
414
526
  readonly property: "borderLeftColor";
527
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
415
528
  readonly scale: "colors";
416
529
  };
417
530
  readonly borderColorRight: {
418
531
  readonly property: "borderRightColor";
532
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
419
533
  readonly scale: "colors";
420
534
  };
421
535
  readonly borderColorTop: {
422
536
  readonly property: "borderTopColor";
537
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
423
538
  readonly scale: "colors";
424
539
  };
425
540
  readonly borderColorBottom: {
426
541
  readonly property: "borderBottomColor";
542
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
427
543
  readonly scale: "colors";
428
544
  };
429
545
  }>>]>>;