@dt-frames/ui 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -15
- package/es/assets/style/reset.less +0 -3
- package/es/index.css +1 -1
- package/es/index.js +1 -0
- package/es/style/assets/style/reset.less +0 -3
- package/es/style/theme/sider/index.less +25 -25
- package/es/theme/content/index.d.ts +27 -29
- package/es/theme/header/components/menu-search.d.ts +528 -528
- package/es/theme/header/components/setting-theme.d.ts +2580 -2550
- package/es/theme/header/index.d.ts +4369 -4369
- package/es/theme/tabs/components/TabRedo.d.ts +7 -49
- package/es/theme/tabs/index.d.ts +2478 -1399
- package/es/theme/theme/initTheme.d.ts +3 -3
- package/es/theme/theme.d.ts +22 -0
- package/package.json +50 -40
- package/src/assets/data/icons/actions.ts +427 -0
- package/src/assets/data/icons/code.ts +10 -0
- package/src/assets/data/icons/commuticate.ts +190 -0
- package/src/assets/data/icons/currency.ts +46 -0
- package/src/assets/data/icons/devices.ts +128 -0
- package/src/assets/data/icons/edit.ts +165 -0
- package/src/assets/data/icons/file.ts +104 -0
- package/src/assets/data/icons/math.ts +53 -0
- package/src/assets/data/icons/message.ts +75 -0
- package/src/assets/data/icons/navigate.ts +181 -0
- package/src/assets/data/icons/other.ts +333 -0
- package/src/assets/data/icons.ts +58 -0
- package/src/assets/imgs/logo/logo.png +0 -0
- package/src/assets/locales/en_US.json +3 -0
- package/src/assets/locales/zh_CN.json +3 -0
- package/src/assets/style/index.less +10 -0
- package/src/assets/style/reset.less +17 -0
- package/src/components/container/index.less +85 -0
- package/src/components/container/index.ts +8 -0
- package/src/components/container/src/bar.ts +107 -0
- package/src/components/container/src/lazy-container.vue +9 -0
- package/src/components/container/src/scroll-bar.vue +117 -0
- package/src/components/container/src/scroll-container.vue +61 -0
- package/src/components/curd/index.ts +5 -0
- package/src/components/curd/src/components/dialog.vue +65 -0
- package/src/components/curd/src/components/props.ts +32 -0
- package/src/components/curd/src/hooks/useCurd.tsx +72 -0
- package/src/components/curd/src/types/curd.type.ts +29 -0
- package/src/components/excel/index.ts +6 -0
- package/src/components/excel/src/export2Excel.ts +44 -0
- package/src/components/forms/index.ts +12 -0
- package/src/components/forms/src/componentMap.ts +44 -0
- package/src/components/forms/src/components/formButton.vue +150 -0
- package/src/components/forms/src/components/formIcon.vue +50 -0
- package/src/components/forms/src/components/formItem.vue +407 -0
- package/src/components/forms/src/components/radioButton.vue +58 -0
- package/src/components/forms/src/const/form.const.ts +7 -0
- package/src/components/forms/src/hooks/helper.ts +70 -0
- package/src/components/forms/src/hooks/useForm.ts +130 -0
- package/src/components/forms/src/hooks/useFormActions.ts +63 -0
- package/src/components/forms/src/hooks/useFormEvents.ts +247 -0
- package/src/components/forms/src/hooks/useFormValue.ts +49 -0
- package/src/components/forms/src/hooks/useFormValues.ts +131 -0
- package/src/components/forms/src/hooks/useLabelWidth.ts +57 -0
- package/src/components/forms/src/index.less +82 -0
- package/src/components/forms/src/index.vue +306 -0
- package/src/components/forms/src/prop.ts +80 -0
- package/src/components/forms/src/types/form.type.ts +269 -0
- package/src/components/icons/index.ts +7 -0
- package/src/components/icons/src/index.less +96 -0
- package/src/components/icons/src/pick-icon.vue +117 -0
- package/src/components/icons/src/svg-icon.vue +117 -0
- package/src/components/iframe/index.ts +5 -0
- package/src/components/iframe/src/index.less +3 -0
- package/src/components/iframe/src/index.vue +38 -0
- package/src/components/index.ts +46 -0
- package/src/components/modal/index.ts +8 -0
- package/src/components/modal/src/components/close-icon.vue +47 -0
- package/src/components/modal/src/components/modal-wrap.vue +118 -0
- package/src/components/modal/src/components/modal.tsx +30 -0
- package/src/components/modal/src/components/modalFooter.vue +38 -0
- package/src/components/modal/src/hooks/useDrag.ts +107 -0
- package/src/components/modal/src/hooks/useFullScreen.ts +27 -0
- package/src/components/modal/src/hooks/useModal.ts +177 -0
- package/src/components/modal/src/index.less +60 -0
- package/src/components/modal/src/index.vue +173 -0
- package/src/components/modal/src/props.ts +43 -0
- package/src/components/modal/src/types/modal.type.ts +27 -0
- package/src/components/router/base-router.vue +11 -0
- package/src/components/router/index.ts +3 -0
- package/src/components/source/index.ts +1 -0
- package/src/components/source/src/hooks/useFetch.ts +70 -0
- package/src/components/source/src/hooks/usePage.ts +3 -0
- package/src/components/source/src/hooks/useSource.ts +178 -0
- package/src/components/source/src/index.ts +5 -0
- package/src/components/source/src/types/source.type.ts +68 -0
- package/src/components/source/src/types/table.type.ts +8 -0
- package/src/components/table/index.ts +7 -0
- package/src/components/table/src/components/TableActions.vue +108 -0
- package/src/components/table/src/components/TableHeader.vue +77 -0
- package/src/components/table/src/components/TableRender.vue +76 -0
- package/src/components/table/src/components/setting/Column.vue +355 -0
- package/src/components/table/src/components/setting/Download.vue +55 -0
- package/src/components/table/src/components/setting/Fullscreen.vue +43 -0
- package/src/components/table/src/components/setting/Size.vue +42 -0
- package/src/components/table/src/components/setting/index.vue +64 -0
- package/src/components/table/src/const.ts +13 -0
- package/src/components/table/src/hooks/useColumns.ts +319 -0
- package/src/components/table/src/hooks/useCustomRow.ts +0 -0
- package/src/components/table/src/hooks/useDataSource.ts +99 -0
- package/src/components/table/src/hooks/useLoading.ts +29 -0
- package/src/components/table/src/hooks/usePagination.ts +76 -0
- package/src/components/table/src/hooks/useRowSelection.ts +146 -0
- package/src/components/table/src/hooks/useRows.ts +30 -0
- package/src/components/table/src/hooks/useTable.ts +77 -0
- package/src/components/table/src/hooks/useTableHeader.ts +48 -0
- package/src/components/table/src/hooks/useTableInstance.ts +29 -0
- package/src/components/table/src/hooks/useTableScroll.ts +227 -0
- package/src/components/table/src/index.less +162 -0
- package/src/components/table/src/index.vue +198 -0
- package/src/components/table/src/props.ts +152 -0
- package/src/components/table/src/types/table.type.ts +133 -0
- package/src/components/table/src/types/tableHeader.type.ts +27 -0
- package/src/components/type.ts +0 -0
- package/src/directives/icon.ts +36 -0
- package/src/directives/index.ts +27 -0
- package/src/directives/permission.ts +21 -0
- package/src/global.d.ts +8 -0
- package/src/index.ts +4 -0
- package/src/theme/content/index.vue +37 -0
- package/src/theme/feature/back-top.vue +11 -0
- package/src/theme/feature/index.vue +7 -0
- package/src/theme/footer/index.less +16 -0
- package/src/theme/footer/index.vue +24 -0
- package/src/theme/header/components/bread-crumb.vue +26 -0
- package/src/theme/header/components/fullscreen.vue +14 -0
- package/src/theme/header/components/handler.ts +81 -0
- package/src/theme/header/components/index.ts +21 -0
- package/src/theme/header/components/lang-picker.vue +36 -0
- package/src/theme/header/components/logo.vue +33 -0
- package/src/theme/header/components/menu-search.vue +62 -0
- package/src/theme/header/components/notify.vue +23 -0
- package/src/theme/header/components/setting-theme.vue +123 -0
- package/src/theme/header/components/theme-drawer/enum.ts +12 -0
- package/src/theme/header/components/theme-drawer/feature.vue +75 -0
- package/src/theme/header/components/theme-drawer/index.ts +7 -0
- package/src/theme/header/components/theme-drawer/menu-type.vue +40 -0
- package/src/theme/header/components/theme-drawer/select-item.vue +46 -0
- package/src/theme/header/components/theme-drawer/switch-item.vue +39 -0
- package/src/theme/header/components/theme-drawer/theme-color.vue +26 -0
- package/src/theme/header/components/trigger.vue +14 -0
- package/src/theme/header/components/user-info.vue +43 -0
- package/src/theme/header/const/index.ts +40 -0
- package/src/theme/header/helper/menu-tree.ts +67 -0
- package/src/theme/header/index.less +438 -0
- package/src/theme/header/index.ts +0 -0
- package/src/theme/header/index.vue +96 -0
- package/src/theme/header/multiple-header.vue +67 -0
- package/src/theme/header/set-theme.less +68 -0
- package/src/theme/index.ts +3 -0
- package/src/theme/sider/components/basic-menu/basic-menu-item.vue +14 -0
- package/src/theme/sider/components/basic-menu/basic-menu.vue +122 -0
- package/src/theme/sider/components/basic-menu/basic-sub-menu-item.vue +46 -0
- package/src/theme/sider/components/basic-menu/menu-item-content.vue +13 -0
- package/src/theme/sider/components/drag-bar.vue +26 -0
- package/src/theme/sider/components/layout-menu.vue +132 -0
- package/src/theme/sider/components/props.ts +97 -0
- package/src/theme/sider/components/sider-trigger.vue +24 -0
- package/src/theme/sider/helper/sider.ts +52 -0
- package/src/theme/sider/helper/split-menu.ts +147 -0
- package/src/theme/sider/hooks/useDragLine.ts +86 -0
- package/src/theme/sider/hooks/useOpenKeys.ts +57 -0
- package/src/theme/sider/index.less +203 -0
- package/src/theme/sider/index.vue +88 -0
- package/src/theme/tabs/components/TabContent.vue +37 -0
- package/src/theme/tabs/components/TabRedo.vue +18 -0
- package/src/theme/tabs/hooks/useMultifyTabs.ts +96 -0
- package/src/theme/tabs/hooks/useTabDropdown.ts +89 -0
- package/src/theme/tabs/index.less +165 -0
- package/src/theme/tabs/index.vue +98 -0
- package/src/theme/tabs/types/tabs.type.ts +8 -0
- package/src/theme/theme.less +66 -0
- package/src/theme/theme.vue +89 -0
- package/src/theme/transition.less +99 -0
- package/es/themes/generate.ts +0 -74
- package/es/themes/index.ts +0 -10
- package/es/themes/modifyVars.ts +0 -33
- package/es/themes/themePlugiin.ts +0 -74
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ThemeOptions } from '@dt-frames/core';
|
|
2
|
-
export declare function initTheme(themeConf: ThemeOptions): Promise<void>;
|
|
3
|
-
export declare function updateHeaderBgColor(themeConf: any, color?: string): void;
|
|
1
|
+
import { ThemeOptions } from '@dt-frames/core';
|
|
2
|
+
export declare function initTheme(themeConf: ThemeOptions): Promise<void>;
|
|
3
|
+
export declare function updateHeaderBgColor(themeConf: any, color?: string): void;
|
package/es/theme/theme.d.ts
CHANGED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
2
|
+
wrapperRef: any;
|
|
3
|
+
currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>;
|
|
4
|
+
getShowFullHeaderRef: import("vue").ComputedRef<boolean>;
|
|
5
|
+
getFixed: import("vue").ComputedRef<boolean>;
|
|
6
|
+
getHeaderHeight: import("vue").ComputedRef<number>;
|
|
7
|
+
getSplit: import("vue").ComputedRef<boolean>;
|
|
8
|
+
getShowMenu: import("vue").ComputedRef<boolean>;
|
|
9
|
+
getShowSidebar: import("vue").ComputedRef<boolean>;
|
|
10
|
+
getFooter: import("vue").ComputedRef<import("@dt-frames/core/es/types/theme.type").FooterOptions>;
|
|
11
|
+
getShowFooter: import("vue").ComputedRef<any>;
|
|
12
|
+
height: any;
|
|
13
|
+
layoutClass: import("vue").ComputedRef<string>;
|
|
14
|
+
layoutOption: import("vue").ComputedRef<{
|
|
15
|
+
paddingTop: string;
|
|
16
|
+
}>;
|
|
17
|
+
getContentStyle: import("vue").ComputedRef<{
|
|
18
|
+
flex: string;
|
|
19
|
+
overflowY: string;
|
|
20
|
+
}>;
|
|
21
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
22
|
+
export default _sfc_main;
|
package/package.json
CHANGED
|
@@ -1,40 +1,50 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@dt-frames/ui",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"keywords": [
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
],
|
|
8
|
-
"publishConfig": {
|
|
9
|
-
"access": "public"
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"
|
|
27
|
-
},
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
"
|
|
40
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@dt-frames/ui",
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"keywords": [
|
|
5
|
+
"ui",
|
|
6
|
+
"dt-ui"
|
|
7
|
+
],
|
|
8
|
+
"publishConfig": {
|
|
9
|
+
"access": "public",
|
|
10
|
+
"registry": "https://registry.npmjs.org/"
|
|
11
|
+
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"dev": "yarn build -w",
|
|
14
|
+
"build": "vite build"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"src",
|
|
18
|
+
"assets",
|
|
19
|
+
"*.d.ts",
|
|
20
|
+
"es",
|
|
21
|
+
"index.*",
|
|
22
|
+
"README.md",
|
|
23
|
+
"tsconfig.json"
|
|
24
|
+
],
|
|
25
|
+
"exports": {
|
|
26
|
+
".": "./es/index.js"
|
|
27
|
+
},
|
|
28
|
+
"types": "./es/index.d.ts",
|
|
29
|
+
"sideEffects": false,
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@iconify/iconify": "^2.1.2",
|
|
32
|
+
"@vueuse/core": "^7.5.2",
|
|
33
|
+
"lodash-es": "^4.17.21",
|
|
34
|
+
"sortablejs": "^1.15.0",
|
|
35
|
+
"vue": "^3.2.25",
|
|
36
|
+
"vue-router": "^4.0.12",
|
|
37
|
+
"xlsx": "^0.18.5"
|
|
38
|
+
},
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"@dt-frames/core": "1.0.0",
|
|
41
|
+
"@dt-frames/plugins": "1.0.0"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@iconify/json": "^1.1.460",
|
|
45
|
+
"@vitejs/plugin-vue": "^2.0.0",
|
|
46
|
+
"vite": "^2.7.2",
|
|
47
|
+
"vite-plugin-purge-icons": "^0.7.0",
|
|
48
|
+
"vite-plugin-theme": "^0.8.6"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -0,0 +1,427 @@
|
|
|
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:fax',
|
|
327
|
+
'mdi:printer-settings',
|
|
328
|
+
'mdi:atom',
|
|
329
|
+
'mdi:atom-variant',
|
|
330
|
+
'mdi:account-cog',
|
|
331
|
+
'mdi:account-cog-outline',
|
|
332
|
+
'mdi:account-details',
|
|
333
|
+
'mdi:account-details-outline',
|
|
334
|
+
'mdi:account-settings',
|
|
335
|
+
'mdi:account-settings-outline',
|
|
336
|
+
'mdi:airplane-cog',
|
|
337
|
+
'mdi:airplane-settings',
|
|
338
|
+
'mdi:application-cog-outline',
|
|
339
|
+
'mdi:application-settings',
|
|
340
|
+
'mdi:application-settings-outline',
|
|
341
|
+
'mdi:archive-settings',
|
|
342
|
+
'mdi:archive-settings-outline',
|
|
343
|
+
'mdi:bell-cog',
|
|
344
|
+
'mdi:bell-cog-outline',
|
|
345
|
+
'mdi:book-cog',
|
|
346
|
+
'mdi:book-cog-outline',
|
|
347
|
+
'mdi:book-settings',
|
|
348
|
+
'mdi:book-settings-outline',
|
|
349
|
+
'mdi:car-cog',
|
|
350
|
+
'mdi:car-settings',
|
|
351
|
+
'mdi:card-bulleted-settings',
|
|
352
|
+
'mdi:card-bulleted-settings-outline',
|
|
353
|
+
'mdi:cellphone-cog',
|
|
354
|
+
'mdi:cellphone-settings',
|
|
355
|
+
'mdi:cog-clockwise',
|
|
356
|
+
'mdi:cog-counterclockwise',
|
|
357
|
+
'mdi:cog-off',
|
|
358
|
+
'mdi:cog-off-outline',
|
|
359
|
+
'mdi:cog-outline',
|
|
360
|
+
'mdi:cog-pause',
|
|
361
|
+
'mdi:cog-pause-outline',
|
|
362
|
+
'mdi:cog-play',
|
|
363
|
+
'mdi:cog-play-outline',
|
|
364
|
+
'mdi:cog-refresh',
|
|
365
|
+
'mdi:cog-refresh-outline',
|
|
366
|
+
'mdi:cog-stop',
|
|
367
|
+
'mdi:cog-stop-outline',
|
|
368
|
+
'mdi:cog-sync',
|
|
369
|
+
'mdi:cog-sync-outline',
|
|
370
|
+
'mdi:cog-transfer',
|
|
371
|
+
'mdi:cog-transfer-outline',
|
|
372
|
+
'mdi:cogs',
|
|
373
|
+
'mdi:content-save-cog',
|
|
374
|
+
'mdi:content-save-cog-outline',
|
|
375
|
+
'mdi:magnify',
|
|
376
|
+
'mdi:magnify-expand',
|
|
377
|
+
'mdi:magnify-scan',
|
|
378
|
+
'mdi:image-filter-center-focus',
|
|
379
|
+
'mdi:image-filter-center-focus-weak',
|
|
380
|
+
'mdi:image-filter-tilt-shift',
|
|
381
|
+
'mdi:image-sync',
|
|
382
|
+
'mdi:refresh',
|
|
383
|
+
'mdi:web-refresh',
|
|
384
|
+
'mdi:refresh-circle',
|
|
385
|
+
'mdi:close',
|
|
386
|
+
'mdi:keyboard-close',
|
|
387
|
+
'ant-design:drag-outlined',
|
|
388
|
+
'mdi:microsoft',
|
|
389
|
+
'mdi:download-multiple',
|
|
390
|
+
'mdi:close-thick',
|
|
391
|
+
'mdi:close-outline',
|
|
392
|
+
'mdi:close-circle-outline',
|
|
393
|
+
'mdi:close-circle',
|
|
394
|
+
'mdi:content-save',
|
|
395
|
+
'mdi:text-box-edit-outline',
|
|
396
|
+
'mdi:delete-outline',
|
|
397
|
+
'mdi:plus',
|
|
398
|
+
'mdi:arrow-collapse-left',
|
|
399
|
+
'mdi:arrow-collapse-right',
|
|
400
|
+
'ant-design:poweroff-outlined',
|
|
401
|
+
'ant-design:lock-filled',
|
|
402
|
+
'ant-design:lock-outlined',
|
|
403
|
+
'ant-design:logout-outlined',
|
|
404
|
+
'ant-design:login-outlined',
|
|
405
|
+
'ant-design:key-outlined',
|
|
406
|
+
'ant-design:apartment-outlined',
|
|
407
|
+
'ant-design:api-filled',
|
|
408
|
+
'ant-design:api-outlined',
|
|
409
|
+
'ant-design:bars-outlined',
|
|
410
|
+
'ant-design:bell-filled',
|
|
411
|
+
'ant-design:bell-outlined',
|
|
412
|
+
'ant-design:bulb-filled',
|
|
413
|
+
'ant-design:bulb-outlined',
|
|
414
|
+
'ant-design:camera-filled',
|
|
415
|
+
'ant-design:camera-outlined',
|
|
416
|
+
'ant-design:carry-out-filled',
|
|
417
|
+
'ant-design:carry-out-outlined',
|
|
418
|
+
'ant-design:cloud-download-outlined',
|
|
419
|
+
'ant-design:cloud-upload-outlined',
|
|
420
|
+
'ant-design:edit-filled',
|
|
421
|
+
'ant-design:edit-outlined',
|
|
422
|
+
'ant-design:read-outlined',
|
|
423
|
+
'ant-design:read-filled',
|
|
424
|
+
'ant-design:setting-filled',
|
|
425
|
+
'ant-design:setting-outlined',
|
|
426
|
+
'ant-design:wifi-outlined'
|
|
427
|
+
]
|