@dt-frames/ui 1.0.2 → 1.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/README.md +1 -15
- package/es/assets/style/reset.less +0 -3
- package/es/index.css +1 -1
- package/es/index.js +1 -0
- package/es/style/assets/style/reset.less +0 -3
- package/es/style/theme/sider/index.less +25 -25
- package/es/theme/content/index.d.ts +27 -29
- package/es/theme/header/components/menu-search.d.ts +528 -528
- package/es/theme/header/components/setting-theme.d.ts +2580 -2550
- package/es/theme/header/index.d.ts +4369 -4369
- package/es/theme/tabs/components/TabRedo.d.ts +7 -49
- package/es/theme/tabs/index.d.ts +2478 -1399
- package/es/theme/theme/initTheme.d.ts +3 -3
- package/es/theme/theme.d.ts +22 -0
- package/package.json +50 -40
- package/src/assets/data/icons/actions.ts +427 -0
- package/src/assets/data/icons/code.ts +10 -0
- package/src/assets/data/icons/commuticate.ts +190 -0
- package/src/assets/data/icons/currency.ts +46 -0
- package/src/assets/data/icons/devices.ts +128 -0
- package/src/assets/data/icons/edit.ts +165 -0
- package/src/assets/data/icons/file.ts +104 -0
- package/src/assets/data/icons/math.ts +53 -0
- package/src/assets/data/icons/message.ts +75 -0
- package/src/assets/data/icons/navigate.ts +181 -0
- package/src/assets/data/icons/other.ts +333 -0
- package/src/assets/data/icons.ts +58 -0
- package/src/assets/imgs/logo/logo.png +0 -0
- package/src/assets/locales/en_US.json +3 -0
- package/src/assets/locales/zh_CN.json +3 -0
- package/src/assets/style/index.less +10 -0
- package/src/assets/style/reset.less +17 -0
- package/src/components/container/index.less +85 -0
- package/src/components/container/index.ts +8 -0
- package/src/components/container/src/bar.ts +107 -0
- package/src/components/container/src/lazy-container.vue +9 -0
- package/src/components/container/src/scroll-bar.vue +117 -0
- package/src/components/container/src/scroll-container.vue +61 -0
- package/src/components/curd/index.ts +5 -0
- package/src/components/curd/src/components/dialog.vue +65 -0
- package/src/components/curd/src/components/props.ts +32 -0
- package/src/components/curd/src/hooks/useCurd.tsx +72 -0
- package/src/components/curd/src/types/curd.type.ts +29 -0
- package/src/components/excel/index.ts +6 -0
- package/src/components/excel/src/export2Excel.ts +44 -0
- package/src/components/forms/index.ts +12 -0
- package/src/components/forms/src/componentMap.ts +44 -0
- package/src/components/forms/src/components/formButton.vue +150 -0
- package/src/components/forms/src/components/formIcon.vue +50 -0
- package/src/components/forms/src/components/formItem.vue +407 -0
- package/src/components/forms/src/components/radioButton.vue +58 -0
- package/src/components/forms/src/const/form.const.ts +7 -0
- package/src/components/forms/src/hooks/helper.ts +70 -0
- package/src/components/forms/src/hooks/useForm.ts +130 -0
- package/src/components/forms/src/hooks/useFormActions.ts +63 -0
- package/src/components/forms/src/hooks/useFormEvents.ts +247 -0
- package/src/components/forms/src/hooks/useFormValue.ts +49 -0
- package/src/components/forms/src/hooks/useFormValues.ts +131 -0
- package/src/components/forms/src/hooks/useLabelWidth.ts +57 -0
- package/src/components/forms/src/index.less +82 -0
- package/src/components/forms/src/index.vue +306 -0
- package/src/components/forms/src/prop.ts +80 -0
- package/src/components/forms/src/types/form.type.ts +269 -0
- package/src/components/icons/index.ts +7 -0
- package/src/components/icons/src/index.less +96 -0
- package/src/components/icons/src/pick-icon.vue +117 -0
- package/src/components/icons/src/svg-icon.vue +117 -0
- package/src/components/iframe/index.ts +5 -0
- package/src/components/iframe/src/index.less +3 -0
- package/src/components/iframe/src/index.vue +38 -0
- package/src/components/index.ts +46 -0
- package/src/components/modal/index.ts +8 -0
- package/src/components/modal/src/components/close-icon.vue +47 -0
- package/src/components/modal/src/components/modal-wrap.vue +118 -0
- package/src/components/modal/src/components/modal.tsx +30 -0
- package/src/components/modal/src/components/modalFooter.vue +38 -0
- package/src/components/modal/src/hooks/useDrag.ts +107 -0
- package/src/components/modal/src/hooks/useFullScreen.ts +27 -0
- package/src/components/modal/src/hooks/useModal.ts +177 -0
- package/src/components/modal/src/index.less +60 -0
- package/src/components/modal/src/index.vue +173 -0
- package/src/components/modal/src/props.ts +43 -0
- package/src/components/modal/src/types/modal.type.ts +27 -0
- package/src/components/router/base-router.vue +11 -0
- package/src/components/router/index.ts +3 -0
- package/src/components/source/index.ts +1 -0
- package/src/components/source/src/hooks/useFetch.ts +70 -0
- package/src/components/source/src/hooks/usePage.ts +3 -0
- package/src/components/source/src/hooks/useSource.ts +178 -0
- package/src/components/source/src/index.ts +5 -0
- package/src/components/source/src/types/source.type.ts +68 -0
- package/src/components/source/src/types/table.type.ts +8 -0
- package/src/components/table/index.ts +7 -0
- package/src/components/table/src/components/TableActions.vue +108 -0
- package/src/components/table/src/components/TableHeader.vue +77 -0
- package/src/components/table/src/components/TableRender.vue +76 -0
- package/src/components/table/src/components/setting/Column.vue +355 -0
- package/src/components/table/src/components/setting/Download.vue +55 -0
- package/src/components/table/src/components/setting/Fullscreen.vue +43 -0
- package/src/components/table/src/components/setting/Size.vue +42 -0
- package/src/components/table/src/components/setting/index.vue +64 -0
- package/src/components/table/src/const.ts +13 -0
- package/src/components/table/src/hooks/useColumns.ts +319 -0
- package/src/components/table/src/hooks/useCustomRow.ts +0 -0
- package/src/components/table/src/hooks/useDataSource.ts +99 -0
- package/src/components/table/src/hooks/useLoading.ts +29 -0
- package/src/components/table/src/hooks/usePagination.ts +76 -0
- package/src/components/table/src/hooks/useRowSelection.ts +146 -0
- package/src/components/table/src/hooks/useRows.ts +30 -0
- package/src/components/table/src/hooks/useTable.ts +77 -0
- package/src/components/table/src/hooks/useTableHeader.ts +48 -0
- package/src/components/table/src/hooks/useTableInstance.ts +29 -0
- package/src/components/table/src/hooks/useTableScroll.ts +227 -0
- package/src/components/table/src/index.less +162 -0
- package/src/components/table/src/index.vue +198 -0
- package/src/components/table/src/props.ts +152 -0
- package/src/components/table/src/types/table.type.ts +133 -0
- package/src/components/table/src/types/tableHeader.type.ts +27 -0
- package/src/components/type.ts +0 -0
- package/src/directives/icon.ts +36 -0
- package/src/directives/index.ts +27 -0
- package/src/directives/permission.ts +21 -0
- package/src/global.d.ts +8 -0
- package/src/index.ts +4 -0
- package/src/theme/content/index.vue +37 -0
- package/src/theme/feature/back-top.vue +11 -0
- package/src/theme/feature/index.vue +7 -0
- package/src/theme/footer/index.less +16 -0
- package/src/theme/footer/index.vue +24 -0
- package/src/theme/header/components/bread-crumb.vue +26 -0
- package/src/theme/header/components/fullscreen.vue +14 -0
- package/src/theme/header/components/handler.ts +81 -0
- package/src/theme/header/components/index.ts +21 -0
- package/src/theme/header/components/lang-picker.vue +36 -0
- package/src/theme/header/components/logo.vue +33 -0
- package/src/theme/header/components/menu-search.vue +62 -0
- package/src/theme/header/components/notify.vue +23 -0
- package/src/theme/header/components/setting-theme.vue +123 -0
- package/src/theme/header/components/theme-drawer/enum.ts +12 -0
- package/src/theme/header/components/theme-drawer/feature.vue +75 -0
- package/src/theme/header/components/theme-drawer/index.ts +7 -0
- package/src/theme/header/components/theme-drawer/menu-type.vue +40 -0
- package/src/theme/header/components/theme-drawer/select-item.vue +46 -0
- package/src/theme/header/components/theme-drawer/switch-item.vue +39 -0
- package/src/theme/header/components/theme-drawer/theme-color.vue +26 -0
- package/src/theme/header/components/trigger.vue +14 -0
- package/src/theme/header/components/user-info.vue +43 -0
- package/src/theme/header/const/index.ts +40 -0
- package/src/theme/header/helper/menu-tree.ts +67 -0
- package/src/theme/header/index.less +438 -0
- package/src/theme/header/index.ts +0 -0
- package/src/theme/header/index.vue +96 -0
- package/src/theme/header/multiple-header.vue +67 -0
- package/src/theme/header/set-theme.less +68 -0
- package/src/theme/index.ts +3 -0
- package/src/theme/sider/components/basic-menu/basic-menu-item.vue +14 -0
- package/src/theme/sider/components/basic-menu/basic-menu.vue +122 -0
- package/src/theme/sider/components/basic-menu/basic-sub-menu-item.vue +46 -0
- package/src/theme/sider/components/basic-menu/menu-item-content.vue +13 -0
- package/src/theme/sider/components/drag-bar.vue +26 -0
- package/src/theme/sider/components/layout-menu.vue +132 -0
- package/src/theme/sider/components/props.ts +97 -0
- package/src/theme/sider/components/sider-trigger.vue +24 -0
- package/src/theme/sider/helper/sider.ts +52 -0
- package/src/theme/sider/helper/split-menu.ts +147 -0
- package/src/theme/sider/hooks/useDragLine.ts +86 -0
- package/src/theme/sider/hooks/useOpenKeys.ts +57 -0
- package/src/theme/sider/index.less +203 -0
- package/src/theme/sider/index.vue +88 -0
- package/src/theme/tabs/components/TabContent.vue +37 -0
- package/src/theme/tabs/components/TabRedo.vue +18 -0
- package/src/theme/tabs/hooks/useMultifyTabs.ts +96 -0
- package/src/theme/tabs/hooks/useTabDropdown.ts +89 -0
- package/src/theme/tabs/index.less +165 -0
- package/src/theme/tabs/index.vue +98 -0
- package/src/theme/tabs/types/tabs.type.ts +8 -0
- package/src/theme/theme.less +66 -0
- package/src/theme/theme.vue +89 -0
- package/src/theme/transition.less +99 -0
- package/es/themes/generate.ts +0 -74
- package/es/themes/index.ts +0 -10
- package/es/themes/modifyVars.ts +0 -33
- package/es/themes/themePlugiin.ts +0 -74
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
export const Message = [
|
|
2
|
+
'ic:baseline-account-tree',
|
|
3
|
+
'ic:baseline-airline-seat-legroom-extra',
|
|
4
|
+
'ic:baseline-airline-seat-legroom-reduced',
|
|
5
|
+
'ic:baseline-airline-seat-recline-normal',
|
|
6
|
+
'ic:baseline-bluetooth-audio',
|
|
7
|
+
'ic:baseline-confirmation-number',
|
|
8
|
+
'ic:baseline-disc-full',
|
|
9
|
+
'ic:baseline-enhanced-encryption',
|
|
10
|
+
'ic:baseline-event-note',
|
|
11
|
+
'ic:baseline-more',
|
|
12
|
+
'ic:baseline-network-check',
|
|
13
|
+
'ic:baseline-no-encryption',
|
|
14
|
+
'ic:baseline-phone-bluetooth-speaker',
|
|
15
|
+
'ic:baseline-phone-callback',
|
|
16
|
+
'ic:baseline-phone-forwarded',
|
|
17
|
+
'ic:baseline-phone-in-talk',
|
|
18
|
+
'ic:baseline-phone-locked',
|
|
19
|
+
'ic:baseline-phone-missed',
|
|
20
|
+
'ic:baseline-phone-paused',
|
|
21
|
+
'ic:baseline-power',
|
|
22
|
+
'ic:baseline-power-off',
|
|
23
|
+
'ic:baseline-priority-high',
|
|
24
|
+
'ic:baseline-running-with-errors',
|
|
25
|
+
'ic:baseline-vpn-lock',
|
|
26
|
+
'ic:baseline-wc',
|
|
27
|
+
'ic:baseline-wifi',
|
|
28
|
+
'ic:baseline-wifi-off',
|
|
29
|
+
'ic:outline-account-tree',
|
|
30
|
+
'ic:outline-drive-eta',
|
|
31
|
+
'ic:outline-enhanced-encryption',
|
|
32
|
+
'ic:round-confirmation-number',
|
|
33
|
+
'ic:round-folder-special',
|
|
34
|
+
'ic:round-more',
|
|
35
|
+
'ic:baseline-notification-add',
|
|
36
|
+
'ic:baseline-notifications',
|
|
37
|
+
'ic:baseline-notifications-active',
|
|
38
|
+
'ic:baseline-notifications-none',
|
|
39
|
+
'ic:baseline-notifications-off',
|
|
40
|
+
'ic:baseline-notifications-paused',
|
|
41
|
+
'mdi:alert-circle',
|
|
42
|
+
'mdi:alert',
|
|
43
|
+
'mdi:alert-circle-outline',
|
|
44
|
+
'mdi:alert-decagram',
|
|
45
|
+
'mdi:alert-decagram-outline',
|
|
46
|
+
'mdi:alert-rhombus',
|
|
47
|
+
'mdi:alert-rhombus-outline',
|
|
48
|
+
'mdi:calendar-alert',
|
|
49
|
+
'mdi:chat-alert',
|
|
50
|
+
'mdi:chat-alert-outline',
|
|
51
|
+
'mdi:comment-alert',
|
|
52
|
+
'mdi:comment-alert-outline',
|
|
53
|
+
'mdi:content-save-alert',
|
|
54
|
+
'mdi:cookie-alert',
|
|
55
|
+
'mdi:database-alert',
|
|
56
|
+
'mdi:database-alert-outline',
|
|
57
|
+
'mdi:delete-alert',
|
|
58
|
+
'mdi:delete-alert-outline',
|
|
59
|
+
'mdi:email-alert',
|
|
60
|
+
'mdi:email-alert-outline',
|
|
61
|
+
'mdi:file-document-alert',
|
|
62
|
+
'mdi:file-document-alert-outline',
|
|
63
|
+
'mdi:phone-alert',
|
|
64
|
+
'mdi:phone-alert-outline',
|
|
65
|
+
'mdi:shield-alert',
|
|
66
|
+
'mdi:shield-alert-outline',
|
|
67
|
+
'mdi:sim-alert',
|
|
68
|
+
'mdi:sim-alert-outline',
|
|
69
|
+
'mdi:smoke-detector-alert',
|
|
70
|
+
'mdi:smoke-detector-alert-outline',
|
|
71
|
+
'mdi:water-alert',
|
|
72
|
+
'mdi:water-alert-outline',
|
|
73
|
+
'ant-design:info-circle-filled',
|
|
74
|
+
'ant-design:info-circle-outlined'
|
|
75
|
+
]
|
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
export const Navigate = [
|
|
2
|
+
'ic:baseline-arrow-right-alt',
|
|
3
|
+
'ic:baseline-adf-scanner',
|
|
4
|
+
'ic:baseline-browser-updated',
|
|
5
|
+
'ic:baseline-cast',
|
|
6
|
+
'ic:baseline-cast-connected',
|
|
7
|
+
'ic:baseline-developer-board',
|
|
8
|
+
'ic:baseline-device-hub',
|
|
9
|
+
'ic:baseline-earbuds-battery',
|
|
10
|
+
'ic:baseline-earbuds',
|
|
11
|
+
'ic:baseline-gamepad',
|
|
12
|
+
'ic:baseline-keyboard-arrow-down',
|
|
13
|
+
'ic:baseline-keyboard-arrow-left',
|
|
14
|
+
'ic:baseline-keyboard-arrow-right',
|
|
15
|
+
'ic:baseline-keyboard-arrow-up',
|
|
16
|
+
'ic:baseline-keyboard-backspace',
|
|
17
|
+
'ic:baseline-keyboard-capslock',
|
|
18
|
+
'ic:baseline-keyboard-command-key',
|
|
19
|
+
'ic:baseline-keyboard-control-key',
|
|
20
|
+
'ic:baseline-keyboard-double-arrow-down',
|
|
21
|
+
'ic:baseline-keyboard-double-arrow-left',
|
|
22
|
+
'ic:baseline-keyboard-double-arrow-right',
|
|
23
|
+
'ic:baseline-keyboard-double-arrow-up',
|
|
24
|
+
'ic:baseline-keyboard-option-key',
|
|
25
|
+
'ic:baseline-keyboard-return',
|
|
26
|
+
'ic:baseline-keyboard-tab',
|
|
27
|
+
'ic:baseline-keyboard-voice',
|
|
28
|
+
'ic:baseline-laptop-chromebook',
|
|
29
|
+
'ic:baseline-monitor',
|
|
30
|
+
'ic:baseline-security',
|
|
31
|
+
'ic:outline-start',
|
|
32
|
+
'ic:baseline-360',
|
|
33
|
+
'ic:baseline-add-business',
|
|
34
|
+
'ic:baseline-add-location',
|
|
35
|
+
'ic:baseline-add-location-alt',
|
|
36
|
+
'ic:baseline-add-road',
|
|
37
|
+
'ic:baseline-airline-stops',
|
|
38
|
+
'ic:baseline-alt-route',
|
|
39
|
+
'ic:baseline-crisis-alert',
|
|
40
|
+
'ic:baseline-diamond',
|
|
41
|
+
'ic:baseline-directions-car',
|
|
42
|
+
'ic:baseline-directions-bus-filled',
|
|
43
|
+
'ic:baseline-directions-boat-filled',
|
|
44
|
+
'ic:baseline-directions-bike',
|
|
45
|
+
'ic:baseline-directions-railway',
|
|
46
|
+
'ic:baseline-directions-run',
|
|
47
|
+
'ic:baseline-flight',
|
|
48
|
+
'ic:baseline-hardware',
|
|
49
|
+
'ic:baseline-local-bar',
|
|
50
|
+
'ic:baseline-local-cafe',
|
|
51
|
+
'ic:baseline-local-library',
|
|
52
|
+
'ic:baseline-local-movies',
|
|
53
|
+
'ic:baseline-local-parking',
|
|
54
|
+
'ic:baseline-local-shipping',
|
|
55
|
+
'ic:baseline-medical-information',
|
|
56
|
+
'ic:baseline-medical-services',
|
|
57
|
+
'ic:baseline-menu-book',
|
|
58
|
+
'ic:baseline-miscellaneous-services',
|
|
59
|
+
'ic:baseline-park',
|
|
60
|
+
'ic:baseline-place',
|
|
61
|
+
'ic:baseline-ramen-dining',
|
|
62
|
+
'ic:baseline-train',
|
|
63
|
+
'ic:baseline-tram',
|
|
64
|
+
'ic:baseline-trip-origin',
|
|
65
|
+
'ic:baseline-apps',
|
|
66
|
+
'ic:baseline-apps-outage',
|
|
67
|
+
'ic:baseline-arrow-back',
|
|
68
|
+
'ic:baseline-arrow-downward',
|
|
69
|
+
'ic:baseline-arrow-drop-down',
|
|
70
|
+
'ic:baseline-arrow-drop-down-circle',
|
|
71
|
+
'ic:baseline-arrow-drop-up',
|
|
72
|
+
'ic:baseline-arrow-forward',
|
|
73
|
+
'ic:baseline-arrow-left',
|
|
74
|
+
'ic:baseline-arrow-right',
|
|
75
|
+
'ic:baseline-arrow-upward',
|
|
76
|
+
'ic:baseline-assistant-direction',
|
|
77
|
+
'ic:baseline-campaign',
|
|
78
|
+
'ic:baseline-cancel',
|
|
79
|
+
'ic:baseline-check',
|
|
80
|
+
'ic:baseline-arrow-back-ios',
|
|
81
|
+
'ic:baseline-arrow-forward-ios',
|
|
82
|
+
'ic:baseline-close',
|
|
83
|
+
'ic:baseline-double-arrow',
|
|
84
|
+
'ic:baseline-expand-circle-down',
|
|
85
|
+
'ic:baseline-first-page',
|
|
86
|
+
'ic:baseline-fullscreen',
|
|
87
|
+
'ic:baseline-fullscreen-exit',
|
|
88
|
+
'ic:baseline-home-work',
|
|
89
|
+
'ic:baseline-last-page',
|
|
90
|
+
'ic:baseline-legend-toggle',
|
|
91
|
+
'ic:baseline-menu',
|
|
92
|
+
'ic:baseline-menu-open',
|
|
93
|
+
'ic:baseline-more-horiz',
|
|
94
|
+
'ic:baseline-more-vert',
|
|
95
|
+
'ic:baseline-north-east',
|
|
96
|
+
'ic:baseline-north-west',
|
|
97
|
+
'ic:baseline-offline-share',
|
|
98
|
+
'ic:baseline-payments',
|
|
99
|
+
'ic:baseline-pivot-table-chart',
|
|
100
|
+
'ic:baseline-refresh',
|
|
101
|
+
'ic:baseline-south-east',
|
|
102
|
+
'ic:baseline-south-west',
|
|
103
|
+
'ic:baseline-subdirectory-arrow-left',
|
|
104
|
+
'ic:baseline-subdirectory-arrow-right',
|
|
105
|
+
'ic:baseline-switch-left',
|
|
106
|
+
'ic:baseline-switch-right',
|
|
107
|
+
'ic:baseline-unfold-less',
|
|
108
|
+
'ic:baseline-unfold-more',
|
|
109
|
+
'ic:baseline-waterfall-chart',
|
|
110
|
+
'ic:outline-app-settings-alt',
|
|
111
|
+
'ic:outline-assistant-direction',
|
|
112
|
+
'ic:outline-campaign',
|
|
113
|
+
'ic:outline-cancel',
|
|
114
|
+
'mdi:home-map-marker',
|
|
115
|
+
'mdi:arrow-all',
|
|
116
|
+
'mdi:arrow-bottom-left-bold-box',
|
|
117
|
+
'mdi:arrow-bottom-left-bold-box-outline',
|
|
118
|
+
'mdi:arrow-bottom-left-bold-outline',
|
|
119
|
+
'mdi:arrow-bottom-right-bold-box',
|
|
120
|
+
'mdi:arrow-bottom-right-bold-box-outline',
|
|
121
|
+
'mdi:arrow-bottom-right-bold-outline',
|
|
122
|
+
'mdi:arrow-bottom-right-thick',
|
|
123
|
+
'mdi:arrow-collapse-horizontal',
|
|
124
|
+
'mdi:arrow-collapse-vertical',
|
|
125
|
+
'mdi:arrow-down-bold-box',
|
|
126
|
+
'mdi:arrow-down-bold-box-outline',
|
|
127
|
+
'mdi:arrow-down-bold-circle',
|
|
128
|
+
'mdi:arrow-down-bold-circle-outline',
|
|
129
|
+
'mdi:arrow-down-bold-hexagon-outline',
|
|
130
|
+
'mdi:arrow-down-bold-outline',
|
|
131
|
+
'mdi:arrow-down-drop-circle',
|
|
132
|
+
'mdi:arrow-down-drop-circle-outline',
|
|
133
|
+
'mdi:arrow-expand-horizontal',
|
|
134
|
+
'mdi:arrow-down-bold',
|
|
135
|
+
'mdi:arrow-left-bold',
|
|
136
|
+
'mdi:arrow-left-bold-outline',
|
|
137
|
+
'mdi:arrow-left-right-bold-outline',
|
|
138
|
+
'mdi:arrow-left-right-bold',
|
|
139
|
+
'mdi:arrow-left-right',
|
|
140
|
+
'mdi:arrow-right-bold',
|
|
141
|
+
'mdi:arrow-right-bold-outline',
|
|
142
|
+
'mdi:arrow-split-horizontal',
|
|
143
|
+
'mdi:arrow-split-vertical',
|
|
144
|
+
'mdi:arrow-up-down-bold-outline',
|
|
145
|
+
'mdi:axis-arrow-lock',
|
|
146
|
+
'mdi:call-made',
|
|
147
|
+
'mdi:call-merge',
|
|
148
|
+
'mdi:call-missed',
|
|
149
|
+
'mdi:call-received',
|
|
150
|
+
'mdi:call-split',
|
|
151
|
+
'mdi:repeat',
|
|
152
|
+
'mdi:repeat-variant',
|
|
153
|
+
'mdi:reply',
|
|
154
|
+
'mdi:reply-all',
|
|
155
|
+
'mdi:reply-all-outline',
|
|
156
|
+
'mdi:chevron-right-circle',
|
|
157
|
+
'mdi:chevron-right-circle-outline',
|
|
158
|
+
'mdi:chevron-up-box',
|
|
159
|
+
'mdi:chevron-up-box-outline',
|
|
160
|
+
'mdi:fit-to-page',
|
|
161
|
+
'mdi:fit-to-page-outline',
|
|
162
|
+
'mdi:forward',
|
|
163
|
+
'mdi:share',
|
|
164
|
+
'mdi:share-circle',
|
|
165
|
+
'mdi:compass',
|
|
166
|
+
'mdi:rocket',
|
|
167
|
+
'mdi:rocket-launch',
|
|
168
|
+
'mdi:rocket-launch-outline',
|
|
169
|
+
'mdi:rocket-outline',
|
|
170
|
+
'ant-design:backward-filled',
|
|
171
|
+
'ant-design:caret-down-filled',
|
|
172
|
+
'ant-design:caret-left-filled',
|
|
173
|
+
'ant-design:caret-right-filled',
|
|
174
|
+
'ant-design:caret-up-filled',
|
|
175
|
+
'ant-design:column-height-outlined',
|
|
176
|
+
'ant-design:column-width-outlined',
|
|
177
|
+
'ant-design:double-left-outlined',
|
|
178
|
+
'ant-design:double-right-outlined',
|
|
179
|
+
'ant-design:fast-backward-filled',
|
|
180
|
+
'ant-design:fast-forward-filled'
|
|
181
|
+
]
|
|
@@ -0,0 +1,333 @@
|
|
|
1
|
+
export const Other = [
|
|
2
|
+
'ic:baseline-add-alert',
|
|
3
|
+
'ic:baseline-auto-delete',
|
|
4
|
+
'ic:baseline-error',
|
|
5
|
+
'ic:baseline-error-outline',
|
|
6
|
+
'ic:baseline-notification-important',
|
|
7
|
+
'ic:baseline-warning',
|
|
8
|
+
'ic:baseline-mic',
|
|
9
|
+
'ic:baseline-mic-none',
|
|
10
|
+
'ic:baseline-mic-off',
|
|
11
|
+
'ic:baseline-music-video',
|
|
12
|
+
'ic:baseline-replay',
|
|
13
|
+
'ic:baseline-auto-mode',
|
|
14
|
+
'ic:baseline-auto-awesome',
|
|
15
|
+
'ic:baseline-auto-awesome-mosaic',
|
|
16
|
+
'ic:baseline-auto-awesome-motion',
|
|
17
|
+
'ic:baseline-auto-fix-high',
|
|
18
|
+
'ic:baseline-center-focus-strong',
|
|
19
|
+
'ic:baseline-center-focus-weak',
|
|
20
|
+
'ic:baseline-color-lens',
|
|
21
|
+
'ic:baseline-colorize',
|
|
22
|
+
'ic:baseline-contrast',
|
|
23
|
+
'ic:baseline-compare',
|
|
24
|
+
'ic:baseline-crop',
|
|
25
|
+
'ic:baseline-crop-rotate',
|
|
26
|
+
'ic:baseline-music-note',
|
|
27
|
+
'ic:baseline-music-off',
|
|
28
|
+
'ic:baseline-nature',
|
|
29
|
+
'ic:baseline-nature-people',
|
|
30
|
+
'ic:baseline-receipt-long',
|
|
31
|
+
'ic:baseline-remove-red-eye',
|
|
32
|
+
'ic:baseline-rotate-90-degrees-ccw',
|
|
33
|
+
'ic:baseline-rotate-90-degrees-cw',
|
|
34
|
+
'ic:baseline-rotate-left',
|
|
35
|
+
'ic:baseline-rotate-right',
|
|
36
|
+
'ic:baseline-shutter-speed',
|
|
37
|
+
'ic:baseline-slideshow',
|
|
38
|
+
'ic:baseline-straighten',
|
|
39
|
+
'ic:baseline-style',
|
|
40
|
+
'ic:baseline-switch-camera',
|
|
41
|
+
'ic:baseline-switch-video',
|
|
42
|
+
'ic:baseline-video-camera-front',
|
|
43
|
+
'ic:baseline-view-comfy',
|
|
44
|
+
'ic:baseline-wb-auto',
|
|
45
|
+
'ic:baseline-wb-incandescent',
|
|
46
|
+
'ic:baseline-wb-iridescent',
|
|
47
|
+
'ic:baseline-wb-sunny',
|
|
48
|
+
'ic:baseline-wb-twilight',
|
|
49
|
+
'ic:outline-brightness-7',
|
|
50
|
+
'ic:outline-brush',
|
|
51
|
+
'ic:outline-crop-free',
|
|
52
|
+
'ic:outline-filter-center-focus',
|
|
53
|
+
'ic:round-auto-fix-high',
|
|
54
|
+
'ic:round-auto-stories',
|
|
55
|
+
'ic:outline-healing',
|
|
56
|
+
'ic:baseline-restaurant',
|
|
57
|
+
'ic:baseline-restaurant-menu',
|
|
58
|
+
'ic:baseline-zoom-in-map',
|
|
59
|
+
'ic:baseline-zoom-out-map',
|
|
60
|
+
'ic:round-local-library',
|
|
61
|
+
'ic:round-menu-book',
|
|
62
|
+
'ic:round-my-location',
|
|
63
|
+
'ic:round-navigation',
|
|
64
|
+
'ic:round-near-me',
|
|
65
|
+
'ic:round-near-me-disabled',
|
|
66
|
+
'ic:round-terrain',
|
|
67
|
+
'ic:round-transfer-within-a-station',
|
|
68
|
+
'ic:round-zoom-in-map',
|
|
69
|
+
'ic:round-zoom-out-map',
|
|
70
|
+
'ic:sharp-beenhere',
|
|
71
|
+
'ic:sharp-cleaning-services',
|
|
72
|
+
'ic:sharp-crisis-alert',
|
|
73
|
+
'ic:sharp-design-services',
|
|
74
|
+
'ic:sharp-directions',
|
|
75
|
+
'ic:sharp-directions-bike',
|
|
76
|
+
'ic:sharp-local-fire-department',
|
|
77
|
+
'ic:sharp-local-florist',
|
|
78
|
+
'ic:sharp-local-pharmacy',
|
|
79
|
+
'ic:sharp-multiple-stop',
|
|
80
|
+
'ic:sharp-museum',
|
|
81
|
+
'ic:sharp-no-crash',
|
|
82
|
+
'ic:sharp-pedal-bike',
|
|
83
|
+
'ic:sharp-pest-control',
|
|
84
|
+
'ic:sharp-share-arrival-time',
|
|
85
|
+
'ic:sharp-signpost',
|
|
86
|
+
'ic:sharp-volunteer-activism',
|
|
87
|
+
'ic:sharp-wine-bar',
|
|
88
|
+
'ic:sharp-wrong-location',
|
|
89
|
+
'ic:baseline-ac-unit',
|
|
90
|
+
'ic:baseline-airport-shuttle',
|
|
91
|
+
'ic:baseline-all-inclusive',
|
|
92
|
+
'ic:baseline-apartment',
|
|
93
|
+
'ic:baseline-balcony',
|
|
94
|
+
'ic:baseline-bathtub',
|
|
95
|
+
'ic:baseline-beach-access',
|
|
96
|
+
'ic:baseline-bento',
|
|
97
|
+
'ic:baseline-bungalow',
|
|
98
|
+
'ic:baseline-corporate-fare',
|
|
99
|
+
'ic:baseline-escalator',
|
|
100
|
+
'ic:baseline-escalator-warning',
|
|
101
|
+
'ic:baseline-family-restroom',
|
|
102
|
+
'ic:baseline-free-breakfast',
|
|
103
|
+
'ic:baseline-holiday-village',
|
|
104
|
+
'ic:baseline-house',
|
|
105
|
+
'ic:baseline-rice-bowl',
|
|
106
|
+
'ic:baseline-room-preferences',
|
|
107
|
+
'ic:baseline-spa',
|
|
108
|
+
'ic:baseline-sports-bar',
|
|
109
|
+
'ic:baseline-villa',
|
|
110
|
+
'ic:outline-family-restroom',
|
|
111
|
+
'ic:round-casino',
|
|
112
|
+
'ic:round-corporate-fare',
|
|
113
|
+
'ic:round-cottage',
|
|
114
|
+
'ic:round-countertops',
|
|
115
|
+
'ic:baseline-manage-search',
|
|
116
|
+
'ic:outline-dining',
|
|
117
|
+
'ic:baseline-6-ft-apart',
|
|
118
|
+
'ic:baseline-add-moderator',
|
|
119
|
+
'ic:baseline-add-reaction',
|
|
120
|
+
'ic:baseline-adobe',
|
|
121
|
+
'ic:baseline-apple',
|
|
122
|
+
'ic:baseline-cake',
|
|
123
|
+
'ic:baseline-catching-pokemon',
|
|
124
|
+
'ic:baseline-clean-hands',
|
|
125
|
+
'ic:baseline-connect-without-contact',
|
|
126
|
+
'ic:baseline-construction',
|
|
127
|
+
'ic:baseline-cookie',
|
|
128
|
+
'ic:baseline-coronavirus',
|
|
129
|
+
'ic:baseline-cyclone',
|
|
130
|
+
'ic:baseline-deck',
|
|
131
|
+
'ic:baseline-domain',
|
|
132
|
+
'ic:baseline-domain-add',
|
|
133
|
+
'ic:baseline-downhill-skiing',
|
|
134
|
+
'ic:baseline-edit-notifications',
|
|
135
|
+
'ic:baseline-elderly',
|
|
136
|
+
'ic:baseline-elderly-woman',
|
|
137
|
+
'ic:baseline-emoji-objects',
|
|
138
|
+
'ic:baseline-emoji-people',
|
|
139
|
+
'ic:baseline-emoji-transportation',
|
|
140
|
+
'ic:baseline-engineering',
|
|
141
|
+
'ic:baseline-facebook',
|
|
142
|
+
'ic:baseline-fitbit',
|
|
143
|
+
'ic:baseline-flood',
|
|
144
|
+
'ic:baseline-follow-the-signs',
|
|
145
|
+
'ic:baseline-front-hand',
|
|
146
|
+
'ic:baseline-health-and-safety',
|
|
147
|
+
'ic:baseline-history-edu',
|
|
148
|
+
'ic:baseline-hive',
|
|
149
|
+
'ic:baseline-ice-skating',
|
|
150
|
+
'ic:baseline-interests',
|
|
151
|
+
'ic:baseline-ios-share',
|
|
152
|
+
'ic:baseline-kayaking',
|
|
153
|
+
'ic:baseline-king-bed',
|
|
154
|
+
'ic:baseline-kitesurfing',
|
|
155
|
+
'ic:baseline-landslide',
|
|
156
|
+
'ic:baseline-male',
|
|
157
|
+
'ic:baseline-female',
|
|
158
|
+
'ic:baseline-mood',
|
|
159
|
+
'ic:baseline-mood-bad',
|
|
160
|
+
'ic:baseline-nights-stay',
|
|
161
|
+
'ic:baseline-no-luggage',
|
|
162
|
+
'ic:baseline-luggage',
|
|
163
|
+
'ic:baseline-nordic-walking',
|
|
164
|
+
'ic:baseline-outdoor-grill',
|
|
165
|
+
'ic:baseline-pages',
|
|
166
|
+
'ic:baseline-paragliding',
|
|
167
|
+
'ic:baseline-party-mode',
|
|
168
|
+
'ic:baseline-paypal',
|
|
169
|
+
'ic:baseline-people',
|
|
170
|
+
'ic:baseline-people-alt',
|
|
171
|
+
'ic:baseline-people-outline',
|
|
172
|
+
'ic:baseline-pix',
|
|
173
|
+
'ic:baseline-psychology',
|
|
174
|
+
'ic:baseline-public',
|
|
175
|
+
'ic:baseline-public-off',
|
|
176
|
+
'ic:baseline-quora',
|
|
177
|
+
'ic:baseline-real-estate-agent',
|
|
178
|
+
'ic:baseline-recommend',
|
|
179
|
+
'ic:baseline-recycling',
|
|
180
|
+
'ic:baseline-roller-skating',
|
|
181
|
+
'ic:baseline-sanitizer',
|
|
182
|
+
'ic:baseline-scale',
|
|
183
|
+
'ic:baseline-school',
|
|
184
|
+
'ic:baseline-scuba-diving',
|
|
185
|
+
'ic:baseline-self-improvement',
|
|
186
|
+
'ic:baseline-sentiment-neutral',
|
|
187
|
+
'ic:baseline-sentiment-slightly-dissatisfied',
|
|
188
|
+
'ic:baseline-sentiment-very-dissatisfied',
|
|
189
|
+
'ic:baseline-sentiment-very-satisfied',
|
|
190
|
+
'ic:baseline-severe-cold',
|
|
191
|
+
'ic:baseline-share',
|
|
192
|
+
'ic:baseline-shopify',
|
|
193
|
+
'ic:baseline-sick',
|
|
194
|
+
'ic:baseline-sign-language',
|
|
195
|
+
'ic:baseline-single-bed',
|
|
196
|
+
'ic:baseline-snowshoeing',
|
|
197
|
+
'ic:baseline-south-america',
|
|
198
|
+
'ic:baseline-sports-baseball',
|
|
199
|
+
'ic:baseline-sports-basketball',
|
|
200
|
+
'ic:baseline-sports-cricket',
|
|
201
|
+
'ic:baseline-sports-esports',
|
|
202
|
+
'ic:baseline-sports-football',
|
|
203
|
+
'ic:baseline-sports-golf',
|
|
204
|
+
'ic:baseline-sports-kabaddi',
|
|
205
|
+
'ic:baseline-sports-soccer',
|
|
206
|
+
'ic:baseline-sports-volleyball',
|
|
207
|
+
'ic:baseline-sports-tennis',
|
|
208
|
+
'ic:baseline-surfing',
|
|
209
|
+
'ic:baseline-switch-account',
|
|
210
|
+
'ic:baseline-telegram',
|
|
211
|
+
'ic:baseline-thunderstorm',
|
|
212
|
+
'ic:baseline-tiktok',
|
|
213
|
+
'ic:baseline-transgender',
|
|
214
|
+
'ic:baseline-travel-explore',
|
|
215
|
+
'ic:baseline-waving-hand',
|
|
216
|
+
'ic:baseline-wechat',
|
|
217
|
+
'ic:baseline-whatsapp',
|
|
218
|
+
'ic:baseline-whatshot',
|
|
219
|
+
'ic:outline-apple',
|
|
220
|
+
'ic:outline-back-hand',
|
|
221
|
+
'ic:outline-coronavirus',
|
|
222
|
+
'ic:outline-cyclone',
|
|
223
|
+
'ic:outline-emoji-events',
|
|
224
|
+
'ic:outline-emoji-transportation',
|
|
225
|
+
'ic:outline-real-estate-agent',
|
|
226
|
+
'ic:outline-recycling',
|
|
227
|
+
'ic:round-pix',
|
|
228
|
+
'ic:round-sports-basketball',
|
|
229
|
+
'ic:sharp-emoji-objects',
|
|
230
|
+
'mdi:linux',
|
|
231
|
+
'mdi:paw',
|
|
232
|
+
'mdi:arrange-bring-forward',
|
|
233
|
+
'mdi:arrange-bring-to-front',
|
|
234
|
+
'mdi:arrange-send-backward',
|
|
235
|
+
'mdi:arrange-send-to-back',
|
|
236
|
+
'mdi:vector-arrange-above',
|
|
237
|
+
'mdi:album',
|
|
238
|
+
'mdi:audio-input-rca',
|
|
239
|
+
'mdi:audio-input-stereo-minijack',
|
|
240
|
+
'mdi:audio-input-xlr',
|
|
241
|
+
'mdi:audio-video',
|
|
242
|
+
'mdi:bluetooth-audio',
|
|
243
|
+
'mdi:cast-audio',
|
|
244
|
+
'mdi:earbuds',
|
|
245
|
+
'mdi:earbuds-off',
|
|
246
|
+
'mdi:equalizer',
|
|
247
|
+
'mdi:equalizer-outline',
|
|
248
|
+
'mdi:headphones',
|
|
249
|
+
'mdi:headset',
|
|
250
|
+
'mdi:microphone-question',
|
|
251
|
+
'mdi:microphone-question-outline',
|
|
252
|
+
'mdi:music',
|
|
253
|
+
'mdi:music-note',
|
|
254
|
+
'mdi:music-note-bluetooth',
|
|
255
|
+
'mdi:triangle-wave',
|
|
256
|
+
'mdi:tune',
|
|
257
|
+
'mdi:tune-variant',
|
|
258
|
+
'mdi:tune-vertical',
|
|
259
|
+
'mdi:tune-vertical-variant',
|
|
260
|
+
'mdi:angular',
|
|
261
|
+
'mdi:angularjs',
|
|
262
|
+
'mdi:ansible',
|
|
263
|
+
'mdi:blender-software',
|
|
264
|
+
'mdi:ember',
|
|
265
|
+
'mdi:facebook',
|
|
266
|
+
'mdi:fedora',
|
|
267
|
+
'mdi:firebase',
|
|
268
|
+
'mdi:github',
|
|
269
|
+
'mdi:instagram',
|
|
270
|
+
'mdi:kodi',
|
|
271
|
+
'mdi:linkedin',
|
|
272
|
+
'mdi:lumx',
|
|
273
|
+
'mdi:manjaro',
|
|
274
|
+
'mdi:microsoft-edge',
|
|
275
|
+
'mdi:microsoft-excel',
|
|
276
|
+
'mdi:microsoft-internet-explorer',
|
|
277
|
+
'mdi:microsoft-office',
|
|
278
|
+
'mdi:microsoft-onenote',
|
|
279
|
+
'mdi:microsoft-outlook',
|
|
280
|
+
'mdi:microsoft-visual-studio',
|
|
281
|
+
'mdi:microsoft-windows',
|
|
282
|
+
'mdi:microsoft-windows-classic',
|
|
283
|
+
'mdi:microsoft-word',
|
|
284
|
+
'mdi:microsoft-xbox',
|
|
285
|
+
'mdi:opera',
|
|
286
|
+
'mdi:origin',
|
|
287
|
+
'mdi:pinterest',
|
|
288
|
+
'mdi:polymer',
|
|
289
|
+
'mdi:qqchat',
|
|
290
|
+
'mdi:react',
|
|
291
|
+
'mdi:semantic-web',
|
|
292
|
+
'mdi:sina-weibo',
|
|
293
|
+
'mdi:skype',
|
|
294
|
+
'mdi:skype-business',
|
|
295
|
+
'mdi:slack',
|
|
296
|
+
'mdi:terraform',
|
|
297
|
+
'mdi:unity',
|
|
298
|
+
'mdi:twitter',
|
|
299
|
+
'mdi:vlc',
|
|
300
|
+
'mdi:vuejs',
|
|
301
|
+
'mdi:webpack',
|
|
302
|
+
'mdi:wechat',
|
|
303
|
+
'mdi:youtube-gaming',
|
|
304
|
+
'mdi:microphone',
|
|
305
|
+
'mdi:trumpet',
|
|
306
|
+
'mdi:clover',
|
|
307
|
+
'mdi:hexagon-multiple-outline',
|
|
308
|
+
'mdi:image-filter-drama',
|
|
309
|
+
'mdi:image-filter-hdr',
|
|
310
|
+
'mdi:atom-variant',
|
|
311
|
+
'mdi:circle-opacity',
|
|
312
|
+
'mdi:rhombus-split',
|
|
313
|
+
'mdi:rhombus-split-outline',
|
|
314
|
+
'mdi:shape',
|
|
315
|
+
'mdi:store-cog',
|
|
316
|
+
'mdi:store-cog-outline',
|
|
317
|
+
'mdi:store-settings',
|
|
318
|
+
'mdi:store-settings-outline',
|
|
319
|
+
'mdi:fit-to-page',
|
|
320
|
+
'mdi:fit-to-page-outline',
|
|
321
|
+
'mdi:airballoon',
|
|
322
|
+
'mdi:airballoon-outline',
|
|
323
|
+
'mdi:movie-open-settings',
|
|
324
|
+
'mdi:movie-open-settings-outline',
|
|
325
|
+
'ant-design:alipay-outlined',
|
|
326
|
+
'ant-design:aliwangwang-filled',
|
|
327
|
+
'ant-design:aliwangwang-outlined',
|
|
328
|
+
'ant-design:aliyun-outlined',
|
|
329
|
+
'ant-design:copyright-circle-filled',
|
|
330
|
+
'ant-design:copyright-circle-outlined',
|
|
331
|
+
'ant-design:heart-filled',
|
|
332
|
+
'ant-design:heart-outlined'
|
|
333
|
+
]
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { Actions } from './icons/actions'
|
|
2
|
+
import { Communicate } from './icons/commuticate'
|
|
3
|
+
import { Devices } from './icons/devices'
|
|
4
|
+
import { Edit } from './icons/edit'
|
|
5
|
+
import { File } from './icons/file'
|
|
6
|
+
import { Math } from './icons/math'
|
|
7
|
+
import { Navigate } from './icons/navigate'
|
|
8
|
+
import { Message } from './icons/message'
|
|
9
|
+
import { Code } from './icons/code'
|
|
10
|
+
import { Currency } from './icons/currency'
|
|
11
|
+
import { Other } from './icons/other'
|
|
12
|
+
|
|
13
|
+
export const Icons = [
|
|
14
|
+
{
|
|
15
|
+
type: '操作',
|
|
16
|
+
children: Actions
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
type: '交流',
|
|
20
|
+
children: Communicate
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
type: '设备',
|
|
24
|
+
children: Devices
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
type: '编辑',
|
|
28
|
+
children: Edit
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
type: '文件',
|
|
32
|
+
children: File
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
type: '数学',
|
|
36
|
+
children: Math
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
type: '导航',
|
|
40
|
+
children: Navigate
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
type: '消息',
|
|
44
|
+
children: Message
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
type: '扫码',
|
|
48
|
+
children: Code
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
type: '货币',
|
|
52
|
+
children: Currency
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
type: '其他',
|
|
56
|
+
children: Other
|
|
57
|
+
},
|
|
58
|
+
]
|
|
Binary file
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
@import './reset.less';
|
|
2
|
+
|
|
3
|
+
@import '../../theme/theme.less';
|
|
4
|
+
|
|
5
|
+
@import '../../components/container/index.less';
|
|
6
|
+
@import '../../components/modal/src/index.less';
|
|
7
|
+
@import '../../components/forms/src/index.less';
|
|
8
|
+
@import '../../components/table/src/index.less';
|
|
9
|
+
@import '../../components/icons/src/index.less';
|
|
10
|
+
@import '../../components/iframe/src/index.less';
|