flame-plus 0.1.26 → 0.1.28

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