@dt-frames/ui 2.0.1 → 2.0.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.
- 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 +93 -0
- package/es/components/container/index.js +288 -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 +18 -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 +3098 -0
- package/es/components/curd/src/components/Curd.d.ts +1451 -0
- package/es/components/curd/src/hooks/useCurd.d.ts +112 -0
- package/es/components/curd/src/props.d.ts +188 -0
- package/es/components/curd/src/types/curd.type.d.ts +19 -0
- package/es/components/drawer/index.d.ts +8041 -0
- package/es/components/drawer/index.js +837 -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 +13 -0
- package/es/components/drawer/src/hooks/useDrawer.d.ts +3 -0
- package/es/components/drawer/src/index.d.ts +8043 -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 +3367 -0
- package/es/components/form/index.js +1895 -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 +313 -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 +3113 -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 +3 -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 +1192 -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 +215 -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 +881 -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 +331 -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 +4414 -0
- package/es/components/table/index.less +183 -0
- package/es/components/table/src/components/TableAction.d.ts +70 -0
- package/es/components/table/src/components/TableHeader.d.ts +1243 -0
- package/es/components/table/src/components/TableRender.d.ts +13 -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 +1029 -0
- package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +995 -0
- package/es/components/table/src/components/tableSetting/Fullscreen.d.ts +22 -0
- package/es/components/table/src/components/tableSetting/index.d.ts +1137 -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 +16 -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 +122 -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 +990 -0
- package/es/components/table/src/props.d.ts +244 -0
- package/es/components/table/src/types/actions.type.d.ts +22 -0
- package/es/components/table/src/types/header.type.d.ts +23 -0
- package/es/components/table/src/types/table.type.d.ts +92 -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 +3242 -0
- package/es/theme/index.d.ts +10 -0
- package/es/theme/index.js +3242 -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 +36 -0
- package/es/theme/src/components/header/components/menu-filter.d.ts +22 -0
- package/es/theme/src/components/header/components/notify.d.ts +23 -0
- package/es/theme/src/components/header/components/setting-theme.d.ts +222 -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 +36 -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 +698 -0
- package/es/theme/src/components/header/multiple-header.d.ts +787 -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 +1644 -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 +1 -5
- package/tailwind.config.cjs +11 -0
- package/tsconfig.json +41 -0
- package/tsconfig.node.json +9 -0
- package/vite.config.ts +78 -0
|
@@ -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 @@
|
|
|
1
|
+
export declare const Other: string[];
|
|
@@ -0,0 +1,324 @@
|
|
|
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:bluetooth-audio',
|
|
242
|
+
'mdi:cast-audio',
|
|
243
|
+
'mdi:earbuds',
|
|
244
|
+
'mdi:earbuds-off',
|
|
245
|
+
'mdi:equalizer',
|
|
246
|
+
'mdi:equalizer-outline',
|
|
247
|
+
'mdi:headphones',
|
|
248
|
+
'mdi:headset',
|
|
249
|
+
'mdi:microphone-question',
|
|
250
|
+
'mdi:microphone-question-outline',
|
|
251
|
+
'mdi:music',
|
|
252
|
+
'mdi:music-note',
|
|
253
|
+
'mdi:music-note-bluetooth',
|
|
254
|
+
'mdi:triangle-wave',
|
|
255
|
+
'mdi:tune',
|
|
256
|
+
'mdi:tune-variant',
|
|
257
|
+
'mdi:tune-vertical',
|
|
258
|
+
'mdi:tune-vertical-variant',
|
|
259
|
+
'mdi:angular',
|
|
260
|
+
'mdi:angularjs',
|
|
261
|
+
'mdi:ansible',
|
|
262
|
+
'mdi:blender-software',
|
|
263
|
+
'mdi:ember',
|
|
264
|
+
'mdi:facebook',
|
|
265
|
+
'mdi:fedora',
|
|
266
|
+
'mdi:firebase',
|
|
267
|
+
'mdi:github',
|
|
268
|
+
'mdi:instagram',
|
|
269
|
+
'mdi:kodi',
|
|
270
|
+
'mdi:linkedin',
|
|
271
|
+
'mdi:lumx',
|
|
272
|
+
'mdi:manjaro',
|
|
273
|
+
'mdi:microsoft-edge',
|
|
274
|
+
'mdi:microsoft-excel',
|
|
275
|
+
'mdi:microsoft-internet-explorer',
|
|
276
|
+
'mdi:microsoft-office',
|
|
277
|
+
'mdi:microsoft-onenote',
|
|
278
|
+
'mdi:microsoft-outlook',
|
|
279
|
+
'mdi:microsoft-visual-studio',
|
|
280
|
+
'mdi:microsoft-windows',
|
|
281
|
+
'mdi:microsoft-windows-classic',
|
|
282
|
+
'mdi:microsoft-word',
|
|
283
|
+
'mdi:microsoft-xbox',
|
|
284
|
+
'mdi:opera',
|
|
285
|
+
'mdi:origin',
|
|
286
|
+
'mdi:pinterest',
|
|
287
|
+
'mdi:polymer',
|
|
288
|
+
'mdi:qqchat',
|
|
289
|
+
'mdi:react',
|
|
290
|
+
'mdi:semantic-web',
|
|
291
|
+
'mdi:sina-weibo',
|
|
292
|
+
'mdi:skype',
|
|
293
|
+
'mdi:skype-business',
|
|
294
|
+
'mdi:slack',
|
|
295
|
+
'mdi:terraform',
|
|
296
|
+
'mdi:unity',
|
|
297
|
+
'mdi:twitter',
|
|
298
|
+
'mdi:vlc',
|
|
299
|
+
'mdi:vuejs',
|
|
300
|
+
'mdi:webpack',
|
|
301
|
+
'mdi:wechat',
|
|
302
|
+
'mdi:youtube-gaming',
|
|
303
|
+
'mdi:microphone',
|
|
304
|
+
'mdi:trumpet',
|
|
305
|
+
'mdi:clover',
|
|
306
|
+
'mdi:hexagon-multiple-outline',
|
|
307
|
+
'mdi:image-filter-drama',
|
|
308
|
+
'mdi:image-filter-hdr',
|
|
309
|
+
'mdi:rhombus-split',
|
|
310
|
+
'mdi:rhombus-split-outline',
|
|
311
|
+
'mdi:shape',
|
|
312
|
+
'mdi:airballoon',
|
|
313
|
+
'mdi:airballoon-outline',
|
|
314
|
+
'mdi:movie-open-settings',
|
|
315
|
+
'mdi:movie-open-settings-outline',
|
|
316
|
+
'ant-design:alipay-outlined',
|
|
317
|
+
'ant-design:aliwangwang-filled',
|
|
318
|
+
'ant-design:aliwangwang-outlined',
|
|
319
|
+
'ant-design:aliyun-outlined',
|
|
320
|
+
'ant-design:copyright-circle-filled',
|
|
321
|
+
'ant-design:copyright-circle-outlined',
|
|
322
|
+
'ant-design:heart-filled',
|
|
323
|
+
'ant-design:heart-outlined'
|
|
324
|
+
]
|
|
@@ -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
|
+
]
|