@okta/odyssey-react-mui 1.9.1 → 1.9.3

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 (46) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/README.md +8 -0
  3. package/dist/OdysseyCacheProvider.js +9 -4
  4. package/dist/OdysseyCacheProvider.js.map +1 -1
  5. package/dist/OdysseyProvider.js.map +1 -1
  6. package/dist/OdysseyTranslationProvider.js +6 -5
  7. package/dist/OdysseyTranslationProvider.js.map +1 -1
  8. package/dist/OdysseyTranslationProvider.types.js +1 -1
  9. package/dist/OdysseyTranslationProvider.types.js.map +1 -1
  10. package/dist/getTypedObjectKeys.js +14 -0
  11. package/dist/getTypedObjectKeys.js.map +1 -0
  12. package/dist/i18n.js +0 -2
  13. package/dist/i18n.js.map +1 -1
  14. package/dist/properties/ts/odyssey-react-mui_ok_PL.js +11 -2
  15. package/dist/properties/ts/odyssey-react-mui_ok_PL.js.map +1 -1
  16. package/dist/properties/ts/odyssey-react-mui_ok_SK.js +11 -2
  17. package/dist/properties/ts/odyssey-react-mui_ok_SK.js.map +1 -1
  18. package/dist/src/OdysseyCacheProvider.d.ts +1 -1
  19. package/dist/src/OdysseyCacheProvider.d.ts.map +1 -1
  20. package/dist/src/OdysseyProvider.d.ts +3 -2
  21. package/dist/src/OdysseyProvider.d.ts.map +1 -1
  22. package/dist/src/OdysseyTranslationProvider.d.ts +7 -8
  23. package/dist/src/OdysseyTranslationProvider.d.ts.map +1 -1
  24. package/dist/src/OdysseyTranslationProvider.types.d.ts +2 -2
  25. package/dist/src/OdysseyTranslationProvider.types.d.ts.map +1 -1
  26. package/dist/src/getTypedObjectKeys.d.ts +13 -0
  27. package/dist/src/getTypedObjectKeys.d.ts.map +1 -0
  28. package/dist/src/i18n.d.ts +4 -537
  29. package/dist/src/i18n.d.ts.map +1 -1
  30. package/dist/src/properties/ts/odyssey-react-mui_ok_PL.d.ts +11 -2
  31. package/dist/src/properties/ts/odyssey-react-mui_ok_PL.d.ts.map +1 -1
  32. package/dist/src/properties/ts/odyssey-react-mui_ok_SK.d.ts +11 -2
  33. package/dist/src/properties/ts/odyssey-react-mui_ok_SK.d.ts.map +1 -1
  34. package/dist/tsconfig.production.tsbuildinfo +1 -1
  35. package/package.json +3 -3
  36. package/src/OdysseyCacheProvider.tsx +5 -2
  37. package/src/OdysseyProvider.tsx +9 -6
  38. package/src/OdysseyTranslationProvider.test.tsx +34 -2
  39. package/src/OdysseyTranslationProvider.tsx +23 -18
  40. package/src/OdysseyTranslationProvider.types.ts +3 -2
  41. package/src/getTypedObjectKeys.ts +15 -0
  42. package/src/i18n.ts +5 -8
  43. package/src/properties/translations/odyssey-react-mui_ok_PL.properties +11 -2
  44. package/src/properties/translations/odyssey-react-mui_ok_SK.properties +11 -2
  45. package/src/properties/ts/odyssey-react-mui_ok_PL.ts +1 -1
  46. package/src/properties/ts/odyssey-react-mui_ok_SK.ts +1 -1
@@ -10,544 +10,11 @@
10
10
  * See the License for the specific language governing permissions and limitations under the License.
11
11
  */
12
12
  import i18n from "i18next";
13
- import { SupportedLanguages } from "./OdysseyTranslationProvider.types";
14
- export declare const defaultLNG: SupportedLanguages;
13
+ import { translation as en } from "./properties/ts/odyssey-react-mui";
14
+ export declare const defaultLNG = "en";
15
15
  export declare const defaultNS = "translations";
16
- export declare const resources: {
17
- cs: {
18
- "breadcrumbs.home.text": string;
19
- "breadcrumbs.label.text": string;
20
- "fielderror.screenreader.text": string;
21
- "fieldlabel.optional.text": string;
22
- "fieldlabel.required.text": string;
23
- "passwordfield.icon.label.show": string;
24
- "passwordfield.icon.label.hide": string;
25
- "severity.error": string;
26
- "severity.info": string;
27
- "severity.success": string;
28
- "severity.warning": string;
29
- "table.error": string;
30
- "table.fetchedrows.text": string;
31
- "table.fetchedrows.text_plural": string;
32
- "table.rows.text": string;
33
- "table.rows.text_plural": string;
34
- "toast.close.text": string;
35
- };
36
- da: {
37
- "breadcrumbs.home.text": string;
38
- "breadcrumbs.label.text": string;
39
- "fielderror.screenreader.text": string;
40
- "fieldlabel.optional.text": string;
41
- "fieldlabel.required.text": string;
42
- "passwordfield.icon.label.show": string;
43
- "passwordfield.icon.label.hide": string;
44
- "severity.error": string;
45
- "severity.info": string;
46
- "severity.success": string;
47
- "severity.warning": string;
48
- "table.error": string;
49
- "table.fetchedrows.text": string;
50
- "table.fetchedrows.text_plural": string;
51
- "table.rows.text": string;
52
- "table.rows.text_plural": string;
53
- "toast.close.text": string;
54
- };
55
- de: {
56
- "breadcrumbs.home.text": string;
57
- "breadcrumbs.label.text": string;
58
- "fielderror.screenreader.text": string;
59
- "fieldlabel.optional.text": string;
60
- "fieldlabel.required.text": string;
61
- "passwordfield.icon.label.show": string;
62
- "passwordfield.icon.label.hide": string;
63
- "severity.error": string;
64
- "severity.info": string;
65
- "severity.success": string;
66
- "severity.warning": string;
67
- "table.error": string;
68
- "table.fetchedrows.text": string;
69
- "table.fetchedrows.text_plural": string;
70
- "table.rows.text": string;
71
- "table.rows.text_plural": string;
72
- "toast.close.text": string;
73
- };
74
- el: {
75
- "breadcrumbs.home.text": string;
76
- "breadcrumbs.label.text": string;
77
- "fielderror.screenreader.text": string;
78
- "fieldlabel.optional.text": string;
79
- "fieldlabel.required.text": string;
80
- "passwordfield.icon.label.show": string;
81
- "passwordfield.icon.label.hide": string;
82
- "severity.error": string;
83
- "severity.info": string;
84
- "severity.success": string;
85
- "severity.warning": string;
86
- "table.error": string;
87
- "table.fetchedrows.text": string;
88
- "table.fetchedrows.text_plural": string;
89
- "table.rows.text": string;
90
- "table.rows.text_plural": string;
91
- "toast.close.text": string;
92
- };
93
- en: {
94
- "breadcrumbs.home.text": string;
95
- "breadcrumbs.label.text": string;
96
- "fielderror.screenreader.text": string;
97
- "fieldlabel.optional.text": string;
98
- "fieldlabel.required.text": string;
99
- "passwordfield.icon.label.show": string;
100
- "passwordfield.icon.label.hide": string;
101
- "severity.error": string;
102
- "severity.info": string;
103
- "severity.success": string;
104
- "severity.warning": string;
105
- "table.error": string;
106
- "table.fetchedrows.text": string;
107
- "table.fetchedrows.text_plural": string;
108
- "table.rows.text": string;
109
- "table.rows.text_plural": string;
110
- "toast.close.text": string;
111
- };
112
- es: {
113
- "breadcrumbs.home.text": string;
114
- "breadcrumbs.label.text": string;
115
- "fielderror.screenreader.text": string;
116
- "fieldlabel.optional.text": string;
117
- "fieldlabel.required.text": string;
118
- "passwordfield.icon.label.show": string;
119
- "passwordfield.icon.label.hide": string;
120
- "severity.error": string;
121
- "severity.info": string;
122
- "severity.success": string;
123
- "severity.warning": string;
124
- "table.error": string;
125
- "table.fetchedrows.text": string;
126
- "table.fetchedrows.text_plural": string;
127
- "table.rows.text": string;
128
- "table.rows.text_plural": string;
129
- "toast.close.text": string;
130
- };
131
- fi: {
132
- "breadcrumbs.home.text": string;
133
- "breadcrumbs.label.text": string;
134
- "fielderror.screenreader.text": string;
135
- "fieldlabel.optional.text": string;
136
- "fieldlabel.required.text": string;
137
- "passwordfield.icon.label.show": string;
138
- "passwordfield.icon.label.hide": string;
139
- "severity.error": string;
140
- "severity.info": string;
141
- "severity.success": string;
142
- "severity.warning": string;
143
- "table.error": string;
144
- "table.fetchedrows.text": string;
145
- "table.fetchedrows.text_plural": string;
146
- "table.rows.text": string;
147
- "table.rows.text_plural": string;
148
- "toast.close.text": string;
149
- };
150
- fr: {
151
- "breadcrumbs.home.text": string;
152
- "breadcrumbs.label.text": string;
153
- "fielderror.screenreader.text": string;
154
- "fieldlabel.optional.text": string;
155
- "fieldlabel.required.text": string;
156
- "passwordfield.icon.label.show": string;
157
- "passwordfield.icon.label.hide": string;
158
- "severity.error": string;
159
- "severity.info": string;
160
- "severity.success": string;
161
- "severity.warning": string;
162
- "table.error": string;
163
- "table.fetchedrows.text": string;
164
- "table.fetchedrows.text_plural": string;
165
- "table.rows.text": string;
166
- "table.rows.text_plural": string;
167
- "toast.close.text": string;
168
- };
169
- hu: {
170
- "breadcrumbs.home.text": string;
171
- "breadcrumbs.label.text": string;
172
- "fielderror.screenreader.text": string;
173
- "fieldlabel.optional.text": string;
174
- "fieldlabel.required.text": string;
175
- "passwordfield.icon.label.show": string;
176
- "passwordfield.icon.label.hide": string;
177
- "severity.error": string;
178
- "severity.info": string;
179
- "severity.success": string;
180
- "severity.warning": string;
181
- "table.error": string;
182
- "table.fetchedrows.text": string;
183
- "table.fetchedrows.text_plural": string;
184
- "table.rows.text": string;
185
- "table.rows.text_plural": string;
186
- "toast.close.text": string;
187
- };
188
- id: {
189
- "breadcrumbs.home.text": string;
190
- "breadcrumbs.label.text": string;
191
- "fielderror.screenreader.text": string;
192
- "fieldlabel.optional.text": string;
193
- "fieldlabel.required.text": string;
194
- "passwordfield.icon.label.show": string;
195
- "passwordfield.icon.label.hide": string;
196
- "severity.error": string;
197
- "severity.info": string;
198
- "severity.success": string;
199
- "severity.warning": string;
200
- "table.error": string;
201
- "table.fetchedrows.text": string;
202
- "table.fetchedrows.text_plural": string;
203
- "table.rows.text": string;
204
- "table.rows.text_plural": string;
205
- "toast.close.text": string;
206
- };
207
- it: {
208
- "breadcrumbs.home.text": string;
209
- "breadcrumbs.label.text": string;
210
- "fielderror.screenreader.text": string;
211
- "fieldlabel.optional.text": string;
212
- "fieldlabel.required.text": string;
213
- "passwordfield.icon.label.show": string;
214
- "passwordfield.icon.label.hide": string;
215
- "severity.error": string;
216
- "severity.info": string;
217
- "severity.success": string;
218
- "severity.warning": string;
219
- "table.error": string;
220
- "table.fetchedrows.text": string;
221
- "table.fetchedrows.text_plural": string;
222
- "table.rows.text": string;
223
- "table.rows.text_plural": string;
224
- "toast.close.text": string;
225
- };
226
- ja: {
227
- "breadcrumbs.home.text": string;
228
- "breadcrumbs.label.text": string;
229
- "fielderror.screenreader.text": string;
230
- "fieldlabel.optional.text": string;
231
- "fieldlabel.required.text": string;
232
- "passwordfield.icon.label.show": string;
233
- "passwordfield.icon.label.hide": string;
234
- "severity.error": string;
235
- "severity.info": string;
236
- "severity.success": string;
237
- "severity.warning": string;
238
- "table.error": string;
239
- "table.fetchedrows.text": string;
240
- "table.fetchedrows.text_plural": string;
241
- "table.rows.text": string;
242
- "table.rows.text_plural": string;
243
- "toast.close.text": string;
244
- };
245
- ko: {
246
- "breadcrumbs.home.text": string;
247
- "breadcrumbs.label.text": string;
248
- "fielderror.screenreader.text": string;
249
- "fieldlabel.optional.text": string;
250
- "fieldlabel.required.text": string;
251
- "passwordfield.icon.label.show": string;
252
- "passwordfield.icon.label.hide": string;
253
- "severity.error": string;
254
- "severity.info": string;
255
- "severity.success": string;
256
- "severity.warning": string;
257
- "table.error": string;
258
- "table.fetchedrows.text": string;
259
- "table.fetchedrows.text_plural": string;
260
- "table.rows.text": string;
261
- "table.rows.text_plural": string;
262
- "toast.close.text": string;
263
- };
264
- ms: {
265
- "breadcrumbs.home.text": string;
266
- "breadcrumbs.label.text": string;
267
- "fielderror.screenreader.text": string;
268
- "fieldlabel.optional.text": string;
269
- "fieldlabel.required.text": string;
270
- "passwordfield.icon.label.show": string;
271
- "passwordfield.icon.label.hide": string;
272
- "severity.error": string;
273
- "severity.info": string;
274
- "severity.success": string;
275
- "severity.warning": string;
276
- "table.error": string;
277
- "table.fetchedrows.text": string;
278
- "table.fetchedrows.text_plural": string;
279
- "table.rows.text": string;
280
- "table.rows.text_plural": string;
281
- "toast.close.text": string;
282
- };
283
- nb: {
284
- "breadcrumbs.home.text": string;
285
- "breadcrumbs.label.text": string;
286
- "fielderror.screenreader.text": string;
287
- "fieldlabel.optional.text": string;
288
- "fieldlabel.required.text": string;
289
- "passwordfield.icon.label.show": string;
290
- "passwordfield.icon.label.hide": string;
291
- "severity.error": string;
292
- "severity.info": string;
293
- "severity.success": string;
294
- "severity.warning": string;
295
- "table.error": string;
296
- "table.fetchedrows.text": string;
297
- "table.fetchedrows.text_plural": string;
298
- "table.rows.text": string;
299
- "table.rows.text_plural": string;
300
- "toast.close.text": string;
301
- };
302
- nl_NL: {
303
- "breadcrumbs.home.text": string;
304
- "breadcrumbs.label.text": string;
305
- "fielderror.screenreader.text": string;
306
- "fieldlabel.optional.text": string;
307
- "fieldlabel.required.text": string;
308
- "passwordfield.icon.label.show": string;
309
- "passwordfield.icon.label.hide": string;
310
- "severity.error": string;
311
- "severity.info": string;
312
- "severity.success": string;
313
- "severity.warning": string;
314
- "table.error": string;
315
- "table.fetchedrows.text": string;
316
- "table.fetchedrows.text_plural": string;
317
- "table.rows.text": string;
318
- "table.rows.text_plural": string;
319
- "toast.close.text": string;
320
- };
321
- ok_PL: {
322
- "fielderror.screenreader.text": string;
323
- "fieldlabel.optional.text": string;
324
- "fieldlabel.required.text": string;
325
- "severity.success": string;
326
- "severity.warning": string;
327
- "severity.info": string;
328
- "severity.error": string;
329
- "toast.close.text": string;
330
- };
331
- ok_SK: {
332
- "fielderror.screenreader.text": string;
333
- "fieldlabel.optional.text": string;
334
- "fieldlabel.required.text": string;
335
- "severity.success": string;
336
- "severity.warning": string;
337
- "severity.info": string;
338
- "severity.error": string;
339
- "toast.close.text": string;
340
- };
341
- pl: {
342
- "breadcrumbs.home.text": string;
343
- "breadcrumbs.label.text": string;
344
- "fielderror.screenreader.text": string;
345
- "fieldlabel.optional.text": string;
346
- "fieldlabel.required.text": string;
347
- "passwordfield.icon.label.show": string;
348
- "passwordfield.icon.label.hide": string;
349
- "severity.error": string;
350
- "severity.info": string;
351
- "severity.success": string;
352
- "severity.warning": string;
353
- "table.error": string;
354
- "table.fetchedrows.text": string;
355
- "table.fetchedrows.text_plural": string;
356
- "table.rows.text": string;
357
- "table.rows.text_plural": string;
358
- "toast.close.text": string;
359
- };
360
- pt_BR: {
361
- "breadcrumbs.home.text": string;
362
- "breadcrumbs.label.text": string;
363
- "fielderror.screenreader.text": string;
364
- "fieldlabel.optional.text": string;
365
- "fieldlabel.required.text": string;
366
- "passwordfield.icon.label.show": string;
367
- "passwordfield.icon.label.hide": string;
368
- "severity.error": string;
369
- "severity.info": string;
370
- "severity.success": string;
371
- "severity.warning": string;
372
- "table.error": string;
373
- "table.fetchedrows.text": string;
374
- "table.fetchedrows.text_plural": string;
375
- "table.rows.text": string;
376
- "table.rows.text_plural": string;
377
- "toast.close.text": string;
378
- };
379
- ro: {
380
- "breadcrumbs.home.text": string;
381
- "breadcrumbs.label.text": string;
382
- "fielderror.screenreader.text": string;
383
- "fieldlabel.optional.text": string;
384
- "fieldlabel.required.text": string;
385
- "passwordfield.icon.label.show": string;
386
- "passwordfield.icon.label.hide": string;
387
- "severity.error": string;
388
- "severity.info": string;
389
- "severity.success": string;
390
- "severity.warning": string;
391
- "table.error": string;
392
- "table.fetchedrows.text": string;
393
- "table.fetchedrows.text_plural": string;
394
- "table.rows.text": string;
395
- "table.rows.text_plural": string;
396
- "toast.close.text": string;
397
- };
398
- ru: {
399
- "breadcrumbs.home.text": string;
400
- "breadcrumbs.label.text": string;
401
- "fielderror.screenreader.text": string;
402
- "fieldlabel.optional.text": string;
403
- "fieldlabel.required.text": string;
404
- "passwordfield.icon.label.show": string;
405
- "passwordfield.icon.label.hide": string;
406
- "severity.error": string;
407
- "severity.info": string;
408
- "severity.success": string;
409
- "severity.warning": string;
410
- "table.error": string;
411
- "table.fetchedrows.text": string;
412
- "table.fetchedrows.text_plural": string;
413
- "table.rows.text": string;
414
- "table.rows.text_plural": string;
415
- "toast.close.text": string;
416
- };
417
- sv: {
418
- "breadcrumbs.home.text": string;
419
- "breadcrumbs.label.text": string;
420
- "fielderror.screenreader.text": string;
421
- "fieldlabel.optional.text": string;
422
- "fieldlabel.required.text": string;
423
- "passwordfield.icon.label.show": string;
424
- "passwordfield.icon.label.hide": string;
425
- "severity.error": string;
426
- "severity.info": string;
427
- "severity.success": string;
428
- "severity.warning": string;
429
- "table.error": string;
430
- "table.fetchedrows.text": string;
431
- "table.fetchedrows.text_plural": string;
432
- "table.rows.text": string;
433
- "table.rows.text_plural": string;
434
- "toast.close.text": string;
435
- };
436
- th: {
437
- "breadcrumbs.home.text": string;
438
- "breadcrumbs.label.text": string;
439
- "fielderror.screenreader.text": string;
440
- "fieldlabel.optional.text": string;
441
- "fieldlabel.required.text": string;
442
- "passwordfield.icon.label.show": string;
443
- "passwordfield.icon.label.hide": string;
444
- "severity.error": string;
445
- "severity.info": string;
446
- "severity.success": string;
447
- "severity.warning": string;
448
- "table.error": string;
449
- "table.fetchedrows.text": string;
450
- "table.fetchedrows.text_plural": string;
451
- "table.rows.text": string;
452
- "table.rows.text_plural": string;
453
- "toast.close.text": string;
454
- };
455
- tr: {
456
- "breadcrumbs.home.text": string;
457
- "breadcrumbs.label.text": string;
458
- "fielderror.screenreader.text": string;
459
- "fieldlabel.optional.text": string;
460
- "fieldlabel.required.text": string;
461
- "passwordfield.icon.label.show": string;
462
- "passwordfield.icon.label.hide": string;
463
- "severity.error": string;
464
- "severity.info": string;
465
- "severity.success": string;
466
- "severity.warning": string;
467
- "table.error": string;
468
- "table.fetchedrows.text": string;
469
- "table.fetchedrows.text_plural": string;
470
- "table.rows.text": string;
471
- "table.rows.text_plural": string;
472
- "toast.close.text": string;
473
- };
474
- uk: {
475
- "breadcrumbs.home.text": string;
476
- "breadcrumbs.label.text": string;
477
- "fielderror.screenreader.text": string;
478
- "fieldlabel.optional.text": string;
479
- "fieldlabel.required.text": string;
480
- "passwordfield.icon.label.show": string;
481
- "passwordfield.icon.label.hide": string;
482
- "severity.error": string;
483
- "severity.info": string;
484
- "severity.success": string;
485
- "severity.warning": string;
486
- "table.error": string;
487
- "table.fetchedrows.text": string;
488
- "table.fetchedrows.text_plural": string;
489
- "table.rows.text": string;
490
- "table.rows.text_plural": string;
491
- "toast.close.text": string;
492
- };
493
- vi: {
494
- "breadcrumbs.home.text": string;
495
- "breadcrumbs.label.text": string;
496
- "fielderror.screenreader.text": string;
497
- "fieldlabel.optional.text": string;
498
- "fieldlabel.required.text": string;
499
- "passwordfield.icon.label.show": string;
500
- "passwordfield.icon.label.hide": string;
501
- "severity.error": string;
502
- "severity.info": string;
503
- "severity.success": string;
504
- "severity.warning": string;
505
- "table.error": string;
506
- "table.fetchedrows.text": string;
507
- "table.fetchedrows.text_plural": string;
508
- "table.rows.text": string;
509
- "table.rows.text_plural": string;
510
- "toast.close.text": string;
511
- };
512
- zh_CN: {
513
- "breadcrumbs.home.text": string;
514
- "breadcrumbs.label.text": string;
515
- "fielderror.screenreader.text": string;
516
- "fieldlabel.optional.text": string;
517
- "fieldlabel.required.text": string;
518
- "passwordfield.icon.label.show": string;
519
- "passwordfield.icon.label.hide": string;
520
- "severity.error": string;
521
- "severity.info": string;
522
- "severity.success": string;
523
- "severity.warning": string;
524
- "table.error": string;
525
- "table.fetchedrows.text": string;
526
- "table.fetchedrows.text_plural": string;
527
- "table.rows.text": string;
528
- "table.rows.text_plural": string;
529
- "toast.close.text": string;
530
- };
531
- zh_TW: {
532
- "breadcrumbs.home.text": string;
533
- "breadcrumbs.label.text": string;
534
- "fielderror.screenreader.text": string;
535
- "fieldlabel.optional.text": string;
536
- "fieldlabel.required.text": string;
537
- "passwordfield.icon.label.show": string;
538
- "passwordfield.icon.label.hide": string;
539
- "severity.error": string;
540
- "severity.info": string;
541
- "severity.success": string;
542
- "severity.warning": string;
543
- "table.error": string;
544
- "table.fetchedrows.text": string;
545
- "table.fetchedrows.text_plural": string;
546
- "table.rows.text": string;
547
- "table.rows.text_plural": string;
548
- "toast.close.text": string;
549
- };
550
- };
16
+ export type I18nResources = Record<string, typeof en>;
17
+ export declare const resources: I18nResources;
551
18
  export declare const odysseyTranslate: import("i18next").TFunction<["translation", ..."translations"[]], undefined>;
552
19
  export { i18n };
553
20
  //# sourceMappingURL=i18n.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../../src/i18n.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,IAAI,MAAM,SAAS,CAAC;AAiC3B,OAAO,EACL,kBAAkB,EAEnB,MAAM,oCAAoC,CAAC;AAE5C,eAAO,MAAM,UAAU,EAAE,kBAAyB,CAAC;AACnD,eAAO,MAAM,SAAS,iBAAiB,CAAC;AACxC,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8BrB,CAAC;AAuBF,eAAO,MAAM,gBAAgB,8EAAoB,CAAC;AAClD,OAAO,EAAE,IAAI,EAAE,CAAC"}
1
+ {"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../../src/i18n.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,IAAI,MAAM,SAAS,CAAC;AAO3B,OAAO,EAAE,WAAW,IAAI,EAAE,EAAE,MAAM,mCAAmC,CAAC;AA0BtE,eAAO,MAAM,UAAU,OAAO,CAAC;AAC/B,eAAO,MAAM,SAAS,iBAAiB,CAAC;AAGxC,MAAM,MAAM,aAAa,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,EAAE,CAAC,CAAC;AACtD,eAAO,MAAM,SAAS,EAAE,aA8BvB,CAAC;AAsBF,eAAO,MAAM,gBAAgB,8EAAoB,CAAC;AAClD,OAAO,EAAE,IAAI,EAAE,CAAC"}
@@ -1,11 +1,20 @@
1
1
  export declare const translation: {
2
+ "breadcrumbs.home.text": string;
3
+ "breadcrumbs.label.text": string;
2
4
  "fielderror.screenreader.text": string;
3
5
  "fieldlabel.optional.text": string;
4
6
  "fieldlabel.required.text": string;
7
+ "passwordfield.icon.label.show": string;
8
+ "passwordfield.icon.label.hide": string;
9
+ "severity.error": string;
10
+ "severity.info": string;
5
11
  "severity.success": string;
6
12
  "severity.warning": string;
7
- "severity.info": string;
8
- "severity.error": string;
13
+ "table.error": string;
14
+ "table.fetchedrows.text": string;
15
+ "table.fetchedrows.text_plural": string;
16
+ "table.rows.text": string;
17
+ "table.rows.text_plural": string;
9
18
  "toast.close.text": string;
10
19
  };
11
20
  //# sourceMappingURL=odyssey-react-mui_ok_PL.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"odyssey-react-mui_ok_PL.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_ok_PL.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;;;;;;;;CAAqU,CAAC"}
1
+ {"version":3,"file":"odyssey-react-mui_ok_PL.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_ok_PL.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;CAA81B,CAAC"}
@@ -1,11 +1,20 @@
1
1
  export declare const translation: {
2
+ "breadcrumbs.home.text": string;
3
+ "breadcrumbs.label.text": string;
2
4
  "fielderror.screenreader.text": string;
3
5
  "fieldlabel.optional.text": string;
4
6
  "fieldlabel.required.text": string;
7
+ "passwordfield.icon.label.show": string;
8
+ "passwordfield.icon.label.hide": string;
9
+ "severity.error": string;
10
+ "severity.info": string;
5
11
  "severity.success": string;
6
12
  "severity.warning": string;
7
- "severity.info": string;
8
- "severity.error": string;
13
+ "table.error": string;
14
+ "table.fetchedrows.text": string;
15
+ "table.fetchedrows.text_plural": string;
16
+ "table.rows.text": string;
17
+ "table.rows.text_plural": string;
9
18
  "toast.close.text": string;
10
19
  };
11
20
  //# sourceMappingURL=odyssey-react-mui_ok_SK.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"odyssey-react-mui_ok_SK.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_ok_SK.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;;;;;;;;CAA0lB,CAAC"}
1
+ {"version":3,"file":"odyssey-react-mui_ok_SK.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_ok_SK.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;CAAuzC,CAAC"}