@voyantjs/finance-ui 0.30.7 → 0.31.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/README.md +18 -0
  2. package/dist/components/invoice-detail-page.d.ts +113 -0
  3. package/dist/components/invoice-detail-page.d.ts.map +1 -0
  4. package/dist/components/invoice-detail-page.js +142 -0
  5. package/dist/components/invoices-page-skeleton.d.ts +5 -0
  6. package/dist/components/invoices-page-skeleton.d.ts.map +1 -0
  7. package/dist/components/invoices-page-skeleton.js +13 -0
  8. package/dist/components/invoices-page.d.ts +6 -0
  9. package/dist/components/invoices-page.d.ts.map +1 -0
  10. package/dist/components/invoices-page.js +109 -0
  11. package/dist/components/payment-detail-page.d.ts +41 -0
  12. package/dist/components/payment-detail-page.d.ts.map +1 -0
  13. package/dist/components/payment-detail-page.js +79 -0
  14. package/dist/components/payments-page-skeleton.d.ts +5 -0
  15. package/dist/components/payments-page-skeleton.d.ts.map +1 -0
  16. package/dist/components/payments-page-skeleton.js +13 -0
  17. package/dist/components/payments-page.d.ts +20 -0
  18. package/dist/components/payments-page.d.ts.map +1 -0
  19. package/dist/components/payments-page.js +151 -0
  20. package/dist/components/taxes-page.d.ts +11 -0
  21. package/dist/components/taxes-page.d.ts.map +1 -0
  22. package/dist/components/taxes-page.js +718 -0
  23. package/dist/i18n/en.d.ts +308 -0
  24. package/dist/i18n/en.d.ts.map +1 -1
  25. package/dist/i18n/en.js +308 -0
  26. package/dist/i18n/index.d.ts +1 -1
  27. package/dist/i18n/index.d.ts.map +1 -1
  28. package/dist/i18n/messages.d.ts +193 -1
  29. package/dist/i18n/messages.d.ts.map +1 -1
  30. package/dist/i18n/messages.js +11 -0
  31. package/dist/i18n/provider.d.ts +616 -0
  32. package/dist/i18n/provider.d.ts.map +1 -1
  33. package/dist/i18n/ro.d.ts +308 -0
  34. package/dist/i18n/ro.d.ts.map +1 -1
  35. package/dist/i18n/ro.js +308 -0
  36. package/dist/index.d.ts +7 -0
  37. package/dist/index.d.ts.map +1 -1
  38. package/dist/index.js +7 -0
  39. package/package.json +9 -9
@@ -14,6 +14,17 @@ export declare const financeUiMessageDefinitions: {
14
14
  overdue: string;
15
15
  void: string;
16
16
  };
17
+ paymentMethodLabels: {
18
+ bank_transfer: string;
19
+ credit_card: string;
20
+ debit_card: string;
21
+ cash: string;
22
+ cheque: string;
23
+ wallet: string;
24
+ direct_bill: string;
25
+ voucher: string;
26
+ other: string;
27
+ };
17
28
  supplierPaymentMethodLabels: {
18
29
  bank_transfer: string;
19
30
  credit_card: string;
@@ -63,6 +74,303 @@ export declare const financeUiMessageDefinitions: {
63
74
  dueDateRequired: string;
64
75
  };
65
76
  };
77
+ invoicesPage: {
78
+ title: string;
79
+ description: string;
80
+ searchPlaceholder: string;
81
+ actions: {
82
+ newInvoice: string;
83
+ };
84
+ filters: {
85
+ button: string;
86
+ statusLabel: string;
87
+ statusAll: string;
88
+ currencyLabel: string;
89
+ currencyAny: string;
90
+ dueDateLabel: string;
91
+ dateAny: string;
92
+ clear: string;
93
+ };
94
+ columns: {
95
+ invoiceNumber: string;
96
+ status: string;
97
+ total: string;
98
+ paid: string;
99
+ balanceDue: string;
100
+ dueDate: string;
101
+ };
102
+ empty: string;
103
+ loadFailed: string;
104
+ pagination: {
105
+ showing: string;
106
+ page: string;
107
+ previous: string;
108
+ next: string;
109
+ };
110
+ };
111
+ paymentsPage: {
112
+ title: string;
113
+ description: string;
114
+ searchPlaceholder: string;
115
+ actions: {
116
+ recordPayment: string;
117
+ };
118
+ kindLabels: {
119
+ customer: string;
120
+ supplier: string;
121
+ };
122
+ filters: {
123
+ button: string;
124
+ kindLabel: string;
125
+ kindAll: string;
126
+ statusLabel: string;
127
+ statusAll: string;
128
+ methodLabel: string;
129
+ methodAll: string;
130
+ supplierLabel: string;
131
+ supplierAny: string;
132
+ supplierEmpty: string;
133
+ currencyLabel: string;
134
+ currencyAny: string;
135
+ paymentDateLabel: string;
136
+ dateAny: string;
137
+ clear: string;
138
+ };
139
+ columns: {
140
+ kind: string;
141
+ reference: string;
142
+ party: string;
143
+ amount: string;
144
+ status: string;
145
+ date: string;
146
+ method: string;
147
+ };
148
+ noValue: string;
149
+ empty: string;
150
+ loadFailed: string;
151
+ pagination: {
152
+ showing: string;
153
+ page: string;
154
+ previous: string;
155
+ next: string;
156
+ };
157
+ };
158
+ paymentDetailPage: {
159
+ actions: {
160
+ back: string;
161
+ viewInvoice: string;
162
+ viewBooking: string;
163
+ viewPerson: string;
164
+ viewOrganization: string;
165
+ viewSupplier: string;
166
+ };
167
+ titles: {
168
+ summary: string;
169
+ links: string;
170
+ metadata: string;
171
+ };
172
+ fields: {
173
+ amount: string;
174
+ baseAmount: string;
175
+ status: string;
176
+ method: string;
177
+ date: string;
178
+ reference: string;
179
+ notes: string;
180
+ kind: string;
181
+ paidBy: string;
182
+ paidTo: string;
183
+ organization: string;
184
+ invoice: string;
185
+ booking: string;
186
+ createdAt: string;
187
+ updatedAt: string;
188
+ };
189
+ states: {
190
+ loading: string;
191
+ loadFailed: string;
192
+ notFound: string;
193
+ noValue: string;
194
+ };
195
+ };
196
+ invoiceDetailPage: {
197
+ actions: {
198
+ back: string;
199
+ edit: string;
200
+ delete: string;
201
+ deleteTitle: string;
202
+ deleteDescription: string;
203
+ deleteOnlyDraft: string;
204
+ viewBooking: string;
205
+ viewPerson: string;
206
+ viewOrganization: string;
207
+ addLineItem: string;
208
+ editLineItem: string;
209
+ deleteLineItemShort: string;
210
+ deleteLineItemTitle: string;
211
+ deleteLineItemDescription: string;
212
+ recordPayment: string;
213
+ addCreditNote: string;
214
+ addNote: string;
215
+ };
216
+ titles: {
217
+ summary: string;
218
+ links: string;
219
+ lineItems: string;
220
+ payments: string;
221
+ creditNotes: string;
222
+ notes: string;
223
+ };
224
+ fields: {
225
+ currency: string;
226
+ subtotal: string;
227
+ tax: string;
228
+ total: string;
229
+ paid: string;
230
+ balanceDue: string;
231
+ status: string;
232
+ issueDate: string;
233
+ dueDate: string;
234
+ booking: string;
235
+ person: string;
236
+ organization: string;
237
+ notes: string;
238
+ createdAt: string;
239
+ updatedAt: string;
240
+ };
241
+ columns: {
242
+ description: string;
243
+ quantity: string;
244
+ unitPrice: string;
245
+ total: string;
246
+ taxRate: string;
247
+ };
248
+ states: {
249
+ loading: string;
250
+ loadFailed: string;
251
+ notFound: string;
252
+ noValue: string;
253
+ noLineItems: string;
254
+ noPayments: string;
255
+ noCreditNotes: string;
256
+ noNotes: string;
257
+ };
258
+ placeholders: {
259
+ note: string;
260
+ };
261
+ creditNoteStatusLabels: {
262
+ draft: string;
263
+ issued: string;
264
+ applied: string;
265
+ };
266
+ };
267
+ taxesPage: {
268
+ title: string;
269
+ description: string;
270
+ addTax: string;
271
+ empty: string;
272
+ inactive: string;
273
+ edit: string;
274
+ delete: string;
275
+ deleteConfirm: string;
276
+ editSheetTitle: string;
277
+ newSheetTitle: string;
278
+ taxClassBadge: string;
279
+ defaultRegimeLabel: string;
280
+ regimeOverridesLabel: string;
281
+ regimeOverrideCount: string;
282
+ taxClassSectionTitle: string;
283
+ taxClassSectionDescription: string;
284
+ defaultRegimeSectionTitle: string;
285
+ defaultRegimeSectionDescription: string;
286
+ regimeOverridesSectionTitle: string;
287
+ regimeOverridesSectionDescription: string;
288
+ addRegimeOverride: string;
289
+ removeRegimeOverride: string;
290
+ noRegimeOverrides: string;
291
+ appliesToLabel: string;
292
+ taxRegimeLabel: string;
293
+ appliesToBase: string;
294
+ appliesToAddon: string;
295
+ appliesToAccommodation: string;
296
+ appliesToAll: string;
297
+ taxClassLabelLabel: string;
298
+ taxClassLabelPlaceholder: string;
299
+ taxClassCodeLabel: string;
300
+ taxClassCodePlaceholder: string;
301
+ taxClassDescriptionLabel: string;
302
+ taxClassDescriptionPlaceholder: string;
303
+ regimeNameLabel: string;
304
+ regimeNamePlaceholder: string;
305
+ regimeCodeLabel: string;
306
+ rateLabel: string;
307
+ jurisdictionLabel: string;
308
+ legalReferenceLabel: string;
309
+ legalReferencePlaceholder: string;
310
+ regimeDescriptionLabel: string;
311
+ regimeDescriptionPlaceholder: string;
312
+ activeLabel: string;
313
+ cancel: string;
314
+ saveChanges: string;
315
+ createTax: string;
316
+ validationNameRequired: string;
317
+ validationRateInvalid: string;
318
+ saveFailed: string;
319
+ policyTitle: string;
320
+ policyDescription: string;
321
+ addPolicyProfile: string;
322
+ addPolicyRule: string;
323
+ policyEmpty: string;
324
+ policyRulesEmpty: string;
325
+ deletePolicyProfileConfirm: string;
326
+ deletePolicyRuleConfirm: string;
327
+ editPolicyProfileSheetTitle: string;
328
+ newPolicyProfileSheetTitle: string;
329
+ editPolicyRuleSheetTitle: string;
330
+ newPolicyRuleSheetTitle: string;
331
+ policyProfileNameLabel: string;
332
+ policyProfileNamePlaceholder: string;
333
+ policyProfileCodeLabel: string;
334
+ policyProfileCodePlaceholder: string;
335
+ policyProfileDescriptionLabel: string;
336
+ policyProfileDescriptionPlaceholder: string;
337
+ policyPriorityLabel: string;
338
+ policySideLabel: string;
339
+ policyRuleNameLabel: string;
340
+ policyRuleNamePlaceholder: string;
341
+ policyConditionLabel: string;
342
+ policyConditionSectionTitle: string;
343
+ policyConditionSectionDescription: string;
344
+ policyConditionModeLabel: string;
345
+ policyConditionAlways: string;
346
+ policyConditionAlwaysDescription: string;
347
+ policyConditionModeAll: string;
348
+ policyConditionModeAny: string;
349
+ addPolicyCondition: string;
350
+ removePolicyCondition: string;
351
+ policyFactLabel: string;
352
+ policyFactHasAccommodation: string;
353
+ policyFactAccommodationCountries: string;
354
+ policyOperatorLabel: string;
355
+ policyOperatorEquals: string;
356
+ policyOperatorContains: string;
357
+ policyValueLabel: string;
358
+ policyValueYes: string;
359
+ policyValueNo: string;
360
+ policyActionsLabel: string;
361
+ policySideSell: string;
362
+ policySideBuy: string;
363
+ createPolicyProfile: string;
364
+ createPolicyRule: string;
365
+ validationPolicyProfileNameRequired: string;
366
+ validationPolicyProfileRequired: string;
367
+ validationPolicyRuleNameRequired: string;
368
+ validationPolicyRuleRegimeRequired: string;
369
+ validationPolicyRulePriorityInvalid: string;
370
+ validationPolicyRuleConditionInvalid: string;
371
+ savePolicyProfileFailed: string;
372
+ savePolicyRuleFailed: string;
373
+ };
66
374
  supplierPaymentDialog: {
67
375
  title: string;
68
376
  fields: {
@@ -105,6 +413,17 @@ export declare const financeUiMessageDefinitions: {
105
413
  overdue: string;
106
414
  void: string;
107
415
  };
416
+ paymentMethodLabels: {
417
+ bank_transfer: string;
418
+ credit_card: string;
419
+ debit_card: string;
420
+ cash: string;
421
+ cheque: string;
422
+ wallet: string;
423
+ direct_bill: string;
424
+ voucher: string;
425
+ other: string;
426
+ };
108
427
  supplierPaymentMethodLabels: {
109
428
  bank_transfer: string;
110
429
  credit_card: string;
@@ -154,6 +473,303 @@ export declare const financeUiMessageDefinitions: {
154
473
  dueDateRequired: string;
155
474
  };
156
475
  };
476
+ invoicesPage: {
477
+ title: string;
478
+ description: string;
479
+ searchPlaceholder: string;
480
+ actions: {
481
+ newInvoice: string;
482
+ };
483
+ filters: {
484
+ button: string;
485
+ statusLabel: string;
486
+ statusAll: string;
487
+ currencyLabel: string;
488
+ currencyAny: string;
489
+ dueDateLabel: string;
490
+ dateAny: string;
491
+ clear: string;
492
+ };
493
+ columns: {
494
+ invoiceNumber: string;
495
+ status: string;
496
+ total: string;
497
+ paid: string;
498
+ balanceDue: string;
499
+ dueDate: string;
500
+ };
501
+ empty: string;
502
+ loadFailed: string;
503
+ pagination: {
504
+ showing: string;
505
+ page: string;
506
+ previous: string;
507
+ next: string;
508
+ };
509
+ };
510
+ paymentsPage: {
511
+ title: string;
512
+ description: string;
513
+ searchPlaceholder: string;
514
+ actions: {
515
+ recordPayment: string;
516
+ };
517
+ kindLabels: {
518
+ customer: string;
519
+ supplier: string;
520
+ };
521
+ filters: {
522
+ button: string;
523
+ kindLabel: string;
524
+ kindAll: string;
525
+ statusLabel: string;
526
+ statusAll: string;
527
+ methodLabel: string;
528
+ methodAll: string;
529
+ supplierLabel: string;
530
+ supplierAny: string;
531
+ supplierEmpty: string;
532
+ currencyLabel: string;
533
+ currencyAny: string;
534
+ paymentDateLabel: string;
535
+ dateAny: string;
536
+ clear: string;
537
+ };
538
+ columns: {
539
+ kind: string;
540
+ reference: string;
541
+ party: string;
542
+ amount: string;
543
+ status: string;
544
+ date: string;
545
+ method: string;
546
+ };
547
+ noValue: string;
548
+ empty: string;
549
+ loadFailed: string;
550
+ pagination: {
551
+ showing: string;
552
+ page: string;
553
+ previous: string;
554
+ next: string;
555
+ };
556
+ };
557
+ paymentDetailPage: {
558
+ actions: {
559
+ back: string;
560
+ viewInvoice: string;
561
+ viewBooking: string;
562
+ viewPerson: string;
563
+ viewOrganization: string;
564
+ viewSupplier: string;
565
+ };
566
+ titles: {
567
+ summary: string;
568
+ links: string;
569
+ metadata: string;
570
+ };
571
+ fields: {
572
+ amount: string;
573
+ baseAmount: string;
574
+ status: string;
575
+ method: string;
576
+ date: string;
577
+ reference: string;
578
+ notes: string;
579
+ kind: string;
580
+ paidBy: string;
581
+ paidTo: string;
582
+ organization: string;
583
+ invoice: string;
584
+ booking: string;
585
+ createdAt: string;
586
+ updatedAt: string;
587
+ };
588
+ states: {
589
+ loading: string;
590
+ loadFailed: string;
591
+ notFound: string;
592
+ noValue: string;
593
+ };
594
+ };
595
+ invoiceDetailPage: {
596
+ actions: {
597
+ back: string;
598
+ edit: string;
599
+ delete: string;
600
+ deleteTitle: string;
601
+ deleteDescription: string;
602
+ deleteOnlyDraft: string;
603
+ viewBooking: string;
604
+ viewPerson: string;
605
+ viewOrganization: string;
606
+ addLineItem: string;
607
+ editLineItem: string;
608
+ deleteLineItemShort: string;
609
+ deleteLineItemTitle: string;
610
+ deleteLineItemDescription: string;
611
+ recordPayment: string;
612
+ addCreditNote: string;
613
+ addNote: string;
614
+ };
615
+ titles: {
616
+ summary: string;
617
+ links: string;
618
+ lineItems: string;
619
+ payments: string;
620
+ creditNotes: string;
621
+ notes: string;
622
+ };
623
+ fields: {
624
+ currency: string;
625
+ subtotal: string;
626
+ tax: string;
627
+ total: string;
628
+ paid: string;
629
+ balanceDue: string;
630
+ status: string;
631
+ issueDate: string;
632
+ dueDate: string;
633
+ booking: string;
634
+ person: string;
635
+ organization: string;
636
+ notes: string;
637
+ createdAt: string;
638
+ updatedAt: string;
639
+ };
640
+ columns: {
641
+ description: string;
642
+ quantity: string;
643
+ unitPrice: string;
644
+ total: string;
645
+ taxRate: string;
646
+ };
647
+ states: {
648
+ loading: string;
649
+ loadFailed: string;
650
+ notFound: string;
651
+ noValue: string;
652
+ noLineItems: string;
653
+ noPayments: string;
654
+ noCreditNotes: string;
655
+ noNotes: string;
656
+ };
657
+ placeholders: {
658
+ note: string;
659
+ };
660
+ creditNoteStatusLabels: {
661
+ draft: string;
662
+ issued: string;
663
+ applied: string;
664
+ };
665
+ };
666
+ taxesPage: {
667
+ title: string;
668
+ description: string;
669
+ addTax: string;
670
+ empty: string;
671
+ inactive: string;
672
+ edit: string;
673
+ delete: string;
674
+ deleteConfirm: string;
675
+ editSheetTitle: string;
676
+ newSheetTitle: string;
677
+ taxClassBadge: string;
678
+ defaultRegimeLabel: string;
679
+ regimeOverridesLabel: string;
680
+ regimeOverrideCount: string;
681
+ taxClassSectionTitle: string;
682
+ taxClassSectionDescription: string;
683
+ defaultRegimeSectionTitle: string;
684
+ defaultRegimeSectionDescription: string;
685
+ regimeOverridesSectionTitle: string;
686
+ regimeOverridesSectionDescription: string;
687
+ addRegimeOverride: string;
688
+ removeRegimeOverride: string;
689
+ noRegimeOverrides: string;
690
+ appliesToLabel: string;
691
+ taxRegimeLabel: string;
692
+ appliesToBase: string;
693
+ appliesToAddon: string;
694
+ appliesToAccommodation: string;
695
+ appliesToAll: string;
696
+ taxClassLabelLabel: string;
697
+ taxClassLabelPlaceholder: string;
698
+ taxClassCodeLabel: string;
699
+ taxClassCodePlaceholder: string;
700
+ taxClassDescriptionLabel: string;
701
+ taxClassDescriptionPlaceholder: string;
702
+ regimeNameLabel: string;
703
+ regimeNamePlaceholder: string;
704
+ regimeCodeLabel: string;
705
+ rateLabel: string;
706
+ jurisdictionLabel: string;
707
+ legalReferenceLabel: string;
708
+ legalReferencePlaceholder: string;
709
+ regimeDescriptionLabel: string;
710
+ regimeDescriptionPlaceholder: string;
711
+ activeLabel: string;
712
+ cancel: string;
713
+ saveChanges: string;
714
+ createTax: string;
715
+ validationNameRequired: string;
716
+ validationRateInvalid: string;
717
+ saveFailed: string;
718
+ policyTitle: string;
719
+ policyDescription: string;
720
+ addPolicyProfile: string;
721
+ addPolicyRule: string;
722
+ policyEmpty: string;
723
+ policyRulesEmpty: string;
724
+ deletePolicyProfileConfirm: string;
725
+ deletePolicyRuleConfirm: string;
726
+ editPolicyProfileSheetTitle: string;
727
+ newPolicyProfileSheetTitle: string;
728
+ editPolicyRuleSheetTitle: string;
729
+ newPolicyRuleSheetTitle: string;
730
+ policyProfileNameLabel: string;
731
+ policyProfileNamePlaceholder: string;
732
+ policyProfileCodeLabel: string;
733
+ policyProfileCodePlaceholder: string;
734
+ policyProfileDescriptionLabel: string;
735
+ policyProfileDescriptionPlaceholder: string;
736
+ policyPriorityLabel: string;
737
+ policySideLabel: string;
738
+ policyRuleNameLabel: string;
739
+ policyRuleNamePlaceholder: string;
740
+ policyConditionLabel: string;
741
+ policyConditionSectionTitle: string;
742
+ policyConditionSectionDescription: string;
743
+ policyConditionModeLabel: string;
744
+ policyConditionAlways: string;
745
+ policyConditionAlwaysDescription: string;
746
+ policyConditionModeAll: string;
747
+ policyConditionModeAny: string;
748
+ addPolicyCondition: string;
749
+ removePolicyCondition: string;
750
+ policyFactLabel: string;
751
+ policyFactHasAccommodation: string;
752
+ policyFactAccommodationCountries: string;
753
+ policyOperatorLabel: string;
754
+ policyOperatorEquals: string;
755
+ policyOperatorContains: string;
756
+ policyValueLabel: string;
757
+ policyValueYes: string;
758
+ policyValueNo: string;
759
+ policyActionsLabel: string;
760
+ policySideSell: string;
761
+ policySideBuy: string;
762
+ createPolicyProfile: string;
763
+ createPolicyRule: string;
764
+ validationPolicyProfileNameRequired: string;
765
+ validationPolicyProfileRequired: string;
766
+ validationPolicyRuleNameRequired: string;
767
+ validationPolicyRuleRegimeRequired: string;
768
+ validationPolicyRulePriorityInvalid: string;
769
+ validationPolicyRuleConditionInvalid: string;
770
+ savePolicyProfileFailed: string;
771
+ savePolicyRuleFailed: string;
772
+ };
157
773
  supplierPaymentDialog: {
158
774
  title: string;
159
775
  fields: {
@@ -1 +1 @@
1
- {"version":3,"file":"provider.d.ts","sourceRoot":"","sources":["../../src/i18n/provider.tsx"],"names":[],"mappings":"AAEA,OAAO,EAIL,KAAK,sBAAsB,EAC3B,KAAK,gBAAgB,EAEtB,MAAM,gBAAgB,CAAA;AACvB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAGtC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAA;AAKtD,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGe,CAAA;AAEvD,MAAM,MAAM,yBAAyB,GAAG,sBAAsB,CAAC,iBAAiB,CAAC,CAAA;AASjF,wBAAgB,wBAAwB,CAAC,EACvC,MAAM,EACN,SAAS,GACV,EAAE;IACD,MAAM,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAA;IACjC,SAAS,CAAC,EAAE,yBAAyB,GAAG,IAAI,CAAA;CAC7C,qBAOA;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,MAAM,EACN,SAAS,GACV,EAAE;IACD,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAA;IAClC,SAAS,CAAC,EAAE,yBAAyB,GAAG,IAAI,CAAA;CAC7C,GAAG,gBAAgB,CAAC,iBAAiB,CAAC,CAStC;AAED,wBAAgB,yBAAyB,CAAC,EACxC,QAAQ,EACR,MAAM,EACN,SAAS,GACV,EAAE;IACD,QAAQ,EAAE,SAAS,CAAA;IACnB,MAAM,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAA;IACjC,SAAS,CAAC,EAAE,yBAAyB,GAAG,IAAI,CAAA;CAC7C,2CAWA;AAED,eAAO,MAAM,gBAAgB,2CAA2B,CAAA;AACxD,eAAO,MAAM,oBAAoB,yBAA+B,CAAA;AAEhE,wBAAgB,yBAAyB,wCAExC;AAED,wBAAgB,6BAA6B,sBAE5C"}
1
+ {"version":3,"file":"provider.d.ts","sourceRoot":"","sources":["../../src/i18n/provider.tsx"],"names":[],"mappings":"AAEA,OAAO,EAIL,KAAK,sBAAsB,EAC3B,KAAK,gBAAgB,EAEtB,MAAM,gBAAgB,CAAA;AACvB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAGtC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAA;AAKtD,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGe,CAAA;AAEvD,MAAM,MAAM,yBAAyB,GAAG,sBAAsB,CAAC,iBAAiB,CAAC,CAAA;AASjF,wBAAgB,wBAAwB,CAAC,EACvC,MAAM,EACN,SAAS,GACV,EAAE;IACD,MAAM,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAA;IACjC,SAAS,CAAC,EAAE,yBAAyB,GAAG,IAAI,CAAA;CAC7C,qBAOA;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,MAAM,EACN,SAAS,GACV,EAAE;IACD,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAA;IAClC,SAAS,CAAC,EAAE,yBAAyB,GAAG,IAAI,CAAA;CAC7C,GAAG,gBAAgB,CAAC,iBAAiB,CAAC,CAStC;AAED,wBAAgB,yBAAyB,CAAC,EACxC,QAAQ,EACR,MAAM,EACN,SAAS,GACV,EAAE;IACD,QAAQ,EAAE,SAAS,CAAA;IACnB,MAAM,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAA;IACjC,SAAS,CAAC,EAAE,yBAAyB,GAAG,IAAI,CAAA;CAC7C,2CAWA;AAED,eAAO,MAAM,gBAAgB,2CAA2B,CAAA;AACxD,eAAO,MAAM,oBAAoB,yBAA+B,CAAA;AAEhE,wBAAgB,yBAAyB,wCAExC;AAED,wBAAgB,6BAA6B,sBAE5C"}