@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
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
export const Devices = [
|
|
2
|
+
'ic:baseline-app-blocking',
|
|
3
|
+
'ic:baseline-app-shortcut',
|
|
4
|
+
'ic:baseline-airplanemode-active',
|
|
5
|
+
'ic:baseline-airplanemode-inactive',
|
|
6
|
+
'ic:baseline-aod',
|
|
7
|
+
'ic:baseline-battery-0-bar',
|
|
8
|
+
'ic:baseline-battery-1-bar',
|
|
9
|
+
'ic:baseline-battery-4-bar',
|
|
10
|
+
'ic:baseline-battery-6-bar',
|
|
11
|
+
'ic:baseline-battery-alert',
|
|
12
|
+
'ic:baseline-battery-charging-60',
|
|
13
|
+
'ic:baseline-battery-saver',
|
|
14
|
+
'ic:baseline-battery-unknown',
|
|
15
|
+
'ic:baseline-bloodtype',
|
|
16
|
+
'ic:baseline-bluetooth',
|
|
17
|
+
'ic:baseline-bluetooth-connected',
|
|
18
|
+
'ic:baseline-bluetooth-drive',
|
|
19
|
+
'ic:baseline-bluetooth-searching',
|
|
20
|
+
'ic:baseline-cable',
|
|
21
|
+
'ic:baseline-cameraswitch',
|
|
22
|
+
'ic:baseline-dark-mode',
|
|
23
|
+
'ic:baseline-data-saver-off',
|
|
24
|
+
'ic:baseline-data-saver-on',
|
|
25
|
+
'ic:baseline-data-usage',
|
|
26
|
+
'ic:baseline-developer-mode',
|
|
27
|
+
'ic:baseline-device-thermostat',
|
|
28
|
+
'ic:baseline-discount',
|
|
29
|
+
'ic:baseline-do-not-disturb-on-total-silence',
|
|
30
|
+
'ic:baseline-dvr',
|
|
31
|
+
'ic:baseline-edgesensor-high',
|
|
32
|
+
'ic:baseline-flashlight-off',
|
|
33
|
+
'ic:baseline-flashlight-on',
|
|
34
|
+
'ic:baseline-fmd-bad',
|
|
35
|
+
'ic:baseline-fmd-good',
|
|
36
|
+
'ic:baseline-gps-fixed',
|
|
37
|
+
'ic:baseline-gps-not-fixed',
|
|
38
|
+
'ic:baseline-gps-off',
|
|
39
|
+
'ic:baseline-graphic-eq',
|
|
40
|
+
'ic:baseline-grid-3x3',
|
|
41
|
+
'ic:baseline-grid-4x4',
|
|
42
|
+
'ic:baseline-grid-goldenratio',
|
|
43
|
+
'ic:baseline-lan',
|
|
44
|
+
'ic:baseline-light-mode',
|
|
45
|
+
'ic:baseline-mode-night',
|
|
46
|
+
'ic:baseline-mode-standby',
|
|
47
|
+
'ic:baseline-monitor-heart',
|
|
48
|
+
'ic:baseline-nfc',
|
|
49
|
+
'ic:baseline-note-alt',
|
|
50
|
+
'ic:baseline-pattern',
|
|
51
|
+
'ic:baseline-price-check',
|
|
52
|
+
'ic:baseline-restart-alt',
|
|
53
|
+
'ic:baseline-screen-lock-landscape',
|
|
54
|
+
'ic:baseline-screen-lock-portrait',
|
|
55
|
+
'ic:baseline-settings-suggest',
|
|
56
|
+
'ic:baseline-sports-score',
|
|
57
|
+
'ic:baseline-storage',
|
|
58
|
+
'ic:outline-do-not-disturb-on-total-silence',
|
|
59
|
+
'ic:outline-widgets',
|
|
60
|
+
'ic:baseline-headphones',
|
|
61
|
+
'ic:baseline-keyboard',
|
|
62
|
+
'ic:baseline-keyboard-alt',
|
|
63
|
+
'ic:baseline-keyboard-hide',
|
|
64
|
+
'ic:baseline-point-of-sale',
|
|
65
|
+
'ic:baseline-router',
|
|
66
|
+
'ic:baseline-scanner',
|
|
67
|
+
'ic:baseline-sim-card',
|
|
68
|
+
'ic:baseline-smart-toy',
|
|
69
|
+
'ic:baseline-speaker',
|
|
70
|
+
'ic:baseline-speaker-group',
|
|
71
|
+
'ic:baseline-tablet-android',
|
|
72
|
+
'ic:baseline-tablet-mac',
|
|
73
|
+
'ic:outline-headset-mic',
|
|
74
|
+
'ic:outline-headset-off',
|
|
75
|
+
'ic:outline-keyboard',
|
|
76
|
+
'ic:outline-keyboard-alt',
|
|
77
|
+
'ic:baseline-photo-camera-front',
|
|
78
|
+
'mdi:radio',
|
|
79
|
+
'mdi:toslink',
|
|
80
|
+
'mdi:volume-high',
|
|
81
|
+
'mdi:volume-low',
|
|
82
|
+
'mdi:volume-medium',
|
|
83
|
+
'mdi:volume-minus',
|
|
84
|
+
'mdi:volume-mute',
|
|
85
|
+
'mdi:volume-off',
|
|
86
|
+
'mdi:volume-plus',
|
|
87
|
+
'mdi:volume-source',
|
|
88
|
+
'mdi:volume-variant-off',
|
|
89
|
+
'mdi:volume-vibrate',
|
|
90
|
+
'mdi:waveform',
|
|
91
|
+
'mdi:hazard-lights',
|
|
92
|
+
'mdi:cellphone',
|
|
93
|
+
'mdi:cellphone-arrow-down',
|
|
94
|
+
'mdi:cellphone-arrow-down-variant',
|
|
95
|
+
'mdi:cellphone-basic',
|
|
96
|
+
'mdi:cellphone-charging',
|
|
97
|
+
'mdi:cellphone-check',
|
|
98
|
+
'mdi:cellphone-dock',
|
|
99
|
+
'mdi:cellphone-information',
|
|
100
|
+
'mdi:cellphone-key',
|
|
101
|
+
'mdi:cellphone-link',
|
|
102
|
+
'mdi:cellphone-link-off',
|
|
103
|
+
'mdi:cellphone-lock',
|
|
104
|
+
'mdi:cellphone-marker',
|
|
105
|
+
'mdi:cellphone-message',
|
|
106
|
+
'mdi:cellphone-message-off',
|
|
107
|
+
'mdi:cellphone-nfc',
|
|
108
|
+
'mdi:cellphone-nfc-off',
|
|
109
|
+
'mdi:cellphone-off',
|
|
110
|
+
'mdi:cellphone-play',
|
|
111
|
+
'mdi:cellphone-remove',
|
|
112
|
+
'mdi:cellphone-screenshot',
|
|
113
|
+
'mdi:cellphone-settings',
|
|
114
|
+
'mdi:cellphone-sound',
|
|
115
|
+
'mdi:cellphone-text',
|
|
116
|
+
'mdi:cellphone-wireless',
|
|
117
|
+
'mdi:deskphone',
|
|
118
|
+
'mdi:fax',
|
|
119
|
+
'mdi:monitor-cellphone',
|
|
120
|
+
'mdi:monitor-cellphone-star',
|
|
121
|
+
'mdi:phone-rotate-landscape',
|
|
122
|
+
'mdi:phone-rotate-portrait',
|
|
123
|
+
'mdi:airplane-clock',
|
|
124
|
+
'mdi:airplane-cog',
|
|
125
|
+
'mdi:airplane-takeoff'
|
|
126
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Edit: string[];
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
export const Edit = [
|
|
2
|
+
'ic:baseline-add-chart',
|
|
3
|
+
'ic:baseline-align-horizontal-left',
|
|
4
|
+
'ic:baseline-align-horizontal-center',
|
|
5
|
+
'ic:baseline-align-horizontal-right',
|
|
6
|
+
'ic:baseline-align-vertical-bottom',
|
|
7
|
+
'ic:baseline-align-vertical-center',
|
|
8
|
+
'ic:baseline-align-vertical-top',
|
|
9
|
+
'ic:baseline-area-chart',
|
|
10
|
+
'ic:baseline-attach-file',
|
|
11
|
+
'ic:baseline-attach-money',
|
|
12
|
+
'ic:baseline-auto-graph',
|
|
13
|
+
'ic:baseline-bar-chart',
|
|
14
|
+
'ic:baseline-border-all',
|
|
15
|
+
'ic:baseline-border-bottom',
|
|
16
|
+
'ic:baseline-border-clear',
|
|
17
|
+
'ic:baseline-border-color',
|
|
18
|
+
'ic:baseline-border-horizontal',
|
|
19
|
+
'ic:baseline-border-inner',
|
|
20
|
+
'ic:baseline-border-left',
|
|
21
|
+
'ic:baseline-border-outer',
|
|
22
|
+
'ic:baseline-border-right',
|
|
23
|
+
'ic:baseline-border-top',
|
|
24
|
+
'ic:baseline-border-vertical',
|
|
25
|
+
'ic:baseline-bubble-chart',
|
|
26
|
+
'ic:baseline-candlestick-chart',
|
|
27
|
+
'ic:baseline-checklist',
|
|
28
|
+
'ic:baseline-checklist-rtl',
|
|
29
|
+
'ic:baseline-draw',
|
|
30
|
+
'ic:baseline-edit-note',
|
|
31
|
+
'ic:baseline-format-align-center',
|
|
32
|
+
'ic:baseline-format-align-justify',
|
|
33
|
+
'ic:baseline-format-align-left',
|
|
34
|
+
'ic:baseline-format-align-right',
|
|
35
|
+
'ic:baseline-format-bold',
|
|
36
|
+
'ic:baseline-format-clear',
|
|
37
|
+
'ic:baseline-format-color-fill',
|
|
38
|
+
'ic:baseline-format-color-reset',
|
|
39
|
+
'ic:baseline-format-color-text',
|
|
40
|
+
'ic:baseline-format-indent-decrease',
|
|
41
|
+
'ic:baseline-format-indent-increase',
|
|
42
|
+
'ic:baseline-format-italic',
|
|
43
|
+
'ic:baseline-format-line-spacing',
|
|
44
|
+
'ic:baseline-format-list-bulleted',
|
|
45
|
+
'ic:baseline-format-list-numbered',
|
|
46
|
+
'ic:baseline-format-list-numbered-rtl',
|
|
47
|
+
'ic:baseline-format-paint',
|
|
48
|
+
'ic:baseline-format-quote',
|
|
49
|
+
'ic:baseline-format-shapes',
|
|
50
|
+
'ic:baseline-format-size',
|
|
51
|
+
'ic:baseline-format-strikethrough',
|
|
52
|
+
'ic:baseline-format-underlined',
|
|
53
|
+
'ic:baseline-functions',
|
|
54
|
+
'ic:baseline-height',
|
|
55
|
+
'ic:baseline-hexagon',
|
|
56
|
+
'ic:baseline-highlight',
|
|
57
|
+
'ic:baseline-horizontal-rule',
|
|
58
|
+
'ic:baseline-insert-chart',
|
|
59
|
+
'ic:baseline-insert-chart-outlined',
|
|
60
|
+
'ic:baseline-insert-drive-file',
|
|
61
|
+
'ic:baseline-insert-emoticon',
|
|
62
|
+
'ic:baseline-insert-invitation',
|
|
63
|
+
'ic:baseline-insert-link',
|
|
64
|
+
'ic:baseline-insert-page-break',
|
|
65
|
+
'ic:baseline-insert-photo',
|
|
66
|
+
'ic:baseline-line-axis',
|
|
67
|
+
'ic:baseline-linear-scale',
|
|
68
|
+
'ic:baseline-margin',
|
|
69
|
+
'ic:baseline-merge-type',
|
|
70
|
+
'ic:baseline-mode',
|
|
71
|
+
'ic:baseline-monetization-on',
|
|
72
|
+
'ic:baseline-move-down',
|
|
73
|
+
'ic:baseline-move-up',
|
|
74
|
+
'ic:baseline-pie-chart',
|
|
75
|
+
'ic:baseline-pie-chart-outline',
|
|
76
|
+
'ic:baseline-polyline',
|
|
77
|
+
'ic:baseline-post-add',
|
|
78
|
+
'ic:baseline-publish',
|
|
79
|
+
'ic:baseline-query-stats',
|
|
80
|
+
'ic:baseline-schema',
|
|
81
|
+
'ic:baseline-stacked-line-chart',
|
|
82
|
+
'ic:outline-table-chart',
|
|
83
|
+
'ic:outline-table-rows',
|
|
84
|
+
'ic:baseline-check-box',
|
|
85
|
+
'ic:baseline-check-box-outline-blank',
|
|
86
|
+
'ic:baseline-indeterminate-check-box',
|
|
87
|
+
'ic:baseline-radio-button-checked',
|
|
88
|
+
'ic:baseline-radio-button-unchecked',
|
|
89
|
+
'ic:baseline-star',
|
|
90
|
+
'ic:baseline-star-border',
|
|
91
|
+
'ic:baseline-star-border-purple500',
|
|
92
|
+
'ic:baseline-star-half',
|
|
93
|
+
'ic:baseline-toggle-off',
|
|
94
|
+
'ic:baseline-toggle-on',
|
|
95
|
+
'ic:outline-check-box',
|
|
96
|
+
'ic:outline-check-box-outline-blank',
|
|
97
|
+
'ic:outline-indeterminate-check-box',
|
|
98
|
+
'mdi:format-paint',
|
|
99
|
+
'mdi:invert-colors',
|
|
100
|
+
'mdi:invert-colors-off',
|
|
101
|
+
'mdi:looks',
|
|
102
|
+
'mdi:palette',
|
|
103
|
+
'mdi:palette-advanced',
|
|
104
|
+
'mdi:palette-outline',
|
|
105
|
+
'mdi:palette-swatch',
|
|
106
|
+
'mdi:palette-swatch-outline',
|
|
107
|
+
'mdi:palette-swatch-variant',
|
|
108
|
+
'mdi:database',
|
|
109
|
+
'mdi:database-alert',
|
|
110
|
+
'mdi:database-alert-outline',
|
|
111
|
+
'mdi:database-arrow-down',
|
|
112
|
+
'mdi:database-arrow-left',
|
|
113
|
+
'mdi:database-arrow-right',
|
|
114
|
+
'mdi:database-arrow-up',
|
|
115
|
+
'mdi:database-check',
|
|
116
|
+
'mdi:database-clock',
|
|
117
|
+
'mdi:database-cog',
|
|
118
|
+
'mdi:database-edit',
|
|
119
|
+
'mdi:database-eye',
|
|
120
|
+
'mdi:database-eye-off',
|
|
121
|
+
'mdi:database-lock',
|
|
122
|
+
'mdi:database-minus',
|
|
123
|
+
'mdi:database-plus',
|
|
124
|
+
'mdi:database-remove',
|
|
125
|
+
'mdi:database-search',
|
|
126
|
+
'mdi:database-sync',
|
|
127
|
+
'mdi:brush',
|
|
128
|
+
'mdi:brush-outline',
|
|
129
|
+
'mdi:brush-variant',
|
|
130
|
+
'mdi:circle-opacity',
|
|
131
|
+
'mdi:draw',
|
|
132
|
+
'mdi:draw-pen',
|
|
133
|
+
'mdi:drawing',
|
|
134
|
+
'mdi:drawing-box',
|
|
135
|
+
'mdi:eyedropper',
|
|
136
|
+
'mdi:format-line-style',
|
|
137
|
+
'mdi:format-line-weight',
|
|
138
|
+
'mdi:fountain-pen',
|
|
139
|
+
'mdi:fountain-pen-tip',
|
|
140
|
+
'mdi:gesture',
|
|
141
|
+
'mdi:grease-pencil',
|
|
142
|
+
'mdi:lead-pencil',
|
|
143
|
+
'mdi:pen',
|
|
144
|
+
'mdi:pencil-ruler',
|
|
145
|
+
'mdi:format-color-fill',
|
|
146
|
+
'mdi:format-color-highlight',
|
|
147
|
+
'mdi:format-color-text',
|
|
148
|
+
'mdi:view-comfy',
|
|
149
|
+
'mdi:view-comfy-outline',
|
|
150
|
+
'mdi:view-compact',
|
|
151
|
+
'mdi:view-dashboard',
|
|
152
|
+
'mdi:view-dashboard-edit',
|
|
153
|
+
'mdi:view-dashboard-variant',
|
|
154
|
+
'mdi:view-grid',
|
|
155
|
+
'mdi:view-grid-outline',
|
|
156
|
+
'mdi:view-grid-plus',
|
|
157
|
+
'mdi:view-grid-plus-outline',
|
|
158
|
+
'mdi:view-list',
|
|
159
|
+
'mdi:view-module',
|
|
160
|
+
'mdi:view-headline',
|
|
161
|
+
'mdi:view-sequential',
|
|
162
|
+
'mdi:view-split-vertical',
|
|
163
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const File: string[];
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
export const File = [
|
|
2
|
+
'ic:baseline-approval',
|
|
3
|
+
'ic:baseline-attach-email',
|
|
4
|
+
'ic:baseline-cloud',
|
|
5
|
+
'ic:baseline-cloud-circle',
|
|
6
|
+
'ic:baseline-cloud-done',
|
|
7
|
+
'ic:baseline-cloud-download',
|
|
8
|
+
'ic:baseline-cloud-off',
|
|
9
|
+
'ic:baseline-cloud-queue',
|
|
10
|
+
'ic:baseline-cloud-sync',
|
|
11
|
+
'ic:baseline-cloud-upload',
|
|
12
|
+
'ic:baseline-create-new-folder',
|
|
13
|
+
'ic:baseline-difference',
|
|
14
|
+
'ic:baseline-download',
|
|
15
|
+
'ic:baseline-download-for-offline',
|
|
16
|
+
'ic:baseline-downloading',
|
|
17
|
+
'ic:baseline-drive-file-move',
|
|
18
|
+
'ic:baseline-drive-file-move-rtl',
|
|
19
|
+
'ic:baseline-drive-file-rename-outline',
|
|
20
|
+
'ic:baseline-drive-folder-upload',
|
|
21
|
+
'ic:baseline-file-download-done',
|
|
22
|
+
'ic:baseline-file-download-off',
|
|
23
|
+
'ic:baseline-file-open',
|
|
24
|
+
'ic:baseline-file-upload',
|
|
25
|
+
'ic:baseline-folder',
|
|
26
|
+
'ic:baseline-folder-open',
|
|
27
|
+
'ic:baseline-folder-shared',
|
|
28
|
+
'ic:baseline-format-overline',
|
|
29
|
+
'ic:baseline-grid-view',
|
|
30
|
+
'ic:baseline-newspaper',
|
|
31
|
+
'ic:baseline-text-snippet',
|
|
32
|
+
'ic:baseline-topic',
|
|
33
|
+
'ic:outline-approval',
|
|
34
|
+
'ic:outline-attach-email',
|
|
35
|
+
'ic:outline-cloud-circle',
|
|
36
|
+
'ic:outline-cloud-done',
|
|
37
|
+
'ic:outline-cloud-download',
|
|
38
|
+
'ic:outline-cloud-off',
|
|
39
|
+
'ic:outline-cloud-sync',
|
|
40
|
+
'ic:outline-cloud-upload',
|
|
41
|
+
'ic:outline-create-new-folder',
|
|
42
|
+
'ic:outline-difference',
|
|
43
|
+
'ic:outline-download',
|
|
44
|
+
'ic:outline-folder-copy',
|
|
45
|
+
'ic:outline-folder-delete',
|
|
46
|
+
'ic:outline-folder-off',
|
|
47
|
+
'ic:outline-folder-shared',
|
|
48
|
+
'ic:outline-upload',
|
|
49
|
+
'ic:outline-upload-file',
|
|
50
|
+
'ic:outline-workspaces',
|
|
51
|
+
'ic:baseline-workspaces',
|
|
52
|
+
'mdi:cloud',
|
|
53
|
+
'mdi:cloud-alert',
|
|
54
|
+
'mdi:cloud-braces',
|
|
55
|
+
'mdi:cloud-check',
|
|
56
|
+
'mdi:cloud-check-outline',
|
|
57
|
+
'mdi:cloud-download',
|
|
58
|
+
'mdi:cloud-download-outline',
|
|
59
|
+
'mdi:cloud-lock',
|
|
60
|
+
'mdi:cloud-lock-outline',
|
|
61
|
+
'mdi:cloud-off-outline',
|
|
62
|
+
'mdi:cloud-outline',
|
|
63
|
+
'mdi:cloud-percent',
|
|
64
|
+
'mdi:cloud-percent-outline',
|
|
65
|
+
'mdi:cloud-question',
|
|
66
|
+
'mdi:cloud-refresh',
|
|
67
|
+
'mdi:cloud-search',
|
|
68
|
+
'mdi:cloud-search-outline',
|
|
69
|
+
'mdi:cloud-sync',
|
|
70
|
+
'mdi:cloud-sync-outline',
|
|
71
|
+
'mdi:cloud-tags',
|
|
72
|
+
'mdi:cloud-upload',
|
|
73
|
+
'mdi:cloud-upload-outline',
|
|
74
|
+
'mdi:file-cloud',
|
|
75
|
+
'mdi:file-cloud-outline',
|
|
76
|
+
'mdi:weather-cloudy',
|
|
77
|
+
'mdi:weather-cloudy-alert',
|
|
78
|
+
'mdi:weather-cloudy-arrow-right',
|
|
79
|
+
'mdi:weather-cloudy-clock',
|
|
80
|
+
'mdi:weather-night-partly-cloudy',
|
|
81
|
+
'mdi:weather-partly-cloudy',
|
|
82
|
+
'mdi:file-cog',
|
|
83
|
+
'mdi:file-code',
|
|
84
|
+
'mdi:file-cog-outline',
|
|
85
|
+
'mdi:file-find',
|
|
86
|
+
'mdi:file-settings-outline',
|
|
87
|
+
'mdi:folder-cog',
|
|
88
|
+
'mdi:folder-cog-outline',
|
|
89
|
+
'mdi:weather-lightning',
|
|
90
|
+
'mdi:weather-lightning-rainy',
|
|
91
|
+
'mdi:weather-night',
|
|
92
|
+
'mdi:weather-partly-lightning',
|
|
93
|
+
'mdi:weather-partly-rainy',
|
|
94
|
+
'mdi:weather-partly-snowy',
|
|
95
|
+
'mdi:weather-pouring',
|
|
96
|
+
'mdi:weather-rainy',
|
|
97
|
+
'mdi:weather-snowy',
|
|
98
|
+
'mdi:weather-snowy-heavy'
|
|
99
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Math: string[];
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
export const Math = [
|
|
2
|
+
'ic:baseline-divide',
|
|
3
|
+
'ic:baseline-equals',
|
|
4
|
+
'ic:baseline-greater-than',
|
|
5
|
+
'ic:baseline-greater-than-equal',
|
|
6
|
+
'ic:baseline-less-than',
|
|
7
|
+
'ic:baseline-less-than-equal',
|
|
8
|
+
'ic:baseline-minus',
|
|
9
|
+
'ic:baseline-not-equal',
|
|
10
|
+
'ic:baseline-percentage',
|
|
11
|
+
'ic:baseline-plus',
|
|
12
|
+
'ic:baseline-plus-minus',
|
|
13
|
+
'ic:baseline-plus-minus-alt',
|
|
14
|
+
'ic:outline-divide',
|
|
15
|
+
'mdi:angle-acute',
|
|
16
|
+
'mdi:angle-obtuse',
|
|
17
|
+
'mdi:angle-right',
|
|
18
|
+
'mdi:calculator',
|
|
19
|
+
'mdi:calculator-variant',
|
|
20
|
+
'mdi:chart-areaspline',
|
|
21
|
+
'mdi:chart-bar',
|
|
22
|
+
'mdi:chart-bar-stacked',
|
|
23
|
+
'mdi:chart-bell-curve',
|
|
24
|
+
'mdi:chart-bell-curve-cumulative',
|
|
25
|
+
'mdi:chart-donut-variant',
|
|
26
|
+
'mdi:chart-gantt',
|
|
27
|
+
'mdi:chart-line',
|
|
28
|
+
'mdi:chart-line-stacked',
|
|
29
|
+
'mdi:chart-multiple',
|
|
30
|
+
'mdi:chart-pie',
|
|
31
|
+
'mdi:chart-ppf',
|
|
32
|
+
'mdi:chart-sankey',
|
|
33
|
+
'mdi:chart-scatter-plot',
|
|
34
|
+
'mdi:chart-scatter-plot-hexbin',
|
|
35
|
+
'mdi:chart-timeline',
|
|
36
|
+
'mdi:chart-timeline-variant-shimmer',
|
|
37
|
+
'mdi:circle-small',
|
|
38
|
+
'mdi:code-braces',
|
|
39
|
+
'mdi:code-brackets',
|
|
40
|
+
'mdi:exponent',
|
|
41
|
+
'mdi:finance',
|
|
42
|
+
'mdi:format-superscript',
|
|
43
|
+
'mdi:function',
|
|
44
|
+
'mdi:function-variant',
|
|
45
|
+
'mdi:infinity',
|
|
46
|
+
'mdi:lambda',
|
|
47
|
+
'mdi:math-compass',
|
|
48
|
+
'mdi:math-cos',
|
|
49
|
+
'mdi:math-integral',
|
|
50
|
+
'mdi:math-log',
|
|
51
|
+
'mdi:math-sin',
|
|
52
|
+
'mdi:math-tan'
|
|
53
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Message: string[];
|
|
@@ -0,0 +1,68 @@
|
|
|
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:chat-alert',
|
|
49
|
+
'mdi:chat-alert-outline',
|
|
50
|
+
'mdi:comment-alert',
|
|
51
|
+
'mdi:comment-alert-outline',
|
|
52
|
+
'mdi:content-save-alert',
|
|
53
|
+
'mdi:cookie-alert',
|
|
54
|
+
'mdi:delete-alert',
|
|
55
|
+
'mdi:delete-alert-outline',
|
|
56
|
+
'mdi:email-alert',
|
|
57
|
+
'mdi:email-alert-outline',
|
|
58
|
+
'mdi:phone-alert',
|
|
59
|
+
'mdi:phone-alert-outline',
|
|
60
|
+
'mdi:shield-alert',
|
|
61
|
+
'mdi:shield-alert-outline',
|
|
62
|
+
'mdi:smoke-detector-alert',
|
|
63
|
+
'mdi:smoke-detector-alert-outline',
|
|
64
|
+
'mdi:water-alert',
|
|
65
|
+
'mdi:water-alert-outline',
|
|
66
|
+
'ant-design:info-circle-filled',
|
|
67
|
+
'ant-design:info-circle-outlined'
|
|
68
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Navigate: string[];
|