@aplus-frontend/ui 7.13.1 → 7.13.2

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 (53) hide show
  1. package/es/src/ag-grid/components/empty/index.vue.d.ts +4 -1
  2. package/es/src/ag-grid/components/empty/index.vue2.mjs +20 -10
  3. package/es/src/ag-grid/editable/form-item.vue.mjs +9 -8
  4. package/es/src/ag-grid/editable/index.vue.mjs +1 -0
  5. package/es/src/ag-grid/index.vue.mjs +47 -45
  6. package/es/src/ag-grid/interface.d.ts +4 -0
  7. package/es/src/ag-grid/style/index.mjs +5 -5
  8. package/es/src/ap-table/components/setting/modal/index.vue2.mjs +135 -128
  9. package/es/src/business/ap-export-group/ApExportGroup.vue.d.ts +2 -1
  10. package/es/src/business/ap-export-group/ApExportGroup.vue2.mjs +296 -161
  11. package/es/src/business/ap-export-group/index.d.ts +4 -1
  12. package/es/src/business/ap-export-group/interface.d.ts +31 -0
  13. package/es/src/business/ap-export-group/style/index.d.ts +5 -0
  14. package/es/src/business/ap-export-group/style/index.mjs +17 -0
  15. package/es/src/business/ap-view/components/menu-list-content.vue2.mjs +21 -21
  16. package/es/src/business/ap-view/style/index.mjs +3 -2
  17. package/es/src/config-provider/config-provider-props.d.ts +7 -6
  18. package/es/src/config-provider/config-provider-props.mjs +4 -4
  19. package/es/src/config-provider/config-provider.d.ts +35 -11
  20. package/es/src/config-provider/config-provider.mjs +24 -24
  21. package/es/src/config-provider/hooks/use-global-config.d.ts +14 -6
  22. package/es/src/config-provider/index.d.ts +65 -17
  23. package/es/src/locale/lang/en.mjs +5 -2
  24. package/es/src/locale/lang/zh-cn.mjs +4 -1
  25. package/es/src/version.d.ts +1 -1
  26. package/es/src/version.mjs +1 -1
  27. package/lib/src/ag-grid/components/empty/index.vue.d.ts +4 -1
  28. package/lib/src/ag-grid/components/empty/index.vue2.js +1 -1
  29. package/lib/src/ag-grid/editable/form-item.vue.js +1 -1
  30. package/lib/src/ag-grid/editable/index.vue.js +1 -1
  31. package/lib/src/ag-grid/index.vue.js +1 -1
  32. package/lib/src/ag-grid/interface.d.ts +4 -0
  33. package/lib/src/ag-grid/style/index.js +1 -1
  34. package/lib/src/ap-table/components/setting/modal/index.vue2.js +1 -1
  35. package/lib/src/business/ap-export-group/ApExportGroup.vue.d.ts +2 -1
  36. package/lib/src/business/ap-export-group/ApExportGroup.vue2.js +1 -1
  37. package/lib/src/business/ap-export-group/index.d.ts +4 -1
  38. package/lib/src/business/ap-export-group/interface.d.ts +31 -0
  39. package/lib/src/business/ap-export-group/style/index.d.ts +5 -0
  40. package/lib/src/business/ap-export-group/style/index.js +1 -0
  41. package/lib/src/business/ap-view/components/menu-list-content.vue2.js +1 -1
  42. package/lib/src/business/ap-view/style/index.js +1 -1
  43. package/lib/src/config-provider/config-provider-props.d.ts +7 -6
  44. package/lib/src/config-provider/config-provider-props.js +1 -1
  45. package/lib/src/config-provider/config-provider.d.ts +35 -11
  46. package/lib/src/config-provider/config-provider.js +1 -1
  47. package/lib/src/config-provider/hooks/use-global-config.d.ts +14 -6
  48. package/lib/src/config-provider/index.d.ts +65 -17
  49. package/lib/src/locale/lang/en.js +1 -1
  50. package/lib/src/locale/lang/zh-cn.js +1 -1
  51. package/lib/src/version.d.ts +1 -1
  52. package/lib/src/version.js +1 -1
  53. package/package.json +1 -1
@@ -5,8 +5,8 @@ import { CSPConfig } from '@aplus-frontend/antdv/es/config-provider';
5
5
  import { Locale } from '@aplus-frontend/antdv/es/locale';
6
6
  import { ButtonSize } from '@aplus-frontend/antdv/es/button';
7
7
  import { ThemeConfig, InputConfig, PaginationConfig, FormConfig, SelectConfig, CascaderConfig, DatePickerConfig, RangePickerConfig, TreeSelectConfig, TextAreaConfig, InputNumberConfig, MentionsConfig, TimePickerConfig, CardConfig, TableConfig, TooltipConfig, PopoverConfig, PopconfirmConfig, ModalConfig, DrawerConfig, ImageConfig } from '@aplus-frontend/antdv/es/config-provider/context';
8
- import { ApGridRowSelection, AgGridRowSelection, FullToken, ViewCacheOption } from '..';
9
- import { UiModeType, SearchFormGlobalConfig, ApUploadConfig, ApDescriptionsConfig, ApiType, ValueTypeRenderConfig, downloadCenterTriggerConfig, ExportField } from './constants';
8
+ import { ApGridRowSelection, AgGridRowSelection, ApExportGroupDateValidate, FullToken, ViewCacheOption } from '..';
9
+ import { UiModeType, SearchFormGlobalConfig, ApUploadConfig, ApDescriptionsConfig, ApiType, ValueTypeRenderConfig, downloadCenterTriggerConfig } from './constants';
10
10
  import { ApFilePreviewParser } from '../business/ap-file-preview/interface';
11
11
  import { LocaleType } from '../locale';
12
12
  import { RecursivePartial } from '../type';
@@ -220,6 +220,18 @@ export declare const APConfigProvider: {
220
220
  }>;
221
221
  default: () => {};
222
222
  };
223
+ apExportGroup: {
224
+ type: PropType<{
225
+ dateValidate?: ApExportGroupDateValidate | undefined;
226
+ exportField?: boolean | {
227
+ key?: string;
228
+ convertField?: {
229
+ [key: string]: string[];
230
+ };
231
+ } | undefined;
232
+ }>;
233
+ default: () => {};
234
+ };
223
235
  aplusLocale: {
224
236
  type: PropType<LocaleType>;
225
237
  };
@@ -244,10 +256,6 @@ export declare const APConfigProvider: {
244
256
  type: PropType<downloadCenterTriggerConfig>;
245
257
  default: () => {};
246
258
  };
247
- exportField: {
248
- type: PropType<ExportField>;
249
- default: boolean;
250
- };
251
259
  scrollYDomName: {
252
260
  type: StringConstructor;
253
261
  };
@@ -299,10 +307,18 @@ export declare const APConfigProvider: {
299
307
  apFilePreview: {
300
308
  parserPlugin?: ApFilePreviewParser[] | undefined;
301
309
  };
310
+ apExportGroup: {
311
+ dateValidate?: ApExportGroupDateValidate | undefined;
312
+ exportField?: boolean | {
313
+ key?: string;
314
+ convertField?: {
315
+ [key: string]: string[];
316
+ };
317
+ } | undefined;
318
+ };
302
319
  api: ApiType;
303
320
  valueTypeMap: Record<string, ValueTypeRenderConfig>;
304
321
  downloadCenterTriggerConfig: downloadCenterTriggerConfig;
305
- exportField: ExportField;
306
322
  viewCacheOption: ViewCacheOption;
307
323
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
308
324
  P: {};
@@ -514,6 +530,18 @@ export declare const APConfigProvider: {
514
530
  }>;
515
531
  default: () => {};
516
532
  };
533
+ apExportGroup: {
534
+ type: PropType<{
535
+ dateValidate?: ApExportGroupDateValidate | undefined;
536
+ exportField?: boolean | {
537
+ key?: string;
538
+ convertField?: {
539
+ [key: string]: string[];
540
+ };
541
+ } | undefined;
542
+ }>;
543
+ default: () => {};
544
+ };
517
545
  aplusLocale: {
518
546
  type: PropType<LocaleType>;
519
547
  };
@@ -538,10 +566,6 @@ export declare const APConfigProvider: {
538
566
  type: PropType<downloadCenterTriggerConfig>;
539
567
  default: () => {};
540
568
  };
541
- exportField: {
542
- type: PropType<ExportField>;
543
- default: boolean;
544
- };
545
569
  scrollYDomName: {
546
570
  type: StringConstructor;
547
571
  };
@@ -593,10 +617,18 @@ export declare const APConfigProvider: {
593
617
  apFilePreview: {
594
618
  parserPlugin?: ApFilePreviewParser[] | undefined;
595
619
  };
620
+ apExportGroup: {
621
+ dateValidate?: ApExportGroupDateValidate | undefined;
622
+ exportField?: boolean | {
623
+ key?: string;
624
+ convertField?: {
625
+ [key: string]: string[];
626
+ };
627
+ } | undefined;
628
+ };
596
629
  api: ApiType;
597
630
  valueTypeMap: Record<string, ValueTypeRenderConfig>;
598
631
  downloadCenterTriggerConfig: downloadCenterTriggerConfig;
599
- exportField: ExportField;
600
632
  viewCacheOption: ViewCacheOption;
601
633
  }>;
602
634
  __isFragment?: never;
@@ -805,6 +837,18 @@ export declare const APConfigProvider: {
805
837
  }>;
806
838
  default: () => {};
807
839
  };
840
+ apExportGroup: {
841
+ type: PropType<{
842
+ dateValidate?: ApExportGroupDateValidate | undefined;
843
+ exportField?: boolean | {
844
+ key?: string;
845
+ convertField?: {
846
+ [key: string]: string[];
847
+ };
848
+ } | undefined;
849
+ }>;
850
+ default: () => {};
851
+ };
808
852
  aplusLocale: {
809
853
  type: PropType<LocaleType>;
810
854
  };
@@ -829,10 +873,6 @@ export declare const APConfigProvider: {
829
873
  type: PropType<downloadCenterTriggerConfig>;
830
874
  default: () => {};
831
875
  };
832
- exportField: {
833
- type: PropType<ExportField>;
834
- default: boolean;
835
- };
836
876
  scrollYDomName: {
837
877
  type: StringConstructor;
838
878
  };
@@ -884,10 +924,18 @@ export declare const APConfigProvider: {
884
924
  apFilePreview: {
885
925
  parserPlugin?: ApFilePreviewParser[] | undefined;
886
926
  };
927
+ apExportGroup: {
928
+ dateValidate?: ApExportGroupDateValidate | undefined;
929
+ exportField?: boolean | {
930
+ key?: string;
931
+ convertField?: {
932
+ [key: string]: string[];
933
+ };
934
+ } | undefined;
935
+ };
887
936
  api: ApiType;
888
937
  valueTypeMap: Record<string, ValueTypeRenderConfig>;
889
938
  downloadCenterTriggerConfig: downloadCenterTriggerConfig;
890
- exportField: ExportField;
891
939
  viewCacheOption: ViewCacheOption;
892
940
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & ( Plugin & (new (...args: any[]) => {
893
941
  $props: {
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vxe-table/es/locale/lang/en-US"),t={name:"en",ap:{common:{okText:"OK",cancelText:"Cancel",resetText:"Reset",queryText:"Search",expandText:"Unfold",closeText:"Put away",inputText:"Please enter",chooseText:"Please choose",redo:"Refresh",back:"Back",more:"More",all:"All",save:"Save"},field:{startDateText:"Start date",endDateText:"End date",today:"Today",yesterday:"Yesterday",thisWeek:"This week",lastWeek:"Last week",thisMonth:"This month",lastMonth:"Last month",thisQuarter:"This quarter",lastQuarter:"Last quarter",thisYear:"This year",lastYear:"Last year",lastXDays:"Last {day} days",chooseOnly:"Select only"},apForm:{search:{search:"Search",reset:"Reset",moreFilter:"More Filters",sorterTitle:"Customize filter layout",sorterDesc:"Drag to sort. Top items appear first.",sorterReset:"Restore Defaults",sorterConfirmBtn:"Confirm"}},apTable:{pagination:{totalLeftPrefix:"Total",totalLeftSuffix:"items",totalRightPrefix:"Page",totalRightSuffix:" "},setting:{title:"Custom Table",selectAll:"Select All",unSelectAll:"Deselect All",selectAllTip:"Please select the columns to display in the table.",sizeSmall:"Small",sizeNormal:"Normal",selectCount:"Selected fields ({count})",reset:"Reset",fixToLeft:"Fixed on the left",fixToRight:"Fixed on the right",unFixed:"Not fixed",delete:"Delete",saveAsTemplate:"Save as New Template",saveAndApply:"Save and Apply",modifyNotification:"The current template has been modified. You can save it as a new template.",templateSetting:"Column Configuration Template",templateName:"New Template Name",templateNamePlaceholder:"Please enter a template name"},paragraphEllipsis:{copy:"Copy",copySuccess:"Copied successfully"}},apUpload:{update:"Upload",pictureType:"Image type",videoType:"Video type",audioType:"Audio type",documentType:"Document type",allTypes:"All types",networkAnomaly:"Network abnormality",FailedToObtainOssTemporaryPermissions:"Failed to obtain temporary OSS permissions",pleasePass:"Please pass in",supportExtension:"Support extensions",uploadFile:"Upload files",fileInitializationException:"If the initial number of initialized files exceeds {maxCount}, subsequent uploaded files will be out of sync with the data",maxUploadFiles:"Upload a maximum of {maxCount} files",maxUploadPicture:"Upload a maximum of {maxCount} images",maxUploadFileSize:"The file size does not exceed {maxSize}MB",maxWarnUploadFileSize:"The file size is smaller than {maxSize}MB",maxUploadPictureSize:"The image size is smaller than {maxSize}MB",fileFormatNotSupported:"Files in this format are not supported",pictureFormatNotSupported:"Images in this format are not supported",imageParsingFailed:"Image parsing failed",clickOrDragUpload:"Click or drag the file",foldersNotSupported:"Do not support uploading folders"},apExportGroup:{exportError:"Export error",exportSelected:"Export selected",exportAll:"Export all",export:"Export",exportSuccess:"The task has been submitted,please go to the download center to check the progress"},apBatchAction:{selected:"Selected",piecesOfData:"Pieces of data",empty:"Empty"},apApBatchActionGroup:{batchOperation:"Batch operation"},workOrderModal:{createTickets:"Create ticket",submit:"Confirm",cancel:"Cancel",ticketsTitle:"Ticket Title",noEmpty:"No empty",pleaseEntry:"please enter (Within 300 words)",ticketsType:"Ticket Type",ticketsDetail:"Ticket Detail",ticketsLevel:"Priority",operationSuccess:"operate successfully",fileSizeMax:"Single file size limit",fileCountMax:"Limit the number to {x} at a time",fileLabel:"File Upload"},apTableModal:{titleSuffixOne:"You can add up to {maxCount},",titleSuffixTwo:"Added",titleSuffixThree:"",messageMaxCount:"You can select up to {maxCount} data entries",clear:"Clear",selected:"Selected"},apAttachment:{downloadall:"Download All",more:"More",all:"All"},apSizeInput:{length:"Length",width:"Width",height:"Height"},apExpandAlert:{expand:"Expand",collapse:"Collapse"},apAppendix:{downloadAll:"Download All",downloadFile:"Download file",previewFile:"Preview file",appendix:"Appendix",empty:"No data"},batchInputGroup:{popoverInputPlaceholder:"A maximum of {maxNum} entries can be entered in batches, separated by newlines"},apSummary:{total:"Total"},apView:{systemView:"System view",saveView:"Save view",maxTip:"The maximum number of views that can be saved has been reached. Please delete them before saving a new view",saveNewView:"Save as new wiew",newView:"New view",setDefault:"Default",viewName:"View name",notEmpty:"Cannot be empty",cancel:"Cancel",save:"Save",default:"Default",rename:"Rename",deleteTip:"Are you sure you want to delete this view?",ok:"Ok"},apCopy:{copySuccess:"Copy success",copyError:"Copy failed"},timeAgo:{ago:"Ago",late:"Late",justNow:"Now",second:"Second | Seconds",minute:"Minute | Minutes",hour:"Hour | Hours",yesterday:"Yesterday",tomorrow:"Tomorrow",days:"Days",lastMonth:"Last month",nextMonth:"Next month",months:"Months",lastYear:"Last year",nextYear:"Next year",years:"Years"},apFilePreview:{notPreview:"File cannot be previewed",notExist:"File does not exist"},...e}};exports.default=t;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vxe-table/es/locale/lang/en-US"),t={name:"en",ap:{common:{okText:"OK",cancelText:"Cancel",resetText:"Reset",queryText:"Search",expandText:"Unfold",closeText:"Put away",inputText:"Please enter",chooseText:"Please choose",redo:"Refresh",back:"Back",more:"More",all:"All",save:"Save"},field:{startDateText:"Start date",endDateText:"End date",today:"Today",yesterday:"Yesterday",thisWeek:"This week",lastWeek:"Last week",thisMonth:"This month",lastMonth:"Last month",thisQuarter:"This quarter",lastQuarter:"Last quarter",thisYear:"This year",lastYear:"Last year",lastXDays:"Last {day} days",chooseOnly:"Select only"},apForm:{search:{search:"Search",reset:"Reset",moreFilter:"More Filters",sorterTitle:"Customize filter layout",sorterDesc:"Drag to sort. Top items appear first.",sorterReset:"Restore Defaults",sorterConfirmBtn:"Confirm"}},apTable:{pagination:{totalLeftPrefix:"Total",totalLeftSuffix:"items",totalRightPrefix:"Page",totalRightSuffix:" "},setting:{title:"Custom Table",selectAll:"Select All",unSelectAll:"Deselect All",selectAllTip:"Please select the columns to display in the table.",sizeSmall:"Small",sizeNormal:"Normal",selectCount:"Selected fields ({count})",reset:"Reset",fixToLeft:"Fixed on the left",fixToRight:"Fixed on the right",unFixed:"Not fixed",delete:"Delete",saveAsTemplate:"Save as New Template",saveAndApply:"Save and Apply",modifyNotification:"The current template has been modified. You can save it as a new template.",templateSetting:"Column Configuration Template",templateName:"New Template Name",templateNamePlaceholder:"Please enter a template name"},paragraphEllipsis:{copy:"Copy",copySuccess:"Copied successfully"}},apUpload:{update:"Upload",pictureType:"Image type",videoType:"Video type",audioType:"Audio type",documentType:"Document type",allTypes:"All types",networkAnomaly:"Network abnormality",FailedToObtainOssTemporaryPermissions:"Failed to obtain temporary OSS permissions",pleasePass:"Please pass in",supportExtension:"Support extensions",uploadFile:"Upload files",fileInitializationException:"If the initial number of initialized files exceeds {maxCount}, subsequent uploaded files will be out of sync with the data",maxUploadFiles:"Upload a maximum of {maxCount} files",maxUploadPicture:"Upload a maximum of {maxCount} images",maxUploadFileSize:"The file size does not exceed {maxSize}MB",maxWarnUploadFileSize:"The file size is smaller than {maxSize}MB",maxUploadPictureSize:"The image size is smaller than {maxSize}MB",fileFormatNotSupported:"Files in this format are not supported",pictureFormatNotSupported:"Images in this format are not supported",imageParsingFailed:"Image parsing failed",clickOrDragUpload:"Click or drag the file",foldersNotSupported:"Do not support uploading folders"},apExportGroup:{exportError:"Export error",exportSelected:"Export selected",exportAll:"Export all",export:"Export",exportSuccess:"The task has been submitted,please go to the download center to check the progress",emptyTooltip:"You queried a long time span, this time you have exported the data for the last {maxDayRange} days",maxDayRangeTooltip:"Exceeding the {maxDayRange}-day data range! It has been automatically adjusted to data within {maxDayRange} days from the start time. For longer periods, please export in segments",maxMessage:"You can export up to {maxDayRange} days of data"},apBatchAction:{selected:"Selected",piecesOfData:"Pieces of data",empty:"Empty"},apApBatchActionGroup:{batchOperation:"Batch operation"},workOrderModal:{createTickets:"Create ticket",submit:"Confirm",cancel:"Cancel",ticketsTitle:"Ticket Title",noEmpty:"No empty",pleaseEntry:"please enter (Within 300 words)",ticketsType:"Ticket Type",ticketsDetail:"Ticket Detail",ticketsLevel:"Priority",operationSuccess:"operate successfully",fileSizeMax:"Single file size limit",fileCountMax:"Limit the number to {x} at a time",fileLabel:"File Upload"},apTableModal:{titleSuffixOne:"You can add up to {maxCount},",titleSuffixTwo:"Added",titleSuffixThree:"",messageMaxCount:"You can select up to {maxCount} data entries",clear:"Clear",selected:"Selected"},apAttachment:{downloadall:"Download All",more:"More",all:"All"},apSizeInput:{length:"Length",width:"Width",height:"Height"},apExpandAlert:{expand:"Expand",collapse:"Collapse"},apAppendix:{downloadAll:"Download All",downloadFile:"Download file",previewFile:"Preview file",appendix:"Appendix",empty:"No data"},batchInputGroup:{popoverInputPlaceholder:"A maximum of {maxNum} entries can be entered in batches, separated by newlines"},apSummary:{total:"Total"},apView:{systemView:"System view",saveView:"Save view",maxTip:"The maximum number of views that can be saved has been reached. Please delete them before saving a new view",saveNewView:"Save as new view",newView:"New view",setDefault:"Default",viewName:"View name",notEmpty:"Cannot be empty",cancel:"Cancel",save:"Save",default:"Default",rename:"Rename",deleteTip:"Are you sure you want to delete this view?",ok:"Ok"},apCopy:{copySuccess:"Copy success",copyError:"Copy failed"},timeAgo:{ago:"Ago",late:"Late",justNow:"Now",second:"Second | Seconds",minute:"Minute | Minutes",hour:"Hour | Hours",yesterday:"Yesterday",tomorrow:"Tomorrow",days:"Days",lastMonth:"Last month",nextMonth:"Next month",months:"Months",lastYear:"Last year",nextYear:"Next year",years:"Years"},apFilePreview:{notPreview:"File cannot be previewed",notExist:"File does not exist"},...e}};exports.default=t;
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vxe-table/es/locale/lang/zh-CN"),t={name:"zh-cn",ap:{common:{okText:"确认",cancelText:"取消",resetText:"重置",queryText:"查询",expandText:"展开",closeText:"收起",inputText:"请输入",chooseText:"请选择",redo:"刷新",back:"返回",more:"更多",all:"全部",save:"保存"},field:{startDateText:"开始日期",endDateText:"结束日期",today:"今日",yesterday:"昨日",thisWeek:"本周",lastWeek:"上周",thisMonth:"本月",lastMonth:"上月",thisQuarter:"本季度",lastQuarter:"上季度",thisYear:"今年",lastYear:"去年",lastXDays:"近{day}天",chooseOnly:"仅选此项"},modal:{restore:"还原",maximize:"最大化",close:"关闭"},countdown:{normalText:"获取验证码",sendText:"{sec}秒后重新获取"},apForm:{search:{search:"查询",reset:"重置",moreFilter:"更多筛选",sorterTitle:"筛选条件自定义布局",sorterDesc:"可拖动排序,越靠前的筛选项会优先展示在列表页",sorterReset:"恢复默认",sorterConfirmBtn:"确定"}},apTable:{pagination:{totalLeftPrefix:"共",totalLeftSuffix:"条记录",totalRightPrefix:"第",totalRightSuffix:"页"},setting:{title:"自定义表格",selectAll:"全选",unSelectAll:"取消全选",selectAllTip:"请选择需要展示在表格的字段",sizeSmall:"紧凑",sizeNormal:"正常",selectCount:"已选字段({count})",reset:"恢复默认",fixToLeft:"固定在左侧",fixToRight:"固定在右侧",unFixed:"不固定",delete:"删除",saveAsTemplate:"保存为新模板",saveAndApply:"保存并应用",modifyNotification:"当前模板存在变更,可保存为新模板",templateSetting:"列配置模板",templateName:"新模板名称",templateNamePlaceholder:"请输入模板名称"},paragraphEllipsis:{copy:"复制",copySuccess:"复制成功"}},apUpload:{update:"上传",pictureType:"图片类型",videoType:"视频类型",audioType:"音频类型",documentType:"文档类型",allTypes:"全部类型",networkAnomaly:"网络异常",FailedToObtainOssTemporaryPermissions:"获取oss临时权限失败",pleasePass:"请传入",supportExtension:"支持扩展名",uploadFile:"上传文件",fileInitializationException:"文件初始化个数超过{maxCount}个,后续上传的文件会与数据不同步",maxUploadFiles:"最多上传{maxCount}个文件",maxUploadPicture:"最多上传{maxCount}张图片",maxUploadFileSize:"文件大小不超过{maxSize}MB",maxWarnUploadFileSize:"文件大小小于{maxSize}MB",maxUploadPictureSize:"图片大小小于{maxSize}MB",fileFormatNotSupported:"不支持该格式的文件",pictureFormatNotSupported:"不支持该格式的图片",imageParsingFailed:"图片解析失败",clickOrDragUpload:"点击或将文件拖拽到这里上传",foldersNotSupported:"不支持上传文件夹"},apExportGroup:{exportError:"导出失败",exportSelected:"导出所选",exportAll:"导出全部",export:"导出",exportSuccess:"任务已提交,前往下载中心查看进度"},apBatchAction:{selected:"已选",piecesOfData:"条数据",empty:"清空"},apApBatchActionGroup:{batchOperation:"批量操作"},workOrderModal:{createTickets:"创建工单",submit:"确定",cancel:"取消",ticketsTitle:"工单标题",noEmpty:"不可为空",pleaseEntry:"请输入(300字以内)",ticketsType:"工单类型",ticketsDetail:"工单详情",ticketsLevel:"优先级",operationSuccess:"操作成功",fileSizeMax:"单个文件大小限制",fileCountMax:"单次数量限制 {x} 个",fileLabel:"上传附件"},apTableModal:{titleSuffixOne:"最多可添加{maxCount}个,",titleSuffixTwo:"已添加",titleSuffixThree:"个",messageMaxCount:"最多选择{maxCount}条数据",clear:"清空",selected:"已选"},apAttachment:{downloadall:"下载全部",more:"更多",all:"全部"},apSizeInput:{length:"长",width:"宽",height:"高"},apExpandAlert:{expand:"展开",collapse:"收起"},apAppendix:{downloadAll:"下载全部",downloadFile:"下载文件",previewFile:"预览文件",appendix:"附件",empty:"暂无数据"},batchInputGroup:{popoverInputPlaceholder:"支持批量输入,可用换行符分隔,最多输入{maxNum}条"},apSummary:{total:"合计"},apView:{systemView:"系统视图",saveView:"保存视图",maxTip:"视图已达保存上限,请先删除后再保存新视图",saveNewView:"保存新视图",newView:"新视图",setDefault:"设为默认",viewName:"视图名称",notEmpty:"不可为空",cancel:"取消",save:"保存",default:"默认",rename:"重命名",deleteTip:"确定删除该视图吗?",ok:"确定"},apCopy:{copySuccess:"复制成功",copyError:"复制失败"},timeAgo:{ago:"前",late:"后",justNow:"刚刚",second:"秒",minute:"分钟",hour:"小时",yesterday:"昨天",tomorrow:"明天",days:"天",lastMonth:"上个月",nextMonth:"下个月",months:"个月",lastYear:"去年",nextYear:"明年",years:"年"},apFilePreview:{notPreview:"暂不支持预览该格式",notExist:"文件不存在"},...e}};exports.default=t;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vxe-table/es/locale/lang/zh-CN"),t={name:"zh-cn",ap:{common:{okText:"确认",cancelText:"取消",resetText:"重置",queryText:"查询",expandText:"展开",closeText:"收起",inputText:"请输入",chooseText:"请选择",redo:"刷新",back:"返回",more:"更多",all:"全部",save:"保存"},field:{startDateText:"开始日期",endDateText:"结束日期",today:"今日",yesterday:"昨日",thisWeek:"本周",lastWeek:"上周",thisMonth:"本月",lastMonth:"上月",thisQuarter:"本季度",lastQuarter:"上季度",thisYear:"今年",lastYear:"去年",lastXDays:"近{day}天",chooseOnly:"仅选此项"},modal:{restore:"还原",maximize:"最大化",close:"关闭"},countdown:{normalText:"获取验证码",sendText:"{sec}秒后重新获取"},apForm:{search:{search:"查询",reset:"重置",moreFilter:"更多筛选",sorterTitle:"筛选条件自定义布局",sorterDesc:"可拖动排序,越靠前的筛选项会优先展示在列表页",sorterReset:"恢复默认",sorterConfirmBtn:"确定"}},apTable:{pagination:{totalLeftPrefix:"共",totalLeftSuffix:"条记录",totalRightPrefix:"第",totalRightSuffix:"页"},setting:{title:"自定义表格",selectAll:"全选",unSelectAll:"取消全选",selectAllTip:"请选择需要展示在表格的字段",sizeSmall:"紧凑",sizeNormal:"正常",selectCount:"已选字段({count})",reset:"恢复默认",fixToLeft:"固定在左侧",fixToRight:"固定在右侧",unFixed:"不固定",delete:"删除",saveAsTemplate:"保存为新模板",saveAndApply:"保存并应用",modifyNotification:"当前模板存在变更,可保存为新模板",templateSetting:"列配置模板",templateName:"新模板名称",templateNamePlaceholder:"请输入模板名称"},paragraphEllipsis:{copy:"复制",copySuccess:"复制成功"}},apUpload:{update:"上传",pictureType:"图片类型",videoType:"视频类型",audioType:"音频类型",documentType:"文档类型",allTypes:"全部类型",networkAnomaly:"网络异常",FailedToObtainOssTemporaryPermissions:"获取oss临时权限失败",pleasePass:"请传入",supportExtension:"支持扩展名",uploadFile:"上传文件",fileInitializationException:"文件初始化个数超过{maxCount}个,后续上传的文件会与数据不同步",maxUploadFiles:"最多上传{maxCount}个文件",maxUploadPicture:"最多上传{maxCount}张图片",maxUploadFileSize:"文件大小不超过{maxSize}MB",maxWarnUploadFileSize:"文件大小小于{maxSize}MB",maxUploadPictureSize:"图片大小小于{maxSize}MB",fileFormatNotSupported:"不支持该格式的文件",pictureFormatNotSupported:"不支持该格式的图片",imageParsingFailed:"图片解析失败",clickOrDragUpload:"点击或将文件拖拽到这里上传",foldersNotSupported:"不支持上传文件夹"},apExportGroup:{exportError:"导出失败",exportSelected:"导出所选",exportAll:"导出全部",export:"导出",exportSuccess:"任务已提交,前往下载中心查看进度",emptyTooltip:"您查询的时间跨度较长,本次已为您导出最近{maxDayRange}天的数据",maxDayRangeTooltip:"超出{maxDayRange}天数据范围!已自动调整为开始时间起{maxDayRange}天内的数据,如需更长周期请分段导出",maxMessage:"最多可导{maxDayRange}天数据"},apBatchAction:{selected:"已选",piecesOfData:"条数据",empty:"清空"},apApBatchActionGroup:{batchOperation:"批量操作"},workOrderModal:{createTickets:"创建工单",submit:"确定",cancel:"取消",ticketsTitle:"工单标题",noEmpty:"不可为空",pleaseEntry:"请输入(300字以内)",ticketsType:"工单类型",ticketsDetail:"工单详情",ticketsLevel:"优先级",operationSuccess:"操作成功",fileSizeMax:"单个文件大小限制",fileCountMax:"单次数量限制 {x} 个",fileLabel:"上传附件"},apTableModal:{titleSuffixOne:"最多可添加{maxCount}个,",titleSuffixTwo:"已添加",titleSuffixThree:"个",messageMaxCount:"最多选择{maxCount}条数据",clear:"清空",selected:"已选"},apAttachment:{downloadall:"下载全部",more:"更多",all:"全部"},apSizeInput:{length:"长",width:"宽",height:"高"},apExpandAlert:{expand:"展开",collapse:"收起"},apAppendix:{downloadAll:"下载全部",downloadFile:"下载文件",previewFile:"预览文件",appendix:"附件",empty:"暂无数据"},batchInputGroup:{popoverInputPlaceholder:"支持批量输入,可用换行符分隔,最多输入{maxNum}条"},apSummary:{total:"合计"},apView:{systemView:"系统视图",saveView:"保存视图",maxTip:"视图已达保存上限,请先删除后再保存新视图",saveNewView:"保存新视图",newView:"新视图",setDefault:"设为默认",viewName:"视图名称",notEmpty:"不可为空",cancel:"取消",save:"保存",default:"默认",rename:"重命名",deleteTip:"确定删除该视图吗?",ok:"确定"},apCopy:{copySuccess:"复制成功",copyError:"复制失败"},timeAgo:{ago:"前",late:"后",justNow:"刚刚",second:"秒",minute:"分钟",hour:"小时",yesterday:"昨天",tomorrow:"明天",days:"天",lastMonth:"上个月",nextMonth:"下个月",months:"个月",lastYear:"去年",nextYear:"明年",years:"年"},apFilePreview:{notPreview:"暂不支持预览该格式",notExist:"文件不存在"},...e}};exports.default=t;
@@ -1,2 +1,2 @@
1
- declare const _default: "7.13.1";
1
+ declare const _default: "7.13.2";
2
2
  export default _default;
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="7.13.1";exports.default=e;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="7.13.2";exports.default=e;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aplus-frontend/ui",
3
- "version": "7.13.1",
3
+ "version": "7.13.2",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "files": [