@inntechcorp/it-design 3.1.9 → 3.1.10
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/index.cjs.js +20 -4
- package/dist/index.d.ts +3 -1
- package/dist/index.esm.js +48 -32
- package/dist/locales/calendar.json +22 -22
- package/dist/locales/itd.json +234 -235
- package/dist/radio/button/RadioButton.d.ts +1 -1
- package/dist/radio/button/styled.d.ts +1 -0
- package/dist/stories/RadioGroup.stories.d.ts +1 -1
- package/dist/types/RadioProps.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"weekdaysLong":[
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
3
|
+
"Sunday",
|
|
4
|
+
"Monday",
|
|
5
|
+
"Tuesday",
|
|
6
|
+
"Wednesday",
|
|
7
|
+
"Thursday",
|
|
8
|
+
"Friday",
|
|
9
|
+
"Saturday"
|
|
10
10
|
],
|
|
11
11
|
"weekdaysShort":[
|
|
12
|
-
"
|
|
12
|
+
"Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"
|
|
13
13
|
],
|
|
14
14
|
"months":[
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
15
|
+
"January",
|
|
16
|
+
"February",
|
|
17
|
+
"March",
|
|
18
|
+
"April",
|
|
19
|
+
"May",
|
|
20
|
+
"June",
|
|
21
|
+
"July",
|
|
22
|
+
"August",
|
|
23
|
+
"September",
|
|
24
|
+
"October",
|
|
25
|
+
"November",
|
|
26
|
+
"December"
|
|
27
27
|
],
|
|
28
|
-
"firstDay":
|
|
29
|
-
"format": "DD/
|
|
28
|
+
"firstDay": 0,
|
|
29
|
+
"format": "MM/DD/YYYY"
|
|
30
30
|
}
|
package/dist/locales/itd.json
CHANGED
|
@@ -1,321 +1,320 @@
|
|
|
1
1
|
{
|
|
2
|
-
"success": "
|
|
3
|
-
"error": "
|
|
2
|
+
"success": "Success",
|
|
3
|
+
"error": "Error",
|
|
4
4
|
"table": {
|
|
5
|
-
"noData": "
|
|
5
|
+
"noData": "No Data"
|
|
6
6
|
},
|
|
7
7
|
"placeholders": {
|
|
8
|
-
"username": "
|
|
9
|
-
"email": "E-
|
|
10
|
-
"password": "
|
|
11
|
-
"confirmPassword": "
|
|
12
|
-
"typeYourNoteHere": "
|
|
13
|
-
"selectGender": "
|
|
14
|
-
"selectCurrency": "
|
|
15
|
-
"selectLanguage": "
|
|
16
|
-
"selectCountry": "
|
|
17
|
-
"birthday": "
|
|
18
|
-
"multipleSelection": "
|
|
8
|
+
"username": "Username",
|
|
9
|
+
"email": "E-Mail",
|
|
10
|
+
"password": "Password",
|
|
11
|
+
"confirmPassword": "Confirm password",
|
|
12
|
+
"typeYourNoteHere": "Type your note here",
|
|
13
|
+
"selectGender": "Select Gender",
|
|
14
|
+
"selectCurrency": "Select Currency",
|
|
15
|
+
"selectLanguage": "Select Language",
|
|
16
|
+
"selectCountry": "Select Country",
|
|
17
|
+
"birthday": "Birthday",
|
|
18
|
+
"multipleSelection": "Selected ({{- count}})"
|
|
19
19
|
},
|
|
20
20
|
"options": {
|
|
21
|
-
"all": "
|
|
22
|
-
"male": "
|
|
23
|
-
"female": "
|
|
21
|
+
"all": "All",
|
|
22
|
+
"male": "Male",
|
|
23
|
+
"female": "Female",
|
|
24
24
|
"languages": {
|
|
25
|
-
"turkish": "
|
|
26
|
-
"english": "
|
|
25
|
+
"turkish": "Turkish",
|
|
26
|
+
"english": "English"
|
|
27
27
|
},
|
|
28
28
|
"currencies": {
|
|
29
|
-
"TRY": "
|
|
29
|
+
"TRY": "Turkish Lira",
|
|
30
30
|
"EUR": "Euro",
|
|
31
|
-
"USD": "
|
|
31
|
+
"USD": "Dollar"
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"buttons": {
|
|
35
|
-
"submit": "
|
|
36
|
-
"reset": "
|
|
35
|
+
"submit": "Submit",
|
|
36
|
+
"reset": "Reset"
|
|
37
37
|
},
|
|
38
38
|
"errors": {
|
|
39
|
-
"required": "
|
|
40
|
-
"minLength": "
|
|
41
|
-
"maxLength": "
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"forbiddenWords": "Bu alan içerisinde bu kelimeyi kullanamazsınız."
|
|
39
|
+
"required": "This field is required!",
|
|
40
|
+
"minLength": "Should contain at least {{- length}} characters",
|
|
41
|
+
"maxLength": "Is too long. Max size is {{- length}}",
|
|
42
|
+
"passwordRule": "Your password must be at least 8 characters long, contain at least one digit, one uppercase letter, one lowercase letter, one special character, and must not contain spaces.",
|
|
43
|
+
"invalidEmailAddress": "Invalid email address",
|
|
44
|
+
"passwordsDontMatch": "The two passwords that you entered do not match!",
|
|
45
|
+
"usernameRule": "Only English letters, digits and symbols (-_.). No space is allowed",
|
|
46
|
+
"wrongTCIdentity": "Wrong TC Identity Number",
|
|
47
|
+
"fieldMustBeTheSame": "This field must be the same as: {{- fields}}",
|
|
48
|
+
"siteUsernameRule": "Only English lowercase letters, digits and symbols (-_.). No space is allowed, no uppercase letters are allowed",
|
|
49
|
+
"adminUsernameRule": "Only English letters and digits. No symbols (-_. vs) and no space is allowed",
|
|
50
|
+
"invalidURL": "Invalid URL",
|
|
51
|
+
"fieldMustBeDifferent": "This field must be different from: {{- fields}}",
|
|
52
|
+
"forbiddenWords": "You cannot use this word in this field."
|
|
54
53
|
},
|
|
55
54
|
"uploader": {
|
|
56
|
-
"header": "
|
|
57
|
-
"hint": "
|
|
58
|
-
"fileUploading": "
|
|
59
|
-
"info": "
|
|
60
|
-
"delete": "
|
|
61
|
-
"preview": "
|
|
62
|
-
"error": "
|
|
63
|
-
"fileFormatError": "
|
|
64
|
-
"fileSizeError": "
|
|
65
|
-
"fileUploadSuccess": "
|
|
66
|
-
"fileUploadFailed": "
|
|
67
|
-
"removeFileSuccess": "
|
|
68
|
-
"browserDoesntSupportDND": "
|
|
69
|
-
"calculating": "
|
|
70
|
-
"removeFile": "
|
|
71
|
-
"areYouSureToDeleteThisFile": "
|
|
72
|
-
"yes": "
|
|
73
|
-
"no": "
|
|
74
|
-
"cropImage": "
|
|
75
|
-
"crop": "
|
|
76
|
-
"cancel": "
|
|
77
|
-
"width": "
|
|
78
|
-
"height": "
|
|
79
|
-
"imageTooSmall": "
|
|
80
|
-
"imageTooSmallMessage": "Minimum
|
|
55
|
+
"header": "Drag and drop an file",
|
|
56
|
+
"hint": "or Browse to choose a file",
|
|
57
|
+
"fileUploading": "File uploading...",
|
|
58
|
+
"info": "Total: {{- total}} - {{- estimated}} s remaining.",
|
|
59
|
+
"delete": "Delete",
|
|
60
|
+
"preview": "Preview",
|
|
61
|
+
"error": "Error",
|
|
62
|
+
"fileFormatError": "You can only upload {{fileFormat}} file",
|
|
63
|
+
"fileSizeError": "File must smaller than {{fileSize}}",
|
|
64
|
+
"fileUploadSuccess": "File successfully uploaded.",
|
|
65
|
+
"fileUploadFailed": "File upload failed!",
|
|
66
|
+
"removeFileSuccess": "File successfully delete!",
|
|
67
|
+
"browserDoesntSupportDND": "Browser doesn't support drag and drop!",
|
|
68
|
+
"calculating": "Calculating...",
|
|
69
|
+
"removeFile": "Remove File",
|
|
70
|
+
"areYouSureToDeleteThisFile": "Are you sure to delete this file?",
|
|
71
|
+
"yes": "Yes",
|
|
72
|
+
"no": "No",
|
|
73
|
+
"cropImage": "Crop Image",
|
|
74
|
+
"crop": "Crop",
|
|
75
|
+
"cancel": "Cancel",
|
|
76
|
+
"width": "width",
|
|
77
|
+
"height": "height",
|
|
78
|
+
"imageTooSmall": "Image Too Small",
|
|
79
|
+
"imageTooSmallMessage": "Minimum required size is {{required}}. Your image is {{actual}}."
|
|
81
80
|
},
|
|
82
81
|
"results": {
|
|
83
82
|
"authentication": {
|
|
84
|
-
"title": "
|
|
85
|
-
"subtitle": "
|
|
86
|
-
"button": "
|
|
83
|
+
"title": "You Need To Sign In",
|
|
84
|
+
"subtitle": "You need to login to access this page. Please login by clicking the button below.",
|
|
85
|
+
"button": "LOGIN"
|
|
87
86
|
}
|
|
88
87
|
},
|
|
89
88
|
"currencies": {
|
|
90
|
-
"TRY": "
|
|
89
|
+
"TRY": "Turkish Lira",
|
|
91
90
|
"EUR": "Euro",
|
|
92
|
-
"USD": "
|
|
91
|
+
"USD": "Dollar"
|
|
93
92
|
},
|
|
94
93
|
"countries": {
|
|
95
|
-
"af": "
|
|
96
|
-
"al": "
|
|
97
|
-
"dz": "
|
|
94
|
+
"af": "Afghanistan",
|
|
95
|
+
"al": "Albania",
|
|
96
|
+
"dz": "Algeria",
|
|
98
97
|
"ad": "Andorra",
|
|
99
98
|
"ao": "Angola",
|
|
100
|
-
"ag": "Antigua
|
|
101
|
-
"ar": "
|
|
102
|
-
"am": "
|
|
103
|
-
"au": "
|
|
104
|
-
"at": "
|
|
105
|
-
"az": "
|
|
106
|
-
"bs": "
|
|
107
|
-
"bh": "
|
|
108
|
-
"bd": "
|
|
99
|
+
"ag": "Antigua and Barbuda",
|
|
100
|
+
"ar": "Argentina",
|
|
101
|
+
"am": "Armenia",
|
|
102
|
+
"au": "Australia",
|
|
103
|
+
"at": "Austria",
|
|
104
|
+
"az": "Azerbaijan",
|
|
105
|
+
"bs": "Bahamas",
|
|
106
|
+
"bh": "Bahrain",
|
|
107
|
+
"bd": "Bangladesh",
|
|
109
108
|
"bb": "Barbados",
|
|
110
|
-
"by": "
|
|
111
|
-
"be": "
|
|
109
|
+
"by": "Belarus",
|
|
110
|
+
"be": "Belgium",
|
|
112
111
|
"bz": "Belize",
|
|
113
112
|
"bj": "Benin",
|
|
114
113
|
"bt": "Bhutan",
|
|
115
|
-
"bo": "
|
|
116
|
-
"ba": "
|
|
117
|
-
"bw": "
|
|
118
|
-
"br": "
|
|
119
|
-
"bn": "Brunei",
|
|
120
|
-
"bg": "
|
|
114
|
+
"bo": "Bolivia",
|
|
115
|
+
"ba": "Bosnia and Herzegovina",
|
|
116
|
+
"bw": "Botswana",
|
|
117
|
+
"br": "Brazil",
|
|
118
|
+
"bn": "Brunei Darussalam",
|
|
119
|
+
"bg": "Bulgaria",
|
|
121
120
|
"bf": "Burkina Faso",
|
|
122
121
|
"bi": "Burundi",
|
|
123
|
-
"cv": "
|
|
124
|
-
"kh": "
|
|
125
|
-
"cm": "
|
|
126
|
-
"ca": "
|
|
127
|
-
"cf": "
|
|
128
|
-
"td": "
|
|
129
|
-
"cl": "
|
|
130
|
-
"cn": "
|
|
131
|
-
"co": "
|
|
132
|
-
"km": "
|
|
133
|
-
"cg": "
|
|
134
|
-
"cd": "
|
|
135
|
-
"cr": "
|
|
136
|
-
"ci": "
|
|
137
|
-
"hr": "
|
|
138
|
-
"cu": "
|
|
139
|
-
"cw": "
|
|
140
|
-
"cy": "
|
|
141
|
-
"cz": "
|
|
142
|
-
"dk": "
|
|
143
|
-
"dj": "
|
|
144
|
-
"dm": "
|
|
145
|
-
"do": "
|
|
146
|
-
"ec": "
|
|
147
|
-
"eg": "
|
|
122
|
+
"cv": "Cabo Verde",
|
|
123
|
+
"kh": "Cambodia",
|
|
124
|
+
"cm": "Cameroon",
|
|
125
|
+
"ca": "Canada",
|
|
126
|
+
"cf": "Central African Republic",
|
|
127
|
+
"td": "Chad",
|
|
128
|
+
"cl": "Chile",
|
|
129
|
+
"cn": "China",
|
|
130
|
+
"co": "Colombia",
|
|
131
|
+
"km": "Comoros",
|
|
132
|
+
"cg": "Congo",
|
|
133
|
+
"cd": "Congo, Democratic",
|
|
134
|
+
"cr": "Costa Rica",
|
|
135
|
+
"ci": "Côte d'Ivoire",
|
|
136
|
+
"hr": "Croatia",
|
|
137
|
+
"cu": "Cuba",
|
|
138
|
+
"cw": "Curacao",
|
|
139
|
+
"cy": "Cyprus",
|
|
140
|
+
"cz": "Czechia",
|
|
141
|
+
"dk": "Denmark",
|
|
142
|
+
"dj": "Djibouti",
|
|
143
|
+
"dm": "Dominica",
|
|
144
|
+
"do": "Dominican Republic",
|
|
145
|
+
"ec": "Ecuador",
|
|
146
|
+
"eg": "Egypt",
|
|
148
147
|
"sv": "El Salvador",
|
|
149
|
-
"gq": "
|
|
150
|
-
"er": "
|
|
151
|
-
"ee": "
|
|
152
|
-
"sz": "
|
|
153
|
-
"et": "
|
|
148
|
+
"gq": "Equatorial Guinea",
|
|
149
|
+
"er": "Eritrea",
|
|
150
|
+
"ee": "Estonia",
|
|
151
|
+
"sz": "Eswatini",
|
|
152
|
+
"et": "Ethiopia",
|
|
154
153
|
"fj": "Fiji",
|
|
155
|
-
"fi": "
|
|
156
|
-
"fr": "
|
|
154
|
+
"fi": "Finland",
|
|
155
|
+
"fr": "France",
|
|
157
156
|
"ga": "Gabon",
|
|
158
157
|
"gm": "Gambia",
|
|
159
|
-
"ge": "
|
|
160
|
-
"de": "
|
|
161
|
-
"gh": "
|
|
162
|
-
"gr": "
|
|
158
|
+
"ge": "Georgia",
|
|
159
|
+
"de": "Germany",
|
|
160
|
+
"gh": "Ghana",
|
|
161
|
+
"gr": "Greece",
|
|
163
162
|
"gd": "Grenada",
|
|
164
163
|
"gt": "Guatemala",
|
|
165
|
-
"gn": "
|
|
164
|
+
"gn": "Guinea",
|
|
166
165
|
"gw": "Guinea-Bissau",
|
|
167
166
|
"gy": "Guyana",
|
|
168
167
|
"ht": "Haiti",
|
|
169
168
|
"hn": "Honduras",
|
|
170
|
-
"hu": "
|
|
171
|
-
"is": "
|
|
172
|
-
"in": "
|
|
173
|
-
"id": "
|
|
174
|
-
"ir": "
|
|
175
|
-
"iq": "
|
|
169
|
+
"hu": "Hungary",
|
|
170
|
+
"is": "Iceland",
|
|
171
|
+
"in": "India",
|
|
172
|
+
"id": "Indonesia",
|
|
173
|
+
"ir": "Iran",
|
|
174
|
+
"iq": "Iraq",
|
|
176
175
|
"ie": "Ireland",
|
|
177
|
-
"il": "
|
|
178
|
-
"it": "
|
|
179
|
-
"jm": "
|
|
180
|
-
"jp": "
|
|
181
|
-
"jo": "
|
|
182
|
-
"kz": "
|
|
176
|
+
"il": "Israel",
|
|
177
|
+
"it": "Italy",
|
|
178
|
+
"jm": "Jamaica",
|
|
179
|
+
"jp": "Japan",
|
|
180
|
+
"jo": "Jordan",
|
|
181
|
+
"kz": "Kazakhstan",
|
|
183
182
|
"ke": "Kenya",
|
|
184
183
|
"ki": "Kiribati",
|
|
185
|
-
"kp": "
|
|
186
|
-
"kr": "
|
|
187
|
-
"kw": "
|
|
188
|
-
"kg": "
|
|
189
|
-
"la": "
|
|
190
|
-
"lv": "
|
|
191
|
-
"lb": "
|
|
184
|
+
"kp": "North Korea",
|
|
185
|
+
"kr": "South Korea",
|
|
186
|
+
"kw": "Kuwait",
|
|
187
|
+
"kg": "Kyrgyzstan",
|
|
188
|
+
"la": "Lao People's",
|
|
189
|
+
"lv": "Latvia",
|
|
190
|
+
"lb": "Lebanon",
|
|
192
191
|
"ls": "Lesotho",
|
|
193
|
-
"lr": "
|
|
192
|
+
"lr": "Liberia",
|
|
194
193
|
"ly": "Libya",
|
|
195
|
-
"li": "
|
|
196
|
-
"lt": "
|
|
197
|
-
"lu": "
|
|
198
|
-
"mg": "
|
|
199
|
-
"mw": "
|
|
200
|
-
"my": "
|
|
201
|
-
"mv": "
|
|
194
|
+
"li": "Liechtenstein",
|
|
195
|
+
"lt": "Lithuania",
|
|
196
|
+
"lu": "Luxembourg",
|
|
197
|
+
"mg": "Madagascar",
|
|
198
|
+
"mw": "Malawi",
|
|
199
|
+
"my": "Malaysia",
|
|
200
|
+
"mv": "Maldives",
|
|
202
201
|
"ml": "Mali",
|
|
203
202
|
"mt": "Malta",
|
|
204
|
-
"mh": "Marshall
|
|
205
|
-
"mr": "
|
|
203
|
+
"mh": "Marshall Islands",
|
|
204
|
+
"mr": "Mauritania",
|
|
206
205
|
"mu": "Mauritius",
|
|
207
|
-
"mx": "
|
|
208
|
-
"fm": "
|
|
209
|
-
"md": "Moldova",
|
|
210
|
-
"mc": "
|
|
211
|
-
"mn": "
|
|
212
|
-
"me": "
|
|
213
|
-
"ma": "
|
|
214
|
-
"mz": "
|
|
206
|
+
"mx": "Mexico",
|
|
207
|
+
"fm": "Micronesia",
|
|
208
|
+
"md": "Moldova, Republic of",
|
|
209
|
+
"mc": "Monaco",
|
|
210
|
+
"mn": "Mongolia",
|
|
211
|
+
"me": "Montenegro",
|
|
212
|
+
"ma": "Morocco",
|
|
213
|
+
"mz": "Mozambique",
|
|
215
214
|
"mm": "Myanmar",
|
|
216
|
-
"na": "
|
|
215
|
+
"na": "Namibia",
|
|
217
216
|
"nr": "Nauru",
|
|
218
217
|
"np": "Nepal",
|
|
219
|
-
"nl": "
|
|
220
|
-
"nz": "
|
|
221
|
-
"ni": "
|
|
222
|
-
"ne": "
|
|
223
|
-
"ng": "
|
|
224
|
-
"mk": "
|
|
225
|
-
"no": "
|
|
226
|
-
"om": "
|
|
218
|
+
"nl": "Netherlands",
|
|
219
|
+
"nz": "New Zealand",
|
|
220
|
+
"ni": "Nicaragua",
|
|
221
|
+
"ne": "Niger",
|
|
222
|
+
"ng": "Nigeria",
|
|
223
|
+
"mk": "North Macedonia",
|
|
224
|
+
"no": "Norway",
|
|
225
|
+
"om": "Oman",
|
|
227
226
|
"pk": "Pakistan",
|
|
228
227
|
"pw": "Palau",
|
|
229
228
|
"pa": "Panama",
|
|
230
|
-
"pg": "Papua
|
|
229
|
+
"pg": "Papua New Guinea",
|
|
231
230
|
"py": "Paraguay",
|
|
232
231
|
"pe": "Peru",
|
|
233
|
-
"ph": "
|
|
234
|
-
"pl": "
|
|
235
|
-
"pt": "
|
|
236
|
-
"qa": "
|
|
237
|
-
"ro": "
|
|
238
|
-
"ru": "
|
|
239
|
-
"rw": "
|
|
240
|
-
"kn": "Saint Kitts
|
|
232
|
+
"ph": "Philippines",
|
|
233
|
+
"pl": "Poland",
|
|
234
|
+
"pt": "Portugal",
|
|
235
|
+
"qa": "Qatar",
|
|
236
|
+
"ro": "Romania",
|
|
237
|
+
"ru": "Russian Federation",
|
|
238
|
+
"rw": "Rwanda",
|
|
239
|
+
"kn": "Saint Kitts and Nevis",
|
|
241
240
|
"lc": "Saint Lucia",
|
|
242
241
|
"vc": "Saint Vincent",
|
|
243
242
|
"ws": "Samoa",
|
|
244
243
|
"sm": "San Marino",
|
|
245
244
|
"st": "Sao Tome and Principe",
|
|
246
|
-
"sa": "
|
|
245
|
+
"sa": "Saudi Arabia",
|
|
247
246
|
"sn": "Senegal",
|
|
248
|
-
"rs": "
|
|
249
|
-
"sc": "
|
|
247
|
+
"rs": "Serbia",
|
|
248
|
+
"sc": "Seychelles",
|
|
250
249
|
"sl": "Sierra Leone",
|
|
251
|
-
"sg": "
|
|
252
|
-
"sk": "
|
|
253
|
-
"si": "
|
|
254
|
-
"sb": "Solomon
|
|
255
|
-
"so": "
|
|
256
|
-
"za": "
|
|
257
|
-
"ss": "
|
|
258
|
-
"es": "
|
|
250
|
+
"sg": "Singapore",
|
|
251
|
+
"sk": "Slovakia",
|
|
252
|
+
"si": "Slovenia",
|
|
253
|
+
"sb": "Solomon Islands",
|
|
254
|
+
"so": "Somalia",
|
|
255
|
+
"za": "South Africa",
|
|
256
|
+
"ss": "South Sudan",
|
|
257
|
+
"es": "Spain",
|
|
259
258
|
"lk": "Sri Lanka",
|
|
260
259
|
"sd": "Sudan",
|
|
261
|
-
"sr": "
|
|
262
|
-
"se": "
|
|
263
|
-
"ch": "
|
|
264
|
-
"sy": "
|
|
265
|
-
"tj": "
|
|
266
|
-
"tw": "
|
|
267
|
-
"tz": "
|
|
268
|
-
"th": "
|
|
269
|
-
"tl": "
|
|
260
|
+
"sr": "Suriname",
|
|
261
|
+
"se": "Sweden",
|
|
262
|
+
"ch": "Switzerland",
|
|
263
|
+
"sy": "Syrian Arab Republic",
|
|
264
|
+
"tj": "Tajikistan",
|
|
265
|
+
"tw": "Taiwan",
|
|
266
|
+
"tz": "Tanzania",
|
|
267
|
+
"th": "Thailand",
|
|
268
|
+
"tl": "Timor-Leste",
|
|
270
269
|
"tg": "Togo",
|
|
271
270
|
"to": "Tonga",
|
|
272
|
-
"tt": "Trinidad
|
|
273
|
-
"tn": "
|
|
274
|
-
"tr": "
|
|
275
|
-
"tm": "
|
|
271
|
+
"tt": "Trinidad and Tobago",
|
|
272
|
+
"tn": "Tunisia",
|
|
273
|
+
"tr": "Turkey",
|
|
274
|
+
"tm": "Turkmenistan",
|
|
276
275
|
"tv": "Tuvalu",
|
|
277
276
|
"ug": "Uganda",
|
|
278
|
-
"ua": "
|
|
279
|
-
"ae": "
|
|
280
|
-
"gb": "
|
|
281
|
-
"us": "
|
|
277
|
+
"ua": "Ukraine",
|
|
278
|
+
"ae": "United Arab Emirates",
|
|
279
|
+
"gb": "United Kingdom",
|
|
280
|
+
"us": "United States of America",
|
|
282
281
|
"uy": "Uruguay",
|
|
283
|
-
"uz": "
|
|
282
|
+
"uz": "Uzbekistan",
|
|
284
283
|
"vu": "Vanuatu",
|
|
285
284
|
"ve": "Venezuela",
|
|
286
|
-
"vn": "
|
|
285
|
+
"vn": "Viet Nam",
|
|
287
286
|
"ye": "Yemen",
|
|
288
|
-
"zm": "
|
|
289
|
-
"zw": "
|
|
287
|
+
"zm": "Zambia",
|
|
288
|
+
"zw": "Zimbabwe"
|
|
290
289
|
},
|
|
291
290
|
"calendar": {
|
|
292
291
|
"weekdaysLong":[
|
|
293
|
-
"
|
|
294
|
-
"
|
|
295
|
-
"
|
|
296
|
-
"
|
|
297
|
-
"
|
|
298
|
-
"
|
|
299
|
-
"
|
|
292
|
+
"Sunday",
|
|
293
|
+
"Monday",
|
|
294
|
+
"Tuesday",
|
|
295
|
+
"Wednesday",
|
|
296
|
+
"Thursday",
|
|
297
|
+
"Friday",
|
|
298
|
+
"Saturday"
|
|
300
299
|
],
|
|
301
300
|
"weekdaysShort":[
|
|
302
|
-
"
|
|
301
|
+
"Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"
|
|
303
302
|
],
|
|
304
303
|
"months":[
|
|
305
|
-
"
|
|
306
|
-
"
|
|
307
|
-
"
|
|
308
|
-
"
|
|
309
|
-
"
|
|
310
|
-
"
|
|
311
|
-
"
|
|
312
|
-
"
|
|
313
|
-
"
|
|
314
|
-
"
|
|
315
|
-
"
|
|
316
|
-
"
|
|
304
|
+
"January",
|
|
305
|
+
"February",
|
|
306
|
+
"March",
|
|
307
|
+
"April",
|
|
308
|
+
"May",
|
|
309
|
+
"June",
|
|
310
|
+
"July",
|
|
311
|
+
"August",
|
|
312
|
+
"September",
|
|
313
|
+
"October",
|
|
314
|
+
"November",
|
|
315
|
+
"December"
|
|
317
316
|
],
|
|
318
|
-
"firstDay":
|
|
319
|
-
"format": "DD/
|
|
317
|
+
"firstDay": 0,
|
|
318
|
+
"format": "MM/DD/YYYY"
|
|
320
319
|
}
|
|
321
|
-
}
|
|
320
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { RadioButtonProps } from 'types/RadioProps';
|
|
2
|
-
export default function RadioButton({ id, name, value, type, buttonProps, checked, hasError, children, icon, image, component, onChange }: RadioButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export default function RadioButton({ id, name, value, type, buttonProps, checked, hasError, disabled, children, icon, image, component, onChange, }: RadioButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -6,6 +6,7 @@ declare const SimpleButton: import("styled-components/dist/types").IStyledCompon
|
|
|
6
6
|
declare const InnerButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
7
7
|
declare const Wrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
8
8
|
$hasCustomButton: boolean;
|
|
9
|
+
$disabled?: boolean;
|
|
9
10
|
}>> & string;
|
|
10
11
|
declare const ErrorBorder: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
11
12
|
export { Wrapper, CheckIcon, PreIcon, Left, InnerButton, SimpleButton, Label, ErrorBorder };
|