@voyantjs/products-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.
- package/README.md +11 -0
- package/dist/components/product-categories-page.d.ts +7 -0
- package/dist/components/product-categories-page.d.ts.map +1 -0
- package/dist/components/product-categories-page.js +9 -0
- package/dist/components/product-detail-page.d.ts +63 -0
- package/dist/components/product-detail-page.d.ts.map +1 -0
- package/dist/components/product-detail-page.js +159 -0
- package/dist/components/product-dialog.d.ts +9 -0
- package/dist/components/product-dialog.d.ts.map +1 -0
- package/dist/components/product-dialog.js +13 -0
- package/dist/components/product-form.d.ts +14 -0
- package/dist/components/product-form.d.ts.map +1 -0
- package/dist/components/product-form.js +121 -0
- package/dist/components/product-list.d.ts +7 -0
- package/dist/components/product-list.d.ts.map +1 -0
- package/dist/components/product-list.js +154 -0
- package/dist/components/product-tags-page.d.ts +7 -0
- package/dist/components/product-tags-page.d.ts.map +1 -0
- package/dist/components/product-tags-page.js +9 -0
- package/dist/components/product-types-page.d.ts +6 -0
- package/dist/components/product-types-page.d.ts.map +1 -0
- package/dist/components/product-types-page.js +103 -0
- package/dist/components/products-page.d.ts +8 -0
- package/dist/components/products-page.d.ts.map +1 -0
- package/dist/components/products-page.js +8 -0
- package/dist/i18n/en.d.ts +200 -0
- package/dist/i18n/en.d.ts.map +1 -1
- package/dist/i18n/en.js +200 -0
- package/dist/i18n/messages.d.ts +191 -0
- package/dist/i18n/messages.d.ts.map +1 -1
- package/dist/i18n/provider.d.ts +400 -0
- package/dist/i18n/provider.d.ts.map +1 -1
- package/dist/i18n/ro.d.ts +200 -0
- package/dist/i18n/ro.d.ts.map +1 -1
- package/dist/i18n/ro.js +200 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +8 -0
- package/package.json +23 -19
package/dist/i18n/provider.d.ts
CHANGED
|
@@ -33,6 +33,20 @@ export declare const productsUiMessageDefinitions: {
|
|
|
33
33
|
active: string;
|
|
34
34
|
archived: string;
|
|
35
35
|
};
|
|
36
|
+
productStatusLabels: {
|
|
37
|
+
draft: string;
|
|
38
|
+
active: string;
|
|
39
|
+
archived: string;
|
|
40
|
+
};
|
|
41
|
+
productBookingModeLabels: {
|
|
42
|
+
date: string;
|
|
43
|
+
date_time: string;
|
|
44
|
+
open: string;
|
|
45
|
+
stay: string;
|
|
46
|
+
transfer: string;
|
|
47
|
+
itinerary: string;
|
|
48
|
+
other: string;
|
|
49
|
+
};
|
|
36
50
|
};
|
|
37
51
|
comboboxes: {
|
|
38
52
|
productCategory: {
|
|
@@ -44,6 +58,161 @@ export declare const productsUiMessageDefinitions: {
|
|
|
44
58
|
empty: string;
|
|
45
59
|
};
|
|
46
60
|
};
|
|
61
|
+
productCategoriesPage: {
|
|
62
|
+
title: string;
|
|
63
|
+
description: string;
|
|
64
|
+
};
|
|
65
|
+
productsPage: {
|
|
66
|
+
title: string;
|
|
67
|
+
description: string;
|
|
68
|
+
};
|
|
69
|
+
productDetailPage: {
|
|
70
|
+
actions: {
|
|
71
|
+
back: string;
|
|
72
|
+
edit: string;
|
|
73
|
+
delete: string;
|
|
74
|
+
createBooking: string;
|
|
75
|
+
addItinerary: string;
|
|
76
|
+
editItinerary: string;
|
|
77
|
+
deleteItinerary: string;
|
|
78
|
+
addDay: string;
|
|
79
|
+
};
|
|
80
|
+
tabs: {
|
|
81
|
+
overview: string;
|
|
82
|
+
media: string;
|
|
83
|
+
itinerary: string;
|
|
84
|
+
options: string;
|
|
85
|
+
versions: string;
|
|
86
|
+
};
|
|
87
|
+
sections: {
|
|
88
|
+
overview: {
|
|
89
|
+
title: string;
|
|
90
|
+
description: string;
|
|
91
|
+
};
|
|
92
|
+
details: {
|
|
93
|
+
title: string;
|
|
94
|
+
description: string;
|
|
95
|
+
};
|
|
96
|
+
commercial: {
|
|
97
|
+
title: string;
|
|
98
|
+
description: string;
|
|
99
|
+
};
|
|
100
|
+
itinerary: {
|
|
101
|
+
title: string;
|
|
102
|
+
description: string;
|
|
103
|
+
};
|
|
104
|
+
sidebar: {
|
|
105
|
+
title: string;
|
|
106
|
+
description: string;
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
fields: {
|
|
110
|
+
status: string;
|
|
111
|
+
bookingMode: string;
|
|
112
|
+
visibility: string;
|
|
113
|
+
capacityMode: string;
|
|
114
|
+
timezone: string;
|
|
115
|
+
productType: string;
|
|
116
|
+
facility: string;
|
|
117
|
+
taxClass: string;
|
|
118
|
+
sellAmount: string;
|
|
119
|
+
costAmount: string;
|
|
120
|
+
margin: string;
|
|
121
|
+
pax: string;
|
|
122
|
+
startDate: string;
|
|
123
|
+
endDate: string;
|
|
124
|
+
reservationTimeout: string;
|
|
125
|
+
tags: string;
|
|
126
|
+
createdAt: string;
|
|
127
|
+
updatedAt: string;
|
|
128
|
+
};
|
|
129
|
+
states: {
|
|
130
|
+
loading: string;
|
|
131
|
+
loadFailed: string;
|
|
132
|
+
notFoundTitle: string;
|
|
133
|
+
notFoundDescription: string;
|
|
134
|
+
noDescription: string;
|
|
135
|
+
noItineraries: string;
|
|
136
|
+
noDays: string;
|
|
137
|
+
deleteConfirm: string;
|
|
138
|
+
deleteItineraryConfirm: string;
|
|
139
|
+
deleteDayConfirm: string;
|
|
140
|
+
deleteFailed: string;
|
|
141
|
+
minutes: string;
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
productDialog: {
|
|
145
|
+
titles: {
|
|
146
|
+
create: string;
|
|
147
|
+
edit: string;
|
|
148
|
+
};
|
|
149
|
+
descriptions: {
|
|
150
|
+
create: string;
|
|
151
|
+
edit: string;
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
productForm: {
|
|
155
|
+
fields: {
|
|
156
|
+
name: string;
|
|
157
|
+
description: string;
|
|
158
|
+
tags: string;
|
|
159
|
+
status: string;
|
|
160
|
+
bookingMode: string;
|
|
161
|
+
productType: string;
|
|
162
|
+
sellCurrency: string;
|
|
163
|
+
sellAmount: string;
|
|
164
|
+
costAmount: string;
|
|
165
|
+
};
|
|
166
|
+
placeholders: {
|
|
167
|
+
name: string;
|
|
168
|
+
description: string;
|
|
169
|
+
tagInput: string;
|
|
170
|
+
productTypeSearch: string;
|
|
171
|
+
currencySearch: string;
|
|
172
|
+
amount: string;
|
|
173
|
+
};
|
|
174
|
+
validation: {
|
|
175
|
+
nameRequired: string;
|
|
176
|
+
sellCurrencyInvalid: string;
|
|
177
|
+
saveFailed: string;
|
|
178
|
+
};
|
|
179
|
+
actions: {
|
|
180
|
+
cancel: string;
|
|
181
|
+
saving: string;
|
|
182
|
+
create: string;
|
|
183
|
+
saveChanges: string;
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
productList: {
|
|
187
|
+
searchPlaceholder: string;
|
|
188
|
+
newProduct: string;
|
|
189
|
+
filters: {
|
|
190
|
+
button: string;
|
|
191
|
+
statusLabel: string;
|
|
192
|
+
statusAll: string;
|
|
193
|
+
dateLabel: string;
|
|
194
|
+
datePlaceholder: string;
|
|
195
|
+
paxLabel: string;
|
|
196
|
+
sellAmountLabel: string;
|
|
197
|
+
min: string;
|
|
198
|
+
max: string;
|
|
199
|
+
clear: string;
|
|
200
|
+
};
|
|
201
|
+
columns: {
|
|
202
|
+
name: string;
|
|
203
|
+
status: string;
|
|
204
|
+
sellAmount: string;
|
|
205
|
+
pax: string;
|
|
206
|
+
startDate: string;
|
|
207
|
+
};
|
|
208
|
+
loadFailed: string;
|
|
209
|
+
empty: string;
|
|
210
|
+
noValue: string;
|
|
211
|
+
paginationShowing: string;
|
|
212
|
+
paginationPage: string;
|
|
213
|
+
paginationPrevious: string;
|
|
214
|
+
paginationNext: string;
|
|
215
|
+
};
|
|
47
216
|
productCategoryDialog: {
|
|
48
217
|
titles: {
|
|
49
218
|
create: string;
|
|
@@ -134,6 +303,37 @@ export declare const productsUiMessageDefinitions: {
|
|
|
134
303
|
deleteConfirm: string;
|
|
135
304
|
showingSummary: string;
|
|
136
305
|
};
|
|
306
|
+
productTagsPage: {
|
|
307
|
+
title: string;
|
|
308
|
+
description: string;
|
|
309
|
+
};
|
|
310
|
+
productTypesPage: {
|
|
311
|
+
title: string;
|
|
312
|
+
description: string;
|
|
313
|
+
addType: string;
|
|
314
|
+
empty: string;
|
|
315
|
+
edit: string;
|
|
316
|
+
delete: string;
|
|
317
|
+
deleteConfirm: string;
|
|
318
|
+
showingSummary: string;
|
|
319
|
+
editSheetTitle: string;
|
|
320
|
+
newSheetTitle: string;
|
|
321
|
+
nameLabel: string;
|
|
322
|
+
namePlaceholder: string;
|
|
323
|
+
codeLabel: string;
|
|
324
|
+
codePlaceholder: string;
|
|
325
|
+
descriptionLabel: string;
|
|
326
|
+
descriptionPlaceholder: string;
|
|
327
|
+
sortOrderLabel: string;
|
|
328
|
+
activeLabel: string;
|
|
329
|
+
cancel: string;
|
|
330
|
+
saveChanges: string;
|
|
331
|
+
createType: string;
|
|
332
|
+
validation: {
|
|
333
|
+
nameRequired: string;
|
|
334
|
+
codeRequired: string;
|
|
335
|
+
};
|
|
336
|
+
};
|
|
137
337
|
productMediaDialog: {
|
|
138
338
|
titles: {
|
|
139
339
|
create: string;
|
|
@@ -485,6 +685,20 @@ export declare const productsUiMessageDefinitions: {
|
|
|
485
685
|
active: string;
|
|
486
686
|
archived: string;
|
|
487
687
|
};
|
|
688
|
+
productStatusLabels: {
|
|
689
|
+
draft: string;
|
|
690
|
+
active: string;
|
|
691
|
+
archived: string;
|
|
692
|
+
};
|
|
693
|
+
productBookingModeLabels: {
|
|
694
|
+
date: string;
|
|
695
|
+
date_time: string;
|
|
696
|
+
open: string;
|
|
697
|
+
stay: string;
|
|
698
|
+
transfer: string;
|
|
699
|
+
itinerary: string;
|
|
700
|
+
other: string;
|
|
701
|
+
};
|
|
488
702
|
};
|
|
489
703
|
comboboxes: {
|
|
490
704
|
productCategory: {
|
|
@@ -496,6 +710,161 @@ export declare const productsUiMessageDefinitions: {
|
|
|
496
710
|
empty: string;
|
|
497
711
|
};
|
|
498
712
|
};
|
|
713
|
+
productCategoriesPage: {
|
|
714
|
+
title: string;
|
|
715
|
+
description: string;
|
|
716
|
+
};
|
|
717
|
+
productsPage: {
|
|
718
|
+
title: string;
|
|
719
|
+
description: string;
|
|
720
|
+
};
|
|
721
|
+
productDetailPage: {
|
|
722
|
+
actions: {
|
|
723
|
+
back: string;
|
|
724
|
+
edit: string;
|
|
725
|
+
delete: string;
|
|
726
|
+
createBooking: string;
|
|
727
|
+
addItinerary: string;
|
|
728
|
+
editItinerary: string;
|
|
729
|
+
deleteItinerary: string;
|
|
730
|
+
addDay: string;
|
|
731
|
+
};
|
|
732
|
+
tabs: {
|
|
733
|
+
overview: string;
|
|
734
|
+
media: string;
|
|
735
|
+
itinerary: string;
|
|
736
|
+
options: string;
|
|
737
|
+
versions: string;
|
|
738
|
+
};
|
|
739
|
+
sections: {
|
|
740
|
+
overview: {
|
|
741
|
+
title: string;
|
|
742
|
+
description: string;
|
|
743
|
+
};
|
|
744
|
+
details: {
|
|
745
|
+
title: string;
|
|
746
|
+
description: string;
|
|
747
|
+
};
|
|
748
|
+
commercial: {
|
|
749
|
+
title: string;
|
|
750
|
+
description: string;
|
|
751
|
+
};
|
|
752
|
+
itinerary: {
|
|
753
|
+
title: string;
|
|
754
|
+
description: string;
|
|
755
|
+
};
|
|
756
|
+
sidebar: {
|
|
757
|
+
title: string;
|
|
758
|
+
description: string;
|
|
759
|
+
};
|
|
760
|
+
};
|
|
761
|
+
fields: {
|
|
762
|
+
status: string;
|
|
763
|
+
bookingMode: string;
|
|
764
|
+
visibility: string;
|
|
765
|
+
capacityMode: string;
|
|
766
|
+
timezone: string;
|
|
767
|
+
productType: string;
|
|
768
|
+
facility: string;
|
|
769
|
+
taxClass: string;
|
|
770
|
+
sellAmount: string;
|
|
771
|
+
costAmount: string;
|
|
772
|
+
margin: string;
|
|
773
|
+
pax: string;
|
|
774
|
+
startDate: string;
|
|
775
|
+
endDate: string;
|
|
776
|
+
reservationTimeout: string;
|
|
777
|
+
tags: string;
|
|
778
|
+
createdAt: string;
|
|
779
|
+
updatedAt: string;
|
|
780
|
+
};
|
|
781
|
+
states: {
|
|
782
|
+
loading: string;
|
|
783
|
+
loadFailed: string;
|
|
784
|
+
notFoundTitle: string;
|
|
785
|
+
notFoundDescription: string;
|
|
786
|
+
noDescription: string;
|
|
787
|
+
noItineraries: string;
|
|
788
|
+
noDays: string;
|
|
789
|
+
deleteConfirm: string;
|
|
790
|
+
deleteItineraryConfirm: string;
|
|
791
|
+
deleteDayConfirm: string;
|
|
792
|
+
deleteFailed: string;
|
|
793
|
+
minutes: string;
|
|
794
|
+
};
|
|
795
|
+
};
|
|
796
|
+
productDialog: {
|
|
797
|
+
titles: {
|
|
798
|
+
create: string;
|
|
799
|
+
edit: string;
|
|
800
|
+
};
|
|
801
|
+
descriptions: {
|
|
802
|
+
create: string;
|
|
803
|
+
edit: string;
|
|
804
|
+
};
|
|
805
|
+
};
|
|
806
|
+
productForm: {
|
|
807
|
+
fields: {
|
|
808
|
+
name: string;
|
|
809
|
+
description: string;
|
|
810
|
+
tags: string;
|
|
811
|
+
status: string;
|
|
812
|
+
bookingMode: string;
|
|
813
|
+
productType: string;
|
|
814
|
+
sellCurrency: string;
|
|
815
|
+
sellAmount: string;
|
|
816
|
+
costAmount: string;
|
|
817
|
+
};
|
|
818
|
+
placeholders: {
|
|
819
|
+
name: string;
|
|
820
|
+
description: string;
|
|
821
|
+
tagInput: string;
|
|
822
|
+
productTypeSearch: string;
|
|
823
|
+
currencySearch: string;
|
|
824
|
+
amount: string;
|
|
825
|
+
};
|
|
826
|
+
validation: {
|
|
827
|
+
nameRequired: string;
|
|
828
|
+
sellCurrencyInvalid: string;
|
|
829
|
+
saveFailed: string;
|
|
830
|
+
};
|
|
831
|
+
actions: {
|
|
832
|
+
cancel: string;
|
|
833
|
+
saving: string;
|
|
834
|
+
create: string;
|
|
835
|
+
saveChanges: string;
|
|
836
|
+
};
|
|
837
|
+
};
|
|
838
|
+
productList: {
|
|
839
|
+
searchPlaceholder: string;
|
|
840
|
+
newProduct: string;
|
|
841
|
+
filters: {
|
|
842
|
+
button: string;
|
|
843
|
+
statusLabel: string;
|
|
844
|
+
statusAll: string;
|
|
845
|
+
dateLabel: string;
|
|
846
|
+
datePlaceholder: string;
|
|
847
|
+
paxLabel: string;
|
|
848
|
+
sellAmountLabel: string;
|
|
849
|
+
min: string;
|
|
850
|
+
max: string;
|
|
851
|
+
clear: string;
|
|
852
|
+
};
|
|
853
|
+
columns: {
|
|
854
|
+
name: string;
|
|
855
|
+
status: string;
|
|
856
|
+
sellAmount: string;
|
|
857
|
+
pax: string;
|
|
858
|
+
startDate: string;
|
|
859
|
+
};
|
|
860
|
+
loadFailed: string;
|
|
861
|
+
empty: string;
|
|
862
|
+
noValue: string;
|
|
863
|
+
paginationShowing: string;
|
|
864
|
+
paginationPage: string;
|
|
865
|
+
paginationPrevious: string;
|
|
866
|
+
paginationNext: string;
|
|
867
|
+
};
|
|
499
868
|
productCategoryDialog: {
|
|
500
869
|
titles: {
|
|
501
870
|
create: string;
|
|
@@ -586,6 +955,37 @@ export declare const productsUiMessageDefinitions: {
|
|
|
586
955
|
deleteConfirm: string;
|
|
587
956
|
showingSummary: string;
|
|
588
957
|
};
|
|
958
|
+
productTagsPage: {
|
|
959
|
+
title: string;
|
|
960
|
+
description: string;
|
|
961
|
+
};
|
|
962
|
+
productTypesPage: {
|
|
963
|
+
title: string;
|
|
964
|
+
description: string;
|
|
965
|
+
addType: string;
|
|
966
|
+
empty: string;
|
|
967
|
+
edit: string;
|
|
968
|
+
delete: string;
|
|
969
|
+
deleteConfirm: string;
|
|
970
|
+
showingSummary: string;
|
|
971
|
+
editSheetTitle: string;
|
|
972
|
+
newSheetTitle: string;
|
|
973
|
+
nameLabel: string;
|
|
974
|
+
namePlaceholder: string;
|
|
975
|
+
codeLabel: string;
|
|
976
|
+
codePlaceholder: string;
|
|
977
|
+
descriptionLabel: string;
|
|
978
|
+
descriptionPlaceholder: string;
|
|
979
|
+
sortOrderLabel: string;
|
|
980
|
+
activeLabel: string;
|
|
981
|
+
cancel: string;
|
|
982
|
+
saveChanges: string;
|
|
983
|
+
createType: string;
|
|
984
|
+
validation: {
|
|
985
|
+
nameRequired: string;
|
|
986
|
+
codeRequired: string;
|
|
987
|
+
};
|
|
988
|
+
};
|
|
589
989
|
productMediaDialog: {
|
|
590
990
|
titles: {
|
|
591
991
|
create: string;
|
|
@@ -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,kBAAkB,EAAE,MAAM,eAAe,CAAA;AAKvD,eAAO,MAAM,4BAA4B
|
|
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,kBAAkB,EAAE,MAAM,eAAe,CAAA;AAKvD,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGe,CAAA;AAExD,MAAM,MAAM,0BAA0B,GAAG,sBAAsB,CAAC,kBAAkB,CAAC,CAAA;AASnF,wBAAgB,yBAAyB,CAAC,EACxC,MAAM,EACN,SAAS,GACV,EAAE;IACD,MAAM,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAA;IACjC,SAAS,CAAC,EAAE,0BAA0B,GAAG,IAAI,CAAA;CAC9C,sBAOA;AAED,wBAAgB,iBAAiB,CAAC,EAChC,MAAM,EACN,SAAS,GACV,EAAE;IACD,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAA;IAClC,SAAS,CAAC,EAAE,0BAA0B,GAAG,IAAI,CAAA;CAC9C,GAAG,gBAAgB,CAAC,kBAAkB,CAAC,CASvC;AAED,wBAAgB,0BAA0B,CAAC,EACzC,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,0BAA0B,GAAG,IAAI,CAAA;CAC9C,2CAWA;AAED,eAAO,MAAM,iBAAiB,4CAA4B,CAAA;AAC1D,eAAO,MAAM,qBAAqB,0BAAgC,CAAA;AAElE,wBAAgB,0BAA0B,yCAEzC;AAED,wBAAgB,8BAA8B,uBAE7C"}
|
package/dist/i18n/ro.d.ts
CHANGED
|
@@ -29,6 +29,20 @@ export declare const productsUiRo: {
|
|
|
29
29
|
active: string;
|
|
30
30
|
archived: string;
|
|
31
31
|
};
|
|
32
|
+
productStatusLabels: {
|
|
33
|
+
draft: string;
|
|
34
|
+
active: string;
|
|
35
|
+
archived: string;
|
|
36
|
+
};
|
|
37
|
+
productBookingModeLabels: {
|
|
38
|
+
date: string;
|
|
39
|
+
date_time: string;
|
|
40
|
+
open: string;
|
|
41
|
+
stay: string;
|
|
42
|
+
transfer: string;
|
|
43
|
+
itinerary: string;
|
|
44
|
+
other: string;
|
|
45
|
+
};
|
|
32
46
|
};
|
|
33
47
|
comboboxes: {
|
|
34
48
|
productCategory: {
|
|
@@ -40,6 +54,161 @@ export declare const productsUiRo: {
|
|
|
40
54
|
empty: string;
|
|
41
55
|
};
|
|
42
56
|
};
|
|
57
|
+
productCategoriesPage: {
|
|
58
|
+
title: string;
|
|
59
|
+
description: string;
|
|
60
|
+
};
|
|
61
|
+
productsPage: {
|
|
62
|
+
title: string;
|
|
63
|
+
description: string;
|
|
64
|
+
};
|
|
65
|
+
productDetailPage: {
|
|
66
|
+
actions: {
|
|
67
|
+
back: string;
|
|
68
|
+
edit: string;
|
|
69
|
+
delete: string;
|
|
70
|
+
createBooking: string;
|
|
71
|
+
addItinerary: string;
|
|
72
|
+
editItinerary: string;
|
|
73
|
+
deleteItinerary: string;
|
|
74
|
+
addDay: string;
|
|
75
|
+
};
|
|
76
|
+
tabs: {
|
|
77
|
+
overview: string;
|
|
78
|
+
media: string;
|
|
79
|
+
itinerary: string;
|
|
80
|
+
options: string;
|
|
81
|
+
versions: string;
|
|
82
|
+
};
|
|
83
|
+
sections: {
|
|
84
|
+
overview: {
|
|
85
|
+
title: string;
|
|
86
|
+
description: string;
|
|
87
|
+
};
|
|
88
|
+
details: {
|
|
89
|
+
title: string;
|
|
90
|
+
description: string;
|
|
91
|
+
};
|
|
92
|
+
commercial: {
|
|
93
|
+
title: string;
|
|
94
|
+
description: string;
|
|
95
|
+
};
|
|
96
|
+
itinerary: {
|
|
97
|
+
title: string;
|
|
98
|
+
description: string;
|
|
99
|
+
};
|
|
100
|
+
sidebar: {
|
|
101
|
+
title: string;
|
|
102
|
+
description: string;
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
fields: {
|
|
106
|
+
status: string;
|
|
107
|
+
bookingMode: string;
|
|
108
|
+
visibility: string;
|
|
109
|
+
capacityMode: string;
|
|
110
|
+
timezone: string;
|
|
111
|
+
productType: string;
|
|
112
|
+
facility: string;
|
|
113
|
+
taxClass: string;
|
|
114
|
+
sellAmount: string;
|
|
115
|
+
costAmount: string;
|
|
116
|
+
margin: string;
|
|
117
|
+
pax: string;
|
|
118
|
+
startDate: string;
|
|
119
|
+
endDate: string;
|
|
120
|
+
reservationTimeout: string;
|
|
121
|
+
tags: string;
|
|
122
|
+
createdAt: string;
|
|
123
|
+
updatedAt: string;
|
|
124
|
+
};
|
|
125
|
+
states: {
|
|
126
|
+
loading: string;
|
|
127
|
+
loadFailed: string;
|
|
128
|
+
notFoundTitle: string;
|
|
129
|
+
notFoundDescription: string;
|
|
130
|
+
noDescription: string;
|
|
131
|
+
noItineraries: string;
|
|
132
|
+
noDays: string;
|
|
133
|
+
deleteConfirm: string;
|
|
134
|
+
deleteItineraryConfirm: string;
|
|
135
|
+
deleteDayConfirm: string;
|
|
136
|
+
deleteFailed: string;
|
|
137
|
+
minutes: string;
|
|
138
|
+
};
|
|
139
|
+
};
|
|
140
|
+
productDialog: {
|
|
141
|
+
titles: {
|
|
142
|
+
create: string;
|
|
143
|
+
edit: string;
|
|
144
|
+
};
|
|
145
|
+
descriptions: {
|
|
146
|
+
create: string;
|
|
147
|
+
edit: string;
|
|
148
|
+
};
|
|
149
|
+
};
|
|
150
|
+
productForm: {
|
|
151
|
+
fields: {
|
|
152
|
+
name: string;
|
|
153
|
+
description: string;
|
|
154
|
+
tags: string;
|
|
155
|
+
status: string;
|
|
156
|
+
bookingMode: string;
|
|
157
|
+
productType: string;
|
|
158
|
+
sellCurrency: string;
|
|
159
|
+
sellAmount: string;
|
|
160
|
+
costAmount: string;
|
|
161
|
+
};
|
|
162
|
+
placeholders: {
|
|
163
|
+
name: string;
|
|
164
|
+
description: string;
|
|
165
|
+
tagInput: string;
|
|
166
|
+
productTypeSearch: string;
|
|
167
|
+
currencySearch: string;
|
|
168
|
+
amount: string;
|
|
169
|
+
};
|
|
170
|
+
validation: {
|
|
171
|
+
nameRequired: string;
|
|
172
|
+
sellCurrencyInvalid: string;
|
|
173
|
+
saveFailed: string;
|
|
174
|
+
};
|
|
175
|
+
actions: {
|
|
176
|
+
cancel: string;
|
|
177
|
+
saving: string;
|
|
178
|
+
create: string;
|
|
179
|
+
saveChanges: string;
|
|
180
|
+
};
|
|
181
|
+
};
|
|
182
|
+
productList: {
|
|
183
|
+
searchPlaceholder: string;
|
|
184
|
+
newProduct: string;
|
|
185
|
+
filters: {
|
|
186
|
+
button: string;
|
|
187
|
+
statusLabel: string;
|
|
188
|
+
statusAll: string;
|
|
189
|
+
dateLabel: string;
|
|
190
|
+
datePlaceholder: string;
|
|
191
|
+
paxLabel: string;
|
|
192
|
+
sellAmountLabel: string;
|
|
193
|
+
min: string;
|
|
194
|
+
max: string;
|
|
195
|
+
clear: string;
|
|
196
|
+
};
|
|
197
|
+
columns: {
|
|
198
|
+
name: string;
|
|
199
|
+
status: string;
|
|
200
|
+
sellAmount: string;
|
|
201
|
+
pax: string;
|
|
202
|
+
startDate: string;
|
|
203
|
+
};
|
|
204
|
+
loadFailed: string;
|
|
205
|
+
empty: string;
|
|
206
|
+
noValue: string;
|
|
207
|
+
paginationShowing: string;
|
|
208
|
+
paginationPage: string;
|
|
209
|
+
paginationPrevious: string;
|
|
210
|
+
paginationNext: string;
|
|
211
|
+
};
|
|
43
212
|
productCategoryDialog: {
|
|
44
213
|
titles: {
|
|
45
214
|
create: string;
|
|
@@ -130,6 +299,37 @@ export declare const productsUiRo: {
|
|
|
130
299
|
deleteConfirm: string;
|
|
131
300
|
showingSummary: string;
|
|
132
301
|
};
|
|
302
|
+
productTagsPage: {
|
|
303
|
+
title: string;
|
|
304
|
+
description: string;
|
|
305
|
+
};
|
|
306
|
+
productTypesPage: {
|
|
307
|
+
title: string;
|
|
308
|
+
description: string;
|
|
309
|
+
addType: string;
|
|
310
|
+
empty: string;
|
|
311
|
+
edit: string;
|
|
312
|
+
delete: string;
|
|
313
|
+
deleteConfirm: string;
|
|
314
|
+
showingSummary: string;
|
|
315
|
+
editSheetTitle: string;
|
|
316
|
+
newSheetTitle: string;
|
|
317
|
+
nameLabel: string;
|
|
318
|
+
namePlaceholder: string;
|
|
319
|
+
codeLabel: string;
|
|
320
|
+
codePlaceholder: string;
|
|
321
|
+
descriptionLabel: string;
|
|
322
|
+
descriptionPlaceholder: string;
|
|
323
|
+
sortOrderLabel: string;
|
|
324
|
+
activeLabel: string;
|
|
325
|
+
cancel: string;
|
|
326
|
+
saveChanges: string;
|
|
327
|
+
createType: string;
|
|
328
|
+
validation: {
|
|
329
|
+
nameRequired: string;
|
|
330
|
+
codeRequired: string;
|
|
331
|
+
};
|
|
332
|
+
};
|
|
133
333
|
productMediaDialog: {
|
|
134
334
|
titles: {
|
|
135
335
|
create: string;
|
package/dist/i18n/ro.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ro.d.ts","sourceRoot":"","sources":["../../src/i18n/ro.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"ro.d.ts","sourceRoot":"","sources":["../../src/i18n/ro.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+oBK,CAAA"}
|