@codecademy/gamut-styles 17.11.3-alpha.bd18ee.0 → 17.11.3-alpha.c33732.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.
@@ -15,10 +15,6 @@ export interface GamutProviderProps {
15
15
  * Pass a nonce to the cache to prevent CSP errors
16
16
  */
17
17
  nonce?: string;
18
- /**
19
- * Whether to use logical properties for the theme
20
- */
21
- useLogicalProperties?: boolean;
22
18
  }
23
19
  export declare const GamutContext: React.Context<{
24
20
  hasGlobals?: boolean | undefined;
@@ -18,8 +18,7 @@ export const GamutProvider = ({
18
18
  variables,
19
19
  useGlobals = true,
20
20
  useCache = true,
21
- nonce,
22
- useLogicalProperties = true
21
+ nonce
23
22
  }) => {
24
23
  const {
25
24
  hasGlobals,
@@ -34,8 +33,7 @@ export const GamutProvider = ({
34
33
  } : {})));
35
34
  const contextValue = {
36
35
  hasGlobals: shouldInsertGlobals,
37
- hasCache: shouldCreateCache,
38
- useLogicalProperties
36
+ hasCache: shouldCreateCache
39
37
  };
40
38
  const globals = shouldInsertGlobals && /*#__PURE__*/_jsxs(_Fragment, {
41
39
  children: [/*#__PURE__*/_jsx(Typography, {
@@ -48,19 +46,13 @@ export const GamutProvider = ({
48
46
  variables: variables
49
47
  })]
50
48
  });
51
-
52
- // Merge useLogicalProperties into theme so variance can access it via props.theme
53
- const themeWithLogicalProperties = {
54
- ...theme,
55
- useLogicalProperties
56
- };
57
49
  if (activeCache.current) {
58
50
  return /*#__PURE__*/_jsx(GamutContext.Provider, {
59
51
  value: contextValue,
60
52
  children: /*#__PURE__*/_jsxs(CacheProvider, {
61
53
  value: activeCache.current,
62
54
  children: [globals, /*#__PURE__*/_jsx(ThemeProvider, {
63
- theme: themeWithLogicalProperties,
55
+ theme: theme,
64
56
  children: children
65
57
  })]
66
58
  })
@@ -69,7 +61,7 @@ export const GamutProvider = ({
69
61
  return /*#__PURE__*/_jsxs(GamutContext.Provider, {
70
62
  value: contextValue,
71
63
  children: [globals, /*#__PURE__*/_jsx(ThemeProvider, {
72
- theme: themeWithLogicalProperties,
64
+ theme: theme,
73
65
  children: children
74
66
  })]
75
67
  });
@@ -393,59 +393,32 @@ export declare const layout: {
393
393
  readonly transform: (value: string | number) => string | 0;
394
394
  };
395
395
  readonly width: {
396
- readonly property: {
397
- readonly physical: "width";
398
- readonly logical: "inlineSize";
399
- };
400
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
396
+ readonly property: "width";
401
397
  readonly transform: (value: string | number) => string | 0;
402
398
  };
403
399
  readonly minWidth: {
404
- readonly property: {
405
- readonly physical: "minWidth";
406
- readonly logical: "minInlineSize";
407
- };
408
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
400
+ readonly property: "minWidth";
409
401
  readonly transform: (value: string | number) => string | 0;
410
402
  };
411
403
  readonly maxWidth: {
412
- readonly property: {
413
- readonly physical: "maxWidth";
414
- readonly logical: "maxInlineSize";
415
- };
416
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
404
+ readonly property: "maxWidth";
417
405
  readonly transform: (value: string | number) => string | 0;
418
406
  };
419
407
  readonly height: {
420
- readonly property: {
421
- readonly physical: "height";
422
- readonly logical: "blockSize";
423
- };
424
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
408
+ readonly property: "height";
425
409
  readonly transform: (value: string | number) => string | 0;
426
410
  };
427
411
  readonly minHeight: {
428
- readonly property: {
429
- readonly physical: "minHeight";
430
- readonly logical: "minBlockSize";
431
- };
432
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
412
+ readonly property: "minHeight";
433
413
  readonly transform: (value: string | number) => string | 0;
434
414
  };
435
415
  readonly maxHeight: {
436
- readonly property: {
437
- readonly physical: "maxHeight";
438
- readonly logical: "maxBlockSize";
439
- };
440
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
416
+ readonly property: "maxHeight";
441
417
  readonly transform: (value: string | number) => string | 0;
442
418
  };
443
419
  readonly verticalAlign: {
444
420
  readonly property: "verticalAlign";
445
421
  };
446
- readonly direction: {
447
- readonly property: "direction";
448
- };
449
422
  };
450
423
  export declare const list: {
451
424
  readonly listStyle: {
@@ -504,53 +477,29 @@ export declare const margin: {
504
477
  };
505
478
  readonly mx: {
506
479
  readonly property: "margin";
507
- readonly properties: {
508
- readonly physical: readonly ["marginLeft", "marginRight"];
509
- readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
510
- };
511
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
480
+ readonly properties: readonly ["marginLeft", "marginRight"];
512
481
  readonly scale: "spacing";
513
482
  };
514
483
  readonly my: {
515
484
  readonly property: "margin";
516
- readonly properties: {
517
- readonly physical: readonly ["marginTop", "marginBottom"];
518
- readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
519
- };
520
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
485
+ readonly properties: readonly ["marginTop", "marginBottom"];
521
486
  readonly scale: "spacing";
522
487
  };
523
488
  readonly mt: {
524
- readonly property: {
525
- readonly physical: "marginTop";
526
- readonly logical: "marginBlockStart";
527
- };
489
+ readonly property: "marginTop";
528
490
  readonly scale: "spacing";
529
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
530
491
  };
531
492
  readonly mb: {
532
- readonly property: {
533
- readonly physical: "marginBottom";
534
- readonly logical: "marginBlockEnd";
535
- };
493
+ readonly property: "marginBottom";
536
494
  readonly scale: "spacing";
537
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
538
495
  };
539
496
  readonly mr: {
540
- readonly property: {
541
- readonly physical: "marginRight";
542
- readonly logical: "marginInlineEnd";
543
- };
497
+ readonly property: "marginRight";
544
498
  readonly scale: "spacing";
545
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
546
499
  };
547
500
  readonly ml: {
548
- readonly property: {
549
- readonly physical: "marginLeft";
550
- readonly logical: "marginInlineStart";
551
- };
501
+ readonly property: "marginLeft";
552
502
  readonly scale: "spacing";
553
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
554
503
  };
555
504
  };
556
505
  export declare const padding: {
@@ -560,53 +509,29 @@ export declare const padding: {
560
509
  };
561
510
  readonly px: {
562
511
  readonly property: "padding";
563
- readonly properties: {
564
- readonly physical: readonly ["paddingLeft", "paddingRight"];
565
- readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
566
- };
512
+ readonly properties: readonly ["paddingLeft", "paddingRight"];
567
513
  readonly scale: "spacing";
568
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
569
514
  };
570
515
  readonly py: {
571
516
  readonly property: "padding";
572
- readonly properties: {
573
- readonly physical: readonly ["paddingTop", "paddingBottom"];
574
- readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
575
- };
517
+ readonly properties: readonly ["paddingTop", "paddingBottom"];
576
518
  readonly scale: "spacing";
577
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
578
519
  };
579
520
  readonly pt: {
580
- readonly property: {
581
- readonly physical: "paddingTop";
582
- readonly logical: "paddingBlockStart";
583
- };
521
+ readonly property: "paddingTop";
584
522
  readonly scale: "spacing";
585
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
586
523
  };
587
524
  readonly pb: {
588
- readonly property: {
589
- readonly physical: "paddingBottom";
590
- readonly logical: "paddingBlockEnd";
591
- };
525
+ readonly property: "paddingBottom";
592
526
  readonly scale: "spacing";
593
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
594
527
  };
595
528
  readonly pr: {
596
- readonly property: {
597
- readonly physical: "paddingRight";
598
- readonly logical: "paddingInlineEnd";
599
- };
529
+ readonly property: "paddingRight";
600
530
  readonly scale: "spacing";
601
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
602
531
  };
603
532
  readonly pl: {
604
- readonly property: {
605
- readonly physical: "paddingLeft";
606
- readonly logical: "paddingInlineStart";
607
- };
533
+ readonly property: "paddingLeft";
608
534
  readonly scale: "spacing";
609
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
610
535
  };
611
536
  };
612
537
  export declare const space: {
@@ -616,53 +541,29 @@ export declare const space: {
616
541
  };
617
542
  readonly px: {
618
543
  readonly property: "padding";
619
- readonly properties: {
620
- readonly physical: readonly ["paddingLeft", "paddingRight"];
621
- readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
622
- };
544
+ readonly properties: readonly ["paddingLeft", "paddingRight"];
623
545
  readonly scale: "spacing";
624
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
625
546
  };
626
547
  readonly py: {
627
548
  readonly property: "padding";
628
- readonly properties: {
629
- readonly physical: readonly ["paddingTop", "paddingBottom"];
630
- readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
631
- };
549
+ readonly properties: readonly ["paddingTop", "paddingBottom"];
632
550
  readonly scale: "spacing";
633
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
634
551
  };
635
552
  readonly pt: {
636
- readonly property: {
637
- readonly physical: "paddingTop";
638
- readonly logical: "paddingBlockStart";
639
- };
553
+ readonly property: "paddingTop";
640
554
  readonly scale: "spacing";
641
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
642
555
  };
643
556
  readonly pb: {
644
- readonly property: {
645
- readonly physical: "paddingBottom";
646
- readonly logical: "paddingBlockEnd";
647
- };
557
+ readonly property: "paddingBottom";
648
558
  readonly scale: "spacing";
649
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
650
559
  };
651
560
  readonly pr: {
652
- readonly property: {
653
- readonly physical: "paddingRight";
654
- readonly logical: "paddingInlineEnd";
655
- };
561
+ readonly property: "paddingRight";
656
562
  readonly scale: "spacing";
657
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
658
563
  };
659
564
  readonly pl: {
660
- readonly property: {
661
- readonly physical: "paddingLeft";
662
- readonly logical: "paddingInlineStart";
663
- };
565
+ readonly property: "paddingLeft";
664
566
  readonly scale: "spacing";
665
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
666
567
  };
667
568
  readonly m: {
668
569
  readonly property: "margin";
@@ -670,53 +571,29 @@ export declare const space: {
670
571
  };
671
572
  readonly mx: {
672
573
  readonly property: "margin";
673
- readonly properties: {
674
- readonly physical: readonly ["marginLeft", "marginRight"];
675
- readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
676
- };
677
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
574
+ readonly properties: readonly ["marginLeft", "marginRight"];
678
575
  readonly scale: "spacing";
679
576
  };
680
577
  readonly my: {
681
578
  readonly property: "margin";
682
- readonly properties: {
683
- readonly physical: readonly ["marginTop", "marginBottom"];
684
- readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
685
- };
686
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
579
+ readonly properties: readonly ["marginTop", "marginBottom"];
687
580
  readonly scale: "spacing";
688
581
  };
689
582
  readonly mt: {
690
- readonly property: {
691
- readonly physical: "marginTop";
692
- readonly logical: "marginBlockStart";
693
- };
583
+ readonly property: "marginTop";
694
584
  readonly scale: "spacing";
695
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
696
585
  };
697
586
  readonly mb: {
698
- readonly property: {
699
- readonly physical: "marginBottom";
700
- readonly logical: "marginBlockEnd";
701
- };
587
+ readonly property: "marginBottom";
702
588
  readonly scale: "spacing";
703
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
704
589
  };
705
590
  readonly mr: {
706
- readonly property: {
707
- readonly physical: "marginRight";
708
- readonly logical: "marginInlineEnd";
709
- };
591
+ readonly property: "marginRight";
710
592
  readonly scale: "spacing";
711
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
712
593
  };
713
594
  readonly ml: {
714
- readonly property: {
715
- readonly physical: "marginLeft";
716
- readonly logical: "marginInlineStart";
717
- };
595
+ readonly property: "marginLeft";
718
596
  readonly scale: "spacing";
719
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
720
597
  };
721
598
  };
722
599
  export declare const all: {
@@ -995,59 +872,32 @@ export declare const all: {
995
872
  readonly transform: (value: string | number) => string | 0;
996
873
  };
997
874
  width: {
998
- readonly property: {
999
- readonly physical: "width";
1000
- readonly logical: "inlineSize";
1001
- };
1002
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
875
+ readonly property: "width";
1003
876
  readonly transform: (value: string | number) => string | 0;
1004
877
  };
1005
878
  minWidth: {
1006
- readonly property: {
1007
- readonly physical: "minWidth";
1008
- readonly logical: "minInlineSize";
1009
- };
1010
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
879
+ readonly property: "minWidth";
1011
880
  readonly transform: (value: string | number) => string | 0;
1012
881
  };
1013
882
  maxWidth: {
1014
- readonly property: {
1015
- readonly physical: "maxWidth";
1016
- readonly logical: "maxInlineSize";
1017
- };
1018
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
883
+ readonly property: "maxWidth";
1019
884
  readonly transform: (value: string | number) => string | 0;
1020
885
  };
1021
886
  height: {
1022
- readonly property: {
1023
- readonly physical: "height";
1024
- readonly logical: "blockSize";
1025
- };
1026
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
887
+ readonly property: "height";
1027
888
  readonly transform: (value: string | number) => string | 0;
1028
889
  };
1029
890
  minHeight: {
1030
- readonly property: {
1031
- readonly physical: "minHeight";
1032
- readonly logical: "minBlockSize";
1033
- };
1034
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
891
+ readonly property: "minHeight";
1035
892
  readonly transform: (value: string | number) => string | 0;
1036
893
  };
1037
894
  maxHeight: {
1038
- readonly property: {
1039
- readonly physical: "maxHeight";
1040
- readonly logical: "maxBlockSize";
1041
- };
1042
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
895
+ readonly property: "maxHeight";
1043
896
  readonly transform: (value: string | number) => string | 0;
1044
897
  };
1045
898
  verticalAlign: {
1046
899
  readonly property: "verticalAlign";
1047
900
  };
1048
- direction: {
1049
- readonly property: "direction";
1050
- };
1051
901
  justifyContent: {
1052
902
  readonly property: "justifyContent";
1053
903
  };
@@ -1111,53 +961,29 @@ export declare const all: {
1111
961
  };
1112
962
  px: {
1113
963
  readonly property: "padding";
1114
- readonly properties: {
1115
- readonly physical: readonly ["paddingLeft", "paddingRight"];
1116
- readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
1117
- };
964
+ readonly properties: readonly ["paddingLeft", "paddingRight"];
1118
965
  readonly scale: "spacing";
1119
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1120
966
  };
1121
967
  py: {
1122
968
  readonly property: "padding";
1123
- readonly properties: {
1124
- readonly physical: readonly ["paddingTop", "paddingBottom"];
1125
- readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
1126
- };
969
+ readonly properties: readonly ["paddingTop", "paddingBottom"];
1127
970
  readonly scale: "spacing";
1128
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1129
971
  };
1130
972
  pt: {
1131
- readonly property: {
1132
- readonly physical: "paddingTop";
1133
- readonly logical: "paddingBlockStart";
1134
- };
973
+ readonly property: "paddingTop";
1135
974
  readonly scale: "spacing";
1136
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1137
975
  };
1138
976
  pb: {
1139
- readonly property: {
1140
- readonly physical: "paddingBottom";
1141
- readonly logical: "paddingBlockEnd";
1142
- };
977
+ readonly property: "paddingBottom";
1143
978
  readonly scale: "spacing";
1144
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1145
979
  };
1146
980
  pr: {
1147
- readonly property: {
1148
- readonly physical: "paddingRight";
1149
- readonly logical: "paddingInlineEnd";
1150
- };
981
+ readonly property: "paddingRight";
1151
982
  readonly scale: "spacing";
1152
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1153
983
  };
1154
984
  pl: {
1155
- readonly property: {
1156
- readonly physical: "paddingLeft";
1157
- readonly logical: "paddingInlineStart";
1158
- };
985
+ readonly property: "paddingLeft";
1159
986
  readonly scale: "spacing";
1160
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1161
987
  };
1162
988
  m: {
1163
989
  readonly property: "margin";
@@ -1165,53 +991,29 @@ export declare const all: {
1165
991
  };
1166
992
  mx: {
1167
993
  readonly property: "margin";
1168
- readonly properties: {
1169
- readonly physical: readonly ["marginLeft", "marginRight"];
1170
- readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
1171
- };
1172
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
994
+ readonly properties: readonly ["marginLeft", "marginRight"];
1173
995
  readonly scale: "spacing";
1174
996
  };
1175
997
  my: {
1176
998
  readonly property: "margin";
1177
- readonly properties: {
1178
- readonly physical: readonly ["marginTop", "marginBottom"];
1179
- readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
1180
- };
1181
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
999
+ readonly properties: readonly ["marginTop", "marginBottom"];
1182
1000
  readonly scale: "spacing";
1183
1001
  };
1184
1002
  mt: {
1185
- readonly property: {
1186
- readonly physical: "marginTop";
1187
- readonly logical: "marginBlockStart";
1188
- };
1003
+ readonly property: "marginTop";
1189
1004
  readonly scale: "spacing";
1190
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1191
1005
  };
1192
1006
  mb: {
1193
- readonly property: {
1194
- readonly physical: "marginBottom";
1195
- readonly logical: "marginBlockEnd";
1196
- };
1007
+ readonly property: "marginBottom";
1197
1008
  readonly scale: "spacing";
1198
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1199
1009
  };
1200
1010
  mr: {
1201
- readonly property: {
1202
- readonly physical: "marginRight";
1203
- readonly logical: "marginInlineEnd";
1204
- };
1011
+ readonly property: "marginRight";
1205
1012
  readonly scale: "spacing";
1206
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1207
1013
  };
1208
1014
  ml: {
1209
- readonly property: {
1210
- readonly physical: "marginLeft";
1211
- readonly logical: "marginInlineStart";
1212
- };
1015
+ readonly property: "marginLeft";
1213
1016
  readonly scale: "spacing";
1214
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
1215
1017
  };
1216
1018
  fontFamily: {
1217
1019
  readonly property: "fontFamily";