@atomsolution/sdk-merchant 1.0.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 +93 -0
- package/dist/App.d.ts +3 -0
- package/dist/assets/locales/en/common.json.d.ts +18 -0
- package/dist/assets/locales/en/digistore-id.json.d.ts +32 -0
- package/dist/assets/locales/en/download-sample.json.d.ts +59 -0
- package/dist/assets/locales/en/file.json.d.ts +48 -0
- package/dist/assets/locales/en/form.json.d.ts +85 -0
- package/dist/assets/locales/en/merchant-batch-create-form.json.d.ts +92 -0
- package/dist/assets/locales/en/table.json.d.ts +36 -0
- package/dist/assets/locales/vi/common.json.d.ts +18 -0
- package/dist/assets/locales/vi/digistore-id.json.d.ts +32 -0
- package/dist/assets/locales/vi/download-sample.json.d.ts +59 -0
- package/dist/assets/locales/vi/file.json.d.ts +48 -0
- package/dist/assets/locales/vi/form.json.d.ts +85 -0
- package/dist/assets/locales/vi/merchant-batch-create-form.json.d.ts +92 -0
- package/dist/assets/locales/vi/table.json.d.ts +35 -0
- package/dist/bvbLogo.png +0 -0
- package/dist/components/MerchantBatchCreateForm/DownloadSampleFile.d.ts +1 -0
- package/dist/components/MerchantBatchCreateForm/FileUpload/fileUploadButton.d.ts +6 -0
- package/dist/components/MerchantBatchCreateForm/FileUpload/sheetDropDown.d.ts +7 -0
- package/dist/components/MerchantBatchCreateForm/Layout/Layout.d.ts +12 -0
- package/dist/components/MerchantBatchCreateForm/ProductInfoPreview/ProductPreviewTable/CategoryCell.d.ts +8 -0
- package/dist/components/MerchantBatchCreateForm/ProductInfoPreview/ProductPreviewTable/UploadImageCell.d.ts +9 -0
- package/dist/components/MerchantBatchCreateForm/ProductInfoPreview/ProductPreviewTable/index.d.ts +8 -0
- package/dist/components/MerchantBatchCreateForm/ProductInfoPreview/index.d.ts +2 -0
- package/dist/components/MerchantBatchCreateForm/fieldMappingPopup.d.ts +8 -0
- package/dist/components/MerchantBatchCreateForm/fileUploadTab.d.ts +1 -0
- package/dist/components/MerchantBatchCreateForm/hook/useFileValidator.d.ts +8 -0
- package/dist/components/MerchantBatchCreateForm/index.d.ts +1 -0
- package/dist/components/MerchantBatchCreateForm/mergeAndCheckData.d.ts +1 -0
- package/dist/components/MerchantBatchCreateForm/modals/CreateProductConfirmModal.d.ts +10 -0
- package/dist/components/MerchantBatchCreateForm/modals/CreateProductSuccessModal.d.ts +12 -0
- package/dist/components/MerchantBatchCreateForm/modals/DeleteImageConfirmModal.d.ts +8 -0
- package/dist/components/MerchantBatchCreateForm/modals/UpdateProductModal/CategoriesInput/index.d.ts +9 -0
- package/dist/components/MerchantBatchCreateForm/modals/UpdateProductModal/UnitSelect/UnitSelectUI/DropdownContent/ActionButtons.d.ts +7 -0
- package/dist/components/MerchantBatchCreateForm/modals/UpdateProductModal/UnitSelect/UnitSelectUI/DropdownContent/AddOptionComponent.d.ts +13 -0
- package/dist/components/MerchantBatchCreateForm/modals/UpdateProductModal/UnitSelect/UnitSelectUI/DropdownContent/OptionItem/EditOptionComponent.d.ts +14 -0
- package/dist/components/MerchantBatchCreateForm/modals/UpdateProductModal/UnitSelect/UnitSelectUI/DropdownContent/OptionItem/index.d.ts +18 -0
- package/dist/components/MerchantBatchCreateForm/modals/UpdateProductModal/UnitSelect/UnitSelectUI/DropdownContent/SelectButton.d.ts +11 -0
- package/dist/components/MerchantBatchCreateForm/modals/UpdateProductModal/UnitSelect/UnitSelectUI/DropdownContent/index.d.ts +22 -0
- package/dist/components/MerchantBatchCreateForm/modals/UpdateProductModal/UnitSelect/UnitSelectUI/index.d.ts +4 -0
- package/dist/components/MerchantBatchCreateForm/modals/UpdateProductModal/UnitSelect/UnitSelectUI/utils/LocalStorage.d.ts +6 -0
- package/dist/components/MerchantBatchCreateForm/modals/UpdateProductModal/UnitSelect/UnitSelectUI/utils/validation.d.ts +7 -0
- package/dist/components/MerchantBatchCreateForm/modals/UpdateProductModal/UnitSelect/index.d.ts +10 -0
- package/dist/components/MerchantBatchCreateForm/modals/UpdateProductModal/UploadImage.d.ts +12 -0
- package/dist/components/MerchantBatchCreateForm/modals/UpdateProductModal/index.d.ts +16 -0
- package/dist/components/MerchantBatchCreateForm/store/useMappingStore.d.ts +9 -0
- package/dist/components/MerchantBatchCreateForm/store/useUploadStore.d.ts +27 -0
- package/dist/components/MerchantBatchCreateForm/utils/download.d.ts +4 -0
- package/dist/components/MerchantBatchCreateForm/utils/upload.d.ts +5 -0
- package/dist/components/MerchantEdit/AddressFields.d.ts +16 -0
- package/dist/components/MerchantEdit/FileUpload.d.ts +13 -0
- package/dist/components/MerchantEdit/Header.d.ts +9 -0
- package/dist/components/MerchantEdit/UserTypeForm.d.ts +22 -0
- package/dist/components/MerchantEdit/index.d.ts +10 -0
- package/dist/components/MerchantRegistrationForm/AddressFields.d.ts +16 -0
- package/dist/components/MerchantRegistrationForm/FileUpload.d.ts +12 -0
- package/dist/components/MerchantRegistrationForm/Header.d.ts +9 -0
- package/dist/components/MerchantRegistrationForm/IndustrySelect.d.ts +8 -0
- package/dist/components/MerchantRegistrationForm/MerchantRegistrationForm.d.ts +37 -0
- package/dist/components/MerchantRegistrationForm/UserTypeForm.d.ts +21 -0
- package/dist/components/MerchantTable/index.d.ts +11 -0
- package/dist/components/MerchantTable/merchantTableAction.d.ts +8 -0
- package/dist/components/MerchantTable/merchantTableFilter.d.ts +16 -0
- package/dist/components/MerchantTable/merchantTableHeader.d.ts +6 -0
- package/dist/components/MerchantView/AddressFields.d.ts +16 -0
- package/dist/components/MerchantView/FileUpload.d.ts +13 -0
- package/dist/components/MerchantView/Header.d.ts +9 -0
- package/dist/components/MerchantView/UserTypeForm.d.ts +22 -0
- package/dist/components/MerchantView/index.d.ts +10 -0
- package/dist/components/NewAccountCreate/FormHeader.d.ts +8 -0
- package/dist/components/NewAccountCreate/Icon.d.ts +6 -0
- package/dist/components/NewAccountCreate/InputField.d.ts +21 -0
- package/dist/components/NewAccountCreate/PasswordRequirements.d.ts +6 -0
- package/dist/components/NewAccountCreate/RequirementItem.d.ts +6 -0
- package/dist/components/NewAccountCreate/SubmitButton.d.ts +11 -0
- package/dist/components/NewAccountCreate/index.d.ts +8 -0
- package/dist/components/NewAccountCreate/types.d.ts +7 -0
- package/dist/components/common/button.d.ts +11 -0
- package/dist/components/common/custom-toast/index.d.ts +6 -0
- package/dist/components/common/dataTable/dataTable.d.ts +25 -0
- package/dist/components/common/dataTable/pagination.d.ts +14 -0
- package/dist/components/common/dataTable/statusBadge.d.ts +9 -0
- package/dist/components/common/dataTable/tableBody.d.ts +8 -0
- package/dist/components/common/dataTable/tableHeader.d.ts +6 -0
- package/dist/components/common/dataTable/tableSkeleton.d.ts +7 -0
- package/dist/components/common/datePicker.d.ts +10 -0
- package/dist/components/common/dropdownMenu.d.ts +27 -0
- package/dist/components/common/dropdownMenuAbsolute.d.ts +4 -0
- package/dist/components/common/form/error-message.d.ts +14 -0
- package/dist/components/common/input.d.ts +3 -0
- package/dist/components/common/label.d.ts +6 -0
- package/dist/components/common/modals/ConfirmModal.d.ts +13 -0
- package/dist/components/common/modals/ExitConfirmGuard.d.ts +11 -0
- package/dist/components/common/modals/WrapModal.d.ts +9 -0
- package/dist/components/common/number-input.d.ts +5 -0
- package/dist/components/ui/button.d.ts +12 -0
- package/dist/components/ui/confirmModal.d.ts +10 -0
- package/dist/components/ui/error-modal.d.ts +8 -0
- package/dist/components/ui/input.d.ts +18 -0
- package/dist/components/ui/success-modal.d.ts +8 -0
- package/dist/configs/portalAxiosClient.d.ts +2 -0
- package/dist/configs/wesapAxiosClient.d.ts +2 -0
- package/dist/constants/merchant-batch-create-form.constant.d.ts +4 -0
- package/dist/fonts/inter/Inter_18pt-Bold.ttf +0 -0
- package/dist/fonts/inter/Inter_18pt-Medium.ttf +0 -0
- package/dist/fonts/inter/Inter_18pt-Regular.ttf +0 -0
- package/dist/fonts/inter/Inter_18pt-SemiBold.ttf +0 -0
- package/dist/hooks/use-address.d.ts +9 -0
- package/dist/hooks/use-create-merchant.d.ts +20 -0
- package/dist/hooks/use-edit-merchant.d.ts +20 -0
- package/dist/hooks/use-media-query.d.ts +1 -0
- package/dist/hooks/use-merchant-table.d.ts +13 -0
- package/dist/hooks/use-translation.d.ts +10 -0
- package/dist/hooks/useClickOutside.d.ts +3 -0
- package/dist/hooks/useDebounce.d.ts +1 -0
- package/dist/hooks/useMCCList.d.ts +6 -0
- package/dist/hooks/useMerchantDetail.d.ts +8 -0
- package/dist/hooks/usePasswordValidation.d.ts +9 -0
- package/dist/index.cjs +73887 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.esm.js +73871 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/main.d.ts +0 -0
- package/dist/provider/index.d.ts +5 -0
- package/dist/provider/toast-provider.d.ts +2 -0
- package/dist/services/MCCList.d.ts +2 -0
- package/dist/services/addressService.d.ts +10 -0
- package/dist/services/create-products.service.d.ts +6 -0
- package/dist/services/createDigistoreAccountService.d.ts +7 -0
- package/dist/services/editFormService.d.ts +5 -0
- package/dist/services/merchantFormService.d.ts +5 -0
- package/dist/services/merchantService.d.ts +3 -0
- package/dist/store/use-external-config.store.d.ts +10 -0
- package/dist/store/use-portal-api-config.store.d.ts +8 -0
- package/dist/store/use-unsaved-changes.store.d.ts +11 -0
- package/dist/store/use-wesap-api-config.store.d.ts +10 -0
- package/dist/style.css +2971 -0
- package/dist/types/MCCList.d.ts +5 -0
- package/dist/types/addressType.d.ts +17 -0
- package/dist/types/formData.d.ts +58 -0
- package/dist/types/global.d.ts +3 -0
- package/dist/types/merchant-batch-create-form/product-info-preview.d.ts +45 -0
- package/dist/types/merchant-batch-create-form/sheet-product-validation.d.ts +10 -0
- package/dist/types/merchant-batch-create-form/table.d.ts +1 -0
- package/dist/types/merchant-batch-create-form/unit-select.d.ts +14 -0
- package/dist/types/merchantDetail.d.ts +30 -0
- package/dist/types/merchantTableData.d.ts +16 -0
- package/dist/types/user.d.ts +23 -0
- package/dist/utils/commonFunctions.d.ts +2 -0
- package/dist/utils/datetime.d.ts +8 -0
- package/dist/utils/form.d.ts +1 -0
- package/dist/utils/mapLicenseData.d.ts +25 -0
- package/dist/utils/merchantTableData.d.ts +3 -0
- package/dist/utils/tokenManager.d.ts +2 -0
- package/dist/utils/translations.d.ts +685 -0
- package/dist/vite.svg +1 -0
- package/package.json +90 -0
|
@@ -0,0 +1,685 @@
|
|
|
1
|
+
export declare const TRANSLATIONS: {
|
|
2
|
+
readonly vi: {
|
|
3
|
+
readonly common: {
|
|
4
|
+
cancel: string;
|
|
5
|
+
confirm: string;
|
|
6
|
+
leave: string;
|
|
7
|
+
exitConfirmGuard: {
|
|
8
|
+
reload: {
|
|
9
|
+
title: string;
|
|
10
|
+
description: string;
|
|
11
|
+
};
|
|
12
|
+
back: {
|
|
13
|
+
title: string;
|
|
14
|
+
description: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
readonly table: {
|
|
19
|
+
submitDate: string;
|
|
20
|
+
object: string;
|
|
21
|
+
status: string;
|
|
22
|
+
search: string;
|
|
23
|
+
addNew: string;
|
|
24
|
+
reset: string;
|
|
25
|
+
apply: string;
|
|
26
|
+
no: string;
|
|
27
|
+
name: string;
|
|
28
|
+
industry: string;
|
|
29
|
+
brand: string;
|
|
30
|
+
businessCode: string;
|
|
31
|
+
rejectNote: string;
|
|
32
|
+
action: string;
|
|
33
|
+
rowCount: string;
|
|
34
|
+
subject: string;
|
|
35
|
+
all: string;
|
|
36
|
+
searchPlaceholder: string;
|
|
37
|
+
merchantProfile: string;
|
|
38
|
+
profileList: string;
|
|
39
|
+
numRows: string;
|
|
40
|
+
DONE: string;
|
|
41
|
+
DRAFT: string;
|
|
42
|
+
PROCESSING: string;
|
|
43
|
+
"PENDING APPROVAL": string;
|
|
44
|
+
REJECTED: string;
|
|
45
|
+
BUSINESS: string;
|
|
46
|
+
PERSONAL: string;
|
|
47
|
+
HOUSEHOLD: string;
|
|
48
|
+
select_date_range: string;
|
|
49
|
+
};
|
|
50
|
+
readonly form: {
|
|
51
|
+
object: string;
|
|
52
|
+
merchantInfo: string;
|
|
53
|
+
taxCode: string;
|
|
54
|
+
shortName: string;
|
|
55
|
+
householdName: string;
|
|
56
|
+
referralCode: string;
|
|
57
|
+
phone: string;
|
|
58
|
+
businessLicense: string;
|
|
59
|
+
uploadFile: string;
|
|
60
|
+
email: string;
|
|
61
|
+
businessName: string;
|
|
62
|
+
profile_detail: string;
|
|
63
|
+
profile_list: string;
|
|
64
|
+
draft: string;
|
|
65
|
+
pending: string;
|
|
66
|
+
processing: string;
|
|
67
|
+
done: string;
|
|
68
|
+
rejected: string;
|
|
69
|
+
individual: string;
|
|
70
|
+
household: string;
|
|
71
|
+
business: string;
|
|
72
|
+
merchant_info: string;
|
|
73
|
+
merchant_info_description: string;
|
|
74
|
+
merchant_profile: string;
|
|
75
|
+
add_new_profile: string;
|
|
76
|
+
uploaded_file: string;
|
|
77
|
+
upload_icon: string;
|
|
78
|
+
upload_file: string;
|
|
79
|
+
file_format_info: string;
|
|
80
|
+
upload_button: string;
|
|
81
|
+
remove_file: string;
|
|
82
|
+
address: string;
|
|
83
|
+
country: string;
|
|
84
|
+
city: string;
|
|
85
|
+
district: string;
|
|
86
|
+
ward: string;
|
|
87
|
+
street: string;
|
|
88
|
+
not_selected: string;
|
|
89
|
+
not_entered: string;
|
|
90
|
+
tax_code: string;
|
|
91
|
+
full_name: string;
|
|
92
|
+
phone_number: string;
|
|
93
|
+
industry: string;
|
|
94
|
+
referral_code: string;
|
|
95
|
+
household_business_name: string;
|
|
96
|
+
short_name_brand: string;
|
|
97
|
+
business_license: string;
|
|
98
|
+
tax_document: string;
|
|
99
|
+
enterprise_name: string;
|
|
100
|
+
representative: string;
|
|
101
|
+
business_registration_number: string;
|
|
102
|
+
required_field_error: string;
|
|
103
|
+
invalid_email_error: string;
|
|
104
|
+
invalid_phone_number_error: string;
|
|
105
|
+
business_license_required_error: string;
|
|
106
|
+
tax_document_required_error: string;
|
|
107
|
+
form_validation_error: string;
|
|
108
|
+
file_upload_required_error: string;
|
|
109
|
+
submit_error: string;
|
|
110
|
+
update_error: string;
|
|
111
|
+
business_license_success_msg: string;
|
|
112
|
+
business_license_error_msg: string;
|
|
113
|
+
business_license_empty_data_msg: string;
|
|
114
|
+
business_license_overwrite_modal_title: string;
|
|
115
|
+
tax_document_success_msg: string;
|
|
116
|
+
tax_document_error_msg: string;
|
|
117
|
+
tax_document_empty_data_msg: string;
|
|
118
|
+
tax_document_overwrite_modal_title: string;
|
|
119
|
+
overwrite_data: string;
|
|
120
|
+
overwrite_data_description: string;
|
|
121
|
+
submit_profile: string;
|
|
122
|
+
update_profile: string;
|
|
123
|
+
select_industry: string;
|
|
124
|
+
loading_industries: string;
|
|
125
|
+
success_announcement: string;
|
|
126
|
+
error_occur: string;
|
|
127
|
+
close: string;
|
|
128
|
+
success_form: string;
|
|
129
|
+
yes: string;
|
|
130
|
+
no: string;
|
|
131
|
+
};
|
|
132
|
+
readonly 'batch-create-product': {
|
|
133
|
+
merge_validate_data_title: string;
|
|
134
|
+
merge_limit_description: string;
|
|
135
|
+
merge_validate_data_description: string;
|
|
136
|
+
upload_information_description1: string;
|
|
137
|
+
upload_information_description2: string;
|
|
138
|
+
sheet: string;
|
|
139
|
+
create_product_button: string;
|
|
140
|
+
image: string;
|
|
141
|
+
no_image: string;
|
|
142
|
+
name: string;
|
|
143
|
+
code: string;
|
|
144
|
+
price_vat: string;
|
|
145
|
+
category: string;
|
|
146
|
+
unit: string;
|
|
147
|
+
not_available: string;
|
|
148
|
+
note: string;
|
|
149
|
+
valid_info: string;
|
|
150
|
+
actions: string;
|
|
151
|
+
edit: string;
|
|
152
|
+
delete: string;
|
|
153
|
+
external_duplicate_code: string;
|
|
154
|
+
external_duplicate_name: string;
|
|
155
|
+
internal_duplicate_code: string;
|
|
156
|
+
internal_duplicate_name: string;
|
|
157
|
+
confirm_create_title: string;
|
|
158
|
+
confirm_create_description_1: string;
|
|
159
|
+
confirm_create_description_2: string;
|
|
160
|
+
success_title: string;
|
|
161
|
+
created_success: string;
|
|
162
|
+
created_failed: string;
|
|
163
|
+
success_description: string;
|
|
164
|
+
cancel: string;
|
|
165
|
+
close: string;
|
|
166
|
+
download: string;
|
|
167
|
+
export_failed_filename: string;
|
|
168
|
+
edit_product_title: string;
|
|
169
|
+
price_vat_full: string;
|
|
170
|
+
update: string;
|
|
171
|
+
add: string;
|
|
172
|
+
enter_new_option: string;
|
|
173
|
+
no_options: string;
|
|
174
|
+
select_unit: string;
|
|
175
|
+
img_invalid_url: string;
|
|
176
|
+
img_invalid_size: string;
|
|
177
|
+
img_invalid_extension: string;
|
|
178
|
+
toast_upload_image_success: string;
|
|
179
|
+
upload_image: string;
|
|
180
|
+
unit_required: string;
|
|
181
|
+
toast_success_title: string;
|
|
182
|
+
toast_error_title: string;
|
|
183
|
+
toast_create_products_success: string;
|
|
184
|
+
toast_create_products_failed: string;
|
|
185
|
+
toast_update_product_success: string;
|
|
186
|
+
export_col_code: string;
|
|
187
|
+
export_col_img: string;
|
|
188
|
+
export_col_name: string;
|
|
189
|
+
export_col_unit: string;
|
|
190
|
+
export_col_price: string;
|
|
191
|
+
export_col_category: string;
|
|
192
|
+
export_col_status: string;
|
|
193
|
+
export_status_success: string;
|
|
194
|
+
export_status_failed: string;
|
|
195
|
+
export_filename_created_product: string;
|
|
196
|
+
export_header_created_time: string;
|
|
197
|
+
unit_exists: string;
|
|
198
|
+
toast_validate_products_failed: string;
|
|
199
|
+
enter_category_name: string;
|
|
200
|
+
name_must_be_string: string;
|
|
201
|
+
name_required: string;
|
|
202
|
+
name_invalid: string;
|
|
203
|
+
unit_must_be_string: string;
|
|
204
|
+
unit_invalid: string;
|
|
205
|
+
code_must_be_string: string;
|
|
206
|
+
code_required: string;
|
|
207
|
+
code_invalid: string;
|
|
208
|
+
code_min: string;
|
|
209
|
+
code_max: string;
|
|
210
|
+
code_invalid_chars: string;
|
|
211
|
+
price_required: string;
|
|
212
|
+
price_invalid: string;
|
|
213
|
+
category_must_be_string: string;
|
|
214
|
+
category_invalid: string;
|
|
215
|
+
toast_delete_image_success: string;
|
|
216
|
+
delete_image_confirm_title: string;
|
|
217
|
+
delete_image_confirm_description: string;
|
|
218
|
+
};
|
|
219
|
+
readonly file: {
|
|
220
|
+
fileTooLarge: string;
|
|
221
|
+
invalidExtension: string;
|
|
222
|
+
sheetTooLong: string;
|
|
223
|
+
readError: string;
|
|
224
|
+
uploadTitle: string;
|
|
225
|
+
uploadHint: string;
|
|
226
|
+
sheetLabel: string;
|
|
227
|
+
chooseFile: string;
|
|
228
|
+
uploading: string;
|
|
229
|
+
upload: string;
|
|
230
|
+
buttonOpen: string;
|
|
231
|
+
systemField: string;
|
|
232
|
+
fileField: string;
|
|
233
|
+
arrow: string;
|
|
234
|
+
placeholder: string;
|
|
235
|
+
reset: string;
|
|
236
|
+
systemFields: string[];
|
|
237
|
+
title: string;
|
|
238
|
+
instruction1: string;
|
|
239
|
+
instruction2: string;
|
|
240
|
+
deleteFile: string;
|
|
241
|
+
tabs: {
|
|
242
|
+
sampleDownload: string;
|
|
243
|
+
uploadFile: string;
|
|
244
|
+
};
|
|
245
|
+
setFirstRowAsHeader: string;
|
|
246
|
+
noCompatibleData: string;
|
|
247
|
+
uploadingSummary: string;
|
|
248
|
+
cancel: string;
|
|
249
|
+
checkData: string;
|
|
250
|
+
checking: string;
|
|
251
|
+
cancelConfirmTitle: string;
|
|
252
|
+
cancelConfirmDesc: string;
|
|
253
|
+
close: string;
|
|
254
|
+
stopUpload: string;
|
|
255
|
+
mergeDataTitle: string;
|
|
256
|
+
mergeDescription: string;
|
|
257
|
+
};
|
|
258
|
+
readonly 'download-sample': {
|
|
259
|
+
title: string;
|
|
260
|
+
description: string;
|
|
261
|
+
downloadButton: string;
|
|
262
|
+
guideTitle: string;
|
|
263
|
+
headers: {
|
|
264
|
+
title: string;
|
|
265
|
+
format: string;
|
|
266
|
+
requirement: string;
|
|
267
|
+
example: string;
|
|
268
|
+
};
|
|
269
|
+
fields: {
|
|
270
|
+
productCode: {
|
|
271
|
+
title: string;
|
|
272
|
+
format: string;
|
|
273
|
+
requirement: string;
|
|
274
|
+
requirementClass: string;
|
|
275
|
+
example: string;
|
|
276
|
+
};
|
|
277
|
+
productName: {
|
|
278
|
+
title: string;
|
|
279
|
+
format: string;
|
|
280
|
+
requirement: string;
|
|
281
|
+
requirementClass: string;
|
|
282
|
+
example: string;
|
|
283
|
+
};
|
|
284
|
+
price: {
|
|
285
|
+
title: string;
|
|
286
|
+
format: string;
|
|
287
|
+
requirement: string;
|
|
288
|
+
requirementClass: string;
|
|
289
|
+
example: string;
|
|
290
|
+
};
|
|
291
|
+
unit: {
|
|
292
|
+
title: string;
|
|
293
|
+
format: string;
|
|
294
|
+
requirement: string;
|
|
295
|
+
requirementClass: string;
|
|
296
|
+
example: string;
|
|
297
|
+
};
|
|
298
|
+
category: {
|
|
299
|
+
title: string;
|
|
300
|
+
format: string;
|
|
301
|
+
requirement: string;
|
|
302
|
+
requirementClass: string;
|
|
303
|
+
example: string;
|
|
304
|
+
};
|
|
305
|
+
image: {
|
|
306
|
+
title: string;
|
|
307
|
+
format: string;
|
|
308
|
+
requirement: string;
|
|
309
|
+
requirementClass: string;
|
|
310
|
+
example: string;
|
|
311
|
+
};
|
|
312
|
+
};
|
|
313
|
+
};
|
|
314
|
+
readonly 'digistore-id': {
|
|
315
|
+
title: string;
|
|
316
|
+
note_login_success_with: string;
|
|
317
|
+
note_desc: string;
|
|
318
|
+
note_from_date: string;
|
|
319
|
+
note_use_digis_acc_to_access: string;
|
|
320
|
+
form_email_label: string;
|
|
321
|
+
form_email_placeholder: string;
|
|
322
|
+
form_pwd_label: string;
|
|
323
|
+
form_pwd_placeholder: string;
|
|
324
|
+
form_pwd_err_required: string;
|
|
325
|
+
form_pwd_err_invalid: string;
|
|
326
|
+
form_confirm_pwd_label: string;
|
|
327
|
+
form_confirm_pwd_placeholder: string;
|
|
328
|
+
form_confirm_pwd_err_required: string;
|
|
329
|
+
form_confirm_pwd_err_no_match: string;
|
|
330
|
+
form_submit_btn: string;
|
|
331
|
+
pwd_requirement_title: string;
|
|
332
|
+
pwd_requirement_length: string;
|
|
333
|
+
pwd_requirement_uppercase: string;
|
|
334
|
+
pwd_requirement_lowercase: string;
|
|
335
|
+
pwd_requirement_number: string;
|
|
336
|
+
pwd_requirement_no_vietnamese: string;
|
|
337
|
+
success_toast_title: string;
|
|
338
|
+
success_toast_des: string;
|
|
339
|
+
error_toast_title: string;
|
|
340
|
+
error_toast_des: string;
|
|
341
|
+
};
|
|
342
|
+
};
|
|
343
|
+
readonly en: {
|
|
344
|
+
readonly common: {
|
|
345
|
+
cancel: string;
|
|
346
|
+
confirm: string;
|
|
347
|
+
leave: string;
|
|
348
|
+
exitConfirmGuard: {
|
|
349
|
+
reload: {
|
|
350
|
+
title: string;
|
|
351
|
+
description: string;
|
|
352
|
+
};
|
|
353
|
+
back: {
|
|
354
|
+
title: string;
|
|
355
|
+
description: string;
|
|
356
|
+
};
|
|
357
|
+
};
|
|
358
|
+
};
|
|
359
|
+
readonly table: {
|
|
360
|
+
submitDate: string;
|
|
361
|
+
object: string;
|
|
362
|
+
status: string;
|
|
363
|
+
search: string;
|
|
364
|
+
addNew: string;
|
|
365
|
+
reset: string;
|
|
366
|
+
apply: string;
|
|
367
|
+
no: string;
|
|
368
|
+
name: string;
|
|
369
|
+
industry: string;
|
|
370
|
+
brand: string;
|
|
371
|
+
businessCode: string;
|
|
372
|
+
rejectNote: string;
|
|
373
|
+
action: string;
|
|
374
|
+
rowCount: string;
|
|
375
|
+
subject: string;
|
|
376
|
+
businessType: string;
|
|
377
|
+
all: string;
|
|
378
|
+
searchPlaceholder: string;
|
|
379
|
+
merchantProfile: string;
|
|
380
|
+
profileList: string;
|
|
381
|
+
numRows: string;
|
|
382
|
+
DONE: string;
|
|
383
|
+
DRAFT: string;
|
|
384
|
+
PROCESSING: string;
|
|
385
|
+
"PENDING APPROVAL": string;
|
|
386
|
+
REJECTED: string;
|
|
387
|
+
BUSINESS: string;
|
|
388
|
+
PERSONAL: string;
|
|
389
|
+
HOUSEHOLD: string;
|
|
390
|
+
select_date_range: string;
|
|
391
|
+
};
|
|
392
|
+
readonly form: {
|
|
393
|
+
object: string;
|
|
394
|
+
merchantInfo: string;
|
|
395
|
+
taxCode: string;
|
|
396
|
+
shortName: string;
|
|
397
|
+
householdName: string;
|
|
398
|
+
referralCode: string;
|
|
399
|
+
phone: string;
|
|
400
|
+
businessLicense: string;
|
|
401
|
+
uploadFile: string;
|
|
402
|
+
email: string;
|
|
403
|
+
businessName: string;
|
|
404
|
+
profile_detail: string;
|
|
405
|
+
profile_list: string;
|
|
406
|
+
draft: string;
|
|
407
|
+
pending: string;
|
|
408
|
+
processing: string;
|
|
409
|
+
done: string;
|
|
410
|
+
rejected: string;
|
|
411
|
+
individual: string;
|
|
412
|
+
household: string;
|
|
413
|
+
business: string;
|
|
414
|
+
merchant_info: string;
|
|
415
|
+
merchant_info_description: string;
|
|
416
|
+
merchant_profile: string;
|
|
417
|
+
add_new_profile: string;
|
|
418
|
+
uploaded_file: string;
|
|
419
|
+
upload_icon: string;
|
|
420
|
+
upload_file: string;
|
|
421
|
+
file_format_info: string;
|
|
422
|
+
upload_button: string;
|
|
423
|
+
remove_file: string;
|
|
424
|
+
address: string;
|
|
425
|
+
country: string;
|
|
426
|
+
city: string;
|
|
427
|
+
district: string;
|
|
428
|
+
ward: string;
|
|
429
|
+
street: string;
|
|
430
|
+
not_selected: string;
|
|
431
|
+
not_entered: string;
|
|
432
|
+
tax_code: string;
|
|
433
|
+
full_name: string;
|
|
434
|
+
phone_number: string;
|
|
435
|
+
industry: string;
|
|
436
|
+
referral_code: string;
|
|
437
|
+
household_business_name: string;
|
|
438
|
+
short_name_brand: string;
|
|
439
|
+
business_license: string;
|
|
440
|
+
tax_document: string;
|
|
441
|
+
enterprise_name: string;
|
|
442
|
+
representative: string;
|
|
443
|
+
business_registration_number: string;
|
|
444
|
+
required_field_error: string;
|
|
445
|
+
invalid_email_error: string;
|
|
446
|
+
invalid_phone_number_error: string;
|
|
447
|
+
business_license_required_error: string;
|
|
448
|
+
tax_document_required_error: string;
|
|
449
|
+
form_validation_error: string;
|
|
450
|
+
file_upload_required_error: string;
|
|
451
|
+
submit_error: string;
|
|
452
|
+
update_error: string;
|
|
453
|
+
business_license_success_msg: string;
|
|
454
|
+
business_license_error_msg: string;
|
|
455
|
+
business_license_empty_data_msg: string;
|
|
456
|
+
business_license_overwrite_modal_title: string;
|
|
457
|
+
tax_document_success_msg: string;
|
|
458
|
+
tax_document_error_msg: string;
|
|
459
|
+
tax_document_empty_data_msg: string;
|
|
460
|
+
tax_document_overwrite_modal_title: string;
|
|
461
|
+
overwrite_data: string;
|
|
462
|
+
overwrite_data_description: string;
|
|
463
|
+
submit_profile: string;
|
|
464
|
+
update_profile: string;
|
|
465
|
+
select_industry: string;
|
|
466
|
+
loading_industries: string;
|
|
467
|
+
success_announcement: string;
|
|
468
|
+
error_occur: string;
|
|
469
|
+
close: string;
|
|
470
|
+
success_form: string;
|
|
471
|
+
yes: string;
|
|
472
|
+
no: string;
|
|
473
|
+
};
|
|
474
|
+
readonly 'batch-create-product': {
|
|
475
|
+
merge_validate_data_title: string;
|
|
476
|
+
merge_limit_description: string;
|
|
477
|
+
merge_validate_data_description: string;
|
|
478
|
+
upload_information_description1: string;
|
|
479
|
+
upload_information_description2: string;
|
|
480
|
+
sheet: string;
|
|
481
|
+
create_product_button: string;
|
|
482
|
+
image: string;
|
|
483
|
+
no_image: string;
|
|
484
|
+
name: string;
|
|
485
|
+
code: string;
|
|
486
|
+
price_vat: string;
|
|
487
|
+
category: string;
|
|
488
|
+
unit: string;
|
|
489
|
+
not_available: string;
|
|
490
|
+
note: string;
|
|
491
|
+
valid_info: string;
|
|
492
|
+
actions: string;
|
|
493
|
+
edit: string;
|
|
494
|
+
external_duplicate_code: string;
|
|
495
|
+
external_duplicate_name: string;
|
|
496
|
+
internal_duplicate_code: string;
|
|
497
|
+
internal_duplicate_name: string;
|
|
498
|
+
confirm_create_title: string;
|
|
499
|
+
confirm_create_description_1: string;
|
|
500
|
+
confirm_create_description_2: string;
|
|
501
|
+
success_title: string;
|
|
502
|
+
created_success: string;
|
|
503
|
+
created_failed: string;
|
|
504
|
+
success_description: string;
|
|
505
|
+
cancel: string;
|
|
506
|
+
close: string;
|
|
507
|
+
download: string;
|
|
508
|
+
export_failed_filename: string;
|
|
509
|
+
edit_product_title: string;
|
|
510
|
+
price_vat_full: string;
|
|
511
|
+
update: string;
|
|
512
|
+
add: string;
|
|
513
|
+
enter_new_option: string;
|
|
514
|
+
delete: string;
|
|
515
|
+
no_options: string;
|
|
516
|
+
select_unit: string;
|
|
517
|
+
img_invalid_url: string;
|
|
518
|
+
img_invalid_size: string;
|
|
519
|
+
img_invalid_extension: string;
|
|
520
|
+
toast_upload_image_success: string;
|
|
521
|
+
upload_image: string;
|
|
522
|
+
code_min: string;
|
|
523
|
+
code_max: string;
|
|
524
|
+
code_invalid_chars: string;
|
|
525
|
+
toast_success_title: string;
|
|
526
|
+
toast_error_title: string;
|
|
527
|
+
toast_create_products_success: string;
|
|
528
|
+
toast_create_products_failed: string;
|
|
529
|
+
toast_update_product_success: string;
|
|
530
|
+
export_col_code: string;
|
|
531
|
+
export_col_img: string;
|
|
532
|
+
export_col_name: string;
|
|
533
|
+
export_col_unit: string;
|
|
534
|
+
export_col_price: string;
|
|
535
|
+
export_col_category: string;
|
|
536
|
+
export_col_status: string;
|
|
537
|
+
export_status_success: string;
|
|
538
|
+
export_status_failed: string;
|
|
539
|
+
export_filename_created_product: string;
|
|
540
|
+
export_header_created_time: string;
|
|
541
|
+
unit_exists: string;
|
|
542
|
+
enter_category_name: string;
|
|
543
|
+
toast_validate_products_failed: string;
|
|
544
|
+
name_must_be_string: string;
|
|
545
|
+
name_required: string;
|
|
546
|
+
name_invalid: string;
|
|
547
|
+
unit_must_be_string: string;
|
|
548
|
+
unit_required: string;
|
|
549
|
+
unit_invalid: string;
|
|
550
|
+
code_must_be_string: string;
|
|
551
|
+
code_required: string;
|
|
552
|
+
code_invalid: string;
|
|
553
|
+
price_required: string;
|
|
554
|
+
price_invalid: string;
|
|
555
|
+
category_must_be_string: string;
|
|
556
|
+
category_invalid: string;
|
|
557
|
+
toast_delete_image_success: string;
|
|
558
|
+
delete_image_confirm_title: string;
|
|
559
|
+
delete_image_confirm_description: string;
|
|
560
|
+
};
|
|
561
|
+
readonly file: {
|
|
562
|
+
fileTooLarge: string;
|
|
563
|
+
invalidExtension: string;
|
|
564
|
+
sheetTooLong: string;
|
|
565
|
+
readError: string;
|
|
566
|
+
uploadTitle: string;
|
|
567
|
+
uploadHint: string;
|
|
568
|
+
sheetLabel: string;
|
|
569
|
+
chooseFile: string;
|
|
570
|
+
uploading: string;
|
|
571
|
+
upload: string;
|
|
572
|
+
buttonOpen: string;
|
|
573
|
+
systemField: string;
|
|
574
|
+
fileField: string;
|
|
575
|
+
arrow: string;
|
|
576
|
+
placeholder: string;
|
|
577
|
+
reset: string;
|
|
578
|
+
systemFields: string[];
|
|
579
|
+
title: string;
|
|
580
|
+
instruction1: string;
|
|
581
|
+
instruction2: string;
|
|
582
|
+
deleteFile: string;
|
|
583
|
+
tabs: {
|
|
584
|
+
sampleDownload: string;
|
|
585
|
+
uploadFile: string;
|
|
586
|
+
};
|
|
587
|
+
setFirstRowAsHeader: string;
|
|
588
|
+
noCompatibleData: string;
|
|
589
|
+
uploadingSummary: string;
|
|
590
|
+
cancel: string;
|
|
591
|
+
checkData: string;
|
|
592
|
+
checking: string;
|
|
593
|
+
cancelConfirmTitle: string;
|
|
594
|
+
cancelConfirmDesc: string;
|
|
595
|
+
close: string;
|
|
596
|
+
stopUpload: string;
|
|
597
|
+
mergeDataTitle: string;
|
|
598
|
+
mergeDescription: string;
|
|
599
|
+
};
|
|
600
|
+
readonly 'download-sample': {
|
|
601
|
+
title: string;
|
|
602
|
+
description: string;
|
|
603
|
+
downloadButton: string;
|
|
604
|
+
guideTitle: string;
|
|
605
|
+
headers: {
|
|
606
|
+
title: string;
|
|
607
|
+
format: string;
|
|
608
|
+
requirement: string;
|
|
609
|
+
example: string;
|
|
610
|
+
};
|
|
611
|
+
fields: {
|
|
612
|
+
productCode: {
|
|
613
|
+
title: string;
|
|
614
|
+
format: string;
|
|
615
|
+
requirement: string;
|
|
616
|
+
requirementClass: string;
|
|
617
|
+
example: string;
|
|
618
|
+
};
|
|
619
|
+
productName: {
|
|
620
|
+
title: string;
|
|
621
|
+
format: string;
|
|
622
|
+
requirement: string;
|
|
623
|
+
requirementClass: string;
|
|
624
|
+
example: string;
|
|
625
|
+
};
|
|
626
|
+
price: {
|
|
627
|
+
title: string;
|
|
628
|
+
format: string;
|
|
629
|
+
requirement: string;
|
|
630
|
+
requirementClass: string;
|
|
631
|
+
example: string;
|
|
632
|
+
};
|
|
633
|
+
unit: {
|
|
634
|
+
title: string;
|
|
635
|
+
format: string;
|
|
636
|
+
requirement: string;
|
|
637
|
+
requirementClass: string;
|
|
638
|
+
example: string;
|
|
639
|
+
};
|
|
640
|
+
category: {
|
|
641
|
+
title: string;
|
|
642
|
+
format: string;
|
|
643
|
+
requirement: string;
|
|
644
|
+
requirementClass: string;
|
|
645
|
+
example: string;
|
|
646
|
+
};
|
|
647
|
+
image: {
|
|
648
|
+
title: string;
|
|
649
|
+
format: string;
|
|
650
|
+
requirement: string;
|
|
651
|
+
requirementClass: string;
|
|
652
|
+
example: string;
|
|
653
|
+
};
|
|
654
|
+
};
|
|
655
|
+
};
|
|
656
|
+
readonly 'digistore-id': {
|
|
657
|
+
title: string;
|
|
658
|
+
note_login_success_with: string;
|
|
659
|
+
note_desc: string;
|
|
660
|
+
note_from_date: string;
|
|
661
|
+
note_use_digis_acc_to_access: string;
|
|
662
|
+
form_email_label: string;
|
|
663
|
+
form_email_placeholder: string;
|
|
664
|
+
form_pwd_label: string;
|
|
665
|
+
form_pwd_placeholder: string;
|
|
666
|
+
form_pwd_err_required: string;
|
|
667
|
+
form_pwd_err_invalid: string;
|
|
668
|
+
form_confirm_pwd_label: string;
|
|
669
|
+
form_confirm_pwd_placeholder: string;
|
|
670
|
+
form_confirm_pwd_err_required: string;
|
|
671
|
+
form_confirm_pwd_err_no_match: string;
|
|
672
|
+
form_submit_btn: string;
|
|
673
|
+
pwd_requirement_title: string;
|
|
674
|
+
pwd_requirement_length: string;
|
|
675
|
+
pwd_requirement_uppercase: string;
|
|
676
|
+
pwd_requirement_lowercase: string;
|
|
677
|
+
pwd_requirement_number: string;
|
|
678
|
+
pwd_requirement_no_vietnamese: string;
|
|
679
|
+
success_toast_title: string;
|
|
680
|
+
success_toast_des: string;
|
|
681
|
+
error_toast_title: string;
|
|
682
|
+
error_toast_des: string;
|
|
683
|
+
};
|
|
684
|
+
};
|
|
685
|
+
};
|
package/dist/vite.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|