bowen
2023-10-18 c24e0efd1d2c7148a3df9c8b12a2a500910a3590
提交 | 用户 | age
642d48 1 ## 2.8.0(2021-11.03)
V 2
3 ### Upgrade Instructions
4
5 - Package manager changed from `yarn` to `pnpm`
6 - Delete `node_modules` and `yarn.lock`, install `pnpm` globally
7 - Execute `pnpm install`
8
9 ### ✨ Features
10
11 - **Others**
12   - The `VITE_PROXY` configuration in the `.env` file supports single quotes
13   - Remove warnings during build
14
15 ### 🐛 Bug Fixes
16
17 - **BasicTable**
18   - Fix the issue that editable cells cannot be submitted in some cases
19   - Fix the problem that the `inset` attribute does not work
20   - Fix the problem that the performance of `useTable` and `reload` method `await` of `BasicTable` instance are inconsistent
21   - Fix the issue that `clickToRowSelect` would ignore the disabled state of the row selection box
22   - Fix the problem that the page of `BasicTable` will be reset in some cases
23   - Modify the `deleteTableDataRecord` method
24 - **BasicModal**
25   - Fixed the problem that `Modal` could not be closed even when clicking on the mask and pressing the `Esc` key
26   - Fixed the issue that clicking the close button and the blank area next to the maximize button would also cause `Modal` to close
27 - **BasicTree** Fix the problem that the node slot does not work
28 - **CodeEditor** Fix the problem that may cause `Build` failure
29 - **BasicForm** Fix the problem that the content width of the custom FormItem component may be out of range
30 - **ApiTreeSelect** Fix the problem that the change of `params` failed to trigger the re-request of api data
31 - **Others** -Fixed an issue where multiple tabs would not jump to routing when closing tabs in some cases
32   - Fix the issue that some components may cause abnormal hot update
33   - Fix the problem that some sub-components of `antdv` will be reported in the build process when directly `import` part of the `antdv`, such as: TabPane, RadioGroup
34
2aa5e5 35 ## 2.7.2(2021-09-14)
V 36
37 ### ✨ Features
38
39 - **BasicForm** New `Divider` in the form component for dividing the area of longer forms
40 - **BasicTable**
41   - Cell editor adds submit callback, which will decide whether to submit data to the form based on the result returned by the callback function
42   - Add check method for row editing, allowing only check but not submit value, so asynchronously save data successfully before submit to table
43   - Fix the problem that the `rowClassName` property cannot be used at the same time as `striped`.
44 - New component **MarkdownViewer** for displaying rich text in Markdown format
45
46 ### 🐛 Bug Fixes
47
48 - **CodeEditor** Fix JSON editor throwing exception when formatting invalid JSON text
49 - **Tinymce** fixes an issue where inline mode throws an exception in some scenarios
50 - **BasicTable**
51   - Repair the problem that the editing icon is not displayed when the content of editable cell is empty
52   - Repair the problem that the total row at the end of the table sometimes fails to align with the columns in the main part of the table.
53 - **MarkDown** Repair the problem that the value of initial value property does not work.
54 - **BasicUpload** Repair the problem that `accept` property does not support `MIME` and suffix name starting with dot.
55 - **ApiSelect** Fix the problem of type definition of `value` property.
56 - **Other**
57   - Repair the problem that some wrapper components give error when using slots.
58   - Repair the problem that `theme` parameter of `useECharts` does not work.
59   - Repair the problem that when `Token` is invalid, pressing F5 to refresh the page may cause abnormal page loading.
60   - Repair the problem that the improper call of `useRedo` may lead to `path` redirection abnormality.
61   - Repair the problem that `vite` custom mode name does not support underscore.
62
43658e 63 ## 2.7.1(2021-08-16)
V 64
65 - Upgrade vue 3.2, if the operation fails, delete node_modules and reinstall it
66
67 ### ✨ Features
68
69 - **BasicTree** Add search function related properties and methods
70 - **BasicForm** added `alwaysShowLines` to set the number of lines kept displayed when folding
71
72 ### 🐛 Bug Fixes
73
74 - **Cropper** Fix the problem of failure to destroy in time
75 - **BasicTable**
76   - Fix the problem that `CellFormat` cannot use `Map` type data
77   - Fixed an issue where the editable cell failed to display the `0` value correctly
78   - Fixed the issue that selection-change event failed to trigger correctly when unchecked
79   - Fix the problem that the background color of the full screen state under the light theme is incorrect
80   - Fix the problem of obtaining complete data when `getSelectRows` does not support remote data cross-page selection
81   - Fix the issue that the `size` property provided for editing components in `editComponentProps` is invalid
82 - **Qrcode** Fixed the problem that the QR code component could not be drawn in time when it was created
83 - **BasicModal** Fix the problem that the `helpMessage` property does not work
84 - **BasicButton** Fix the problem that the button style performance is inconsistent with the official antd
85 - **Others** Fix the problem that `useRedo` (reload the current route) will lose route `params` data
86
c82040 87 ## 2.7.0(2021-08-03)
V 88
89 ## (Breaking changes) Breaking changes
90
91 - Restore the project `tailwindcss` back to `windicss`, tried `tailwindcss`, there may be a lot of problems, first switch back to `windicss` to improve development efficiency and lower switching costs.
92   - There are currently incompatible areas of the project
93     - The wording of `xl:!m-4` needs to be changed to `!xl:m-4`, note that only `!` is incompatible. If you don’t use it, you don’t need to change it.
94     - The memory overflow problem may still exist (low frequency, just restart, restart vite faster)
95
96 ### ✨ Features
97
98 - **Preview** Add new properties and events
99 - **Dark Theme** added support for tailwindcss night mode
100 - **Others** add setTip method for useLoading
101
102 ### 🐛 Bug Fixes
103
104 - **ApiTreeSelect** Fixed the problem of failing to monitor `params` changes correctly
105 - **ImgRotateDragVerify** Fix the problem that the component `resume` method cannot be called
106 - **TableAction** Fix the problem that the stopButtonPropagation property does not work in some cases
107 - **PageWrapper** Fix the problem of invalid `class` attribute
108 - **BasicTree** Fix the problem that the `checkAll` method will affect the `disabled` state node
109 - **BasicTable**
110   - Fix the issue that editable cells do not support `ellipsis` configuration
111   - Fixed the problem that the pop-up layer of sub-components (popconfirm and edit components such as select and treeSelect) cannot be seen in full-screen mode
112   - Fixed an issue where when `expandRowByClick` is enabled, clicking non-expandable rows may cause style errors
113   - Fix the problem that the dynamic change of `pagination` property does not take effect
114   - Fix the problem that `getSelectRows` does not support the child data of the tree table -**Dark Theme** Fix the color matching problem under the dark theme
115   - Fix the background color of the selected node of the `Tree` component
116   - Fix the color configuration of the `Alert` component
117   - Fix the problem of the button color of `link` type in the disabled state
118   - Fix the style problem of checked checkboxes in `Tree` -**Others** Fix the problem that useScript failed to automatically remove the script node
119
596670 120 ## 2.6.1(2021-07-19)
V 121
122 ### ✨ Features
123
124 - **NoticeList** Add pagination, auto omit for overlength, title click event, title strikethrough, etc.
125 - **MixSider** Optimize the style of the bottom collapse button in the Mix menu layout to be consistent with the style of other menu layouts
126 - **ApiTreeSelect** Extend `TreeSelect` component of `antdv` to support remote data source, similar to `ApiSelect`.
127 - **BasicTable** New `ApiTreeSelect` editing component
128 - Different backend home pages can be specified for different users.
129   - Add `homePath` field (optional) to the user information returned by the `getUserInfo` interface to customize the home page path for the current user
130
131 ### 🐛 Bug Fixes
132
133 - **BasicTable**
134   - Fix scrollbar style issue (removed scroll style patch)
135   - Fix the alignment problem of cells with expanded icons in tree tables
136   - Add `headerTop` slot.
137   - Fix the color display of the operation column button in disabled state.
138   - Repair the problem that the values of editable cells cannot be updated by modifying `dataSource` directly.
139   - Repair the problem of data replay when using `ApiSelect` to edit components.
140   - Repair the problem that editing components may report `onXXX` type error in some scenarios.
141 - **TableAction**
142   - Create Tooltip component only if `action.tooltip` exists.
143   - Fix the problem that the content of the round button inside the component is not centered
144 - **AppSearch** Fix the problem that the hidden menu may be searched.
145 - **BasicUpload** Repair the problem of error when handling non-`array` values.
146 - **Form** Repair the `suffix` slot style problem of `FormItem`.
147 - **Menu**
148   - Repair the hovering trigger logic of the left mixed menu
149   - Repair the problem that the top bar menu is wrong when displaying menu items that need to be hidden.
150   - Fix the left mixed menu in hover trigger mode will jump to route directly when there is no submenu and it is activated
151 - **Breadcrumb** Repair the problem that the menu with redirection cannot be jumped when clicked
152 - **Markdown** fixes an initialization exception and an issue where value was not set dynamically correctly
153 - **Modal** Make sure props are passed correctly
154 - **MultipleTab** fixes an issue that could accidentally create login route tabs
155 - **BasicTree** Fix the problem that the search function may cause `checkedKeys` to be lost
156 - **CodeEditor** Fix the problem that value does not support v-model usage.
157 - **CountdownInput** Fix the problem that `input` slot is not supported.
158 - **ApiSelect** Fix the problem that the `options-change` event parameter is not the standard `options` data used by `select
159 - **Other**
160   - Fix the problem that the configuration of default menu collapse does not work
161   - Repair the problem that `safari` browser reports an error and the website cannot be opened.
162   - Repair the problem that eslint keeps error due to endOfLine after pulling the code on window.
163   - Fix `Vue Router warn` caused by dynamic routing
164
165 ### 🎫 Chores
166
167 - Add test environment test command
168
f47784 169 ## 2.6.0(2021-07-04)
V 170
171 ### ✨ Features
172
173 - **Axios** New `withToken` configuration to control whether the request carries a token or not
174 - **BasicUpload**
175   - New `preview-delete` event triggered when deleting a file in preview `Modal`.
176   - `value` supports `v-model` usage
177 - **Route configuration**
178   - Add `ignoreRoute` to generate menu only in `ROUTE_MAPPING` or `BACK` permission mode
179   - Add `hidePathForChildren` configuration to ignore this level `path` when generating menus for child items
180 - **TableAction** Add `tooltip` configuration to add tooltip hint for button
181 - **CropperAvatar**
182   - Added `value` to set the current avatar
183   - Added `onChange` to accept avatar cropping and upload success event
184   - New `btnText`, `btnProps` for customizing the text and properties of the upload button
185   - Add tooltips to the action buttons in `Modal` for cropping
186 - **Modal** Add tooltip for action button in top right corner
187
188 ### 🐛 Bug Fixes
189
190 - **Modal**
191   - Fix the problem that the mask cannot be closed by clicking on it.
192   - Fix `setModalProps` does not support setting `defaultFullscreen`.
193 - **Table**
194   - Fix the problem that `editComponentProps` doesn't support `onChange`.
195   - Fix the problem that `selection-change` event is not triggered when `clickToRowSelect` is enabled.
196   - Fix the problem that global configuration `fetchSetting` may be accidentally modified by local configuration.
197   - Fix the problem that the parameter of `handleSearchInfoFn` contains redundant blank keys.
198   - Repair the problem that when rowSelection.onChange is provided for table, the selected items of table cannot be changed manually.
199   - Fix the problem that the scrollbar continues to be displayed even when it is not needed to be displayed.
200 - **Icon** Repair the problem that SvgIcon is missing some styles.
201 - **Menu**
202   - Repair the problem that single-level menu refreshing will not be activated in route mapping mode.
203   - Repair the problem that the collapse customization at the bottom of the side menu is invalid.
204 - **Form** Repair the type definition of `submitButtonOptions` and `resetButtonOptions`.
205 - **PopConfirmButton** Remove the redundant `title` on `Button`.
206 - **Axios** Fix the problem that `params` and `data` data cannot be submitted at the same time when non-`GET` requests are made
207 - **Other**
208   - Repair the problem that the lock screen function can skip the lock state by refreshing the page or copying the URL to open a new browser tab
209   - Repair the problem that `Token` won't be synchronized when multiple windows open pages at the same time.
210   - Repair the problem that `hasPermission` does not work in `ROLE` permission mode.
211 - **Table** Repair the problem that the parameter of `handleSearchInfoFn` contains extra blank keys.
212 - **Tailwindcss** Remove console warning
213
f9cda2 214 ## 2.5.2(2021-06-27)
V 215
216 ### ⚡ Performance Improvements
217
218 - **Icon** Remove the global registration of Icon components to prevent hot update issues under certain circumstances
219
220 ### ✨ Features
221
222 - **Menu** Added `permissionMode=PermissionModeEnum.ROUTE_MAPPING` mode
223   - The project is changed to this mode by default, and the original menu file is deleted
224   - If you have written the menu before, you can change to `PermissionModeEnum.ROLE` mode
225
81a0f4 226 ## 2.5.1(2021-06-26)
V 227
228 ### ⚡ Performance Improvements
229
230 - Upgrade `vue` and `ant-design-vue` versions to solve compatibility issues
231 - **Tree** Performance optimization
232
233 ### 🐛 Bug Fixes
234
235 - **Table** Fix page jitter problem
236 - **Upload** Make sure to carry custom parameters
237 - **Dropdown** Fix the icon display problem of popConfirm
238 - **Table** Fix the problem that the editing event of the tree table is abnormal
239 - **Table** Fix the problem that when the table data is empty, the value returned by getDataSource is not the data source used by the table
240
8eba7f 241 ## 2.5.0(2021-06-20)
V 242
243 ## (Breaking changes) Breaking changes
244
245 - Change the project `windicss` to `tailwindcss` to solve the memory overflow problem
246   - There are currently incompatible areas of the project
247     - The wording of `!xl:m-4` needs to be changed to `xl:!m-4`, note that only `!` is incompatible. If you don’t use it, you don’t need to change it.
248     - The new features of `windicss` itself need to be adjusted, for example, `Attribute` mode is not compatible
249
250 ### ✨ Refactor
251
252 - Remove `useExpose` and use `expose` provided by the component itself instead
253
254 ### ⚡ Performance Improvements
255
256 - **Locale** merge multi-language files to reduce the number of files
257 - **Utils** Mitt default export is changed from `Class` to `Function`
258 - **Axios** `isTransformRequestResult` is renamed to `isTransformResponse`
259
260 ### ✨ Features
261
262 - **CropperImage** `Cropper` Avatar cropping adds circular cropping function
263 - **CropperAvatar** Added avatar upload component
264 - **Drawer** `useDrawer` added `closeDrawer` function
265 - **Preview** Added `createImgPreview` picture preview function
266 - **Setup** New guide page example
267 - **Tests** Add jest test suite, Vue component single test is not currently supported
268 - **Axios** Added `authenticationScheme` configuration to specify the authentication scheme
269 - **Setting** Added `sessionTimeoutProcessing` project configuration item, used to configure how to deal with session timeout
270
271 ### 🐛 Bug Fixes
272
273 - **Modal** fix full screen height calculation error
274 - **Modal** Fix the problem that the shutdown event is triggered multiple times
275 - **PageWrapper** fix the height calculation problem
276 - **FlowChart** Repair drag and drop menu missing
277 - Fixed Iframe routing error in background mode
278 - **PageWrapper** Fix the height calculation problem when footer and global footer are opened at the same time
279 - **Menu** Fix the jitter problem of menu folding animation
280 - **Store** fixed type error after pinia version upgrade
281
2c5351 282 ## 2.4.2(2021-06-10)
V 283
284 ### ✨ Refactor
285
286 - `CountTo` component refactoring
287
288 ### ✨ Features
289
290 - `radioButtonGroup` supports `boolean` value
291 - `useModalInner` added `redoModalHeight` to reset the height of `Modal` inside Modal
292 - `useECharts` added `getInstance` to obtain instances of `echart`
293 - `TableAction` added `stopButtonPropagation` to prevent the action button click event from bubbling
294 - `BasicTable` in the row edit mode, you can get or set the value of other editing components in the column
295 - The `ApiSelect` component will automatically re-fetch the data after the `params` is changed
296 - `TableImg` component improvement
297 - `BasicTable` added `columns-change` event to monitor the user to change the sorting, display, and fixed status of columns
298 - `Tinymce` supports dynamic modification readonly
299 - `BasicTable` added `updateTableDataRecord` method to update the specified row data
300 - `useModal` added `closeModal` method to close `Modal`
301
302 ### 🐛 Bug Fixes
303
304 - Fix the problem that `redoModalHeight` cannot reduce the height
305 - Fix the problem that the schema data of `BasicForm` does not take effect
306 - Fix the problem that multiple tags may cause `KeepAlive` to fail
307 - Fix the problem that the default `axios` interceptor cannot handle custom code
308 - Fix the height issue of the lock screen pop-up window
309 - Fixed the problem that the half-selected state of the `Column Display` checkbox of `BaiscTable` was incorrectly displayed
310 - Fixed the problem that the preview list of the `BasicUpload` component could not be displayed in some cases
311 - Fix the problem that the `options` setting of ` RadioButtonGroup``disabled ` does not take effect
312 - Fix the problem that the button for uploading pictures in the read-only mode of the `Tinymce` component is still available
313 - Fix the stuttering problem of `BasicForm` under certain circumstances
314 - Fix the problem that "directory" routing does not work
315
1a429d 316 ## 2.4.1(2021-06-01)
V 317
318 ### ✨ Features
319
320 - Add `DatePicker` and `TimePicker` components to editable tables
321 - Added `defaultExpandLevel` configuration to `Tree` component
322
323 ### ⚡ Performance Improvements
324
325 -Menu search default focus
326
327 ### 🐛 Bug Fixes
328
329 - Fix known issues of `CodeEditor`
330 - Fix the issue of `i18n` console warning
331 - Fix the problem that the editable table `align` configuration does not take effect
332 - Ensure that `axios` only processes `Object` parameters
333 - Fix the failure of the `defaultExpandAll` configuration of the `Tree` component
334 - Fix the problem of missing dividing line in `TableAction`
335 - Fix the known issues of the table
336 - Fix that the lang attribute of HTML will not be set when reloading due to the first loading or changing the language
337
4f0d45 338 ## 2.4.0 (2021-05-25)
afa0ea 339
V 340 ### ✨ Features
341
342 -New graphical editor example -New code editor (including Json editor) -Added `JsonPreview`Json data viewing component -The fields of the data column and actionColumn of the table can be controlled according to the authority and business. -Added an example of a permission control table (AuthColumn.vue) -Added user login expiration example
343
344 ### ⚡ Performance Improvements
345
346 -Consolidate some language files to reduce the number of files
347
348 ### 🐛 Bug Fixes
349
350 -Fix the flashing white screen when the dark theme refreshes -Fix the problem that other functions are invalid when the tab is closed -Fix known issues in the form -Fix the automatic lock screen failure
351
51a9f6 352 ## 2.3.0 (2021-04-10)
V 353
354 ## (Breaking changes) Breaking changes
355
356 - Use `pinia` to replace `vuex`, `vuex-module-decorators`.
357
358   -Impact, if you used vuex-module-decorators yourself before, you need to transform it to pinia.
359
360   - the reason: -pinia is basically similar to vuex5api and is easy to understand. -Subsequent switching to vuex5 has a very low cost and can also be used as a third-party state management library
361
362 - Remove `useKeyPress` and use `vueuse`-`onKeyStroke` instead
363 - Remove `useDebounceFn` and use `vueuse`-`useDebounceFn` instead
364 - Remove `useThrottle` and use `vueuse`-`useThrottleFn` instead
365
366 ### ✨ Features
367
368 - Tabs support persistent storage
369
370 ### ✨ Refactor
371
372 - Remove `useElResize`
373
374 ### 🐛 Bug Fixes
375
376 - Login page style fix
377 - Fix the known problems of the menu
378 - Fix the problem of theme style switching
379
d2a1e1 380 ## 2.2.0 (2021-04-06)
V 381
382 ### ✨ Features
383
384 - Added `headerTitle` slot
385 - New printing example
386 - Added about interface
387
388 ### ✨ Refactor
389
390 - Remove useFullScreen function
391 - tinymce changed from Cdn to npm (the package size is too large)
392 - Dashboard refactoring
393 - Remove ApexCharts and examples
394
395 ### 🐛 Bug Fixes
396
397 - Make sure the breadcrumbs are displayed correctly
398 - Fixed the issue of tinymce upload button disappearing in full screen mode
399 - Make sure that the title changes normally after logging in again
400 - Ensure that the background mode login is normal
401 - Fix TableAction click event issue
402
2658e1 403 ## 2.1.1 (2021-03-26)
V 404
405 ### ✨ Features
406
407 - Added hideChildrenInMenu configuration for routing. Used to hide submenu
408 - Built-in expand/collapse all functions in the tree form
409
410 ### ✨ Refactor
411
412 - Refactor the routing multi-layer mode to solve the problem of multiple implementations of nested keepalives
413
414 ### 🐛 Bug Fixes
415
416 - Ensure that the CountDownInput component is reset to the empty value
417 - Fix the display problem on the small screen in split mode
418 - Fix table height calculation problem
419 - Fix the problem that components cannot be obtained by background routing
420 - Fix Modal component loadingTip configuration does not take effect
421 - Fix the background permission command does not take effect
422 - Make sure the progress bar is closed properly
423 - Fix the problem of invalid table check column configuration
424 - Ensure that the first level menu can be hidden
425 - Ensure that the hidden fields of the form are verified properly
426
427 ### 🎫 Chores
428
429 - Remove ls-lint
430
431 ### 🎫 Chores
432
433 - 移除 ls-lint
434
9cf673 435 ## 2.1.0 (2021-03-15)
V 436
437 ### ✨ Features
438
439 - Added svg mode to icon selector
440 - Added time component
441 - Added AutoNavi/Baidu/Google Map example
442
443 ### ✨ Refactor
444
445 - Refactor the project to solve the hot update problem caused by circular dependencies
446 - Remove vueHelper/useClickoutside, use @vueuse/core instead
447
448 ### 🐛 Bug Fixes
449
450 - Ensure that the value of `table action` is updated correctly
451 - Fix the animation of page switching cannot be closed
452 - Fix `PageWrapper`title not showing
453 - Fix the known issues of the table
454 - Fix the problem that the BasicTree component can't customize the title
455 - Fix the button style problem after theme switching
456
371af1 457 ## 2.0.3 (2021-03-07)
V 458
459 ### ✨ Features
460
461 - `BasicTree` added `clickRowToExpand`, used to click tree node to expand
462 - Added SvgIcon plugin and examples
463 - Add the department tree on the left side of the account management interface·
464
465 ### ⚡ Performance Improvements
466
467 - Pagination parameters are no longer carried when the table is closed
468 - The login page monitors the carriage return event to log in
469 - When the adaptive size of the table is set, the height is filled according to the screen.
470 - Tree scroll bar optimization
471 - Optimize the loading speed of local development
472
473 ### 🐛 Bug Fixes
474
475 - Fix known issues with `Description`
476 - Fix known issues with `BasicForm`
477 - Fix the logic problem of show attribute of ActionItem under `BasicTree`
478 - Fix the style error of the tree component demo example
479 - Repair account management to add new but not cleared old data
480 - The form component should allow the setFieldsValue method to be null or undefined
481 - Ensure that the single-level breadcrumbs jump correctly
482 - Ensure that the Form component does not verify hidden form items
483
ee5fb2 484 ## 2.0.2 (2021-03-04)
553467 485
V 486 ### ✨ Refactor
487
488 - Refactored multi-language modules to support lazy loading and remote loading
489
490 ### ✨ Features
491
492 - axios supports form-data format request
493 - Added icon selector component (support local and online methods)
494 - Added WebSocket examples and service scripts
495 - Added the `renderIcon` property to the Tree component to control the display of level icons
496 - Tree->actionItem added show attribute, used to dynamically control button display
497 - New toolbar/title/search function for Tree
498 - Added department management/password modification/account management/role management/menu management sample interface
499
500 ### ⚡ Performance Improvements
501
502 - Optimized login interface animation
503 - Fix the problem of excessively large github warehouse.
504 - Hide table full screen button by default
505 - `crypto-es` is changed to `crypto-js` to reduce the package size
506 - `types` directory moved to the root directory, compatible with other directory global types
507
508 ### 🐛 Bug Fixes
509
510 - Fix the warning problem of verification code component
511 - Fix the table cannot get the selected row correctly
512 - Fixed modal height calculation error in full screen state
513 - Fix some table style issues
514 - Fix the invalidation of the tree form `indentSize` setting
515
562189 516 ## 2.0.1 (2021-02-21)
V 517
518 ### ✨ Refactor
519
520 - Refactored login page, new registration page/reset password page/mobile phone login/QR code login
521
522 ### ✨ Features
523
524 - Added the `settingButtonPosition` configuration item for configuring the position of the `settings` button
525 - `modal` can switch the full screen by double-clicking the head
526 - Added `CountDownInput` component
527
528 ### ⚡ Performance Improvements
529
530 - Optimize the editable center style and the width of the drop-down box is too short
531 - The `edit-change` event listener when the table is added and edited
532
533 ### 🐛 Bug Fixes
534
535 - Fix image preview style error
536 - Fix icon style problem
537 - Fix the drop-down echo problem of editable table
538
6da237 539 ## 2.0.0 (2021-02-18)
V 540
541 ## Breaking changes
542
543 - `echarts` is upgraded to 5.0 and introduced on demand (just use `useECharts`).
544
545 ### ✨ Refactor
546
547 - Removed `global.less`, `mixin.less`, `design/helper`, replaced by `windicss`, and need to modify the corresponding styles if they are useful
548
549 ### ✨ Features
550
551 - useModal adds the return value function `redoModalHeight`, which is used to refresh the modal height when the modal is dynamic content
552 - Upgrade husky to 5.0
553 - Added `brotli`|`gzip` compression and related test commands
554 - Re-introduction of `windicss` (same as `tailwind`). Faster in speed
555
556 ### ⚡ Performance Improvements
557
558 - Adjust the return value of the interface to obtain user information in array format
559 - Fix the error-log list as the system route
560
561 ### 🐛 Bug Fixes
562
563 - Fix the issue of upload component maxNumber invalid
564 - Fix package sourcemap error report
565 - Fix code debugger location display error
566 - Fix the issue of mock plugin post request error
567 - Fix some themes color value error
568 - Fix the table in editable row status and press Enter to confirm
569
570 ### 🎫 Chores
571
572 - Documentation update
573 - Upgrade ant-design-vue to `2.0.0`
574 - Upgrade vite to `2.0.0`
575
562e2a 576 ## 2.0.0-rc.18 (2021-02-05)
V 577
578 ### ✨ Features
579
580 - `ApiSelect` adds `numberToString` property, which is used to convert all the value of `number` into `string`
581 - Added theme color switch
582 - Packed image compression
583
584 ### ⚡ Performance Improvements
585
586 When mock is not used, move `mock.js` out of the package file
587
588 ### 🐛 Bug Fixes
589
590 - Fix modal height calculation error
591 - Fix the pop-up menu when the menu is clicked on the tab when the menu is collapsed
592 - Fix the problem that the initial value of form is 0
593 - Fix table wrapping problem
594 - Fix the menu outside link does not jump
595 - Fix the display problem at the top of the menu
596 - Fix the issue of `modifyVars` configuration failure
597
322d7c 598 ## 2.0.0-rc.17 (2020-01-18)
V 599
600 ### ✨ Refactor
601
602 - Added `SimpleMenu` component to replace the left menu component (the top menu is not replaced, the function should be as simple as possible without stuck). Solve the menu stuck problem.
603 - The `ant-design-vue` component is no longer registered globally. In order to better coordinate with the introduction of css on demand. If you need to register globally, you need to add it yourself
604
605 ### ✨ Features
606
607 - `css` import on demand
608
609 ### 🐛 Bug Fixes
610
611 - Fix `TableAction` icon problem
612 - Fix the problem of missing menu folding buttons
613 - Fix menu related issues
614 - Fix moment multilingual issue
615
b803c4 616 ## 2.0.0-rc.16 (2020-01-12)
d7dc09 617
V 618 ### ✨ Refactor
619
620 - Independent component configuration to `/@/settings/componentsSetting`
621 - `colorSetting` and `designSetting` are now merged into `designSetting`
622 - `ant-design-vue` component registration moved to `components/registerComponent`
623 - Remove the `setup` folder
624 - Upgrade to `vite2`
625 - Image preview is changed to `Image` component implementation, temporarily removing functional usage
626
627 ### ✨ Features
628
629 - Added `mixSideTrigger` configuration. Used to configure how to open the mixed mode menu on the left. Optional `hover`, default `click`
630 - Added `mixSideFixed` configuration. Used to fix the left mixed mode menu
631 - Added `height` and `min-height` properties to the modal component
632 - Added `PageWrapper` component. And applied to the sample page
633 - Added tab folding function
634 - Compatible with older browsers
635 - tinymce new image upload
636
637 ### 🐛 Bug Fixes
638
639 - Fix known issues with table column configuration
640 - Restore the `isTreeTable` property of the table
641 - Fix table memory overflow problem
642 - Fix the function of `layout` shrinking and expanding in split mode
643 - Fix modal height calculation error
644 - Fix file upload error
645
799a69 646 ## 2.0.0-rc.15 (2020-12-31)
V 647
648 ### ✨ Table destructive update
649
650 - Refactored editable cells and editable rows. See examples for details. The writing has changed. For editable tables.
651
652 - Form editing supports form validation
653
654 - Added the following configuration in the table column configuration
655
656 ```bash
657 {
658
659   # Whether to display columns by default. Those that are not displayed can be opened in the column configuration
660   defaultHidden?: boolean;
661   # Help text on the right side of the column header
662   helpMessage?: string | string[];
663   # Custom formatting Cell content. Support time/enumeration automatic conversion
664   format?: CellFormat;
665
666   # Editable
667   # Is it an editable cell
668   edit?: boolean;
669   # Is it an editable line
670   editRow?: boolean;
671   # Edit status.
672   editable?: boolean;
673   # Edit component
674   editComponent?: ComponentType;
675   # The parameters of the corresponding component
676   editComponentProps?: Recordable;
677   # Check
678   editRule?: boolean | ((text: string, record: Recordable) => Promise<string>);
679   # Value enumeration conversion
680   editValueMap?: (value: any) => string;
681   # Trigger editing Zhenghang
682   record.onEditRow?: () => void;
683 }
684
685 ```
686
687 ### ✨ Table reconstruction
688
689 - Added `clickToRowSelect` attribute. Used to control whether the clicked row is checked or not
690 - Monitor row click event
691 - Add column drag and drop and column fix function for the table column configuration button.
692 - Added `defaultHidden` attribute to table column configuration. Used to hide by default. You can configure the tick display in the table column
693 - More powerful column configuration
694 - useTable: Support for dynamically changing parameters. You can pass in `Ref` type and `Computed` type for dynamic changes
695 - useTable: Added return function `getForm`. Can be used to manipulate forms in the form Fix known issues in the table
696
697 ### ✨ Features
698
699 - Added `v-ripple` water ripple command
700 - Added the left menu mixed mode
701 - Add an example of markdown embedded in the form
702 - Add an example of a page outside the main frame
703 - `route.meta` added `currentActiveMenu`, `hideTab`, and `hideMenu` parameters to control the display and hide of the crumb-level menu on the detail page.
704 - Added breadcrumb navigation example
705 - form: Added `suffix` attribute to configure suffix content
706 - form: Added remote drop-down `ApiSelect` and examples
707 - form: Add `autoFocusFirstItem` configuration. Used to configure whether to focus on the first input box of the form
708 - useForm: Support for dynamically changing parameters. You can pass in `Ref` type and `Computed` type for dynamic changes
709
710 ### ⚡ Performance Improvements
711
712 - Optimize the scroll bar components of `modal` and `drawer`
713 - table: remove the `isTreeTable` attribute
714 - Import `less` files globally. No need to manually re-introduce the component
715
716 ### 🎫 Chores
717
718 - Upgrade `ant-design-vue` to `2.0.0-rc.7`
719 - Upgrade `vue` to `3.0.5`
720
721 ### 🐛 Bug Fixes
722
723 - Fixed the issue of missing scroll bars in mixed mode
724 - Fix the invalid configuration of environment variables and the logo address problem in history mode
725 - Fix the calculation error of width and height caused by switching page of chart library
726 - Fixed the issue of multi-language configuration `Locale.show` causing the configuration not to take effect
727 - Fix routing type error
728 - Fix the problem of invalid permissions when the menu is split
729 - Iframe loads early when closing multi-tab pages
730 - Fix known issues with `modal` and `drawer`
731 - Fix the problem of mixing mode adaptation in the left menu
732
689425 733 ## 2.0.0-rc.14 (2020-12-15)
V 734
735 ### ✨ Features
736
737 -Remove the left menu search, add the top menu search function -Layout mobile terminal adaptation. Business page is not adapted -axios join the joinTime configuration. Control whether the response includes a timestamp
738
739 ### ⚡ Performance Improvements
740
741 -Import components asynchronously -Optimize the overall structure -Replace the default scroll bar of the menu as a scroll component -Menu performance optimization
742
743 ### 🎫 Chores
744
745 -Return to the top to adjust the style to avoid covering other elements -Upgrade `ant-design-vue` to `2.0.0-rc.5` -Refresh button layout adjustment -`route.meta` removes the `externalLink` attribute
746
747 ### ✨ Refactor
748
749 -`openModal` and `openDrawer` third parameter `openOnSet` is set to true by default
750
751 ### 🐛 Bug Fixes
752
753 -Fixed an issue where multi-level routing cache caused components to render multiple times -Fixed the problem of disappearing after switching the map chart -Fix the issue of successful login and notify disappearing -Modify the names of `VirtualScroll` and `ImportExcel` components as `VScroll` and `ImpExcel` to temporarily solve the memory overflow of components containing keywords in the vue template -Fix axios case problem -Fix button style problem -Fix the problem of menu split mode -Fix the issue of invalid data transmission when using emits in `Modal` and `Drawer` components -Fix the known problems of the menu -Fix the issue of upload component api failure -Fix the problem of invalid menu permission filtering
754
596e70 755 ## 2.0.0-rc.13 (2020-12-10)
V 756
757 ## (Breaking changes) Breaking changes
758
759 -Route reconstruction, the previous format is no longer supported. Change to support the original default structure of vue-router, the specific format can be changed by referring to the example. Realize multi-level route caching, and no longer convert routes to level 2. -Refactor breadcrumbs and use antd's breadcrumbs component. The previous component has been deleted
760
761 ### ✨ Features
762
763 -Restore the default loading of antdv, refactor the `Loading` component, and add `useLoading` and `v-loading` instructions. And add examples -i18n supports vscode `i18n-ally` plugin -New examples of increased routing cache -Packaged code split (experimental) -Extract upload address to global variable, package can be dynamically configured
764
765 ### ✨ Refactor
766
767 -Tree component ref function call to delete `$` -Reconstruction and beautification of the lock screen interface, delete unnecessary background pictures
768
769 ### ⚡ Performance Improvements
770
771 -Page switching loading logic modification. Regardless of whether the loaded page is closed or not, loading will not be displayed when opened again (pages that have been opened are opened again faster, and loading is not required, and the logic of the top progress bar is the same), and it will be restored after refreshing.
772
773 ### 🎫 Chores
774
775 -First screen loading modification -Upgrade `vue` to `3.0.4` -Upgrade `ant-design-vue` to `2.0.0-rc.3` -Re-introduction of `vueuse` -Remove the `afterCloseLoading` attribute in route meta -Documentation update
776
777 ### 🐛 Bug Fixes
778
779 -Fix form i18n error -Fix the inconsistent size of menu icons -Fix the calculation of the top menu width -Fix table tabSetting problem -Repair file upload and delete invalidation -Fix the problem of editing and saving table rows
780
c9e44c 781 ## 2.0.0-rc.12 (2020-11-30)
V 782
783 ## (破坏性更新) Breaking changes
784
785 - The ClickOutSide component import method is changed from `import ClickOutSide from'/@/components/ClickOutSide/index.vue'` to `import {ClickOutSide} from'/@/components/ClickOutSide'`
5db3ce 786 - Button component import method changed from `import Button from'/@/components/Button/index.vue'` to `import {Button} from'/@/components/Button'`
c9e44c 787 - StrengthMeter component import method is changed from `import StrengthMeter from'/@/components/StrengthMeter'` to `import {StrengthMeter} from'/@/components/StrengthMeter'`
V 788 - In addition to the examples, the global internationalization function is added, supporting Chinese and English
789
790 ### ✨ Refactor
791
792 - Refactor the overall layout. Change the code implementation method. Code is more streamlined
793 - Configuration item reconstruction
794 - Remove messageSetting configuration
795 - BasicTitle component `showSpan`=> `span`
796
797 ### ✨ Features
798
799 - The cache can be configured to encrypt or not, and Aes encryption is enabled in the production environment by default
800 - Add tab drag and drop sort
801 - Added LayoutFooter. The default display, can be closed in the configuration
802
803 ### ⚡ Performance Improvements
804
805 - Optimized the problem that the full screen animation of `Modal` component is not smooth
806
807 ### 🐛 Bug Fixes
808
809 - tree: Fix the problem that the text exceeds the operation button
810 - useRedo: Fix the problem of missing parameters when refreshing the page through useRedo
811 - form: Fix the problem that the form verification is first set in the verification and the console error message
812 - `modal`&`drawer` fix the problem of component passing array parameters
813 - form: fix `updateSchema` does not take effect when the value contains `[]`
814 - table: Fix the display problem of the table `TableAction` icon
815 - table: fix table column settings not displayed by `setColumns` setting
816
817 ### 🎫 Chores
818
819 - Update antdv to `2.0.0-rc.2`
820 - Update vue to `3.0.3`
821 - Update vite to `1.0.0.rc13`
822 - Temporarily delete `@vueuse/core`. After it is stable, it will be integrated. It is currently not stable.
823
ea24df 824 ## 2.0.0-rc.11 (2020-11-18)
V 825
826 ### ✨ Features
827
828 - Added base64 file stream download
829 - Optimize upload components and examples
830 - New editable row example
831 - Add a personal page
832 - New form page
833 - Add details page
834 - Integrate upload components into form by default
835
836 ### 🎫 Chores
837
838 - Update antdv to `2.0.0-rc.1` (temporarily restore to beta15, rc1 menu freezes too seriously.)
839 - Add some notes
840
841 ### ✨ Refactor
842
843 - Removed `receiveDrawerDataRef` and `transferDrawerData` properties of `useModal` and `useDrawer`
844 - `openModal` and `openDrawer` corresponding to `useModal` and `useDrawer` extend the third parameter. Used to open the trigger callback again
845
846 ### 🐛 Bug Fixes
847
848 - Repair form inputNumber verification error
849 - Fix the error of setting the default value of the form
850 - Fix the problem of occupying position when the menu collapse button is hidden
851 - Fix the form baseColProps does not take effect
852
3cf798 853 ## 2.0.0-rc.10 (2020-11-13)
V 854
855 ### ✨ Refactor
856
857 - Refactor hook, introduce `@vueuse`, delete existing `hook`, optimize existing hook
858 - ʻUseEvent` renamed ->ʻuseEventListener`
859 - Delete the four types `SelectOptGroup`, `SelectOption`, `Transfer`, and `Radio` from the form `ComponentType`. Modify the `RadioButtonGroup` component
860
861 ### ✨ Features
862
863 - `componentsProps` support function type of form item
864 - Added tag display to the menu, supporting 4 types of colors and dot display
865 - New menu and top bar color selection color matching
866 - Add sample result page
867 - New file download example
868
869 ### ⚡ Wip
870
871 - Upload components (not completed, testing...)
872
873 ### ⚡ Performance Improvements
874
875 - Optimize settingDrawer code
876 - Optimize the switching speed of multiple tabs
877 - Add form customization and dynamic capabilities
878
879 ### 🐛 Bug Fixes
880
881 - Fixed multiple rich text editors showing only one
882 - Fixed the problem of not redirecting to the original page after logging in again after expiration
883 - Fix window system dynamic introduction error
884 - Fix page type error
885 - Fixed an error when the form switch and checkBox were used separately
886
03bbdd 887 ## 2.0.0-rc.9 (2020-11-9)
V 888
889 ### ✨ Features
890
891 - Menu trigger can select location
892 - Add an example of rich text embedded form
893 - Added `required` attribute to form component schema. Simplified configuration
894 - The second parameter of openModal and openDrawer can be passed internally instead of `transferModalData`
895 - Routes with parameters can be cached
896
897 ### ✨ Refactor
898
899 - Refactored the logic of the menu generated by the background
900 - Route Module structural transformation
1db72c 901
V 902 ### ⚡ Performance Improvements
903
904 - Menu performance continues to be optimized and smoother
905 - Optimize lazy loading components and examples
03bbdd 906 - layout style fine-tuning
1db72c 907
V 908 ### 🎫 Chores
909
910 - Delete menu background image
03bbdd 911 - Update the version of ʻant-design-vue`to`beta15`
1db72c 912 - Update `vite` version to `rc.9`
V 913 - Exception page adjustment
914 - `BasicTitle` Color blocks are not displayed by default
915
916 ### 🐛 Bug Fixes
917
918 - Fix table type problem after upgrade
919 - Fix the problem that the last submenu continues to be displayed when the menu is divided and there is no data in the left menu
920 - Fix the issue of ʻuseMessage` type
921 - Fix the problem that the form item setting `disabled` does not take effect
922 - Fix that ʻuseECharts`can't adapt when`resize`, and an error is reported
923 - Fix that `resize` is not deleted after ʻuseWatermark` is cleared
924 - Fix form verification problem
03bbdd 925 - Fixed the problem that the multi-level header configuration does not take effect
1db72c 926
d37806 927 ## 2.0.0-rc.8 (2020-11-2)
V 928
929 ### ✨ Features
930
931 - Global loading add text
932 - Right-click menu supports multiple levels
933
934 ### 🎫 Chores
935
936 - Login cache changed from sessionStorage to LocalStorage
937
938 ### ⚡ Performance Improvements
939
940 - Update ʻant-design-vue`to`beta.12`
941 - Layout interface layout style adjustment
942 - Optimize lazy loading components
943 - Optimize table rendering performance
944 - Add animation to form folding search icon
945 - routeModule can ignore the layout configuration. Convenient to configure the first-level menu
946
947 ### 🐛 Bug Fixes
948
949 - Fix table type error
950 - Fix bug in mock paging tool
951 - Fix the folding problem of the search form when the table is opened
952 - Fix the problem of fixed column style when the table size is samll
953 - Fixed the error report when closing multiple tabs
954 - Fix message type error
955
3466d6 956 ## 2.0.0-rc.7 (2020-10-31)
V 957
958 ### ✨ Features
959
960 - The form component now supports directly passing in the model to directly perform the set operation, please refer to **Component -> Popup Extension -> Open Popup and Pass Data**
961
962 - The useModalInner of modal now supports the incoming callback function to receive the value passed in from the external `transferModalData`
963
964   - Used to handle the setting values ​​of components such as forms when the pop-up window is opened. Refer to **Component -> Popup Extension -> Open Popup and Pass Data**
965   - The value of `receiveModalDataRef` is temporarily reserved. Use as little as possible. It may be deleted later.
966
967 - The drawer’s useDrawerInner now supports the incoming callback function to receive the value passed in from the external `transferModalData`,,
968   - Used to handle the setting values ​​of components such as forms for opening the drawer Refer to **Component->Drawer Extension->Open the drawer and transfer data**
969   - The value of `receiveModalDataRef` is temporarily reserved. Use as little as possible. It may be deleted later.
970
971 ### ✨ Refactor
972
973 - Form code optimization and reconstruction
974
975 ### ⚡ Performance Improvements
976
977 - Modal slot can be overwritten
978 - Optimize table embedding height calculation problem
979
980 ### 🎫 Chores
981
982 - Add some notes
983 - pwa icon supplement
984 - Type adjustment
985 - Upgrade ʻant-design-vue`to`beta.11`, and modify the known issues brought about, and some issues will be resolved after discovery
986
987 ### 🐛 Bug Fixes
988
989 - Fix the timeout error of local proxy post interface to https address
990 - Fix modal full screen height calculation problem when footer is not displayed
991 - Fix the error that the verification information is not deleted when the form is reset
992 - Fix the style problem of the split mode of the top menu
993 - Fix the invalidation of table expansion icon animation
994
d51cfe 995 ## 2.0.0-rc.6 (2020-10-28)
V 996
997 ### ✨ Features
998
999 - Added `pwa` function, which can be turned on in `.env.production`
1000 - Button component extends `preIcon` and `postIcon` attributes to add icons before and after the text
1001 - Restore the breadcrumb display icon function
1002
1003 ### 🎫 Chores
1004
1005 - Upgrade vite version to `v1.0.0.rc8`
1006 - vite.config.ts internal plugins extraction
1007 - Build directory structure adjustment
1008 - Dependency update
1009 - Documentation update
1010 - Modify the default route switching animation
1011
1012 ### ⚡ Performance Improvements
1013
1014 - `setTitle` logic adjustment
1015 - The sessionStorage and LocalStorage cache settings used by the system expire in `7` days by default
1016
1017 ### ✨ Refactor
1018
1019 - Separate `vite-plugin-html` and modify the logic of inserting html
1020
1021 ### 🐛 Bug Fixes
1022
1023 - Fix the warning problem of multiple registration components during hot update
1024 - Fix the login tab page appears after login
1025 - Fix the problem of routing switch parameter disappearance
1026 - Fix the useMessage icon style problem
1027
1d47d8 1028 ## # 2.0.0-rc.5 (2020-10-26)
V 1029
1030 ### ✨ Features
1031
1032 - Update component documentation
1033 - Breadcrumbs support display icon
1034 - Added tinymce rich text component
1035 - Add submitOnReset to the form to control whether to re-initiate the request when reset
1036 - Added `sortFn` to the table to support custom sorting
1037 - Added animation components and examples
1038 - Added lazy loading/delay loading components and examples
1039
1040 ### ✨ Refactor
1041
1042 - The detailType of the Drawer component is changed to isDetail
1043
1044 ### 🎫 Chores
1045
1046 - Remove the optional chain syntax in the code
1047 - Form reset logic modification
1048 - Turn off multi-tab page tabs animation
1049 - Upgrade vite version to `v1.0.0.rc6`
1050 - Delete Chinese path warning. rc6 has been fixed
1051
1052 ### 🐛 Bug Fixes
1053
1054 - Fix the automatic height and display footer display problems of drawer components
1055 - Reset to default value after repairing form query
1056 - Fix the problem of displaying the collapsed menu when there are no child nodes
1057 - Fix the problem of breadcrumb display style
1058 - Fixed the problem of multiple open drag and drop failure when destroyOnClose=true in modal
1059 - Fixed multiple action columns in the table
1060
5f39be 1061 # 2.0.0-rc.4 (2020-10-21)
V 1062
1063 ### ✨ Features
1064
1065 - New configuration toolbar for tables
1066 - New message notification module
1067
1068 ### 🎫 Chores
1069
1070 - The table does not show borders by default
1071 - Dependency update
1072 - Update vue to `v3.0.2`
1073 - Interface style fine-tuning
1074
1075 ### ⚡ Performance Improvements
1076
1077 - Optimize the size of the first screen
1078 - Optimize the TableAction component
1079 - Reduce the folding width of the menu
1080
1081 ### 🐛 Bug Fixes
1082
1083 - Fix the problem of the menu name when the first level menu is folded
1084 - Fix the problem that the preview command is not packaged
1085 - Fix the problem that the form actionColOptions parameter does not take effect
1086 - Fix the problem that the loading does not take effect when refreshing the form
1087
8fd199 1088 # 2.0.0-rc.3 (2020-10-19)
V 1089
1090 ### ✨ Features
1091
1092 - Added excel component and excel/xml/csv/html export example
1093 - Added excel import example
1094 - Added global error handling
1095 - Added markdown components and examples
1096 - The menu name can be displayed when adding a new folding menu
1097
1098 ### Docs
1099
1100 - add project doc
1101
1102 ### 🎫 Chores
1103
1104 - update deps
1105
1106 ### 🐛 Bug Fixes
1107
1108 - Fix the adaptive problem of the top menu
1109 - Fix window system packaging error
1110
c346bb 1111 # 2.0.0-rc.2 (2020-10-17)
V 1112
1113 ### ✨ Features
1114
1115 - Package can be configured to output `gizp`
1116 - Package can be configured to delete `console`
1117 - Routes and menus do not need to be imported manually, they are imported automatically
1118
1119 ### 🎫 Chores
1120
1121 - Upgrade vue to `3.0.1`
1122 - Change `vite` version to daily build version
1123
1124 ### 🐛 Bug Fixes
1125
1126 - Fix menu error
1127 - Fix the problem of table adaptive height
1128 - Fix the issue of error reporting when executing script in `window system`
1129 - Fix the problem of folding components
1130
1131 ### ⚡ Performance Improvements
1132
1133 - Remove menu to minimize background
1134 - Prevent page refresh and re-render menu
1135 - Some other details are optimized
1136
9abba7 1137 # 2.0.0-rc.1 (2020-10-14)
be8e14 1138
V 1139 ### ✨ Features
1140
1141 - Add a tab with parameters
1142
1143 ### ⚡ Performance Improvements
1144
1145 - Optimized menu folding
1146 - Page details optimization
1147 - Compress html after packaging
1148 - Functional reconstruction of preview components and right-click menu
1149 - The preview component operation column is centered
1150
1151 ### 🎫 Chores
1152
1153 - update deps
1154 - Added `README.en-US.md`
1155 - Added `CHANGELOG.en-US.md`
1156
1157 ### 🐛 Bug Fixes
1158
1159 - Fix page refresh and jump to landing page
1160
7c7f35 1161 # 2.0.0-beta.7 (2020-10-12)
V 1162
1163 ### ⚡ Performance Improvements
1164
1165 - The existing tab switching no longer displays animation and progress bar
1166
1167 ### ✨ Features
1168
1169 - Added `CountTo` component and sample demo
1170 - Added `closeMessageOnSwitch` and `removeAllHttpPending` to the project configuration file
1171 - The production environment has a separate configuration file for dynamic configuration project configuration
1172 - Added ʻuseEcharts` and ʻuseApexChart` to facilitate the use of charts, and added related demos
1173 - New workbench interface
1174 - New analysis page interface
1175
1176 ### 🎫 Chores
1177
1178 - Update dependencies
1179
1180 ### 🐛 Bug Fixes
1181
1182 - Fix routing switch, tab inactive problem
1183
1184 # 2.0.0-beta.6 (2020-10-11)
1185
1186 ### 💄 Styles
1187
1188 - Menu style adjustment
1189
1190 ### 🐛 Bug Fixes
1191
1192 - Fix the problem that editable forms cannot be entered
1193 - Repair packaging errors, no proxy is required in the production environment
1194
1195 ### ⚡ Performance Improvements
1196
1197 - Optimize the switching speed of multi-tab pages
1198 - First screen loading animation
1199
1200 # 2.0.0-beta.5 (2020-10-10)
1201
1202 ### ♻ Code Refactoring
1203
1204 - Delete `tailwind css`
1205
1206 ### ⚡ Performance Improvements
1207
1208 - Optimize page switching speed
1209
1210 ### 🎫 Chores
1211
1212 - Add `.vscode` and `.github` configuration
1213 - Change menu icon
1214 - Added `.env` configuration file
1215 - Update readme.md
1216
1217 ### 🐛 Bug Fixes
1218
1219 - Fix the failure of `Tree` component check event
1220
1221 # 2.0.0-beta.4 (2020-10-08)
1222
1223 ### 🎫 Chores
1224
1225 - Remove redundant dependencies
1226
1227 ### 🐛 Bug Fixes
1228
1229 - Fix page refresh blank
1230 - Fix the invalid table style in the production environment
1231
1232 # 2.0.0-beta.3 (2020-10-07)
1233
1234 ### ✨ Features
1235
1236 - Added ʻopenNProgress` to the project configuration file to control whether to open the top control bar
1237 - Add `Table` component and demo
1238
1239 ### 🎫 Chores
1240
1241 - Add ` github workflows`
1242
1243 # 2.0.0-beta.2 (2020-10-07)
1244
1245 ### ✨ Features
1246
1247 - Added image preview component
1248
1249 ### 🔧 Continuous Integration
1250
1251 - Add githubAction script
1252
1253 # 2.0.0-beta.1(2020-09-30)
1254
1255 ### 🎫 Chores
1256
1257 - Migrate some code from 1.0
1258 - Add README.md description file
1259
1260 ### 🐛 Bug Fixes
1261
1262 - Fix the problem of form, animation and packaging failure