@dt-frames/ui 2.0.1 → 2.0.3
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/es/assets/data/icons/actions.d.ts +1 -0
- package/es/assets/data/icons/actions.ts +423 -0
- package/es/assets/data/icons/code.d.ts +1 -0
- package/es/assets/data/icons/code.ts +10 -0
- package/es/assets/data/icons/commuticate.d.ts +1 -0
- package/es/assets/data/icons/commuticate.ts +182 -0
- package/es/assets/data/icons/currency.d.ts +1 -0
- package/es/assets/data/icons/currency.ts +44 -0
- package/es/assets/data/icons/devices.d.ts +1 -0
- package/es/assets/data/icons/devices.ts +126 -0
- package/es/assets/data/icons/edit.d.ts +1 -0
- package/es/assets/data/icons/edit.ts +163 -0
- package/es/assets/data/icons/file.d.ts +1 -0
- package/es/assets/data/icons/file.ts +99 -0
- package/es/assets/data/icons/math.d.ts +1 -0
- package/es/assets/data/icons/math.ts +53 -0
- package/es/assets/data/icons/message.d.ts +1 -0
- package/es/assets/data/icons/message.ts +68 -0
- package/es/assets/data/icons/navigate.d.ts +1 -0
- package/es/assets/data/icons/navigate.ts +181 -0
- package/es/assets/data/icons/other.d.ts +1 -0
- package/es/assets/data/icons/other.ts +324 -0
- package/es/assets/data/index.d.ts +4 -0
- package/es/assets/data/index.ts +58 -0
- package/es/assets/icons/iconfont.css +7266 -0
- package/es/assets/icons/iconfont.eot +0 -0
- package/es/assets/icons/iconfont.svg +5445 -0
- package/es/assets/icons/iconfont.ttf +0 -0
- package/es/assets/icons/iconfont.woff +0 -0
- package/es/assets/icons/iconfont.woff2 +0 -0
- package/es/assets/imgs/header/avatar.png +0 -0
- package/es/assets/imgs/logo/logo.png +0 -0
- package/es/assets/imgs/table/empty.png +0 -0
- package/es/assets/locales/en.d.ts +101 -0
- package/es/assets/locales/en.ts +101 -0
- package/es/assets/locales/index.d.ts +2 -0
- package/es/assets/locales/index.ts +5 -0
- package/es/assets/locales/zh.d.ts +103 -0
- package/es/assets/locales/zh.ts +103 -0
- package/es/components/container/index.d.ts +94 -0
- package/es/components/container/index.js +290 -0
- package/es/components/container/index.less +64 -0
- package/es/components/container/src/components/bar.d.ts +14 -0
- package/es/components/container/src/components/scroll-bar.d.ts +70 -0
- package/es/components/container/src/hooks/scroll.d.ts +10 -0
- package/es/components/container/src/scroll-container.d.ts +76 -0
- package/es/components/container/src/slot-container.d.ts +20 -0
- package/es/components/container/src/types/scroll.type.d.ts +22 -0
- package/es/components/container/src/utils/scroll.d.ts +5 -0
- package/es/components/curd/index.d.ts +2 -0
- package/es/components/curd/index.js +3120 -0
- package/es/components/curd/src/components/Curd.d.ts +1246 -0
- package/es/components/curd/src/hooks/useCurd.d.ts +112 -0
- package/es/components/curd/src/props.d.ts +187 -0
- package/es/components/curd/src/types/curd.type.d.ts +19 -0
- package/es/components/drawer/index.d.ts +8039 -0
- package/es/components/drawer/index.js +838 -0
- package/es/components/drawer/index.less +10 -0
- package/es/components/drawer/src/components/DrawerFooter.d.ts +139 -0
- package/es/components/drawer/src/components/DrawerHeader.d.ts +11 -0
- package/es/components/drawer/src/hooks/useDrawer.d.ts +3 -0
- package/es/components/drawer/src/index.d.ts +8041 -0
- package/es/components/drawer/src/props.d.ts +64 -0
- package/es/components/drawer/src/types/index.type.d.ts +48 -0
- package/es/components/form/index.d.ts +3219 -0
- package/es/components/form/index.js +1896 -0
- package/es/components/form/index.less +141 -0
- package/es/components/form/src/components/FormButtons.d.ts +88 -0
- package/es/components/form/src/components/FormItem.d.ts +165 -0
- package/es/components/form/src/components/componentMap.d.ts +4 -0
- package/es/components/form/src/components/formIcon.d.ts +1231 -0
- package/es/components/form/src/components/formInputUseDialog.d.ts +911 -0
- package/es/components/form/src/components/index.d.ts +4 -0
- package/es/components/form/src/components/radioButton.d.ts +34 -0
- package/es/components/form/src/enums/index.d.ts +7 -0
- package/es/components/form/src/hooks/helper.d.ts +14 -0
- package/es/components/form/src/hooks/useForm.d.ts +6 -0
- package/es/components/form/src/hooks/useFormActions.d.ts +12 -0
- package/es/components/form/src/hooks/useFormEvent.d.ts +25 -0
- package/es/components/form/src/hooks/useFormValue.d.ts +3 -0
- package/es/components/form/src/hooks/useFormValues.d.ts +11 -0
- package/es/components/form/src/hooks/useLabelWidth.d.ts +22 -0
- package/es/components/form/src/index.d.ts +2965 -0
- package/es/components/form/src/props.d.ts +133 -0
- package/es/components/form/src/types/actions.type.d.ts +15 -0
- package/es/components/form/src/types/form.type.d.ts +70 -0
- package/es/components/icons/index.d.ts +497 -0
- package/es/components/icons/index.js +1969 -0
- package/es/components/icons/index.less +42 -0
- package/es/components/icons/src/pick-icon.d.ts +455 -0
- package/es/components/icons/src/svg-icon.d.ts +44 -0
- package/es/components/modal/index.d.ts +3 -0
- package/es/components/modal/index.js +1193 -0
- package/es/components/modal/index.less +54 -0
- package/es/components/modal/src/components/CloseIcon.d.ts +40 -0
- package/es/components/modal/src/components/Modal.d.ts +108 -0
- package/es/components/modal/src/components/ModalFooter.d.ts +139 -0
- package/es/components/modal/src/components/ModalWrap.d.ts +153 -0
- package/es/components/modal/src/hooks/useDrag.d.ts +7 -0
- package/es/components/modal/src/hooks/useFullScreen.d.ts +6 -0
- package/es/components/modal/src/hooks/useModal.d.ts +5 -0
- package/es/components/modal/src/index.d.ts +774 -0
- package/es/components/modal/src/props.d.ts +100 -0
- package/es/components/modal/src/types/modal.type.d.ts +17 -0
- package/es/components/source/hooks/useDownload.d.ts +8 -0
- package/es/components/source/hooks/useSource.d.ts +40 -0
- package/es/components/source/index.d.ts +2 -0
- package/es/components/source/index.js +332 -0
- package/es/components/source/types/source.type.d.ts +37 -0
- package/es/components/source/utils/index.d.ts +8 -0
- package/es/components/table/index.d.ts +3 -0
- package/es/components/table/index.js +3983 -0
- package/es/components/table/index.less +192 -0
- package/es/components/table/src/components/TableAction.d.ts +70 -0
- package/es/components/table/src/components/TableHeader.d.ts +1136 -0
- package/es/components/table/src/components/TableRender.d.ts +17 -0
- package/es/components/table/src/components/editTable/CellComponent.d.ts +22 -0
- package/es/components/table/src/components/editTable/EditTableCell.d.ts +93 -0
- package/es/components/table/src/components/editTable/componentMap.d.ts +4 -0
- package/es/components/table/src/components/editTable/index.d.ts +9 -0
- package/es/components/table/src/components/editTable/props.d.ts +27 -0
- package/es/components/table/src/components/tableSetting/Column.d.ts +69 -0
- package/es/components/table/src/components/tableSetting/Download.d.ts +922 -0
- package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +888 -0
- package/es/components/table/src/components/tableSetting/Fullscreen.d.ts +22 -0
- package/es/components/table/src/components/tableSetting/index.d.ts +1030 -0
- package/es/components/table/src/hooks/useColumns.d.ts +14 -0
- package/es/components/table/src/hooks/useCustomRow.d.ts +20 -0
- package/es/components/table/src/hooks/useDataSource.d.ts +15 -0
- package/es/components/table/src/hooks/useHeader.d.ts +8 -0
- package/es/components/table/src/hooks/useHeaderCode.d.ts +3 -0
- package/es/components/table/src/hooks/useLoading.d.ts +6 -0
- package/es/components/table/src/hooks/usePagination.d.ts +7 -0
- package/es/components/table/src/hooks/useRow.d.ts +5 -0
- package/es/components/table/src/hooks/useRowSelection.d.ts +12 -0
- package/es/components/table/src/hooks/useTable.d.ts +9 -0
- package/es/components/table/src/hooks/useTableInstance.d.ts +16 -0
- package/es/components/table/src/hooks/useTableScroll.d.ts +13 -0
- package/es/components/table/src/index.d.ts +644 -0
- package/es/components/table/src/props.d.ts +185 -0
- package/es/components/table/src/types/actions.type.d.ts +21 -0
- package/es/components/table/src/types/header.type.d.ts +23 -0
- package/es/components/table/src/types/table.type.d.ts +98 -0
- package/es/directives/icon.d.ts +2 -0
- package/es/directives/index.d.ts +7 -0
- package/es/directives/index.js +2015 -0
- package/es/directives/permission.d.ts +2 -0
- package/es/global.d.ts +7 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +4 -0
- package/es/theme/index.d.ts +10 -0
- package/es/theme/index.js +3255 -0
- package/es/theme/index.less +603 -0
- package/es/theme/src/components/content/index.d.ts +27 -0
- package/es/theme/src/components/feature/back-top.d.ts +5 -0
- package/es/theme/src/components/feature/index.d.ts +7 -0
- package/es/theme/src/components/footer/index.d.ts +31 -0
- package/es/theme/src/components/header/components/bread-crumb.d.ts +6 -0
- package/es/theme/src/components/header/components/fullscreen.d.ts +5 -0
- package/es/theme/src/components/header/components/index.d.ts +11 -0
- package/es/theme/src/components/header/components/lang-picker.d.ts +23 -0
- package/es/theme/src/components/header/components/logo.d.ts +35 -0
- package/es/theme/src/components/header/components/menu-filter.d.ts +22 -0
- package/es/theme/src/components/header/components/notify.d.ts +24 -0
- package/es/theme/src/components/header/components/setting-theme.d.ts +223 -0
- package/es/theme/src/components/header/components/size.d.ts +282 -0
- package/es/theme/src/components/header/components/theme-drawer/feature.d.ts +138 -0
- package/es/theme/src/components/header/components/theme-drawer/index.d.ts +3 -0
- package/es/theme/src/components/header/components/theme-drawer/menu-type.d.ts +16 -0
- package/es/theme/src/components/header/components/theme-drawer/select.d.ts +58 -0
- package/es/theme/src/components/header/components/theme-drawer/switch.d.ts +49 -0
- package/es/theme/src/components/header/components/trigger.d.ts +10 -0
- package/es/theme/src/components/header/components/user-info.d.ts +37 -0
- package/es/theme/src/components/header/helper/change-theme.d.ts +13 -0
- package/es/theme/src/components/header/helper/menu-tree.d.ts +3 -0
- package/es/theme/src/components/header/index.d.ts +699 -0
- package/es/theme/src/components/header/multiple-header.d.ts +785 -0
- package/es/theme/src/components/sider/components/basic-menu/basic-menu-item.d.ts +62 -0
- package/es/theme/src/components/sider/components/basic-menu/basic-menu.d.ts +207 -0
- package/es/theme/src/components/sider/components/basic-menu/basic-sub-menu-item.d.ts +127 -0
- package/es/theme/src/components/sider/components/basic-menu/menu-item-content.d.ts +26 -0
- package/es/theme/src/components/sider/components/drag-bar.d.ts +14 -0
- package/es/theme/src/components/sider/components/layout-menu.d.ts +22 -0
- package/es/theme/src/components/sider/components/props.d.ts +69 -0
- package/es/theme/src/components/sider/components/sider-trigger.d.ts +18 -0
- package/es/theme/src/components/sider/helper/sider.d.ts +12 -0
- package/es/theme/src/components/sider/helper/split-menu.d.ts +10 -0
- package/es/theme/src/components/sider/index.d.ts +70 -0
- package/es/theme/src/components/tabs/components/TabContent.d.ts +6 -0
- package/es/theme/src/components/tabs/components/TabRedo.d.ts +21 -0
- package/es/theme/src/components/tabs/components/index.d.ts +3 -0
- package/es/theme/src/components/tabs/hooks/useMultifyTabs.d.ts +7 -0
- package/es/theme/src/components/tabs/hooks/useTabDropdown.d.ts +6 -0
- package/es/theme/src/components/tabs/index.d.ts +63 -0
- package/es/theme/src/components/tabs/types/tabs.type.d.ts +7 -0
- package/es/theme/src/enums/index.d.ts +1 -0
- package/es/theme/src/enums/theme.enum.d.ts +33 -0
- package/es/theme/src/hooks/index.d.ts +6 -0
- package/es/theme/src/hooks/useDragLine.d.ts +2 -0
- package/es/theme/src/hooks/useHeader.d.ts +25 -0
- package/es/theme/src/hooks/useMenu.d.ts +27 -0
- package/es/theme/src/hooks/useMultifyTab.d.ts +7 -0
- package/es/theme/src/hooks/useOpenKeys.d.ts +7 -0
- package/es/theme/src/hooks/useTheme.d.ts +9 -0
- package/es/theme/src/index.d.ts +1643 -0
- package/es/theme/src/setting/theme.setting.d.ts +2 -0
- package/es/theme/src/stores/index.d.ts +3 -0
- package/es/theme/src/stores/routeReuse.store.d.ts +23 -0
- package/es/theme/src/stores/theme.store.d.ts +15 -0
- package/es/theme/src/types/index.d.ts +3 -0
- package/es/theme/src/types/menu.type.d.ts +15 -0
- package/es/theme/src/types/theme.type.d.ts +60 -0
- package/es/utils/withInstall.d.ts +4 -0
- package/index.d.ts +10 -0
- package/index.js +34 -0
- package/package.json +3 -6
- package/tailwind.config.cjs +11 -0
- package/tsconfig.json +41 -0
- package/tsconfig.node.json +9 -0
- package/vite.config.ts +51 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
export declare const EN: {
|
|
2
|
+
UI: {
|
|
3
|
+
ADD: string;
|
|
4
|
+
DELETE_CONFIRM: string;
|
|
5
|
+
CONFIRM_DELETE: string;
|
|
6
|
+
NEED_CURD: string;
|
|
7
|
+
EDIT: string;
|
|
8
|
+
EMPTY: string;
|
|
9
|
+
EMPTY_URL: string;
|
|
10
|
+
MULTIFY_DELETE_CONFIRM: string;
|
|
11
|
+
CONFIRM_MULTIFY_DELETE: string;
|
|
12
|
+
ADVANCED: string;
|
|
13
|
+
EXPAND: string;
|
|
14
|
+
SELECT_ICON: string;
|
|
15
|
+
MUSE_FUNCTION: string;
|
|
16
|
+
NEED_RENDER: string;
|
|
17
|
+
SEARCH: string;
|
|
18
|
+
RESET: string;
|
|
19
|
+
PLEASE_INPUT: string;
|
|
20
|
+
PLEASE_SELECT: string;
|
|
21
|
+
PLEASE_SET_ICON: string;
|
|
22
|
+
INPUT_FILTER: string;
|
|
23
|
+
EXIT_FULLSCREEN: string;
|
|
24
|
+
FULLSCREEN: string;
|
|
25
|
+
SAVE: string;
|
|
26
|
+
CLOSE: string;
|
|
27
|
+
ADD_SUCCESS: string;
|
|
28
|
+
UPDATE_SUCCESS: string;
|
|
29
|
+
MULTIFY: string;
|
|
30
|
+
DELETE_SUCCESS: string;
|
|
31
|
+
COLUMN_CONTROL: string;
|
|
32
|
+
COLUMN_SHOW: string;
|
|
33
|
+
INDEX: string;
|
|
34
|
+
CHECKBOX: string;
|
|
35
|
+
FIXED_TO_LEFT: string;
|
|
36
|
+
FIXED_TO_RIGHT: string;
|
|
37
|
+
EXPORT: string;
|
|
38
|
+
EXPORT_CURRENT_PAGE: string;
|
|
39
|
+
EXPORT_SELECT_COLUMN: string;
|
|
40
|
+
EXPORT_ALL: string;
|
|
41
|
+
SELECT_ALL: string;
|
|
42
|
+
SETTING_EXPORT_COLUMN: string;
|
|
43
|
+
NO_EXPORT_COLUMN: string;
|
|
44
|
+
NUMBER: string;
|
|
45
|
+
ACTIONS: string;
|
|
46
|
+
TOTAL_PAGE: string;
|
|
47
|
+
FILTER: string;
|
|
48
|
+
EXPAND_ALL: string;
|
|
49
|
+
COLLAPSE_ALL: string;
|
|
50
|
+
SELECT_ALL1: string;
|
|
51
|
+
CANCEL_SELECT_ALL: string;
|
|
52
|
+
LEVEL_CONNECTION: string;
|
|
53
|
+
LEVEL_SOLATE: string;
|
|
54
|
+
LOADING: string;
|
|
55
|
+
SUPPORT_FILES: string;
|
|
56
|
+
MAX_SIZE: string;
|
|
57
|
+
MAX_NUMBER: string;
|
|
58
|
+
SUPPORT_TYPES: string;
|
|
59
|
+
FILE_UPLOAD: string;
|
|
60
|
+
FILE_NAME: string;
|
|
61
|
+
FILE_STATUS: string;
|
|
62
|
+
PREVIEW: string;
|
|
63
|
+
DELETE: string;
|
|
64
|
+
HISTORY_UPLOAD: string;
|
|
65
|
+
MAX_MB: string;
|
|
66
|
+
PRE_UPLOAD: string;
|
|
67
|
+
COMPANY_NAME: string;
|
|
68
|
+
FILTER_MORE: string;
|
|
69
|
+
LARGE_SIZE: string;
|
|
70
|
+
MIDDLE_SIZE: string;
|
|
71
|
+
SMALL_SIZE: string;
|
|
72
|
+
MODIFY_PASSWORD: string;
|
|
73
|
+
LOGIN_OUT: string;
|
|
74
|
+
CLOSE_CURRENT_TAG: string;
|
|
75
|
+
CLOSE_LEFT_TAGS: string;
|
|
76
|
+
CLOSE_RIGHT_TAGS: string;
|
|
77
|
+
CLOSE_OTHER_TAGS: string;
|
|
78
|
+
CLOSE_ALL_TAGE: string;
|
|
79
|
+
SETTING_THEME: string;
|
|
80
|
+
PROJECT_SETTING: string;
|
|
81
|
+
NAV_MODE: string;
|
|
82
|
+
PAGE_SHOW: string;
|
|
83
|
+
COPY: string;
|
|
84
|
+
DRAWER_TIPS: string;
|
|
85
|
+
FULL: string;
|
|
86
|
+
FIXED: string;
|
|
87
|
+
BREAD_CURB: string;
|
|
88
|
+
MENU_FILTER: string;
|
|
89
|
+
NOTICE: string;
|
|
90
|
+
SIZE: string;
|
|
91
|
+
SHOW_FULLE: string;
|
|
92
|
+
LOCAL: string;
|
|
93
|
+
ROUTE_REUSE: string;
|
|
94
|
+
SHOW_FOOTER: string;
|
|
95
|
+
CONTENT_FIXED_WIDTH: string;
|
|
96
|
+
ON: string;
|
|
97
|
+
OFF: string;
|
|
98
|
+
UNKNOWN_ROUTE: string;
|
|
99
|
+
COPY_SUCCESS: string;
|
|
100
|
+
};
|
|
101
|
+
};
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
export const EN = {
|
|
2
|
+
"UI": {
|
|
3
|
+
"ADD": "Add ",
|
|
4
|
+
"DELETE_CONFIRM": "Delete Confirm",
|
|
5
|
+
"CONFIRM_DELETE": "Confirm that you want to delete the selected data?",
|
|
6
|
+
"NEED_CURD": "Missing curd function configuration, pass the curd parameter returned by useSource to the useCurd configuration option!",
|
|
7
|
+
"EDIT": "Edit ",
|
|
8
|
+
"EMPTY": "No Selected Data Yet!",
|
|
9
|
+
"EMPTY_URL": "Request Url Can Not Empty!",
|
|
10
|
+
"MULTIFY_DELETE_CONFIRM": "Batch Deletion Confirmation",
|
|
11
|
+
"CONFIRM_MULTIFY_DELETE": "Confirm that you want to delete the selected data in batches?",
|
|
12
|
+
"ADVANCED": "Retract",
|
|
13
|
+
"EXPAND": "Expand",
|
|
14
|
+
"SELECT_ICON": "Select Icon",
|
|
15
|
+
"MUSE_FUNCTION": "openDialog must be a fouction",
|
|
16
|
+
"NEED_RENDER": "Configure the render function",
|
|
17
|
+
"SEARCH": "Search",
|
|
18
|
+
"RESET": "Reset",
|
|
19
|
+
"PLEASE_INPUT": "Please Input",
|
|
20
|
+
"PLEASE_SELECT": "Please Select",
|
|
21
|
+
"PLEASE_SET_ICON": "Please Set The Icon",
|
|
22
|
+
"INPUT_FILTER": "Enter Filter Criteria",
|
|
23
|
+
"EXIT_FULLSCREEN": "Exit Full Screen",
|
|
24
|
+
"FULLSCREEN": "Full Screen",
|
|
25
|
+
"SAVE": "Save",
|
|
26
|
+
"CLOSE": "Close",
|
|
27
|
+
"ADD_SUCCESS": "Add Success!",
|
|
28
|
+
"UPDATE_SUCCESS": "Update data successfully!",
|
|
29
|
+
"MULTIFY": "Batch",
|
|
30
|
+
"DELETE_SUCCESS": "Successfully delete!",
|
|
31
|
+
"COLUMN_CONTROL": "Column Control",
|
|
32
|
+
"COLUMN_SHOW": "Column Show",
|
|
33
|
+
"INDEX": "Serial Number",
|
|
34
|
+
"CHECKBOX": "Checkbox",
|
|
35
|
+
"FIXED_TO_LEFT": "Fixed to the left",
|
|
36
|
+
"FIXED_TO_RIGHT": "Fixed to the right",
|
|
37
|
+
"EXPORT": "Export",
|
|
38
|
+
"EXPORT_CURRENT_PAGE": "Export the current page",
|
|
39
|
+
"EXPORT_SELECT_COLUMN": "Export Selected columns",
|
|
40
|
+
"EXPORT_ALL": "Export all columns",
|
|
41
|
+
"SELECT_ALL": "Select All",
|
|
42
|
+
"SETTING_EXPORT_COLUMN": "Setting the export column",
|
|
43
|
+
"NO_EXPORT_COLUMN": "There are no exported columns!",
|
|
44
|
+
"NUMBER": "Number",
|
|
45
|
+
"ACTIONS": "Actions",
|
|
46
|
+
"TOTAL_PAGE": "Total {total}",
|
|
47
|
+
"FILTER": "Filter",
|
|
48
|
+
"EXPAND_ALL": "Expand All",
|
|
49
|
+
"COLLAPSE_ALL": "Collapse All",
|
|
50
|
+
"SELECT_ALL1": "Select All",
|
|
51
|
+
"CANCEL_SELECT_ALL": "Cancel Select All",
|
|
52
|
+
"LEVEL_CONNECTION": "Level Connection",
|
|
53
|
+
"LEVEL_SOLATE": "Independent Hierarchy",
|
|
54
|
+
"LOADING": "Loading...",
|
|
55
|
+
"SUPPORT_FILES": "Support {message} format",
|
|
56
|
+
"MAX_SIZE": "Not exceeding {maxSize}M",
|
|
57
|
+
"MAX_NUMBER": "A maximum of {maxNumber} files can be selected",
|
|
58
|
+
"SUPPORT_TYPES": "Upload Types: pptx、doc、jpg、jpeg、png、bmp、gif、xls、xlsx、txt、rar、zip、7z、tar、gz",
|
|
59
|
+
"FILE_UPLOAD": "Files Upload",
|
|
60
|
+
"FILE_NAME": "File Name",
|
|
61
|
+
"FILE_STATUS": "Upload Status",
|
|
62
|
+
"PREVIEW": "Preview",
|
|
63
|
+
"DELETE": "Delete",
|
|
64
|
+
"HISTORY_UPLOAD": "History Upload",
|
|
65
|
+
"MAX_MB": "Only files up to {maxSize}MB can be uploaded!",
|
|
66
|
+
"PRE_UPLOAD": "To Upload",
|
|
67
|
+
"COMPANY_NAME": "Longi Co overseas tax system",
|
|
68
|
+
"FILTER_MORE": "Menu Search...",
|
|
69
|
+
"LARGE_SIZE": "Large Size",
|
|
70
|
+
"MIDDLE_SIZE": "Middle Size",
|
|
71
|
+
"SMALL_SIZE": "Small Size",
|
|
72
|
+
"MODIFY_PASSWORD": "Modify Password",
|
|
73
|
+
"LOGIN_OUT": "Log out",
|
|
74
|
+
"CLOSE_CURRENT_TAG": "Close the current tab",
|
|
75
|
+
"CLOSE_LEFT_TAGS": "Close the left tab",
|
|
76
|
+
"CLOSE_RIGHT_TAGS": "Close the right tab",
|
|
77
|
+
"CLOSE_OTHER_TAGS": "Close other tabs",
|
|
78
|
+
"CLOSE_ALL_TAGE": "Close All",
|
|
79
|
+
"SETTING_THEME": "Style Settings",
|
|
80
|
+
"PROJECT_SETTING": "Project Configuration",
|
|
81
|
+
"NAV_MODE": "Navigation bar mode",
|
|
82
|
+
"PAGE_SHOW": "Interface Display",
|
|
83
|
+
"COPY": "Copy",
|
|
84
|
+
"DRAWER_TIPS": "The function mainly real-time preview layout effect, more complete configuration in the SRC/core/Settings/theme.ts. The layout preview function will be turned off in production.",
|
|
85
|
+
"FULL": "Flow-based",
|
|
86
|
+
"FIXED": "Fixed width",
|
|
87
|
+
"BREAD_CURB": "Bread crumbs",
|
|
88
|
+
"MENU_FILTER": "Menu search",
|
|
89
|
+
"NOTICE": "Notification",
|
|
90
|
+
"SIZE": "Size",
|
|
91
|
+
"SHOW_FULLE": "Page full screen",
|
|
92
|
+
"LOCAL": "Internationalization",
|
|
93
|
+
"ROUTE_REUSE": "Routing reuse",
|
|
94
|
+
"SHOW_FOOTER": "Show Footer",
|
|
95
|
+
"CONTENT_FIXED_WIDTH": "Content area width",
|
|
96
|
+
"ON": "On",
|
|
97
|
+
"OFF": "Off",
|
|
98
|
+
"UNKNOWN_ROUTE": "Unknown route",
|
|
99
|
+
"COPY_SUCCESS": "Copy Success!"
|
|
100
|
+
}
|
|
101
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
export declare const ZH: {
|
|
2
|
+
UI: {
|
|
3
|
+
ADD: string;
|
|
4
|
+
DELETE_CONFIRM: string;
|
|
5
|
+
CONFIRM_DELETE: string;
|
|
6
|
+
NEED_CURD: string;
|
|
7
|
+
EDIT: string;
|
|
8
|
+
EMPTY: string;
|
|
9
|
+
EMPTY_URL: string;
|
|
10
|
+
MULTIFY_DELETE_CONFIRM: string;
|
|
11
|
+
CONFIRM_MULTIFY_DELETE: string;
|
|
12
|
+
ADVANCED: string;
|
|
13
|
+
EXPAND: string;
|
|
14
|
+
SELECT_ICON: string;
|
|
15
|
+
MUSE_FUNCTION: string;
|
|
16
|
+
NEED_RENDER: string;
|
|
17
|
+
SEARCH: string;
|
|
18
|
+
RESET: string;
|
|
19
|
+
PLEASE_INPUT: string;
|
|
20
|
+
PLEASE_SELECT: string;
|
|
21
|
+
PLEASE_SET_ICON: string;
|
|
22
|
+
INPUT_FILTER: string;
|
|
23
|
+
EXIT_FULLSCREEN: string;
|
|
24
|
+
FULLSCREEN: string;
|
|
25
|
+
SAVE: string;
|
|
26
|
+
CLOSE: string;
|
|
27
|
+
ADD_SUCCESS: string;
|
|
28
|
+
UPDATE_SUCCESS: string;
|
|
29
|
+
MULTIFY: string;
|
|
30
|
+
DELETE_SUCCESS: string;
|
|
31
|
+
COLUMN_CONTROL: string;
|
|
32
|
+
COLUMN_SHOW: string;
|
|
33
|
+
INDEX: string;
|
|
34
|
+
CHECKBOX: string;
|
|
35
|
+
FIXED_TO_LEFT: string;
|
|
36
|
+
FIXED_TO_RIGHT: string;
|
|
37
|
+
EXPORT: string;
|
|
38
|
+
DOWNLOAD_TEMPLATE: string;
|
|
39
|
+
EXPORT_CURRENT_PAGE: string;
|
|
40
|
+
EXPORT_SELECT_COLUMN: string;
|
|
41
|
+
EXPORT_ALL: string;
|
|
42
|
+
SELECT_ALL: string;
|
|
43
|
+
SETTING_EXPORT_COLUMN: string;
|
|
44
|
+
NO_EXPORT_COLUMN: string;
|
|
45
|
+
NUMBER: string;
|
|
46
|
+
ACTIONS: string;
|
|
47
|
+
TOTAL_PAGE: string;
|
|
48
|
+
FILTER: string;
|
|
49
|
+
EXPAND_ALL: string;
|
|
50
|
+
COLLAPSE_ALL: string;
|
|
51
|
+
SELECT_ALL1: string;
|
|
52
|
+
CANCEL_SELECT_ALL: string;
|
|
53
|
+
LEVEL_CONNECTION: string;
|
|
54
|
+
LEVEL_SOLATE: string;
|
|
55
|
+
LOADING: string;
|
|
56
|
+
SUPPORT_FILES: string;
|
|
57
|
+
MAX_SIZE: string;
|
|
58
|
+
MAX_NUMBER: string;
|
|
59
|
+
SUPPORT_TYPES: string;
|
|
60
|
+
FILE_UPLOAD: string;
|
|
61
|
+
FILE_NAME: string;
|
|
62
|
+
FILE_STATUS: string;
|
|
63
|
+
PREVIEW: string;
|
|
64
|
+
DELETE: string;
|
|
65
|
+
HISTORY_UPLOAD: string;
|
|
66
|
+
MAX_MB: string;
|
|
67
|
+
PRE_UPLOAD: string;
|
|
68
|
+
COMPANY_NAME: string;
|
|
69
|
+
FILTER_MORE: string;
|
|
70
|
+
LARGE_SIZE: string;
|
|
71
|
+
MIDDLE_SIZE: string;
|
|
72
|
+
SMALL_SIZE: string;
|
|
73
|
+
MODIFY_PASSWORD: string;
|
|
74
|
+
LOGIN_OUT: string;
|
|
75
|
+
CLOSE_CURRENT_TAG: string;
|
|
76
|
+
CLOSE_LEFT_TAGS: string;
|
|
77
|
+
CLOSE_RIGHT_TAGS: string;
|
|
78
|
+
CLOSE_OTHER_TAGS: string;
|
|
79
|
+
CLOSE_ALL_TAGE: string;
|
|
80
|
+
SETTING_THEME: string;
|
|
81
|
+
PROJECT_SETTING: string;
|
|
82
|
+
NAV_MODE: string;
|
|
83
|
+
PAGE_SHOW: string;
|
|
84
|
+
COPY: string;
|
|
85
|
+
DRAWER_TIPS: string;
|
|
86
|
+
FULL: string;
|
|
87
|
+
FIXED: string;
|
|
88
|
+
BREAD_CURB: string;
|
|
89
|
+
MENU_FILTER: string;
|
|
90
|
+
NOTICE: string;
|
|
91
|
+
SIZE: string;
|
|
92
|
+
SHOW_FULLE: string;
|
|
93
|
+
LOCAL: string;
|
|
94
|
+
ROUTE_REUSE: string;
|
|
95
|
+
SHOW_FOOTER: string;
|
|
96
|
+
CONTENT_FIXED_WIDTH: string;
|
|
97
|
+
ON: string;
|
|
98
|
+
OFF: string;
|
|
99
|
+
DOWNLOAD: string;
|
|
100
|
+
UNKNOWN_ROUTE: string;
|
|
101
|
+
COPY_SUCCESS: string;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
export const ZH = {
|
|
2
|
+
"UI": {
|
|
3
|
+
"ADD": "新增",
|
|
4
|
+
"DELETE_CONFIRM": "删除确认",
|
|
5
|
+
"CONFIRM_DELETE": "确认要删除选中的数据?",
|
|
6
|
+
"NEED_CURD": "缺少curd函数配置, 请将useSource中返回的curd参数传入useCurd配置项中!",
|
|
7
|
+
"EDIT": "编辑",
|
|
8
|
+
"EMPTY": "暂无选中的数据!",
|
|
9
|
+
"EMPTY_URL": "请求url不能为空!",
|
|
10
|
+
"MULTIFY_DELETE_CONFIRM": "批量删除确认",
|
|
11
|
+
"CONFIRM_MULTIFY_DELETE": "确认要批量删除选中的数据?",
|
|
12
|
+
"ADVANCED": "收起",
|
|
13
|
+
"EXPAND": "展开",
|
|
14
|
+
"SELECT_ICON": "选择字体图标",
|
|
15
|
+
"MUSE_FUNCTION": "openDialog必须是函数",
|
|
16
|
+
"NEED_RENDER": "请配置render函数",
|
|
17
|
+
"SEARCH": "查询",
|
|
18
|
+
"RESET": "重置",
|
|
19
|
+
"PLEASE_INPUT": "请输入",
|
|
20
|
+
"PLEASE_SELECT": "请选择",
|
|
21
|
+
"PLEASE_SET_ICON": "请设置图标",
|
|
22
|
+
"INPUT_FILTER": "请输入过滤条件",
|
|
23
|
+
"EXIT_FULLSCREEN": "退出全屏",
|
|
24
|
+
"FULLSCREEN": "全屏",
|
|
25
|
+
"SAVE": "保存",
|
|
26
|
+
"CLOSE": "关闭",
|
|
27
|
+
"ADD_SUCCESS": "新增成功!",
|
|
28
|
+
"UPDATE_SUCCESS": "更新数据成功!",
|
|
29
|
+
"MULTIFY": "批量",
|
|
30
|
+
"DELETE_SUCCESS": "删除成功!",
|
|
31
|
+
"COLUMN_CONTROL": "列控制",
|
|
32
|
+
"COLUMN_SHOW": "列展示",
|
|
33
|
+
"INDEX": "序列号",
|
|
34
|
+
"CHECKBOX": "复选框",
|
|
35
|
+
"FIXED_TO_LEFT": "固定到左侧",
|
|
36
|
+
"FIXED_TO_RIGHT": "固定到右侧",
|
|
37
|
+
"EXPORT": "导出",
|
|
38
|
+
"DOWNLOAD_TEMPLATE": "模板下载",
|
|
39
|
+
"EXPORT_CURRENT_PAGE": "导出当前页",
|
|
40
|
+
"EXPORT_SELECT_COLUMN": "导出选中列",
|
|
41
|
+
"EXPORT_ALL": "导出所有列",
|
|
42
|
+
"SELECT_ALL": "全选",
|
|
43
|
+
"SETTING_EXPORT_COLUMN": "设置导出列",
|
|
44
|
+
"NO_EXPORT_COLUMN": "暂无可导出的列!",
|
|
45
|
+
"NUMBER": "序号",
|
|
46
|
+
"ACTIONS": "操作",
|
|
47
|
+
"TOTAL_PAGE": "总共{total}条",
|
|
48
|
+
"FILTER": "过滤",
|
|
49
|
+
"EXPAND_ALL": "展开全部",
|
|
50
|
+
"COLLAPSE_ALL": "折叠全部",
|
|
51
|
+
"SELECT_ALL1": "选择全部",
|
|
52
|
+
"CANCEL_SELECT_ALL": "取消选择",
|
|
53
|
+
"LEVEL_CONNECTION": "层级关联",
|
|
54
|
+
"LEVEL_SOLATE": "层级独立",
|
|
55
|
+
"LOADING": "加载中...",
|
|
56
|
+
"SUPPORT_FILES": "支持{message}格式",
|
|
57
|
+
"MAX_SIZE": "不超过{maxSize}M",
|
|
58
|
+
"MAX_NUMBER": "最多可选择{maxNumber}个文件",
|
|
59
|
+
"SUPPORT_TYPES": "请上传pptx、doc、jpg、jpeg、png、bmp、gif、xls、xlsx、txt、rar、zip、7z、tar、gz格式文件",
|
|
60
|
+
"FILE_UPLOAD": "文件上传",
|
|
61
|
+
"FILE_NAME": "文件名称",
|
|
62
|
+
"FILE_STATUS": "上传状态",
|
|
63
|
+
"PREVIEW": "预览",
|
|
64
|
+
"DELETE": "删除",
|
|
65
|
+
"HISTORY_UPLOAD": "历史上传",
|
|
66
|
+
"MAX_MB": "只能上传不超过{maxSize}MB的文件!",
|
|
67
|
+
"PRE_UPLOAD": "待上传",
|
|
68
|
+
"COMPANY_NAME": "安徽深迪中台系统模板",
|
|
69
|
+
"FILTER_MORE": "菜单检索...",
|
|
70
|
+
"LARGE_SIZE": "大尺寸",
|
|
71
|
+
"MIDDLE_SIZE": "中尺寸",
|
|
72
|
+
"SMALL_SIZE": "小尺寸",
|
|
73
|
+
"MODIFY_PASSWORD": "修改密码",
|
|
74
|
+
"LOGIN_OUT": "退出系统",
|
|
75
|
+
"CLOSE_CURRENT_TAG": "关闭当前标签页",
|
|
76
|
+
"CLOSE_LEFT_TAGS": "关闭左侧标签页",
|
|
77
|
+
"CLOSE_RIGHT_TAGS": "关闭右侧标签页",
|
|
78
|
+
"CLOSE_OTHER_TAGS": "关闭其他标签页",
|
|
79
|
+
"CLOSE_ALL_TAGE": "关闭全部标签页",
|
|
80
|
+
"SETTING_THEME": "风格设置",
|
|
81
|
+
"PROJECT_SETTING": "项目配置",
|
|
82
|
+
"NAV_MODE": "导航栏模式",
|
|
83
|
+
"PAGE_SHOW": "界面显示",
|
|
84
|
+
"COPY": "拷贝",
|
|
85
|
+
"DRAWER_TIPS": "该功能主要实时预览各种布局效果,更多完整配置在 src/core/settings/theme.ts 中设置,在生产环境该布局预览功能将被关闭。",
|
|
86
|
+
"FULL": "流式",
|
|
87
|
+
"FIXED": "定宽",
|
|
88
|
+
"BREAD_CURB": "面包屑",
|
|
89
|
+
"MENU_FILTER": "菜单检索",
|
|
90
|
+
"NOTICE": "通知公告",
|
|
91
|
+
"SIZE": "元素尺寸",
|
|
92
|
+
"SHOW_FULLE": "页面全屏",
|
|
93
|
+
"LOCAL": "国际化",
|
|
94
|
+
"ROUTE_REUSE": "路由复用",
|
|
95
|
+
"SHOW_FOOTER": "显示底部",
|
|
96
|
+
"CONTENT_FIXED_WIDTH": "内容区域宽度",
|
|
97
|
+
"ON": "开",
|
|
98
|
+
"OFF": "关",
|
|
99
|
+
"DOWNLOAD": "下载",
|
|
100
|
+
"UNKNOWN_ROUTE": "未知路由",
|
|
101
|
+
"COPY_SUCCESS": "拷贝成功!"
|
|
102
|
+
}
|
|
103
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
declare const DtScrollContainer: import('../../utils/withInstall').SFCWithInstall<import("vue").DefineComponent<{}, {
|
|
2
|
+
scrollbarRef: any;
|
|
3
|
+
scrollTo: (to: number, duration?: number) => void;
|
|
4
|
+
getScrollWrap: () => any;
|
|
5
|
+
scrollBottom: () => void;
|
|
6
|
+
ScrollBar: import("vue").DefineComponent<{
|
|
7
|
+
wrapClass: {
|
|
8
|
+
type: (StringConstructor | ArrayConstructor)[];
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
wrapStyle: ArrayConstructor;
|
|
12
|
+
viewClass: {
|
|
13
|
+
type: (StringConstructor | ArrayConstructor)[];
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
viewStyle: {
|
|
17
|
+
type: (StringConstructor | ArrayConstructor)[];
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
noresize: BooleanConstructor;
|
|
21
|
+
tag: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
}, {
|
|
26
|
+
sizeWidth: import("vue").Ref<string>;
|
|
27
|
+
sizeHeight: import("vue").Ref<string>;
|
|
28
|
+
moveX: import("vue").Ref<number>;
|
|
29
|
+
moveY: import("vue").Ref<number>;
|
|
30
|
+
wrap: import("vue").Ref<any>;
|
|
31
|
+
resize: import("vue").Ref<any>;
|
|
32
|
+
props: any;
|
|
33
|
+
style: import("vue").ComputedRef<{}>;
|
|
34
|
+
handleScroll: () => void;
|
|
35
|
+
update: () => void;
|
|
36
|
+
readonly Bar: import("vue").DefineComponent<{
|
|
37
|
+
vertical: BooleanConstructor;
|
|
38
|
+
size: StringConstructor;
|
|
39
|
+
move: NumberConstructor;
|
|
40
|
+
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
41
|
+
[key: string]: any;
|
|
42
|
+
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
43
|
+
vertical: BooleanConstructor;
|
|
44
|
+
size: StringConstructor;
|
|
45
|
+
move: NumberConstructor;
|
|
46
|
+
}>>, {
|
|
47
|
+
vertical: boolean;
|
|
48
|
+
}>;
|
|
49
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
50
|
+
wrapClass: {
|
|
51
|
+
type: (StringConstructor | ArrayConstructor)[];
|
|
52
|
+
default: string;
|
|
53
|
+
};
|
|
54
|
+
wrapStyle: ArrayConstructor;
|
|
55
|
+
viewClass: {
|
|
56
|
+
type: (StringConstructor | ArrayConstructor)[];
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
viewStyle: {
|
|
60
|
+
type: (StringConstructor | ArrayConstructor)[];
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
noresize: BooleanConstructor;
|
|
64
|
+
tag: {
|
|
65
|
+
type: StringConstructor;
|
|
66
|
+
default: string;
|
|
67
|
+
};
|
|
68
|
+
}>>, {
|
|
69
|
+
wrapClass: string | unknown[];
|
|
70
|
+
viewClass: string | unknown[];
|
|
71
|
+
viewStyle: string | unknown[];
|
|
72
|
+
noresize: boolean;
|
|
73
|
+
tag: string;
|
|
74
|
+
}>;
|
|
75
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
76
|
+
declare const DtSlotContainer: import('../../utils/withInstall').SFCWithInstall<import("vue").DefineComponent<{
|
|
77
|
+
template: {
|
|
78
|
+
type: FunctionConstructor;
|
|
79
|
+
};
|
|
80
|
+
data: {
|
|
81
|
+
type: ObjectConstructor;
|
|
82
|
+
};
|
|
83
|
+
}, {
|
|
84
|
+
props: any;
|
|
85
|
+
Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
86
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
87
|
+
template: {
|
|
88
|
+
type: FunctionConstructor;
|
|
89
|
+
};
|
|
90
|
+
data: {
|
|
91
|
+
type: ObjectConstructor;
|
|
92
|
+
};
|
|
93
|
+
}>>, {}>>;
|
|
94
|
+
export { DtScrollContainer, DtSlotContainer };
|