@codecademy/gamut 68.0.1-alpha.4aeb6d.0 → 68.0.1-alpha.588625.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Anchor/index.d.ts +33 -6
- package/dist/Badge/index.d.ts +35 -20
- package/dist/Box/props.d.ts +61 -150
- package/dist/Button/shared/styles.d.ts +59 -136
- package/dist/Card/elements.d.ts +183 -450
- package/dist/Form/elements/Form.d.ts +59 -136
- package/dist/GridForm/GridFormSections/GridFormSectionBreak.d.ts +61 -150
- package/dist/InternalFloatingCard/InternalFloatingCard.d.ts +33 -6
- package/dist/Layout/Column.d.ts +33 -6
- package/dist/List/elements.d.ts +94 -156
- package/dist/Menu/elements.d.ts +61 -150
- package/dist/Pagination/AnimatedPaginationButtons.d.ts +61 -138
- package/dist/Pagination/EllipsisButton.d.ts +5 -5
- package/dist/Pagination/EllipsisButton.js +2 -2
- package/dist/Pagination/index.js +4 -4
- package/dist/Pagination/utils.d.ts +59 -136
- package/dist/Pagination/utils.js +1 -1
- package/dist/Tabs/props.d.ts +33 -6
- package/dist/Tag/types.d.ts +33 -6
- package/dist/Toggle/elements.d.ts +2 -14
- package/dist/Typography/Text.d.ts +35 -20
- package/package.json +7 -7
package/dist/List/elements.d.ts
CHANGED
|
@@ -286,32 +286,59 @@ declare const space: import("@codecademy/variance/dist/types/config").Parser<imp
|
|
|
286
286
|
readonly transform: (value: string | number) => string | 0;
|
|
287
287
|
};
|
|
288
288
|
readonly width: {
|
|
289
|
-
readonly property:
|
|
289
|
+
readonly property: {
|
|
290
|
+
readonly physical: "width";
|
|
291
|
+
readonly logical: "inlineSize";
|
|
292
|
+
};
|
|
293
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
290
294
|
readonly transform: (value: string | number) => string | 0;
|
|
291
295
|
};
|
|
292
296
|
readonly minWidth: {
|
|
293
|
-
readonly property:
|
|
297
|
+
readonly property: {
|
|
298
|
+
readonly physical: "minWidth";
|
|
299
|
+
readonly logical: "minInlineSize";
|
|
300
|
+
};
|
|
301
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
294
302
|
readonly transform: (value: string | number) => string | 0;
|
|
295
303
|
};
|
|
296
304
|
readonly maxWidth: {
|
|
297
|
-
readonly property:
|
|
305
|
+
readonly property: {
|
|
306
|
+
readonly physical: "maxWidth";
|
|
307
|
+
readonly logical: "maxInlineSize";
|
|
308
|
+
};
|
|
309
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
298
310
|
readonly transform: (value: string | number) => string | 0;
|
|
299
311
|
};
|
|
300
312
|
readonly height: {
|
|
301
|
-
readonly property:
|
|
313
|
+
readonly property: {
|
|
314
|
+
readonly physical: "height";
|
|
315
|
+
readonly logical: "blockSize";
|
|
316
|
+
};
|
|
317
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
302
318
|
readonly transform: (value: string | number) => string | 0;
|
|
303
319
|
};
|
|
304
320
|
readonly minHeight: {
|
|
305
|
-
readonly property:
|
|
321
|
+
readonly property: {
|
|
322
|
+
readonly physical: "minHeight";
|
|
323
|
+
readonly logical: "minBlockSize";
|
|
324
|
+
};
|
|
325
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
306
326
|
readonly transform: (value: string | number) => string | 0;
|
|
307
327
|
};
|
|
308
328
|
readonly maxHeight: {
|
|
309
|
-
readonly property:
|
|
329
|
+
readonly property: {
|
|
330
|
+
readonly physical: "maxHeight";
|
|
331
|
+
readonly logical: "maxBlockSize";
|
|
332
|
+
};
|
|
333
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
310
334
|
readonly transform: (value: string | number) => string | 0;
|
|
311
335
|
};
|
|
312
336
|
readonly verticalAlign: {
|
|
313
337
|
readonly property: "verticalAlign";
|
|
314
338
|
};
|
|
339
|
+
readonly direction: {
|
|
340
|
+
readonly property: "direction";
|
|
341
|
+
};
|
|
315
342
|
}>>;
|
|
316
343
|
declare const listVariants: (props: import("@codecademy/variance/dist/types/config").VariantProps<"variant", false | "table" | "default" | "block" | "plain" | "card"> & {
|
|
317
344
|
theme?: import("@emotion/react").Theme | undefined;
|
|
@@ -419,11 +446,19 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
|
|
|
419
446
|
dir?: string | undefined;
|
|
420
447
|
className?: string | undefined;
|
|
421
448
|
height?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
422
|
-
readonly property:
|
|
449
|
+
readonly property: {
|
|
450
|
+
readonly physical: "height";
|
|
451
|
+
readonly logical: "blockSize";
|
|
452
|
+
};
|
|
453
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
423
454
|
readonly transform: (value: string | number) => string | 0;
|
|
424
455
|
}>;
|
|
425
456
|
width?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
426
|
-
readonly property:
|
|
457
|
+
readonly property: {
|
|
458
|
+
readonly physical: "width";
|
|
459
|
+
readonly logical: "inlineSize";
|
|
460
|
+
};
|
|
461
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
427
462
|
readonly transform: (value: string | number) => string | 0;
|
|
428
463
|
}>;
|
|
429
464
|
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
@@ -708,6 +743,9 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
|
|
|
708
743
|
containerType?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
709
744
|
readonly property: "containerType";
|
|
710
745
|
}>;
|
|
746
|
+
direction?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
747
|
+
readonly property: "direction";
|
|
748
|
+
}>;
|
|
711
749
|
display?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
712
750
|
readonly property: "display";
|
|
713
751
|
}>;
|
|
@@ -765,19 +803,35 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
|
|
|
765
803
|
readonly property: "listStyleType";
|
|
766
804
|
}>;
|
|
767
805
|
maxHeight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
768
|
-
readonly property:
|
|
806
|
+
readonly property: {
|
|
807
|
+
readonly physical: "maxHeight";
|
|
808
|
+
readonly logical: "maxBlockSize";
|
|
809
|
+
};
|
|
810
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
769
811
|
readonly transform: (value: string | number) => string | 0;
|
|
770
812
|
}>;
|
|
771
813
|
maxWidth?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
772
|
-
readonly property:
|
|
814
|
+
readonly property: {
|
|
815
|
+
readonly physical: "maxWidth";
|
|
816
|
+
readonly logical: "maxInlineSize";
|
|
817
|
+
};
|
|
818
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
773
819
|
readonly transform: (value: string | number) => string | 0;
|
|
774
820
|
}>;
|
|
775
821
|
minHeight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
776
|
-
readonly property:
|
|
822
|
+
readonly property: {
|
|
823
|
+
readonly physical: "minHeight";
|
|
824
|
+
readonly logical: "minBlockSize";
|
|
825
|
+
};
|
|
826
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
777
827
|
readonly transform: (value: string | number) => string | 0;
|
|
778
828
|
}>;
|
|
779
829
|
minWidth?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
780
|
-
readonly property:
|
|
830
|
+
readonly property: {
|
|
831
|
+
readonly physical: "minWidth";
|
|
832
|
+
readonly logical: "minInlineSize";
|
|
833
|
+
};
|
|
834
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
781
835
|
readonly transform: (value: string | number) => string | 0;
|
|
782
836
|
}>;
|
|
783
837
|
opacity?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -827,11 +881,7 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
|
|
|
827
881
|
readonly property: "backgroundPosition";
|
|
828
882
|
}>;
|
|
829
883
|
borderBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
830
|
-
readonly property:
|
|
831
|
-
readonly physical: "borderBottom";
|
|
832
|
-
readonly logical: "borderBlockEnd";
|
|
833
|
-
};
|
|
834
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
884
|
+
readonly property: "borderBottom";
|
|
835
885
|
readonly scale: "borders";
|
|
836
886
|
}>;
|
|
837
887
|
borderColor?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -839,11 +889,7 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
|
|
|
839
889
|
readonly scale: "colors";
|
|
840
890
|
}>;
|
|
841
891
|
borderLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
842
|
-
readonly property:
|
|
843
|
-
readonly physical: "borderLeft";
|
|
844
|
-
readonly logical: "borderInlineStart";
|
|
845
|
-
};
|
|
846
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
892
|
+
readonly property: "borderLeft";
|
|
847
893
|
readonly scale: "borders";
|
|
848
894
|
}>;
|
|
849
895
|
borderRadius?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -851,22 +897,14 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
|
|
|
851
897
|
readonly scale: "borderRadii";
|
|
852
898
|
}>;
|
|
853
899
|
borderRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
854
|
-
readonly property:
|
|
855
|
-
readonly physical: "borderRight";
|
|
856
|
-
readonly logical: "borderInlineEnd";
|
|
857
|
-
};
|
|
858
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
900
|
+
readonly property: "borderRight";
|
|
859
901
|
readonly scale: "borders";
|
|
860
902
|
}>;
|
|
861
903
|
borderStyle?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
862
904
|
readonly property: "borderStyle";
|
|
863
905
|
}>;
|
|
864
906
|
borderTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
865
|
-
readonly property:
|
|
866
|
-
readonly physical: "borderTop";
|
|
867
|
-
readonly logical: "borderBlockStart";
|
|
868
|
-
};
|
|
869
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
907
|
+
readonly property: "borderTop";
|
|
870
908
|
readonly scale: "borders";
|
|
871
909
|
}>;
|
|
872
910
|
borderWidth?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -1002,177 +1040,89 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
|
|
|
1002
1040
|
}>;
|
|
1003
1041
|
borderX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1004
1042
|
readonly property: "border";
|
|
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;
|
|
1043
|
+
readonly properties: readonly ["borderLeft", "borderRight"];
|
|
1010
1044
|
readonly scale: "borders";
|
|
1011
1045
|
}>;
|
|
1012
1046
|
borderY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1013
1047
|
readonly property: "border";
|
|
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;
|
|
1048
|
+
readonly properties: readonly ["borderTop", "borderBottom"];
|
|
1019
1049
|
readonly scale: "borders";
|
|
1020
1050
|
}>;
|
|
1021
1051
|
borderWidthX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1022
1052
|
readonly property: "borderWidth";
|
|
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;
|
|
1053
|
+
readonly properties: readonly ["borderLeftWidth", "borderRightWidth"];
|
|
1028
1054
|
}>;
|
|
1029
1055
|
borderWidthY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1030
1056
|
readonly property: "borderWidth";
|
|
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;
|
|
1057
|
+
readonly properties: readonly ["borderTopWidth", "borderBottomWidth"];
|
|
1036
1058
|
}>;
|
|
1037
1059
|
borderWidthLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1038
|
-
readonly property:
|
|
1039
|
-
readonly physical: "borderLeftWidth";
|
|
1040
|
-
readonly logical: "borderInlineStartWidth";
|
|
1041
|
-
};
|
|
1042
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1060
|
+
readonly property: "borderLeftWidth";
|
|
1043
1061
|
}>;
|
|
1044
1062
|
borderWidthRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1045
|
-
readonly property:
|
|
1046
|
-
readonly physical: "borderRightWidth";
|
|
1047
|
-
readonly logical: "borderInlineEndWidth";
|
|
1048
|
-
};
|
|
1049
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1063
|
+
readonly property: "borderRightWidth";
|
|
1050
1064
|
}>;
|
|
1051
1065
|
borderWidthTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1052
|
-
readonly property:
|
|
1053
|
-
readonly physical: "borderTopWidth";
|
|
1054
|
-
readonly logical: "borderBlockStartWidth";
|
|
1055
|
-
};
|
|
1056
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1066
|
+
readonly property: "borderTopWidth";
|
|
1057
1067
|
}>;
|
|
1058
1068
|
borderWidthBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1059
|
-
readonly property:
|
|
1060
|
-
readonly physical: "borderBottomWidth";
|
|
1061
|
-
readonly logical: "borderBlockEndWidth";
|
|
1062
|
-
};
|
|
1063
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1069
|
+
readonly property: "borderBottomWidth";
|
|
1064
1070
|
}>;
|
|
1065
1071
|
borderRadiusLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1066
1072
|
readonly property: "borderRadius";
|
|
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;
|
|
1073
|
+
readonly properties: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
|
|
1072
1074
|
readonly scale: "borderRadii";
|
|
1073
1075
|
}>;
|
|
1074
1076
|
borderRadiusTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1075
1077
|
readonly property: "borderRadius";
|
|
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;
|
|
1078
|
+
readonly properties: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
|
|
1081
1079
|
readonly scale: "borderRadii";
|
|
1082
1080
|
}>;
|
|
1083
1081
|
borderRadiusBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1084
1082
|
readonly property: "borderRadius";
|
|
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;
|
|
1083
|
+
readonly properties: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
|
|
1090
1084
|
readonly scale: "borderRadii";
|
|
1091
1085
|
}>;
|
|
1092
1086
|
borderRadiusRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1093
1087
|
readonly property: "borderRadius";
|
|
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;
|
|
1088
|
+
readonly properties: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
|
|
1099
1089
|
readonly scale: "borderRadii";
|
|
1100
1090
|
}>;
|
|
1101
1091
|
borderRadiusTopLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1102
|
-
readonly property:
|
|
1103
|
-
readonly physical: "borderTopLeftRadius";
|
|
1104
|
-
readonly logical: "borderStartStartRadius";
|
|
1105
|
-
};
|
|
1106
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1092
|
+
readonly property: "borderTopLeftRadius";
|
|
1107
1093
|
readonly scale: "borderRadii";
|
|
1108
1094
|
}>;
|
|
1109
1095
|
borderRadiusTopRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1110
|
-
readonly property:
|
|
1111
|
-
readonly physical: "borderTopRightRadius";
|
|
1112
|
-
readonly logical: "borderStartEndRadius";
|
|
1113
|
-
};
|
|
1114
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1096
|
+
readonly property: "borderTopRightRadius";
|
|
1115
1097
|
readonly scale: "borderRadii";
|
|
1116
1098
|
}>;
|
|
1117
1099
|
borderRadiusBottomRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1118
|
-
readonly property:
|
|
1119
|
-
readonly physical: "borderBottomRightRadius";
|
|
1120
|
-
readonly logical: "borderEndEndRadius";
|
|
1121
|
-
};
|
|
1122
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1100
|
+
readonly property: "borderBottomRightRadius";
|
|
1123
1101
|
readonly scale: "borderRadii";
|
|
1124
1102
|
}>;
|
|
1125
1103
|
borderRadiusBottomLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1126
|
-
readonly property:
|
|
1127
|
-
readonly physical: "borderBottomLeftRadius";
|
|
1128
|
-
readonly logical: "borderEndStartRadius";
|
|
1129
|
-
};
|
|
1130
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1104
|
+
readonly property: "borderBottomLeftRadius";
|
|
1131
1105
|
readonly scale: "borderRadii";
|
|
1132
1106
|
}>;
|
|
1133
1107
|
borderStyleX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1134
1108
|
readonly property: "borderStyle";
|
|
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;
|
|
1109
|
+
readonly properties: readonly ["borderLeftStyle", "borderRightStyle"];
|
|
1140
1110
|
}>;
|
|
1141
1111
|
borderStyleY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1142
1112
|
readonly property: "borderStyle";
|
|
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;
|
|
1113
|
+
readonly properties: readonly ["borderTopStyle", "borderBottomStyle"];
|
|
1148
1114
|
}>;
|
|
1149
1115
|
borderStyleLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1150
|
-
readonly property:
|
|
1151
|
-
readonly physical: "borderLeftStyle";
|
|
1152
|
-
readonly logical: "borderInlineStartStyle";
|
|
1153
|
-
};
|
|
1154
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1116
|
+
readonly property: "borderLeftStyle";
|
|
1155
1117
|
}>;
|
|
1156
1118
|
borderStyleRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1157
|
-
readonly property:
|
|
1158
|
-
readonly physical: "borderRightStyle";
|
|
1159
|
-
readonly logical: "borderInlineEndStyle";
|
|
1160
|
-
};
|
|
1161
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1119
|
+
readonly property: "borderRightStyle";
|
|
1162
1120
|
}>;
|
|
1163
1121
|
borderStyleTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1164
|
-
readonly property:
|
|
1165
|
-
readonly physical: "borderTopStyle";
|
|
1166
|
-
readonly logical: "borderBlockStartStyle";
|
|
1167
|
-
};
|
|
1168
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1122
|
+
readonly property: "borderTopStyle";
|
|
1169
1123
|
}>;
|
|
1170
1124
|
borderStyleBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1171
|
-
readonly property:
|
|
1172
|
-
readonly physical: "borderBottomStyle";
|
|
1173
|
-
readonly logical: "borderBlockEndStyle";
|
|
1174
|
-
};
|
|
1175
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1125
|
+
readonly property: "borderBottomStyle";
|
|
1176
1126
|
}>;
|
|
1177
1127
|
dimensions?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1178
1128
|
readonly property: "width";
|
|
@@ -1189,40 +1139,28 @@ export declare const AnimatedListWrapper: import("@emotion/styled").StyledCompon
|
|
|
1189
1139
|
}>;
|
|
1190
1140
|
borderColorX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1191
1141
|
readonly property: "borderColor";
|
|
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;
|
|
1142
|
+
readonly properties: readonly ["borderLeftColor", "borderRightColor"];
|
|
1197
1143
|
readonly scale: "colors";
|
|
1198
1144
|
}>;
|
|
1199
1145
|
borderColorY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1200
1146
|
readonly property: "borderColor";
|
|
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;
|
|
1147
|
+
readonly properties: readonly ["borderTopColor", "borderBottomColor"];
|
|
1206
1148
|
readonly scale: "colors";
|
|
1207
1149
|
}>;
|
|
1208
1150
|
borderColorLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1209
1151
|
readonly property: "borderLeftColor";
|
|
1210
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1211
1152
|
readonly scale: "colors";
|
|
1212
1153
|
}>;
|
|
1213
1154
|
borderColorRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1214
1155
|
readonly property: "borderRightColor";
|
|
1215
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1216
1156
|
readonly scale: "colors";
|
|
1217
1157
|
}>;
|
|
1218
1158
|
borderColorTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1219
1159
|
readonly property: "borderTopColor";
|
|
1220
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1221
1160
|
readonly scale: "colors";
|
|
1222
1161
|
}>;
|
|
1223
1162
|
borderColorBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
1224
1163
|
readonly property: "borderBottomColor";
|
|
1225
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
1226
1164
|
readonly scale: "colors";
|
|
1227
1165
|
}>;
|
|
1228
1166
|
theme?: import("@emotion/react").Theme | undefined;
|