@everlywell/ui-kit 0.26.0 → 0.27.1
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/index.js +6 -6
- package/index.mjs +760 -737
- package/lib/theme/data-display/Tabs/Tabs.config.d.ts +41 -32
- package/lib/theme/index.d.ts +1697 -26
- package/lib/theme/layout/Grid/Grid.d.ts +2 -1
- package/package.json +1 -1
package/lib/theme/index.d.ts
CHANGED
|
@@ -1015,56 +1015,1727 @@ export declare const theme: {
|
|
|
1015
1015
|
color: string;
|
|
1016
1016
|
border: string;
|
|
1017
1017
|
borderColor: string;
|
|
1018
|
+
_selected: {
|
|
1019
|
+
backgroundColor: string;
|
|
1020
|
+
color: string;
|
|
1021
|
+
borderColor: string;
|
|
1022
|
+
};
|
|
1023
|
+
_disabled: {
|
|
1024
|
+
color: string;
|
|
1025
|
+
backgroundColor: string;
|
|
1026
|
+
cursor: string;
|
|
1027
|
+
};
|
|
1028
|
+
_focusVisible: {
|
|
1029
|
+
outline: string;
|
|
1030
|
+
};
|
|
1031
|
+
};
|
|
1032
|
+
tabpanels: {};
|
|
1033
|
+
tabpanel: {};
|
|
1034
|
+
} | undefined;
|
|
1035
|
+
sizes?: {
|
|
1036
|
+
md: {
|
|
1037
|
+
tab: {
|
|
1038
|
+
fontSize: string;
|
|
1039
|
+
fontWeight: string;
|
|
1040
|
+
lineHeight: string;
|
|
1041
|
+
paddingY: number;
|
|
1042
|
+
paddingX: number;
|
|
1043
|
+
_first: {
|
|
1044
|
+
borderLeftRadius: string;
|
|
1045
|
+
};
|
|
1046
|
+
_last: {
|
|
1047
|
+
borderRightRadius: string;
|
|
1048
|
+
};
|
|
1049
|
+
};
|
|
1050
|
+
tablist: {
|
|
1051
|
+
marginBottom: number;
|
|
1052
|
+
};
|
|
1053
|
+
};
|
|
1054
|
+
lg: {
|
|
1055
|
+
tab: {
|
|
1056
|
+
fontSize: string;
|
|
1057
|
+
fontWeight: string;
|
|
1058
|
+
lineHeight: string;
|
|
1059
|
+
paddingY: number;
|
|
1060
|
+
paddingX: number;
|
|
1061
|
+
_first: {
|
|
1062
|
+
borderLeftRadius: string;
|
|
1063
|
+
};
|
|
1064
|
+
_last: {
|
|
1065
|
+
borderRightRadius: string;
|
|
1066
|
+
};
|
|
1067
|
+
};
|
|
1068
|
+
tablist: {
|
|
1069
|
+
marginBottom: number;
|
|
1070
|
+
};
|
|
1071
|
+
};
|
|
1072
|
+
} | undefined;
|
|
1073
|
+
variants?: {} | undefined;
|
|
1074
|
+
defaultProps?: {
|
|
1075
|
+
size?: "md" | "lg" | undefined;
|
|
1076
|
+
variant?: undefined;
|
|
1077
|
+
colorScheme?: string | undefined;
|
|
1078
|
+
} | undefined;
|
|
1079
|
+
parts: ("tab" | "tablist" | "tabpanel" | "tabpanels" | "root" | "indicator")[];
|
|
1080
|
+
};
|
|
1081
|
+
Tag: {
|
|
1082
|
+
baseStyle?: {
|
|
1083
|
+
container: {
|
|
1084
|
+
fontWeight: string;
|
|
1085
|
+
borderRadius: string;
|
|
1086
|
+
};
|
|
1087
|
+
label: {};
|
|
1088
|
+
closeButton: {};
|
|
1089
|
+
} | undefined;
|
|
1090
|
+
sizes?: {
|
|
1091
|
+
sm: {
|
|
1092
|
+
container: {
|
|
1093
|
+
paddingX: ("2" | "3")[];
|
|
1094
|
+
paddingY: ("1" | "5px")[];
|
|
1095
|
+
fontSize: ("xs" | "sm")[];
|
|
1096
|
+
};
|
|
1097
|
+
label: {
|
|
1098
|
+
fontSize: ("xs" | "sm")[];
|
|
1099
|
+
};
|
|
1100
|
+
closeButton: {};
|
|
1101
|
+
};
|
|
1102
|
+
md: {
|
|
1103
|
+
container: {
|
|
1104
|
+
paddingX: ("3" | "4")[];
|
|
1105
|
+
paddingY: ("6px" | "5px")[];
|
|
1106
|
+
fontSize: ("sm" | "md")[];
|
|
1107
|
+
};
|
|
1108
|
+
label: {
|
|
1109
|
+
fontSize: ("sm" | "md")[];
|
|
1110
|
+
};
|
|
1111
|
+
closeButton: {};
|
|
1112
|
+
};
|
|
1113
|
+
} | undefined;
|
|
1114
|
+
variants?: {
|
|
1115
|
+
primary: {
|
|
1116
|
+
container: {
|
|
1117
|
+
backgroundColor: string;
|
|
1118
|
+
color: string;
|
|
1119
|
+
};
|
|
1120
|
+
label: {
|
|
1121
|
+
backgroundColor: string;
|
|
1122
|
+
color: string;
|
|
1123
|
+
};
|
|
1124
|
+
closeButton: {
|
|
1125
|
+
color: string;
|
|
1126
|
+
_hover: {
|
|
1127
|
+
color: string;
|
|
1128
|
+
};
|
|
1129
|
+
};
|
|
1130
|
+
};
|
|
1131
|
+
secondary: {
|
|
1132
|
+
container: {
|
|
1133
|
+
backgroundColor: string;
|
|
1134
|
+
color: string;
|
|
1135
|
+
};
|
|
1136
|
+
label: {
|
|
1137
|
+
backgroundColor: string;
|
|
1138
|
+
color: string;
|
|
1139
|
+
};
|
|
1140
|
+
closeButton: {
|
|
1141
|
+
color: string;
|
|
1142
|
+
_hover: {
|
|
1143
|
+
color: string;
|
|
1144
|
+
};
|
|
1145
|
+
};
|
|
1146
|
+
};
|
|
1147
|
+
tertiary: {
|
|
1148
|
+
container: {
|
|
1149
|
+
backgroundColor: string;
|
|
1150
|
+
color: string;
|
|
1151
|
+
};
|
|
1152
|
+
label: {
|
|
1153
|
+
backgroundColor: string;
|
|
1154
|
+
color: string;
|
|
1155
|
+
};
|
|
1156
|
+
closeButton: {
|
|
1157
|
+
color: string;
|
|
1158
|
+
_hover: {
|
|
1159
|
+
color: string;
|
|
1160
|
+
};
|
|
1161
|
+
};
|
|
1162
|
+
};
|
|
1163
|
+
callout: {
|
|
1164
|
+
container: {
|
|
1165
|
+
backgroundColor: string;
|
|
1166
|
+
color: string;
|
|
1167
|
+
};
|
|
1168
|
+
label: {
|
|
1169
|
+
backgroundColor: string;
|
|
1170
|
+
color: string;
|
|
1171
|
+
};
|
|
1172
|
+
closeButton: {
|
|
1173
|
+
color: string;
|
|
1174
|
+
_hover: {
|
|
1175
|
+
color: string;
|
|
1176
|
+
};
|
|
1177
|
+
};
|
|
1178
|
+
};
|
|
1179
|
+
disabled: {
|
|
1180
|
+
container: {
|
|
1181
|
+
backgroundColor: string;
|
|
1182
|
+
color: string;
|
|
1183
|
+
};
|
|
1184
|
+
label: {
|
|
1185
|
+
backgroundColor: string;
|
|
1186
|
+
color: string;
|
|
1187
|
+
};
|
|
1188
|
+
closeButton: {
|
|
1189
|
+
color: string;
|
|
1190
|
+
_hover: {
|
|
1191
|
+
color: string;
|
|
1192
|
+
};
|
|
1193
|
+
};
|
|
1194
|
+
};
|
|
1195
|
+
cluster: ({ size }: import("@chakra-ui/styled-system").StyleFunctionProps) => {
|
|
1196
|
+
container: {
|
|
1197
|
+
m?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1198
|
+
margin?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1199
|
+
mt?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1200
|
+
marginBlockStart?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1201
|
+
marginTop?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1202
|
+
mr?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1203
|
+
marginInlineEnd?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1204
|
+
marginEnd?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1205
|
+
me?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1206
|
+
marginRight?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1207
|
+
mb?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1208
|
+
marginBlockEnd?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1209
|
+
marginBottom?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1210
|
+
ml?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1211
|
+
marginInlineStart?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1212
|
+
marginStart?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1213
|
+
ms?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1214
|
+
marginLeft?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1215
|
+
mx?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1216
|
+
marginInline?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1217
|
+
marginX?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1218
|
+
my?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1219
|
+
marginBlock?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1220
|
+
marginY?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1221
|
+
p?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1222
|
+
padding?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1223
|
+
pt?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1224
|
+
paddingBlockStart?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1225
|
+
paddingTop?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1226
|
+
pr?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1227
|
+
paddingInlineEnd?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1228
|
+
paddingEnd?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1229
|
+
pe?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1230
|
+
paddingRight?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1231
|
+
pb?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1232
|
+
paddingBlockEnd?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1233
|
+
paddingBottom?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1234
|
+
pl?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1235
|
+
paddingInlineStart?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1236
|
+
paddingStart?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1237
|
+
ps?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1238
|
+
paddingLeft?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1239
|
+
px?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1240
|
+
paddingInline?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1241
|
+
paddingX?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1242
|
+
py?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1243
|
+
paddingBlock?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1244
|
+
paddingY?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1245
|
+
textColor?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Color | "tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating"> | undefined;
|
|
1246
|
+
color: string | import("@chakra-ui/styled-system").ResponsiveArray<import("csstype").Property.Color | "tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating"> | Partial<Record<string, import("csstype").Property.Color | "tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating">>;
|
|
1247
|
+
fill?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Color | "tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating"> | undefined;
|
|
1248
|
+
stroke?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Color | "tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating"> | undefined;
|
|
1249
|
+
transition?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Transition<string & {}>> | undefined;
|
|
1250
|
+
transitionProperty?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.TransitionProperty> | undefined;
|
|
1251
|
+
transitionTimingFunction?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.TransitionTimingFunction> | undefined;
|
|
1252
|
+
transitionDuration?: import("@chakra-ui/styled-system").ResponsiveValue<string> | undefined;
|
|
1253
|
+
transitionDelay?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.TransitionDelay<string & {}>> | undefined;
|
|
1254
|
+
animation?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Animation<string & {}>> | undefined;
|
|
1255
|
+
willChange?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.WillChange> | undefined;
|
|
1256
|
+
fontWeight?: import("@chakra-ui/styled-system").ResponsiveValue<number | "bold" | (string & {}) | "black" | "normal" | "thin" | "xlight" | "light" | "medium" | "semiBold" | "xbold"> | undefined;
|
|
1257
|
+
lineHeight?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | "body" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "normal" | (number & {}) | "shorter" | "short" | "tall"> | undefined;
|
|
1258
|
+
letterSpacing?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "normal" | "tighter" | "tight" | "wide" | "wider" | "widest"> | undefined;
|
|
1259
|
+
fontSize?: import("@chakra-ui/styled-system").ResponsiveValue<number | "small" | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xx-small" | "xxx-large" | "larger" | "smaller" | "3xs" | "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl" | "10xl" | "11xl"> | undefined;
|
|
1260
|
+
fontFamily?: import("@chakra-ui/styled-system").ResponsiveValue<"body" | "heading" | import("csstype").Property.FontFamily | "mono"> | undefined;
|
|
1261
|
+
textAlign?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.TextAlign> | undefined;
|
|
1262
|
+
fontStyle?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.FontStyle> | undefined;
|
|
1263
|
+
textIndent?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.TextIndent<0 | (string & {})>> | undefined;
|
|
1264
|
+
wordBreak?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.WordBreak> | undefined;
|
|
1265
|
+
overflowWrap?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.OverflowWrap> | undefined;
|
|
1266
|
+
textOverflow?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.TextOverflow> | undefined;
|
|
1267
|
+
textTransform?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.TextTransform> | undefined;
|
|
1268
|
+
whiteSpace?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.WhiteSpace> | undefined;
|
|
1269
|
+
noOfLines?: import("@chakra-ui/styled-system").ResponsiveValue<number> | undefined;
|
|
1270
|
+
isTruncated?: boolean | undefined;
|
|
1271
|
+
alignItems?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.AlignItems> | undefined;
|
|
1272
|
+
alignContent?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.AlignContent> | undefined;
|
|
1273
|
+
justifyItems?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.JustifyItems> | undefined;
|
|
1274
|
+
justifyContent?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.JustifyContent> | undefined;
|
|
1275
|
+
flexWrap?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.FlexWrap> | undefined;
|
|
1276
|
+
flexFlow?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.FlexFlow> | undefined;
|
|
1277
|
+
flexBasis?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.FlexBasis<string | number>> | undefined;
|
|
1278
|
+
flexDirection?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.FlexDirection> | undefined;
|
|
1279
|
+
flexDir?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.FlexDirection> | undefined;
|
|
1280
|
+
flex?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Flex<string | number>> | undefined;
|
|
1281
|
+
gap?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Gap<string | number>> | undefined;
|
|
1282
|
+
rowGap?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.RowGap<string | number>> | undefined;
|
|
1283
|
+
columnGap?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.ColumnGap<string | number>> | undefined;
|
|
1284
|
+
justifySelf?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.JustifySelf> | undefined;
|
|
1285
|
+
alignSelf?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.AlignSelf> | undefined;
|
|
1286
|
+
order?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Order> | undefined;
|
|
1287
|
+
flexGrow?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.FlexGrow> | undefined;
|
|
1288
|
+
flexShrink?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.FlexShrink> | undefined;
|
|
1289
|
+
placeItems?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.PlaceItems> | undefined;
|
|
1290
|
+
placeContent?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.PlaceContent> | undefined;
|
|
1291
|
+
placeSelf?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.PlaceSelf> | undefined;
|
|
1292
|
+
transform?: import("@chakra-ui/styled-system").ResponsiveValue<"auto" | import("csstype").Property.Transform | "auto-gpu"> | undefined;
|
|
1293
|
+
transformOrigin?: import("@chakra-ui/styled-system").ResponsiveValue<number | "center" | "max" | "min" | (string & {}) | "bottom" | "left" | "right" | "top" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "full"> | undefined;
|
|
1294
|
+
clipPath?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.ClipPath> | undefined;
|
|
1295
|
+
translateX?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1296
|
+
translateY?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1297
|
+
rotate?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1298
|
+
skewX?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1299
|
+
skewY?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1300
|
+
scaleX?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1301
|
+
scaleY?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1302
|
+
scale?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1303
|
+
gridGap?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1304
|
+
gridColumnGap?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1305
|
+
gridRowGap?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1306
|
+
gridColumnStart?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.GridColumnStart> | undefined;
|
|
1307
|
+
gridRowStart?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.GridRowStart> | undefined;
|
|
1308
|
+
gridRowEnd?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.GridRowEnd> | undefined;
|
|
1309
|
+
gridTemplate?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.GridTemplate> | undefined;
|
|
1310
|
+
gridColumnEnd?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.GridColumnEnd> | undefined;
|
|
1311
|
+
gridColumn?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.GridColumn> | undefined;
|
|
1312
|
+
gridRow?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.GridRow> | undefined;
|
|
1313
|
+
gridAutoFlow?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.GridAutoFlow> | undefined;
|
|
1314
|
+
gridAutoColumns?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.GridAutoColumns<0 | (string & {})>> | undefined;
|
|
1315
|
+
gridAutoRows?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.GridAutoRows<0 | (string & {})>> | undefined;
|
|
1316
|
+
gridTemplateColumns?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.GridTemplateColumns<0 | (string & {})>> | undefined;
|
|
1317
|
+
gridTemplateRows?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.GridTemplateRows<0 | (string & {})>> | undefined;
|
|
1318
|
+
gridTemplateAreas?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.GridTemplateAreas> | undefined;
|
|
1319
|
+
gridArea?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.GridArea> | undefined;
|
|
1320
|
+
filter?: import("@chakra-ui/styled-system").ResponsiveValue<"auto" | import("csstype").Property.Filter> | undefined;
|
|
1321
|
+
blur?: import("@chakra-ui/styled-system").ResponsiveValue<{} | "base" | "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl"> | undefined;
|
|
1322
|
+
brightness?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1323
|
+
contrast?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1324
|
+
hueRotate?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1325
|
+
invert?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1326
|
+
saturate?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1327
|
+
dropShadow?: import("@chakra-ui/styled-system").ResponsiveValue<"base" | "dialog" | "outline" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | import("csstype").Property.BoxShadow | "inner" | "dark-lg"> | undefined;
|
|
1328
|
+
backdropFilter?: import("@chakra-ui/styled-system").ResponsiveValue<"auto" | import("csstype").Property.BackdropFilter> | undefined;
|
|
1329
|
+
backdropBlur?: import("@chakra-ui/styled-system").ResponsiveValue<{} | "base" | "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl"> | undefined;
|
|
1330
|
+
backdropBrightness?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1331
|
+
backdropContrast?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1332
|
+
backdropHueRotate?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1333
|
+
backdropInvert?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1334
|
+
backdropSaturate?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1335
|
+
display?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Display> | undefined;
|
|
1336
|
+
hideFrom?: import("@chakra-ui/styled-system").ResponsiveValue<"base" | (string & {}) | "tablet" | "largeTablet" | "desktop" | "largeDesktop"> | undefined;
|
|
1337
|
+
hideBelow?: import("@chakra-ui/styled-system").ResponsiveValue<"base" | (string & {}) | "tablet" | "largeTablet" | "desktop" | "largeDesktop"> | undefined;
|
|
1338
|
+
width?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "fit-content" | "max-content" | "min-content" | "full" | "-webkit-fit-content" | "-webkit-max-content" | "intrinsic" | "min-intrinsic"> | undefined;
|
|
1339
|
+
w?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "fit-content" | "max-content" | "min-content" | "full" | "-webkit-fit-content" | "-webkit-max-content" | "intrinsic" | "min-intrinsic"> | undefined;
|
|
1340
|
+
inlineSize?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "fit-content" | "max-content" | "min-content" | "full" | "-webkit-fill-available"> | undefined;
|
|
1341
|
+
boxSize?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "fit-content" | "max-content" | "min-content" | "full" | "-webkit-fit-content" | "-webkit-max-content" | "intrinsic" | "min-intrinsic"> | undefined;
|
|
1342
|
+
maxWidth?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "fit-content" | "max-content" | "min-content" | "full" | "-webkit-fit-content" | "-webkit-max-content" | "intrinsic" | "-webkit-min-content"> | undefined;
|
|
1343
|
+
maxW?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "fit-content" | "max-content" | "min-content" | "full" | "-webkit-fit-content" | "-webkit-max-content" | "intrinsic" | "-webkit-min-content"> | undefined;
|
|
1344
|
+
maxInlineSize?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "fit-content" | "max-content" | "min-content" | "full" | "-webkit-fill-available"> | undefined;
|
|
1345
|
+
minWidth?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "fit-content" | "max-content" | "min-content" | "full" | "-webkit-fit-content" | "-webkit-max-content" | "intrinsic" | "min-intrinsic" | "-webkit-fill-available" | "-webkit-min-content"> | undefined;
|
|
1346
|
+
minW?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "fit-content" | "max-content" | "min-content" | "full" | "-webkit-fit-content" | "-webkit-max-content" | "intrinsic" | "min-intrinsic" | "-webkit-fill-available" | "-webkit-min-content"> | undefined;
|
|
1347
|
+
minInlineSize?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "fit-content" | "max-content" | "min-content" | "full" | "-webkit-fill-available"> | undefined;
|
|
1348
|
+
height?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-max-content" | "-moz-min-content" | "fit-content" | "max-content" | "min-content" | "full" | "-webkit-fit-content"> | undefined;
|
|
1349
|
+
h?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-max-content" | "-moz-min-content" | "fit-content" | "max-content" | "min-content" | "full" | "-webkit-fit-content"> | undefined;
|
|
1350
|
+
blockSize?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "fit-content" | "max-content" | "min-content" | "full" | "-webkit-fill-available"> | undefined;
|
|
1351
|
+
maxHeight?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "fit-content" | "max-content" | "min-content" | "full" | "-webkit-fit-content" | "-webkit-max-content" | "intrinsic" | "-webkit-min-content"> | undefined;
|
|
1352
|
+
maxH?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "fit-content" | "max-content" | "min-content" | "full" | "-webkit-fit-content" | "-webkit-max-content" | "intrinsic" | "-webkit-min-content"> | undefined;
|
|
1353
|
+
maxBlockSize?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-max-content" | "-moz-min-content" | "fit-content" | "max-content" | "min-content" | "full" | "-webkit-fill-available"> | undefined;
|
|
1354
|
+
minHeight?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "fit-content" | "max-content" | "min-content" | "full" | "-webkit-fit-content" | "-webkit-max-content" | "intrinsic" | "-webkit-min-content"> | undefined;
|
|
1355
|
+
minH?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "fit-content" | "max-content" | "min-content" | "full" | "-webkit-fit-content" | "-webkit-max-content" | "intrinsic" | "-webkit-min-content"> | undefined;
|
|
1356
|
+
minBlockSize?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-max-content" | "-moz-min-content" | "fit-content" | "max-content" | "min-content" | "full" | "-webkit-fill-available"> | undefined;
|
|
1357
|
+
verticalAlign?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.VerticalAlign<string | number>> | undefined;
|
|
1358
|
+
overflow?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Overflow> | undefined;
|
|
1359
|
+
overflowX?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.OverflowX> | undefined;
|
|
1360
|
+
overflowY?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.OverflowY> | undefined;
|
|
1361
|
+
boxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
1362
|
+
boxDecorationBreak?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BoxDecorationBreak> | undefined;
|
|
1363
|
+
float?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Float> | undefined;
|
|
1364
|
+
objectFit?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.ObjectFit> | undefined;
|
|
1365
|
+
objectPosition?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.ObjectPosition<string | number>> | undefined;
|
|
1366
|
+
overscrollBehavior?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.OverscrollBehavior> | undefined;
|
|
1367
|
+
overscroll?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.OverscrollBehavior> | undefined;
|
|
1368
|
+
overscrollBehaviorX?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.OverscrollBehaviorX> | undefined;
|
|
1369
|
+
overscrollX?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.OverscrollBehaviorX> | undefined;
|
|
1370
|
+
overscrollBehaviorY?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.OverscrollBehaviorY> | undefined;
|
|
1371
|
+
overscrollY?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.OverscrollBehaviorY> | undefined;
|
|
1372
|
+
visibility?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Visibility> | undefined;
|
|
1373
|
+
isolation?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Isolation> | undefined;
|
|
1374
|
+
aspectRatio?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.AspectRatio> | undefined;
|
|
1375
|
+
border?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inset" | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "thin" | "medium" | "hidden" | "thick" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | "1px" | "2px" | "4px" | "8px"> | undefined;
|
|
1376
|
+
borderWidth?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "thin" | "medium" | "thick"> | undefined;
|
|
1377
|
+
borderStyle?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BorderStyle> | undefined;
|
|
1378
|
+
borderColor?: import("@chakra-ui/styled-system").ResponsiveValue<"tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating" | import("csstype").Property.BorderTopColor> | undefined;
|
|
1379
|
+
borderRadius: string | number | import("@chakra-ui/styled-system").ResponsiveArray<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | Partial<Record<string, number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full">>;
|
|
1380
|
+
rounded?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1381
|
+
borderTop?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inset" | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "thin" | "medium" | "hidden" | "thick" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | "1px" | "2px" | "4px" | "8px"> | undefined;
|
|
1382
|
+
borderBlockStart?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inset" | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "thin" | "medium" | "hidden" | "thick" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid"> | undefined;
|
|
1383
|
+
borderTopWidth?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "thin" | "medium" | "thick"> | undefined;
|
|
1384
|
+
borderBlockStartWidth?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "thin" | "medium" | "thick"> | undefined;
|
|
1385
|
+
borderBottomWidth?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "thin" | "medium" | "thick"> | undefined;
|
|
1386
|
+
borderBlockEndWidth?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "thin" | "medium" | "thick"> | undefined;
|
|
1387
|
+
borderLeftWidth?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "thin" | "medium" | "thick"> | undefined;
|
|
1388
|
+
borderStartWidth?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "thin" | "medium" | "thick"> | undefined;
|
|
1389
|
+
borderInlineStartWidth?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "thin" | "medium" | "thick"> | undefined;
|
|
1390
|
+
borderRightWidth?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "thin" | "medium" | "thick"> | undefined;
|
|
1391
|
+
borderEndWidth?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "thin" | "medium" | "thick"> | undefined;
|
|
1392
|
+
borderInlineEndWidth?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "thin" | "medium" | "thick"> | undefined;
|
|
1393
|
+
borderTopStyle?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BorderTopStyle> | undefined;
|
|
1394
|
+
borderBlockStartStyle?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BorderBlockStartStyle> | undefined;
|
|
1395
|
+
borderBottomStyle?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BorderBottomStyle> | undefined;
|
|
1396
|
+
borderBlockEndStyle?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BorderBlockEndStyle> | undefined;
|
|
1397
|
+
borderLeftStyle?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BorderLeftStyle> | undefined;
|
|
1398
|
+
borderStartStyle?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BorderInlineStartStyle> | undefined;
|
|
1399
|
+
borderInlineStartStyle?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BorderInlineStartStyle> | undefined;
|
|
1400
|
+
borderRightStyle?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BorderRightStyle> | undefined;
|
|
1401
|
+
borderEndStyle?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BorderInlineEndStyle> | undefined;
|
|
1402
|
+
borderInlineEndStyle?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BorderInlineEndStyle> | undefined;
|
|
1403
|
+
borderTopColor?: import("@chakra-ui/styled-system").ResponsiveValue<"tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating" | import("csstype").Property.BorderTopColor> | undefined;
|
|
1404
|
+
borderBlockStartColor?: import("@chakra-ui/styled-system").ResponsiveValue<"tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating" | import("csstype").Property.BorderBlockStartColor> | undefined;
|
|
1405
|
+
borderBottomColor?: import("@chakra-ui/styled-system").ResponsiveValue<"tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating" | import("csstype").Property.BorderBottomColor> | undefined;
|
|
1406
|
+
borderBlockEndColor?: import("@chakra-ui/styled-system").ResponsiveValue<"tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating" | import("csstype").Property.BorderBlockEndColor> | undefined;
|
|
1407
|
+
borderLeftColor?: import("@chakra-ui/styled-system").ResponsiveValue<"tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating" | import("csstype").Property.BorderLeftColor> | undefined;
|
|
1408
|
+
borderStartColor?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BorderInlineStartColor> | undefined;
|
|
1409
|
+
borderInlineStartColor?: import("@chakra-ui/styled-system").ResponsiveValue<"tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating" | import("csstype").Property.BorderInlineStartColor> | undefined;
|
|
1410
|
+
borderRightColor?: import("@chakra-ui/styled-system").ResponsiveValue<"tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating" | import("csstype").Property.BorderRightColor> | undefined;
|
|
1411
|
+
borderEndColor?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BorderInlineEndColor> | undefined;
|
|
1412
|
+
borderInlineEndColor?: import("@chakra-ui/styled-system").ResponsiveValue<"tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating" | import("csstype").Property.BorderInlineEndColor> | undefined;
|
|
1413
|
+
borderRight?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inset" | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "thin" | "medium" | "hidden" | "thick" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | "1px" | "2px" | "4px" | "8px"> | undefined;
|
|
1414
|
+
borderEnd?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inset" | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "thin" | "medium" | "hidden" | "thick" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid"> | undefined;
|
|
1415
|
+
borderInlineEnd?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inset" | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "thin" | "medium" | "hidden" | "thick" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid"> | undefined;
|
|
1416
|
+
borderBottom?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inset" | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "thin" | "medium" | "hidden" | "thick" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | "1px" | "2px" | "4px" | "8px"> | undefined;
|
|
1417
|
+
borderBlockEnd?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inset" | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "thin" | "medium" | "hidden" | "thick" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid"> | undefined;
|
|
1418
|
+
borderLeft?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inset" | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "thin" | "medium" | "hidden" | "thick" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | "1px" | "2px" | "4px" | "8px"> | undefined;
|
|
1419
|
+
borderStart?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inset" | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "thin" | "medium" | "hidden" | "thick" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid"> | undefined;
|
|
1420
|
+
borderInlineStart?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inset" | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "thin" | "medium" | "hidden" | "thick" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid"> | undefined;
|
|
1421
|
+
borderTopRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1422
|
+
roundedTop?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1423
|
+
borderRightRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1424
|
+
roundedRight?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1425
|
+
roundedEnd?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1426
|
+
borderInlineEndRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1427
|
+
borderEndRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1428
|
+
borderBottomRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1429
|
+
roundedBottom?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1430
|
+
borderLeftRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1431
|
+
roundedLeft?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1432
|
+
roundedStart?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1433
|
+
borderInlineStartRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1434
|
+
borderStartRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1435
|
+
borderTopLeftRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1436
|
+
borderTopStartRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1437
|
+
borderStartStartRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1438
|
+
roundedTopLeft?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1439
|
+
roundedTopStart?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1440
|
+
borderTopRightRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1441
|
+
borderTopEndRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1442
|
+
borderStartEndRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1443
|
+
roundedTopRight?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1444
|
+
roundedTopEnd?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1445
|
+
borderBottomLeftRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1446
|
+
borderBottomStartRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1447
|
+
borderEndStartRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1448
|
+
roundedBottomLeft?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1449
|
+
roundedBottomStart?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1450
|
+
borderBottomRightRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1451
|
+
borderBottomEndRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1452
|
+
borderEndEndRadius?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1453
|
+
roundedBottomRight?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1454
|
+
roundedBottomEnd?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | (string & {}) | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full"> | undefined;
|
|
1455
|
+
borderX?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inset" | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "thin" | "medium" | "hidden" | "thick" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | "1px" | "2px" | "4px" | "8px"> | undefined;
|
|
1456
|
+
borderInline?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inset" | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "thin" | "medium" | "hidden" | "thick" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid"> | undefined;
|
|
1457
|
+
borderY?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inset" | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "thin" | "medium" | "hidden" | "thick" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | "1px" | "2px" | "4px" | "8px"> | undefined;
|
|
1458
|
+
borderBlock?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inset" | "none" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "thin" | "medium" | "hidden" | "thick" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid"> | undefined;
|
|
1459
|
+
boxShadow?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | "dialog" | "outline" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | import("csstype").Property.BoxShadow | "inner" | "dark-lg"> | undefined;
|
|
1460
|
+
shadow?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | "dialog" | "outline" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | import("csstype").Property.BoxShadow | "inner" | "dark-lg"> | undefined;
|
|
1461
|
+
mixBlendMode?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.MixBlendMode> | undefined;
|
|
1462
|
+
blendMode?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.MixBlendMode> | undefined;
|
|
1463
|
+
backgroundBlendMode?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BackgroundBlendMode> | undefined;
|
|
1464
|
+
bgBlendMode?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BackgroundBlendMode> | undefined;
|
|
1465
|
+
opacity?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Opacity> | undefined;
|
|
1466
|
+
bg?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Color | "tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating"> | undefined;
|
|
1467
|
+
bgClip?: import("@chakra-ui/styled-system").ResponsiveValue<"text" | import("csstype").Property.BackgroundClip> | undefined;
|
|
1468
|
+
backgroundClip?: import("@chakra-ui/styled-system").ResponsiveValue<"text" | import("csstype").Property.BackgroundClip> | undefined;
|
|
1469
|
+
background?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Color | "tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating"> | undefined;
|
|
1470
|
+
bgColor?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Color | "tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating"> | undefined;
|
|
1471
|
+
backgroundColor: string | import("@chakra-ui/styled-system").ResponsiveArray<import("csstype").Property.Color | "tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating"> | Partial<Record<string, import("csstype").Property.Color | "tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating">>;
|
|
1472
|
+
backgroundImage?: import("@chakra-ui/styled-system").ResponsiveValue<string | (string & {})> | undefined;
|
|
1473
|
+
bgGradient?: import("@chakra-ui/styled-system").ResponsiveValue<string | (string & {})> | undefined;
|
|
1474
|
+
backgroundSize?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "contain" | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "cover"> | undefined;
|
|
1475
|
+
bgPos?: import("@chakra-ui/styled-system").ResponsiveValue<number | "center" | (string & {}) | "bottom" | "left" | "right" | "top" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset"> | undefined;
|
|
1476
|
+
backgroundPosition?: import("@chakra-ui/styled-system").ResponsiveValue<number | "center" | (string & {}) | "bottom" | "left" | "right" | "top" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset"> | undefined;
|
|
1477
|
+
bgImage?: import("@chakra-ui/styled-system").ResponsiveValue<string | (string & {})> | undefined;
|
|
1478
|
+
bgImg?: import("@chakra-ui/styled-system").ResponsiveValue<string | (string & {})> | undefined;
|
|
1479
|
+
bgRepeat?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BackgroundRepeat> | undefined;
|
|
1480
|
+
backgroundRepeat?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BackgroundRepeat> | undefined;
|
|
1481
|
+
bgSize?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "contain" | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "cover"> | undefined;
|
|
1482
|
+
bgAttachment?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BackgroundAttachment> | undefined;
|
|
1483
|
+
backgroundAttachment?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.BackgroundAttachment> | undefined;
|
|
1484
|
+
bgPosition?: import("@chakra-ui/styled-system").ResponsiveValue<number | "center" | (string & {}) | "bottom" | "left" | "right" | "top" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset"> | undefined;
|
|
1485
|
+
listStyleType?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.ListStyleType> | undefined;
|
|
1486
|
+
listStylePosition?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.ListStylePosition> | undefined;
|
|
1487
|
+
listStylePos?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.ListStylePosition> | undefined;
|
|
1488
|
+
listStyleImage?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.ListStyleImage> | undefined;
|
|
1489
|
+
listStyleImg?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.ListStyleImage> | undefined;
|
|
1490
|
+
zIndex?: import("@chakra-ui/styled-system").ResponsiveValue<"base" | "banner" | "tooltip" | "overlay" | import("csstype").Property.ZIndex | "hide" | "docked" | "dropdown" | "sticky" | "modal" | "popover" | "skipLink" | "toast"> | undefined;
|
|
1491
|
+
top?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "full"> | undefined;
|
|
1492
|
+
insetBlockStart?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "full"> | undefined;
|
|
1493
|
+
right?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "full"> | undefined;
|
|
1494
|
+
insetInlineEnd?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "full"> | undefined;
|
|
1495
|
+
insetEnd?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "full"> | undefined;
|
|
1496
|
+
bottom?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "full"> | undefined;
|
|
1497
|
+
insetBlockEnd?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "full"> | undefined;
|
|
1498
|
+
left?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "full"> | undefined;
|
|
1499
|
+
insetInlineStart?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "full"> | undefined;
|
|
1500
|
+
insetStart?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "full"> | undefined;
|
|
1501
|
+
inset?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "full"> | undefined;
|
|
1502
|
+
insetX?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "full"> | undefined;
|
|
1503
|
+
insetY?: import("@chakra-ui/styled-system").ResponsiveValue<number | "max" | "min" | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "full"> | undefined;
|
|
1504
|
+
pos?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Position> | undefined;
|
|
1505
|
+
position?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Position> | undefined;
|
|
1506
|
+
insetInline?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.InsetInline<0 | (string & {})>> | undefined;
|
|
1507
|
+
insetBlock?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.InsetBlock<0 | (string & {})>> | undefined;
|
|
1508
|
+
ring?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1509
|
+
ringColor?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Color | "tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating"> | undefined;
|
|
1510
|
+
ringOffset?: import("@chakra-ui/styled-system").ResponsiveValue<string | number> | undefined;
|
|
1511
|
+
ringOffsetColor?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Color | "tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating"> | undefined;
|
|
1512
|
+
ringInset?: import("@chakra-ui/styled-system").ResponsiveValue<"inset" | "none"> | undefined;
|
|
1513
|
+
scrollBehavior?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.ScrollBehavior> | undefined;
|
|
1514
|
+
scrollSnapAlign?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.ScrollSnapAlign> | undefined;
|
|
1515
|
+
scrollSnapStop?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.ScrollSnapStop> | undefined;
|
|
1516
|
+
scrollSnapType?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.ScrollSnapType> | undefined;
|
|
1517
|
+
scrollMargin?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1518
|
+
scrollMarginTop?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1519
|
+
scrollMarginBottom?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1520
|
+
scrollMarginLeft?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1521
|
+
scrollMarginRight?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1522
|
+
scrollMarginX?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1523
|
+
scrollMarginY?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1524
|
+
scrollPadding?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1525
|
+
scrollPaddingTop?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1526
|
+
scrollPaddingBottom?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1527
|
+
scrollPaddingLeft?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1528
|
+
scrollPaddingRight?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1529
|
+
scrollPaddingX?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1530
|
+
scrollPaddingY?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "0" | "-0" | "1" | "-1" | "2" | "-2" | "3" | "-3" | "4" | "-4" | "5" | "-5" | "6" | "-6" | "8" | "-8" | "10" | "-10" | "12" | "-12" | "16" | "-16" | "20" | "-20" | "0.5" | "-0.5" | "1.5" | "-1.5"> | undefined;
|
|
1531
|
+
appearance?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Appearance> | undefined;
|
|
1532
|
+
userSelect?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.UserSelect> | undefined;
|
|
1533
|
+
pointerEvents?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.PointerEvents> | undefined;
|
|
1534
|
+
resize?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Resize> | undefined;
|
|
1535
|
+
cursor?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Cursor> | undefined;
|
|
1536
|
+
outline?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Outline<string | number>> | undefined;
|
|
1537
|
+
outlineOffset?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.OutlineOffset<string | number>> | undefined;
|
|
1538
|
+
outlineColor?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.Color | "tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating"> | undefined;
|
|
1539
|
+
textDecoration?: import("@chakra-ui/styled-system").ResponsiveValue<number | "blink" | (string & {}) | "none" | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "dashed" | "dotted" | "double" | "solid" | "from-font" | "grammar-error" | "line-through" | "overline" | "spelling-error" | "underline" | "wavy"> | undefined;
|
|
1540
|
+
textDecor?: import("@chakra-ui/styled-system").ResponsiveValue<number | "blink" | (string & {}) | "none" | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "dashed" | "dotted" | "double" | "solid" | "from-font" | "grammar-error" | "line-through" | "overline" | "spelling-error" | "underline" | "wavy"> | undefined;
|
|
1541
|
+
textDecorationColor?: import("@chakra-ui/styled-system").ResponsiveValue<"tints.black" | "tints.darkGrey" | "tints.uiGrey" | "tints.medGrey" | "tints.lightGrey" | "tints.darkCream" | "tints.cream" | "tints.lightCream" | "tints.white" | "viridian.dark" | "viridian.base" | "viridian.light" | "viridian.lighter" | "viridian.wash" | "sunshine.dark" | "sunshine.base" | "sunshine.light" | "sunshine.lighter" | "sunshine.wash" | "terracotta.dark" | "terracotta.base" | "terracotta.light" | "terracotta.lighter" | "terracotta.wash" | "violet.dark" | "violet.base" | "violet.light" | "violet.lighter" | "violet.wash" | "eggplant.dark" | "eggplant.base" | "eggplant.light" | "eggplant.lighter" | "eggplant.wash" | "moonlight.dark" | "moonlight.base" | "moonlight.light" | "moonlight.lighter" | "moonlight.wash" | "sky.dark" | "sky.base" | "sky.light" | "sky.lighter" | "sky.wash" | "redCS.50" | "redCS.100" | "redCS.200" | "redCS.300" | "redCS.400" | "redCS.500" | "redCS.600" | "redCS.700" | "redCS.800" | "redCS.900" | "greenCS.50" | "greenCS.100" | "greenCS.200" | "greenCS.300" | "greenCS.400" | "greenCS.500" | "greenCS.600" | "greenCS.700" | "greenCS.800" | "greenCS.900" | "whiteCS.50" | "whiteCS.100" | "whiteCS.200" | "whiteCS.300" | "whiteCS.400" | "whiteCS.500" | "whiteCS.600" | "whiteCS.700" | "whiteCS.800" | "whiteCS.900" | "whiteCS.base" | "utility.warning" | "utility.sale" | "utility.success" | "utility.rating" | import("csstype").Property.TextDecorationColor> | undefined;
|
|
1542
|
+
textDecorationThickness?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.TextDecorationThickness<0 | (string & {})>> | undefined;
|
|
1543
|
+
textDecorationStyle?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.TextDecorationStyle> | undefined;
|
|
1544
|
+
textDecorationLine?: import("@chakra-ui/styled-system").ResponsiveValue<import("csstype").Property.TextDecorationLine> | undefined;
|
|
1545
|
+
textUnderlineOffset?: import("@chakra-ui/styled-system").ResponsiveValue<number | (string & {}) | "auto" | "inherit" | "initial" | "-moz-initial" | "revert" | "revert-layer" | "unset"> | undefined;
|
|
1546
|
+
textShadow?: import("@chakra-ui/styled-system").ResponsiveValue<number | "base" | "dialog" | "outline" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "inner" | "dark-lg" | import("csstype").Property.TextShadow> | undefined;
|
|
1547
|
+
srOnly?: true | "focusable" | undefined;
|
|
1548
|
+
layerStyle?: import("@chakra-ui/styled-system").ResponsiveValue<string & {}> | undefined;
|
|
1549
|
+
textStyle?: import("@chakra-ui/styled-system").ResponsiveValue<string & {}> | undefined;
|
|
1550
|
+
apply?: import("@chakra-ui/styled-system").ResponsiveValue<string> | undefined;
|
|
1551
|
+
};
|
|
1552
|
+
label: {
|
|
1553
|
+
backgroundColor: string;
|
|
1554
|
+
color: string;
|
|
1555
|
+
};
|
|
1556
|
+
closeButton: {
|
|
1557
|
+
color: string;
|
|
1558
|
+
_hover: {
|
|
1559
|
+
color: string;
|
|
1560
|
+
};
|
|
1561
|
+
};
|
|
1562
|
+
};
|
|
1563
|
+
} | undefined;
|
|
1564
|
+
defaultProps?: {
|
|
1565
|
+
size?: "sm" | "md" | undefined;
|
|
1566
|
+
variant?: "disabled" | "primary" | "secondary" | "tertiary" | "callout" | "cluster" | undefined;
|
|
1567
|
+
colorScheme?: string | undefined;
|
|
1568
|
+
} | undefined;
|
|
1569
|
+
parts: ("label" | "container" | "closeButton")[];
|
|
1570
|
+
};
|
|
1571
|
+
Text: {
|
|
1572
|
+
baseStyle?: {
|
|
1573
|
+
fontFamily: string;
|
|
1574
|
+
fontWeight: string;
|
|
1575
|
+
lineHeight: string;
|
|
1576
|
+
letterSpacing: string;
|
|
1577
|
+
fontSize: string;
|
|
1578
|
+
p: number;
|
|
1579
|
+
} | undefined;
|
|
1580
|
+
sizes?: {
|
|
1581
|
+
xs: {
|
|
1582
|
+
fontSize: ("2xs" | "xs")[];
|
|
1583
|
+
};
|
|
1584
|
+
sm: {
|
|
1585
|
+
fontSize: ("xs" | "sm")[];
|
|
1586
|
+
};
|
|
1587
|
+
md: {
|
|
1588
|
+
fontSize: ("sm" | "md")[];
|
|
1589
|
+
};
|
|
1590
|
+
lg: {
|
|
1591
|
+
fontSize: ("md" | "lg")[];
|
|
1592
|
+
};
|
|
1593
|
+
xl: {
|
|
1594
|
+
fontSize: ("lg" | "2xl")[];
|
|
1595
|
+
lineHeight: ("shorter" | "short")[];
|
|
1596
|
+
};
|
|
1597
|
+
} | undefined;
|
|
1598
|
+
variants?: {
|
|
1599
|
+
[key: string]: import("@chakra-ui/styled-system").SystemStyleInterpolation;
|
|
1600
|
+
} | undefined;
|
|
1601
|
+
defaultProps?: {
|
|
1602
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
1603
|
+
variant?: string | number | undefined;
|
|
1604
|
+
colorScheme?: string | undefined;
|
|
1605
|
+
} | undefined;
|
|
1606
|
+
};
|
|
1607
|
+
};
|
|
1608
|
+
styles: import("@chakra-ui/theme-tools/dist/component").Styles;
|
|
1609
|
+
config: import("@chakra-ui/theme/dist/theme.types").ThemeConfig;
|
|
1610
|
+
borders: {
|
|
1611
|
+
none: number;
|
|
1612
|
+
"1px": string;
|
|
1613
|
+
"2px": string;
|
|
1614
|
+
"4px": string;
|
|
1615
|
+
"8px": string;
|
|
1616
|
+
};
|
|
1617
|
+
transition: {
|
|
1618
|
+
property: {
|
|
1619
|
+
common: string;
|
|
1620
|
+
colors: string;
|
|
1621
|
+
dimensions: string;
|
|
1622
|
+
position: string;
|
|
1623
|
+
background: string;
|
|
1624
|
+
};
|
|
1625
|
+
easing: {
|
|
1626
|
+
"ease-in": string;
|
|
1627
|
+
"ease-out": string;
|
|
1628
|
+
"ease-in-out": string;
|
|
1629
|
+
};
|
|
1630
|
+
duration: {
|
|
1631
|
+
"ultra-fast": string;
|
|
1632
|
+
faster: string;
|
|
1633
|
+
fast: string;
|
|
1634
|
+
normal: string;
|
|
1635
|
+
slow: string;
|
|
1636
|
+
slower: string;
|
|
1637
|
+
"ultra-slow": string;
|
|
1638
|
+
};
|
|
1639
|
+
};
|
|
1640
|
+
radii: {
|
|
1641
|
+
none: string;
|
|
1642
|
+
sm: string;
|
|
1643
|
+
base: string;
|
|
1644
|
+
md: string;
|
|
1645
|
+
lg: string;
|
|
1646
|
+
xl: string;
|
|
1647
|
+
"2xl": string;
|
|
1648
|
+
"3xl": string;
|
|
1649
|
+
full: string;
|
|
1650
|
+
};
|
|
1651
|
+
blur: {
|
|
1652
|
+
none: number;
|
|
1653
|
+
sm: string;
|
|
1654
|
+
base: string;
|
|
1655
|
+
md: string;
|
|
1656
|
+
lg: string;
|
|
1657
|
+
xl: string;
|
|
1658
|
+
"2xl": string;
|
|
1659
|
+
"3xl": string;
|
|
1660
|
+
};
|
|
1661
|
+
direction: "ltr";
|
|
1662
|
+
};
|
|
1663
|
+
export declare const useTheme: () => import("@chakra-ui/styled-system").WithCSSVar<{
|
|
1664
|
+
breakpoints: {
|
|
1665
|
+
base: string;
|
|
1666
|
+
tablet: string;
|
|
1667
|
+
largeTablet: string;
|
|
1668
|
+
desktop: string;
|
|
1669
|
+
largeDesktop: string;
|
|
1670
|
+
};
|
|
1671
|
+
fonts: {
|
|
1672
|
+
body: string;
|
|
1673
|
+
heading: string;
|
|
1674
|
+
mono: string;
|
|
1675
|
+
};
|
|
1676
|
+
fontWeights: {
|
|
1677
|
+
thin: string;
|
|
1678
|
+
xlight: string;
|
|
1679
|
+
light: string;
|
|
1680
|
+
normal: string;
|
|
1681
|
+
medium: string;
|
|
1682
|
+
semiBold: string;
|
|
1683
|
+
bold: string;
|
|
1684
|
+
xbold: string;
|
|
1685
|
+
black: string;
|
|
1686
|
+
};
|
|
1687
|
+
fontSizes: {
|
|
1688
|
+
'3xs': string;
|
|
1689
|
+
'2xs': string;
|
|
1690
|
+
xs: string;
|
|
1691
|
+
sm: string;
|
|
1692
|
+
md: string;
|
|
1693
|
+
lg: string;
|
|
1694
|
+
xl: string;
|
|
1695
|
+
'2xl': string;
|
|
1696
|
+
'3xl': string;
|
|
1697
|
+
'4xl': string;
|
|
1698
|
+
'5xl': string;
|
|
1699
|
+
'6xl': string;
|
|
1700
|
+
'7xl': string;
|
|
1701
|
+
'8xl': string;
|
|
1702
|
+
'9xl': string;
|
|
1703
|
+
'10xl': string;
|
|
1704
|
+
'11xl': string;
|
|
1705
|
+
};
|
|
1706
|
+
letterSpacings: {
|
|
1707
|
+
tighter: string;
|
|
1708
|
+
tight: string;
|
|
1709
|
+
normal: string;
|
|
1710
|
+
wide: string;
|
|
1711
|
+
wider: string;
|
|
1712
|
+
widest: string;
|
|
1713
|
+
};
|
|
1714
|
+
lineHeights: {
|
|
1715
|
+
body: number;
|
|
1716
|
+
normal: string;
|
|
1717
|
+
none: number;
|
|
1718
|
+
shorter: number;
|
|
1719
|
+
short: number;
|
|
1720
|
+
base: number;
|
|
1721
|
+
tall: number;
|
|
1722
|
+
};
|
|
1723
|
+
sizes: {
|
|
1724
|
+
max: string;
|
|
1725
|
+
min: string;
|
|
1726
|
+
full: string;
|
|
1727
|
+
};
|
|
1728
|
+
space: {
|
|
1729
|
+
/**
|
|
1730
|
+
* Base unit: 4px
|
|
1731
|
+
* 1 rem = 16px
|
|
1732
|
+
*
|
|
1733
|
+
* Mental model:
|
|
1734
|
+
*
|
|
1735
|
+
* If you need a spacing of 40px, divide it by 4.
|
|
1736
|
+
* That'll give you 10. Then use it in your component.
|
|
1737
|
+
*/
|
|
1738
|
+
0: number;
|
|
1739
|
+
0.5: string;
|
|
1740
|
+
1: string;
|
|
1741
|
+
1.5: string;
|
|
1742
|
+
2: string;
|
|
1743
|
+
3: string;
|
|
1744
|
+
4: string;
|
|
1745
|
+
5: string;
|
|
1746
|
+
6: string;
|
|
1747
|
+
8: string;
|
|
1748
|
+
10: string;
|
|
1749
|
+
12: string;
|
|
1750
|
+
16: string;
|
|
1751
|
+
20: string;
|
|
1752
|
+
};
|
|
1753
|
+
shadows: {
|
|
1754
|
+
xs: string;
|
|
1755
|
+
sm: string;
|
|
1756
|
+
base: string;
|
|
1757
|
+
md: string;
|
|
1758
|
+
lg: string;
|
|
1759
|
+
xl: string;
|
|
1760
|
+
'2xl': string;
|
|
1761
|
+
outline: string;
|
|
1762
|
+
inner: string;
|
|
1763
|
+
none: string;
|
|
1764
|
+
'dark-lg': string;
|
|
1765
|
+
dialog: string;
|
|
1766
|
+
};
|
|
1767
|
+
zIndices: {
|
|
1768
|
+
hide: number;
|
|
1769
|
+
auto: string;
|
|
1770
|
+
base: number;
|
|
1771
|
+
docked: number;
|
|
1772
|
+
dropdown: number;
|
|
1773
|
+
sticky: number;
|
|
1774
|
+
banner: number;
|
|
1775
|
+
overlay: number;
|
|
1776
|
+
modal: number;
|
|
1777
|
+
popover: number;
|
|
1778
|
+
skipLink: number;
|
|
1779
|
+
toast: number;
|
|
1780
|
+
tooltip: number;
|
|
1781
|
+
};
|
|
1782
|
+
colors: {
|
|
1783
|
+
tints: {
|
|
1784
|
+
black: string;
|
|
1785
|
+
darkGrey: string;
|
|
1786
|
+
uiGrey: string;
|
|
1787
|
+
medGrey: string;
|
|
1788
|
+
lightGrey: string;
|
|
1789
|
+
darkCream: string;
|
|
1790
|
+
cream: string;
|
|
1791
|
+
lightCream: string;
|
|
1792
|
+
white: string;
|
|
1793
|
+
};
|
|
1794
|
+
viridian: {
|
|
1795
|
+
dark: string;
|
|
1796
|
+
base: string;
|
|
1797
|
+
light: string;
|
|
1798
|
+
lighter: string;
|
|
1799
|
+
wash: string;
|
|
1800
|
+
};
|
|
1801
|
+
sunshine: {
|
|
1802
|
+
dark: string;
|
|
1803
|
+
base: string;
|
|
1804
|
+
light: string;
|
|
1805
|
+
lighter: string;
|
|
1806
|
+
wash: string;
|
|
1807
|
+
};
|
|
1808
|
+
terracotta: {
|
|
1809
|
+
dark: string;
|
|
1810
|
+
base: string;
|
|
1811
|
+
light: string;
|
|
1812
|
+
lighter: string;
|
|
1813
|
+
wash: string;
|
|
1814
|
+
};
|
|
1815
|
+
violet: {
|
|
1816
|
+
dark: string;
|
|
1817
|
+
base: string;
|
|
1818
|
+
light: string;
|
|
1819
|
+
lighter: string;
|
|
1820
|
+
wash: string;
|
|
1821
|
+
};
|
|
1822
|
+
eggplant: {
|
|
1823
|
+
dark: string;
|
|
1824
|
+
base: string;
|
|
1825
|
+
light: string;
|
|
1826
|
+
lighter: string;
|
|
1827
|
+
wash: string;
|
|
1828
|
+
};
|
|
1829
|
+
moonlight: {
|
|
1830
|
+
dark: string;
|
|
1831
|
+
base: string;
|
|
1832
|
+
light: string;
|
|
1833
|
+
lighter: string;
|
|
1834
|
+
wash: string;
|
|
1835
|
+
};
|
|
1836
|
+
sky: {
|
|
1837
|
+
dark: string;
|
|
1838
|
+
base: string;
|
|
1839
|
+
light: string;
|
|
1840
|
+
lighter: string;
|
|
1841
|
+
wash: string;
|
|
1842
|
+
};
|
|
1843
|
+
redCS: {
|
|
1844
|
+
50: string;
|
|
1845
|
+
100: string;
|
|
1846
|
+
200: string;
|
|
1847
|
+
300: string;
|
|
1848
|
+
400: string;
|
|
1849
|
+
500: string;
|
|
1850
|
+
600: string;
|
|
1851
|
+
700: string;
|
|
1852
|
+
800: string;
|
|
1853
|
+
900: string;
|
|
1854
|
+
};
|
|
1855
|
+
greenCS: {
|
|
1856
|
+
50: string;
|
|
1857
|
+
100: string;
|
|
1858
|
+
200: string;
|
|
1859
|
+
300: string;
|
|
1860
|
+
400: string;
|
|
1861
|
+
500: string;
|
|
1862
|
+
600: string;
|
|
1863
|
+
700: string;
|
|
1864
|
+
800: string;
|
|
1865
|
+
900: string;
|
|
1866
|
+
};
|
|
1867
|
+
whiteCS: {
|
|
1868
|
+
base: string;
|
|
1869
|
+
50: string;
|
|
1870
|
+
100: string;
|
|
1871
|
+
200: string;
|
|
1872
|
+
300: string;
|
|
1873
|
+
400: string;
|
|
1874
|
+
500: string;
|
|
1875
|
+
600: string;
|
|
1876
|
+
700: string;
|
|
1877
|
+
800: string;
|
|
1878
|
+
900: string;
|
|
1879
|
+
};
|
|
1880
|
+
utility: {
|
|
1881
|
+
warning: string;
|
|
1882
|
+
sale: string;
|
|
1883
|
+
success: string;
|
|
1884
|
+
rating: string;
|
|
1885
|
+
};
|
|
1886
|
+
};
|
|
1887
|
+
components: {
|
|
1888
|
+
Accordion: {
|
|
1889
|
+
baseStyle?: {
|
|
1890
|
+
container: {
|
|
1891
|
+
width: string;
|
|
1892
|
+
};
|
|
1893
|
+
panel: {
|
|
1894
|
+
paddingBottom: string;
|
|
1895
|
+
fontSize: string;
|
|
1896
|
+
fontWeight: string;
|
|
1897
|
+
};
|
|
1898
|
+
button: {
|
|
1899
|
+
width: string;
|
|
1900
|
+
display: string;
|
|
1901
|
+
justifyContent: string;
|
|
1902
|
+
textAlign: string;
|
|
1903
|
+
};
|
|
1904
|
+
icon: {
|
|
1905
|
+
color: string;
|
|
1906
|
+
};
|
|
1907
|
+
} | undefined;
|
|
1908
|
+
sizes?: {
|
|
1909
|
+
md: {
|
|
1910
|
+
button: {
|
|
1911
|
+
paddingY: string;
|
|
1912
|
+
};
|
|
1913
|
+
};
|
|
1914
|
+
lg: {
|
|
1915
|
+
button: {
|
|
1916
|
+
paddingY: string;
|
|
1917
|
+
};
|
|
1918
|
+
};
|
|
1919
|
+
} | undefined;
|
|
1920
|
+
variants?: {
|
|
1921
|
+
primary: {
|
|
1922
|
+
container: {
|
|
1923
|
+
borderBottom: string;
|
|
1924
|
+
borderColor: string;
|
|
1925
|
+
};
|
|
1926
|
+
};
|
|
1927
|
+
secondary: {
|
|
1928
|
+
button: {
|
|
1929
|
+
border: string;
|
|
1930
|
+
borderColor: string;
|
|
1931
|
+
marginBottom: string;
|
|
1932
|
+
borderRadius: string;
|
|
1933
|
+
paddingX: string;
|
|
1934
|
+
};
|
|
1935
|
+
};
|
|
1936
|
+
} | undefined;
|
|
1937
|
+
defaultProps?: {
|
|
1938
|
+
size?: "md" | "lg" | undefined;
|
|
1939
|
+
variant?: "primary" | "secondary" | undefined;
|
|
1940
|
+
colorScheme?: string | undefined;
|
|
1941
|
+
} | undefined;
|
|
1942
|
+
parts: ("button" | "container" | "icon" | "root" | "panel")[];
|
|
1943
|
+
};
|
|
1944
|
+
Button: {
|
|
1945
|
+
baseStyle?: {
|
|
1946
|
+
fontFamily: string;
|
|
1947
|
+
fontWeight: string;
|
|
1948
|
+
lineHeight: string;
|
|
1949
|
+
letterSpacing: string;
|
|
1950
|
+
borderRadius: string;
|
|
1951
|
+
border: string;
|
|
1952
|
+
_disabled: {
|
|
1953
|
+
_hover: {
|
|
1954
|
+
cursor: string;
|
|
1955
|
+
};
|
|
1956
|
+
span: {
|
|
1957
|
+
display: string;
|
|
1958
|
+
};
|
|
1959
|
+
};
|
|
1960
|
+
_focusVisible: {
|
|
1961
|
+
outlineColor: string;
|
|
1962
|
+
outlineWidth: string;
|
|
1963
|
+
outlineStyle: string;
|
|
1964
|
+
outlineOffset: string;
|
|
1965
|
+
};
|
|
1966
|
+
} | undefined;
|
|
1967
|
+
sizes?: {
|
|
1968
|
+
sm: {
|
|
1969
|
+
fontSize: ("md" | "lg")[];
|
|
1970
|
+
px: number[];
|
|
1971
|
+
py: number[];
|
|
1972
|
+
'&:has(> svg:only-child)': {
|
|
1973
|
+
px: number;
|
|
1974
|
+
py: number;
|
|
1975
|
+
svg: {
|
|
1976
|
+
fontSize: string;
|
|
1977
|
+
};
|
|
1978
|
+
};
|
|
1979
|
+
svg: {
|
|
1980
|
+
fontSize: string;
|
|
1981
|
+
};
|
|
1982
|
+
};
|
|
1983
|
+
md: {
|
|
1984
|
+
fontSize: ("lg" | "xl")[];
|
|
1985
|
+
px: number[];
|
|
1986
|
+
py: number[];
|
|
1987
|
+
'&:has(> svg:only-child)': {
|
|
1988
|
+
px: number[];
|
|
1989
|
+
py: number[];
|
|
1990
|
+
};
|
|
1991
|
+
svg: {
|
|
1992
|
+
fontSize: ("1.5rem" | "1.25rem")[];
|
|
1993
|
+
};
|
|
1994
|
+
};
|
|
1995
|
+
wide: {
|
|
1996
|
+
fontSize: string;
|
|
1997
|
+
px: number;
|
|
1998
|
+
py: number;
|
|
1999
|
+
width: string;
|
|
2000
|
+
'&:has(> svg:only-child)': {
|
|
2001
|
+
px: number;
|
|
2002
|
+
py: number;
|
|
2003
|
+
};
|
|
2004
|
+
svg: {
|
|
2005
|
+
fontSize: string;
|
|
2006
|
+
};
|
|
2007
|
+
};
|
|
2008
|
+
} | undefined;
|
|
2009
|
+
variants?: {
|
|
2010
|
+
primary: (props: import("@chakra-ui/styled-system").StyleFunctionProps) => {
|
|
2011
|
+
bg: string;
|
|
2012
|
+
color: string;
|
|
2013
|
+
':hover, &.hover': {
|
|
2014
|
+
bg: string;
|
|
2015
|
+
};
|
|
2016
|
+
':active, &.active': {
|
|
2017
|
+
bg: string;
|
|
2018
|
+
};
|
|
2019
|
+
':disabled': {
|
|
2020
|
+
bg: string;
|
|
2021
|
+
color: string;
|
|
2022
|
+
};
|
|
2023
|
+
};
|
|
2024
|
+
secondary: (props: import("@chakra-ui/styled-system").StyleFunctionProps) => {
|
|
2025
|
+
color: string;
|
|
2026
|
+
boxShadow: (theme: Record<string, any>) => string;
|
|
2027
|
+
':hover, &.hover': {
|
|
2028
|
+
color: string;
|
|
2029
|
+
boxShadow: (theme: Record<string, any>) => string;
|
|
2030
|
+
};
|
|
2031
|
+
':active, &.active': {
|
|
2032
|
+
color: string;
|
|
2033
|
+
boxShadow: (theme: Record<string, any>) => string;
|
|
2034
|
+
};
|
|
2035
|
+
':disabled': {
|
|
2036
|
+
color: string;
|
|
2037
|
+
boxShadow: (theme: Record<string, any>) => string;
|
|
2038
|
+
opacity: number;
|
|
2039
|
+
};
|
|
2040
|
+
};
|
|
2041
|
+
} | undefined;
|
|
2042
|
+
defaultProps?: {
|
|
2043
|
+
size?: "wide" | "sm" | "md" | undefined;
|
|
2044
|
+
variant?: "primary" | "secondary" | undefined;
|
|
2045
|
+
colorScheme?: string | undefined;
|
|
2046
|
+
} | undefined;
|
|
2047
|
+
};
|
|
2048
|
+
Checkbox: {
|
|
2049
|
+
baseStyle?: {
|
|
2050
|
+
container: {};
|
|
2051
|
+
control: {
|
|
2052
|
+
boxSize: number;
|
|
2053
|
+
padding: number;
|
|
2054
|
+
borderRadius: string;
|
|
2055
|
+
borderWidth: number;
|
|
2056
|
+
borderColor: string;
|
|
2057
|
+
color: string;
|
|
2058
|
+
fontSize: string;
|
|
2059
|
+
bg: string;
|
|
2060
|
+
_focusVisible: {
|
|
2061
|
+
outlineColor: string;
|
|
2062
|
+
outlineWidth: string;
|
|
2063
|
+
outlineStyle: string;
|
|
2064
|
+
outlineOffset: string;
|
|
2065
|
+
};
|
|
2066
|
+
_checked: {
|
|
2067
|
+
borderColor: string;
|
|
2068
|
+
bg: string;
|
|
2069
|
+
color: string;
|
|
2070
|
+
_hover: {
|
|
2071
|
+
borderColor: string;
|
|
2072
|
+
bg: string;
|
|
2073
|
+
};
|
|
2074
|
+
_disabled: {
|
|
2075
|
+
borderColor: string;
|
|
2076
|
+
bg: string;
|
|
2077
|
+
};
|
|
2078
|
+
};
|
|
2079
|
+
_hover: {
|
|
2080
|
+
borderColor: string;
|
|
2081
|
+
bg: string;
|
|
2082
|
+
};
|
|
2083
|
+
_disabled: {
|
|
2084
|
+
borderColor: string;
|
|
2085
|
+
bg: string;
|
|
2086
|
+
cursor: string;
|
|
2087
|
+
};
|
|
2088
|
+
_invalid: {
|
|
2089
|
+
borderColor: string;
|
|
2090
|
+
};
|
|
2091
|
+
};
|
|
2092
|
+
icon: {
|
|
2093
|
+
boxSize: string;
|
|
2094
|
+
};
|
|
2095
|
+
label: {
|
|
2096
|
+
fontSize: ("sm" | "md")[];
|
|
2097
|
+
color: string;
|
|
2098
|
+
};
|
|
2099
|
+
} | undefined;
|
|
2100
|
+
sizes?: {
|
|
2101
|
+
sm: {
|
|
2102
|
+
control: {
|
|
2103
|
+
boxSize: number;
|
|
2104
|
+
};
|
|
2105
|
+
};
|
|
2106
|
+
md: {
|
|
2107
|
+
control: {
|
|
2108
|
+
boxSize: number;
|
|
2109
|
+
};
|
|
2110
|
+
};
|
|
2111
|
+
} | undefined;
|
|
2112
|
+
variants?: {} | undefined;
|
|
2113
|
+
defaultProps?: {
|
|
2114
|
+
size?: "sm" | "md" | undefined;
|
|
2115
|
+
variant?: undefined;
|
|
2116
|
+
colorScheme?: string | undefined;
|
|
2117
|
+
} | undefined;
|
|
2118
|
+
parts: ("label" | "container" | "icon" | "control")[];
|
|
2119
|
+
};
|
|
2120
|
+
Container: {
|
|
2121
|
+
baseStyle?: {
|
|
2122
|
+
paddingX: string;
|
|
2123
|
+
} | undefined;
|
|
2124
|
+
sizes?: {
|
|
2125
|
+
sm: {
|
|
2126
|
+
w: string;
|
|
2127
|
+
paddingX: string;
|
|
2128
|
+
};
|
|
2129
|
+
md: {
|
|
2130
|
+
w: string;
|
|
2131
|
+
};
|
|
2132
|
+
lg: {
|
|
2133
|
+
w: string;
|
|
2134
|
+
};
|
|
2135
|
+
xl: {
|
|
2136
|
+
w: string;
|
|
2137
|
+
};
|
|
2138
|
+
ultra: {
|
|
2139
|
+
w: string;
|
|
2140
|
+
};
|
|
2141
|
+
fluid: {
|
|
2142
|
+
w: string;
|
|
2143
|
+
paddingX: string;
|
|
2144
|
+
};
|
|
2145
|
+
} | undefined;
|
|
2146
|
+
variants?: {} | undefined;
|
|
2147
|
+
defaultProps?: {
|
|
2148
|
+
size?: "sm" | "md" | "lg" | "xl" | "ultra" | "fluid" | undefined;
|
|
2149
|
+
variant?: undefined;
|
|
2150
|
+
colorScheme?: string | undefined;
|
|
2151
|
+
} | undefined;
|
|
2152
|
+
};
|
|
2153
|
+
Drawer: {
|
|
2154
|
+
baseStyle?: {
|
|
2155
|
+
overlay: {
|
|
2156
|
+
zIndex: string;
|
|
2157
|
+
bg: (theme: Record<string, any>) => string;
|
|
2158
|
+
};
|
|
2159
|
+
dialogContainer: {
|
|
2160
|
+
zIndex: string;
|
|
2161
|
+
};
|
|
2162
|
+
dialog: {
|
|
2163
|
+
bg: string;
|
|
2164
|
+
pt: number[];
|
|
2165
|
+
display: string;
|
|
2166
|
+
flexDirection: string;
|
|
2167
|
+
alignItems: string;
|
|
2168
|
+
gap: number;
|
|
2169
|
+
boxShadow: string;
|
|
2170
|
+
};
|
|
2171
|
+
header: {
|
|
2172
|
+
px: number;
|
|
2173
|
+
display: string;
|
|
2174
|
+
flexDirection: string;
|
|
2175
|
+
justifyContent: string;
|
|
2176
|
+
alignItems: string;
|
|
2177
|
+
};
|
|
2178
|
+
closeButton: {
|
|
2179
|
+
bg: string;
|
|
2180
|
+
borderRadius: string;
|
|
2181
|
+
p: number;
|
|
2182
|
+
_hover: {
|
|
2183
|
+
bg: string;
|
|
2184
|
+
};
|
|
2185
|
+
'& .chakra-icon': {
|
|
2186
|
+
fontSize: string;
|
|
2187
|
+
};
|
|
2188
|
+
};
|
|
2189
|
+
body: {
|
|
2190
|
+
px: number;
|
|
2191
|
+
flexGrow: number;
|
|
2192
|
+
};
|
|
2193
|
+
footer: {
|
|
2194
|
+
py: number;
|
|
2195
|
+
px: number;
|
|
2196
|
+
};
|
|
2197
|
+
} | undefined;
|
|
2198
|
+
sizes?: {
|
|
2199
|
+
partial: {
|
|
2200
|
+
dialog: {
|
|
2201
|
+
maxW: number;
|
|
2202
|
+
};
|
|
2203
|
+
};
|
|
2204
|
+
full: {
|
|
2205
|
+
dialog: {
|
|
2206
|
+
maxW: string;
|
|
2207
|
+
minH: string;
|
|
2208
|
+
borderRadius: number;
|
|
2209
|
+
};
|
|
2210
|
+
};
|
|
2211
|
+
} | undefined;
|
|
2212
|
+
variants?: {
|
|
2213
|
+
[key: string]: import("@chakra-ui/styled-system").PartsStyleInterpolation<{
|
|
2214
|
+
keys: ("body" | "dialog" | "footer" | "header" | "overlay" | "dialogContainer" | "closeButton")[];
|
|
2215
|
+
}>;
|
|
2216
|
+
} | undefined;
|
|
2217
|
+
defaultProps?: {
|
|
2218
|
+
size?: "full" | "partial" | undefined;
|
|
2219
|
+
variant?: string | number | undefined;
|
|
2220
|
+
colorScheme?: string | undefined;
|
|
2221
|
+
} | undefined;
|
|
2222
|
+
parts: ("body" | "dialog" | "footer" | "header" | "overlay" | "dialogContainer" | "closeButton")[];
|
|
2223
|
+
};
|
|
2224
|
+
Form: {
|
|
2225
|
+
baseStyle?: {
|
|
2226
|
+
container: {
|
|
2227
|
+
width: string;
|
|
2228
|
+
position: string;
|
|
2229
|
+
display: string;
|
|
2230
|
+
flexDirection: string;
|
|
2231
|
+
gap: number;
|
|
2232
|
+
};
|
|
2233
|
+
requiredIndicator: {
|
|
2234
|
+
color: string;
|
|
2235
|
+
};
|
|
2236
|
+
helperText: {
|
|
2237
|
+
_dark: {};
|
|
2238
|
+
color: string;
|
|
2239
|
+
fontSize: ("sm" | "md")[];
|
|
2240
|
+
};
|
|
2241
|
+
} | undefined;
|
|
2242
|
+
sizes?: {} | undefined;
|
|
2243
|
+
variants?: {
|
|
2244
|
+
floating: {
|
|
2245
|
+
container: {
|
|
2246
|
+
_focusWithin: {
|
|
2247
|
+
label: {
|
|
2248
|
+
transform: string[];
|
|
2249
|
+
fontSize: string;
|
|
2250
|
+
color: string;
|
|
2251
|
+
_invalid: {
|
|
2252
|
+
color: string;
|
|
2253
|
+
};
|
|
2254
|
+
};
|
|
2255
|
+
};
|
|
2256
|
+
'input:not(:placeholder-shown) + label, .chakra-select__wrapper + label, textarea:not(:placeholder-shown) ~ label': {
|
|
2257
|
+
transform: string[];
|
|
2258
|
+
fontSize: string;
|
|
2259
|
+
color: string;
|
|
2260
|
+
_invalid: {
|
|
2261
|
+
color: string;
|
|
2262
|
+
};
|
|
2263
|
+
};
|
|
2264
|
+
label: {
|
|
2265
|
+
position: string;
|
|
2266
|
+
pointerEvents: string;
|
|
2267
|
+
zIndex: number;
|
|
2268
|
+
ml: number;
|
|
2269
|
+
mr: number;
|
|
2270
|
+
mt: (number | "14px")[];
|
|
2271
|
+
fontSize: ("md" | "lg")[];
|
|
2272
|
+
color: string;
|
|
2273
|
+
fontWeight: string;
|
|
2274
|
+
};
|
|
2275
|
+
input: {
|
|
2276
|
+
pt: number;
|
|
2277
|
+
pl: string;
|
|
2278
|
+
};
|
|
2279
|
+
};
|
|
2280
|
+
};
|
|
2281
|
+
} | undefined;
|
|
2282
|
+
defaultProps?: {
|
|
2283
|
+
size?: undefined;
|
|
2284
|
+
variant?: "floating" | undefined;
|
|
2285
|
+
colorScheme?: string | undefined;
|
|
2286
|
+
} | undefined;
|
|
2287
|
+
parts: ("container" | "requiredIndicator" | "helperText")[];
|
|
2288
|
+
};
|
|
2289
|
+
FormError: {
|
|
2290
|
+
baseStyle?: {
|
|
2291
|
+
text: {
|
|
2292
|
+
color: string;
|
|
2293
|
+
fontSize: ("sm" | "md")[];
|
|
2294
|
+
};
|
|
2295
|
+
icon: {
|
|
2296
|
+
color: string;
|
|
2297
|
+
height: string;
|
|
2298
|
+
width: string;
|
|
2299
|
+
mr: number;
|
|
2300
|
+
};
|
|
2301
|
+
} | undefined;
|
|
2302
|
+
sizes?: {
|
|
2303
|
+
[key: string]: import("@chakra-ui/styled-system").PartsStyleInterpolation<{
|
|
2304
|
+
keys: ("text" | "icon")[];
|
|
2305
|
+
}>;
|
|
2306
|
+
} | undefined;
|
|
2307
|
+
variants?: {
|
|
2308
|
+
[key: string]: import("@chakra-ui/styled-system").PartsStyleInterpolation<{
|
|
2309
|
+
keys: ("text" | "icon")[];
|
|
2310
|
+
}>;
|
|
2311
|
+
} | undefined;
|
|
2312
|
+
defaultProps?: {
|
|
2313
|
+
size?: string | number | undefined;
|
|
2314
|
+
variant?: string | number | undefined;
|
|
2315
|
+
colorScheme?: string | undefined;
|
|
2316
|
+
} | undefined;
|
|
2317
|
+
parts: ("text" | "icon")[];
|
|
2318
|
+
};
|
|
2319
|
+
FormLabel: {
|
|
2320
|
+
baseStyle?: {
|
|
2321
|
+
fontSize: ("sm" | "md")[];
|
|
2322
|
+
color: string;
|
|
2323
|
+
transitionProperty: string;
|
|
2324
|
+
transitionDuration: string;
|
|
2325
|
+
opacity: number;
|
|
2326
|
+
_disabled: {
|
|
2327
|
+
opacity: number;
|
|
2328
|
+
};
|
|
2329
|
+
} | undefined;
|
|
2330
|
+
sizes?: {
|
|
2331
|
+
[key: string]: import("@chakra-ui/styled-system").SystemStyleInterpolation;
|
|
2332
|
+
} | undefined;
|
|
2333
|
+
variants?: {
|
|
2334
|
+
[key: string]: import("@chakra-ui/styled-system").SystemStyleInterpolation;
|
|
2335
|
+
} | undefined;
|
|
2336
|
+
defaultProps?: {
|
|
2337
|
+
size?: string | number | undefined;
|
|
2338
|
+
variant?: string | number | undefined;
|
|
2339
|
+
colorScheme?: string | undefined;
|
|
2340
|
+
} | undefined;
|
|
2341
|
+
};
|
|
2342
|
+
Select: {
|
|
2343
|
+
baseStyle?: {
|
|
2344
|
+
field: {
|
|
2345
|
+
background: string;
|
|
2346
|
+
borderColor: string;
|
|
2347
|
+
borderRadius: string;
|
|
2348
|
+
borderWidth: string;
|
|
2349
|
+
color: string;
|
|
2350
|
+
fontFamily: string;
|
|
2351
|
+
fontSize: string;
|
|
2352
|
+
paddingX: number;
|
|
2353
|
+
paddingY: number;
|
|
2354
|
+
width: string;
|
|
2355
|
+
_disabled: {
|
|
2356
|
+
borderColor: string;
|
|
2357
|
+
color: string;
|
|
2358
|
+
_hover: {
|
|
2359
|
+
cursor: string;
|
|
2360
|
+
};
|
|
2361
|
+
};
|
|
2362
|
+
_hover: {
|
|
2363
|
+
cursor: ("none" | "pointer")[];
|
|
2364
|
+
};
|
|
2365
|
+
_invalid: {
|
|
2366
|
+
borderColor: string;
|
|
2367
|
+
};
|
|
2368
|
+
WebkitAppearance: string;
|
|
2369
|
+
MozAppearance: string;
|
|
2370
|
+
};
|
|
2371
|
+
icon: {
|
|
2372
|
+
color: string;
|
|
2373
|
+
right: number;
|
|
2374
|
+
_disabled: {
|
|
2375
|
+
color: string;
|
|
2376
|
+
};
|
|
2377
|
+
};
|
|
2378
|
+
} | undefined;
|
|
2379
|
+
sizes?: {
|
|
2380
|
+
[key: string]: import("@chakra-ui/styled-system").PartsStyleInterpolation<{
|
|
2381
|
+
keys: ("icon" | "field")[];
|
|
2382
|
+
}>;
|
|
2383
|
+
} | undefined;
|
|
2384
|
+
variants?: {
|
|
2385
|
+
[key: string]: import("@chakra-ui/styled-system").PartsStyleInterpolation<{
|
|
2386
|
+
keys: ("icon" | "field")[];
|
|
2387
|
+
}>;
|
|
2388
|
+
} | undefined;
|
|
2389
|
+
defaultProps?: {
|
|
2390
|
+
size?: string | number | undefined;
|
|
2391
|
+
variant?: string | number | undefined;
|
|
2392
|
+
colorScheme?: string | undefined;
|
|
2393
|
+
} | undefined;
|
|
2394
|
+
parts: ("icon" | "field")[];
|
|
2395
|
+
};
|
|
2396
|
+
Heading: {
|
|
2397
|
+
baseStyle?: {
|
|
2398
|
+
fontFamily: string;
|
|
2399
|
+
fontWeight: string;
|
|
2400
|
+
color: string;
|
|
2401
|
+
} | undefined;
|
|
2402
|
+
sizes?: {
|
|
2403
|
+
'3xl': {
|
|
2404
|
+
fontSize: ("6xl" | "10xl")[];
|
|
2405
|
+
lineHeight: string;
|
|
2406
|
+
};
|
|
2407
|
+
'2xl': {
|
|
2408
|
+
fontSize: ("5xl" | "8xl")[];
|
|
2409
|
+
lineHeight: string;
|
|
2410
|
+
};
|
|
2411
|
+
xl: {
|
|
2412
|
+
fontSize: ("4xl" | "6xl")[];
|
|
2413
|
+
lineHeight: string;
|
|
2414
|
+
};
|
|
2415
|
+
lg: {
|
|
2416
|
+
fontFamily: string;
|
|
2417
|
+
fontWeight: string;
|
|
2418
|
+
fontSize: ("3xl" | "5xl")[];
|
|
2419
|
+
lineHeight: string;
|
|
2420
|
+
};
|
|
2421
|
+
md: {
|
|
2422
|
+
fontFamily: string;
|
|
2423
|
+
fontWeight: string;
|
|
2424
|
+
fontSize: ("2xl" | "3xl")[];
|
|
2425
|
+
lineHeight: string;
|
|
2426
|
+
};
|
|
2427
|
+
sm: {
|
|
2428
|
+
fontFamily: string;
|
|
2429
|
+
fontWeight: string;
|
|
2430
|
+
fontSize: ("lg" | "2xl")[];
|
|
2431
|
+
lineHeight: string;
|
|
2432
|
+
};
|
|
2433
|
+
} | undefined;
|
|
2434
|
+
variants?: {
|
|
2435
|
+
[key: string]: import("@chakra-ui/styled-system").SystemStyleInterpolation;
|
|
2436
|
+
} | undefined;
|
|
2437
|
+
defaultProps?: {
|
|
2438
|
+
size?: "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | undefined;
|
|
2439
|
+
variant?: string | number | undefined;
|
|
2440
|
+
colorScheme?: string | undefined;
|
|
2441
|
+
} | undefined;
|
|
2442
|
+
};
|
|
2443
|
+
Icon: {
|
|
2444
|
+
baseStyle?: {} | undefined;
|
|
2445
|
+
sizes?: {
|
|
2446
|
+
sm: {
|
|
2447
|
+
fontSize: string;
|
|
2448
|
+
};
|
|
2449
|
+
md: {
|
|
2450
|
+
fontSize: string;
|
|
2451
|
+
};
|
|
2452
|
+
lg: {
|
|
1018
2453
|
fontSize: string;
|
|
2454
|
+
};
|
|
2455
|
+
} | undefined;
|
|
2456
|
+
variants?: {} | undefined;
|
|
2457
|
+
defaultProps?: {
|
|
2458
|
+
size?: "sm" | "md" | "lg" | undefined;
|
|
2459
|
+
variant?: undefined;
|
|
2460
|
+
colorScheme?: string | undefined;
|
|
2461
|
+
} | undefined;
|
|
2462
|
+
};
|
|
2463
|
+
Input: {
|
|
2464
|
+
baseStyle?: {
|
|
2465
|
+
field: {
|
|
2466
|
+
fontWeight: string;
|
|
2467
|
+
fontSize: ("md" | "lg")[];
|
|
2468
|
+
bg: string;
|
|
2469
|
+
color: string;
|
|
2470
|
+
px: number;
|
|
2471
|
+
borderStyle: string;
|
|
2472
|
+
borderWidth: string;
|
|
2473
|
+
borderColor: string;
|
|
2474
|
+
borderRadius: string;
|
|
2475
|
+
w: string;
|
|
2476
|
+
h: ("44px" | "52px")[];
|
|
2477
|
+
':focus, &.focus': {
|
|
2478
|
+
borderColor: string;
|
|
2479
|
+
outline: string;
|
|
2480
|
+
};
|
|
2481
|
+
_disabled: {
|
|
2482
|
+
borderColor: string;
|
|
2483
|
+
color: string;
|
|
2484
|
+
};
|
|
2485
|
+
_placeholder: {
|
|
2486
|
+
color: string;
|
|
2487
|
+
};
|
|
2488
|
+
_invalid: {
|
|
2489
|
+
borderColor: string;
|
|
2490
|
+
};
|
|
2491
|
+
};
|
|
2492
|
+
element: {
|
|
2493
|
+
px: number;
|
|
2494
|
+
py: number;
|
|
2495
|
+
color: string;
|
|
2496
|
+
};
|
|
2497
|
+
} | undefined;
|
|
2498
|
+
sizes?: {} | undefined;
|
|
2499
|
+
variants?: {} | undefined;
|
|
2500
|
+
defaultProps?: {
|
|
2501
|
+
size?: undefined;
|
|
2502
|
+
variant?: undefined;
|
|
2503
|
+
colorScheme?: string | undefined;
|
|
2504
|
+
} | undefined;
|
|
2505
|
+
parts: ("element" | "addon" | "field")[];
|
|
2506
|
+
};
|
|
2507
|
+
Link: {
|
|
2508
|
+
baseStyle?: {
|
|
2509
|
+
color: string;
|
|
2510
|
+
fontWeight: string;
|
|
2511
|
+
_hover: {
|
|
2512
|
+
textDecoration: string;
|
|
2513
|
+
cursor: string;
|
|
2514
|
+
};
|
|
2515
|
+
} | undefined;
|
|
2516
|
+
sizes?: {
|
|
2517
|
+
sm: {
|
|
2518
|
+
fontSize: ("xs" | "sm")[];
|
|
2519
|
+
lineHeight: string;
|
|
2520
|
+
};
|
|
2521
|
+
md: {
|
|
2522
|
+
fontSize: ("sm" | "md")[];
|
|
2523
|
+
lineHeight: string;
|
|
2524
|
+
};
|
|
2525
|
+
lg: {
|
|
2526
|
+
fontSize: ("md" | "lg")[];
|
|
2527
|
+
lineHeight: string;
|
|
2528
|
+
};
|
|
2529
|
+
} | undefined;
|
|
2530
|
+
variants?: {} | undefined;
|
|
2531
|
+
defaultProps?: {
|
|
2532
|
+
size?: "sm" | "md" | "lg" | undefined;
|
|
2533
|
+
variant?: undefined;
|
|
2534
|
+
colorScheme?: string | undefined;
|
|
2535
|
+
} | undefined;
|
|
2536
|
+
};
|
|
2537
|
+
Menu: {
|
|
2538
|
+
baseStyle?: {
|
|
2539
|
+
button: {};
|
|
2540
|
+
list: {
|
|
2541
|
+
boxShadow: string;
|
|
2542
|
+
backgroundColor: string;
|
|
2543
|
+
border: string;
|
|
2544
|
+
borderColor: string;
|
|
2545
|
+
borderRadius: string;
|
|
2546
|
+
};
|
|
2547
|
+
item: {
|
|
1019
2548
|
fontWeight: string;
|
|
1020
2549
|
lineHeight: string;
|
|
1021
|
-
|
|
1022
|
-
|
|
2550
|
+
color: string;
|
|
2551
|
+
_hover: {
|
|
2552
|
+
backgroundColor: string;
|
|
2553
|
+
};
|
|
2554
|
+
_active: {
|
|
2555
|
+
backgroundColor: string;
|
|
2556
|
+
};
|
|
2557
|
+
_focus: {
|
|
2558
|
+
backgroundColor: string;
|
|
2559
|
+
};
|
|
2560
|
+
_disabled: {
|
|
2561
|
+
backgroundColor: string;
|
|
2562
|
+
color: string;
|
|
2563
|
+
cursor: string;
|
|
2564
|
+
};
|
|
1023
2565
|
_first: {
|
|
1024
|
-
|
|
2566
|
+
borderTopRadius: string;
|
|
1025
2567
|
};
|
|
1026
2568
|
_last: {
|
|
1027
|
-
|
|
2569
|
+
borderBottomRadius: string;
|
|
2570
|
+
};
|
|
2571
|
+
};
|
|
2572
|
+
groupTitle: {
|
|
2573
|
+
color: string;
|
|
2574
|
+
letterSpacing: string;
|
|
2575
|
+
};
|
|
2576
|
+
command: {
|
|
2577
|
+
color: string;
|
|
2578
|
+
};
|
|
2579
|
+
divider: {
|
|
2580
|
+
borderColor: string;
|
|
2581
|
+
borderBottom: string;
|
|
2582
|
+
};
|
|
2583
|
+
} | undefined;
|
|
2584
|
+
sizes?: {
|
|
2585
|
+
sm: {
|
|
2586
|
+
button: {};
|
|
2587
|
+
item: {
|
|
2588
|
+
fontSize: ("2xs" | "sm")[];
|
|
2589
|
+
paddingX: string;
|
|
2590
|
+
paddingY: string;
|
|
2591
|
+
};
|
|
2592
|
+
groupTitle: {
|
|
2593
|
+
fontSize: ("md" | "lg")[];
|
|
2594
|
+
paddingX: string;
|
|
2595
|
+
paddingY: string;
|
|
2596
|
+
};
|
|
2597
|
+
divider: {
|
|
2598
|
+
marginY: string;
|
|
2599
|
+
};
|
|
2600
|
+
};
|
|
2601
|
+
md: {
|
|
2602
|
+
item: {
|
|
2603
|
+
fontSize: ("3xs" | "lg")[];
|
|
2604
|
+
paddingX: string;
|
|
2605
|
+
paddingY: string;
|
|
2606
|
+
};
|
|
2607
|
+
groupTitle: {
|
|
2608
|
+
fontSize: ("lg" | "xl")[];
|
|
2609
|
+
paddingX: string;
|
|
2610
|
+
paddingY: string;
|
|
2611
|
+
};
|
|
2612
|
+
};
|
|
2613
|
+
lg: {
|
|
2614
|
+
item: {
|
|
2615
|
+
fontSize: ("xl" | "2xl")[];
|
|
2616
|
+
paddingX: string;
|
|
2617
|
+
paddingY: string;
|
|
2618
|
+
};
|
|
2619
|
+
groupTitle: {
|
|
2620
|
+
fontSize: ("3xl" | "4xl")[];
|
|
2621
|
+
paddingX: string;
|
|
2622
|
+
paddingY: string;
|
|
1028
2623
|
};
|
|
2624
|
+
};
|
|
2625
|
+
} | undefined;
|
|
2626
|
+
variants?: {} | undefined;
|
|
2627
|
+
defaultProps?: {
|
|
2628
|
+
size?: "sm" | "md" | "lg" | undefined;
|
|
2629
|
+
variant?: undefined;
|
|
2630
|
+
colorScheme?: string | undefined;
|
|
2631
|
+
} | undefined;
|
|
2632
|
+
parts: ("button" | "list" | "item" | "groupTitle" | "command" | "divider")[];
|
|
2633
|
+
};
|
|
2634
|
+
Spinner: {
|
|
2635
|
+
baseStyle?: {} | undefined;
|
|
2636
|
+
sizes?: {
|
|
2637
|
+
sm: {
|
|
2638
|
+
width: string;
|
|
2639
|
+
height: string;
|
|
2640
|
+
borderWidth: string;
|
|
2641
|
+
};
|
|
2642
|
+
md: {
|
|
2643
|
+
width: string;
|
|
2644
|
+
height: string;
|
|
2645
|
+
borderWidth: string;
|
|
2646
|
+
};
|
|
2647
|
+
lg: {
|
|
2648
|
+
width: string;
|
|
2649
|
+
height: string;
|
|
2650
|
+
borderWidth: string;
|
|
2651
|
+
};
|
|
2652
|
+
} | undefined;
|
|
2653
|
+
variants?: {} | undefined;
|
|
2654
|
+
defaultProps?: {
|
|
2655
|
+
size?: "sm" | "md" | "lg" | undefined;
|
|
2656
|
+
variant?: undefined;
|
|
2657
|
+
colorScheme?: string | undefined;
|
|
2658
|
+
} | undefined;
|
|
2659
|
+
};
|
|
2660
|
+
Skeleton: {
|
|
2661
|
+
baseStyle?: {
|
|
2662
|
+
[x: string]: string;
|
|
2663
|
+
borderRadius: string;
|
|
2664
|
+
p: string;
|
|
2665
|
+
} | undefined;
|
|
2666
|
+
sizes?: {} | undefined;
|
|
2667
|
+
variants?: {} | undefined;
|
|
2668
|
+
defaultProps?: {
|
|
2669
|
+
size?: undefined;
|
|
2670
|
+
variant?: undefined;
|
|
2671
|
+
colorScheme?: string | undefined;
|
|
2672
|
+
} | undefined;
|
|
2673
|
+
};
|
|
2674
|
+
Tabs: {
|
|
2675
|
+
baseStyle?: {
|
|
2676
|
+
tab: {
|
|
2677
|
+
color: string;
|
|
2678
|
+
border: string;
|
|
2679
|
+
borderColor: string;
|
|
1029
2680
|
_selected: {
|
|
1030
|
-
|
|
2681
|
+
backgroundColor: string;
|
|
1031
2682
|
color: string;
|
|
1032
2683
|
borderColor: string;
|
|
1033
2684
|
};
|
|
1034
2685
|
_disabled: {
|
|
1035
2686
|
color: string;
|
|
1036
|
-
|
|
2687
|
+
backgroundColor: string;
|
|
1037
2688
|
cursor: string;
|
|
1038
2689
|
};
|
|
1039
2690
|
_focusVisible: {
|
|
1040
2691
|
outline: string;
|
|
1041
2692
|
};
|
|
1042
2693
|
};
|
|
1043
|
-
tablist: {
|
|
1044
|
-
mb: string;
|
|
1045
|
-
};
|
|
1046
2694
|
tabpanels: {};
|
|
1047
2695
|
tabpanel: {};
|
|
1048
|
-
sizes: {};
|
|
1049
|
-
variants: {};
|
|
1050
|
-
colorScheme: {};
|
|
1051
|
-
defaultProps: {
|
|
1052
|
-
size: string;
|
|
1053
|
-
};
|
|
1054
2696
|
} | undefined;
|
|
1055
2697
|
sizes?: {
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
2698
|
+
md: {
|
|
2699
|
+
tab: {
|
|
2700
|
+
fontSize: string;
|
|
2701
|
+
fontWeight: string;
|
|
2702
|
+
lineHeight: string;
|
|
2703
|
+
paddingY: number;
|
|
2704
|
+
paddingX: number;
|
|
2705
|
+
_first: {
|
|
2706
|
+
borderLeftRadius: string;
|
|
2707
|
+
};
|
|
2708
|
+
_last: {
|
|
2709
|
+
borderRightRadius: string;
|
|
2710
|
+
};
|
|
2711
|
+
};
|
|
2712
|
+
tablist: {
|
|
2713
|
+
marginBottom: number;
|
|
2714
|
+
};
|
|
2715
|
+
};
|
|
2716
|
+
lg: {
|
|
2717
|
+
tab: {
|
|
2718
|
+
fontSize: string;
|
|
2719
|
+
fontWeight: string;
|
|
2720
|
+
lineHeight: string;
|
|
2721
|
+
paddingY: number;
|
|
2722
|
+
paddingX: number;
|
|
2723
|
+
_first: {
|
|
2724
|
+
borderLeftRadius: string;
|
|
2725
|
+
};
|
|
2726
|
+
_last: {
|
|
2727
|
+
borderRightRadius: string;
|
|
2728
|
+
};
|
|
2729
|
+
};
|
|
2730
|
+
tablist: {
|
|
2731
|
+
marginBottom: number;
|
|
2732
|
+
};
|
|
2733
|
+
};
|
|
1064
2734
|
} | undefined;
|
|
2735
|
+
variants?: {} | undefined;
|
|
1065
2736
|
defaultProps?: {
|
|
1066
|
-
size?:
|
|
1067
|
-
variant?:
|
|
2737
|
+
size?: "md" | "lg" | undefined;
|
|
2738
|
+
variant?: undefined;
|
|
1068
2739
|
colorScheme?: string | undefined;
|
|
1069
2740
|
} | undefined;
|
|
1070
2741
|
parts: ("tab" | "tablist" | "tabpanel" | "tabpanels" | "root" | "indicator")[];
|
|
@@ -1650,5 +3321,5 @@ export declare const theme: {
|
|
|
1650
3321
|
"3xl": string;
|
|
1651
3322
|
};
|
|
1652
3323
|
direction: "ltr";
|
|
1653
|
-
}
|
|
3324
|
+
}>;
|
|
1654
3325
|
export default theme;
|