@yelon/bis 14.1.1 → 15.0.0-beta.0
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/LICENSE +1 -1
- package/README.md +23 -1
- package/esm2020/bis.mjs +2 -2
- package/esm2020/index.mjs +2 -0
- package/esm2020/public_api.mjs +2 -2
- package/esm2020/src/bis.config.mjs +11 -0
- package/esm2020/src/icon/style-icons.mjs +796 -0
- package/esm2020/src/index.mjs +12 -0
- package/esm2020/src/layout-basic/index.mjs +4 -0
- package/esm2020/src/layout-basic/interface.mjs +7 -0
- package/esm2020/src/layout-basic/layout-basic.component.mjs +312 -0
- package/esm2020/src/layout-basic/layout-display.service.mjs +87 -0
- package/esm2020/src/layout-nav/index.mjs +5 -0
- package/esm2020/src/layout-nav/layout-nav-application.component.mjs +262 -0
- package/esm2020/{layout/widgets/yz.application.group.component.mjs → src/layout-nav/layout-nav-group.component.mjs} +23 -21
- package/esm2020/src/layout-nav/layout-nav-tile.component.mjs +15 -0
- package/esm2020/src/layout-nav/types.mjs +7 -0
- package/esm2020/src/widgets/index.mjs +7 -0
- package/esm2020/src/widgets/yunzai-clear-storage.component.mjs +45 -0
- package/esm2020/src/widgets/yunzai-fullscreen.component.mjs +45 -0
- package/esm2020/src/widgets/yunzai-i18n.component.mjs +115 -0
- package/esm2020/src/widgets/yunzai-notify.component.mjs +183 -0
- package/esm2020/src/widgets/yunzai-theme-btn.component.mjs +195 -0
- package/esm2020/{layout/widgets/yz.user.component.mjs → src/widgets/yunzai-user.component.mjs} +6 -6
- package/esm2020/src/yunzai-act.guard.mjs +107 -0
- package/esm2020/src/yunzai-auth.service.mjs +153 -0
- package/esm2020/src/yunzai-default.interceptor.mjs +207 -0
- package/esm2020/src/yunzai-i18n.service.mjs +94 -0
- package/esm2020/src/yunzai-layout.module.mjs +76 -0
- package/esm2020/src/yunzai-startup.service.mjs +157 -0
- package/fesm2015/bis.mjs +2960 -1
- package/fesm2015/bis.mjs.map +1 -1
- package/fesm2020/bis.mjs +2968 -1
- package/fesm2020/bis.mjs.map +1 -1
- package/index.d.ts +0 -4
- package/index.less +1 -1
- package/package.json +12 -27
- package/public_api.d.ts +1 -2
- package/{layout → src}/bis.config.d.ts +0 -0
- package/{shared → src/icon}/style-icons.d.ts +0 -0
- package/src/index.d.ts +11 -0
- package/src/layout-basic/index.d.ts +3 -0
- package/src/layout-basic/interface.d.ts +24 -0
- package/src/layout-basic/layout-basic.component.d.ts +33 -0
- package/src/layout-basic/layout-display.service.d.ts +15 -0
- package/src/layout-nav/index.d.ts +4 -0
- package/src/layout-nav/layout-nav-application.component.d.ts +26 -0
- package/src/layout-nav/layout-nav-group.component.d.ts +17 -0
- package/src/layout-nav/layout-nav-tile.component.d.ts +6 -0
- package/src/layout-nav/types.d.ts +20 -0
- package/src/widgets/index.d.ts +6 -0
- package/{layout/widgets/yz.clear-storage.component.d.ts → src/widgets/yunzai-clear-storage.component.d.ts} +3 -3
- package/src/widgets/yunzai-fullscreen.component.d.ts +8 -0
- package/{layout/widgets/yz.i18n.component.d.ts → src/widgets/yunzai-i18n.component.d.ts} +5 -5
- package/{layout/widgets/yz.notify.component.d.ts → src/widgets/yunzai-notify.component.d.ts} +5 -5
- package/{layout/widgets/yz.them-btn.component.d.ts → src/widgets/yunzai-theme-btn.component.d.ts} +5 -5
- package/{layout/widgets/yz.user.component.d.ts → src/widgets/yunzai-user.component.d.ts} +3 -3
- package/{layout/act.guard.d.ts → src/yunzai-act.guard.d.ts} +1 -2
- package/{layout/yz.auth.service.d.ts → src/yunzai-auth.service.d.ts} +6 -7
- package/{layout/yz.default.interceptor.d.ts → src/yunzai-default.interceptor.d.ts} +4 -6
- package/{layout/yz.i18n.service.d.ts → src/yunzai-i18n.service.d.ts} +4 -3
- package/src/yunzai-layout.module.d.ts +21 -0
- package/src/yunzai-startup.service.d.ts +37 -0
- package/esm2020/layout/act.guard.mjs +0 -108
- package/esm2020/layout/bis.config.mjs +0 -11
- package/esm2020/layout/contact/contact.component.mjs +0 -492
- package/esm2020/layout/contact/contact.service.mjs +0 -146
- package/esm2020/layout/layout.mjs +0 -5
- package/esm2020/layout/layout.module.mjs +0 -76
- package/esm2020/layout/path-to-regexp.service.mjs +0 -238
- package/esm2020/layout/public_api.mjs +0 -15
- package/esm2020/layout/stomp.config.mjs +0 -18
- package/esm2020/layout/widgets/index.mjs +0 -9
- package/esm2020/layout/widgets/yz.application.component.mjs +0 -271
- package/esm2020/layout/widgets/yz.clear-storage.component.mjs +0 -45
- package/esm2020/layout/widgets/yz.fullscreen.component.mjs +0 -45
- package/esm2020/layout/widgets/yz.i18n.component.mjs +0 -115
- package/esm2020/layout/widgets/yz.notify.component.mjs +0 -183
- package/esm2020/layout/widgets/yz.them-btn.component.mjs +0 -195
- package/esm2020/layout/yz.auth.service.mjs +0 -155
- package/esm2020/layout/yz.basic.component.mjs +0 -269
- package/esm2020/layout/yz.default.interceptor.mjs +0 -207
- package/esm2020/layout/yz.i18n.service.mjs +0 -93
- package/esm2020/layout/yz.startup.service.mjs +0 -139
- package/esm2020/layout/yz.stomp.service.mjs +0 -88
- package/esm2020/shared/public_api.mjs +0 -5
- package/esm2020/shared/shared-yelon.module.mjs +0 -106
- package/esm2020/shared/shared-zorro.module.mjs +0 -81
- package/esm2020/shared/shared.mjs +0 -5
- package/esm2020/shared/shared.module.mjs +0 -115
- package/esm2020/shared/style-icons.mjs +0 -796
- package/fesm2015/layout.mjs +0 -2968
- package/fesm2015/layout.mjs.map +0 -1
- package/fesm2015/shared.mjs +0 -1103
- package/fesm2015/shared.mjs.map +0 -1
- package/fesm2020/layout.mjs +0 -2977
- package/fesm2020/layout.mjs.map +0 -1
- package/fesm2020/shared.mjs +0 -1103
- package/fesm2020/shared.mjs.map +0 -1
- package/layout/contact/contact.component.d.ts +0 -169
- package/layout/contact/contact.service.d.ts +0 -118
- package/layout/index.d.ts +0 -5
- package/layout/layout.module.d.ts +0 -21
- package/layout/path-to-regexp.service.d.ts +0 -26
- package/layout/public_api.d.ts +0 -14
- package/layout/stomp.config.d.ts +0 -3
- package/layout/style/index.less +0 -155
- package/layout/widgets/index.d.ts +0 -8
- package/layout/widgets/yz.application.component.d.ts +0 -49
- package/layout/widgets/yz.application.group.component.d.ts +0 -19
- package/layout/widgets/yz.fullscreen.component.d.ts +0 -8
- package/layout/yz.basic.component.d.ts +0 -27
- package/layout/yz.startup.service.d.ts +0 -36
- package/layout/yz.stomp.service.d.ts +0 -42
- package/shared/index.d.ts +0 -5
- package/shared/public_api.d.ts +0 -4
- package/shared/shared-yelon.module.d.ts +0 -3
- package/shared/shared-zorro.module.d.ts +0 -2
- package/shared/shared.module.d.ts +0 -94
package/fesm2015/shared.mjs
DELETED
|
@@ -1,1103 +0,0 @@
|
|
|
1
|
-
import * as i48 from '@yelon/abc/auto-focus';
|
|
2
|
-
import { AutoFocusModule } from '@yelon/abc/auto-focus';
|
|
3
|
-
import * as i7 from '@yelon/abc/avatar-list';
|
|
4
|
-
import { AvatarListModule } from '@yelon/abc/avatar-list';
|
|
5
|
-
import * as i8 from '@yelon/abc/count-down';
|
|
6
|
-
import { CountDownModule } from '@yelon/abc/count-down';
|
|
7
|
-
import * as i9 from '@yelon/abc/date-picker';
|
|
8
|
-
import { DatePickerModule } from '@yelon/abc/date-picker';
|
|
9
|
-
import * as i10 from '@yelon/abc/down-file';
|
|
10
|
-
import { DownFileModule } from '@yelon/abc/down-file';
|
|
11
|
-
import * as i11 from '@yelon/abc/ellipsis';
|
|
12
|
-
import { EllipsisModule } from '@yelon/abc/ellipsis';
|
|
13
|
-
import * as i19 from '@yelon/abc/error-collect';
|
|
14
|
-
import { ErrorCollectModule } from '@yelon/abc/error-collect';
|
|
15
|
-
import * as i20 from '@yelon/abc/exception';
|
|
16
|
-
import { ExceptionModule } from '@yelon/abc/exception';
|
|
17
|
-
import * as i21 from '@yelon/abc/footer-toolbar';
|
|
18
|
-
import { FooterToolbarModule } from '@yelon/abc/footer-toolbar';
|
|
19
|
-
import * as i22 from '@yelon/abc/global-footer';
|
|
20
|
-
import { GlobalFooterModule } from '@yelon/abc/global-footer';
|
|
21
|
-
import * as i49 from '@yelon/abc/let';
|
|
22
|
-
import { LetModule } from '@yelon/abc/let';
|
|
23
|
-
import * as i16 from '@yelon/abc/loading';
|
|
24
|
-
import { LoadingModule } from '@yelon/abc/loading';
|
|
25
|
-
import * as i43 from '@yelon/abc/media';
|
|
26
|
-
import { MediaModule } from '@yelon/abc/media';
|
|
27
|
-
import * as i2 from '@yelon/abc/notice-icon';
|
|
28
|
-
import { NoticeIconModule } from '@yelon/abc/notice-icon';
|
|
29
|
-
import * as i18 from '@yelon/abc/onboarding';
|
|
30
|
-
import { OnboardingModule } from '@yelon/abc/onboarding';
|
|
31
|
-
import * as i23 from '@yelon/abc/page-header';
|
|
32
|
-
import { PageHeaderModule } from '@yelon/abc/page-header';
|
|
33
|
-
import * as i46 from '@yelon/abc/pdf';
|
|
34
|
-
import { PdfModule } from '@yelon/abc/pdf';
|
|
35
|
-
import * as i17 from '@yelon/abc/qr';
|
|
36
|
-
import { QRModule } from '@yelon/abc/qr';
|
|
37
|
-
import * as i26 from '@yelon/abc/quick-menu';
|
|
38
|
-
import { QuickMenuModule } from '@yelon/abc/quick-menu';
|
|
39
|
-
import * as i24 from '@yelon/abc/result';
|
|
40
|
-
import { ResultModule } from '@yelon/abc/result';
|
|
41
|
-
import * as i3 from '@yelon/abc/reuse-tab';
|
|
42
|
-
import { ReuseTabModule } from '@yelon/abc/reuse-tab';
|
|
43
|
-
import * as i14 from '@yelon/abc/se';
|
|
44
|
-
import { SEModule } from '@yelon/abc/se';
|
|
45
|
-
import * as i15 from '@yelon/abc/sg';
|
|
46
|
-
import { SGModule } from '@yelon/abc/sg';
|
|
47
|
-
import * as i12 from '@yelon/abc/st';
|
|
48
|
-
import { STModule } from '@yelon/abc/st';
|
|
49
|
-
import * as i13 from '@yelon/abc/sv';
|
|
50
|
-
import { SVModule } from '@yelon/abc/sv';
|
|
51
|
-
import * as i25 from '@yelon/abc/tag-select';
|
|
52
|
-
import { TagSelectModule } from '@yelon/abc/tag-select';
|
|
53
|
-
import * as i5 from '@yelon/acl';
|
|
54
|
-
import { YelonACLModule } from '@yelon/acl';
|
|
55
|
-
import * as i27 from '@yelon/chart/bar';
|
|
56
|
-
import { G2BarModule } from '@yelon/chart/bar';
|
|
57
|
-
import * as i28 from '@yelon/chart/card';
|
|
58
|
-
import { G2CardModule } from '@yelon/chart/card';
|
|
59
|
-
import * as i40 from '@yelon/chart/chart-echarts';
|
|
60
|
-
import { ChartEChartsModule } from '@yelon/chart/chart-echarts';
|
|
61
|
-
import * as i29 from '@yelon/chart/custom';
|
|
62
|
-
import { G2CustomModule } from '@yelon/chart/custom';
|
|
63
|
-
import * as i30 from '@yelon/chart/gauge';
|
|
64
|
-
import { G2GaugeModule } from '@yelon/chart/gauge';
|
|
65
|
-
import * as i31 from '@yelon/chart/mini-area';
|
|
66
|
-
import { G2MiniAreaModule } from '@yelon/chart/mini-area';
|
|
67
|
-
import * as i32 from '@yelon/chart/mini-bar';
|
|
68
|
-
import { G2MiniBarModule } from '@yelon/chart/mini-bar';
|
|
69
|
-
import * as i33 from '@yelon/chart/mini-progress';
|
|
70
|
-
import { G2MiniProgressModule } from '@yelon/chart/mini-progress';
|
|
71
|
-
import * as i41 from '@yelon/chart/number-info';
|
|
72
|
-
import { NumberInfoModule } from '@yelon/chart/number-info';
|
|
73
|
-
import * as i34 from '@yelon/chart/pie';
|
|
74
|
-
import { G2PieModule } from '@yelon/chart/pie';
|
|
75
|
-
import * as i35 from '@yelon/chart/radar';
|
|
76
|
-
import { G2RadarModule } from '@yelon/chart/radar';
|
|
77
|
-
import * as i36 from '@yelon/chart/single-bar';
|
|
78
|
-
import { G2SingleBarModule } from '@yelon/chart/single-bar';
|
|
79
|
-
import * as i37 from '@yelon/chart/tag-cloud';
|
|
80
|
-
import { G2TagCloudModule } from '@yelon/chart/tag-cloud';
|
|
81
|
-
import * as i38 from '@yelon/chart/timeline';
|
|
82
|
-
import { G2TimelineModule } from '@yelon/chart/timeline';
|
|
83
|
-
import * as i42 from '@yelon/chart/trend';
|
|
84
|
-
import { TrendModule } from '@yelon/chart/trend';
|
|
85
|
-
import * as i39 from '@yelon/chart/water-wave';
|
|
86
|
-
import { G2WaterWaveModule } from '@yelon/chart/water-wave';
|
|
87
|
-
import * as i6 from '@yelon/form';
|
|
88
|
-
import { YelonFormModule } from '@yelon/form';
|
|
89
|
-
import * as i1 from '@yelon/theme';
|
|
90
|
-
import { YunzaiThemeModule } from '@yelon/theme';
|
|
91
|
-
import * as i4 from '@yelon/theme/layout-default';
|
|
92
|
-
import { LayoutDefaultModule } from '@yelon/theme/layout-default';
|
|
93
|
-
import * as i45 from '@yelon/theme/setting-drawer';
|
|
94
|
-
import { SettingDrawerModule } from '@yelon/theme/setting-drawer';
|
|
95
|
-
import * as i44 from '@yelon/theme/theme-btn';
|
|
96
|
-
import { ThemeBtnModule } from '@yelon/theme/theme-btn';
|
|
97
|
-
import * as i47 from '@yelon/util';
|
|
98
|
-
import { CurrencyPipeModule, FormatPipeModule, FilterPipeModule } from '@yelon/util';
|
|
99
|
-
import * as i62 from 'ng-zorro-antd/affix';
|
|
100
|
-
import { NzAffixModule } from 'ng-zorro-antd/affix';
|
|
101
|
-
import * as i64 from 'ng-zorro-antd/alert';
|
|
102
|
-
import { NzAlertModule } from 'ng-zorro-antd/alert';
|
|
103
|
-
import * as i84 from 'ng-zorro-antd/anchor';
|
|
104
|
-
import { NzAnchorModule } from 'ng-zorro-antd/anchor';
|
|
105
|
-
import * as i79 from 'ng-zorro-antd/avatar';
|
|
106
|
-
import { NzAvatarModule } from 'ng-zorro-antd/avatar';
|
|
107
|
-
import * as i53 from 'ng-zorro-antd/back-top';
|
|
108
|
-
import { NzBackTopModule } from 'ng-zorro-antd/back-top';
|
|
109
|
-
import * as i63 from 'ng-zorro-antd/badge';
|
|
110
|
-
import { NzBadgeModule } from 'ng-zorro-antd/badge';
|
|
111
|
-
import * as i73 from 'ng-zorro-antd/breadcrumb';
|
|
112
|
-
import { NzBreadCrumbModule } from 'ng-zorro-antd/breadcrumb';
|
|
113
|
-
import * as i51 from 'ng-zorro-antd/button';
|
|
114
|
-
import { NzButtonModule } from 'ng-zorro-antd/button';
|
|
115
|
-
import * as i80 from 'ng-zorro-antd/card';
|
|
116
|
-
import { NzCardModule } from 'ng-zorro-antd/card';
|
|
117
|
-
import * as i56 from 'ng-zorro-antd/carousel';
|
|
118
|
-
import { NzCarouselModule } from 'ng-zorro-antd/carousel';
|
|
119
|
-
import * as i57 from 'ng-zorro-antd/checkbox';
|
|
120
|
-
import { NzCheckboxModule } from 'ng-zorro-antd/checkbox';
|
|
121
|
-
import * as i88 from 'ng-zorro-antd/core/highlight';
|
|
122
|
-
import { NzHighlightModule } from 'ng-zorro-antd/core/highlight';
|
|
123
|
-
import * as i70 from 'ng-zorro-antd/date-picker';
|
|
124
|
-
import { NzDatePickerModule } from 'ng-zorro-antd/date-picker';
|
|
125
|
-
import * as i82 from 'ng-zorro-antd/divider';
|
|
126
|
-
import { NzDividerModule } from 'ng-zorro-antd/divider';
|
|
127
|
-
import * as i67 from 'ng-zorro-antd/drawer';
|
|
128
|
-
import { NzDrawerModule } from 'ng-zorro-antd/drawer';
|
|
129
|
-
import * as i54 from 'ng-zorro-antd/dropdown';
|
|
130
|
-
import { NzDropDownModule } from 'ng-zorro-antd/dropdown';
|
|
131
|
-
import * as i87 from 'ng-zorro-antd/empty';
|
|
132
|
-
import { NzEmptyModule } from 'ng-zorro-antd/empty';
|
|
133
|
-
import * as i78 from 'ng-zorro-antd/form';
|
|
134
|
-
import { NzFormModule } from 'ng-zorro-antd/form';
|
|
135
|
-
import * as i55 from 'ng-zorro-antd/grid';
|
|
136
|
-
import { NzGridModule } from 'ng-zorro-antd/grid';
|
|
137
|
-
import * as i61 from 'ng-zorro-antd/icon';
|
|
138
|
-
import { NzIconModule } from 'ng-zorro-antd/icon';
|
|
139
|
-
import * as i69 from 'ng-zorro-antd/input';
|
|
140
|
-
import { NzInputModule } from 'ng-zorro-antd/input';
|
|
141
|
-
import * as i72 from 'ng-zorro-antd/input-number';
|
|
142
|
-
import { NzInputNumberModule } from 'ng-zorro-antd/input-number';
|
|
143
|
-
import * as i75 from 'ng-zorro-antd/list';
|
|
144
|
-
import { NzListModule } from 'ng-zorro-antd/list';
|
|
145
|
-
import * as i52 from 'ng-zorro-antd/message';
|
|
146
|
-
import { NzMessageModule } from 'ng-zorro-antd/message';
|
|
147
|
-
import * as i65 from 'ng-zorro-antd/modal';
|
|
148
|
-
import { NzModalModule } from 'ng-zorro-antd/modal';
|
|
149
|
-
import * as i86 from 'ng-zorro-antd/pagination';
|
|
150
|
-
import { NzPaginationModule } from 'ng-zorro-antd/pagination';
|
|
151
|
-
import * as i59 from 'ng-zorro-antd/popover';
|
|
152
|
-
import { NzPopoverModule } from 'ng-zorro-antd/popover';
|
|
153
|
-
import * as i77 from 'ng-zorro-antd/radio';
|
|
154
|
-
import { NzRadioModule } from 'ng-zorro-antd/radio';
|
|
155
|
-
import * as i83 from 'ng-zorro-antd/resizable';
|
|
156
|
-
import { NzResizableModule } from 'ng-zorro-antd/resizable';
|
|
157
|
-
import * as i60 from 'ng-zorro-antd/select';
|
|
158
|
-
import { NzSelectModule } from 'ng-zorro-antd/select';
|
|
159
|
-
import * as i81 from 'ng-zorro-antd/spin';
|
|
160
|
-
import { NzSpinModule } from 'ng-zorro-antd/spin';
|
|
161
|
-
import * as i74 from 'ng-zorro-antd/steps';
|
|
162
|
-
import { NzStepsModule } from 'ng-zorro-antd/steps';
|
|
163
|
-
import * as i76 from 'ng-zorro-antd/switch';
|
|
164
|
-
import { NzSwitchModule } from 'ng-zorro-antd/switch';
|
|
165
|
-
import * as i66 from 'ng-zorro-antd/table';
|
|
166
|
-
import { NzTableModule } from 'ng-zorro-antd/table';
|
|
167
|
-
import * as i68 from 'ng-zorro-antd/tabs';
|
|
168
|
-
import { NzTabsModule } from 'ng-zorro-antd/tabs';
|
|
169
|
-
import * as i71 from 'ng-zorro-antd/tag';
|
|
170
|
-
import { NzTagModule } from 'ng-zorro-antd/tag';
|
|
171
|
-
import * as i58 from 'ng-zorro-antd/tooltip';
|
|
172
|
-
import { NzToolTipModule } from 'ng-zorro-antd/tooltip';
|
|
173
|
-
import * as i50 from 'ng-zorro-antd/tree';
|
|
174
|
-
import { NzTreeModule } from 'ng-zorro-antd/tree';
|
|
175
|
-
import * as i85 from 'ng-zorro-antd/upload';
|
|
176
|
-
import { NzUploadModule } from 'ng-zorro-antd/upload';
|
|
177
|
-
import * as i0 from '@angular/core';
|
|
178
|
-
import { NgModule } from '@angular/core';
|
|
179
|
-
import { AccountBookTwoTone, AccountBookFill, AccountBookOutline, AlertTwoTone, AlertFill, AlibabaOutline, AimOutline, AlipayCircleFill, AlertOutline, AlignCenterOutline, AlipayCircleOutline, AlipayOutline, AlignLeftOutline, AlignRightOutline, AmazonOutline, AliwangwangOutline, AliyunOutline, AlipaySquareFill, AmazonCircleFill, AndroidFill, AliwangwangFill, AntCloudOutline, AmazonSquareFill, AndroidOutline, ApartmentOutline, ApiTwoTone, ApiFill, ApiOutline, AntDesignOutline, AppstoreAddOutline, AppstoreFill, AppleOutline, AppstoreOutline, ArrowDownOutline, AppleFill, ArrowsAltOutline, AppstoreTwoTone, ArrowUpOutline, AreaChartOutline, ArrowLeftOutline, AudioFill, ArrowRightOutline, AudioTwoTone, AuditOutline, AudioMutedOutline, BackwardFill, AudioOutline, BackwardOutline, BankFill, BarcodeOutline, BellFill, BankTwoTone, BarsOutline, BankOutline, BehanceCircleFill, BehanceSquareFill, BoldOutline, BellOutline, BehanceOutline, BlockOutline, BehanceSquareOutline, BgColorsOutline, BellTwoTone, BarChartOutline, BookTwoTone, BookFill, BorderOuterOutline, BorderLeftOutline, BorderBottomOutline, BorderHorizontalOutline, BorderTopOutline, BorderOutline, BorderInnerOutline, BorderRightOutline, BoxPlotOutline, BoxPlotFill, BoxPlotTwoTone, BookOutline, BorderlessTableOutline, BorderVerticleOutline, BuildTwoTone, BuildOutline, BugFill, BugOutline, BugTwoTone, BulbFill, BulbTwoTone, BuildFill, BulbOutline, CalculatorFill, CalculatorTwoTone, CalendarFill, CalendarOutline, CalculatorOutline, CalendarTwoTone, CameraOutline, CameraFill, CameraTwoTone, CarTwoTone, CaretDownOutline, CarOutline, CaretLeftFill, CarFill, CaretRightOutline, CaretDownFill, CaretUpOutline, CaretRightFill, CarryOutFill, CarryOutOutline, CaretLeftOutline, CaretUpFill, BranchesOutline, CarryOutTwoTone, CheckCircleFill, CheckCircleOutline, CheckSquareOutline, CheckCircleTwoTone, CiCircleTwoTone, CheckOutline, CheckSquareTwoTone, CiOutline, CheckSquareFill, CiTwoTone, ChromeOutline, ClockCircleOutline, CiCircleOutline, ChromeFill, ClearOutline, CloseCircleTwoTone, CiCircleFill, CloseCircleOutline, ClockCircleFill, CloseCircleFill, ClockCircleTwoTone, CloseOutline, CloseSquareOutline, CloseSquareFill, CloudFill, CloseSquareTwoTone, CloudDownloadOutline, CloudTwoTone, CloudServerOutline, CloudUploadOutline, CloudSyncOutline, ClusterOutline, CodeSandboxCircleFill, CodeFill, CodepenCircleOutline, CloudOutline, CodeSandboxOutline, CodeOutline, CodeSandboxSquareFill, CodeTwoTone, CodepenSquareFill, CodepenOutline, CoffeeOutline, ColumnWidthOutline, CompressOutline, ColumnHeightOutline, CodepenCircleFill, CompassTwoTone, CommentOutline, ContainerFill, CompassOutline, ConsoleSqlOutline, ContactsOutline, ContainerTwoTone, ContactsFill, ContactsTwoTone, ContainerOutline, ControlFill, CopyFill, CopyOutline, CompassFill, CopyTwoTone, CopyrightOutline, CopyrightCircleOutline, ControlTwoTone, ControlOutline, CreditCardFill, CopyrightTwoTone, CrownFill, CopyrightCircleFill, CrownOutline, CustomerServiceTwoTone, CreditCardOutline, CustomerServiceOutline, DashboardTwoTone, CrownTwoTone, CreditCardTwoTone, CustomerServiceFill, DashboardFill, DashOutline, DatabaseOutline, DatabaseTwoTone, DatabaseFill, DashboardOutline, DeleteTwoTone, DeleteRowOutline, DeleteColumnOutline, DeliveredProcedureOutline, DeleteOutline, CopyrightCircleTwoTone, DesktopOutline, DeleteFill, DiffOutline, DiffFill, DeploymentUnitOutline, DiffTwoTone, DingtalkOutline, DollarCircleFill, DislikeFill, DingtalkSquareFill, DisconnectOutline, DollarCircleTwoTone, DollarOutline, DingtalkCircleFill, DislikeTwoTone, DollarTwoTone, DownCircleFill, DislikeOutline, DollarCircleOutline, DoubleLeftOutline, DownSquareFill, DownOutline, DownSquareOutline, DownSquareTwoTone, DownCircleTwoTone, DoubleRightOutline, DownCircleOutline, DownloadOutline, DotChartOutline, DribbbleCircleFill, DribbbleOutline, DribbbleSquareOutline, DropboxCircleFill, DingdingOutline, EditOutline, DribbbleSquareFill, DropboxSquareFill, EllipsisOutline, EnvironmentFill, EditFill, EnterOutline, EuroCircleFill, EuroTwoTone, EuroCircleOutline, EditTwoTone, EuroOutline, EnvironmentTwoTone, ExclamationCircleFill, ExpandAltOutline, EuroCircleTwoTone, ExclamationCircleTwoTone, EnvironmentOutline, ExperimentOutline, ExperimentFill, ExpandOutline, ExceptionOutline, ExportOutline, ExperimentTwoTone, ExclamationCircleOutline, ExclamationOutline, EyeFill, EyeInvisibleFill, EyeInvisibleTwoTone, DropboxOutline, DragOutline, FacebookOutline, FacebookFill, EyeTwoTone, EyeOutline, FastForwardFill, FieldBinaryOutline, FieldNumberOutline, FastBackwardOutline, FileAddFill, FastBackwardFill, FileExcelFill, FastForwardOutline, FieldStringOutline, FileDoneOutline, FileAddTwoTone, FileExcelTwoTone, FileExclamationFill, FileAddOutline, FileExclamationOutline, FieldTimeOutline, FileImageTwoTone, FileExcelOutline, FileExclamationTwoTone, FileImageFill, FileGifOutline, FileFill, FileMarkdownTwoTone, FileMarkdownOutline, FallOutline, FileImageOutline, EyeInvisibleOutline, FilePdfOutline, FileSearchOutline, FilePptTwoTone, FilePdfTwoTone, FileJpgOutline, FileTextFill, FilePptOutline, FileSyncOutline, FilePptFill, FileUnknownOutline, FileProtectOutline, FileTextTwoTone, FileWordFill, FileUnknownTwoTone, FileWordTwoTone, FileUnknownFill, FileTextOutline, FileZipFill, FilterTwoTone, FilterFill, FileWordOutline, FireOutline, FireTwoTone, FileZipOutline, FilterOutline, FlagTwoTone, FileTwoTone, FilePdfFill, FileOutline, FileMarkdownFill, FileZipTwoTone, FlagOutline, FolderAddTwoTone, FolderOpenFill, FireFill, FlagFill, FolderOutline, FolderViewOutline, FolderTwoTone, FontColorsOutline, FolderOpenTwoTone, FolderFill, ForwardOutline, FolderOpenOutline, ForkOutline, ForwardFill, FormatPainterOutline, FormatPainterFill, FormOutline, FrownFill, FrownTwoTone, FullscreenOutline, FontSizeOutline, FundFill, FunctionOutline, FundViewOutline, FullscreenExitOutline, GifOutline, FundProjectionScreenOutline, FundTwoTone, FolderAddFill, FunnelPlotTwoTone, GiftOutline, FunnelPlotFill, FundOutline, FrownOutline, GithubOutline, GoldFill, FolderAddOutline, GitlabFill, GiftFill, GitlabOutline, GoldTwoTone, GoogleCircleFill, GiftTwoTone, GooglePlusCircleFill, GoldOutline, GithubFill, GoogleOutline, GooglePlusOutline, GoogleSquareFill, GoldenFill, HddTwoTone, GooglePlusSquareFill, GlobalOutline, HeartOutline, HeartTwoTone, GroupOutline, HeartFill, HeatMapOutline, GatewayOutline, FunnelPlotOutline, HddFill, HomeFill, HighlightFill, HomeOutline, HistoryOutline, HighlightOutline, HddOutline, HourglassFill, HomeTwoTone, HourglassTwoTone, Html5Outline, Html5Fill, IdcardFill, Html5TwoTone, HourglassOutline, IdcardTwoTone, IdcardOutline, IeOutline, IeCircleFill, IeSquareFill, InboxOutline, ImportOutline, InfoCircleOutline, InfoCircleTwoTone, InsertRowAboveOutline, InsertRowRightOutline, InfoCircleFill, InfoOutline, InsertRowBelowOutline, HighlightTwoTone, InsuranceFill, InstagramFill, InteractionFill, InsertRowLeftOutline, InstagramOutline, InteractionOutline, ItalicOutline, InteractionTwoTone, LayoutOutline, IssuesCloseOutline, LayoutFill, LaptopOutline, LeftCircleFill, LayoutTwoTone, KeyOutline, LeftOutline, LeftCircleOutline, LeftSquareOutline, LeftSquareFill, LeftCircleTwoTone, LikeFill, LeftSquareTwoTone, LineOutline, LikeTwoTone, LinkedinOutline, LineChartOutline, LineHeightOutline, LinkedinFill, LinkOutline, LikeOutline, InsuranceOutline, Loading3QuartersOutline, LockFill, InsuranceTwoTone, MacCommandOutline, LockTwoTone, LoadingOutline, MailOutline, LoginOutline, MedicineBoxOutline, MailFill, MailTwoTone, MacCommandFill, ManOutline, MedicineBoxFill, MedicineBoxTwoTone, MediumCircleFill, MediumOutline, MehFill, MediumWorkmarkOutline, MenuFoldOutline, MehOutline, MediumSquareFill, MessageTwoTone, MehTwoTone, MergeCellsOutline, MinusCircleFill, MenuOutline, MenuUnfoldOutline, MessageFill, MinusCircleTwoTone, LockOutline, MinusOutline, MinusCircleOutline, LogoutOutline, MessageOutline, MoneyCollectFill, MinusSquareOutline, MinusSquareTwoTone, MobileOutline, MobileTwoTone, MoneyCollectOutline, MoreOutline, NotificationFill, NotificationOutline, MoneyCollectTwoTone, NodeIndexOutline, NodeExpandOutline, MonitorOutline, OrderedListOutline, NodeCollapseOutline, NumberOutline, PaperClipOutline, NotificationTwoTone, PauseCircleFill, PartitionOutline, PauseOutline, OneToOneOutline, PayCircleOutline, PayCircleFill, MinusSquareFill, PauseCircleOutline, PauseCircleTwoTone, PicCenterOutline, PicRightOutline, PercentageOutline, MobileFill, PictureOutline, PictureFill, PhoneTwoTone, PhoneFill, PieChartFill, PictureTwoTone, PieChartOutline, PlaySquareFill, PlayCircleTwoTone, PlayCircleFill, PlusCircleFill, PlaySquareTwoTone, PlaySquareOutline, PlayCircleOutline, PieChartTwoTone, PlusCircleOutline, PlusSquareFill, PoundCircleFill, PlusSquareOutline, PlusOutline, PoundOutline, PoundCircleOutline, PlusSquareTwoTone, PlusCircleTwoTone, PoweroffOutline, PoundCircleTwoTone, PhoneOutline, PrinterFill, PicLeftOutline, ProjectTwoTone, PrinterOutline, ProjectFill, ProfileOutline, ProfileTwoTone, ProjectOutline, PropertySafetyFill, PullRequestOutline, PropertySafetyOutline, PushpinOutline, PushpinTwoTone, PropertySafetyTwoTone, PushpinFill, QqOutline, QqCircleFill, QrcodeOutline, QqSquareFill, QuestionCircleTwoTone, QuestionCircleFill, RadarChartOutline, RadiusUprightOutline, QuestionCircleOutline, QuestionOutline, ReadFill, RadiusUpleftOutline, RadiusBottomleftOutline, RadiusSettingOutline, RadiusBottomrightOutline, ProfileFill, PrinterTwoTone, ReadOutline, ReconciliationFill, ReloadOutline, ReconciliationOutline, RedEnvelopeTwoTone, RedditCircleFill, RedoOutline, RedEnvelopeFill, RedditOutline, RestTwoTone, RightCircleOutline, RestOutline, RedditSquareFill, RestFill, RightCircleTwoTone, RightOutline, RightSquareFill, RightCircleFill, RightSquareOutline, RetweetOutline, RiseOutline, RightSquareTwoTone, RobotFill, RocketOutline, RobotOutline, RocketTwoTone, RocketFill, RedEnvelopeOutline, RollbackOutline, RotateRightOutline, RotateLeftOutline, ReconciliationTwoTone, SafetyCertificateTwoTone, SaveOutline, SafetyOutline, SaveFill, SaveTwoTone, ScheduleFill, SafetyCertificateOutline, ScanOutline, ScheduleTwoTone, SearchOutline, ScheduleOutline, SecurityScanTwoTone, SecurityScanOutline, ScissorOutline, SelectOutline, SecurityScanFill, SendOutline, SettingOutline, SettingTwoTone, SettingFill, ShareAltOutline, ShopOutline, ShopFill, ShopTwoTone, ShrinkOutline, ShakeOutline, ShoppingOutline, ShoppingCartOutline, ShoppingFill, SisternodeOutline, ShoppingTwoTone, SafetyCertificateFill, SkinOutline, SignalFill, SketchOutline, SkinTwoTone, SketchSquareFill, SkypeFill, SkinFill, SlackCircleFill, SlackSquareFill, SlidersTwoTone, SkypeOutline, SlidersFill, SlackSquareOutline, SmallDashOutline, SmileTwoTone, SlidersOutline, SnippetsFill, SnippetsOutline, SmileOutline, SolutionOutline, SlackOutline, SnippetsTwoTone, SoundTwoTone, SortAscendingOutline, SoundFill, SortDescendingOutline, SmileFill, SoundOutline, SplitCellsOutline, SketchCircleFill, StarOutline, StockOutline, StarTwoTone, StepForwardFill, StarFill, StepBackwardFill, StepForwardOutline, StopFill, SubnodeOutline, SwapLeftOutline, StopOutline, StopTwoTone, SwapRightOutline, SwapOutline, SwitcherTwoTone, SwitcherOutline, SyncOutline, StrikethroughOutline, SwitcherFill, TagOutline, TabletTwoTone, TabletOutline, TabletFill, TableOutline, TagsFill, TagFill, TagsTwoTone, TaobaoCircleOutline, StepBackwardOutline, TagsOutline, TagTwoTone, TaobaoOutline, ThunderboltOutline, TaobaoSquareFill, TeamOutline, TaobaoCircleFill, ThunderboltTwoTone, ToolFill, ThunderboltFill, ToTopOutline, ToolOutline, ToolTwoTone, TrademarkCircleFill, TrophyFill, TrademarkCircleTwoTone, TransactionOutline, TrademarkCircleOutline, TranslationOutline, TwitterCircleFill, TrophyOutline, TrademarkOutline, TrophyTwoTone, TwitterSquareFill, UnlockFill, TwitterOutline, UnderlineOutline, UndoOutline, UpCircleFill, UngroupOutline, UnlockTwoTone, UnlockOutline, UpOutline, UsbFill, UpCircleOutline, UnorderedListOutline, UpCircleTwoTone, UpSquareFill, UpSquareOutline, UserAddOutline, UsbTwoTone, UsergroupDeleteOutline, UpSquareTwoTone, UserOutline, UsbOutline, UserDeleteOutline, UserSwitchOutline, VerticalLeftOutline, VerticalAlignBottomOutline, VerifiedOutline, UsergroupAddOutline, UploadOutline, VerticalAlignMiddleOutline, VerticalAlignTopOutline, VerticalRightOutline, VideoCameraOutline, VideoCameraAddOutline, VideoCameraTwoTone, VideoCameraFill, WalletOutline, WalletFill, WarningFill, WarningOutline, WechatOutline, WalletTwoTone, WeiboCircleFill, WarningTwoTone, WeiboSquareFill, WeiboOutline, WeiboSquareOutline, WeiboCircleOutline, WechatFill, WhatsAppOutline, WifiOutline, WomanOutline, YoutubeFill, YahooOutline, WindowsFill, WindowsOutline, YoutubeOutline, YuqueOutline, ZhihuCircleFill, YuqueFill, ZhihuOutline, ZhihuSquareFill, ZoomInOutline, ZoomOutOutline, YahooFill } from '@ant-design/icons-angular/icons';
|
|
180
|
-
|
|
181
|
-
const YZ_SHARED_YELON_MODULES = [
|
|
182
|
-
YunzaiThemeModule,
|
|
183
|
-
NoticeIconModule,
|
|
184
|
-
ReuseTabModule,
|
|
185
|
-
LayoutDefaultModule,
|
|
186
|
-
YelonACLModule,
|
|
187
|
-
YelonFormModule,
|
|
188
|
-
AvatarListModule,
|
|
189
|
-
CountDownModule,
|
|
190
|
-
DatePickerModule,
|
|
191
|
-
DownFileModule,
|
|
192
|
-
EllipsisModule,
|
|
193
|
-
STModule,
|
|
194
|
-
SVModule,
|
|
195
|
-
SEModule,
|
|
196
|
-
SGModule,
|
|
197
|
-
LoadingModule,
|
|
198
|
-
QRModule,
|
|
199
|
-
OnboardingModule,
|
|
200
|
-
ErrorCollectModule,
|
|
201
|
-
ExceptionModule,
|
|
202
|
-
FooterToolbarModule,
|
|
203
|
-
GlobalFooterModule,
|
|
204
|
-
GlobalFooterModule,
|
|
205
|
-
PageHeaderModule,
|
|
206
|
-
ResultModule,
|
|
207
|
-
TagSelectModule,
|
|
208
|
-
NoticeIconModule,
|
|
209
|
-
QuickMenuModule,
|
|
210
|
-
G2BarModule,
|
|
211
|
-
G2CardModule,
|
|
212
|
-
G2CustomModule,
|
|
213
|
-
G2GaugeModule,
|
|
214
|
-
G2MiniAreaModule,
|
|
215
|
-
G2MiniBarModule,
|
|
216
|
-
G2MiniProgressModule,
|
|
217
|
-
G2PieModule,
|
|
218
|
-
G2RadarModule,
|
|
219
|
-
G2SingleBarModule,
|
|
220
|
-
G2TagCloudModule,
|
|
221
|
-
G2TimelineModule,
|
|
222
|
-
G2WaterWaveModule,
|
|
223
|
-
ChartEChartsModule,
|
|
224
|
-
NumberInfoModule,
|
|
225
|
-
TrendModule,
|
|
226
|
-
ReuseTabModule,
|
|
227
|
-
MediaModule,
|
|
228
|
-
ThemeBtnModule,
|
|
229
|
-
SettingDrawerModule,
|
|
230
|
-
PdfModule,
|
|
231
|
-
CurrencyPipeModule,
|
|
232
|
-
FormatPipeModule,
|
|
233
|
-
FilterPipeModule,
|
|
234
|
-
AutoFocusModule,
|
|
235
|
-
LetModule
|
|
236
|
-
];
|
|
237
|
-
|
|
238
|
-
const YZ_SHARED_ZORRO_MODULES = [
|
|
239
|
-
NzTreeModule,
|
|
240
|
-
NzButtonModule,
|
|
241
|
-
NzMessageModule,
|
|
242
|
-
NzBackTopModule,
|
|
243
|
-
NzDropDownModule,
|
|
244
|
-
NzGridModule,
|
|
245
|
-
NzCarouselModule,
|
|
246
|
-
NzCheckboxModule,
|
|
247
|
-
NzToolTipModule,
|
|
248
|
-
NzPopoverModule,
|
|
249
|
-
NzSelectModule,
|
|
250
|
-
NzIconModule,
|
|
251
|
-
NzAffixModule,
|
|
252
|
-
NzBadgeModule,
|
|
253
|
-
NzAlertModule,
|
|
254
|
-
NzModalModule,
|
|
255
|
-
NzTableModule,
|
|
256
|
-
NzDrawerModule,
|
|
257
|
-
NzTabsModule,
|
|
258
|
-
NzInputModule,
|
|
259
|
-
NzDatePickerModule,
|
|
260
|
-
NzTagModule,
|
|
261
|
-
NzInputNumberModule,
|
|
262
|
-
NzBreadCrumbModule,
|
|
263
|
-
NzStepsModule,
|
|
264
|
-
NzListModule,
|
|
265
|
-
NzSwitchModule,
|
|
266
|
-
NzRadioModule,
|
|
267
|
-
NzFormModule,
|
|
268
|
-
NzAvatarModule,
|
|
269
|
-
NzCardModule,
|
|
270
|
-
NzSpinModule,
|
|
271
|
-
NzDividerModule,
|
|
272
|
-
NzResizableModule,
|
|
273
|
-
NzAnchorModule,
|
|
274
|
-
NzUploadModule,
|
|
275
|
-
NzPaginationModule,
|
|
276
|
-
NzEmptyModule,
|
|
277
|
-
NzHighlightModule
|
|
278
|
-
];
|
|
279
|
-
|
|
280
|
-
/*
|
|
281
|
-
* @Author: cui <devcui@outlook.com>
|
|
282
|
-
* @Editor: microsoft vscode
|
|
283
|
-
* @Date: 2021-11-27 11:30:50
|
|
284
|
-
* @LastEditTime: 2021-11-27 14:41:18
|
|
285
|
-
* @LastEditors: cui <devcui@outlook.com>
|
|
286
|
-
* @Description: empty description
|
|
287
|
-
* @FilePath: \yelon\packages\bis\shared\shared.module.ts
|
|
288
|
-
* LICENSE HERE
|
|
289
|
-
*/
|
|
290
|
-
class YzSharedModule {
|
|
291
|
-
}
|
|
292
|
-
YzSharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.5", ngImport: i0, type: YzSharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
293
|
-
YzSharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.5", ngImport: i0, type: YzSharedModule, imports: [i1.YunzaiThemeModule, i2.NoticeIconModule, i3.ReuseTabModule, i4.LayoutDefaultModule, i5.YelonACLModule, i6.YelonFormModule, i7.AvatarListModule, i8.CountDownModule, i9.DatePickerModule, i10.DownFileModule, i11.EllipsisModule, i12.STModule, i13.SVModule, i14.SEModule, i15.SGModule, i16.LoadingModule, i17.QRModule, i18.OnboardingModule, i19.ErrorCollectModule, i20.ExceptionModule, i21.FooterToolbarModule, i22.GlobalFooterModule, i22.GlobalFooterModule, i23.PageHeaderModule, i24.ResultModule, i25.TagSelectModule, i2.NoticeIconModule, i26.QuickMenuModule, i27.G2BarModule, i28.G2CardModule, i29.G2CustomModule, i30.G2GaugeModule, i31.G2MiniAreaModule, i32.G2MiniBarModule, i33.G2MiniProgressModule, i34.G2PieModule, i35.G2RadarModule, i36.G2SingleBarModule, i37.G2TagCloudModule, i38.G2TimelineModule, i39.G2WaterWaveModule, i40.ChartEChartsModule, i41.NumberInfoModule, i42.TrendModule, i3.ReuseTabModule, i43.MediaModule, i44.ThemeBtnModule, i45.SettingDrawerModule, i46.PdfModule, i47.CurrencyPipeModule, i47.FormatPipeModule, i47.FilterPipeModule, i48.AutoFocusModule, i49.LetModule, i50.NzTreeModule, i51.NzButtonModule, i52.NzMessageModule, i53.NzBackTopModule, i54.NzDropDownModule, i55.NzGridModule, i56.NzCarouselModule, i57.NzCheckboxModule, i58.NzToolTipModule, i59.NzPopoverModule, i60.NzSelectModule, i61.NzIconModule, i62.NzAffixModule, i63.NzBadgeModule, i64.NzAlertModule, i65.NzModalModule, i66.NzTableModule, i67.NzDrawerModule, i68.NzTabsModule, i69.NzInputModule, i70.NzDatePickerModule, i71.NzTagModule, i72.NzInputNumberModule, i73.NzBreadCrumbModule, i74.NzStepsModule, i75.NzListModule, i76.NzSwitchModule, i77.NzRadioModule, i78.NzFormModule, i79.NzAvatarModule, i80.NzCardModule, i81.NzSpinModule, i82.NzDividerModule, i83.NzResizableModule, i84.NzAnchorModule, i85.NzUploadModule, i86.NzPaginationModule, i87.NzEmptyModule, i88.NzHighlightModule], exports: [i1.YunzaiThemeModule, i2.NoticeIconModule, i3.ReuseTabModule, i4.LayoutDefaultModule, i5.YelonACLModule, i6.YelonFormModule, i7.AvatarListModule, i8.CountDownModule, i9.DatePickerModule, i10.DownFileModule, i11.EllipsisModule, i12.STModule, i13.SVModule, i14.SEModule, i15.SGModule, i16.LoadingModule, i17.QRModule, i18.OnboardingModule, i19.ErrorCollectModule, i20.ExceptionModule, i21.FooterToolbarModule, i22.GlobalFooterModule, i22.GlobalFooterModule, i23.PageHeaderModule, i24.ResultModule, i25.TagSelectModule, i2.NoticeIconModule, i26.QuickMenuModule, i27.G2BarModule, i28.G2CardModule, i29.G2CustomModule, i30.G2GaugeModule, i31.G2MiniAreaModule, i32.G2MiniBarModule, i33.G2MiniProgressModule, i34.G2PieModule, i35.G2RadarModule, i36.G2SingleBarModule, i37.G2TagCloudModule, i38.G2TimelineModule, i39.G2WaterWaveModule, i40.ChartEChartsModule, i41.NumberInfoModule, i42.TrendModule, i3.ReuseTabModule, i43.MediaModule, i44.ThemeBtnModule, i45.SettingDrawerModule, i46.PdfModule, i47.CurrencyPipeModule, i47.FormatPipeModule, i47.FilterPipeModule, i48.AutoFocusModule, i49.LetModule, i50.NzTreeModule, i51.NzButtonModule, i52.NzMessageModule, i53.NzBackTopModule, i54.NzDropDownModule, i55.NzGridModule, i56.NzCarouselModule, i57.NzCheckboxModule, i58.NzToolTipModule, i59.NzPopoverModule, i60.NzSelectModule, i61.NzIconModule, i62.NzAffixModule, i63.NzBadgeModule, i64.NzAlertModule, i65.NzModalModule, i66.NzTableModule, i67.NzDrawerModule, i68.NzTabsModule, i69.NzInputModule, i70.NzDatePickerModule, i71.NzTagModule, i72.NzInputNumberModule, i73.NzBreadCrumbModule, i74.NzStepsModule, i75.NzListModule, i76.NzSwitchModule, i77.NzRadioModule, i78.NzFormModule, i79.NzAvatarModule, i80.NzCardModule, i81.NzSpinModule, i82.NzDividerModule, i83.NzResizableModule, i84.NzAnchorModule, i85.NzUploadModule, i86.NzPaginationModule, i87.NzEmptyModule, i88.NzHighlightModule] });
|
|
294
|
-
YzSharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.5", ngImport: i0, type: YzSharedModule, imports: [YZ_SHARED_YELON_MODULES, YZ_SHARED_ZORRO_MODULES, i1.YunzaiThemeModule, i2.NoticeIconModule, i3.ReuseTabModule, i4.LayoutDefaultModule, i5.YelonACLModule, i6.YelonFormModule, i7.AvatarListModule, i8.CountDownModule, i9.DatePickerModule, i10.DownFileModule, i11.EllipsisModule, i12.STModule, i13.SVModule, i14.SEModule, i15.SGModule, i16.LoadingModule, i17.QRModule, i18.OnboardingModule, i19.ErrorCollectModule, i20.ExceptionModule, i21.FooterToolbarModule, i22.GlobalFooterModule, i22.GlobalFooterModule, i23.PageHeaderModule, i24.ResultModule, i25.TagSelectModule, i2.NoticeIconModule, i26.QuickMenuModule, i27.G2BarModule, i28.G2CardModule, i29.G2CustomModule, i30.G2GaugeModule, i31.G2MiniAreaModule, i32.G2MiniBarModule, i33.G2MiniProgressModule, i34.G2PieModule, i35.G2RadarModule, i36.G2SingleBarModule, i37.G2TagCloudModule, i38.G2TimelineModule, i39.G2WaterWaveModule, i40.ChartEChartsModule, i41.NumberInfoModule, i42.TrendModule, i3.ReuseTabModule, i43.MediaModule, i44.ThemeBtnModule, i45.SettingDrawerModule, i46.PdfModule, i47.CurrencyPipeModule, i47.FormatPipeModule, i47.FilterPipeModule, i48.AutoFocusModule, i49.LetModule, i50.NzTreeModule, i51.NzButtonModule, i52.NzMessageModule, i53.NzBackTopModule, i54.NzDropDownModule, i55.NzGridModule, i56.NzCarouselModule, i57.NzCheckboxModule, i58.NzToolTipModule, i59.NzPopoverModule, i60.NzSelectModule, i61.NzIconModule, i62.NzAffixModule, i63.NzBadgeModule, i64.NzAlertModule, i65.NzModalModule, i66.NzTableModule, i67.NzDrawerModule, i68.NzTabsModule, i69.NzInputModule, i70.NzDatePickerModule, i71.NzTagModule, i72.NzInputNumberModule, i73.NzBreadCrumbModule, i74.NzStepsModule, i75.NzListModule, i76.NzSwitchModule, i77.NzRadioModule, i78.NzFormModule, i79.NzAvatarModule, i80.NzCardModule, i81.NzSpinModule, i82.NzDividerModule, i83.NzResizableModule, i84.NzAnchorModule, i85.NzUploadModule, i86.NzPaginationModule, i87.NzEmptyModule, i88.NzHighlightModule] });
|
|
295
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.5", ngImport: i0, type: YzSharedModule, decorators: [{
|
|
296
|
-
type: NgModule,
|
|
297
|
-
args: [{
|
|
298
|
-
imports: [...YZ_SHARED_YELON_MODULES, ...YZ_SHARED_ZORRO_MODULES],
|
|
299
|
-
exports: [...YZ_SHARED_YELON_MODULES, ...YZ_SHARED_ZORRO_MODULES]
|
|
300
|
-
}]
|
|
301
|
-
}] });
|
|
302
|
-
|
|
303
|
-
/*
|
|
304
|
-
* Automatically generated by 'ng g ng-yunzai:plugin icon'
|
|
305
|
-
* @see https://ng.yunzainfo.com/cli/plugin#icon
|
|
306
|
-
*/
|
|
307
|
-
const ICONS = [
|
|
308
|
-
AccountBookTwoTone,
|
|
309
|
-
AccountBookFill,
|
|
310
|
-
AccountBookOutline,
|
|
311
|
-
AlertTwoTone,
|
|
312
|
-
AlertFill,
|
|
313
|
-
AlibabaOutline,
|
|
314
|
-
AimOutline,
|
|
315
|
-
AlipayCircleFill,
|
|
316
|
-
AlertOutline,
|
|
317
|
-
AlignCenterOutline,
|
|
318
|
-
AlipayCircleOutline,
|
|
319
|
-
AlipayOutline,
|
|
320
|
-
AlignLeftOutline,
|
|
321
|
-
AlignRightOutline,
|
|
322
|
-
AmazonOutline,
|
|
323
|
-
AliwangwangOutline,
|
|
324
|
-
AliyunOutline,
|
|
325
|
-
AlipaySquareFill,
|
|
326
|
-
AmazonCircleFill,
|
|
327
|
-
AndroidFill,
|
|
328
|
-
AliwangwangFill,
|
|
329
|
-
AntCloudOutline,
|
|
330
|
-
AmazonSquareFill,
|
|
331
|
-
AndroidOutline,
|
|
332
|
-
ApartmentOutline,
|
|
333
|
-
ApiTwoTone,
|
|
334
|
-
ApiFill,
|
|
335
|
-
ApiOutline,
|
|
336
|
-
AntDesignOutline,
|
|
337
|
-
AppstoreAddOutline,
|
|
338
|
-
AppstoreFill,
|
|
339
|
-
AppleOutline,
|
|
340
|
-
AppstoreOutline,
|
|
341
|
-
ArrowDownOutline,
|
|
342
|
-
AppleFill,
|
|
343
|
-
ArrowsAltOutline,
|
|
344
|
-
AppstoreTwoTone,
|
|
345
|
-
ArrowUpOutline,
|
|
346
|
-
AreaChartOutline,
|
|
347
|
-
ArrowLeftOutline,
|
|
348
|
-
AudioFill,
|
|
349
|
-
ArrowRightOutline,
|
|
350
|
-
AudioTwoTone,
|
|
351
|
-
AuditOutline,
|
|
352
|
-
AudioMutedOutline,
|
|
353
|
-
BackwardFill,
|
|
354
|
-
AudioOutline,
|
|
355
|
-
BackwardOutline,
|
|
356
|
-
BankFill,
|
|
357
|
-
BarcodeOutline,
|
|
358
|
-
BellFill,
|
|
359
|
-
BankTwoTone,
|
|
360
|
-
BarsOutline,
|
|
361
|
-
BankOutline,
|
|
362
|
-
BehanceCircleFill,
|
|
363
|
-
BehanceSquareFill,
|
|
364
|
-
BoldOutline,
|
|
365
|
-
BellOutline,
|
|
366
|
-
BehanceOutline,
|
|
367
|
-
BlockOutline,
|
|
368
|
-
BehanceSquareOutline,
|
|
369
|
-
BgColorsOutline,
|
|
370
|
-
BellTwoTone,
|
|
371
|
-
BarChartOutline,
|
|
372
|
-
BookTwoTone,
|
|
373
|
-
BookFill,
|
|
374
|
-
BorderOuterOutline,
|
|
375
|
-
BorderLeftOutline,
|
|
376
|
-
BorderBottomOutline,
|
|
377
|
-
BorderHorizontalOutline,
|
|
378
|
-
BorderTopOutline,
|
|
379
|
-
BorderOutline,
|
|
380
|
-
BorderInnerOutline,
|
|
381
|
-
BorderRightOutline,
|
|
382
|
-
BoxPlotOutline,
|
|
383
|
-
BoxPlotFill,
|
|
384
|
-
BoxPlotTwoTone,
|
|
385
|
-
BookOutline,
|
|
386
|
-
BorderlessTableOutline,
|
|
387
|
-
BorderVerticleOutline,
|
|
388
|
-
BuildTwoTone,
|
|
389
|
-
BuildOutline,
|
|
390
|
-
BugFill,
|
|
391
|
-
BugOutline,
|
|
392
|
-
BugTwoTone,
|
|
393
|
-
BulbFill,
|
|
394
|
-
BulbTwoTone,
|
|
395
|
-
BuildFill,
|
|
396
|
-
BulbOutline,
|
|
397
|
-
CalculatorFill,
|
|
398
|
-
CalculatorTwoTone,
|
|
399
|
-
CalendarFill,
|
|
400
|
-
CalendarOutline,
|
|
401
|
-
CalculatorOutline,
|
|
402
|
-
CalendarTwoTone,
|
|
403
|
-
CameraOutline,
|
|
404
|
-
CameraFill,
|
|
405
|
-
CameraTwoTone,
|
|
406
|
-
CarTwoTone,
|
|
407
|
-
CaretDownOutline,
|
|
408
|
-
CarOutline,
|
|
409
|
-
CaretLeftFill,
|
|
410
|
-
CarFill,
|
|
411
|
-
CaretRightOutline,
|
|
412
|
-
CaretDownFill,
|
|
413
|
-
CaretUpOutline,
|
|
414
|
-
CaretRightFill,
|
|
415
|
-
CarryOutFill,
|
|
416
|
-
CarryOutOutline,
|
|
417
|
-
CaretLeftOutline,
|
|
418
|
-
CaretUpFill,
|
|
419
|
-
BranchesOutline,
|
|
420
|
-
CarryOutTwoTone,
|
|
421
|
-
CheckCircleFill,
|
|
422
|
-
CheckCircleOutline,
|
|
423
|
-
CheckSquareOutline,
|
|
424
|
-
CheckCircleTwoTone,
|
|
425
|
-
CiCircleTwoTone,
|
|
426
|
-
CheckOutline,
|
|
427
|
-
CheckSquareTwoTone,
|
|
428
|
-
CiOutline,
|
|
429
|
-
CheckSquareFill,
|
|
430
|
-
CiTwoTone,
|
|
431
|
-
ChromeOutline,
|
|
432
|
-
ClockCircleOutline,
|
|
433
|
-
CiCircleOutline,
|
|
434
|
-
ChromeFill,
|
|
435
|
-
ClearOutline,
|
|
436
|
-
CloseCircleTwoTone,
|
|
437
|
-
CiCircleFill,
|
|
438
|
-
CloseCircleOutline,
|
|
439
|
-
ClockCircleFill,
|
|
440
|
-
CloseCircleFill,
|
|
441
|
-
ClockCircleTwoTone,
|
|
442
|
-
CloseOutline,
|
|
443
|
-
CloseSquareOutline,
|
|
444
|
-
CloseSquareFill,
|
|
445
|
-
CloudFill,
|
|
446
|
-
CloseSquareTwoTone,
|
|
447
|
-
CloudDownloadOutline,
|
|
448
|
-
CloudTwoTone,
|
|
449
|
-
CloudServerOutline,
|
|
450
|
-
CloudUploadOutline,
|
|
451
|
-
CloudSyncOutline,
|
|
452
|
-
ClusterOutline,
|
|
453
|
-
CodeSandboxCircleFill,
|
|
454
|
-
CodeFill,
|
|
455
|
-
CodepenCircleOutline,
|
|
456
|
-
CloudOutline,
|
|
457
|
-
CodeSandboxOutline,
|
|
458
|
-
CodeOutline,
|
|
459
|
-
CodeSandboxSquareFill,
|
|
460
|
-
CodeTwoTone,
|
|
461
|
-
CodepenSquareFill,
|
|
462
|
-
CodepenOutline,
|
|
463
|
-
CoffeeOutline,
|
|
464
|
-
ColumnWidthOutline,
|
|
465
|
-
CompressOutline,
|
|
466
|
-
ColumnHeightOutline,
|
|
467
|
-
CodepenCircleFill,
|
|
468
|
-
CompassTwoTone,
|
|
469
|
-
CommentOutline,
|
|
470
|
-
ContainerFill,
|
|
471
|
-
CompassOutline,
|
|
472
|
-
ConsoleSqlOutline,
|
|
473
|
-
ContactsOutline,
|
|
474
|
-
ContainerTwoTone,
|
|
475
|
-
ContactsFill,
|
|
476
|
-
ContactsTwoTone,
|
|
477
|
-
ContainerOutline,
|
|
478
|
-
ControlFill,
|
|
479
|
-
CopyFill,
|
|
480
|
-
CopyOutline,
|
|
481
|
-
CompassFill,
|
|
482
|
-
CopyTwoTone,
|
|
483
|
-
CopyrightOutline,
|
|
484
|
-
CopyrightCircleOutline,
|
|
485
|
-
ControlTwoTone,
|
|
486
|
-
ControlOutline,
|
|
487
|
-
CreditCardFill,
|
|
488
|
-
CopyrightTwoTone,
|
|
489
|
-
CrownFill,
|
|
490
|
-
CopyrightCircleFill,
|
|
491
|
-
CrownOutline,
|
|
492
|
-
CustomerServiceTwoTone,
|
|
493
|
-
CreditCardOutline,
|
|
494
|
-
CustomerServiceOutline,
|
|
495
|
-
DashboardTwoTone,
|
|
496
|
-
CrownTwoTone,
|
|
497
|
-
CreditCardTwoTone,
|
|
498
|
-
CustomerServiceFill,
|
|
499
|
-
DashboardFill,
|
|
500
|
-
DashOutline,
|
|
501
|
-
DatabaseOutline,
|
|
502
|
-
DatabaseTwoTone,
|
|
503
|
-
DatabaseFill,
|
|
504
|
-
DashboardOutline,
|
|
505
|
-
DeleteTwoTone,
|
|
506
|
-
DeleteRowOutline,
|
|
507
|
-
DeleteColumnOutline,
|
|
508
|
-
DeliveredProcedureOutline,
|
|
509
|
-
DeleteOutline,
|
|
510
|
-
CopyrightCircleTwoTone,
|
|
511
|
-
DesktopOutline,
|
|
512
|
-
DeleteFill,
|
|
513
|
-
DiffOutline,
|
|
514
|
-
DiffFill,
|
|
515
|
-
DeploymentUnitOutline,
|
|
516
|
-
DiffTwoTone,
|
|
517
|
-
DingtalkOutline,
|
|
518
|
-
DollarCircleFill,
|
|
519
|
-
DislikeFill,
|
|
520
|
-
DingtalkSquareFill,
|
|
521
|
-
DisconnectOutline,
|
|
522
|
-
DollarCircleTwoTone,
|
|
523
|
-
DollarOutline,
|
|
524
|
-
DingtalkCircleFill,
|
|
525
|
-
DislikeTwoTone,
|
|
526
|
-
DollarTwoTone,
|
|
527
|
-
DownCircleFill,
|
|
528
|
-
DislikeOutline,
|
|
529
|
-
DollarCircleOutline,
|
|
530
|
-
DoubleLeftOutline,
|
|
531
|
-
DownSquareFill,
|
|
532
|
-
DownOutline,
|
|
533
|
-
DownSquareOutline,
|
|
534
|
-
DownSquareTwoTone,
|
|
535
|
-
DownCircleTwoTone,
|
|
536
|
-
DoubleRightOutline,
|
|
537
|
-
DownCircleOutline,
|
|
538
|
-
DownloadOutline,
|
|
539
|
-
DotChartOutline,
|
|
540
|
-
DribbbleCircleFill,
|
|
541
|
-
DribbbleOutline,
|
|
542
|
-
DribbbleSquareOutline,
|
|
543
|
-
DropboxCircleFill,
|
|
544
|
-
DingdingOutline,
|
|
545
|
-
EditOutline,
|
|
546
|
-
DribbbleSquareFill,
|
|
547
|
-
DropboxSquareFill,
|
|
548
|
-
EllipsisOutline,
|
|
549
|
-
EnvironmentFill,
|
|
550
|
-
EditFill,
|
|
551
|
-
EnterOutline,
|
|
552
|
-
EuroCircleFill,
|
|
553
|
-
EuroTwoTone,
|
|
554
|
-
EuroCircleOutline,
|
|
555
|
-
EditTwoTone,
|
|
556
|
-
EuroOutline,
|
|
557
|
-
EnvironmentTwoTone,
|
|
558
|
-
ExclamationCircleFill,
|
|
559
|
-
ExpandAltOutline,
|
|
560
|
-
EuroCircleTwoTone,
|
|
561
|
-
ExclamationCircleTwoTone,
|
|
562
|
-
EnvironmentOutline,
|
|
563
|
-
ExperimentOutline,
|
|
564
|
-
ExperimentFill,
|
|
565
|
-
ExpandOutline,
|
|
566
|
-
ExceptionOutline,
|
|
567
|
-
ExportOutline,
|
|
568
|
-
ExperimentTwoTone,
|
|
569
|
-
ExclamationCircleOutline,
|
|
570
|
-
ExclamationOutline,
|
|
571
|
-
EyeFill,
|
|
572
|
-
EyeInvisibleFill,
|
|
573
|
-
EyeInvisibleTwoTone,
|
|
574
|
-
DropboxOutline,
|
|
575
|
-
DragOutline,
|
|
576
|
-
FacebookOutline,
|
|
577
|
-
FacebookFill,
|
|
578
|
-
EyeTwoTone,
|
|
579
|
-
EyeOutline,
|
|
580
|
-
FastForwardFill,
|
|
581
|
-
FieldBinaryOutline,
|
|
582
|
-
FieldNumberOutline,
|
|
583
|
-
FastBackwardOutline,
|
|
584
|
-
FileAddFill,
|
|
585
|
-
FastBackwardFill,
|
|
586
|
-
FileExcelFill,
|
|
587
|
-
FastForwardOutline,
|
|
588
|
-
FieldStringOutline,
|
|
589
|
-
FileDoneOutline,
|
|
590
|
-
FileAddTwoTone,
|
|
591
|
-
FileExcelTwoTone,
|
|
592
|
-
FileExclamationFill,
|
|
593
|
-
FileAddOutline,
|
|
594
|
-
FileExclamationOutline,
|
|
595
|
-
FieldTimeOutline,
|
|
596
|
-
FileImageTwoTone,
|
|
597
|
-
FileExcelOutline,
|
|
598
|
-
FileExclamationTwoTone,
|
|
599
|
-
FileImageFill,
|
|
600
|
-
FileGifOutline,
|
|
601
|
-
FileFill,
|
|
602
|
-
FileMarkdownTwoTone,
|
|
603
|
-
FileMarkdownOutline,
|
|
604
|
-
FallOutline,
|
|
605
|
-
FileImageOutline,
|
|
606
|
-
EyeInvisibleOutline,
|
|
607
|
-
FilePdfOutline,
|
|
608
|
-
FileSearchOutline,
|
|
609
|
-
FilePptTwoTone,
|
|
610
|
-
FilePdfTwoTone,
|
|
611
|
-
FileJpgOutline,
|
|
612
|
-
FileTextFill,
|
|
613
|
-
FilePptOutline,
|
|
614
|
-
FileSyncOutline,
|
|
615
|
-
FilePptFill,
|
|
616
|
-
FileUnknownOutline,
|
|
617
|
-
FileProtectOutline,
|
|
618
|
-
FileTextTwoTone,
|
|
619
|
-
FileWordFill,
|
|
620
|
-
FileUnknownTwoTone,
|
|
621
|
-
FileWordTwoTone,
|
|
622
|
-
FileUnknownFill,
|
|
623
|
-
FileTextOutline,
|
|
624
|
-
FileZipFill,
|
|
625
|
-
FilterTwoTone,
|
|
626
|
-
FilterFill,
|
|
627
|
-
FileWordOutline,
|
|
628
|
-
FireOutline,
|
|
629
|
-
FireTwoTone,
|
|
630
|
-
FileZipOutline,
|
|
631
|
-
FilterOutline,
|
|
632
|
-
FlagTwoTone,
|
|
633
|
-
FileTwoTone,
|
|
634
|
-
FilePdfFill,
|
|
635
|
-
FileOutline,
|
|
636
|
-
FileMarkdownFill,
|
|
637
|
-
FileZipTwoTone,
|
|
638
|
-
FlagOutline,
|
|
639
|
-
FolderAddTwoTone,
|
|
640
|
-
FolderOpenFill,
|
|
641
|
-
FireFill,
|
|
642
|
-
FlagFill,
|
|
643
|
-
FolderOutline,
|
|
644
|
-
FolderViewOutline,
|
|
645
|
-
FolderTwoTone,
|
|
646
|
-
FontColorsOutline,
|
|
647
|
-
FolderOpenTwoTone,
|
|
648
|
-
FolderFill,
|
|
649
|
-
ForwardOutline,
|
|
650
|
-
FolderOpenOutline,
|
|
651
|
-
ForkOutline,
|
|
652
|
-
ForwardFill,
|
|
653
|
-
FormatPainterOutline,
|
|
654
|
-
FormatPainterFill,
|
|
655
|
-
FormOutline,
|
|
656
|
-
FrownFill,
|
|
657
|
-
FrownTwoTone,
|
|
658
|
-
FullscreenOutline,
|
|
659
|
-
FontSizeOutline,
|
|
660
|
-
FundFill,
|
|
661
|
-
FunctionOutline,
|
|
662
|
-
FundViewOutline,
|
|
663
|
-
FullscreenExitOutline,
|
|
664
|
-
GifOutline,
|
|
665
|
-
FundProjectionScreenOutline,
|
|
666
|
-
FundTwoTone,
|
|
667
|
-
FolderAddFill,
|
|
668
|
-
FunnelPlotTwoTone,
|
|
669
|
-
GiftOutline,
|
|
670
|
-
FunnelPlotFill,
|
|
671
|
-
FundOutline,
|
|
672
|
-
FrownOutline,
|
|
673
|
-
GithubOutline,
|
|
674
|
-
GoldFill,
|
|
675
|
-
FolderAddOutline,
|
|
676
|
-
GitlabFill,
|
|
677
|
-
GiftFill,
|
|
678
|
-
GitlabOutline,
|
|
679
|
-
GoldTwoTone,
|
|
680
|
-
GoogleCircleFill,
|
|
681
|
-
GiftTwoTone,
|
|
682
|
-
GooglePlusCircleFill,
|
|
683
|
-
GoldOutline,
|
|
684
|
-
GithubFill,
|
|
685
|
-
GoogleOutline,
|
|
686
|
-
GooglePlusOutline,
|
|
687
|
-
GoogleSquareFill,
|
|
688
|
-
GoldenFill,
|
|
689
|
-
HddTwoTone,
|
|
690
|
-
GooglePlusSquareFill,
|
|
691
|
-
GlobalOutline,
|
|
692
|
-
HeartOutline,
|
|
693
|
-
HeartTwoTone,
|
|
694
|
-
GroupOutline,
|
|
695
|
-
HeartFill,
|
|
696
|
-
HeatMapOutline,
|
|
697
|
-
GatewayOutline,
|
|
698
|
-
FunnelPlotOutline,
|
|
699
|
-
HddFill,
|
|
700
|
-
HomeFill,
|
|
701
|
-
HighlightFill,
|
|
702
|
-
HomeOutline,
|
|
703
|
-
HistoryOutline,
|
|
704
|
-
HighlightOutline,
|
|
705
|
-
HddOutline,
|
|
706
|
-
HourglassFill,
|
|
707
|
-
HomeTwoTone,
|
|
708
|
-
HourglassTwoTone,
|
|
709
|
-
Html5Outline,
|
|
710
|
-
Html5Fill,
|
|
711
|
-
IdcardFill,
|
|
712
|
-
Html5TwoTone,
|
|
713
|
-
HourglassOutline,
|
|
714
|
-
IdcardTwoTone,
|
|
715
|
-
IdcardOutline,
|
|
716
|
-
IeOutline,
|
|
717
|
-
IeCircleFill,
|
|
718
|
-
IeSquareFill,
|
|
719
|
-
InboxOutline,
|
|
720
|
-
ImportOutline,
|
|
721
|
-
InfoCircleOutline,
|
|
722
|
-
InfoCircleTwoTone,
|
|
723
|
-
InsertRowAboveOutline,
|
|
724
|
-
InsertRowRightOutline,
|
|
725
|
-
InfoCircleFill,
|
|
726
|
-
InfoOutline,
|
|
727
|
-
InsertRowBelowOutline,
|
|
728
|
-
HighlightTwoTone,
|
|
729
|
-
InsuranceFill,
|
|
730
|
-
InstagramFill,
|
|
731
|
-
InteractionFill,
|
|
732
|
-
InsertRowLeftOutline,
|
|
733
|
-
InstagramOutline,
|
|
734
|
-
InteractionOutline,
|
|
735
|
-
ItalicOutline,
|
|
736
|
-
InteractionTwoTone,
|
|
737
|
-
LayoutOutline,
|
|
738
|
-
IssuesCloseOutline,
|
|
739
|
-
LayoutFill,
|
|
740
|
-
LaptopOutline,
|
|
741
|
-
LeftCircleFill,
|
|
742
|
-
LayoutTwoTone,
|
|
743
|
-
KeyOutline,
|
|
744
|
-
LeftOutline,
|
|
745
|
-
LeftCircleOutline,
|
|
746
|
-
LeftSquareOutline,
|
|
747
|
-
LeftSquareFill,
|
|
748
|
-
LeftCircleTwoTone,
|
|
749
|
-
LikeFill,
|
|
750
|
-
LeftSquareTwoTone,
|
|
751
|
-
LineOutline,
|
|
752
|
-
LikeTwoTone,
|
|
753
|
-
LinkedinOutline,
|
|
754
|
-
LineChartOutline,
|
|
755
|
-
LineHeightOutline,
|
|
756
|
-
LinkedinFill,
|
|
757
|
-
LinkOutline,
|
|
758
|
-
LikeOutline,
|
|
759
|
-
InsuranceOutline,
|
|
760
|
-
Loading3QuartersOutline,
|
|
761
|
-
LockFill,
|
|
762
|
-
InsuranceTwoTone,
|
|
763
|
-
MacCommandOutline,
|
|
764
|
-
LockTwoTone,
|
|
765
|
-
LoadingOutline,
|
|
766
|
-
MailOutline,
|
|
767
|
-
LoginOutline,
|
|
768
|
-
MedicineBoxOutline,
|
|
769
|
-
MailFill,
|
|
770
|
-
MailTwoTone,
|
|
771
|
-
MacCommandFill,
|
|
772
|
-
ManOutline,
|
|
773
|
-
MedicineBoxFill,
|
|
774
|
-
MedicineBoxTwoTone,
|
|
775
|
-
MediumCircleFill,
|
|
776
|
-
MediumOutline,
|
|
777
|
-
MehFill,
|
|
778
|
-
MediumWorkmarkOutline,
|
|
779
|
-
MenuFoldOutline,
|
|
780
|
-
MehOutline,
|
|
781
|
-
MediumSquareFill,
|
|
782
|
-
MessageTwoTone,
|
|
783
|
-
MehTwoTone,
|
|
784
|
-
MergeCellsOutline,
|
|
785
|
-
MinusCircleFill,
|
|
786
|
-
MenuOutline,
|
|
787
|
-
MenuUnfoldOutline,
|
|
788
|
-
MessageFill,
|
|
789
|
-
MinusCircleTwoTone,
|
|
790
|
-
LockOutline,
|
|
791
|
-
MinusOutline,
|
|
792
|
-
MinusCircleOutline,
|
|
793
|
-
LogoutOutline,
|
|
794
|
-
MessageOutline,
|
|
795
|
-
MoneyCollectFill,
|
|
796
|
-
MinusSquareOutline,
|
|
797
|
-
MinusSquareTwoTone,
|
|
798
|
-
MobileOutline,
|
|
799
|
-
MobileTwoTone,
|
|
800
|
-
MoneyCollectOutline,
|
|
801
|
-
MoreOutline,
|
|
802
|
-
NotificationFill,
|
|
803
|
-
NotificationOutline,
|
|
804
|
-
MoneyCollectTwoTone,
|
|
805
|
-
NodeIndexOutline,
|
|
806
|
-
NodeExpandOutline,
|
|
807
|
-
MonitorOutline,
|
|
808
|
-
OrderedListOutline,
|
|
809
|
-
NodeCollapseOutline,
|
|
810
|
-
NumberOutline,
|
|
811
|
-
PaperClipOutline,
|
|
812
|
-
NotificationTwoTone,
|
|
813
|
-
PauseCircleFill,
|
|
814
|
-
PartitionOutline,
|
|
815
|
-
PauseOutline,
|
|
816
|
-
OneToOneOutline,
|
|
817
|
-
PayCircleOutline,
|
|
818
|
-
PayCircleFill,
|
|
819
|
-
MinusSquareFill,
|
|
820
|
-
PauseCircleOutline,
|
|
821
|
-
PauseCircleTwoTone,
|
|
822
|
-
PicCenterOutline,
|
|
823
|
-
PicRightOutline,
|
|
824
|
-
PercentageOutline,
|
|
825
|
-
MobileFill,
|
|
826
|
-
PictureOutline,
|
|
827
|
-
PictureFill,
|
|
828
|
-
PhoneTwoTone,
|
|
829
|
-
PhoneFill,
|
|
830
|
-
PieChartFill,
|
|
831
|
-
PictureTwoTone,
|
|
832
|
-
PieChartOutline,
|
|
833
|
-
PlaySquareFill,
|
|
834
|
-
PlayCircleTwoTone,
|
|
835
|
-
PlayCircleFill,
|
|
836
|
-
PlusCircleFill,
|
|
837
|
-
PlaySquareTwoTone,
|
|
838
|
-
PlaySquareOutline,
|
|
839
|
-
PlayCircleOutline,
|
|
840
|
-
PieChartTwoTone,
|
|
841
|
-
PlusCircleOutline,
|
|
842
|
-
PlusSquareFill,
|
|
843
|
-
PoundCircleFill,
|
|
844
|
-
PlusSquareOutline,
|
|
845
|
-
PlusOutline,
|
|
846
|
-
PoundOutline,
|
|
847
|
-
PoundCircleOutline,
|
|
848
|
-
PlusSquareTwoTone,
|
|
849
|
-
PlusCircleTwoTone,
|
|
850
|
-
PoweroffOutline,
|
|
851
|
-
PoundCircleTwoTone,
|
|
852
|
-
PhoneOutline,
|
|
853
|
-
PrinterFill,
|
|
854
|
-
PicLeftOutline,
|
|
855
|
-
ProjectTwoTone,
|
|
856
|
-
PrinterOutline,
|
|
857
|
-
ProjectFill,
|
|
858
|
-
ProfileOutline,
|
|
859
|
-
ProfileTwoTone,
|
|
860
|
-
ProjectOutline,
|
|
861
|
-
PropertySafetyFill,
|
|
862
|
-
PullRequestOutline,
|
|
863
|
-
PropertySafetyOutline,
|
|
864
|
-
PushpinOutline,
|
|
865
|
-
PushpinTwoTone,
|
|
866
|
-
PropertySafetyTwoTone,
|
|
867
|
-
PushpinFill,
|
|
868
|
-
QqOutline,
|
|
869
|
-
QqCircleFill,
|
|
870
|
-
QrcodeOutline,
|
|
871
|
-
QqSquareFill,
|
|
872
|
-
QuestionCircleTwoTone,
|
|
873
|
-
QuestionCircleFill,
|
|
874
|
-
RadarChartOutline,
|
|
875
|
-
RadiusUprightOutline,
|
|
876
|
-
QuestionCircleOutline,
|
|
877
|
-
QuestionOutline,
|
|
878
|
-
ReadFill,
|
|
879
|
-
RadiusUpleftOutline,
|
|
880
|
-
RadiusBottomleftOutline,
|
|
881
|
-
RadiusSettingOutline,
|
|
882
|
-
RadiusBottomrightOutline,
|
|
883
|
-
ProfileFill,
|
|
884
|
-
PrinterTwoTone,
|
|
885
|
-
ReadOutline,
|
|
886
|
-
ReconciliationFill,
|
|
887
|
-
ReloadOutline,
|
|
888
|
-
ReconciliationOutline,
|
|
889
|
-
RedEnvelopeTwoTone,
|
|
890
|
-
RedditCircleFill,
|
|
891
|
-
RedoOutline,
|
|
892
|
-
RedEnvelopeFill,
|
|
893
|
-
RedditOutline,
|
|
894
|
-
RestTwoTone,
|
|
895
|
-
RightCircleOutline,
|
|
896
|
-
RestOutline,
|
|
897
|
-
RedditSquareFill,
|
|
898
|
-
RestFill,
|
|
899
|
-
RightCircleTwoTone,
|
|
900
|
-
RightOutline,
|
|
901
|
-
RightSquareFill,
|
|
902
|
-
RightCircleFill,
|
|
903
|
-
RightSquareOutline,
|
|
904
|
-
RetweetOutline,
|
|
905
|
-
RiseOutline,
|
|
906
|
-
RightSquareTwoTone,
|
|
907
|
-
RobotFill,
|
|
908
|
-
RocketOutline,
|
|
909
|
-
RobotOutline,
|
|
910
|
-
RocketTwoTone,
|
|
911
|
-
RocketFill,
|
|
912
|
-
RedEnvelopeOutline,
|
|
913
|
-
RollbackOutline,
|
|
914
|
-
RotateRightOutline,
|
|
915
|
-
RotateLeftOutline,
|
|
916
|
-
ReconciliationTwoTone,
|
|
917
|
-
SafetyCertificateTwoTone,
|
|
918
|
-
SaveOutline,
|
|
919
|
-
SafetyOutline,
|
|
920
|
-
SaveFill,
|
|
921
|
-
SaveTwoTone,
|
|
922
|
-
ScheduleFill,
|
|
923
|
-
SafetyCertificateOutline,
|
|
924
|
-
ScanOutline,
|
|
925
|
-
ScheduleTwoTone,
|
|
926
|
-
SearchOutline,
|
|
927
|
-
ScheduleOutline,
|
|
928
|
-
SecurityScanTwoTone,
|
|
929
|
-
SecurityScanOutline,
|
|
930
|
-
ScissorOutline,
|
|
931
|
-
SelectOutline,
|
|
932
|
-
SecurityScanFill,
|
|
933
|
-
SendOutline,
|
|
934
|
-
SettingOutline,
|
|
935
|
-
SettingTwoTone,
|
|
936
|
-
SettingFill,
|
|
937
|
-
ShareAltOutline,
|
|
938
|
-
ShopOutline,
|
|
939
|
-
ShopFill,
|
|
940
|
-
ShopTwoTone,
|
|
941
|
-
ShrinkOutline,
|
|
942
|
-
ShakeOutline,
|
|
943
|
-
ShoppingOutline,
|
|
944
|
-
ShoppingCartOutline,
|
|
945
|
-
ShoppingFill,
|
|
946
|
-
SisternodeOutline,
|
|
947
|
-
ShoppingTwoTone,
|
|
948
|
-
SafetyCertificateFill,
|
|
949
|
-
SkinOutline,
|
|
950
|
-
SignalFill,
|
|
951
|
-
SketchOutline,
|
|
952
|
-
SkinTwoTone,
|
|
953
|
-
SketchSquareFill,
|
|
954
|
-
SkypeFill,
|
|
955
|
-
SkinFill,
|
|
956
|
-
SlackCircleFill,
|
|
957
|
-
SlackSquareFill,
|
|
958
|
-
SlidersTwoTone,
|
|
959
|
-
SkypeOutline,
|
|
960
|
-
SlidersFill,
|
|
961
|
-
SlackSquareOutline,
|
|
962
|
-
SmallDashOutline,
|
|
963
|
-
SmileTwoTone,
|
|
964
|
-
SlidersOutline,
|
|
965
|
-
SnippetsFill,
|
|
966
|
-
SnippetsOutline,
|
|
967
|
-
SmileOutline,
|
|
968
|
-
SolutionOutline,
|
|
969
|
-
SlackOutline,
|
|
970
|
-
SnippetsTwoTone,
|
|
971
|
-
SoundTwoTone,
|
|
972
|
-
SortAscendingOutline,
|
|
973
|
-
SoundFill,
|
|
974
|
-
SortDescendingOutline,
|
|
975
|
-
SmileFill,
|
|
976
|
-
SoundOutline,
|
|
977
|
-
SplitCellsOutline,
|
|
978
|
-
SketchCircleFill,
|
|
979
|
-
StarOutline,
|
|
980
|
-
StockOutline,
|
|
981
|
-
StarTwoTone,
|
|
982
|
-
StepForwardFill,
|
|
983
|
-
StarFill,
|
|
984
|
-
StepBackwardFill,
|
|
985
|
-
StepForwardOutline,
|
|
986
|
-
StopFill,
|
|
987
|
-
SubnodeOutline,
|
|
988
|
-
SwapLeftOutline,
|
|
989
|
-
StopOutline,
|
|
990
|
-
StopTwoTone,
|
|
991
|
-
SwapRightOutline,
|
|
992
|
-
SwapOutline,
|
|
993
|
-
SwitcherTwoTone,
|
|
994
|
-
SwitcherOutline,
|
|
995
|
-
SyncOutline,
|
|
996
|
-
StrikethroughOutline,
|
|
997
|
-
SwitcherFill,
|
|
998
|
-
TagOutline,
|
|
999
|
-
TabletTwoTone,
|
|
1000
|
-
TabletOutline,
|
|
1001
|
-
TabletFill,
|
|
1002
|
-
TableOutline,
|
|
1003
|
-
TagsFill,
|
|
1004
|
-
TagFill,
|
|
1005
|
-
TagsTwoTone,
|
|
1006
|
-
TaobaoCircleOutline,
|
|
1007
|
-
StepBackwardOutline,
|
|
1008
|
-
TagsOutline,
|
|
1009
|
-
TagTwoTone,
|
|
1010
|
-
TaobaoOutline,
|
|
1011
|
-
ThunderboltOutline,
|
|
1012
|
-
TaobaoSquareFill,
|
|
1013
|
-
TeamOutline,
|
|
1014
|
-
TaobaoCircleFill,
|
|
1015
|
-
ThunderboltTwoTone,
|
|
1016
|
-
ToolFill,
|
|
1017
|
-
ThunderboltFill,
|
|
1018
|
-
ToTopOutline,
|
|
1019
|
-
ToolOutline,
|
|
1020
|
-
ToolTwoTone,
|
|
1021
|
-
TrademarkCircleFill,
|
|
1022
|
-
TrophyFill,
|
|
1023
|
-
TrademarkCircleTwoTone,
|
|
1024
|
-
TransactionOutline,
|
|
1025
|
-
TrademarkCircleOutline,
|
|
1026
|
-
TranslationOutline,
|
|
1027
|
-
TwitterCircleFill,
|
|
1028
|
-
TrophyOutline,
|
|
1029
|
-
TrademarkOutline,
|
|
1030
|
-
TrophyTwoTone,
|
|
1031
|
-
TwitterSquareFill,
|
|
1032
|
-
UnlockFill,
|
|
1033
|
-
TwitterOutline,
|
|
1034
|
-
UnderlineOutline,
|
|
1035
|
-
UndoOutline,
|
|
1036
|
-
UpCircleFill,
|
|
1037
|
-
UngroupOutline,
|
|
1038
|
-
UnlockTwoTone,
|
|
1039
|
-
UnlockOutline,
|
|
1040
|
-
UpOutline,
|
|
1041
|
-
UsbFill,
|
|
1042
|
-
UpCircleOutline,
|
|
1043
|
-
UnorderedListOutline,
|
|
1044
|
-
UpCircleTwoTone,
|
|
1045
|
-
UpSquareFill,
|
|
1046
|
-
UpSquareOutline,
|
|
1047
|
-
UserAddOutline,
|
|
1048
|
-
UsbTwoTone,
|
|
1049
|
-
UsergroupDeleteOutline,
|
|
1050
|
-
UpSquareTwoTone,
|
|
1051
|
-
UserOutline,
|
|
1052
|
-
UsbOutline,
|
|
1053
|
-
UserDeleteOutline,
|
|
1054
|
-
UserSwitchOutline,
|
|
1055
|
-
VerticalLeftOutline,
|
|
1056
|
-
VerticalAlignBottomOutline,
|
|
1057
|
-
VerifiedOutline,
|
|
1058
|
-
UsergroupAddOutline,
|
|
1059
|
-
UploadOutline,
|
|
1060
|
-
VerticalAlignMiddleOutline,
|
|
1061
|
-
VerticalAlignTopOutline,
|
|
1062
|
-
VerticalRightOutline,
|
|
1063
|
-
VideoCameraOutline,
|
|
1064
|
-
VideoCameraAddOutline,
|
|
1065
|
-
VideoCameraTwoTone,
|
|
1066
|
-
VideoCameraFill,
|
|
1067
|
-
WalletOutline,
|
|
1068
|
-
WalletFill,
|
|
1069
|
-
WarningFill,
|
|
1070
|
-
WarningOutline,
|
|
1071
|
-
WechatOutline,
|
|
1072
|
-
WalletTwoTone,
|
|
1073
|
-
WeiboCircleFill,
|
|
1074
|
-
WarningTwoTone,
|
|
1075
|
-
WeiboSquareFill,
|
|
1076
|
-
WeiboOutline,
|
|
1077
|
-
WeiboSquareOutline,
|
|
1078
|
-
WeiboCircleOutline,
|
|
1079
|
-
WechatFill,
|
|
1080
|
-
WhatsAppOutline,
|
|
1081
|
-
WifiOutline,
|
|
1082
|
-
WomanOutline,
|
|
1083
|
-
YoutubeFill,
|
|
1084
|
-
YahooOutline,
|
|
1085
|
-
WindowsFill,
|
|
1086
|
-
WindowsOutline,
|
|
1087
|
-
YoutubeOutline,
|
|
1088
|
-
YuqueOutline,
|
|
1089
|
-
ZhihuCircleFill,
|
|
1090
|
-
YuqueFill,
|
|
1091
|
-
ZhihuOutline,
|
|
1092
|
-
ZhihuSquareFill,
|
|
1093
|
-
ZoomInOutline,
|
|
1094
|
-
ZoomOutOutline,
|
|
1095
|
-
YahooFill
|
|
1096
|
-
];
|
|
1097
|
-
|
|
1098
|
-
/**
|
|
1099
|
-
* Generated bundle index. Do not edit.
|
|
1100
|
-
*/
|
|
1101
|
-
|
|
1102
|
-
export { ICONS, YZ_SHARED_YELON_MODULES, YZ_SHARED_ZORRO_MODULES, YzSharedModule };
|
|
1103
|
-
//# sourceMappingURL=shared.mjs.map
|