plain-design 1.0.0-beta.146 → 1.0.0-beta.148
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/dist/plain-design.commonjs.min.js +1 -1
- package/dist/plain-design.min.css +2 -1
- package/dist/plain-design.min.js +1 -1
- package/dist/report.html +2 -2
- package/package.json +1 -1
- package/src/packages/components/$ai/index.tsx +227 -227
- package/src/packages/components/ColorPicker/ColorPanel.tsx +146 -125
- package/src/packages/components/ColorPicker/color-panel.scss +117 -97
- package/src/packages/components/ColorPicker/index.tsx +144 -131
- package/src/packages/components/Icon/icon.external.tsx +6 -0
- package/src/packages/components/IconPicker/DefaultIcons.ts +7 -0
- package/src/packages/components/IconPicker/icon-picker.scss +43 -0
- package/src/packages/components/IconPicker/index.tsx +189 -0
- package/src/packages/components/VirtualList/useVirtualList.tsx +1 -1
- package/src/packages/entry.tsx +323 -322
- package/src/packages/i18n/lang/en-us.ts +7 -0
- package/src/packages/i18n/lang/zh-cn.ts +7 -0
- package/src/packages/uses/createInputPopperAttrs.ts +9 -2
- package/src/packages/utils/installAllIcons.ts +20 -19
package/src/packages/entry.tsx
CHANGED
|
@@ -1,322 +1,323 @@
|
|
|
1
|
-
import {setComponentPrefix} from "@peryl/react-compose";
|
|
2
|
-
import packageJson from '../../package.json';
|
|
3
|
-
|
|
4
|
-
export {Application} from "./components/Application";
|
|
5
|
-
export type {iApplicationConfiguration} from './components/Application/utils/application.utils';
|
|
6
|
-
export {Icon} from "./components/Icon";
|
|
7
|
-
export {Illustration} from "./components/Illustration";
|
|
8
|
-
export {GridRow} from "./components/GridRow";
|
|
9
|
-
export {GridCol} from "./components/GridCol";
|
|
10
|
-
export {Button} from "./components/Button";
|
|
11
|
-
export {Loading} from "./components/Loading";
|
|
12
|
-
export {Dialog} from "./components/Dialog";
|
|
13
|
-
export {ButtonGroup} from "./components/ButtonGroup";
|
|
14
|
-
export {LoadingMask} from "./components/LoadingMask";
|
|
15
|
-
export {useDialog} from "./components/useDialog";
|
|
16
|
-
export {$dialog} from "./components/$dialog";
|
|
17
|
-
export {List} from "./components/List";
|
|
18
|
-
// export {Item} from "./components/Item";
|
|
19
|
-
export {ListPanel} from './components/ListPanel';
|
|
20
|
-
export {ListOption} from './components/ListOption';
|
|
21
|
-
export {useMessage} from "./components/useMessage";
|
|
22
|
-
export {$message} from "./components/$message";
|
|
23
|
-
export {useNotice} from "./components/useNotice";
|
|
24
|
-
export {$notice} from "./components/$notice";
|
|
25
|
-
export {Checkbox} from "./components/Checkbox";
|
|
26
|
-
export {CheckboxGroup} from "./components/CheckboxGroup";
|
|
27
|
-
export {Input} from "./components/Input";
|
|
28
|
-
export {Radio} from "./components/Radio";
|
|
29
|
-
export {RadioGroup} from "./components/RadioGroup";
|
|
30
|
-
export {DropdownOption} from "./components/DropdownOption";
|
|
31
|
-
export {Dropdown} from "./components/Dropdown";
|
|
32
|
-
export {DropdownGroup} from "./components/DropdownGroup";
|
|
33
|
-
export {DropdownSeparator} from "./components/DropdownSeparator";
|
|
34
|
-
export {VirtualList} from "./components/VirtualList";
|
|
35
|
-
export {Segment} from "./components/Segment";
|
|
36
|
-
export {SegmentGroup} from "./components/SegmentGroup";
|
|
37
|
-
export {InputGroup} from "./components/InputGroup";
|
|
38
|
-
export {Card} from "./components/Card";
|
|
39
|
-
export {CarouselItem} from "./components/CarouselItem";
|
|
40
|
-
export {Carousel} from "./components/Carousel";
|
|
41
|
-
export {CollapseGroup} from "./components/CollapseGroup";
|
|
42
|
-
export {Collapse} from "./components/Collapse";
|
|
43
|
-
export {ProgressBar} from "./components/ProgressBar";
|
|
44
|
-
export {ProgressCircle} from "./components/ProgressCircle";
|
|
45
|
-
export {ProgressMini} from "./components/ProgressMini";
|
|
46
|
-
export {Slider} from "./components/Slider";
|
|
47
|
-
export {InputNumber} from './components/InputNumber';
|
|
48
|
-
export {NumberRange} from './components/NumberRange';
|
|
49
|
-
export {Toggle} from "./components/Toggle";
|
|
50
|
-
export {Rate} from './components/Rate';
|
|
51
|
-
export {Badge} from './components/Badge';
|
|
52
|
-
export {StepGroup} from './components/StepGroup';
|
|
53
|
-
export {Step} from './components/Step';
|
|
54
|
-
export {Alert} from './components/Alert';
|
|
55
|
-
export {ArrowStep} from './components/ArrowStep';
|
|
56
|
-
export {ArrowStepGroup} from './components/ArrowStepGroup';
|
|
57
|
-
export {Scroll} from './components/Scroll';
|
|
58
|
-
export {TabGroup} from './components/TabGroup';
|
|
59
|
-
export {Tab} from './components/Tab';
|
|
60
|
-
export {Tag} from './components/Tag';
|
|
61
|
-
export {Tree} from './components/Tree';
|
|
62
|
-
export type {iTreeDragChangeData} from './components/TreeCore/createTreeProps';
|
|
63
|
-
export {eTreeDropType} from './components/TreeCore/createTreeDraggier';
|
|
64
|
-
export {TreeNodeWithMenu} from './components/TreeNodeWithMenu';
|
|
65
|
-
export {ColorPicker} from './components/ColorPicker';
|
|
66
|
-
export {TimePicker} from './components/TimePicker';
|
|
67
|
-
export {DatePicker} from './components/DatePicker';
|
|
68
|
-
export {Select} from './components/Select';
|
|
69
|
-
export {SelectOption} from './components/SelectOption';
|
|
70
|
-
export {SelectGroup} from './components/SelectGroup';
|
|
71
|
-
export {Form} from './components/Form';
|
|
72
|
-
export {FormItem} from './components/FormItem';
|
|
73
|
-
export {Cascade} from './components/Cascade';
|
|
74
|
-
export {CascadeKeys} from './components/CascadeKeys';
|
|
75
|
-
export {Image} from './components/Image';
|
|
76
|
-
export {Tooltip} from './components/Tooltip';
|
|
77
|
-
export {useImage} from './components/useImage';
|
|
78
|
-
export {Pagination} from './components/Pagination';
|
|
79
|
-
export {ImageUploader} from './components/ImageUploader';
|
|
80
|
-
export {Upload} from './components/Upload';
|
|
81
|
-
export {$file} from './components/$file';
|
|
82
|
-
export {$image} from './components/$image';
|
|
83
|
-
export {$loading} from './components/$loading';
|
|
84
|
-
export {useTooltip} from './components/useTooltip';
|
|
85
|
-
export {i18n} from './components/i18n';
|
|
86
|
-
export {KeepAlive} from './components/KeepAlive';
|
|
87
|
-
export {createPlainAddressService} from './components/createPlainAddressService';
|
|
88
|
-
export {createObjectService} from './components/createObjectService';
|
|
89
|
-
export {createOvService} from './components/createOvService';
|
|
90
|
-
export {createUploadService} from './components/createUploadService';
|
|
91
|
-
export {createTableOptionUser} from './components/createTableOptionUser';
|
|
92
|
-
export {buildPlainDefaultUrlConfig} from './components/buildPlainDefaultUrlConfig';
|
|
93
|
-
export {ApplicationConfigurationProvider} from './components/ApplicationConfigurationProvider';
|
|
94
|
-
export type {FileServiceChooseFileConfig, FileServiceSingleFile, FileServiceUploadConfig, FileServiceValidator, FileServiceUploadErrorEvent, FileServiceDefaultAccept} from './components/$file';
|
|
95
|
-
export {CascadePanel} from './components/CascadePanel';
|
|
96
|
-
export {usePopup} from './components/usePopup';
|
|
97
|
-
export {Popup} from './components/Popup';
|
|
98
|
-
export {ConfirmPopup} from './components/ConfirmPopup';
|
|
99
|
-
export {createPopup} from './components/createPopup';
|
|
100
|
-
export type {
|
|
101
|
-
iPopupAlign,
|
|
102
|
-
iPopupAnimation,
|
|
103
|
-
iPopupBoundary,
|
|
104
|
-
iPopupCustomOption,
|
|
105
|
-
iPopupDefaultOption,
|
|
106
|
-
iPopupDirection,
|
|
107
|
-
iPopupManager,
|
|
108
|
-
iPopupOption,
|
|
109
|
-
iPopupPlacement,
|
|
110
|
-
iPopupRects,
|
|
111
|
-
iPopupRefreshBuildParams,
|
|
112
|
-
iPopupRefreshParams,
|
|
113
|
-
iPopupRefs,
|
|
114
|
-
iPopupTrigger,
|
|
115
|
-
iPopupUseOption,
|
|
116
|
-
} from './components/usePopup/utils/popup.utils';
|
|
117
|
-
export {createScrollUtils} from './components/createScrollUtils';
|
|
118
|
-
export {useAutoScrollUtils} from './components/useAutoScrollUtils';
|
|
119
|
-
export {ClientZoom} from './components/ClientZoom';
|
|
120
|
-
export {Layout} from './components/Layout';
|
|
121
|
-
export {LayoutSection} from './components/LayoutSection';
|
|
122
|
-
export {$previewer} from './components/$previewer';
|
|
123
|
-
export {StackCard} from './components/StackCard';
|
|
124
|
-
export {StackCardItem} from './components/StackCardItem';
|
|
125
|
-
export {SortList} from './components/SortList';
|
|
126
|
-
export {Space} from './components/Space';
|
|
127
|
-
export {Box} from './components/Box';
|
|
128
|
-
export {PageCard} from './components/PageCard';
|
|
129
|
-
export {PageCardTitle} from './components/PageCardTitle';
|
|
130
|
-
export {PageCardContent} from './components/PageCardContent';
|
|
131
|
-
export {RollingNumber} from './components/RollingNumber';
|
|
132
|
-
export {Paragraph} from './components/Paragraph';
|
|
133
|
-
export {ParagraphItem} from './components/ParagraphItem';
|
|
134
|
-
export {ImagePreviewer} from './components/ImagePreviewer/ImagePreviewer';
|
|
135
|
-
export {Corner} from './components/Corner';
|
|
136
|
-
export {useContextmenuOptions} from './components/useContextmenuOptions';
|
|
137
|
-
export type {iContextmenuOption} from './components/useContextmenuOptions';
|
|
138
|
-
export {AiChatBox} from './components/AiChatBox';
|
|
139
|
-
export type {iChatBoxHistory} from './components/AiChatBox';
|
|
140
|
-
export {$ai} from './components/$ai';
|
|
141
|
-
export type {iAiChoice, iAiChatResponse, iAiConfiguration, iAiHistory} from './components/$ai';
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
export {
|
|
145
|
-
export {
|
|
146
|
-
export {
|
|
147
|
-
export {
|
|
148
|
-
export {
|
|
149
|
-
export {
|
|
150
|
-
export {
|
|
151
|
-
export {
|
|
152
|
-
export {
|
|
153
|
-
export {
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
export {
|
|
157
|
-
export {
|
|
158
|
-
export {
|
|
159
|
-
export {
|
|
160
|
-
export {
|
|
161
|
-
export {
|
|
162
|
-
export {
|
|
163
|
-
export {
|
|
164
|
-
export {
|
|
165
|
-
export {
|
|
166
|
-
export {
|
|
167
|
-
export {
|
|
168
|
-
export {
|
|
169
|
-
export {
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
export {
|
|
173
|
-
export {
|
|
174
|
-
export {
|
|
175
|
-
export {
|
|
176
|
-
export
|
|
177
|
-
export type {
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
export type {
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
export type {
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
export {
|
|
205
|
-
export {
|
|
206
|
-
export
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
export {
|
|
222
|
-
export {
|
|
223
|
-
export
|
|
224
|
-
export type {
|
|
225
|
-
export {
|
|
226
|
-
export {
|
|
227
|
-
export {
|
|
228
|
-
export {
|
|
229
|
-
export {
|
|
230
|
-
export {
|
|
231
|
-
export {
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
export {
|
|
235
|
-
export {
|
|
236
|
-
export {
|
|
237
|
-
export {
|
|
238
|
-
export {
|
|
239
|
-
export {
|
|
240
|
-
export {
|
|
241
|
-
export {
|
|
242
|
-
export {
|
|
243
|
-
export {
|
|
244
|
-
export {
|
|
245
|
-
export {
|
|
246
|
-
export {
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
export {
|
|
250
|
-
export {
|
|
251
|
-
export
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
export {
|
|
267
|
-
export
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
export {
|
|
295
|
-
export {
|
|
296
|
-
export {
|
|
297
|
-
export {
|
|
298
|
-
export {
|
|
299
|
-
export {
|
|
300
|
-
export {
|
|
301
|
-
export {
|
|
302
|
-
export {
|
|
303
|
-
export
|
|
304
|
-
export {
|
|
305
|
-
export
|
|
306
|
-
export {
|
|
307
|
-
export {
|
|
308
|
-
export {
|
|
309
|
-
export
|
|
310
|
-
export {
|
|
311
|
-
export {
|
|
312
|
-
export {
|
|
313
|
-
export {
|
|
314
|
-
export {
|
|
315
|
-
export {
|
|
316
|
-
export {
|
|
317
|
-
export {
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
1
|
+
import {setComponentPrefix} from "@peryl/react-compose";
|
|
2
|
+
import packageJson from '../../package.json';
|
|
3
|
+
|
|
4
|
+
export {Application} from "./components/Application";
|
|
5
|
+
export type {iApplicationConfiguration} from './components/Application/utils/application.utils';
|
|
6
|
+
export {Icon} from "./components/Icon";
|
|
7
|
+
export {Illustration} from "./components/Illustration";
|
|
8
|
+
export {GridRow} from "./components/GridRow";
|
|
9
|
+
export {GridCol} from "./components/GridCol";
|
|
10
|
+
export {Button} from "./components/Button";
|
|
11
|
+
export {Loading} from "./components/Loading";
|
|
12
|
+
export {Dialog} from "./components/Dialog";
|
|
13
|
+
export {ButtonGroup} from "./components/ButtonGroup";
|
|
14
|
+
export {LoadingMask} from "./components/LoadingMask";
|
|
15
|
+
export {useDialog} from "./components/useDialog";
|
|
16
|
+
export {$dialog} from "./components/$dialog";
|
|
17
|
+
export {List} from "./components/List";
|
|
18
|
+
// export {Item} from "./components/Item";
|
|
19
|
+
export {ListPanel} from './components/ListPanel';
|
|
20
|
+
export {ListOption} from './components/ListOption';
|
|
21
|
+
export {useMessage} from "./components/useMessage";
|
|
22
|
+
export {$message} from "./components/$message";
|
|
23
|
+
export {useNotice} from "./components/useNotice";
|
|
24
|
+
export {$notice} from "./components/$notice";
|
|
25
|
+
export {Checkbox} from "./components/Checkbox";
|
|
26
|
+
export {CheckboxGroup} from "./components/CheckboxGroup";
|
|
27
|
+
export {Input} from "./components/Input";
|
|
28
|
+
export {Radio} from "./components/Radio";
|
|
29
|
+
export {RadioGroup} from "./components/RadioGroup";
|
|
30
|
+
export {DropdownOption} from "./components/DropdownOption";
|
|
31
|
+
export {Dropdown} from "./components/Dropdown";
|
|
32
|
+
export {DropdownGroup} from "./components/DropdownGroup";
|
|
33
|
+
export {DropdownSeparator} from "./components/DropdownSeparator";
|
|
34
|
+
export {VirtualList} from "./components/VirtualList";
|
|
35
|
+
export {Segment} from "./components/Segment";
|
|
36
|
+
export {SegmentGroup} from "./components/SegmentGroup";
|
|
37
|
+
export {InputGroup} from "./components/InputGroup";
|
|
38
|
+
export {Card} from "./components/Card";
|
|
39
|
+
export {CarouselItem} from "./components/CarouselItem";
|
|
40
|
+
export {Carousel} from "./components/Carousel";
|
|
41
|
+
export {CollapseGroup} from "./components/CollapseGroup";
|
|
42
|
+
export {Collapse} from "./components/Collapse";
|
|
43
|
+
export {ProgressBar} from "./components/ProgressBar";
|
|
44
|
+
export {ProgressCircle} from "./components/ProgressCircle";
|
|
45
|
+
export {ProgressMini} from "./components/ProgressMini";
|
|
46
|
+
export {Slider} from "./components/Slider";
|
|
47
|
+
export {InputNumber} from './components/InputNumber';
|
|
48
|
+
export {NumberRange} from './components/NumberRange';
|
|
49
|
+
export {Toggle} from "./components/Toggle";
|
|
50
|
+
export {Rate} from './components/Rate';
|
|
51
|
+
export {Badge} from './components/Badge';
|
|
52
|
+
export {StepGroup} from './components/StepGroup';
|
|
53
|
+
export {Step} from './components/Step';
|
|
54
|
+
export {Alert} from './components/Alert';
|
|
55
|
+
export {ArrowStep} from './components/ArrowStep';
|
|
56
|
+
export {ArrowStepGroup} from './components/ArrowStepGroup';
|
|
57
|
+
export {Scroll} from './components/Scroll';
|
|
58
|
+
export {TabGroup} from './components/TabGroup';
|
|
59
|
+
export {Tab} from './components/Tab';
|
|
60
|
+
export {Tag} from './components/Tag';
|
|
61
|
+
export {Tree} from './components/Tree';
|
|
62
|
+
export type {iTreeDragChangeData} from './components/TreeCore/createTreeProps';
|
|
63
|
+
export {eTreeDropType} from './components/TreeCore/createTreeDraggier';
|
|
64
|
+
export {TreeNodeWithMenu} from './components/TreeNodeWithMenu';
|
|
65
|
+
export {ColorPicker} from './components/ColorPicker';
|
|
66
|
+
export {TimePicker} from './components/TimePicker';
|
|
67
|
+
export {DatePicker} from './components/DatePicker';
|
|
68
|
+
export {Select} from './components/Select';
|
|
69
|
+
export {SelectOption} from './components/SelectOption';
|
|
70
|
+
export {SelectGroup} from './components/SelectGroup';
|
|
71
|
+
export {Form} from './components/Form';
|
|
72
|
+
export {FormItem} from './components/FormItem';
|
|
73
|
+
export {Cascade} from './components/Cascade';
|
|
74
|
+
export {CascadeKeys} from './components/CascadeKeys';
|
|
75
|
+
export {Image} from './components/Image';
|
|
76
|
+
export {Tooltip} from './components/Tooltip';
|
|
77
|
+
export {useImage} from './components/useImage';
|
|
78
|
+
export {Pagination} from './components/Pagination';
|
|
79
|
+
export {ImageUploader} from './components/ImageUploader';
|
|
80
|
+
export {Upload} from './components/Upload';
|
|
81
|
+
export {$file} from './components/$file';
|
|
82
|
+
export {$image} from './components/$image';
|
|
83
|
+
export {$loading} from './components/$loading';
|
|
84
|
+
export {useTooltip} from './components/useTooltip';
|
|
85
|
+
export {i18n} from './components/i18n';
|
|
86
|
+
export {KeepAlive} from './components/KeepAlive';
|
|
87
|
+
export {createPlainAddressService} from './components/createPlainAddressService';
|
|
88
|
+
export {createObjectService} from './components/createObjectService';
|
|
89
|
+
export {createOvService} from './components/createOvService';
|
|
90
|
+
export {createUploadService} from './components/createUploadService';
|
|
91
|
+
export {createTableOptionUser} from './components/createTableOptionUser';
|
|
92
|
+
export {buildPlainDefaultUrlConfig} from './components/buildPlainDefaultUrlConfig';
|
|
93
|
+
export {ApplicationConfigurationProvider} from './components/ApplicationConfigurationProvider';
|
|
94
|
+
export type {FileServiceChooseFileConfig, FileServiceSingleFile, FileServiceUploadConfig, FileServiceValidator, FileServiceUploadErrorEvent, FileServiceDefaultAccept} from './components/$file';
|
|
95
|
+
export {CascadePanel} from './components/CascadePanel';
|
|
96
|
+
export {usePopup} from './components/usePopup';
|
|
97
|
+
export {Popup} from './components/Popup';
|
|
98
|
+
export {ConfirmPopup} from './components/ConfirmPopup';
|
|
99
|
+
export {createPopup} from './components/createPopup';
|
|
100
|
+
export type {
|
|
101
|
+
iPopupAlign,
|
|
102
|
+
iPopupAnimation,
|
|
103
|
+
iPopupBoundary,
|
|
104
|
+
iPopupCustomOption,
|
|
105
|
+
iPopupDefaultOption,
|
|
106
|
+
iPopupDirection,
|
|
107
|
+
iPopupManager,
|
|
108
|
+
iPopupOption,
|
|
109
|
+
iPopupPlacement,
|
|
110
|
+
iPopupRects,
|
|
111
|
+
iPopupRefreshBuildParams,
|
|
112
|
+
iPopupRefreshParams,
|
|
113
|
+
iPopupRefs,
|
|
114
|
+
iPopupTrigger,
|
|
115
|
+
iPopupUseOption,
|
|
116
|
+
} from './components/usePopup/utils/popup.utils';
|
|
117
|
+
export {createScrollUtils} from './components/createScrollUtils';
|
|
118
|
+
export {useAutoScrollUtils} from './components/useAutoScrollUtils';
|
|
119
|
+
export {ClientZoom} from './components/ClientZoom';
|
|
120
|
+
export {Layout} from './components/Layout';
|
|
121
|
+
export {LayoutSection} from './components/LayoutSection';
|
|
122
|
+
export {$previewer} from './components/$previewer';
|
|
123
|
+
export {StackCard} from './components/StackCard';
|
|
124
|
+
export {StackCardItem} from './components/StackCardItem';
|
|
125
|
+
export {SortList} from './components/SortList';
|
|
126
|
+
export {Space} from './components/Space';
|
|
127
|
+
export {Box} from './components/Box';
|
|
128
|
+
export {PageCard} from './components/PageCard';
|
|
129
|
+
export {PageCardTitle} from './components/PageCardTitle';
|
|
130
|
+
export {PageCardContent} from './components/PageCardContent';
|
|
131
|
+
export {RollingNumber} from './components/RollingNumber';
|
|
132
|
+
export {Paragraph} from './components/Paragraph';
|
|
133
|
+
export {ParagraphItem} from './components/ParagraphItem';
|
|
134
|
+
export {ImagePreviewer} from './components/ImagePreviewer/ImagePreviewer';
|
|
135
|
+
export {Corner} from './components/Corner';
|
|
136
|
+
export {useContextmenuOptions} from './components/useContextmenuOptions';
|
|
137
|
+
export type {iContextmenuOption} from './components/useContextmenuOptions';
|
|
138
|
+
export {AiChatBox} from './components/AiChatBox';
|
|
139
|
+
export type {iChatBoxHistory} from './components/AiChatBox';
|
|
140
|
+
export {$ai} from './components/$ai';
|
|
141
|
+
export type {iAiChoice, iAiChatResponse, iAiConfiguration, iAiHistory} from './components/$ai';
|
|
142
|
+
export {IconPicker} from './components/IconPicker';
|
|
143
|
+
|
|
144
|
+
export {VirtualTable} from './components/VirtualTable';
|
|
145
|
+
export {Table} from './components/Table';
|
|
146
|
+
export {AutoTable} from './components/AutoTable';
|
|
147
|
+
export {Plc} from './components/Plc';
|
|
148
|
+
export {PlcGroup} from './components/PlcGroup';
|
|
149
|
+
export {PlcTree} from './components/PlcTree';
|
|
150
|
+
export {PlcIndex} from './components/PlcIndex';
|
|
151
|
+
export {PlcExpand} from './components/PlcExpand';
|
|
152
|
+
export {PlcCheck} from './components/PlcCheck';
|
|
153
|
+
export {PlcDraggier} from './components/PlcDraggier';
|
|
154
|
+
export {PlcOperation} from './components/PlcOperation';
|
|
155
|
+
|
|
156
|
+
export {PlcAddress} from './components/PlcAddress';
|
|
157
|
+
export {PlcAddressItem} from './components/PlcAddressItem';
|
|
158
|
+
export {PlcCheckbox} from './components/PlcCheckbox';
|
|
159
|
+
export {PlcColorPicker} from './components/PlcColorPicker';
|
|
160
|
+
export {PlcDate} from './components/PlcDate';
|
|
161
|
+
export {PlcDateRange} from './components/PlcDateRange';
|
|
162
|
+
export {PlcInput} from './components/PlcInput';
|
|
163
|
+
export {PlcNumber} from './components/PlcNumber';
|
|
164
|
+
export {PlcRate} from './components/PlcRate';
|
|
165
|
+
export {PlcSelect} from './components/PlcSelect';
|
|
166
|
+
export {PlcTextarea} from './components/PlcTextarea';
|
|
167
|
+
export {PlcTime} from './components/PlcTime';
|
|
168
|
+
export {PlcTimeRange} from './components/PlcTimeRange';
|
|
169
|
+
export {PlcToggle} from './components/PlcToggle';
|
|
170
|
+
export {PlcImage} from './components/PlcImage';
|
|
171
|
+
|
|
172
|
+
export {OuterOperation} from './components/OuterOperation';
|
|
173
|
+
export {_Object} from './components/_Object';
|
|
174
|
+
export {PlcObject} from './components/PlcObject';
|
|
175
|
+
export {Ov} from './components/Ov';
|
|
176
|
+
export {PlcOv} from './components/PlcOv';
|
|
177
|
+
export type {iOvMeta} from './components/$ov/ov.utils';
|
|
178
|
+
export type {
|
|
179
|
+
tPlc,
|
|
180
|
+
tPlcType,
|
|
181
|
+
tPlcGroup,
|
|
182
|
+
tPlcPublicAttrsType,
|
|
183
|
+
iPlcEventType,
|
|
184
|
+
iPlcGroupPropsType,
|
|
185
|
+
iPlcPropsSourceType,
|
|
186
|
+
iPlcPropsProxyConfig,
|
|
187
|
+
iPlcPropsType
|
|
188
|
+
} from './components/Table/plc/utils/plc.utils';
|
|
189
|
+
export type {iTreeNode} from './components/TreeCore/createTreeNode';
|
|
190
|
+
export type {
|
|
191
|
+
iTableOperation,
|
|
192
|
+
iTableInnerOperation,
|
|
193
|
+
iTableInnerOperationConfig,
|
|
194
|
+
iTableOperationPermitMetaConfig,
|
|
195
|
+
iTableOperationPermitData,
|
|
196
|
+
iTableOperationPermitMeta,
|
|
197
|
+
iTableOuterOperation,
|
|
198
|
+
iTableOuterOperationConfig,
|
|
199
|
+
iTableOperationPermitConfig
|
|
200
|
+
} from './components/Table/standard/PlcOperation/PlcOperation.utils';
|
|
201
|
+
export type {iTreeProps, iTreeState, iTreeKey2CheckStatus, iTreeKeyOrNode, iTreeNodeComputedData} from './components/TreeCore/TreeCore.type';
|
|
202
|
+
export type {iTreeNodeWithMenuOption} from './components/TreeNodeWithMenu/treeNodeWithMenu.utils';
|
|
203
|
+
|
|
204
|
+
export {$configuration} from './components/$configuration';
|
|
205
|
+
export {createAddressService} from './components/createAddressService';
|
|
206
|
+
export {createHttp} from './components/createHttp';
|
|
207
|
+
export type {
|
|
208
|
+
iHttpRequestConfig,
|
|
209
|
+
iPlainResponseDataType,
|
|
210
|
+
iHttpResponseDataType
|
|
211
|
+
} from './components/createHttp/http.utils';
|
|
212
|
+
export type {
|
|
213
|
+
iSearchServiceCustomConfig,
|
|
214
|
+
iSearchServiceConfig,
|
|
215
|
+
iSearchServiceDefaultConfig,
|
|
216
|
+
iSearchDataMeta,
|
|
217
|
+
iSearchDataRender,
|
|
218
|
+
} from './components/$search/search.utils';
|
|
219
|
+
export {$search} from './components/$search';
|
|
220
|
+
|
|
221
|
+
export {Address} from './components/Address';
|
|
222
|
+
export {AddressCascade} from './components/AddressCascade';
|
|
223
|
+
export {eAddressTypeEnum} from './components/$address/address.utils';
|
|
224
|
+
export type {iAddressSyncMeta, iAddressLazyMeta} from './components/$address/address.utils';
|
|
225
|
+
export type {iPlainAddressData} from './components/createPlainAddressService';
|
|
226
|
+
export {Empty} from './components/Empty';
|
|
227
|
+
export {ThemeColor} from './components/ThemeColor';
|
|
228
|
+
export {ThemeColorSelector} from './components/ThemeColorSelector';
|
|
229
|
+
export {ThemeLocaleSelector} from './components/ThemeLocaleSelector';
|
|
230
|
+
export {ThemeDarkSelector} from './components/ThemeDarkSelector';
|
|
231
|
+
export {ThemeSizeSelector} from './components/ThemeSizeSelector';
|
|
232
|
+
export {ThemeShapeSelector} from './components/ThemeShapeSelector';
|
|
233
|
+
|
|
234
|
+
export {FormInput} from './components/FormInput';
|
|
235
|
+
export {FormSelect} from './components/FormSelect';
|
|
236
|
+
export {FormCascade} from './components/FormCascade';
|
|
237
|
+
export {FormCheckbox} from './components/FormCheckbox';
|
|
238
|
+
export {FormCheckboxGroup} from './components/FormCheckboxGroup';
|
|
239
|
+
export {FormColorPicker} from './components/FormColorPicker';
|
|
240
|
+
export {FormDatePicker} from './components/FormDatePicker';
|
|
241
|
+
export {FormInputNumber} from './components/FormInputNumber';
|
|
242
|
+
export {FormRadio} from './components/FormRadio';
|
|
243
|
+
export {FormRadioGroup} from './components/FormRadioGroup';
|
|
244
|
+
export {FormRate} from './components/FormRate';
|
|
245
|
+
export {FormSlider} from './components/FormSlider';
|
|
246
|
+
export {FormTimePicker} from './components/FormTimePicker';
|
|
247
|
+
export {FormToggle} from './components/FormToggle';
|
|
248
|
+
|
|
249
|
+
export {FilterFormSingle} from './components/FilterFormSingle';
|
|
250
|
+
export {FilterFormMultiple} from './components/FilterFormMultiple';
|
|
251
|
+
export {FilterService} from './components/FilterService';
|
|
252
|
+
export type {
|
|
253
|
+
iValidateRule,
|
|
254
|
+
iValidateState,
|
|
255
|
+
iAnotherRule,
|
|
256
|
+
iFormItemValidatePropsType,
|
|
257
|
+
iFormValidatePropsType,
|
|
258
|
+
iRegistrationValidator,
|
|
259
|
+
iValidateResult,
|
|
260
|
+
iValidateValueGetter,
|
|
261
|
+
iValidationDisabledFields,
|
|
262
|
+
iValidationReadonlyFields,
|
|
263
|
+
iValidatorParam,
|
|
264
|
+
} from './components/Form/validate/validate.utils';
|
|
265
|
+
|
|
266
|
+
export {TableOptionUtils} from './components/TableOptionUtils';
|
|
267
|
+
export {TableOptionSpace} from './components/TableOptionSpace';
|
|
268
|
+
export type {
|
|
269
|
+
iTableOptionCacheData,
|
|
270
|
+
iTableOptionApplyCacheParam,
|
|
271
|
+
iTableOptionCacheItemData,
|
|
272
|
+
iTableOptionCacheRegistryConfig,
|
|
273
|
+
iTableOptionGetCacheParam
|
|
274
|
+
} from './components/AutoTable/use/useTableOption.cache.utils';
|
|
275
|
+
export type{
|
|
276
|
+
iTableNode,
|
|
277
|
+
iTablePropsType,
|
|
278
|
+
iTableSortData,
|
|
279
|
+
iTableCellRenderScope,
|
|
280
|
+
iTableEventType,
|
|
281
|
+
iTableMessyData,
|
|
282
|
+
iTableMessyRender,
|
|
283
|
+
iTableRowRenderScope,
|
|
284
|
+
iTableSlotsType,
|
|
285
|
+
|
|
286
|
+
TablePropsRowClassFunc,
|
|
287
|
+
TablePropsCellClassFunc,
|
|
288
|
+
TablePropsCellStyleFunc,
|
|
289
|
+
TablePropsHeadCellClassFunc,
|
|
290
|
+
TablePropsHeadCellStyleFunc,
|
|
291
|
+
TablePropsSpanMethod,
|
|
292
|
+
TablePropsConfig,
|
|
293
|
+
} from './components/Table/table/utils/table.utils';
|
|
294
|
+
export {PageThemeUtils, getPrimaryColor} from './components/PageThemeUtils';
|
|
295
|
+
export {BaseColors, BaseGrayColors} from './components/Application/theme/theme';
|
|
296
|
+
export {ThemePrimaryColors} from './components/ThemePrimaryColors';
|
|
297
|
+
export {ThemeEditor} from './components/ThemeEditor';
|
|
298
|
+
export {useReferenceTrigger} from './components/useReferenceTrigger';
|
|
299
|
+
export {usePopupTrigger} from './components/usePopupTrigger';
|
|
300
|
+
export {useWatchAutoClear} from './components/useWatchAutoClear';
|
|
301
|
+
export {nextPopupId} from './components/nextPopupId';
|
|
302
|
+
export {usePopupManager} from './components/usePopupManager';
|
|
303
|
+
export {useEdit, EditProps, EDIT_PROVIDER} from './uses/useEdit';
|
|
304
|
+
export type {tEditComputed, tEditControl, EditProvideData} from './uses/useEdit';
|
|
305
|
+
export {useStyle, StyleProps, ThemeShape, ThemeSize, ThemeStatus, InputMode} from './uses/useStyle';
|
|
306
|
+
export type {tStyleComputed, UseStyleProvideData} from './uses/useStyle';
|
|
307
|
+
export {AutoLoadingObserver} from './components/AutoLoadingObserver';
|
|
308
|
+
export {lighter, darken} from './utils/color.utils';
|
|
309
|
+
export {createRequestInterceptor} from './components/createRequestInterceptor';
|
|
310
|
+
export type{iRequestInterceptor} from './components/createRequestInterceptor';
|
|
311
|
+
export {createVirtualDraggier} from './components/createVirtualDraggier';
|
|
312
|
+
export {createWebDraggier} from './components/createWebDraggier';
|
|
313
|
+
export {createScrollDraggier} from './components/createScrollDraggier';
|
|
314
|
+
export {loadFile} from './components/loadFile';
|
|
315
|
+
export {getDeviceInfo, clearDeviceInfo, eDeviceType} from './utils/getDeviceInfo';
|
|
316
|
+
export {useTableFilter} from './components/useTableFilter';
|
|
317
|
+
export {createSimpleDate} from './components/createSimpleDate';
|
|
318
|
+
export {calcSpans, calcColSpans, calcRowSpans} from './components/Table/plc/use/useTableAutoSpan';
|
|
319
|
+
|
|
320
|
+
// @ts-ignore
|
|
321
|
+
setComponentPrefix(globalComponentPrefix);
|
|
322
|
+
|
|
323
|
+
export const version = packageJson.version;
|