@maxax/ui 1.1.72 → 1.1.74
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/dist/_commonjsHelpers-Bc2YnDe1.cjs +8 -0
- package/dist/_commonjsHelpers-Bc2YnDe1.cjs.map +1 -0
- package/dist/_commonjsHelpers-DWwsNxpa.js +9 -0
- package/dist/_commonjsHelpers-DWwsNxpa.js.map +1 -0
- package/dist/components/basic-button-group/BasicButtonGroup.vue.d.ts +3 -1
- package/dist/components/basic-button-group/BasicButtonGroup.vue.d.ts.map +1 -1
- package/dist/components/basic-button-group/components/ButtonGroupItem.vue.d.ts.map +1 -1
- package/dist/components/basic-button-group/hooks/use-button-group-schema.d.ts.map +1 -1
- package/dist/components/basic-button-group/types/button-group.d.ts +4 -0
- package/dist/components/basic-button-group/types/button-group.d.ts.map +1 -1
- package/dist/components/basic-button-group/types/component.d.ts +3 -1
- package/dist/components/basic-button-group/types/component.d.ts.map +1 -1
- package/dist/components/basic-button-import-max/BasicButtonImportMax.vue.d.ts +653 -702
- package/dist/components/basic-button-import-max/BasicButtonImportMax.vue.d.ts.map +1 -1
- package/dist/components/basic-button-import-max/PreviewModal.vue.d.ts +17 -465
- package/dist/components/basic-button-import-max/PreviewModal.vue.d.ts.map +1 -1
- package/dist/components/basic-button-import-max/UploadModal.vue.d.ts +4 -1
- package/dist/components/basic-button-import-max/UploadModal.vue.d.ts.map +1 -1
- package/dist/components/basic-button-import-max/interface.d.ts +36 -0
- package/dist/components/basic-button-import-max/interface.d.ts.map +1 -1
- package/dist/components/basic-button-import-max/utils.d.ts +16 -0
- package/dist/components/basic-button-import-max/utils.d.ts.map +1 -0
- package/dist/components/basic-edit-batch/components/EditBatchItem.vue.d.ts.map +1 -1
- package/dist/components/basic-form/components/FormItem.vue.d.ts.map +1 -1
- package/dist/components/basic-message-box/interface.d.ts.map +1 -1
- package/dist/components/basic-table/BasicTable.vue.d.ts +1 -0
- package/dist/components/basic-table/BasicTable.vue.d.ts.map +1 -1
- package/dist/components/basic-table/export-xlsx.d.ts +28 -0
- package/dist/components/basic-table/export-xlsx.d.ts.map +1 -0
- package/dist/components/basic-table/index.d.ts +1 -0
- package/dist/components/basic-table/index.d.ts.map +1 -1
- package/dist/components/basic-table/interface.d.ts +2 -0
- package/dist/components/basic-table/interface.d.ts.map +1 -1
- package/dist/exceljs.min-Bt5AZfbx.js +23122 -0
- package/dist/exceljs.min-Bt5AZfbx.js.map +1 -0
- package/dist/exceljs.min-DvM7I02X.cjs +23121 -0
- package/dist/exceljs.min-DvM7I02X.cjs.map +1 -0
- package/dist/index.cjs +454 -81
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +454 -81
- package/dist/index.mjs.map +1 -1
- package/dist/locale/lang/en.d.ts.map +1 -1
- package/dist/locale/lang/zh-cn.d.ts.map +1 -1
- package/dist/locales.cjs +49 -10
- package/dist/locales.cjs.map +1 -1
- package/dist/locales.mjs +45 -6
- package/dist/locales.mjs.map +1 -1
- package/dist/theme-chalk/components/basicButtonGroup.scss +17 -1
- package/dist/theme-chalk/components/basicButtonImportMax.scss +102 -13
- package/dist/theme-chalk/index.css +1 -1
- package/dist/theme-chalk/light.css +1 -1
- package/dist/{zh-cn-C7lMkB1L.cjs → zh-cn-BdENqlAc.cjs} +16 -3
- package/dist/zh-cn-BdENqlAc.cjs.map +1 -0
- package/dist/{zh-cn-DUJD5NdW.js → zh-cn-KPfh6ZPA.js} +16 -3
- package/dist/zh-cn-KPfh6ZPA.js.map +1 -0
- package/package.json +6 -5
- package/dist/zh-cn-C7lMkB1L.cjs.map +0 -1
- package/dist/zh-cn-DUJD5NdW.js.map +0 -1
package/dist/locales.mjs
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import { z } from "./zh-cn-
|
|
2
|
-
|
|
3
|
-
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
|
|
4
|
-
}
|
|
1
|
+
import { z } from "./zh-cn-KPfh6ZPA.js";
|
|
2
|
+
import { g as getDefaultExportFromCjs } from "./_commonjsHelpers-DWwsNxpa.js";
|
|
5
3
|
var enUS$4 = {};
|
|
6
4
|
var hasRequiredEnUS$1;
|
|
7
5
|
function requireEnUS$1() {
|
|
@@ -364,6 +362,13 @@ function requireEnUS$1() {
|
|
|
364
362
|
yearLabel: "{0}",
|
|
365
363
|
monthLabel: "{0}"
|
|
366
364
|
},
|
|
365
|
+
cascader: {
|
|
366
|
+
clearChecked: "清除",
|
|
367
|
+
allChecked: "全选",
|
|
368
|
+
total: "已选 {0} 项",
|
|
369
|
+
close: "关闭",
|
|
370
|
+
search: "搜索"
|
|
371
|
+
},
|
|
367
372
|
numberInput: {
|
|
368
373
|
currencySymbol: "$"
|
|
369
374
|
},
|
|
@@ -1227,6 +1232,13 @@ function requireZhCN$1() {
|
|
|
1227
1232
|
yearLabel: "{0} 年",
|
|
1228
1233
|
monthLabel: "{0} 月"
|
|
1229
1234
|
},
|
|
1235
|
+
cascader: {
|
|
1236
|
+
clearChecked: "清除",
|
|
1237
|
+
allChecked: "全选",
|
|
1238
|
+
total: "已选 {0} 项",
|
|
1239
|
+
close: "关闭",
|
|
1240
|
+
search: "搜索"
|
|
1241
|
+
},
|
|
1230
1242
|
numberInput: {
|
|
1231
1243
|
currencySymbol: "¥"
|
|
1232
1244
|
},
|
|
@@ -2090,6 +2102,13 @@ function requireEnUS() {
|
|
|
2090
2102
|
yearLabel: "{0}",
|
|
2091
2103
|
monthLabel: "{0}"
|
|
2092
2104
|
},
|
|
2105
|
+
cascader: {
|
|
2106
|
+
clearChecked: "清除",
|
|
2107
|
+
allChecked: "全选",
|
|
2108
|
+
total: "已选 {0} 项",
|
|
2109
|
+
close: "关闭",
|
|
2110
|
+
search: "搜索"
|
|
2111
|
+
},
|
|
2093
2112
|
numberInput: {
|
|
2094
2113
|
currencySymbol: "$"
|
|
2095
2114
|
},
|
|
@@ -2953,6 +2972,13 @@ function requireZhCN() {
|
|
|
2953
2972
|
yearLabel: "{0} 年",
|
|
2954
2973
|
monthLabel: "{0} 月"
|
|
2955
2974
|
},
|
|
2975
|
+
cascader: {
|
|
2976
|
+
clearChecked: "清除",
|
|
2977
|
+
allChecked: "全选",
|
|
2978
|
+
total: "已选 {0} 项",
|
|
2979
|
+
close: "关闭",
|
|
2980
|
+
search: "搜索"
|
|
2981
|
+
},
|
|
2956
2982
|
numberInput: {
|
|
2957
2983
|
currencySymbol: "¥"
|
|
2958
2984
|
},
|
|
@@ -3493,7 +3519,9 @@ const enUS = {
|
|
|
3493
3519
|
exportFailed: "Export Failed",
|
|
3494
3520
|
downloading: "Downloading",
|
|
3495
3521
|
yes: "Yes",
|
|
3496
|
-
no: "No"
|
|
3522
|
+
no: "No",
|
|
3523
|
+
back: "Back",
|
|
3524
|
+
confirmReturn: "Are you sure you want to return to the previous page?"
|
|
3497
3525
|
},
|
|
3498
3526
|
button: {
|
|
3499
3527
|
confirm: "Confirm",
|
|
@@ -3559,7 +3587,7 @@ const enUS = {
|
|
|
3559
3587
|
import: {
|
|
3560
3588
|
import: "Import",
|
|
3561
3589
|
exportSuccess: "Export Success",
|
|
3562
|
-
fileSizeLimit: "File size cannot exceed
|
|
3590
|
+
fileSizeLimit: "File size cannot exceed {max}MB!",
|
|
3563
3591
|
uploadFile: "Please upload a file",
|
|
3564
3592
|
confirmImport: "Are you sure you want to import?",
|
|
3565
3593
|
confirm: "Confirm",
|
|
@@ -3569,9 +3597,20 @@ const enUS = {
|
|
|
3569
3597
|
downloadTemplate: "Download Template",
|
|
3570
3598
|
updateExisting: "Update/Overwrite existing data",
|
|
3571
3599
|
noTemplateApi: "Template download API is not configured",
|
|
3600
|
+
validationFailed: "Validation failed. Please check the data.",
|
|
3572
3601
|
previewTitle: "Import Data Preview",
|
|
3602
|
+
rowNo: "Row No.",
|
|
3603
|
+
errorMessage: "Error Message",
|
|
3604
|
+
errorDataSheetName: "Error Data",
|
|
3573
3605
|
totalCount: "Total",
|
|
3574
3606
|
errorCount: "Errors",
|
|
3607
|
+
normalCount: "Normal",
|
|
3608
|
+
showAllData: "Show all data",
|
|
3609
|
+
showErrorRows: "Only error rows",
|
|
3610
|
+
showNormalRows: "Only normal rows",
|
|
3611
|
+
exportErrorData: "Export errors",
|
|
3612
|
+
deleteErrorData: "Delete errors",
|
|
3613
|
+
confirmDeleteErrorData: "Are you sure you want to delete all error data?",
|
|
3575
3614
|
back: "Back"
|
|
3576
3615
|
}
|
|
3577
3616
|
}
|