flame-plus 0.1.6 → 0.1.9
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/package.json +3 -3
- package/packages/components/base/flmButton/flmButton.vue +29 -0
- package/packages/components/base/flmCascader/flmCascader.vue +39 -0
- package/packages/components/base/flmCheckbox/flmCheckbox.vue +34 -0
- package/packages/components/base/flmCheckbox/flmCheckboxGroup.vue +71 -0
- package/packages/components/base/flmColorPicker/flmColorPicker.vue +34 -0
- package/packages/components/base/flmDatePicker/flmDatePicker.vue +47 -0
- package/packages/components/base/flmDialog/flmDialog.vue +39 -0
- package/packages/components/base/flmInput/flmInput.vue +38 -0
- package/packages/components/base/flmInputNumber/flmInputNumber.vue +36 -0
- package/packages/components/base/flmPagination/flmPagination.vue +37 -0
- package/packages/components/base/flmRadio/flmRadio.vue +64 -0
- package/packages/components/base/flmRate/flmRate.vue +34 -0
- package/packages/components/base/flmRead/flmRead.vue +18 -0
- package/packages/components/base/flmSelect/flmSelect.vue +74 -0
- package/packages/components/base/flmSlider/flmSlider.vue +35 -0
- package/packages/components/base/flmSwitch/flmSwitch.vue +29 -0
- package/packages/components/base/flmTimePicker/flmTimePicker.vue +37 -0
- package/packages/components/base/flmTimeSelect/flmTimeSelect.vue +36 -0
- package/packages/components/base/flmTransfer/flmTransfer.vue +42 -0
- package/packages/components/complex/flmForm/flmForm.vue +223 -0
- package/packages/components/complex/flmSearch/flmSearch.vue +148 -0
- package/packages/components/complex/flmTable/flmTable.vue +90 -0
- package/packages/components/complex/flmToolbar/flmToolbar.vue +55 -0
- package/{dist/components/index.d.ts → packages/components/index.ts} +29 -29
- package/packages/components/page/flmReportPage/flmReportPage.vue +690 -0
- package/packages/index.ts +8 -0
- package/packages/model/flmComponentConfig/base/flmButton.ts +50 -0
- package/packages/model/flmComponentConfig/base/flmCascader.ts +77 -0
- package/packages/model/flmComponentConfig/base/flmCheckbox.ts +51 -0
- package/packages/model/flmComponentConfig/base/flmColorPicker.ts +30 -0
- package/packages/model/flmComponentConfig/base/flmDatePicker.ts +73 -0
- package/packages/model/flmComponentConfig/base/flmDialog.ts +49 -0
- package/packages/model/flmComponentConfig/base/flmInput.ts +57 -0
- package/packages/model/flmComponentConfig/base/flmInputNumber.ts +37 -0
- package/packages/model/flmComponentConfig/base/flmPagination.ts +38 -0
- package/packages/model/flmComponentConfig/base/flmRadio.ts +42 -0
- package/packages/model/flmComponentConfig/base/flmRate.ts +49 -0
- package/packages/model/flmComponentConfig/base/flmRead.ts +6 -0
- package/packages/model/flmComponentConfig/base/flmSelect.ts +104 -0
- package/packages/model/flmComponentConfig/base/flmSlider.ts +51 -0
- package/packages/model/flmComponentConfig/base/flmSwitch.ts +37 -0
- package/packages/model/flmComponentConfig/base/flmTimePicker.ts +61 -0
- package/packages/model/flmComponentConfig/base/flmTimeSelect.ts +44 -0
- package/packages/model/flmComponentConfig/index.ts +30 -0
- package/packages/model/flmComponentConfig/public.ts +293 -0
- package/packages/utils/filterConfig.ts +39 -0
- package/packages/utils/index.ts +2 -0
- package/{dist/utils/isValidKey.js → packages/utils/isValidKey.ts} +6 -4
- package/tsconfig.json +4 -5
- package/dist/components/index.js +0 -33
- package/dist/main.d.ts +0 -2
- package/dist/main.js +0 -19
- package/dist/model/flmComponentConfig/base/flmButton.d.ts +0 -32
- package/dist/model/flmComponentConfig/base/flmButton.js +0 -30
- package/dist/model/flmComponentConfig/base/flmCascader.d.ts +0 -55
- package/dist/model/flmComponentConfig/base/flmCascader.js +0 -29
- package/dist/model/flmComponentConfig/base/flmCheckbox.d.ts +0 -32
- package/dist/model/flmComponentConfig/base/flmCheckbox.js +0 -15
- package/dist/model/flmComponentConfig/base/flmColorPicker.d.ts +0 -22
- package/dist/model/flmComponentConfig/base/flmColorPicker.js +0 -15
- package/dist/model/flmComponentConfig/base/flmDatePicker.d.ts +0 -54
- package/dist/model/flmComponentConfig/base/flmDatePicker.js +0 -32
- package/dist/model/flmComponentConfig/base/flmDialog.d.ts +0 -31
- package/dist/model/flmComponentConfig/base/flmDialog.js +0 -18
- package/dist/model/flmComponentConfig/base/flmInput.d.ts +0 -43
- package/dist/model/flmComponentConfig/base/flmInput.js +0 -16
- package/dist/model/flmComponentConfig/base/flmInputNumber.d.ts +0 -25
- package/dist/model/flmComponentConfig/base/flmInputNumber.js +0 -12
- package/dist/model/flmComponentConfig/base/flmPagination.d.ts +0 -27
- package/dist/model/flmComponentConfig/base/flmPagination.js +0 -12
- package/dist/model/flmComponentConfig/base/flmRadio.d.ts +0 -25
- package/dist/model/flmComponentConfig/base/flmRadio.js +0 -15
- package/dist/model/flmComponentConfig/base/flmRate.d.ts +0 -27
- package/dist/model/flmComponentConfig/base/flmRate.js +0 -22
- package/dist/model/flmComponentConfig/base/flmRead.d.ts +0 -7
- package/dist/model/flmComponentConfig/base/flmRead.js +0 -2
- package/dist/model/flmComponentConfig/base/flmSelect.d.ts +0 -66
- package/dist/model/flmComponentConfig/base/flmSelect.js +0 -42
- package/dist/model/flmComponentConfig/base/flmSlider.d.ts +0 -32
- package/dist/model/flmComponentConfig/base/flmSlider.js +0 -19
- package/dist/model/flmComponentConfig/base/flmSwitch.d.ts +0 -24
- package/dist/model/flmComponentConfig/base/flmSwitch.js +0 -15
- package/dist/model/flmComponentConfig/base/flmTimePicker.d.ts +0 -41
- package/dist/model/flmComponentConfig/base/flmTimePicker.js +0 -24
- package/dist/model/flmComponentConfig/base/flmTimeSelect.d.ts +0 -27
- package/dist/model/flmComponentConfig/base/flmTimeSelect.js +0 -17
- package/dist/model/flmComponentConfig/base/flmTransfer.d.ts +0 -36
- package/dist/model/flmComponentConfig/base/flmTransfer.js +0 -21
- package/dist/model/flmComponentConfig/complex/flmForm.d.ts +0 -77
- package/dist/model/flmComponentConfig/complex/flmForm.js +0 -42
- package/dist/model/flmComponentConfig/complex/flmTable.d.ts +0 -83
- package/dist/model/flmComponentConfig/complex/flmTable.js +0 -29
- package/dist/model/flmComponentConfig/complex/flmToolbar.d.ts +0 -10
- package/dist/model/flmComponentConfig/complex/flmToolbar.js +0 -2
- package/dist/model/flmComponentConfig/index.d.ts +0 -28
- package/dist/model/flmComponentConfig/index.js +0 -28
- package/dist/model/flmComponentConfig/page/flmReportPage.d.ts +0 -15
- package/dist/model/flmComponentConfig/page/flmReportPage.js +0 -2
- package/dist/model/flmComponentConfig/public.d.ts +0 -291
- package/dist/model/flmComponentConfig/public.js +0 -295
- package/dist/router/index.d.ts +0 -3
- package/dist/router/index.js +0 -46
- package/dist/store/index.d.ts +0 -3
- package/dist/store/index.js +0 -8
- package/dist/utils/filterConfig.d.ts +0 -10
- package/dist/utils/filterConfig.js +0 -40
- package/dist/utils/index.d.ts +0 -3
- package/dist/utils/index.js +0 -3
- package/dist/utils/isValidKey.d.ts +0 -9
- package/dist/views/Layout/components/layoutHeader.d.ts +0 -19
- package/dist/views/Layout/components/layoutHeader.js +0 -2
- package/dist/views/MobileSetting/MobileSetting.d.ts +0 -20
- package/dist/views/MobileSetting/MobileSetting.js +0 -2
- package/dist/views/MonacoEditor/MonacoEditor.d.ts +0 -7
- package/dist/views/MonacoEditor/MonacoEditor.js +0 -2
- package/global.d.ts +0 -54
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
/** @公共属性 */
|
|
2
|
-
export * from './public';
|
|
3
|
-
/** @基础控件 */
|
|
4
|
-
export * from './base/flmButton'; // 按钮
|
|
5
|
-
export * from './base/flmCascader'; // 多选框
|
|
6
|
-
export * from './base/flmCheckbox'; // 多选框
|
|
7
|
-
export * from './base/flmColorPicker'; // 取色器
|
|
8
|
-
export * from './base/flmDatePicker'; // 日期选择器
|
|
9
|
-
export * from './base/flmInput'; // 输入框
|
|
10
|
-
export * from './base/flmInputNumber'; // 数字输入框
|
|
11
|
-
export * from './base/flmPagination'; // 分页器
|
|
12
|
-
export * from './base/flmRadio'; // 单选框
|
|
13
|
-
export * from './base/flmRate'; // 评分
|
|
14
|
-
export * from './base/flmRead'; // 查看
|
|
15
|
-
export * from './base/flmSelect'; // 选择器
|
|
16
|
-
export * from './base/flmSlider'; // 滑块
|
|
17
|
-
export * from './base/flmSwitch'; // 开关
|
|
18
|
-
export * from './base/flmTimePicker'; // 时间选择器
|
|
19
|
-
export * from './base/flmTimeSelect'; // 时间选择
|
|
20
|
-
export * from './base/flmTransfer'; // 穿梭框
|
|
21
|
-
export * from './base/flmDialog'; // 弹窗
|
|
22
|
-
/** @复合组件 */
|
|
23
|
-
export * from './complex/flmForm'; // 表单
|
|
24
|
-
export * from './complex/flmTable'; // 表格
|
|
25
|
-
export * from './complex/flmToolbar'; // 工具栏
|
|
26
|
-
/** @页面组件 */
|
|
27
|
-
export * from './page/flmReportPage'; // 报表页面
|
|
28
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { FormConfig, ToolbarConfig, TableConfig, PaginationConfig, DialogConfig } from '@/model/flmComponentConfig';
|
|
2
|
-
export interface ReportPageSetting {
|
|
3
|
-
'search': FormConfig;
|
|
4
|
-
'toolbar': ToolbarConfig;
|
|
5
|
-
'table': TableConfig;
|
|
6
|
-
'tableAction': ToolbarConfig;
|
|
7
|
-
'pagination': PaginationConfig;
|
|
8
|
-
'readDialog': DialogConfig;
|
|
9
|
-
'readForm': FormConfig;
|
|
10
|
-
'addDialog': DialogConfig;
|
|
11
|
-
'addForm': FormConfig;
|
|
12
|
-
'editDialog': DialogConfig;
|
|
13
|
-
'editForm': FormConfig;
|
|
14
|
-
}
|
|
15
|
-
//# sourceMappingURL=flmReportPage.d.ts.map
|
|
@@ -1,291 +0,0 @@
|
|
|
1
|
-
export declare enum ElementSize {
|
|
2
|
-
'large' = "large",
|
|
3
|
-
'default' = "default",
|
|
4
|
-
'small' = "small"
|
|
5
|
-
}
|
|
6
|
-
export declare enum ElementIcons {
|
|
7
|
-
'AddLocation' = "AddLocation",
|
|
8
|
-
'Aim' = "Aim",
|
|
9
|
-
'AlarmClock' = "AlarmClock",
|
|
10
|
-
'Apple' = "Apple",
|
|
11
|
-
'ArrowDownBold' = "ArrowDownBold",
|
|
12
|
-
'ArrowDown' = "ArrowDown",
|
|
13
|
-
'ArrowLeftBold' = "ArrowLeftBold",
|
|
14
|
-
'ArrowLeft' = "ArrowLeft",
|
|
15
|
-
'ArrowRightBold' = "ArrowRightBold",
|
|
16
|
-
'ArrowRight' = "ArrowRight",
|
|
17
|
-
'ArrowUpBold' = "ArrowUpBold",
|
|
18
|
-
'ArrowUp' = "ArrowUp",
|
|
19
|
-
'Avatar' = "Avatar",
|
|
20
|
-
'Back' = "Back",
|
|
21
|
-
'Baseball' = "Baseball",
|
|
22
|
-
'Basketball' = "Basketball",
|
|
23
|
-
'BellFilled' = "BellFilled",
|
|
24
|
-
'Bell' = "Bell",
|
|
25
|
-
'Bicycle' = "Bicycle",
|
|
26
|
-
'BottomLeft' = "BottomLeft",
|
|
27
|
-
'BottomRight' = "BottomRight",
|
|
28
|
-
'Bottom' = "Bottom",
|
|
29
|
-
'Bowl' = "Bowl",
|
|
30
|
-
'Box' = "Box",
|
|
31
|
-
'Briefcase' = "Briefcase",
|
|
32
|
-
'BrushFilled' = "BrushFilled",
|
|
33
|
-
'Brush' = "Brush",
|
|
34
|
-
'Burger' = "Burger",
|
|
35
|
-
'Calendar' = "Calendar",
|
|
36
|
-
'CameraFilled' = "CameraFilled",
|
|
37
|
-
'Camera' = "Camera",
|
|
38
|
-
'CaretBottom' = "CaretBottom",
|
|
39
|
-
'CaretLeft' = "CaretLeft",
|
|
40
|
-
'CaretRight' = "CaretRight",
|
|
41
|
-
'CaretTop' = "CaretTop",
|
|
42
|
-
'Cellphone' = "Cellphone",
|
|
43
|
-
'ChatDotRound' = "ChatDotRound",
|
|
44
|
-
'ChatDotSquare' = "ChatDotSquare",
|
|
45
|
-
'ChatLineRound' = "ChatLineRound",
|
|
46
|
-
'ChatLineSquare' = "ChatLineSquare",
|
|
47
|
-
'ChatRound' = "ChatRound",
|
|
48
|
-
'ChatSquare' = "ChatSquare",
|
|
49
|
-
'Check' = "Check",
|
|
50
|
-
'Checked' = "Checked",
|
|
51
|
-
'Cherry' = "Cherry",
|
|
52
|
-
'Chicken' = "Chicken",
|
|
53
|
-
'CircleCheckFilled' = "CircleCheckFilled",
|
|
54
|
-
'CircleCheck' = "CircleCheck",
|
|
55
|
-
'CircleCloseFilled' = "CircleCloseFilled",
|
|
56
|
-
'CircleClose' = "CircleClose",
|
|
57
|
-
'CirclePlusFilled' = "CirclePlusFilled",
|
|
58
|
-
'CirclePlus' = "CirclePlus",
|
|
59
|
-
'Clock' = "Clock",
|
|
60
|
-
'CloseBold' = "CloseBold",
|
|
61
|
-
'Close' = "Close",
|
|
62
|
-
'Cloudy' = "Cloudy",
|
|
63
|
-
'CoffeeCup' = "CoffeeCup",
|
|
64
|
-
'Coffee' = "Coffee",
|
|
65
|
-
'Coin' = "Coin",
|
|
66
|
-
'ColdDrink' = "ColdDrink",
|
|
67
|
-
'CollectionTag' = "CollectionTag",
|
|
68
|
-
'Collection' = "Collection",
|
|
69
|
-
'Comment' = "Comment",
|
|
70
|
-
'Compass' = "Compass",
|
|
71
|
-
'Connection' = "Connection",
|
|
72
|
-
'Coordinate' = "Coordinate",
|
|
73
|
-
'CopyDocument' = "CopyDocument",
|
|
74
|
-
'Cpu' = "Cpu",
|
|
75
|
-
'CreditCard' = "CreditCard",
|
|
76
|
-
'Crop' = "Crop",
|
|
77
|
-
'DArrowLeft' = "DArrowLeft",
|
|
78
|
-
'DArrowRight' = "DArrowRight",
|
|
79
|
-
'DCaret' = "DCaret",
|
|
80
|
-
'DataAnalysis' = "DataAnalysis",
|
|
81
|
-
'DataBoard' = "DataBoard",
|
|
82
|
-
'DataLine' = "DataLine",
|
|
83
|
-
'DeleteFilled' = "DeleteFilled",
|
|
84
|
-
'DeleteLocation' = "DeleteLocation",
|
|
85
|
-
'Delete' = "Delete",
|
|
86
|
-
'Dessert' = "Dessert",
|
|
87
|
-
'Discount' = "Discount",
|
|
88
|
-
'DishDot' = "DishDot",
|
|
89
|
-
'Dish' = "Dish",
|
|
90
|
-
'DocumentAdd' = "DocumentAdd",
|
|
91
|
-
'DocumentChecked' = "DocumentChecked",
|
|
92
|
-
'DocumentCopy' = "DocumentCopy",
|
|
93
|
-
'DocumentDelete' = "DocumentDelete",
|
|
94
|
-
'DocumentRemove' = "DocumentRemove",
|
|
95
|
-
'Document' = "Document",
|
|
96
|
-
'Download' = "Download",
|
|
97
|
-
'Drizzling' = "Drizzling",
|
|
98
|
-
'EditPen' = "EditPen",
|
|
99
|
-
'Edit' = "Edit",
|
|
100
|
-
'ElemeFilled' = "ElemeFilled",
|
|
101
|
-
'Eleme' = "Eleme",
|
|
102
|
-
'ElementPlus' = "ElementPlus",
|
|
103
|
-
'Expand' = "Expand",
|
|
104
|
-
'Failed' = "Failed",
|
|
105
|
-
'Female' = "Female",
|
|
106
|
-
'Files' = "Files",
|
|
107
|
-
'Film' = "Film",
|
|
108
|
-
'Filter' = "Filter",
|
|
109
|
-
'Finished' = "Finished",
|
|
110
|
-
'FirstAidKit' = "FirstAidKit",
|
|
111
|
-
'Flag' = "Flag",
|
|
112
|
-
'Fold' = "Fold",
|
|
113
|
-
'FolderAdd' = "FolderAdd",
|
|
114
|
-
'FolderChecked' = "FolderChecked",
|
|
115
|
-
'FolderDelete' = "FolderDelete",
|
|
116
|
-
'FolderOpened' = "FolderOpened",
|
|
117
|
-
'FolderRemove' = "FolderRemove",
|
|
118
|
-
'Folder' = "Folder",
|
|
119
|
-
'Food' = "Food",
|
|
120
|
-
'Football' = "Football",
|
|
121
|
-
'ForkSpoon' = "ForkSpoon",
|
|
122
|
-
'Fries' = "Fries",
|
|
123
|
-
'FullScreen' = "FullScreen",
|
|
124
|
-
'GobletFull' = "GobletFull",
|
|
125
|
-
'GobletSquareFull' = "GobletSquareFull",
|
|
126
|
-
'GobletSquare' = "GobletSquare",
|
|
127
|
-
'Goblet' = "Goblet",
|
|
128
|
-
'GoodsFilled' = "GoodsFilled",
|
|
129
|
-
'Goods' = "Goods",
|
|
130
|
-
'Grape' = "Grape",
|
|
131
|
-
'Grid' = "Grid",
|
|
132
|
-
'Guide' = "Guide",
|
|
133
|
-
'Headset' = "Headset",
|
|
134
|
-
'HelpFilled' = "HelpFilled",
|
|
135
|
-
'Help' = "Help",
|
|
136
|
-
'Hide' = "Hide",
|
|
137
|
-
'Histogram' = "Histogram",
|
|
138
|
-
'HomeFilled' = "HomeFilled",
|
|
139
|
-
'HotWater' = "HotWater",
|
|
140
|
-
'House' = "House",
|
|
141
|
-
'IceCreamRound' = "IceCreamRound",
|
|
142
|
-
'IceCreamSquare' = "IceCreamSquare",
|
|
143
|
-
'IceCream' = "IceCream",
|
|
144
|
-
'IceDrink' = "IceDrink",
|
|
145
|
-
'IceTea' = "IceTea",
|
|
146
|
-
'InfoFilled' = "InfoFilled",
|
|
147
|
-
'Iphone' = "Iphone",
|
|
148
|
-
'Key' = "Key",
|
|
149
|
-
'KnifeFork' = "KnifeFork",
|
|
150
|
-
'Lightning' = "Lightning",
|
|
151
|
-
'Link' = "Link",
|
|
152
|
-
'List' = "List",
|
|
153
|
-
'Loading' = "Loading",
|
|
154
|
-
'LocationFilled' = "LocationFilled",
|
|
155
|
-
'LocationInformation' = "LocationInformation",
|
|
156
|
-
'Location' = "Location",
|
|
157
|
-
'Lock' = "Lock",
|
|
158
|
-
'Lollipop' = "Lollipop",
|
|
159
|
-
'MagicStick' = "MagicStick",
|
|
160
|
-
'Magnet' = "Magnet",
|
|
161
|
-
'Male' = "Male",
|
|
162
|
-
'Management' = "Management",
|
|
163
|
-
'MapLocation' = "MapLocation",
|
|
164
|
-
'Medal' = "Medal",
|
|
165
|
-
'Menu' = "Menu",
|
|
166
|
-
'MessageBox' = "MessageBox",
|
|
167
|
-
'Message' = "Message",
|
|
168
|
-
'Mic' = "Mic",
|
|
169
|
-
'Microphone' = "Microphone",
|
|
170
|
-
'MilkTea' = "MilkTea",
|
|
171
|
-
'Minus' = "Minus",
|
|
172
|
-
'Money' = "Money",
|
|
173
|
-
'Monitor' = "Monitor",
|
|
174
|
-
'MoonNight' = "MoonNight",
|
|
175
|
-
'Moon' = "Moon",
|
|
176
|
-
'MoreFilled' = "MoreFilled",
|
|
177
|
-
'More' = "More",
|
|
178
|
-
'MostlyCloudy' = "MostlyCloudy",
|
|
179
|
-
'Mouse' = "Mouse",
|
|
180
|
-
'Mug' = "Mug",
|
|
181
|
-
'MuteNotification' = "MuteNotification",
|
|
182
|
-
'Mute' = "Mute",
|
|
183
|
-
'NoSmoking' = "NoSmoking",
|
|
184
|
-
'Notebook' = "Notebook",
|
|
185
|
-
'Notification' = "Notification",
|
|
186
|
-
'Odometer' = "Odometer",
|
|
187
|
-
'OfficeBuilding' = "OfficeBuilding",
|
|
188
|
-
'Open' = "Open",
|
|
189
|
-
'Operation' = "Operation",
|
|
190
|
-
'Opportunity' = "Opportunity",
|
|
191
|
-
'Orange' = "Orange",
|
|
192
|
-
'Paperclip' = "Paperclip",
|
|
193
|
-
'PartlyCloudy' = "PartlyCloudy",
|
|
194
|
-
'Pear' = "Pear",
|
|
195
|
-
'PhoneFilled' = "PhoneFilled",
|
|
196
|
-
'Phone' = "Phone",
|
|
197
|
-
'PictureFilled' = "PictureFilled",
|
|
198
|
-
'PictureRounded' = "PictureRounded",
|
|
199
|
-
'Picture' = "Picture",
|
|
200
|
-
'PieChart' = "PieChart",
|
|
201
|
-
'Place' = "Place",
|
|
202
|
-
'Platform' = "Platform",
|
|
203
|
-
'Plus' = "Plus",
|
|
204
|
-
'Pointer' = "Pointer",
|
|
205
|
-
'Position' = "Position",
|
|
206
|
-
'Postcard' = "Postcard",
|
|
207
|
-
'Pouring' = "Pouring",
|
|
208
|
-
'Present' = "Present",
|
|
209
|
-
'PriceTag' = "PriceTag",
|
|
210
|
-
'Printer' = "Printer",
|
|
211
|
-
'Promotion' = "Promotion",
|
|
212
|
-
'QuestionFilled' = "QuestionFilled",
|
|
213
|
-
'Rank' = "Rank",
|
|
214
|
-
'ReadingLamp' = "ReadingLamp",
|
|
215
|
-
'Reading' = "Reading",
|
|
216
|
-
'RefreshLeft' = "RefreshLeft",
|
|
217
|
-
'RefreshRight' = "RefreshRight",
|
|
218
|
-
'Refresh' = "Refresh",
|
|
219
|
-
'Refrigerator' = "Refrigerator",
|
|
220
|
-
'RemoveFilled' = "RemoveFilled",
|
|
221
|
-
'Remove' = "Remove",
|
|
222
|
-
'Right' = "Right",
|
|
223
|
-
'ScaleToOriginal' = "ScaleToOriginal",
|
|
224
|
-
'School' = "School",
|
|
225
|
-
'Scissor' = "Scissor",
|
|
226
|
-
'Search' = "Search",
|
|
227
|
-
'Select' = "Select",
|
|
228
|
-
'Sell' = "Sell",
|
|
229
|
-
'SemiSelect' = "SemiSelect",
|
|
230
|
-
'Service' = "Service",
|
|
231
|
-
'SetUp' = "SetUp",
|
|
232
|
-
'Setting' = "Setting",
|
|
233
|
-
'Share' = "Share",
|
|
234
|
-
'Ship' = "Ship",
|
|
235
|
-
'Shop' = "Shop",
|
|
236
|
-
'ShoppingBag' = "ShoppingBag",
|
|
237
|
-
'ShoppingCartFull' = "ShoppingCartFull",
|
|
238
|
-
'ShoppingCart' = "ShoppingCart",
|
|
239
|
-
'Smoking' = "Smoking",
|
|
240
|
-
'Soccer' = "Soccer",
|
|
241
|
-
'SoldOut' = "SoldOut",
|
|
242
|
-
'SortDown' = "SortDown",
|
|
243
|
-
'SortUp' = "SortUp",
|
|
244
|
-
'Sort' = "Sort",
|
|
245
|
-
'Stamp' = "Stamp",
|
|
246
|
-
'StarFilled' = "StarFilled",
|
|
247
|
-
'Star' = "Star",
|
|
248
|
-
'Stopwatch' = "Stopwatch",
|
|
249
|
-
'SuccessFilled' = "SuccessFilled",
|
|
250
|
-
'Sugar' = "Sugar",
|
|
251
|
-
'Suitcase' = "Suitcase",
|
|
252
|
-
'Sunny' = "Sunny",
|
|
253
|
-
'Sunrise' = "Sunrise",
|
|
254
|
-
'Sunset' = "Sunset",
|
|
255
|
-
'SwitchButton' = "SwitchButton",
|
|
256
|
-
'Switch' = "Switch",
|
|
257
|
-
'TakeawayBox' = "TakeawayBox",
|
|
258
|
-
'Ticket' = "Ticket",
|
|
259
|
-
'Tickets' = "Tickets",
|
|
260
|
-
'Timer' = "Timer",
|
|
261
|
-
'ToiletPaper' = "ToiletPaper",
|
|
262
|
-
'Tools' = "Tools",
|
|
263
|
-
'TopLeft' = "TopLeft",
|
|
264
|
-
'TopRight' = "TopRight",
|
|
265
|
-
'Top' = "Top",
|
|
266
|
-
'TrendCharts' = "TrendCharts",
|
|
267
|
-
'Trophy' = "Trophy",
|
|
268
|
-
'TurnOff' = "TurnOff",
|
|
269
|
-
'Umbrella' = "Umbrella",
|
|
270
|
-
'Unlock' = "Unlock",
|
|
271
|
-
'UploadFilled' = "UploadFilled",
|
|
272
|
-
'Upload' = "Upload",
|
|
273
|
-
'UserFilled' = "UserFilled",
|
|
274
|
-
'User' = "User",
|
|
275
|
-
'Van' = "Van",
|
|
276
|
-
'VideoCameraFilled' = "VideoCameraFilled",
|
|
277
|
-
'VideoCamera' = "VideoCamera",
|
|
278
|
-
'VideoPause' = "VideoPause",
|
|
279
|
-
'VideoPlay' = "VideoPlay",
|
|
280
|
-
'View' = "View",
|
|
281
|
-
'WalletFilled' = "WalletFilled",
|
|
282
|
-
'Wallet' = "Wallet",
|
|
283
|
-
'WarningFilled' = "WarningFilled",
|
|
284
|
-
'Warning' = "Warning",
|
|
285
|
-
'Watch' = "Watch",
|
|
286
|
-
'Watermelon' = "Watermelon",
|
|
287
|
-
'WindPower' = "WindPower",
|
|
288
|
-
'ZoomIn' = "ZoomIn",
|
|
289
|
-
'ZoomOut' = "ZoomOut"
|
|
290
|
-
}
|
|
291
|
-
//# sourceMappingURL=public.d.ts.map
|
|
@@ -1,295 +0,0 @@
|
|
|
1
|
-
// 组件尺寸
|
|
2
|
-
export var ElementSize;
|
|
3
|
-
(function (ElementSize) {
|
|
4
|
-
ElementSize["large"] = "large";
|
|
5
|
-
ElementSize["default"] = "default";
|
|
6
|
-
ElementSize["small"] = "small";
|
|
7
|
-
})(ElementSize || (ElementSize = {}));
|
|
8
|
-
// 图标
|
|
9
|
-
export var ElementIcons;
|
|
10
|
-
(function (ElementIcons) {
|
|
11
|
-
ElementIcons["AddLocation"] = "AddLocation";
|
|
12
|
-
ElementIcons["Aim"] = "Aim";
|
|
13
|
-
ElementIcons["AlarmClock"] = "AlarmClock";
|
|
14
|
-
ElementIcons["Apple"] = "Apple";
|
|
15
|
-
ElementIcons["ArrowDownBold"] = "ArrowDownBold";
|
|
16
|
-
ElementIcons["ArrowDown"] = "ArrowDown";
|
|
17
|
-
ElementIcons["ArrowLeftBold"] = "ArrowLeftBold";
|
|
18
|
-
ElementIcons["ArrowLeft"] = "ArrowLeft";
|
|
19
|
-
ElementIcons["ArrowRightBold"] = "ArrowRightBold";
|
|
20
|
-
ElementIcons["ArrowRight"] = "ArrowRight";
|
|
21
|
-
ElementIcons["ArrowUpBold"] = "ArrowUpBold";
|
|
22
|
-
ElementIcons["ArrowUp"] = "ArrowUp";
|
|
23
|
-
ElementIcons["Avatar"] = "Avatar";
|
|
24
|
-
ElementIcons["Back"] = "Back";
|
|
25
|
-
ElementIcons["Baseball"] = "Baseball";
|
|
26
|
-
ElementIcons["Basketball"] = "Basketball";
|
|
27
|
-
ElementIcons["BellFilled"] = "BellFilled";
|
|
28
|
-
ElementIcons["Bell"] = "Bell";
|
|
29
|
-
ElementIcons["Bicycle"] = "Bicycle";
|
|
30
|
-
ElementIcons["BottomLeft"] = "BottomLeft";
|
|
31
|
-
ElementIcons["BottomRight"] = "BottomRight";
|
|
32
|
-
ElementIcons["Bottom"] = "Bottom";
|
|
33
|
-
ElementIcons["Bowl"] = "Bowl";
|
|
34
|
-
ElementIcons["Box"] = "Box";
|
|
35
|
-
ElementIcons["Briefcase"] = "Briefcase";
|
|
36
|
-
ElementIcons["BrushFilled"] = "BrushFilled";
|
|
37
|
-
ElementIcons["Brush"] = "Brush";
|
|
38
|
-
ElementIcons["Burger"] = "Burger";
|
|
39
|
-
ElementIcons["Calendar"] = "Calendar";
|
|
40
|
-
ElementIcons["CameraFilled"] = "CameraFilled";
|
|
41
|
-
ElementIcons["Camera"] = "Camera";
|
|
42
|
-
ElementIcons["CaretBottom"] = "CaretBottom";
|
|
43
|
-
ElementIcons["CaretLeft"] = "CaretLeft";
|
|
44
|
-
ElementIcons["CaretRight"] = "CaretRight";
|
|
45
|
-
ElementIcons["CaretTop"] = "CaretTop";
|
|
46
|
-
ElementIcons["Cellphone"] = "Cellphone";
|
|
47
|
-
ElementIcons["ChatDotRound"] = "ChatDotRound";
|
|
48
|
-
ElementIcons["ChatDotSquare"] = "ChatDotSquare";
|
|
49
|
-
ElementIcons["ChatLineRound"] = "ChatLineRound";
|
|
50
|
-
ElementIcons["ChatLineSquare"] = "ChatLineSquare";
|
|
51
|
-
ElementIcons["ChatRound"] = "ChatRound";
|
|
52
|
-
ElementIcons["ChatSquare"] = "ChatSquare";
|
|
53
|
-
ElementIcons["Check"] = "Check";
|
|
54
|
-
ElementIcons["Checked"] = "Checked";
|
|
55
|
-
ElementIcons["Cherry"] = "Cherry";
|
|
56
|
-
ElementIcons["Chicken"] = "Chicken";
|
|
57
|
-
ElementIcons["CircleCheckFilled"] = "CircleCheckFilled";
|
|
58
|
-
ElementIcons["CircleCheck"] = "CircleCheck";
|
|
59
|
-
ElementIcons["CircleCloseFilled"] = "CircleCloseFilled";
|
|
60
|
-
ElementIcons["CircleClose"] = "CircleClose";
|
|
61
|
-
ElementIcons["CirclePlusFilled"] = "CirclePlusFilled";
|
|
62
|
-
ElementIcons["CirclePlus"] = "CirclePlus";
|
|
63
|
-
ElementIcons["Clock"] = "Clock";
|
|
64
|
-
ElementIcons["CloseBold"] = "CloseBold";
|
|
65
|
-
ElementIcons["Close"] = "Close";
|
|
66
|
-
ElementIcons["Cloudy"] = "Cloudy";
|
|
67
|
-
ElementIcons["CoffeeCup"] = "CoffeeCup";
|
|
68
|
-
ElementIcons["Coffee"] = "Coffee";
|
|
69
|
-
ElementIcons["Coin"] = "Coin";
|
|
70
|
-
ElementIcons["ColdDrink"] = "ColdDrink";
|
|
71
|
-
ElementIcons["CollectionTag"] = "CollectionTag";
|
|
72
|
-
ElementIcons["Collection"] = "Collection";
|
|
73
|
-
ElementIcons["Comment"] = "Comment";
|
|
74
|
-
ElementIcons["Compass"] = "Compass";
|
|
75
|
-
ElementIcons["Connection"] = "Connection";
|
|
76
|
-
ElementIcons["Coordinate"] = "Coordinate";
|
|
77
|
-
ElementIcons["CopyDocument"] = "CopyDocument";
|
|
78
|
-
ElementIcons["Cpu"] = "Cpu";
|
|
79
|
-
ElementIcons["CreditCard"] = "CreditCard";
|
|
80
|
-
ElementIcons["Crop"] = "Crop";
|
|
81
|
-
ElementIcons["DArrowLeft"] = "DArrowLeft";
|
|
82
|
-
ElementIcons["DArrowRight"] = "DArrowRight";
|
|
83
|
-
ElementIcons["DCaret"] = "DCaret";
|
|
84
|
-
ElementIcons["DataAnalysis"] = "DataAnalysis";
|
|
85
|
-
ElementIcons["DataBoard"] = "DataBoard";
|
|
86
|
-
ElementIcons["DataLine"] = "DataLine";
|
|
87
|
-
ElementIcons["DeleteFilled"] = "DeleteFilled";
|
|
88
|
-
ElementIcons["DeleteLocation"] = "DeleteLocation";
|
|
89
|
-
ElementIcons["Delete"] = "Delete";
|
|
90
|
-
ElementIcons["Dessert"] = "Dessert";
|
|
91
|
-
ElementIcons["Discount"] = "Discount";
|
|
92
|
-
ElementIcons["DishDot"] = "DishDot";
|
|
93
|
-
ElementIcons["Dish"] = "Dish";
|
|
94
|
-
ElementIcons["DocumentAdd"] = "DocumentAdd";
|
|
95
|
-
ElementIcons["DocumentChecked"] = "DocumentChecked";
|
|
96
|
-
ElementIcons["DocumentCopy"] = "DocumentCopy";
|
|
97
|
-
ElementIcons["DocumentDelete"] = "DocumentDelete";
|
|
98
|
-
ElementIcons["DocumentRemove"] = "DocumentRemove";
|
|
99
|
-
ElementIcons["Document"] = "Document";
|
|
100
|
-
ElementIcons["Download"] = "Download";
|
|
101
|
-
ElementIcons["Drizzling"] = "Drizzling";
|
|
102
|
-
ElementIcons["EditPen"] = "EditPen";
|
|
103
|
-
ElementIcons["Edit"] = "Edit";
|
|
104
|
-
ElementIcons["ElemeFilled"] = "ElemeFilled";
|
|
105
|
-
ElementIcons["Eleme"] = "Eleme";
|
|
106
|
-
ElementIcons["ElementPlus"] = "ElementPlus";
|
|
107
|
-
ElementIcons["Expand"] = "Expand";
|
|
108
|
-
ElementIcons["Failed"] = "Failed";
|
|
109
|
-
ElementIcons["Female"] = "Female";
|
|
110
|
-
ElementIcons["Files"] = "Files";
|
|
111
|
-
ElementIcons["Film"] = "Film";
|
|
112
|
-
ElementIcons["Filter"] = "Filter";
|
|
113
|
-
ElementIcons["Finished"] = "Finished";
|
|
114
|
-
ElementIcons["FirstAidKit"] = "FirstAidKit";
|
|
115
|
-
ElementIcons["Flag"] = "Flag";
|
|
116
|
-
ElementIcons["Fold"] = "Fold";
|
|
117
|
-
ElementIcons["FolderAdd"] = "FolderAdd";
|
|
118
|
-
ElementIcons["FolderChecked"] = "FolderChecked";
|
|
119
|
-
ElementIcons["FolderDelete"] = "FolderDelete";
|
|
120
|
-
ElementIcons["FolderOpened"] = "FolderOpened";
|
|
121
|
-
ElementIcons["FolderRemove"] = "FolderRemove";
|
|
122
|
-
ElementIcons["Folder"] = "Folder";
|
|
123
|
-
ElementIcons["Food"] = "Food";
|
|
124
|
-
ElementIcons["Football"] = "Football";
|
|
125
|
-
ElementIcons["ForkSpoon"] = "ForkSpoon";
|
|
126
|
-
ElementIcons["Fries"] = "Fries";
|
|
127
|
-
ElementIcons["FullScreen"] = "FullScreen";
|
|
128
|
-
ElementIcons["GobletFull"] = "GobletFull";
|
|
129
|
-
ElementIcons["GobletSquareFull"] = "GobletSquareFull";
|
|
130
|
-
ElementIcons["GobletSquare"] = "GobletSquare";
|
|
131
|
-
ElementIcons["Goblet"] = "Goblet";
|
|
132
|
-
ElementIcons["GoodsFilled"] = "GoodsFilled";
|
|
133
|
-
ElementIcons["Goods"] = "Goods";
|
|
134
|
-
ElementIcons["Grape"] = "Grape";
|
|
135
|
-
ElementIcons["Grid"] = "Grid";
|
|
136
|
-
ElementIcons["Guide"] = "Guide";
|
|
137
|
-
ElementIcons["Headset"] = "Headset";
|
|
138
|
-
ElementIcons["HelpFilled"] = "HelpFilled";
|
|
139
|
-
ElementIcons["Help"] = "Help";
|
|
140
|
-
ElementIcons["Hide"] = "Hide";
|
|
141
|
-
ElementIcons["Histogram"] = "Histogram";
|
|
142
|
-
ElementIcons["HomeFilled"] = "HomeFilled";
|
|
143
|
-
ElementIcons["HotWater"] = "HotWater";
|
|
144
|
-
ElementIcons["House"] = "House";
|
|
145
|
-
ElementIcons["IceCreamRound"] = "IceCreamRound";
|
|
146
|
-
ElementIcons["IceCreamSquare"] = "IceCreamSquare";
|
|
147
|
-
ElementIcons["IceCream"] = "IceCream";
|
|
148
|
-
ElementIcons["IceDrink"] = "IceDrink";
|
|
149
|
-
ElementIcons["IceTea"] = "IceTea";
|
|
150
|
-
ElementIcons["InfoFilled"] = "InfoFilled";
|
|
151
|
-
ElementIcons["Iphone"] = "Iphone";
|
|
152
|
-
ElementIcons["Key"] = "Key";
|
|
153
|
-
ElementIcons["KnifeFork"] = "KnifeFork";
|
|
154
|
-
ElementIcons["Lightning"] = "Lightning";
|
|
155
|
-
ElementIcons["Link"] = "Link";
|
|
156
|
-
ElementIcons["List"] = "List";
|
|
157
|
-
ElementIcons["Loading"] = "Loading";
|
|
158
|
-
ElementIcons["LocationFilled"] = "LocationFilled";
|
|
159
|
-
ElementIcons["LocationInformation"] = "LocationInformation";
|
|
160
|
-
ElementIcons["Location"] = "Location";
|
|
161
|
-
ElementIcons["Lock"] = "Lock";
|
|
162
|
-
ElementIcons["Lollipop"] = "Lollipop";
|
|
163
|
-
ElementIcons["MagicStick"] = "MagicStick";
|
|
164
|
-
ElementIcons["Magnet"] = "Magnet";
|
|
165
|
-
ElementIcons["Male"] = "Male";
|
|
166
|
-
ElementIcons["Management"] = "Management";
|
|
167
|
-
ElementIcons["MapLocation"] = "MapLocation";
|
|
168
|
-
ElementIcons["Medal"] = "Medal";
|
|
169
|
-
ElementIcons["Menu"] = "Menu";
|
|
170
|
-
ElementIcons["MessageBox"] = "MessageBox";
|
|
171
|
-
ElementIcons["Message"] = "Message";
|
|
172
|
-
ElementIcons["Mic"] = "Mic";
|
|
173
|
-
ElementIcons["Microphone"] = "Microphone";
|
|
174
|
-
ElementIcons["MilkTea"] = "MilkTea";
|
|
175
|
-
ElementIcons["Minus"] = "Minus";
|
|
176
|
-
ElementIcons["Money"] = "Money";
|
|
177
|
-
ElementIcons["Monitor"] = "Monitor";
|
|
178
|
-
ElementIcons["MoonNight"] = "MoonNight";
|
|
179
|
-
ElementIcons["Moon"] = "Moon";
|
|
180
|
-
ElementIcons["MoreFilled"] = "MoreFilled";
|
|
181
|
-
ElementIcons["More"] = "More";
|
|
182
|
-
ElementIcons["MostlyCloudy"] = "MostlyCloudy";
|
|
183
|
-
ElementIcons["Mouse"] = "Mouse";
|
|
184
|
-
ElementIcons["Mug"] = "Mug";
|
|
185
|
-
ElementIcons["MuteNotification"] = "MuteNotification";
|
|
186
|
-
ElementIcons["Mute"] = "Mute";
|
|
187
|
-
ElementIcons["NoSmoking"] = "NoSmoking";
|
|
188
|
-
ElementIcons["Notebook"] = "Notebook";
|
|
189
|
-
ElementIcons["Notification"] = "Notification";
|
|
190
|
-
ElementIcons["Odometer"] = "Odometer";
|
|
191
|
-
ElementIcons["OfficeBuilding"] = "OfficeBuilding";
|
|
192
|
-
ElementIcons["Open"] = "Open";
|
|
193
|
-
ElementIcons["Operation"] = "Operation";
|
|
194
|
-
ElementIcons["Opportunity"] = "Opportunity";
|
|
195
|
-
ElementIcons["Orange"] = "Orange";
|
|
196
|
-
ElementIcons["Paperclip"] = "Paperclip";
|
|
197
|
-
ElementIcons["PartlyCloudy"] = "PartlyCloudy";
|
|
198
|
-
ElementIcons["Pear"] = "Pear";
|
|
199
|
-
ElementIcons["PhoneFilled"] = "PhoneFilled";
|
|
200
|
-
ElementIcons["Phone"] = "Phone";
|
|
201
|
-
ElementIcons["PictureFilled"] = "PictureFilled";
|
|
202
|
-
ElementIcons["PictureRounded"] = "PictureRounded";
|
|
203
|
-
ElementIcons["Picture"] = "Picture";
|
|
204
|
-
ElementIcons["PieChart"] = "PieChart";
|
|
205
|
-
ElementIcons["Place"] = "Place";
|
|
206
|
-
ElementIcons["Platform"] = "Platform";
|
|
207
|
-
ElementIcons["Plus"] = "Plus";
|
|
208
|
-
ElementIcons["Pointer"] = "Pointer";
|
|
209
|
-
ElementIcons["Position"] = "Position";
|
|
210
|
-
ElementIcons["Postcard"] = "Postcard";
|
|
211
|
-
ElementIcons["Pouring"] = "Pouring";
|
|
212
|
-
ElementIcons["Present"] = "Present";
|
|
213
|
-
ElementIcons["PriceTag"] = "PriceTag";
|
|
214
|
-
ElementIcons["Printer"] = "Printer";
|
|
215
|
-
ElementIcons["Promotion"] = "Promotion";
|
|
216
|
-
ElementIcons["QuestionFilled"] = "QuestionFilled";
|
|
217
|
-
ElementIcons["Rank"] = "Rank";
|
|
218
|
-
ElementIcons["ReadingLamp"] = "ReadingLamp";
|
|
219
|
-
ElementIcons["Reading"] = "Reading";
|
|
220
|
-
ElementIcons["RefreshLeft"] = "RefreshLeft";
|
|
221
|
-
ElementIcons["RefreshRight"] = "RefreshRight";
|
|
222
|
-
ElementIcons["Refresh"] = "Refresh";
|
|
223
|
-
ElementIcons["Refrigerator"] = "Refrigerator";
|
|
224
|
-
ElementIcons["RemoveFilled"] = "RemoveFilled";
|
|
225
|
-
ElementIcons["Remove"] = "Remove";
|
|
226
|
-
ElementIcons["Right"] = "Right";
|
|
227
|
-
ElementIcons["ScaleToOriginal"] = "ScaleToOriginal";
|
|
228
|
-
ElementIcons["School"] = "School";
|
|
229
|
-
ElementIcons["Scissor"] = "Scissor";
|
|
230
|
-
ElementIcons["Search"] = "Search";
|
|
231
|
-
ElementIcons["Select"] = "Select";
|
|
232
|
-
ElementIcons["Sell"] = "Sell";
|
|
233
|
-
ElementIcons["SemiSelect"] = "SemiSelect";
|
|
234
|
-
ElementIcons["Service"] = "Service";
|
|
235
|
-
ElementIcons["SetUp"] = "SetUp";
|
|
236
|
-
ElementIcons["Setting"] = "Setting";
|
|
237
|
-
ElementIcons["Share"] = "Share";
|
|
238
|
-
ElementIcons["Ship"] = "Ship";
|
|
239
|
-
ElementIcons["Shop"] = "Shop";
|
|
240
|
-
ElementIcons["ShoppingBag"] = "ShoppingBag";
|
|
241
|
-
ElementIcons["ShoppingCartFull"] = "ShoppingCartFull";
|
|
242
|
-
ElementIcons["ShoppingCart"] = "ShoppingCart";
|
|
243
|
-
ElementIcons["Smoking"] = "Smoking";
|
|
244
|
-
ElementIcons["Soccer"] = "Soccer";
|
|
245
|
-
ElementIcons["SoldOut"] = "SoldOut";
|
|
246
|
-
ElementIcons["SortDown"] = "SortDown";
|
|
247
|
-
ElementIcons["SortUp"] = "SortUp";
|
|
248
|
-
ElementIcons["Sort"] = "Sort";
|
|
249
|
-
ElementIcons["Stamp"] = "Stamp";
|
|
250
|
-
ElementIcons["StarFilled"] = "StarFilled";
|
|
251
|
-
ElementIcons["Star"] = "Star";
|
|
252
|
-
ElementIcons["Stopwatch"] = "Stopwatch";
|
|
253
|
-
ElementIcons["SuccessFilled"] = "SuccessFilled";
|
|
254
|
-
ElementIcons["Sugar"] = "Sugar";
|
|
255
|
-
ElementIcons["Suitcase"] = "Suitcase";
|
|
256
|
-
ElementIcons["Sunny"] = "Sunny";
|
|
257
|
-
ElementIcons["Sunrise"] = "Sunrise";
|
|
258
|
-
ElementIcons["Sunset"] = "Sunset";
|
|
259
|
-
ElementIcons["SwitchButton"] = "SwitchButton";
|
|
260
|
-
ElementIcons["Switch"] = "Switch";
|
|
261
|
-
ElementIcons["TakeawayBox"] = "TakeawayBox";
|
|
262
|
-
ElementIcons["Ticket"] = "Ticket";
|
|
263
|
-
ElementIcons["Tickets"] = "Tickets";
|
|
264
|
-
ElementIcons["Timer"] = "Timer";
|
|
265
|
-
ElementIcons["ToiletPaper"] = "ToiletPaper";
|
|
266
|
-
ElementIcons["Tools"] = "Tools";
|
|
267
|
-
ElementIcons["TopLeft"] = "TopLeft";
|
|
268
|
-
ElementIcons["TopRight"] = "TopRight";
|
|
269
|
-
ElementIcons["Top"] = "Top";
|
|
270
|
-
ElementIcons["TrendCharts"] = "TrendCharts";
|
|
271
|
-
ElementIcons["Trophy"] = "Trophy";
|
|
272
|
-
ElementIcons["TurnOff"] = "TurnOff";
|
|
273
|
-
ElementIcons["Umbrella"] = "Umbrella";
|
|
274
|
-
ElementIcons["Unlock"] = "Unlock";
|
|
275
|
-
ElementIcons["UploadFilled"] = "UploadFilled";
|
|
276
|
-
ElementIcons["Upload"] = "Upload";
|
|
277
|
-
ElementIcons["UserFilled"] = "UserFilled";
|
|
278
|
-
ElementIcons["User"] = "User";
|
|
279
|
-
ElementIcons["Van"] = "Van";
|
|
280
|
-
ElementIcons["VideoCameraFilled"] = "VideoCameraFilled";
|
|
281
|
-
ElementIcons["VideoCamera"] = "VideoCamera";
|
|
282
|
-
ElementIcons["VideoPause"] = "VideoPause";
|
|
283
|
-
ElementIcons["VideoPlay"] = "VideoPlay";
|
|
284
|
-
ElementIcons["View"] = "View";
|
|
285
|
-
ElementIcons["WalletFilled"] = "WalletFilled";
|
|
286
|
-
ElementIcons["Wallet"] = "Wallet";
|
|
287
|
-
ElementIcons["WarningFilled"] = "WarningFilled";
|
|
288
|
-
ElementIcons["Warning"] = "Warning";
|
|
289
|
-
ElementIcons["Watch"] = "Watch";
|
|
290
|
-
ElementIcons["Watermelon"] = "Watermelon";
|
|
291
|
-
ElementIcons["WindPower"] = "WindPower";
|
|
292
|
-
ElementIcons["ZoomIn"] = "ZoomIn";
|
|
293
|
-
ElementIcons["ZoomOut"] = "ZoomOut";
|
|
294
|
-
})(ElementIcons || (ElementIcons = {}));
|
|
295
|
-
//# sourceMappingURL=public.js.map
|
package/dist/router/index.d.ts
DELETED