nucleus-core-ts 0.8.6 → 0.8.8

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.
Files changed (209) hide show
  1. package/dist/client.js +1 -1
  2. package/dist/dist/index.d.ts +475 -12
  3. package/dist/fe/components/AbstractAnimatedBackground/index.js +437 -0
  4. package/dist/fe/components/AuthorizationPage/components/AuthorizationPage.js +841 -0
  5. package/dist/fe/components/AuthorizationPage/components/ClaimList.js +100 -0
  6. package/dist/fe/components/AuthorizationPage/components/RoleClaimEditor.js +232 -0
  7. package/dist/fe/components/AuthorizationPage/components/RoleList.js +115 -0
  8. package/dist/fe/components/AuthorizationPage/index.js +6 -0
  9. package/dist/fe/components/AuthorizationPage/store/index.js +117 -0
  10. package/dist/fe/components/AuthorizationPage/theme/index.js +137 -0
  11. package/dist/fe/components/AuthorizationPage/types/index.js +1 -0
  12. package/dist/fe/components/Button/components/Button.js +158 -0
  13. package/dist/fe/components/Button/components/ButtonSpinner.js +52 -0
  14. package/dist/fe/components/Button/index.js +3 -0
  15. package/dist/fe/components/Button/theme/index.js +186 -0
  16. package/dist/fe/components/Button/types/index.js +1 -0
  17. package/dist/fe/components/Button/utils/cn.js +5 -0
  18. package/dist/fe/components/Captcha/components/Captcha.js +311 -0
  19. package/dist/fe/components/Captcha/index.js +2 -0
  20. package/dist/fe/components/Captcha/theme.js +52 -0
  21. package/dist/fe/components/Captcha/types.js +1 -0
  22. package/dist/fe/components/ChangePasswordPage/components/ChangePasswordForm.js +242 -0
  23. package/dist/fe/components/ChangePasswordPage/components/ChangePasswordHeader.js +39 -0
  24. package/dist/fe/components/ChangePasswordPage/components/ChangePasswordPage.js +60 -0
  25. package/dist/fe/components/ChangePasswordPage/index.js +5 -0
  26. package/dist/fe/components/ChangePasswordPage/store/index.js +44 -0
  27. package/dist/fe/components/ChangePasswordPage/theme/index.js +87 -0
  28. package/dist/fe/components/ChangePasswordPage/types/index.js +1 -0
  29. package/dist/fe/components/Checkbox/components/Checkbox.js +115 -0
  30. package/dist/fe/components/Checkbox/components/CheckboxIcon.js +119 -0
  31. package/dist/fe/components/Checkbox/components/SwitchTrack.js +178 -0
  32. package/dist/fe/components/Checkbox/index.js +4 -0
  33. package/dist/fe/components/Checkbox/theme/index.js +221 -0
  34. package/dist/fe/components/Checkbox/types/index.js +1 -0
  35. package/dist/fe/components/Checkbox/utils/cn.js +5 -0
  36. package/dist/fe/components/DataTable/DataTable.js +225 -0
  37. package/dist/fe/components/DataTable/components/ActionCell.js +26 -0
  38. package/dist/fe/components/DataTable/components/DataCell.js +76 -0
  39. package/dist/fe/components/DataTable/components/EditableCell.js +221 -0
  40. package/dist/fe/components/DataTable/components/EmptyState.js +29 -0
  41. package/dist/fe/components/DataTable/components/HeaderCell.js +64 -0
  42. package/dist/fe/components/DataTable/components/InfiniteScrollTrigger.js +66 -0
  43. package/dist/fe/components/DataTable/components/LoadingSpinner.js +19 -0
  44. package/dist/fe/components/DataTable/components/ResizeHandle.js +41 -0
  45. package/dist/fe/components/DataTable/components/SelectionCell.js +105 -0
  46. package/dist/fe/components/DataTable/components/SkeletonRow.js +56 -0
  47. package/dist/fe/components/DataTable/components/SkeletonTable.js +83 -0
  48. package/dist/fe/components/DataTable/components/SortIcon.js +39 -0
  49. package/dist/fe/components/DataTable/components/TableHeader.js +49 -0
  50. package/dist/fe/components/DataTable/components/TableRow.js +118 -0
  51. package/dist/fe/components/DataTable/components/index.js +14 -0
  52. package/dist/fe/components/DataTable/hooks/index.js +2 -0
  53. package/dist/fe/components/DataTable/hooks/useAutoFitColumn.js +23 -0
  54. package/dist/fe/components/DataTable/hooks/useResizeColumn.js +122 -0
  55. package/dist/fe/components/DataTable/index.js +3 -0
  56. package/dist/fe/components/DataTable/store/index.js +97 -0
  57. package/dist/fe/components/DataTable/theme/index.js +144 -0
  58. package/dist/fe/components/DataTable/types/index.js +1 -0
  59. package/dist/fe/components/DataTable/utils/cn.js +5 -0
  60. package/dist/fe/components/DatePicker/components/CalendarGrid.js +95 -0
  61. package/dist/fe/components/DatePicker/components/CalendarHeader.js +152 -0
  62. package/dist/fe/components/DatePicker/components/DatePicker.js +381 -0
  63. package/dist/fe/components/DatePicker/components/MonthYearSelector.js +93 -0
  64. package/dist/fe/components/DatePicker/index.js +7 -0
  65. package/dist/fe/components/DatePicker/locales/index.js +1113 -0
  66. package/dist/fe/components/DatePicker/theme/index.js +315 -0
  67. package/dist/fe/components/DatePicker/types/index.js +1 -0
  68. package/dist/fe/components/DatePicker/utils/cn.js +5 -0
  69. package/dist/fe/components/DatePicker/utils/date.js +132 -0
  70. package/dist/fe/components/DevicesPage/components/DeviceCard.js +251 -0
  71. package/dist/fe/components/DevicesPage/components/DevicesHeader.js +42 -0
  72. package/dist/fe/components/DevicesPage/components/DevicesPage.js +450 -0
  73. package/dist/fe/components/DevicesPage/index.js +5 -0
  74. package/dist/fe/components/DevicesPage/store/index.js +55 -0
  75. package/dist/fe/components/DevicesPage/theme/index.js +131 -0
  76. package/dist/fe/components/DevicesPage/types/index.js +1 -0
  77. package/dist/fe/components/ForgotPasswordPage/components/ForgotPasswordForm.js +214 -0
  78. package/dist/fe/components/ForgotPasswordPage/components/ForgotPasswordHeader.js +42 -0
  79. package/dist/fe/components/ForgotPasswordPage/components/ForgotPasswordPage.js +59 -0
  80. package/dist/fe/components/ForgotPasswordPage/index.js +5 -0
  81. package/dist/fe/components/ForgotPasswordPage/store/index.js +28 -0
  82. package/dist/fe/components/ForgotPasswordPage/theme/index.js +87 -0
  83. package/dist/fe/components/ForgotPasswordPage/types/index.js +1 -0
  84. package/dist/fe/components/FormBuilder/components/FormBuilder.js +156 -0
  85. package/dist/fe/components/FormBuilder/components/FormField.js +218 -0
  86. package/dist/fe/components/FormBuilder/hooks/useFormBuilder.js +152 -0
  87. package/dist/fe/components/FormBuilder/index.js +4 -0
  88. package/dist/fe/components/FormBuilder/theme/index.js +134 -0
  89. package/dist/fe/components/FormBuilder/types/index.js +1 -0
  90. package/dist/fe/components/FormBuilder/utils/cn.js +5 -0
  91. package/dist/fe/components/FormBuilder/utils/fieldMapping.js +216 -0
  92. package/dist/fe/components/FormBuilder/utils/validation.js +78 -0
  93. package/dist/fe/components/LoginPage/components/LoginForm.js +214 -0
  94. package/dist/fe/components/LoginPage/components/LoginHeader.js +24 -0
  95. package/dist/fe/components/LoginPage/components/LoginPage.js +138 -0
  96. package/dist/fe/components/LoginPage/index.js +5 -0
  97. package/dist/fe/components/LoginPage/store/index.js +59 -0
  98. package/dist/fe/components/LoginPage/theme/index.js +98 -0
  99. package/dist/fe/components/LoginPage/types/index.js +1 -0
  100. package/dist/fe/components/MagicLinkVerifyPage/components/MagicLinkVerifyPage.js +200 -0
  101. package/dist/fe/components/MagicLinkVerifyPage/index.js +3 -0
  102. package/dist/fe/components/MagicLinkVerifyPage/store.js +20 -0
  103. package/dist/fe/components/MagicLinkVerifyPage/theme.js +36 -0
  104. package/dist/fe/components/MagicLinkVerifyPage/types.js +1 -0
  105. package/dist/fe/components/NucleusEntityShowcase.js +1409 -0
  106. package/dist/fe/components/NucleusTextInput/components/FloatingLabel.js +56 -0
  107. package/dist/fe/components/NucleusTextInput/components/InputIcons.js +258 -0
  108. package/dist/fe/components/NucleusTextInput/components/NucleusTextInput.js +321 -0
  109. package/dist/fe/components/NucleusTextInput/components/PasswordStrengthIndicator.js +104 -0
  110. package/dist/fe/components/NucleusTextInput/components/TypewriterText.js +56 -0
  111. package/dist/fe/components/NucleusTextInput/index.js +7 -0
  112. package/dist/fe/components/NucleusTextInput/theme/index.js +121 -0
  113. package/dist/fe/components/NucleusTextInput/types/index.js +1 -0
  114. package/dist/fe/components/NucleusTextInput/utils/cn.js +5 -0
  115. package/dist/fe/components/NucleusTextInput/utils/format.js +62 -0
  116. package/dist/fe/components/NucleusTextInput/utils/validation.js +191 -0
  117. package/dist/fe/components/ProfilePage/components/AddressCard.js +196 -0
  118. package/dist/fe/components/ProfilePage/components/PhoneCard.js +206 -0
  119. package/dist/fe/components/ProfilePage/components/ProfileHeader.js +150 -0
  120. package/dist/fe/components/ProfilePage/components/ProfilePage.js +1336 -0
  121. package/dist/fe/components/ProfilePage/index.js +6 -0
  122. package/dist/fe/components/ProfilePage/store/index.js +115 -0
  123. package/dist/fe/components/ProfilePage/theme/index.js +168 -0
  124. package/dist/fe/components/ProfilePage/types/index.js +1 -0
  125. package/dist/fe/components/RangePicker/components/RangePicker.js +338 -0
  126. package/dist/fe/components/RangePicker/components/RangeThumb.js +68 -0
  127. package/dist/fe/components/RangePicker/components/RangeTooltip.js +45 -0
  128. package/dist/fe/components/RangePicker/components/RangeTrack.js +32 -0
  129. package/dist/fe/components/RangePicker/index.js +5 -0
  130. package/dist/fe/components/RangePicker/theme/index.js +88 -0
  131. package/dist/fe/components/RangePicker/types/index.js +1 -0
  132. package/dist/fe/components/RangePicker/utils/cn.js +3 -0
  133. package/dist/fe/components/RegisterPage/components/PasswordStrengthIndicator.js +107 -0
  134. package/dist/fe/components/RegisterPage/components/RegisterForm.js +322 -0
  135. package/dist/fe/components/RegisterPage/components/RegisterHeader.js +23 -0
  136. package/dist/fe/components/RegisterPage/components/RegisterPage.js +85 -0
  137. package/dist/fe/components/RegisterPage/index.js +6 -0
  138. package/dist/fe/components/RegisterPage/store/index.js +106 -0
  139. package/dist/fe/components/RegisterPage/theme/index.js +128 -0
  140. package/dist/fe/components/RegisterPage/types/index.js +1 -0
  141. package/dist/fe/components/ResetPasswordPage/components/ResetPasswordForm.js +347 -0
  142. package/dist/fe/components/ResetPasswordPage/components/ResetPasswordHeader.js +42 -0
  143. package/dist/fe/components/ResetPasswordPage/components/ResetPasswordPage.js +61 -0
  144. package/dist/fe/components/ResetPasswordPage/index.js +5 -0
  145. package/dist/fe/components/ResetPasswordPage/store/index.js +36 -0
  146. package/dist/fe/components/ResetPasswordPage/theme/index.js +99 -0
  147. package/dist/fe/components/ResetPasswordPage/types/index.js +1 -0
  148. package/dist/fe/components/SearchBox/components/SearchBox.js +271 -0
  149. package/dist/fe/components/SearchBox/components/SearchBoxDropdown.js +87 -0
  150. package/dist/fe/components/SearchBox/index.js +5 -0
  151. package/dist/fe/components/SearchBox/theme/index.js +184 -0
  152. package/dist/fe/components/SearchBox/types/index.js +1 -0
  153. package/dist/fe/components/SearchBox/utils/cn.js +5 -0
  154. package/dist/fe/components/SearchBox/utils/debounce.js +22 -0
  155. package/dist/fe/components/SearchBox/utils/sanitize.js +48 -0
  156. package/dist/fe/components/SelectBox/components/SelectBox.js +364 -0
  157. package/dist/fe/components/SelectBox/components/SelectDropdown.js +92 -0
  158. package/dist/fe/components/SelectBox/components/SelectOptionItem.js +43 -0
  159. package/dist/fe/components/SelectBox/components/SelectTrigger.js +22 -0
  160. package/dist/fe/components/SelectBox/index.js +5 -0
  161. package/dist/fe/components/SelectBox/theme/index.js +98 -0
  162. package/dist/fe/components/SelectBox/types/index.js +1 -0
  163. package/dist/fe/components/SelectBox/utils/cn.js +3 -0
  164. package/dist/fe/components/SetPasswordPage/components/PasswordStrengthIndicator.js +107 -0
  165. package/dist/fe/components/SetPasswordPage/components/SetPasswordForm.js +142 -0
  166. package/dist/fe/components/SetPasswordPage/components/SetPasswordHeader.js +23 -0
  167. package/dist/fe/components/SetPasswordPage/components/SetPasswordPage.js +263 -0
  168. package/dist/fe/components/SetPasswordPage/index.js +7 -0
  169. package/dist/fe/components/SetPasswordPage/store/index.js +79 -0
  170. package/dist/fe/components/SetPasswordPage/theme/index.js +98 -0
  171. package/dist/fe/components/SetPasswordPage/types/index.js +12 -0
  172. package/dist/fe/components/UsersPage/components/InviteUserModal.js +262 -0
  173. package/dist/fe/components/UsersPage/components/Pagination.js +147 -0
  174. package/dist/fe/components/UsersPage/components/RoleAssignmentModal.js +186 -0
  175. package/dist/fe/components/UsersPage/components/StatsCards.js +124 -0
  176. package/dist/fe/components/UsersPage/components/UserDetailDrawer.js +444 -0
  177. package/dist/fe/components/UsersPage/components/UserFilters.js +142 -0
  178. package/dist/fe/components/UsersPage/components/UserListItem.js +125 -0
  179. package/dist/fe/components/UsersPage/components/UserListSkeleton.js +40 -0
  180. package/dist/fe/components/UsersPage/components/UsersPage.js +556 -0
  181. package/dist/fe/components/UsersPage/index.js +10 -0
  182. package/dist/fe/components/UsersPage/store/index.js +151 -0
  183. package/dist/fe/components/UsersPage/theme/index.js +231 -0
  184. package/dist/fe/components/UsersPage/types/index.js +1 -0
  185. package/dist/fe/components/VerifyEmailPage/components/VerifyEmailPage.js +290 -0
  186. package/dist/fe/components/VerifyEmailPage/index.js +3 -0
  187. package/dist/fe/components/VerifyEmailPage/store/index.js +45 -0
  188. package/dist/fe/components/VerifyEmailPage/theme/index.js +52 -0
  189. package/dist/fe/components/VerifyEmailPage/types/index.js +1 -0
  190. package/dist/fe/hooks/useNucleusEntity.js +247 -0
  191. package/dist/fe/index.js +28 -110
  192. package/dist/fe/types/index.js +1 -0
  193. package/dist/fe/utils/cn.js +5 -0
  194. package/dist/fe/utils/columnUtils.js +189 -0
  195. package/dist/fe/utils/endpointKeys.js +44 -0
  196. package/dist/index.js +1 -1
  197. package/dist/nucleus.config.d.ts +3 -0
  198. package/dist/src/Client/Proxy/httpProxy.js +1 -0
  199. package/dist/src/Client/Proxy/index.js +1 -1
  200. package/dist/src/Client/Proxy/server.js +1 -0
  201. package/dist/src/Client/Proxy/types.js +1 -0
  202. package/dist/src/Client/Proxy/utils.js +1 -0
  203. package/dist/src/Client/Proxy/wsProxy.js +1 -0
  204. package/package.json +1 -1
  205. package/scripts/build.ts +78 -8
  206. package/dist/dist/index-0yyw12k6.d.ts +0 -8
  207. package/dist/dist/index-tv67j5qd.d.ts +0 -488
  208. package/dist/index-0yyw12k6.js +0 -1
  209. package/dist/index-tv67j5qd.js +0 -1
@@ -0,0 +1,1113 @@
1
+ export const locales = {
2
+ "tr-TR": {
3
+ months: [
4
+ "Ocak",
5
+ "Şubat",
6
+ "Mart",
7
+ "Nisan",
8
+ "Mayıs",
9
+ "Haziran",
10
+ "Temmuz",
11
+ "Ağustos",
12
+ "Eylül",
13
+ "Ekim",
14
+ "Kasım",
15
+ "Aralık"
16
+ ],
17
+ monthsShort: [
18
+ "Oca",
19
+ "Şub",
20
+ "Mar",
21
+ "Nis",
22
+ "May",
23
+ "Haz",
24
+ "Tem",
25
+ "Ağu",
26
+ "Eyl",
27
+ "Eki",
28
+ "Kas",
29
+ "Ara"
30
+ ],
31
+ weekdays: [
32
+ "Pazar",
33
+ "Pazartesi",
34
+ "Salı",
35
+ "Çarşamba",
36
+ "Perşembe",
37
+ "Cuma",
38
+ "Cumartesi"
39
+ ],
40
+ weekdaysShort: [
41
+ "Paz",
42
+ "Pzt",
43
+ "Sal",
44
+ "Çar",
45
+ "Per",
46
+ "Cum",
47
+ "Cmt"
48
+ ],
49
+ weekdaysMin: [
50
+ "Pz",
51
+ "Pt",
52
+ "Sa",
53
+ "Ça",
54
+ "Pe",
55
+ "Cu",
56
+ "Ct"
57
+ ],
58
+ today: "Bugün",
59
+ clear: "Temizle",
60
+ close: "Kapat",
61
+ selectDate: "Tarih seçin",
62
+ selectStartDate: "Başlangıç tarihi",
63
+ selectEndDate: "Bitiş tarihi",
64
+ dateFormat: "dd.MM.yyyy",
65
+ firstDayOfWeek: 1
66
+ },
67
+ "en-US": {
68
+ months: [
69
+ "January",
70
+ "February",
71
+ "March",
72
+ "April",
73
+ "May",
74
+ "June",
75
+ "July",
76
+ "August",
77
+ "September",
78
+ "October",
79
+ "November",
80
+ "December"
81
+ ],
82
+ monthsShort: [
83
+ "Jan",
84
+ "Feb",
85
+ "Mar",
86
+ "Apr",
87
+ "May",
88
+ "Jun",
89
+ "Jul",
90
+ "Aug",
91
+ "Sep",
92
+ "Oct",
93
+ "Nov",
94
+ "Dec"
95
+ ],
96
+ weekdays: [
97
+ "Sunday",
98
+ "Monday",
99
+ "Tuesday",
100
+ "Wednesday",
101
+ "Thursday",
102
+ "Friday",
103
+ "Saturday"
104
+ ],
105
+ weekdaysShort: [
106
+ "Sun",
107
+ "Mon",
108
+ "Tue",
109
+ "Wed",
110
+ "Thu",
111
+ "Fri",
112
+ "Sat"
113
+ ],
114
+ weekdaysMin: [
115
+ "Su",
116
+ "Mo",
117
+ "Tu",
118
+ "We",
119
+ "Th",
120
+ "Fr",
121
+ "Sa"
122
+ ],
123
+ today: "Today",
124
+ clear: "Clear",
125
+ close: "Close",
126
+ selectDate: "Select date",
127
+ selectStartDate: "Start date",
128
+ selectEndDate: "End date",
129
+ dateFormat: "MM/dd/yyyy",
130
+ firstDayOfWeek: 0
131
+ },
132
+ "en-GB": {
133
+ months: [
134
+ "January",
135
+ "February",
136
+ "March",
137
+ "April",
138
+ "May",
139
+ "June",
140
+ "July",
141
+ "August",
142
+ "September",
143
+ "October",
144
+ "November",
145
+ "December"
146
+ ],
147
+ monthsShort: [
148
+ "Jan",
149
+ "Feb",
150
+ "Mar",
151
+ "Apr",
152
+ "May",
153
+ "Jun",
154
+ "Jul",
155
+ "Aug",
156
+ "Sep",
157
+ "Oct",
158
+ "Nov",
159
+ "Dec"
160
+ ],
161
+ weekdays: [
162
+ "Sunday",
163
+ "Monday",
164
+ "Tuesday",
165
+ "Wednesday",
166
+ "Thursday",
167
+ "Friday",
168
+ "Saturday"
169
+ ],
170
+ weekdaysShort: [
171
+ "Sun",
172
+ "Mon",
173
+ "Tue",
174
+ "Wed",
175
+ "Thu",
176
+ "Fri",
177
+ "Sat"
178
+ ],
179
+ weekdaysMin: [
180
+ "Su",
181
+ "Mo",
182
+ "Tu",
183
+ "We",
184
+ "Th",
185
+ "Fr",
186
+ "Sa"
187
+ ],
188
+ today: "Today",
189
+ clear: "Clear",
190
+ close: "Close",
191
+ selectDate: "Select date",
192
+ selectStartDate: "Start date",
193
+ selectEndDate: "End date",
194
+ dateFormat: "dd/MM/yyyy",
195
+ firstDayOfWeek: 1
196
+ },
197
+ "de-DE": {
198
+ months: [
199
+ "Januar",
200
+ "Februar",
201
+ "März",
202
+ "April",
203
+ "Mai",
204
+ "Juni",
205
+ "Juli",
206
+ "August",
207
+ "September",
208
+ "Oktober",
209
+ "November",
210
+ "Dezember"
211
+ ],
212
+ monthsShort: [
213
+ "Jan",
214
+ "Feb",
215
+ "Mär",
216
+ "Apr",
217
+ "Mai",
218
+ "Jun",
219
+ "Jul",
220
+ "Aug",
221
+ "Sep",
222
+ "Okt",
223
+ "Nov",
224
+ "Dez"
225
+ ],
226
+ weekdays: [
227
+ "Sonntag",
228
+ "Montag",
229
+ "Dienstag",
230
+ "Mittwoch",
231
+ "Donnerstag",
232
+ "Freitag",
233
+ "Samstag"
234
+ ],
235
+ weekdaysShort: [
236
+ "So",
237
+ "Mo",
238
+ "Di",
239
+ "Mi",
240
+ "Do",
241
+ "Fr",
242
+ "Sa"
243
+ ],
244
+ weekdaysMin: [
245
+ "So",
246
+ "Mo",
247
+ "Di",
248
+ "Mi",
249
+ "Do",
250
+ "Fr",
251
+ "Sa"
252
+ ],
253
+ today: "Heute",
254
+ clear: "Löschen",
255
+ close: "Schließen",
256
+ selectDate: "Datum auswählen",
257
+ selectStartDate: "Startdatum",
258
+ selectEndDate: "Enddatum",
259
+ dateFormat: "dd.MM.yyyy",
260
+ firstDayOfWeek: 1
261
+ },
262
+ "fr-FR": {
263
+ months: [
264
+ "Janvier",
265
+ "Février",
266
+ "Mars",
267
+ "Avril",
268
+ "Mai",
269
+ "Juin",
270
+ "Juillet",
271
+ "Août",
272
+ "Septembre",
273
+ "Octobre",
274
+ "Novembre",
275
+ "Décembre"
276
+ ],
277
+ monthsShort: [
278
+ "Jan",
279
+ "Fév",
280
+ "Mar",
281
+ "Avr",
282
+ "Mai",
283
+ "Jun",
284
+ "Jul",
285
+ "Aoû",
286
+ "Sep",
287
+ "Oct",
288
+ "Nov",
289
+ "Déc"
290
+ ],
291
+ weekdays: [
292
+ "Dimanche",
293
+ "Lundi",
294
+ "Mardi",
295
+ "Mercredi",
296
+ "Jeudi",
297
+ "Vendredi",
298
+ "Samedi"
299
+ ],
300
+ weekdaysShort: [
301
+ "Dim",
302
+ "Lun",
303
+ "Mar",
304
+ "Mer",
305
+ "Jeu",
306
+ "Ven",
307
+ "Sam"
308
+ ],
309
+ weekdaysMin: [
310
+ "Di",
311
+ "Lu",
312
+ "Ma",
313
+ "Me",
314
+ "Je",
315
+ "Ve",
316
+ "Sa"
317
+ ],
318
+ today: "Aujourd'hui",
319
+ clear: "Effacer",
320
+ close: "Fermer",
321
+ selectDate: "Sélectionner une date",
322
+ selectStartDate: "Date de début",
323
+ selectEndDate: "Date de fin",
324
+ dateFormat: "dd/MM/yyyy",
325
+ firstDayOfWeek: 1
326
+ },
327
+ "es-ES": {
328
+ months: [
329
+ "Enero",
330
+ "Febrero",
331
+ "Marzo",
332
+ "Abril",
333
+ "Mayo",
334
+ "Junio",
335
+ "Julio",
336
+ "Agosto",
337
+ "Septiembre",
338
+ "Octubre",
339
+ "Noviembre",
340
+ "Diciembre"
341
+ ],
342
+ monthsShort: [
343
+ "Ene",
344
+ "Feb",
345
+ "Mar",
346
+ "Abr",
347
+ "May",
348
+ "Jun",
349
+ "Jul",
350
+ "Ago",
351
+ "Sep",
352
+ "Oct",
353
+ "Nov",
354
+ "Dic"
355
+ ],
356
+ weekdays: [
357
+ "Domingo",
358
+ "Lunes",
359
+ "Martes",
360
+ "Miércoles",
361
+ "Jueves",
362
+ "Viernes",
363
+ "Sábado"
364
+ ],
365
+ weekdaysShort: [
366
+ "Dom",
367
+ "Lun",
368
+ "Mar",
369
+ "Mié",
370
+ "Jue",
371
+ "Vie",
372
+ "Sáb"
373
+ ],
374
+ weekdaysMin: [
375
+ "Do",
376
+ "Lu",
377
+ "Ma",
378
+ "Mi",
379
+ "Ju",
380
+ "Vi",
381
+ "Sá"
382
+ ],
383
+ today: "Hoy",
384
+ clear: "Limpiar",
385
+ close: "Cerrar",
386
+ selectDate: "Seleccionar fecha",
387
+ selectStartDate: "Fecha de inicio",
388
+ selectEndDate: "Fecha de fin",
389
+ dateFormat: "dd/MM/yyyy",
390
+ firstDayOfWeek: 1
391
+ },
392
+ "it-IT": {
393
+ months: [
394
+ "Gennaio",
395
+ "Febbraio",
396
+ "Marzo",
397
+ "Aprile",
398
+ "Maggio",
399
+ "Giugno",
400
+ "Luglio",
401
+ "Agosto",
402
+ "Settembre",
403
+ "Ottobre",
404
+ "Novembre",
405
+ "Dicembre"
406
+ ],
407
+ monthsShort: [
408
+ "Gen",
409
+ "Feb",
410
+ "Mar",
411
+ "Apr",
412
+ "Mag",
413
+ "Giu",
414
+ "Lug",
415
+ "Ago",
416
+ "Set",
417
+ "Ott",
418
+ "Nov",
419
+ "Dic"
420
+ ],
421
+ weekdays: [
422
+ "Domenica",
423
+ "Lunedì",
424
+ "Martedì",
425
+ "Mercoledì",
426
+ "Giovedì",
427
+ "Venerdì",
428
+ "Sabato"
429
+ ],
430
+ weekdaysShort: [
431
+ "Dom",
432
+ "Lun",
433
+ "Mar",
434
+ "Mer",
435
+ "Gio",
436
+ "Ven",
437
+ "Sab"
438
+ ],
439
+ weekdaysMin: [
440
+ "Do",
441
+ "Lu",
442
+ "Ma",
443
+ "Me",
444
+ "Gi",
445
+ "Ve",
446
+ "Sa"
447
+ ],
448
+ today: "Oggi",
449
+ clear: "Cancella",
450
+ close: "Chiudi",
451
+ selectDate: "Seleziona data",
452
+ selectStartDate: "Data di inizio",
453
+ selectEndDate: "Data di fine",
454
+ dateFormat: "dd/MM/yyyy",
455
+ firstDayOfWeek: 1
456
+ },
457
+ "pt-BR": {
458
+ months: [
459
+ "Janeiro",
460
+ "Fevereiro",
461
+ "Março",
462
+ "Abril",
463
+ "Maio",
464
+ "Junho",
465
+ "Julho",
466
+ "Agosto",
467
+ "Setembro",
468
+ "Outubro",
469
+ "Novembro",
470
+ "Dezembro"
471
+ ],
472
+ monthsShort: [
473
+ "Jan",
474
+ "Fev",
475
+ "Mar",
476
+ "Abr",
477
+ "Mai",
478
+ "Jun",
479
+ "Jul",
480
+ "Ago",
481
+ "Set",
482
+ "Out",
483
+ "Nov",
484
+ "Dez"
485
+ ],
486
+ weekdays: [
487
+ "Domingo",
488
+ "Segunda-feira",
489
+ "Terça-feira",
490
+ "Quarta-feira",
491
+ "Quinta-feira",
492
+ "Sexta-feira",
493
+ "Sábado"
494
+ ],
495
+ weekdaysShort: [
496
+ "Dom",
497
+ "Seg",
498
+ "Ter",
499
+ "Qua",
500
+ "Qui",
501
+ "Sex",
502
+ "Sáb"
503
+ ],
504
+ weekdaysMin: [
505
+ "Do",
506
+ "Se",
507
+ "Te",
508
+ "Qa",
509
+ "Qi",
510
+ "Sx",
511
+ "Sá"
512
+ ],
513
+ today: "Hoje",
514
+ clear: "Limpar",
515
+ close: "Fechar",
516
+ selectDate: "Selecionar data",
517
+ selectStartDate: "Data inicial",
518
+ selectEndDate: "Data final",
519
+ dateFormat: "dd/MM/yyyy",
520
+ firstDayOfWeek: 0
521
+ },
522
+ "pt-PT": {
523
+ months: [
524
+ "Janeiro",
525
+ "Fevereiro",
526
+ "Março",
527
+ "Abril",
528
+ "Maio",
529
+ "Junho",
530
+ "Julho",
531
+ "Agosto",
532
+ "Setembro",
533
+ "Outubro",
534
+ "Novembro",
535
+ "Dezembro"
536
+ ],
537
+ monthsShort: [
538
+ "Jan",
539
+ "Fev",
540
+ "Mar",
541
+ "Abr",
542
+ "Mai",
543
+ "Jun",
544
+ "Jul",
545
+ "Ago",
546
+ "Set",
547
+ "Out",
548
+ "Nov",
549
+ "Dez"
550
+ ],
551
+ weekdays: [
552
+ "Domingo",
553
+ "Segunda-feira",
554
+ "Terça-feira",
555
+ "Quarta-feira",
556
+ "Quinta-feira",
557
+ "Sexta-feira",
558
+ "Sábado"
559
+ ],
560
+ weekdaysShort: [
561
+ "Dom",
562
+ "Seg",
563
+ "Ter",
564
+ "Qua",
565
+ "Qui",
566
+ "Sex",
567
+ "Sáb"
568
+ ],
569
+ weekdaysMin: [
570
+ "Do",
571
+ "Se",
572
+ "Te",
573
+ "Qa",
574
+ "Qi",
575
+ "Sx",
576
+ "Sá"
577
+ ],
578
+ today: "Hoje",
579
+ clear: "Limpar",
580
+ close: "Fechar",
581
+ selectDate: "Selecionar data",
582
+ selectStartDate: "Data inicial",
583
+ selectEndDate: "Data final",
584
+ dateFormat: "dd/MM/yyyy",
585
+ firstDayOfWeek: 1
586
+ },
587
+ "nl-NL": {
588
+ months: [
589
+ "Januari",
590
+ "Februari",
591
+ "Maart",
592
+ "April",
593
+ "Mei",
594
+ "Juni",
595
+ "Juli",
596
+ "Augustus",
597
+ "September",
598
+ "Oktober",
599
+ "November",
600
+ "December"
601
+ ],
602
+ monthsShort: [
603
+ "Jan",
604
+ "Feb",
605
+ "Mrt",
606
+ "Apr",
607
+ "Mei",
608
+ "Jun",
609
+ "Jul",
610
+ "Aug",
611
+ "Sep",
612
+ "Okt",
613
+ "Nov",
614
+ "Dec"
615
+ ],
616
+ weekdays: [
617
+ "Zondag",
618
+ "Maandag",
619
+ "Dinsdag",
620
+ "Woensdag",
621
+ "Donderdag",
622
+ "Vrijdag",
623
+ "Zaterdag"
624
+ ],
625
+ weekdaysShort: [
626
+ "Zo",
627
+ "Ma",
628
+ "Di",
629
+ "Wo",
630
+ "Do",
631
+ "Vr",
632
+ "Za"
633
+ ],
634
+ weekdaysMin: [
635
+ "Zo",
636
+ "Ma",
637
+ "Di",
638
+ "Wo",
639
+ "Do",
640
+ "Vr",
641
+ "Za"
642
+ ],
643
+ today: "Vandaag",
644
+ clear: "Wissen",
645
+ close: "Sluiten",
646
+ selectDate: "Selecteer datum",
647
+ selectStartDate: "Startdatum",
648
+ selectEndDate: "Einddatum",
649
+ dateFormat: "dd-MM-yyyy",
650
+ firstDayOfWeek: 1
651
+ },
652
+ "pl-PL": {
653
+ months: [
654
+ "Styczeń",
655
+ "Luty",
656
+ "Marzec",
657
+ "Kwiecień",
658
+ "Maj",
659
+ "Czerwiec",
660
+ "Lipiec",
661
+ "Sierpień",
662
+ "Wrzesień",
663
+ "Październik",
664
+ "Listopad",
665
+ "Grudzień"
666
+ ],
667
+ monthsShort: [
668
+ "Sty",
669
+ "Lut",
670
+ "Mar",
671
+ "Kwi",
672
+ "Maj",
673
+ "Cze",
674
+ "Lip",
675
+ "Sie",
676
+ "Wrz",
677
+ "Paź",
678
+ "Lis",
679
+ "Gru"
680
+ ],
681
+ weekdays: [
682
+ "Niedziela",
683
+ "Poniedziałek",
684
+ "Wtorek",
685
+ "Środa",
686
+ "Czwartek",
687
+ "Piątek",
688
+ "Sobota"
689
+ ],
690
+ weekdaysShort: [
691
+ "Nd",
692
+ "Pn",
693
+ "Wt",
694
+ "Śr",
695
+ "Cz",
696
+ "Pt",
697
+ "So"
698
+ ],
699
+ weekdaysMin: [
700
+ "Nd",
701
+ "Pn",
702
+ "Wt",
703
+ "Śr",
704
+ "Cz",
705
+ "Pt",
706
+ "So"
707
+ ],
708
+ today: "Dzisiaj",
709
+ clear: "Wyczyść",
710
+ close: "Zamknij",
711
+ selectDate: "Wybierz datę",
712
+ selectStartDate: "Data początkowa",
713
+ selectEndDate: "Data końcowa",
714
+ dateFormat: "dd.MM.yyyy",
715
+ firstDayOfWeek: 1
716
+ },
717
+ "ru-RU": {
718
+ months: [
719
+ "Январь",
720
+ "Февраль",
721
+ "Март",
722
+ "Апрель",
723
+ "Май",
724
+ "Июнь",
725
+ "Июль",
726
+ "Август",
727
+ "Сентябрь",
728
+ "Октябрь",
729
+ "Ноябрь",
730
+ "Декабрь"
731
+ ],
732
+ monthsShort: [
733
+ "Янв",
734
+ "Фев",
735
+ "Мар",
736
+ "Апр",
737
+ "Май",
738
+ "Июн",
739
+ "Июл",
740
+ "Авг",
741
+ "Сен",
742
+ "Окт",
743
+ "Ноя",
744
+ "Дек"
745
+ ],
746
+ weekdays: [
747
+ "Воскресенье",
748
+ "Понедельник",
749
+ "Вторник",
750
+ "Среда",
751
+ "Четверг",
752
+ "Пятница",
753
+ "Суббота"
754
+ ],
755
+ weekdaysShort: [
756
+ "Вс",
757
+ "Пн",
758
+ "Вт",
759
+ "Ср",
760
+ "Чт",
761
+ "Пт",
762
+ "Сб"
763
+ ],
764
+ weekdaysMin: [
765
+ "Вс",
766
+ "Пн",
767
+ "Вт",
768
+ "Ср",
769
+ "Чт",
770
+ "Пт",
771
+ "Сб"
772
+ ],
773
+ today: "Сегодня",
774
+ clear: "Очистить",
775
+ close: "Закрыть",
776
+ selectDate: "Выберите дату",
777
+ selectStartDate: "Дата начала",
778
+ selectEndDate: "Дата окончания",
779
+ dateFormat: "dd.MM.yyyy",
780
+ firstDayOfWeek: 1
781
+ },
782
+ "ja-JP": {
783
+ months: [
784
+ "1月",
785
+ "2月",
786
+ "3月",
787
+ "4月",
788
+ "5月",
789
+ "6月",
790
+ "7月",
791
+ "8月",
792
+ "9月",
793
+ "10月",
794
+ "11月",
795
+ "12月"
796
+ ],
797
+ monthsShort: [
798
+ "1月",
799
+ "2月",
800
+ "3月",
801
+ "4月",
802
+ "5月",
803
+ "6月",
804
+ "7月",
805
+ "8月",
806
+ "9月",
807
+ "10月",
808
+ "11月",
809
+ "12月"
810
+ ],
811
+ weekdays: [
812
+ "日曜日",
813
+ "月曜日",
814
+ "火曜日",
815
+ "水曜日",
816
+ "木曜日",
817
+ "金曜日",
818
+ "土曜日"
819
+ ],
820
+ weekdaysShort: [
821
+ "日",
822
+ "月",
823
+ "火",
824
+ "水",
825
+ "木",
826
+ "金",
827
+ "土"
828
+ ],
829
+ weekdaysMin: [
830
+ "日",
831
+ "月",
832
+ "火",
833
+ "水",
834
+ "木",
835
+ "金",
836
+ "土"
837
+ ],
838
+ today: "今日",
839
+ clear: "クリア",
840
+ close: "閉じる",
841
+ selectDate: "日付を選択",
842
+ selectStartDate: "開始日",
843
+ selectEndDate: "終了日",
844
+ dateFormat: "yyyy/MM/dd",
845
+ firstDayOfWeek: 0
846
+ },
847
+ "ko-KR": {
848
+ months: [
849
+ "1월",
850
+ "2월",
851
+ "3월",
852
+ "4월",
853
+ "5월",
854
+ "6월",
855
+ "7월",
856
+ "8월",
857
+ "9월",
858
+ "10월",
859
+ "11월",
860
+ "12월"
861
+ ],
862
+ monthsShort: [
863
+ "1월",
864
+ "2월",
865
+ "3월",
866
+ "4월",
867
+ "5월",
868
+ "6월",
869
+ "7월",
870
+ "8월",
871
+ "9월",
872
+ "10월",
873
+ "11월",
874
+ "12월"
875
+ ],
876
+ weekdays: [
877
+ "일요일",
878
+ "월요일",
879
+ "화요일",
880
+ "수요일",
881
+ "목요일",
882
+ "금요일",
883
+ "토요일"
884
+ ],
885
+ weekdaysShort: [
886
+ "일",
887
+ "월",
888
+ "화",
889
+ "수",
890
+ "목",
891
+ "금",
892
+ "토"
893
+ ],
894
+ weekdaysMin: [
895
+ "일",
896
+ "월",
897
+ "화",
898
+ "수",
899
+ "목",
900
+ "금",
901
+ "토"
902
+ ],
903
+ today: "오늘",
904
+ clear: "지우기",
905
+ close: "닫기",
906
+ selectDate: "날짜 선택",
907
+ selectStartDate: "시작일",
908
+ selectEndDate: "종료일",
909
+ dateFormat: "yyyy.MM.dd",
910
+ firstDayOfWeek: 0
911
+ },
912
+ "zh-CN": {
913
+ months: [
914
+ "一月",
915
+ "二月",
916
+ "三月",
917
+ "四月",
918
+ "五月",
919
+ "六月",
920
+ "七月",
921
+ "八月",
922
+ "九月",
923
+ "十月",
924
+ "十一月",
925
+ "十二月"
926
+ ],
927
+ monthsShort: [
928
+ "1月",
929
+ "2月",
930
+ "3月",
931
+ "4月",
932
+ "5月",
933
+ "6月",
934
+ "7月",
935
+ "8月",
936
+ "9月",
937
+ "10月",
938
+ "11月",
939
+ "12月"
940
+ ],
941
+ weekdays: [
942
+ "星期日",
943
+ "星期一",
944
+ "星期二",
945
+ "星期三",
946
+ "星期四",
947
+ "星期五",
948
+ "星期六"
949
+ ],
950
+ weekdaysShort: [
951
+ "周日",
952
+ "周一",
953
+ "周二",
954
+ "周三",
955
+ "周四",
956
+ "周五",
957
+ "周六"
958
+ ],
959
+ weekdaysMin: [
960
+ "日",
961
+ "一",
962
+ "二",
963
+ "三",
964
+ "四",
965
+ "五",
966
+ "六"
967
+ ],
968
+ today: "今天",
969
+ clear: "清除",
970
+ close: "关闭",
971
+ selectDate: "选择日期",
972
+ selectStartDate: "开始日期",
973
+ selectEndDate: "结束日期",
974
+ dateFormat: "yyyy-MM-dd",
975
+ firstDayOfWeek: 1
976
+ },
977
+ "zh-TW": {
978
+ months: [
979
+ "一月",
980
+ "二月",
981
+ "三月",
982
+ "四月",
983
+ "五月",
984
+ "六月",
985
+ "七月",
986
+ "八月",
987
+ "九月",
988
+ "十月",
989
+ "十一月",
990
+ "十二月"
991
+ ],
992
+ monthsShort: [
993
+ "1月",
994
+ "2月",
995
+ "3月",
996
+ "4月",
997
+ "5月",
998
+ "6月",
999
+ "7月",
1000
+ "8月",
1001
+ "9月",
1002
+ "10月",
1003
+ "11月",
1004
+ "12月"
1005
+ ],
1006
+ weekdays: [
1007
+ "星期日",
1008
+ "星期一",
1009
+ "星期二",
1010
+ "星期三",
1011
+ "星期四",
1012
+ "星期五",
1013
+ "星期六"
1014
+ ],
1015
+ weekdaysShort: [
1016
+ "週日",
1017
+ "週一",
1018
+ "週二",
1019
+ "週三",
1020
+ "週四",
1021
+ "週五",
1022
+ "週六"
1023
+ ],
1024
+ weekdaysMin: [
1025
+ "日",
1026
+ "一",
1027
+ "二",
1028
+ "三",
1029
+ "四",
1030
+ "五",
1031
+ "六"
1032
+ ],
1033
+ today: "今天",
1034
+ clear: "清除",
1035
+ close: "關閉",
1036
+ selectDate: "選擇日期",
1037
+ selectStartDate: "開始日期",
1038
+ selectEndDate: "結束日期",
1039
+ dateFormat: "yyyy/MM/dd",
1040
+ firstDayOfWeek: 0
1041
+ },
1042
+ "ar-SA": {
1043
+ months: [
1044
+ "يناير",
1045
+ "فبراير",
1046
+ "مارس",
1047
+ "أبريل",
1048
+ "مايو",
1049
+ "يونيو",
1050
+ "يوليو",
1051
+ "أغسطس",
1052
+ "سبتمبر",
1053
+ "أكتوبر",
1054
+ "نوفمبر",
1055
+ "ديسمبر"
1056
+ ],
1057
+ monthsShort: [
1058
+ "ينا",
1059
+ "فبر",
1060
+ "مار",
1061
+ "أبر",
1062
+ "ماي",
1063
+ "يون",
1064
+ "يول",
1065
+ "أغس",
1066
+ "سبت",
1067
+ "أكت",
1068
+ "نوف",
1069
+ "ديس"
1070
+ ],
1071
+ weekdays: [
1072
+ "الأحد",
1073
+ "الإثنين",
1074
+ "الثلاثاء",
1075
+ "الأربعاء",
1076
+ "الخميس",
1077
+ "الجمعة",
1078
+ "السبت"
1079
+ ],
1080
+ weekdaysShort: [
1081
+ "أحد",
1082
+ "إثن",
1083
+ "ثلا",
1084
+ "أرب",
1085
+ "خمي",
1086
+ "جمع",
1087
+ "سبت"
1088
+ ],
1089
+ weekdaysMin: [
1090
+ "ح",
1091
+ "ن",
1092
+ "ث",
1093
+ "ر",
1094
+ "خ",
1095
+ "ج",
1096
+ "س"
1097
+ ],
1098
+ today: "اليوم",
1099
+ clear: "مسح",
1100
+ close: "إغلاق",
1101
+ selectDate: "اختر تاريخ",
1102
+ selectStartDate: "تاريخ البداية",
1103
+ selectEndDate: "تاريخ النهاية",
1104
+ dateFormat: "dd/MM/yyyy",
1105
+ firstDayOfWeek: 6
1106
+ }
1107
+ };
1108
+ export function getLocale(key) {
1109
+ return locales[key];
1110
+ }
1111
+ export function getAvailableLocales() {
1112
+ return Object.keys(locales);
1113
+ }