@lets-events/react 11.7.3 → 11.7.5
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/.eslintrc.json +2 -2
- package/.turbo/turbo-build.log +20 -18
- package/CHANGELOG.md +12 -0
- package/dist/index.d.mts +5 -374
- package/dist/index.d.ts +5 -374
- package/dist/index.js +57 -59
- package/dist/index.mjs +26 -28
- package/package.json +1 -1
- package/src/components/Alert.tsx +303 -303
- package/src/components/Avatar.tsx +55 -55
- package/src/components/Badge.tsx +125 -125
- package/src/components/Box.tsx +3 -3
- package/src/components/Button/index.tsx +16 -16
- package/src/components/Button/styledComponents.ts +287 -287
- package/src/components/ButtonGroup.tsx +484 -484
- package/src/components/Calendar/index.tsx +136 -136
- package/src/components/Calendar/styledComponents.ts +209 -209
- package/src/components/Card.tsx +48 -48
- package/src/components/CheckboxGroup.tsx +176 -176
- package/src/components/Container.tsx +39 -39
- package/src/components/Drawer/index.tsx +48 -48
- package/src/components/Drawer/styledComponents.ts +46 -46
- package/src/components/Dropdown.tsx +302 -302
- package/src/components/Filter.tsx +164 -164
- package/src/components/Flex.tsx +118 -118
- package/src/components/FormFields/AddressFormFields/CityFormField.tsx +111 -111
- package/src/components/FormFields/AddressFormFields/CountryFormField.tsx +33 -33
- package/src/components/FormFields/AddressFormFields/PostalCodeFormField.tsx +39 -39
- package/src/components/FormFields/AddressFormFields/StateFormField.tsx +32 -32
- package/src/components/FormFields/AddressFormFields/index.tsx +141 -141
- package/src/components/FormFields/BirthDateFormField.tsx +85 -85
- package/src/components/FormFields/CNPJFormField.tsx +87 -87
- package/src/components/FormFields/CPFFormField.tsx +77 -77
- package/src/components/FormFields/CheckboxGroupFormField.tsx +90 -90
- package/src/components/FormFields/EmailFormField.tsx +27 -27
- package/src/components/FormFields/Form.tsx +39 -39
- package/src/components/FormFields/IdentityDocumentNumberFormField.tsx +40 -40
- package/src/components/FormFields/MultiSelectFormField.tsx +55 -55
- package/src/components/FormFields/PhoneFormField.tsx +40 -40
- package/src/components/FormFields/RadioGroupFormField.tsx +84 -84
- package/src/components/FormFields/SelectFormField.tsx +93 -93
- package/src/components/FormFields/TextAreaFormField.tsx +48 -48
- package/src/components/FormFields/TextFormField.tsx +112 -107
- package/src/components/FormFields/subComponents/ErrorFormMessage.tsx +36 -36
- package/src/components/FormFields/subComponents/FormLabel.tsx +29 -29
- package/src/components/FormFields/utils/validation.ts +23 -23
- package/src/components/Grid.tsx +137 -137
- package/src/components/Icon.tsx +47 -47
- package/src/components/MenuDropdown/index.tsx +30 -30
- package/src/components/MenuDropdown/styledComponents.ts +31 -31
- package/src/components/Modal.tsx +90 -90
- package/src/components/MultiSelect.tsx +218 -218
- package/src/components/RadioGroup.tsx +210 -210
- package/src/components/Section.tsx +33 -33
- package/src/components/Step.tsx +164 -164
- package/src/components/Switch.tsx +108 -108
- package/src/components/Text.tsx +38 -38
- package/src/components/TextField.tsx +316 -316
- package/src/components/TextareaField.tsx +128 -128
- package/src/components/TimePicker.tsx +298 -298
- package/src/components/Toast/components/ToastItem.tsx +41 -41
- package/src/components/Toast/components/ToastProvider.tsx +63 -63
- package/src/components/Toast/hooks/useToast.ts +12 -12
- package/src/components/Toast/index.tsx +5 -5
- package/src/components/Toast/styles/index.ts +135 -135
- package/src/components/Toast/types/index.ts +46 -46
- package/src/components/Tooltip/index.tsx +66 -66
- package/src/components/Tooltip/styles.ts +77 -77
- package/src/hooks/useCountries.ts +41 -41
- package/src/hooks/useOnClickOutside.tsx +20 -20
- package/src/index.tsx +54 -54
- package/src/styles/index.ts +38 -38
- package/src/types/typographyValues.ts +178 -178
- package/src/utils/getNestedValue.ts +3 -3
- package/src/utils/states.ts +29 -29
- package/tsconfig.json +3 -3
- package/dist/index.css +0 -171
|
@@ -1,179 +1,179 @@
|
|
|
1
|
-
export const typographyValues = {
|
|
2
|
-
displayLarge: {
|
|
3
|
-
fontSize: '$displayLarge',
|
|
4
|
-
lineHeight: '$displayLarge',
|
|
5
|
-
letterSpacing: '$displayLarge',
|
|
6
|
-
|
|
7
|
-
},
|
|
8
|
-
displayMedium: {
|
|
9
|
-
fontSize: '$displayMedium',
|
|
10
|
-
lineHeight: '$displayMedium',
|
|
11
|
-
letterSpacing: '$displayMedium',
|
|
12
|
-
},
|
|
13
|
-
displaySmall: {
|
|
14
|
-
fontSize: '$displaySmall',
|
|
15
|
-
lineHeight: '$displaySmall',
|
|
16
|
-
letterSpacing: '$displaySmall',
|
|
17
|
-
},
|
|
18
|
-
headline1: {
|
|
19
|
-
fontSize: '$headline1',
|
|
20
|
-
lineHeight: '$headline1',
|
|
21
|
-
},
|
|
22
|
-
headline2: {
|
|
23
|
-
fontSize: '$headline2',
|
|
24
|
-
lineHeight: '$headline2',
|
|
25
|
-
},
|
|
26
|
-
headline3: {
|
|
27
|
-
fontSize: '$headline3',
|
|
28
|
-
lineHeight: '$headline3',
|
|
29
|
-
},
|
|
30
|
-
headline4: {
|
|
31
|
-
fontSize: '$headline4',
|
|
32
|
-
lineHeight: '$headline4',
|
|
33
|
-
},
|
|
34
|
-
headline5: {
|
|
35
|
-
fontSize: '$headline5',
|
|
36
|
-
lineHeight: '$headline5',
|
|
37
|
-
},
|
|
38
|
-
headline6: {
|
|
39
|
-
fontSize: '$headline6',
|
|
40
|
-
lineHeight: '$headline6',
|
|
41
|
-
},
|
|
42
|
-
headline7: {
|
|
43
|
-
fontSize: '$headline7',
|
|
44
|
-
lineHeight: '$headline7',
|
|
45
|
-
},
|
|
46
|
-
headline8: {
|
|
47
|
-
fontSize: '$headline8',
|
|
48
|
-
lineHeight: '$headline8',
|
|
49
|
-
},
|
|
50
|
-
bodyXL: {
|
|
51
|
-
fontSize: '$bodyXL',
|
|
52
|
-
lineHeight: '$bodyXL',
|
|
53
|
-
},
|
|
54
|
-
bodyL: {
|
|
55
|
-
fontSize: '$bodyL',
|
|
56
|
-
lineHeight: '$bodyL',
|
|
57
|
-
},
|
|
58
|
-
bodyM: {
|
|
59
|
-
fontSize: '$bodyM',
|
|
60
|
-
lineHeight: '$bodyM',
|
|
61
|
-
},
|
|
62
|
-
bodyS: {
|
|
63
|
-
fontSize: '$bodyS',
|
|
64
|
-
lineHeight: '$bodyS',
|
|
65
|
-
},
|
|
66
|
-
bodyXS: {
|
|
67
|
-
fontSize: '$bodyXS',
|
|
68
|
-
lineHeight: '$bodyXS',
|
|
69
|
-
},
|
|
70
|
-
bodyXXS: {
|
|
71
|
-
fontSize: '$bodyXXS',
|
|
72
|
-
lineHeight: '$bodyXXS',
|
|
73
|
-
},
|
|
74
|
-
badgeLarge: {
|
|
75
|
-
fontSize: '$badgeLarge',
|
|
76
|
-
lineHeight: '$badgeLarge',
|
|
77
|
-
},
|
|
78
|
-
badgeMedium: {
|
|
79
|
-
fontSize: '$badgeMedium',
|
|
80
|
-
lineHeight: '$badgeMedium',
|
|
81
|
-
},
|
|
82
|
-
badgeSmall: {
|
|
83
|
-
fontSize: '$badgeSmall',
|
|
84
|
-
lineHeight: '$badgeSmall',
|
|
85
|
-
},
|
|
86
|
-
badgeExtraSmall: {
|
|
87
|
-
fontSize: '$badgeExtraSmall',
|
|
88
|
-
lineHeight: '$badgeExtraSmall',
|
|
89
|
-
},
|
|
90
|
-
tooltip: {
|
|
91
|
-
fontSize: '$tooltip',
|
|
92
|
-
lineHeight: '$tooltip',
|
|
93
|
-
},
|
|
94
|
-
popoversRegular: {
|
|
95
|
-
fontSize: '$popoversRegular',
|
|
96
|
-
lineHeight: '$popoversRegular',
|
|
97
|
-
},
|
|
98
|
-
captionLarge: {
|
|
99
|
-
fontSize: '$captionLarge',
|
|
100
|
-
lineHeight: '$captionLarge',
|
|
101
|
-
},
|
|
102
|
-
captionMedium: {
|
|
103
|
-
fontSize: '$captionMedium',
|
|
104
|
-
lineHeight: '$captionMedium',
|
|
105
|
-
},
|
|
106
|
-
captionSmall: {
|
|
107
|
-
fontSize: '$captionSmall',
|
|
108
|
-
lineHeight: '$captionSmall',
|
|
109
|
-
},
|
|
110
|
-
buttonLarge: {
|
|
111
|
-
fontSize: '$buttonLarge',
|
|
112
|
-
lineHeight: '$buttonLarge',
|
|
113
|
-
},
|
|
114
|
-
buttonMedium: {
|
|
115
|
-
fontSize: '$buttonMedium',
|
|
116
|
-
lineHeight: '$buttonMedium',
|
|
117
|
-
},
|
|
118
|
-
buttonSmall: {
|
|
119
|
-
fontSize: '$buttonSmall',
|
|
120
|
-
lineHeight: '$buttonSmall',
|
|
121
|
-
},
|
|
122
|
-
buttonExtraSmall: {
|
|
123
|
-
fontSize: '$buttonExtraSmall',
|
|
124
|
-
lineHeight: '$buttonExtraSmall',
|
|
125
|
-
},
|
|
126
|
-
labelLarge: {
|
|
127
|
-
fontSize: '$labelLarge',
|
|
128
|
-
lineHeight: '$labelLarge',
|
|
129
|
-
},
|
|
130
|
-
labelMedium: {
|
|
131
|
-
fontSize: '$labelMedium',
|
|
132
|
-
lineHeight: '$labelMedium',
|
|
133
|
-
},
|
|
134
|
-
labelSmall: {
|
|
135
|
-
fontSize: '$labelSmall',
|
|
136
|
-
lineHeight: '$labelSmall',
|
|
137
|
-
},
|
|
138
|
-
labelExtraSmall: {
|
|
139
|
-
fontSize: '$labelExtraSmall',
|
|
140
|
-
lineHeight: '$labelExtraSmall',
|
|
141
|
-
},
|
|
142
|
-
|
|
143
|
-
}
|
|
144
|
-
export const typographyButtonValues = {
|
|
145
|
-
buttonLarge: {
|
|
146
|
-
fontSize: '$buttonLarge',
|
|
147
|
-
lineHeight: '$buttonLarge',
|
|
148
|
-
},
|
|
149
|
-
buttonMedium: {
|
|
150
|
-
fontSize: '$buttonMedium',
|
|
151
|
-
lineHeight: '$buttonMedium',
|
|
152
|
-
},
|
|
153
|
-
buttonSmall: {
|
|
154
|
-
fontSize: '$buttonSmall',
|
|
155
|
-
lineHeight: '$buttonSmall',
|
|
156
|
-
},
|
|
157
|
-
buttonExtraSmall: {
|
|
158
|
-
fontSize: '$buttonExtraSmall',
|
|
159
|
-
lineHeight: '$buttonExtraSmall',
|
|
160
|
-
},
|
|
161
|
-
}
|
|
162
|
-
export const typographyLabelValues = {
|
|
163
|
-
labelLarge: {
|
|
164
|
-
fontSize: '$labelLarge',
|
|
165
|
-
lineHeight: '$labelLarge',
|
|
166
|
-
},
|
|
167
|
-
labelMedium: {
|
|
168
|
-
fontSize: '$labelMedium',
|
|
169
|
-
lineHeight: '$labelMedium',
|
|
170
|
-
},
|
|
171
|
-
labelSmall: {
|
|
172
|
-
fontSize: '$labelSmall',
|
|
173
|
-
lineHeight: '$labelSmall',
|
|
174
|
-
},
|
|
175
|
-
labelExtraSmall: {
|
|
176
|
-
fontSize: '$labelExtraSmall',
|
|
177
|
-
lineHeight: '$labelExtraSmall',
|
|
178
|
-
},
|
|
1
|
+
export const typographyValues = {
|
|
2
|
+
displayLarge: {
|
|
3
|
+
fontSize: '$displayLarge',
|
|
4
|
+
lineHeight: '$displayLarge',
|
|
5
|
+
letterSpacing: '$displayLarge',
|
|
6
|
+
|
|
7
|
+
},
|
|
8
|
+
displayMedium: {
|
|
9
|
+
fontSize: '$displayMedium',
|
|
10
|
+
lineHeight: '$displayMedium',
|
|
11
|
+
letterSpacing: '$displayMedium',
|
|
12
|
+
},
|
|
13
|
+
displaySmall: {
|
|
14
|
+
fontSize: '$displaySmall',
|
|
15
|
+
lineHeight: '$displaySmall',
|
|
16
|
+
letterSpacing: '$displaySmall',
|
|
17
|
+
},
|
|
18
|
+
headline1: {
|
|
19
|
+
fontSize: '$headline1',
|
|
20
|
+
lineHeight: '$headline1',
|
|
21
|
+
},
|
|
22
|
+
headline2: {
|
|
23
|
+
fontSize: '$headline2',
|
|
24
|
+
lineHeight: '$headline2',
|
|
25
|
+
},
|
|
26
|
+
headline3: {
|
|
27
|
+
fontSize: '$headline3',
|
|
28
|
+
lineHeight: '$headline3',
|
|
29
|
+
},
|
|
30
|
+
headline4: {
|
|
31
|
+
fontSize: '$headline4',
|
|
32
|
+
lineHeight: '$headline4',
|
|
33
|
+
},
|
|
34
|
+
headline5: {
|
|
35
|
+
fontSize: '$headline5',
|
|
36
|
+
lineHeight: '$headline5',
|
|
37
|
+
},
|
|
38
|
+
headline6: {
|
|
39
|
+
fontSize: '$headline6',
|
|
40
|
+
lineHeight: '$headline6',
|
|
41
|
+
},
|
|
42
|
+
headline7: {
|
|
43
|
+
fontSize: '$headline7',
|
|
44
|
+
lineHeight: '$headline7',
|
|
45
|
+
},
|
|
46
|
+
headline8: {
|
|
47
|
+
fontSize: '$headline8',
|
|
48
|
+
lineHeight: '$headline8',
|
|
49
|
+
},
|
|
50
|
+
bodyXL: {
|
|
51
|
+
fontSize: '$bodyXL',
|
|
52
|
+
lineHeight: '$bodyXL',
|
|
53
|
+
},
|
|
54
|
+
bodyL: {
|
|
55
|
+
fontSize: '$bodyL',
|
|
56
|
+
lineHeight: '$bodyL',
|
|
57
|
+
},
|
|
58
|
+
bodyM: {
|
|
59
|
+
fontSize: '$bodyM',
|
|
60
|
+
lineHeight: '$bodyM',
|
|
61
|
+
},
|
|
62
|
+
bodyS: {
|
|
63
|
+
fontSize: '$bodyS',
|
|
64
|
+
lineHeight: '$bodyS',
|
|
65
|
+
},
|
|
66
|
+
bodyXS: {
|
|
67
|
+
fontSize: '$bodyXS',
|
|
68
|
+
lineHeight: '$bodyXS',
|
|
69
|
+
},
|
|
70
|
+
bodyXXS: {
|
|
71
|
+
fontSize: '$bodyXXS',
|
|
72
|
+
lineHeight: '$bodyXXS',
|
|
73
|
+
},
|
|
74
|
+
badgeLarge: {
|
|
75
|
+
fontSize: '$badgeLarge',
|
|
76
|
+
lineHeight: '$badgeLarge',
|
|
77
|
+
},
|
|
78
|
+
badgeMedium: {
|
|
79
|
+
fontSize: '$badgeMedium',
|
|
80
|
+
lineHeight: '$badgeMedium',
|
|
81
|
+
},
|
|
82
|
+
badgeSmall: {
|
|
83
|
+
fontSize: '$badgeSmall',
|
|
84
|
+
lineHeight: '$badgeSmall',
|
|
85
|
+
},
|
|
86
|
+
badgeExtraSmall: {
|
|
87
|
+
fontSize: '$badgeExtraSmall',
|
|
88
|
+
lineHeight: '$badgeExtraSmall',
|
|
89
|
+
},
|
|
90
|
+
tooltip: {
|
|
91
|
+
fontSize: '$tooltip',
|
|
92
|
+
lineHeight: '$tooltip',
|
|
93
|
+
},
|
|
94
|
+
popoversRegular: {
|
|
95
|
+
fontSize: '$popoversRegular',
|
|
96
|
+
lineHeight: '$popoversRegular',
|
|
97
|
+
},
|
|
98
|
+
captionLarge: {
|
|
99
|
+
fontSize: '$captionLarge',
|
|
100
|
+
lineHeight: '$captionLarge',
|
|
101
|
+
},
|
|
102
|
+
captionMedium: {
|
|
103
|
+
fontSize: '$captionMedium',
|
|
104
|
+
lineHeight: '$captionMedium',
|
|
105
|
+
},
|
|
106
|
+
captionSmall: {
|
|
107
|
+
fontSize: '$captionSmall',
|
|
108
|
+
lineHeight: '$captionSmall',
|
|
109
|
+
},
|
|
110
|
+
buttonLarge: {
|
|
111
|
+
fontSize: '$buttonLarge',
|
|
112
|
+
lineHeight: '$buttonLarge',
|
|
113
|
+
},
|
|
114
|
+
buttonMedium: {
|
|
115
|
+
fontSize: '$buttonMedium',
|
|
116
|
+
lineHeight: '$buttonMedium',
|
|
117
|
+
},
|
|
118
|
+
buttonSmall: {
|
|
119
|
+
fontSize: '$buttonSmall',
|
|
120
|
+
lineHeight: '$buttonSmall',
|
|
121
|
+
},
|
|
122
|
+
buttonExtraSmall: {
|
|
123
|
+
fontSize: '$buttonExtraSmall',
|
|
124
|
+
lineHeight: '$buttonExtraSmall',
|
|
125
|
+
},
|
|
126
|
+
labelLarge: {
|
|
127
|
+
fontSize: '$labelLarge',
|
|
128
|
+
lineHeight: '$labelLarge',
|
|
129
|
+
},
|
|
130
|
+
labelMedium: {
|
|
131
|
+
fontSize: '$labelMedium',
|
|
132
|
+
lineHeight: '$labelMedium',
|
|
133
|
+
},
|
|
134
|
+
labelSmall: {
|
|
135
|
+
fontSize: '$labelSmall',
|
|
136
|
+
lineHeight: '$labelSmall',
|
|
137
|
+
},
|
|
138
|
+
labelExtraSmall: {
|
|
139
|
+
fontSize: '$labelExtraSmall',
|
|
140
|
+
lineHeight: '$labelExtraSmall',
|
|
141
|
+
},
|
|
142
|
+
|
|
143
|
+
}
|
|
144
|
+
export const typographyButtonValues = {
|
|
145
|
+
buttonLarge: {
|
|
146
|
+
fontSize: '$buttonLarge',
|
|
147
|
+
lineHeight: '$buttonLarge',
|
|
148
|
+
},
|
|
149
|
+
buttonMedium: {
|
|
150
|
+
fontSize: '$buttonMedium',
|
|
151
|
+
lineHeight: '$buttonMedium',
|
|
152
|
+
},
|
|
153
|
+
buttonSmall: {
|
|
154
|
+
fontSize: '$buttonSmall',
|
|
155
|
+
lineHeight: '$buttonSmall',
|
|
156
|
+
},
|
|
157
|
+
buttonExtraSmall: {
|
|
158
|
+
fontSize: '$buttonExtraSmall',
|
|
159
|
+
lineHeight: '$buttonExtraSmall',
|
|
160
|
+
},
|
|
161
|
+
}
|
|
162
|
+
export const typographyLabelValues = {
|
|
163
|
+
labelLarge: {
|
|
164
|
+
fontSize: '$labelLarge',
|
|
165
|
+
lineHeight: '$labelLarge',
|
|
166
|
+
},
|
|
167
|
+
labelMedium: {
|
|
168
|
+
fontSize: '$labelMedium',
|
|
169
|
+
lineHeight: '$labelMedium',
|
|
170
|
+
},
|
|
171
|
+
labelSmall: {
|
|
172
|
+
fontSize: '$labelSmall',
|
|
173
|
+
lineHeight: '$labelSmall',
|
|
174
|
+
},
|
|
175
|
+
labelExtraSmall: {
|
|
176
|
+
fontSize: '$labelExtraSmall',
|
|
177
|
+
lineHeight: '$labelExtraSmall',
|
|
178
|
+
},
|
|
179
179
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export function getNestedValue(obj: any, path: string): any {
|
|
2
|
-
return path.split(".").reduce((acc, key) => acc?.[key], obj);
|
|
3
|
-
}
|
|
1
|
+
export function getNestedValue(obj: any, path: string): any {
|
|
2
|
+
return path.split(".").reduce((acc, key) => acc?.[key], obj);
|
|
3
|
+
}
|
package/src/utils/states.ts
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
export const brazilianStates = [
|
|
2
|
-
{ value: "AC", label: "Acre" },
|
|
3
|
-
{ value: "AL", label: "Alagoas" },
|
|
4
|
-
{ value: "AP", label: "Amapá" },
|
|
5
|
-
{ value: "AM", label: "Amazonas" },
|
|
6
|
-
{ value: "BA", label: "Bahia" },
|
|
7
|
-
{ value: "CE", label: "Ceará" },
|
|
8
|
-
{ value: "DF", label: "Distrito Federal" },
|
|
9
|
-
{ value: "ES", label: "Espírito Santo" },
|
|
10
|
-
{ value: "GO", label: "Goiás" },
|
|
11
|
-
{ value: "MA", label: "Maranhão" },
|
|
12
|
-
{ value: "MT", label: "Mato Grosso" },
|
|
13
|
-
{ value: "MS", label: "Mato Grosso do Sul" },
|
|
14
|
-
{ value: "MG", label: "Minas Gerais" },
|
|
15
|
-
{ value: "PA", label: "Pará" },
|
|
16
|
-
{ value: "PB", label: "Paraíba" },
|
|
17
|
-
{ value: "PR", label: "Paraná" },
|
|
18
|
-
{ value: "PE", label: "Pernambuco" },
|
|
19
|
-
{ value: "PI", label: "Piauí" },
|
|
20
|
-
{ value: "RJ", label: "Rio de Janeiro" },
|
|
21
|
-
{ value: "RN", label: "Rio Grande do Norte" },
|
|
22
|
-
{ value: "RS", label: "Rio Grande do Sul" },
|
|
23
|
-
{ value: "RO", label: "Rondônia" },
|
|
24
|
-
{ value: "RR", label: "Roraima" },
|
|
25
|
-
{ value: "SC", label: "Santa Catarina" },
|
|
26
|
-
{ value: "SP", label: "São Paulo" },
|
|
27
|
-
{ value: "SE", label: "Sergipe" },
|
|
28
|
-
{ value: "TO", label: "Tocantins" },
|
|
29
|
-
];
|
|
1
|
+
export const brazilianStates = [
|
|
2
|
+
{ value: "AC", label: "Acre" },
|
|
3
|
+
{ value: "AL", label: "Alagoas" },
|
|
4
|
+
{ value: "AP", label: "Amapá" },
|
|
5
|
+
{ value: "AM", label: "Amazonas" },
|
|
6
|
+
{ value: "BA", label: "Bahia" },
|
|
7
|
+
{ value: "CE", label: "Ceará" },
|
|
8
|
+
{ value: "DF", label: "Distrito Federal" },
|
|
9
|
+
{ value: "ES", label: "Espírito Santo" },
|
|
10
|
+
{ value: "GO", label: "Goiás" },
|
|
11
|
+
{ value: "MA", label: "Maranhão" },
|
|
12
|
+
{ value: "MT", label: "Mato Grosso" },
|
|
13
|
+
{ value: "MS", label: "Mato Grosso do Sul" },
|
|
14
|
+
{ value: "MG", label: "Minas Gerais" },
|
|
15
|
+
{ value: "PA", label: "Pará" },
|
|
16
|
+
{ value: "PB", label: "Paraíba" },
|
|
17
|
+
{ value: "PR", label: "Paraná" },
|
|
18
|
+
{ value: "PE", label: "Pernambuco" },
|
|
19
|
+
{ value: "PI", label: "Piauí" },
|
|
20
|
+
{ value: "RJ", label: "Rio de Janeiro" },
|
|
21
|
+
{ value: "RN", label: "Rio Grande do Norte" },
|
|
22
|
+
{ value: "RS", label: "Rio Grande do Sul" },
|
|
23
|
+
{ value: "RO", label: "Rondônia" },
|
|
24
|
+
{ value: "RR", label: "Roraima" },
|
|
25
|
+
{ value: "SC", label: "Santa Catarina" },
|
|
26
|
+
{ value: "SP", label: "São Paulo" },
|
|
27
|
+
{ value: "SE", label: "Sergipe" },
|
|
28
|
+
{ value: "TO", label: "Tocantins" },
|
|
29
|
+
];
|
package/tsconfig.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "@lets-events/ts-config/react.json",
|
|
3
|
-
"include": ["src"]
|
|
1
|
+
{
|
|
2
|
+
"extends": "@lets-events/ts-config/react.json",
|
|
3
|
+
"include": ["src"]
|
|
4
4
|
}
|
package/dist/index.css
DELETED
|
@@ -1,171 +0,0 @@
|
|
|
1
|
-
/* ../../node_modules/react-international-phone/dist/index.css */
|
|
2
|
-
.react-international-phone-country-selector {
|
|
3
|
-
position: relative;
|
|
4
|
-
}
|
|
5
|
-
.react-international-phone-country-selector-button {
|
|
6
|
-
display: flex;
|
|
7
|
-
height: var(--react-international-phone-height, 36px);
|
|
8
|
-
box-sizing: border-box;
|
|
9
|
-
align-items: center;
|
|
10
|
-
justify-content: center;
|
|
11
|
-
padding: 0;
|
|
12
|
-
border: 1px solid var(--react-international-phone-country-selector-border-color, var(--react-international-phone-border-color, gainsboro));
|
|
13
|
-
margin: 0;
|
|
14
|
-
appearance: button;
|
|
15
|
-
-webkit-appearance: button;
|
|
16
|
-
background-color: var(--react-international-phone-country-selector-background-color, var(--react-international-phone-background-color, white));
|
|
17
|
-
cursor: pointer;
|
|
18
|
-
text-transform: none;
|
|
19
|
-
user-select: none;
|
|
20
|
-
}
|
|
21
|
-
.react-international-phone-country-selector-button:hover {
|
|
22
|
-
background-color: var(--react-international-phone-country-selector-background-color-hover, whitesmoke);
|
|
23
|
-
}
|
|
24
|
-
.react-international-phone-country-selector-button--hide-dropdown {
|
|
25
|
-
cursor: auto;
|
|
26
|
-
}
|
|
27
|
-
.react-international-phone-country-selector-button--hide-dropdown:hover {
|
|
28
|
-
background-color: transparent;
|
|
29
|
-
}
|
|
30
|
-
.react-international-phone-country-selector-button__button-content {
|
|
31
|
-
display: flex;
|
|
32
|
-
align-items: center;
|
|
33
|
-
justify-content: center;
|
|
34
|
-
}
|
|
35
|
-
.react-international-phone-country-selector-button__flag-emoji {
|
|
36
|
-
margin: 0 4px;
|
|
37
|
-
}
|
|
38
|
-
.react-international-phone-country-selector-button__flag-emoji--disabled {
|
|
39
|
-
opacity: .75;
|
|
40
|
-
}
|
|
41
|
-
.react-international-phone-country-selector-button__dropdown-arrow {
|
|
42
|
-
border-top: var(--react-international-phone-country-selector-arrow-size, 4px) solid var(--react-international-phone-country-selector-arrow-color, #777);
|
|
43
|
-
border-right: var(--react-international-phone-country-selector-arrow-size, 4px) solid transparent;
|
|
44
|
-
border-left: var(--react-international-phone-country-selector-arrow-size, 4px) solid transparent;
|
|
45
|
-
margin-right: 4px;
|
|
46
|
-
transition: all .1s ease-out;
|
|
47
|
-
}
|
|
48
|
-
.react-international-phone-country-selector-button__dropdown-arrow--active {
|
|
49
|
-
transform: rotateX(180deg);
|
|
50
|
-
}
|
|
51
|
-
.react-international-phone-country-selector-button__dropdown-arrow--disabled {
|
|
52
|
-
border-top-color: var(--react-international-phone-disabled-country-selector-arrow-color, #999);
|
|
53
|
-
}
|
|
54
|
-
.react-international-phone-country-selector-button--disabled {
|
|
55
|
-
background-color: var(--react-international-phone-disabled-country-selector-background-color, var(--react-international-phone-disabled-background-color, whitesmoke));
|
|
56
|
-
cursor: auto;
|
|
57
|
-
}
|
|
58
|
-
.react-international-phone-country-selector-button--disabled:hover {
|
|
59
|
-
background-color: var(--react-international-phone-disabled-country-selector-background-color, var(--react-international-phone-disabled-background-color, whitesmoke));
|
|
60
|
-
}
|
|
61
|
-
.react-international-phone-flag-emoji {
|
|
62
|
-
width: var(--react-international-phone-flag-width, 24px);
|
|
63
|
-
height: var(--react-international-phone-flag-height, 24px);
|
|
64
|
-
box-sizing: border-box;
|
|
65
|
-
}
|
|
66
|
-
.react-international-phone-country-selector-dropdown {
|
|
67
|
-
position: absolute;
|
|
68
|
-
z-index: 1;
|
|
69
|
-
top: var(--react-international-phone-dropdown-top, 44px);
|
|
70
|
-
left: var(--react-international-phone-dropdown-left, 0);
|
|
71
|
-
display: flex;
|
|
72
|
-
width: 300px;
|
|
73
|
-
max-height: 200px;
|
|
74
|
-
flex-direction: column;
|
|
75
|
-
padding: 4px 0;
|
|
76
|
-
margin: 0;
|
|
77
|
-
background-color: var(--react-international-phone-dropdown-item-background-color, var(--react-international-phone-background-color, white));
|
|
78
|
-
box-shadow: var(--react-international-phone-dropdown-shadow, 2px 2px 16px rgba(0, 0, 0, .25));
|
|
79
|
-
color: var(--react-international-phone-dropdown-item-text-color, var(--react-international-phone-text-color, #222));
|
|
80
|
-
list-style: none;
|
|
81
|
-
overflow-y: scroll;
|
|
82
|
-
}
|
|
83
|
-
.react-international-phone-country-selector-dropdown__preferred-list-divider {
|
|
84
|
-
height: 1px;
|
|
85
|
-
border: none;
|
|
86
|
-
margin: var(--react-international-phone-dropdown-preferred-list-divider-margin, 0);
|
|
87
|
-
background: var(--react-international-phone-dropdown-preferred-list-divider-color, var(--react-international-phone-border-color, gainsboro));
|
|
88
|
-
}
|
|
89
|
-
.react-international-phone-country-selector-dropdown__list-item {
|
|
90
|
-
display: flex;
|
|
91
|
-
min-height: var(--react-international-phone-dropdown-item-height, 28px);
|
|
92
|
-
box-sizing: border-box;
|
|
93
|
-
align-items: center;
|
|
94
|
-
padding: 2px 8px;
|
|
95
|
-
}
|
|
96
|
-
.react-international-phone-country-selector-dropdown__list-item-flag-emoji {
|
|
97
|
-
margin-right: 8px;
|
|
98
|
-
}
|
|
99
|
-
.react-international-phone-country-selector-dropdown__list-item-country-name {
|
|
100
|
-
overflow: hidden;
|
|
101
|
-
margin-right: 8px;
|
|
102
|
-
font-size: var(--react-international-phone-dropdown-item-font-size, 14px);
|
|
103
|
-
text-overflow: ellipsis;
|
|
104
|
-
white-space: nowrap;
|
|
105
|
-
}
|
|
106
|
-
.react-international-phone-country-selector-dropdown__list-item-dial-code {
|
|
107
|
-
color: var(--react-international-phone-dropdown-item-dial-code-color, gray);
|
|
108
|
-
font-size: var(--react-international-phone-dropdown-item-font-size, 14px);
|
|
109
|
-
}
|
|
110
|
-
.react-international-phone-country-selector-dropdown__list-item:hover {
|
|
111
|
-
background-color: var(--react-international-phone-selected-dropdown-item-background-color, var(--react-international-phone-selected-dropdown-item-background-color, whitesmoke));
|
|
112
|
-
cursor: pointer;
|
|
113
|
-
}
|
|
114
|
-
.react-international-phone-country-selector-dropdown__list-item--selected,
|
|
115
|
-
.react-international-phone-country-selector-dropdown__list-item--focused {
|
|
116
|
-
background-color: var(--react-international-phone-selected-dropdown-item-background-color, whitesmoke);
|
|
117
|
-
color: var(--react-international-phone-selected-dropdown-item-text-color, var(--react-international-phone-text-color, #222));
|
|
118
|
-
}
|
|
119
|
-
.react-international-phone-country-selector-dropdown__list-item--selected .react-international-phone-country-selector-dropdown__list-item-dial-code,
|
|
120
|
-
.react-international-phone-country-selector-dropdown__list-item--focused .react-international-phone-country-selector-dropdown__list-item-dial-code {
|
|
121
|
-
color: var(--react-international-phone-selected-dropdown-item-dial-code-color, var(--react-international-phone-dropdown-item-dial-code-color, gray));
|
|
122
|
-
}
|
|
123
|
-
.react-international-phone-country-selector-dropdown__list-item--focused {
|
|
124
|
-
background-color: var(--react-international-phone-selected-dropdown-item-background-color, var(--react-international-phone-selected-dropdown-item-background-color, whitesmoke));
|
|
125
|
-
}
|
|
126
|
-
.react-international-phone-dial-code-preview {
|
|
127
|
-
display: flex;
|
|
128
|
-
align-items: center;
|
|
129
|
-
justify-content: center;
|
|
130
|
-
padding: 0 8px;
|
|
131
|
-
border: 1px solid var(--react-international-phone-dial-code-preview-border-color, var(--react-international-phone-border-color, gainsboro));
|
|
132
|
-
margin-right: -1px;
|
|
133
|
-
background-color: var(--react-international-phone-dial-code-preview-background-color, var(--react-international-phone-background-color, white));
|
|
134
|
-
color: var(--react-international-phone-dial-code-preview-text-color, var(--react-international-phone-text-color, #222));
|
|
135
|
-
font-size: var(--react-international-phone-dial-code-preview-font-size, var(--react-international-phone-font-size, 13px));
|
|
136
|
-
}
|
|
137
|
-
.react-international-phone-dial-code-preview--disabled {
|
|
138
|
-
background-color: var(--react-international-phone-dial-code-preview-disabled-background-color, var(--react-international-phone-disabled-background-color, whitesmoke));
|
|
139
|
-
color: var(--react-international-phone-dial-code-preview-disabled-text-color, var(--react-international-phone-disabled-text-color, #666));
|
|
140
|
-
}
|
|
141
|
-
.react-international-phone-input-container {
|
|
142
|
-
display: flex;
|
|
143
|
-
}
|
|
144
|
-
.react-international-phone-input-container .react-international-phone-country-selector-button {
|
|
145
|
-
border-radius: var(--react-international-phone-border-radius, 4px);
|
|
146
|
-
margin-right: -1px;
|
|
147
|
-
border-bottom-right-radius: 0;
|
|
148
|
-
border-top-right-radius: 0;
|
|
149
|
-
}
|
|
150
|
-
.react-international-phone-input-container .react-international-phone-input {
|
|
151
|
-
overflow: visible;
|
|
152
|
-
height: var(--react-international-phone-height, 36px);
|
|
153
|
-
box-sizing: border-box;
|
|
154
|
-
padding: 0 8px;
|
|
155
|
-
border: 1px solid var(--react-international-phone-border-color, gainsboro);
|
|
156
|
-
border-radius: var(--react-international-phone-border-radius, 4px);
|
|
157
|
-
margin: 0;
|
|
158
|
-
background-color: var(--react-international-phone-background-color, white);
|
|
159
|
-
border-bottom-left-radius: 0;
|
|
160
|
-
border-top-left-radius: 0;
|
|
161
|
-
color: var(--react-international-phone-text-color, #222);
|
|
162
|
-
font-family: inherit;
|
|
163
|
-
font-size: var(--react-international-phone-font-size, 13px);
|
|
164
|
-
}
|
|
165
|
-
.react-international-phone-input-container .react-international-phone-input:focus {
|
|
166
|
-
outline: none;
|
|
167
|
-
}
|
|
168
|
-
.react-international-phone-input-container .react-international-phone-input--disabled {
|
|
169
|
-
background-color: var(--react-international-phone-disabled-background-color, whitesmoke);
|
|
170
|
-
color: var(--react-international-phone-disabled-text-color, #666);
|
|
171
|
-
}
|