@nycplanning/streetscape 0.16.0 → 0.17.1-0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Icon/EducationIcon.d.ts +2 -0
- package/dist/components/Icon/HealthIcon.d.ts +2 -0
- package/dist/components/Icon/HousingIcon.d.ts +2 -0
- package/dist/components/Icon/Icon.d.ts +6 -0
- package/dist/components/Icon/InfrastructureIcon.d.ts +2 -0
- package/dist/components/Icon/ParksIcon.d.ts +2 -0
- package/dist/components/Icon/PeopleIcon.d.ts +2 -0
- package/dist/components/Icon/SafetyIcon.d.ts +2 -0
- package/dist/components/Icon/TransportationIcon.d.ts +2 -0
- package/dist/components/Icon/index.d.ts +9 -0
- package/dist/components/Tag/Tag.d.ts +16 -0
- package/dist/components/Tag/index.d.ts +2 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/index.js +1597 -1041
- package/dist/index.js.map +1 -1
- package/dist/theme/components/index.d.ts +68 -4
- package/dist/theme/components/tag.d.ts +64 -0
- package/package.json +1 -1
|
@@ -751,7 +751,7 @@ export declare const components: {
|
|
|
751
751
|
} | undefined;
|
|
752
752
|
variants?: {
|
|
753
753
|
[key: string]: import('@chakra-ui/styled-system').PartsStyleInterpolation<{
|
|
754
|
-
keys: ("overlay" | "body" | "
|
|
754
|
+
keys: ("overlay" | "body" | "closeButton" | "dialog" | "footer" | "header" | "dialogContainer")[];
|
|
755
755
|
}>;
|
|
756
756
|
} | undefined;
|
|
757
757
|
defaultProps?: {
|
|
@@ -759,7 +759,7 @@ export declare const components: {
|
|
|
759
759
|
variant?: string | number | undefined;
|
|
760
760
|
colorScheme?: string | undefined;
|
|
761
761
|
} | undefined;
|
|
762
|
-
parts: ("overlay" | "body" | "
|
|
762
|
+
parts: ("overlay" | "body" | "closeButton" | "dialog" | "footer" | "header" | "dialogContainer")[];
|
|
763
763
|
};
|
|
764
764
|
Table: {
|
|
765
765
|
baseStyle?: {
|
|
@@ -1092,7 +1092,7 @@ export declare const components: {
|
|
|
1092
1092
|
} | undefined;
|
|
1093
1093
|
variants?: {
|
|
1094
1094
|
[key: string]: import('@chakra-ui/styled-system').PartsStyleInterpolation<{
|
|
1095
|
-
keys: ("overlay" | "body" | "
|
|
1095
|
+
keys: ("overlay" | "body" | "closeButton" | "dialog" | "footer" | "header" | "dialogContainer")[];
|
|
1096
1096
|
}>;
|
|
1097
1097
|
} | undefined;
|
|
1098
1098
|
defaultProps?: {
|
|
@@ -1100,7 +1100,7 @@ export declare const components: {
|
|
|
1100
1100
|
variant?: string | number | undefined;
|
|
1101
1101
|
colorScheme?: string | undefined;
|
|
1102
1102
|
} | undefined;
|
|
1103
|
-
parts: ("overlay" | "body" | "
|
|
1103
|
+
parts: ("overlay" | "body" | "closeButton" | "dialog" | "footer" | "header" | "dialogContainer")[];
|
|
1104
1104
|
};
|
|
1105
1105
|
Skeleton: {
|
|
1106
1106
|
baseStyle?: {
|
|
@@ -1158,4 +1158,68 @@ export declare const components: {
|
|
|
1158
1158
|
colorScheme?: string | undefined;
|
|
1159
1159
|
} | undefined;
|
|
1160
1160
|
};
|
|
1161
|
+
Tag: {
|
|
1162
|
+
baseStyle?: {
|
|
1163
|
+
container: {
|
|
1164
|
+
bg: string;
|
|
1165
|
+
color: string;
|
|
1166
|
+
minH: number;
|
|
1167
|
+
px: number;
|
|
1168
|
+
fontWeight: number;
|
|
1169
|
+
fontSize: string;
|
|
1170
|
+
lineHeight?: number | undefined;
|
|
1171
|
+
outline?: number | undefined;
|
|
1172
|
+
boxShadow?: string | undefined;
|
|
1173
|
+
borderRadius?: string | undefined;
|
|
1174
|
+
minW?: string | undefined;
|
|
1175
|
+
_focusVisible?: {
|
|
1176
|
+
[x: string]: string;
|
|
1177
|
+
} | undefined;
|
|
1178
|
+
};
|
|
1179
|
+
label?: {
|
|
1180
|
+
lineHeight: number;
|
|
1181
|
+
overflow: string;
|
|
1182
|
+
} | undefined;
|
|
1183
|
+
closeButton?: {
|
|
1184
|
+
fontSize: string;
|
|
1185
|
+
w: string;
|
|
1186
|
+
h: string;
|
|
1187
|
+
transitionProperty: string;
|
|
1188
|
+
transitionDuration: string;
|
|
1189
|
+
borderRadius: string;
|
|
1190
|
+
marginStart: string;
|
|
1191
|
+
marginEnd: string;
|
|
1192
|
+
opacity: number;
|
|
1193
|
+
_disabled: {
|
|
1194
|
+
opacity: number;
|
|
1195
|
+
};
|
|
1196
|
+
_focusVisible: {
|
|
1197
|
+
boxShadow: string;
|
|
1198
|
+
bg: string;
|
|
1199
|
+
};
|
|
1200
|
+
_hover: {
|
|
1201
|
+
opacity: number;
|
|
1202
|
+
};
|
|
1203
|
+
_active: {
|
|
1204
|
+
opacity: number;
|
|
1205
|
+
};
|
|
1206
|
+
} | undefined;
|
|
1207
|
+
} | undefined;
|
|
1208
|
+
sizes?: {
|
|
1209
|
+
[key: string]: import('@chakra-ui/styled-system').PartsStyleInterpolation<{
|
|
1210
|
+
keys: ("container" | "label" | "closeButton")[];
|
|
1211
|
+
}>;
|
|
1212
|
+
} | undefined;
|
|
1213
|
+
variants?: {
|
|
1214
|
+
[key: string]: import('@chakra-ui/styled-system').PartsStyleInterpolation<{
|
|
1215
|
+
keys: ("container" | "label" | "closeButton")[];
|
|
1216
|
+
}>;
|
|
1217
|
+
} | undefined;
|
|
1218
|
+
defaultProps?: {
|
|
1219
|
+
size?: string | number | undefined;
|
|
1220
|
+
variant?: string | number | undefined;
|
|
1221
|
+
colorScheme?: string | undefined;
|
|
1222
|
+
} | undefined;
|
|
1223
|
+
parts: ("container" | "label" | "closeButton")[];
|
|
1224
|
+
};
|
|
1161
1225
|
};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
export declare const tagTheme: {
|
|
2
|
+
baseStyle?: {
|
|
3
|
+
container: {
|
|
4
|
+
bg: string;
|
|
5
|
+
color: string;
|
|
6
|
+
minH: number;
|
|
7
|
+
px: number;
|
|
8
|
+
fontWeight: number;
|
|
9
|
+
fontSize: string;
|
|
10
|
+
lineHeight?: number | undefined;
|
|
11
|
+
outline?: number | undefined;
|
|
12
|
+
boxShadow?: string | undefined;
|
|
13
|
+
borderRadius?: string | undefined;
|
|
14
|
+
minW?: string | undefined;
|
|
15
|
+
_focusVisible?: {
|
|
16
|
+
[x: string]: string;
|
|
17
|
+
} | undefined;
|
|
18
|
+
};
|
|
19
|
+
label?: {
|
|
20
|
+
lineHeight: number;
|
|
21
|
+
overflow: string;
|
|
22
|
+
} | undefined;
|
|
23
|
+
closeButton?: {
|
|
24
|
+
fontSize: string;
|
|
25
|
+
w: string;
|
|
26
|
+
h: string;
|
|
27
|
+
transitionProperty: string;
|
|
28
|
+
transitionDuration: string;
|
|
29
|
+
borderRadius: string;
|
|
30
|
+
marginStart: string;
|
|
31
|
+
marginEnd: string;
|
|
32
|
+
opacity: number;
|
|
33
|
+
_disabled: {
|
|
34
|
+
opacity: number;
|
|
35
|
+
};
|
|
36
|
+
_focusVisible: {
|
|
37
|
+
boxShadow: string;
|
|
38
|
+
bg: string;
|
|
39
|
+
};
|
|
40
|
+
_hover: {
|
|
41
|
+
opacity: number;
|
|
42
|
+
};
|
|
43
|
+
_active: {
|
|
44
|
+
opacity: number;
|
|
45
|
+
};
|
|
46
|
+
} | undefined;
|
|
47
|
+
} | undefined;
|
|
48
|
+
sizes?: {
|
|
49
|
+
[key: string]: import('@chakra-ui/styled-system').PartsStyleInterpolation<{
|
|
50
|
+
keys: ("container" | "label" | "closeButton")[];
|
|
51
|
+
}>;
|
|
52
|
+
} | undefined;
|
|
53
|
+
variants?: {
|
|
54
|
+
[key: string]: import('@chakra-ui/styled-system').PartsStyleInterpolation<{
|
|
55
|
+
keys: ("container" | "label" | "closeButton")[];
|
|
56
|
+
}>;
|
|
57
|
+
} | undefined;
|
|
58
|
+
defaultProps?: {
|
|
59
|
+
size?: string | number | undefined;
|
|
60
|
+
variant?: string | number | undefined;
|
|
61
|
+
colorScheme?: string | undefined;
|
|
62
|
+
} | undefined;
|
|
63
|
+
parts: ("container" | "label" | "closeButton")[];
|
|
64
|
+
};
|