@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 @@
|
|
|
1
|
+
export declare const Actions: string[];
|
|
@@ -0,0 +1,423 @@
|
|
|
1
|
+
export const Actions = [
|
|
2
|
+
'ic:baseline-save',
|
|
3
|
+
'ic:baseline-save-all',
|
|
4
|
+
'ic:baseline-save-alt',
|
|
5
|
+
'ic:baseline-save-as',
|
|
6
|
+
'ic:baseline-send',
|
|
7
|
+
'ic:baseline-stacked-bar-chart',
|
|
8
|
+
'ic:baseline-stream',
|
|
9
|
+
'ic:baseline-tag',
|
|
10
|
+
'ic:baseline-undo',
|
|
11
|
+
'ic:baseline-upcoming',
|
|
12
|
+
'ic:outline-archive',
|
|
13
|
+
'ic:outline-backspace',
|
|
14
|
+
'ic:outline-ballot',
|
|
15
|
+
'ic:outline-content-cut',
|
|
16
|
+
'ic:outline-clear',
|
|
17
|
+
'ic:outline-content-copy',
|
|
18
|
+
'ic:outline-content-paste',
|
|
19
|
+
'ic:outline-create',
|
|
20
|
+
'ic:outline-delete-sweep',
|
|
21
|
+
'ic:outline-low-priority',
|
|
22
|
+
'ic:outline-mail',
|
|
23
|
+
'ic:outline-push-pin',
|
|
24
|
+
'ic:outline-reply-all',
|
|
25
|
+
'ic:outline-reply',
|
|
26
|
+
'ic:baseline-add',
|
|
27
|
+
'ic:baseline-add-box',
|
|
28
|
+
'ic:baseline-add-card',
|
|
29
|
+
'ic:baseline-add-shopping-cart',
|
|
30
|
+
'ic:baseline-add-to-drive',
|
|
31
|
+
'ic:baseline-addchart',
|
|
32
|
+
'ic:baseline-admin-panel-settings',
|
|
33
|
+
'ic:baseline-ads-click',
|
|
34
|
+
'ic:baseline-3d-rotation',
|
|
35
|
+
'ic:baseline-accessibility-new',
|
|
36
|
+
'ic:baseline-accessible',
|
|
37
|
+
'ic:baseline-account-balance',
|
|
38
|
+
'ic:baseline-account-balance-wallet',
|
|
39
|
+
'ic:baseline-account-box',
|
|
40
|
+
'ic:baseline-account-circle',
|
|
41
|
+
'ic:baseline-all-inbox',
|
|
42
|
+
'ic:baseline-analytics',
|
|
43
|
+
'ic:baseline-api',
|
|
44
|
+
'ic:baseline-arrow-circle-down',
|
|
45
|
+
'ic:baseline-arrow-circle-left',
|
|
46
|
+
'ic:baseline-arrow-circle-right',
|
|
47
|
+
'ic:baseline-arrow-circle-up',
|
|
48
|
+
'ic:baseline-article',
|
|
49
|
+
'ic:baseline-aspect-ratio',
|
|
50
|
+
'ic:baseline-assessment',
|
|
51
|
+
'ic:baseline-assignment',
|
|
52
|
+
'ic:baseline-assignment-ind',
|
|
53
|
+
'ic:baseline-assignment-late',
|
|
54
|
+
'ic:baseline-assignment-return',
|
|
55
|
+
'ic:baseline-assignment-returned',
|
|
56
|
+
'ic:baseline-assignment-turned-in',
|
|
57
|
+
'ic:baseline-assured-workload',
|
|
58
|
+
'ic:baseline-autorenew',
|
|
59
|
+
'ic:baseline-card-giftcard',
|
|
60
|
+
'ic:baseline-card-membership',
|
|
61
|
+
'ic:baseline-card-travel',
|
|
62
|
+
'ic:baseline-dashboard',
|
|
63
|
+
'ic:baseline-dashboard-customize',
|
|
64
|
+
'ic:baseline-data-exploration',
|
|
65
|
+
'ic:baseline-date-range',
|
|
66
|
+
'ic:baseline-delete',
|
|
67
|
+
'ic:baseline-delete-forever',
|
|
68
|
+
'ic:baseline-delete-outline',
|
|
69
|
+
'ic:baseline-description',
|
|
70
|
+
'ic:baseline-disabled-visible',
|
|
71
|
+
'ic:baseline-display-settings',
|
|
72
|
+
'ic:baseline-dns',
|
|
73
|
+
'ic:baseline-done',
|
|
74
|
+
'ic:baseline-done-all',
|
|
75
|
+
'ic:baseline-done-outline',
|
|
76
|
+
'ic:baseline-donut-large',
|
|
77
|
+
'ic:baseline-donut-small',
|
|
78
|
+
'ic:baseline-drag-indicator',
|
|
79
|
+
'ic:baseline-dynamic-form',
|
|
80
|
+
'ic:baseline-edit-calendar',
|
|
81
|
+
'ic:baseline-edit-off',
|
|
82
|
+
'ic:baseline-paid',
|
|
83
|
+
'ic:baseline-redeem',
|
|
84
|
+
'ic:baseline-today',
|
|
85
|
+
'ic:baseline-update',
|
|
86
|
+
'ic:baseline-update-disabled',
|
|
87
|
+
'ic:baseline-backup',
|
|
88
|
+
'ic:baseline-backup-table',
|
|
89
|
+
'ic:baseline-balance',
|
|
90
|
+
'ic:baseline-book',
|
|
91
|
+
'ic:baseline-book-online',
|
|
92
|
+
'ic:baseline-bookmark',
|
|
93
|
+
'ic:baseline-bookmarks',
|
|
94
|
+
'ic:baseline-build',
|
|
95
|
+
'ic:baseline-build-circle',
|
|
96
|
+
'ic:baseline-cached',
|
|
97
|
+
'ic:baseline-calendar-view-day',
|
|
98
|
+
'ic:baseline-calendar-view-month',
|
|
99
|
+
'ic:baseline-calendar-view-week',
|
|
100
|
+
'ic:baseline-camera-enhance',
|
|
101
|
+
'ic:baseline-check-circle',
|
|
102
|
+
'ic:baseline-check-circle-outline',
|
|
103
|
+
'ic:baseline-chrome-reader-mode',
|
|
104
|
+
'ic:baseline-circle-notifications',
|
|
105
|
+
'ic:baseline-close-fullscreen',
|
|
106
|
+
'ic:baseline-comment-bank',
|
|
107
|
+
'ic:baseline-commit',
|
|
108
|
+
'ic:baseline-commute',
|
|
109
|
+
'ic:baseline-compare-arrows',
|
|
110
|
+
'ic:baseline-compress',
|
|
111
|
+
'ic:baseline-contact-page',
|
|
112
|
+
'ic:baseline-contact-support',
|
|
113
|
+
'ic:baseline-contactless',
|
|
114
|
+
'ic:baseline-copyright',
|
|
115
|
+
'ic:baseline-credit-card',
|
|
116
|
+
'ic:baseline-credit-card-off',
|
|
117
|
+
'ic:baseline-currency-exchange',
|
|
118
|
+
'ic:baseline-euro-symbol',
|
|
119
|
+
'ic:baseline-event',
|
|
120
|
+
'ic:baseline-event-repeat',
|
|
121
|
+
'ic:baseline-event-seat',
|
|
122
|
+
'ic:baseline-exit-to-app',
|
|
123
|
+
'ic:baseline-expand',
|
|
124
|
+
'ic:baseline-explore',
|
|
125
|
+
'ic:baseline-explore-off',
|
|
126
|
+
'ic:baseline-extension',
|
|
127
|
+
'ic:baseline-extension-off',
|
|
128
|
+
'ic:baseline-fact-check',
|
|
129
|
+
'ic:baseline-favorite',
|
|
130
|
+
'ic:baseline-favorite-border',
|
|
131
|
+
'ic:baseline-file-present',
|
|
132
|
+
'ic:baseline-filter-alt',
|
|
133
|
+
'ic:baseline-filter-alt-off',
|
|
134
|
+
'ic:baseline-find-in-page',
|
|
135
|
+
'ic:baseline-find-replace',
|
|
136
|
+
'ic:baseline-fingerprint',
|
|
137
|
+
'ic:baseline-fit-screen',
|
|
138
|
+
'ic:baseline-flaky',
|
|
139
|
+
'ic:baseline-flight-land',
|
|
140
|
+
'ic:baseline-flight-takeoff',
|
|
141
|
+
'ic:baseline-flip-to-back',
|
|
142
|
+
'ic:baseline-flip-to-front',
|
|
143
|
+
'ic:baseline-get-app',
|
|
144
|
+
'ic:baseline-grade',
|
|
145
|
+
'ic:baseline-grading',
|
|
146
|
+
'ic:baseline-group-work',
|
|
147
|
+
'ic:baseline-help',
|
|
148
|
+
'ic:baseline-help-center',
|
|
149
|
+
'ic:baseline-help-outline',
|
|
150
|
+
'ic:baseline-highlight-off',
|
|
151
|
+
'ic:baseline-history',
|
|
152
|
+
'ic:baseline-history-toggle-off',
|
|
153
|
+
'ic:baseline-home',
|
|
154
|
+
'ic:baseline-horizontal-split',
|
|
155
|
+
'ic:baseline-hourglass-empty',
|
|
156
|
+
'ic:baseline-hourglass-full',
|
|
157
|
+
'ic:baseline-https',
|
|
158
|
+
'ic:baseline-info',
|
|
159
|
+
'ic:baseline-input',
|
|
160
|
+
'ic:baseline-integration-instructions',
|
|
161
|
+
'ic:baseline-language',
|
|
162
|
+
'ic:baseline-leaderboard',
|
|
163
|
+
'ic:baseline-lightbulb',
|
|
164
|
+
'ic:baseline-lock',
|
|
165
|
+
'ic:baseline-lock-clock',
|
|
166
|
+
'ic:baseline-lock-open',
|
|
167
|
+
'ic:baseline-lock-person',
|
|
168
|
+
'ic:baseline-lock-reset',
|
|
169
|
+
'ic:baseline-log-in',
|
|
170
|
+
'ic:baseline-log-out',
|
|
171
|
+
'ic:baseline-login',
|
|
172
|
+
'ic:baseline-logout',
|
|
173
|
+
'ic:baseline-loyalty',
|
|
174
|
+
'ic:baseline-manage-accounts',
|
|
175
|
+
'ic:baseline-manage-history',
|
|
176
|
+
'ic:baseline-nightlight-round',
|
|
177
|
+
'ic:baseline-noise-aware',
|
|
178
|
+
'ic:baseline-noise-control-off',
|
|
179
|
+
'ic:baseline-note-add',
|
|
180
|
+
'ic:baseline-offline-bolt',
|
|
181
|
+
'ic:baseline-offline-pin',
|
|
182
|
+
'ic:baseline-online-prediction',
|
|
183
|
+
'ic:baseline-open-with',
|
|
184
|
+
'ic:baseline-outbond',
|
|
185
|
+
'ic:baseline-outbound',
|
|
186
|
+
'ic:baseline-pageview',
|
|
187
|
+
'ic:baseline-pending-actions',
|
|
188
|
+
'ic:baseline-pets',
|
|
189
|
+
'ic:baseline-pinch',
|
|
190
|
+
'ic:baseline-polymer',
|
|
191
|
+
'ic:baseline-power-settings-new',
|
|
192
|
+
'ic:baseline-print',
|
|
193
|
+
'ic:baseline-privacy-tip',
|
|
194
|
+
'ic:baseline-query-builder',
|
|
195
|
+
'ic:baseline-published-with-changes',
|
|
196
|
+
'ic:baseline-record-voice-over',
|
|
197
|
+
'ic:baseline-remove-done',
|
|
198
|
+
'ic:baseline-remove-shopping-cart',
|
|
199
|
+
'ic:baseline-report-problem',
|
|
200
|
+
'ic:baseline-request-page',
|
|
201
|
+
'ic:baseline-restore',
|
|
202
|
+
'ic:baseline-restore-from-trash',
|
|
203
|
+
'ic:baseline-restore-page',
|
|
204
|
+
'ic:baseline-rocket',
|
|
205
|
+
'ic:baseline-rocket-launch',
|
|
206
|
+
'ic:baseline-room',
|
|
207
|
+
'ic:baseline-satellite-alt',
|
|
208
|
+
'ic:baseline-sensors-off',
|
|
209
|
+
'ic:baseline-sensors',
|
|
210
|
+
'ic:baseline-settings',
|
|
211
|
+
'ic:baseline-settings-applications',
|
|
212
|
+
'ic:baseline-settings-bluetooth',
|
|
213
|
+
'ic:baseline-settings-backup-restore',
|
|
214
|
+
'ic:baseline-settings-cell',
|
|
215
|
+
'ic:baseline-settings-ethernet',
|
|
216
|
+
'ic:baseline-settings-input-antenna',
|
|
217
|
+
'ic:baseline-settings-input-component',
|
|
218
|
+
'ic:baseline-settings-overscan',
|
|
219
|
+
'ic:baseline-settings-power',
|
|
220
|
+
'ic:baseline-settings-remote',
|
|
221
|
+
'ic:baseline-settings-voice',
|
|
222
|
+
'ic:baseline-shopping-bag',
|
|
223
|
+
'ic:baseline-shopping-basket',
|
|
224
|
+
'ic:baseline-shopping-cart',
|
|
225
|
+
'ic:baseline-shopping-cart-checkout',
|
|
226
|
+
'ic:baseline-space-dashboard',
|
|
227
|
+
'ic:baseline-supervised-user-circle',
|
|
228
|
+
'ic:baseline-supervisor-account',
|
|
229
|
+
'ic:baseline-support',
|
|
230
|
+
'ic:baseline-swap-horiz',
|
|
231
|
+
'ic:baseline-swap-horizontal-circle',
|
|
232
|
+
'ic:baseline-swap-vertical-circle',
|
|
233
|
+
'ic:baseline-swap-vert',
|
|
234
|
+
'ic:baseline-swipe',
|
|
235
|
+
'ic:baseline-swipe-down',
|
|
236
|
+
'ic:baseline-swipe-left',
|
|
237
|
+
'ic:baseline-swipe-left-alt',
|
|
238
|
+
'ic:baseline-swipe-right',
|
|
239
|
+
'ic:baseline-swipe-right-alt',
|
|
240
|
+
'ic:baseline-swipe-up',
|
|
241
|
+
'ic:baseline-swipe-up-alt',
|
|
242
|
+
'ic:baseline-swipe-vertical',
|
|
243
|
+
'ic:baseline-sync-alt',
|
|
244
|
+
'ic:baseline-table-view',
|
|
245
|
+
'ic:baseline-thumb-down',
|
|
246
|
+
'ic:baseline-thumb-down-off-alt',
|
|
247
|
+
'ic:baseline-thumb-up',
|
|
248
|
+
'ic:baseline-thumb-up-off-alt',
|
|
249
|
+
'ic:baseline-thumbs-up-down',
|
|
250
|
+
'ic:baseline-timeline',
|
|
251
|
+
'ic:baseline-tips-and-updates',
|
|
252
|
+
'ic:baseline-toc',
|
|
253
|
+
'ic:baseline-token',
|
|
254
|
+
'ic:baseline-toll',
|
|
255
|
+
'ic:baseline-touch-app',
|
|
256
|
+
'ic:baseline-tour',
|
|
257
|
+
'ic:baseline-track-changes',
|
|
258
|
+
'ic:baseline-translate',
|
|
259
|
+
'ic:baseline-trending-down',
|
|
260
|
+
'ic:baseline-trending-flat',
|
|
261
|
+
'ic:baseline-trending-up',
|
|
262
|
+
'ic:baseline-verified',
|
|
263
|
+
'ic:baseline-verified-user',
|
|
264
|
+
'ic:baseline-vertical-split',
|
|
265
|
+
'ic:baseline-view-array',
|
|
266
|
+
'ic:baseline-view-carousel',
|
|
267
|
+
'ic:baseline-view-column',
|
|
268
|
+
'ic:baseline-view-comfy-alt',
|
|
269
|
+
'ic:baseline-view-in-ar',
|
|
270
|
+
'ic:baseline-view-list',
|
|
271
|
+
'ic:baseline-view-module',
|
|
272
|
+
'ic:baseline-view-quilt',
|
|
273
|
+
'ic:baseline-view-sidebar',
|
|
274
|
+
'ic:baseline-view-stream',
|
|
275
|
+
'ic:baseline-view-timeline',
|
|
276
|
+
'ic:baseline-view-week',
|
|
277
|
+
'ic:baseline-visibility',
|
|
278
|
+
'ic:baseline-visibility-off',
|
|
279
|
+
'ic:baseline-voice-over-off',
|
|
280
|
+
'ic:baseline-watch-later',
|
|
281
|
+
'ic:baseline-webhook',
|
|
282
|
+
'ic:baseline-wifi-protected-setup',
|
|
283
|
+
'ic:baseline-work-history',
|
|
284
|
+
'ic:baseline-work-off',
|
|
285
|
+
'ic:baseline-wysiwyg',
|
|
286
|
+
'ic:baseline-youtube-searched-for',
|
|
287
|
+
'ic:baseline-zoom-in',
|
|
288
|
+
'ic:baseline-zoom-out',
|
|
289
|
+
'ic:outline-add-task',
|
|
290
|
+
'ic:outline-add-to-drive',
|
|
291
|
+
'ic:outline-addchart',
|
|
292
|
+
'ic:outline-ads-click',
|
|
293
|
+
'ic:outline-account-balance',
|
|
294
|
+
'ic:outline-account-balance-wallet',
|
|
295
|
+
'ic:outline-article',
|
|
296
|
+
'ic:outline-aspect-ratio',
|
|
297
|
+
'ic:outline-assessment',
|
|
298
|
+
'ic:outline-assignment-ind',
|
|
299
|
+
'ic:outline-assignment-late',
|
|
300
|
+
'ic:outline-assignment-return',
|
|
301
|
+
'ic:outline-assignment-returned',
|
|
302
|
+
'ic:outline-assignment-turned-in',
|
|
303
|
+
'ic:outline-assured-workload',
|
|
304
|
+
'ic:outline-dashboard',
|
|
305
|
+
'ic:outline-dashboard-customize',
|
|
306
|
+
'mdi:tools',
|
|
307
|
+
'mdi:wrench',
|
|
308
|
+
'mdi:wrench-outline',
|
|
309
|
+
'mdi:ruler',
|
|
310
|
+
'mdi:ruler-square',
|
|
311
|
+
'mdi:car-wrench',
|
|
312
|
+
'mdi:audio-video',
|
|
313
|
+
'mdi:battery-clock',
|
|
314
|
+
'mdi:camera',
|
|
315
|
+
'mdi:camera-flip',
|
|
316
|
+
'mdi:camera-flip-outline',
|
|
317
|
+
'mdi:camera-iris',
|
|
318
|
+
'mdi:office-building-cog',
|
|
319
|
+
'mdi:office-building-cog-outline',
|
|
320
|
+
'mdi:store-cog',
|
|
321
|
+
'mdi:store-cog-outline',
|
|
322
|
+
'mdi:store-settings',
|
|
323
|
+
'mdi:store-settings-outline',
|
|
324
|
+
'mdi:cloud-print',
|
|
325
|
+
'mdi:cloud-print-outline',
|
|
326
|
+
'mdi:printer-settings',
|
|
327
|
+
'mdi:atom',
|
|
328
|
+
'mdi:atom-variant',
|
|
329
|
+
'mdi:account-cog',
|
|
330
|
+
'mdi:account-cog-outline',
|
|
331
|
+
'mdi:account-details',
|
|
332
|
+
'mdi:account-details-outline',
|
|
333
|
+
'mdi:account-settings',
|
|
334
|
+
'mdi:account-settings-outline',
|
|
335
|
+
'mdi:airplane-settings',
|
|
336
|
+
'mdi:application-cog-outline',
|
|
337
|
+
'mdi:application-settings',
|
|
338
|
+
'mdi:application-settings-outline',
|
|
339
|
+
'mdi:archive-settings',
|
|
340
|
+
'mdi:archive-settings-outline',
|
|
341
|
+
'mdi:bell-cog',
|
|
342
|
+
'mdi:bell-cog-outline',
|
|
343
|
+
'mdi:book-cog',
|
|
344
|
+
'mdi:book-cog-outline',
|
|
345
|
+
'mdi:book-settings',
|
|
346
|
+
'mdi:book-settings-outline',
|
|
347
|
+
'mdi:car-cog',
|
|
348
|
+
'mdi:car-settings',
|
|
349
|
+
'mdi:card-bulleted-settings',
|
|
350
|
+
'mdi:card-bulleted-settings-outline',
|
|
351
|
+
'mdi:cog-clockwise',
|
|
352
|
+
'mdi:cog-counterclockwise',
|
|
353
|
+
'mdi:cog-off',
|
|
354
|
+
'mdi:cog-off-outline',
|
|
355
|
+
'mdi:cog-outline',
|
|
356
|
+
'mdi:cog-pause',
|
|
357
|
+
'mdi:cog-pause-outline',
|
|
358
|
+
'mdi:cog-play',
|
|
359
|
+
'mdi:cog-play-outline',
|
|
360
|
+
'mdi:cog-refresh',
|
|
361
|
+
'mdi:cog-refresh-outline',
|
|
362
|
+
'mdi:cog-stop',
|
|
363
|
+
'mdi:cog-stop-outline',
|
|
364
|
+
'mdi:cog-sync',
|
|
365
|
+
'mdi:cog-sync-outline',
|
|
366
|
+
'mdi:cog-transfer',
|
|
367
|
+
'mdi:cog-transfer-outline',
|
|
368
|
+
'mdi:cogs',
|
|
369
|
+
'mdi:content-save-cog',
|
|
370
|
+
'mdi:content-save-cog-outline',
|
|
371
|
+
'mdi:magnify',
|
|
372
|
+
'mdi:magnify-expand',
|
|
373
|
+
'mdi:magnify-scan',
|
|
374
|
+
'mdi:image-filter-center-focus',
|
|
375
|
+
'mdi:image-filter-center-focus-weak',
|
|
376
|
+
'mdi:image-filter-tilt-shift',
|
|
377
|
+
'mdi:image-sync',
|
|
378
|
+
'mdi:refresh',
|
|
379
|
+
'mdi:web-refresh',
|
|
380
|
+
'mdi:refresh-circle',
|
|
381
|
+
'mdi:close',
|
|
382
|
+
'mdi:keyboard-close',
|
|
383
|
+
'ant-design:drag-outlined',
|
|
384
|
+
'mdi:microsoft',
|
|
385
|
+
'mdi:download-multiple',
|
|
386
|
+
'mdi:close-thick',
|
|
387
|
+
'mdi:close-outline',
|
|
388
|
+
'mdi:close-circle-outline',
|
|
389
|
+
'mdi:close-circle',
|
|
390
|
+
'mdi:content-save',
|
|
391
|
+
'mdi:text-box-edit-outline',
|
|
392
|
+
'mdi:delete-outline',
|
|
393
|
+
'mdi:plus',
|
|
394
|
+
'mdi:arrow-collapse-left',
|
|
395
|
+
'mdi:arrow-collapse-right',
|
|
396
|
+
'ant-design:poweroff-outlined',
|
|
397
|
+
'ant-design:lock-filled',
|
|
398
|
+
'ant-design:lock-outlined',
|
|
399
|
+
'ant-design:logout-outlined',
|
|
400
|
+
'ant-design:login-outlined',
|
|
401
|
+
'ant-design:key-outlined',
|
|
402
|
+
'ant-design:apartment-outlined',
|
|
403
|
+
'ant-design:api-filled',
|
|
404
|
+
'ant-design:api-outlined',
|
|
405
|
+
'ant-design:bars-outlined',
|
|
406
|
+
'ant-design:bell-filled',
|
|
407
|
+
'ant-design:bell-outlined',
|
|
408
|
+
'ant-design:bulb-filled',
|
|
409
|
+
'ant-design:bulb-outlined',
|
|
410
|
+
'ant-design:camera-filled',
|
|
411
|
+
'ant-design:camera-outlined',
|
|
412
|
+
'ant-design:carry-out-filled',
|
|
413
|
+
'ant-design:carry-out-outlined',
|
|
414
|
+
'ant-design:cloud-download-outlined',
|
|
415
|
+
'ant-design:cloud-upload-outlined',
|
|
416
|
+
'ant-design:edit-filled',
|
|
417
|
+
'ant-design:edit-outlined',
|
|
418
|
+
'ant-design:read-outlined',
|
|
419
|
+
'ant-design:read-filled',
|
|
420
|
+
'ant-design:setting-filled',
|
|
421
|
+
'ant-design:setting-outlined',
|
|
422
|
+
'ant-design:wifi-outlined'
|
|
423
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Code: string[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Communicate: string[];
|
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
export const Communicate = [
|
|
2
|
+
'ic:baseline-alarm',
|
|
3
|
+
'ic:baseline-alarm-add',
|
|
4
|
+
'ic:baseline-alarm-off',
|
|
5
|
+
'ic:baseline-alarm-on',
|
|
6
|
+
'ic:baseline-browse-gallery',
|
|
7
|
+
'ic:baseline-calendar-month',
|
|
8
|
+
'ic:baseline-calendar-today',
|
|
9
|
+
'ic:baseline-fax',
|
|
10
|
+
'ic:baseline-settings-phone',
|
|
11
|
+
'ic:baseline-message',
|
|
12
|
+
'ic:baseline-3p',
|
|
13
|
+
'ic:baseline-add-ic-call',
|
|
14
|
+
'ic:baseline-alternate-email',
|
|
15
|
+
'ic:baseline-app-registration',
|
|
16
|
+
'ic:baseline-business',
|
|
17
|
+
'ic:baseline-call',
|
|
18
|
+
'ic:baseline-call-end',
|
|
19
|
+
'ic:baseline-call-made',
|
|
20
|
+
'ic:baseline-call-merge',
|
|
21
|
+
'ic:baseline-call-missed',
|
|
22
|
+
'ic:baseline-call-missed-outgoing',
|
|
23
|
+
'ic:baseline-call-received',
|
|
24
|
+
'ic:baseline-call-split',
|
|
25
|
+
'ic:baseline-cancel-presentation',
|
|
26
|
+
'ic:baseline-cell-tower',
|
|
27
|
+
'ic:baseline-cell-wifi',
|
|
28
|
+
'ic:baseline-chat-bubble-outline',
|
|
29
|
+
'ic:baseline-chat-bubble',
|
|
30
|
+
'ic:baseline-clear-all',
|
|
31
|
+
'ic:baseline-co-present',
|
|
32
|
+
'ic:baseline-contact-mail',
|
|
33
|
+
'ic:baseline-contact-phone',
|
|
34
|
+
'ic:baseline-contacts',
|
|
35
|
+
'ic:baseline-dialer-sip',
|
|
36
|
+
'ic:baseline-dialpad',
|
|
37
|
+
'ic:baseline-document-scanner',
|
|
38
|
+
'ic:baseline-domain-disabled',
|
|
39
|
+
'ic:baseline-domain-verification',
|
|
40
|
+
'ic:baseline-duo',
|
|
41
|
+
'ic:baseline-email',
|
|
42
|
+
'ic:baseline-forum',
|
|
43
|
+
'ic:baseline-forward-to-inbox',
|
|
44
|
+
'ic:baseline-hourglass-bottom',
|
|
45
|
+
'ic:baseline-hourglass-top',
|
|
46
|
+
'ic:baseline-hub',
|
|
47
|
+
'ic:baseline-import-contacts',
|
|
48
|
+
'ic:baseline-import-export',
|
|
49
|
+
'ic:baseline-invert-colors-off',
|
|
50
|
+
'ic:baseline-key',
|
|
51
|
+
'ic:baseline-key-off',
|
|
52
|
+
'ic:baseline-list-alt',
|
|
53
|
+
'ic:baseline-live-help',
|
|
54
|
+
'ic:baseline-location-off',
|
|
55
|
+
'ic:baseline-location-on',
|
|
56
|
+
'ic:baseline-mail-lock',
|
|
57
|
+
'ic:baseline-mail-outline',
|
|
58
|
+
'ic:baseline-mark-chat-read',
|
|
59
|
+
'ic:baseline-mark-chat-unread',
|
|
60
|
+
'ic:baseline-mark-unread-chat-alt',
|
|
61
|
+
'ic:baseline-mobile-screen-share',
|
|
62
|
+
'ic:baseline-more-time',
|
|
63
|
+
'ic:baseline-nat',
|
|
64
|
+
'ic:baseline-no-sim',
|
|
65
|
+
'ic:baseline-pause-presentation',
|
|
66
|
+
'ic:baseline-person-add-disabled',
|
|
67
|
+
'ic:baseline-person-search',
|
|
68
|
+
'ic:baseline-phone',
|
|
69
|
+
'ic:baseline-phone-disabled',
|
|
70
|
+
'ic:baseline-phone-enabled',
|
|
71
|
+
'ic:baseline-phonelink-erase',
|
|
72
|
+
'ic:baseline-phonelink-lock',
|
|
73
|
+
'ic:baseline-phonelink-ring',
|
|
74
|
+
'ic:baseline-phonelink-setup',
|
|
75
|
+
'ic:baseline-portable-wifi-off',
|
|
76
|
+
'ic:baseline-present-to-all',
|
|
77
|
+
'ic:baseline-print-disabled',
|
|
78
|
+
'ic:baseline-read-more',
|
|
79
|
+
'ic:baseline-ring-volume',
|
|
80
|
+
'ic:baseline-rss-feed',
|
|
81
|
+
'ic:baseline-rtt',
|
|
82
|
+
'ic:baseline-screen-share',
|
|
83
|
+
'ic:baseline-send-time-extension',
|
|
84
|
+
'ic:baseline-sentiment-satisfied-alt',
|
|
85
|
+
'ic:baseline-sip',
|
|
86
|
+
'ic:baseline-speaker-phone',
|
|
87
|
+
'ic:baseline-spoke',
|
|
88
|
+
'ic:baseline-stay-current-landscape',
|
|
89
|
+
'ic:baseline-stay-current-portrait',
|
|
90
|
+
'ic:baseline-swap-calls',
|
|
91
|
+
'ic:baseline-textsms',
|
|
92
|
+
'ic:baseline-unsubscribe',
|
|
93
|
+
'ic:baseline-voicemail',
|
|
94
|
+
'ic:baseline-vpn-key',
|
|
95
|
+
'ic:baseline-vpn-key-off',
|
|
96
|
+
'ic:baseline-wifi-calling',
|
|
97
|
+
'ic:round-screen-share',
|
|
98
|
+
'ic:outline-live-help',
|
|
99
|
+
'ic:baseline-person',
|
|
100
|
+
'ic:baseline-person-add',
|
|
101
|
+
'ic:baseline-person-add-alt',
|
|
102
|
+
'ic:baseline-person-add-alt-1',
|
|
103
|
+
'ic:baseline-person-off',
|
|
104
|
+
'ic:baseline-person-outline',
|
|
105
|
+
'ic:baseline-person-remove',
|
|
106
|
+
'ic:baseline-personal-injury',
|
|
107
|
+
'ic:baseline-group',
|
|
108
|
+
'ic:baseline-group-add',
|
|
109
|
+
'ic:baseline-group-off',
|
|
110
|
+
'ic:baseline-group-remove',
|
|
111
|
+
'ic:baseline-groups',
|
|
112
|
+
'ic:baseline-reduce-capacity',
|
|
113
|
+
'ic:baseline-safety-divider',
|
|
114
|
+
'ic:baseline-social-distance',
|
|
115
|
+
'mdi:account-cancel',
|
|
116
|
+
'mdi:account-cancel-outline',
|
|
117
|
+
'mdi:account-check',
|
|
118
|
+
'mdi:account-check-outline',
|
|
119
|
+
'mdi:account-convert',
|
|
120
|
+
'mdi:account-convert-outline',
|
|
121
|
+
'mdi:account-edit',
|
|
122
|
+
'mdi:account-edit-outline',
|
|
123
|
+
'mdi:account-group',
|
|
124
|
+
'mdi:account-group-outline',
|
|
125
|
+
'mdi:account-school',
|
|
126
|
+
'mdi:account-supervisor-circle',
|
|
127
|
+
'mdi:account-switch',
|
|
128
|
+
'mdi:account-switch-outline',
|
|
129
|
+
'mdi:account-sync',
|
|
130
|
+
'mdi:account-sync-outline',
|
|
131
|
+
'mdi:account-tie-voice',
|
|
132
|
+
'mdi:account-voice',
|
|
133
|
+
'mdi:calendar-account',
|
|
134
|
+
'mdi:calendar-account-outline',
|
|
135
|
+
'mdi:card-account-details',
|
|
136
|
+
'mdi:camera-account',
|
|
137
|
+
'mdi:table-account',
|
|
138
|
+
'mdi:phone-classic',
|
|
139
|
+
'mdi:phone-dial',
|
|
140
|
+
'mdi:phone-refresh',
|
|
141
|
+
'mdi:phone-ring',
|
|
142
|
+
'mdi:phone-settings',
|
|
143
|
+
'mdi:phone-settings-outline',
|
|
144
|
+
'mdi:phone-sync',
|
|
145
|
+
'mdi:phone-sync-outline',
|
|
146
|
+
'mdi:phone-voip',
|
|
147
|
+
'mdi:signal',
|
|
148
|
+
'mdi:signal-2g',
|
|
149
|
+
'mdi:signal-3g',
|
|
150
|
+
'mdi:signal-4g',
|
|
151
|
+
'mdi:signal-5g',
|
|
152
|
+
'mdi:signal-cellular-1',
|
|
153
|
+
'mdi:signal-cellular-2',
|
|
154
|
+
'mdi:signal-cellular-3',
|
|
155
|
+
'mdi:signal-cellular-outline',
|
|
156
|
+
'mdi:signal-hspa',
|
|
157
|
+
'mdi:signal-hspa-plus',
|
|
158
|
+
'mdi:signal-off',
|
|
159
|
+
'mdi:sim',
|
|
160
|
+
'mdi:sim-alert',
|
|
161
|
+
'mdi:sim-alert-outline',
|
|
162
|
+
'mdi:sim-off',
|
|
163
|
+
'mdi:sim-off-outline',
|
|
164
|
+
'mdi:sim-outline',
|
|
165
|
+
'mdi:tablet-cellphone',
|
|
166
|
+
'mdi:tooltip-cellphone',
|
|
167
|
+
'mdi:alarm-snooze',
|
|
168
|
+
'mdi:calendar-alert',
|
|
169
|
+
'mdi:calendar-arrow-left',
|
|
170
|
+
'mdi:calendar-arrow-right',
|
|
171
|
+
'mdi:calendar-month',
|
|
172
|
+
'mdi:calendar-month-outline',
|
|
173
|
+
'mdi:calendar-remove',
|
|
174
|
+
'mdi:calendar-remove-outline',
|
|
175
|
+
'mdi:cash-clock',
|
|
176
|
+
'mdi:timer-cog',
|
|
177
|
+
'mdi:timer-cog-outline',
|
|
178
|
+
'mdi:account-tie',
|
|
179
|
+
'mdi:account-tie-woman',
|
|
180
|
+
'mdi:account-tie-hat',
|
|
181
|
+
'mdi:account-tie-hat-outline'
|
|
182
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Currency: string[];
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
export const Currency = [
|
|
2
|
+
'mdi:account-cash',
|
|
3
|
+
'mdi:account-cash-outline',
|
|
4
|
+
'mdi:bitcoin',
|
|
5
|
+
'mdi:cash',
|
|
6
|
+
'mdi:cash-100',
|
|
7
|
+
'mdi:cash-fast',
|
|
8
|
+
'mdi:currency-bdt',
|
|
9
|
+
'mdi:currency-brl',
|
|
10
|
+
'mdi:currency-btc',
|
|
11
|
+
'mdi:currency-cny',
|
|
12
|
+
'mdi:currency-eth',
|
|
13
|
+
'mdi:currency-eur',
|
|
14
|
+
'mdi:currency-eur-off',
|
|
15
|
+
'mdi:currency-fra',
|
|
16
|
+
'mdi:currency-gbp',
|
|
17
|
+
'mdi:currency-ils',
|
|
18
|
+
'mdi:currency-inr',
|
|
19
|
+
'mdi:currency-krw',
|
|
20
|
+
'mdi:currency-kzt',
|
|
21
|
+
'mdi:currency-mnt',
|
|
22
|
+
'mdi:currency-ngn',
|
|
23
|
+
'mdi:currency-php',
|
|
24
|
+
'mdi:currency-rial',
|
|
25
|
+
'mdi:currency-rub',
|
|
26
|
+
'mdi:currency-sign',
|
|
27
|
+
'mdi:currency-try',
|
|
28
|
+
'mdi:currency-twd',
|
|
29
|
+
'mdi:currency-usd',
|
|
30
|
+
'mdi:currency-usd-off',
|
|
31
|
+
'mdi:litecoin',
|
|
32
|
+
'mdi:wallet',
|
|
33
|
+
'mdi:wallet-outline',
|
|
34
|
+
'mdi:bank-check',
|
|
35
|
+
'mdi:cash-check',
|
|
36
|
+
'mdi:credit-card-settings',
|
|
37
|
+
'mdi:credit-card-settings-outline',
|
|
38
|
+
'mdi:currency-rupee',
|
|
39
|
+
'mdi:hand-coin',
|
|
40
|
+
'mdi:hand-coin-outline',
|
|
41
|
+
'mdi:network-pos',
|
|
42
|
+
'mdi:piggy-bank',
|
|
43
|
+
'mdi:piggy-bank-outline'
|
|
44
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Devices: string[];
|