Skip to content

Commit 32d1ee1

Browse files
authored
chore: releases v1.4.0 (#549)
1 parent 8b006c2 commit 32d1ee1

2 files changed

Lines changed: 59 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 58 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,52 @@
11
# Changelog
22

3-
### 1.3.1
3+
## 1.4.0
4+
5+
breaking changes
6+
7+
- Crud: Remove searchRules attribute, please use :search-props="{ rules: ... }" instead (#528)
8+
- move element-plus and vue-router to peerDependencies (#530) (#536)
9+
- Form: remove modelKey attribute (#544)
10+
- Tabs: the label slot parameter has been changed to RouteLocationNormalizedLoaded (#546)
11+
12+
feat
13+
14+
- Search: add new components Search (#527) (#529) (#537)
15+
- Crud: refactor search (#528) (#535)
16+
- Tabs: add contextmenu prop (#534)
17+
- add multi-language files (#538)
18+
- add key fro list VNode (#542)
19+
- Form: add models attribute (#544)
20+
- Tabs: add query and hash when jumping (#546) (#547)
21+
22+
fix
23+
24+
- Crud: the menu styles (#533)
25+
- error when switching to multiple languages (#531)
26+
27+
other
28+
29+
- add breakpoint debugging config for VS Code (#532)
30+
- optimize the export type of components (#539) (#541) (#545)
31+
- docs: update (#543)
32+
- docs: optimize multi-language switching logic (#548)
33+
34+
### migration guide
35+
36+
Compare [1.3.1...v1.4.0](https://github.com/tolking/element-pro-components/compare/v1.3.1...v1.4.0)
37+
38+
- Crud: searchRules -> :search-props="{ rules: [searchRules] }"
39+
- Form: modelKey -> models: [{ prop: [prop], key: [modelKey] }]
40+
- Tabs:
41+
42+
```diff
43+
- <template #label="{ icon, title }">
44+
+ <template #label="{ icon, meta }">
45+
- <span>{{ title }}</span>
46+
+ <span>{{ meta.title }}</span>
47+
```
48+
49+
## 1.3.1
450

551
refactor
652

@@ -10,7 +56,7 @@ fix
1056

1157
- Table | Crud: warn error about prevIcon and nextIcon (#516)
1258

13-
### 1.3.0
59+
## 1.3.0
1460

1561
feat
1662

@@ -27,14 +73,14 @@ other
2773
- Descriptions: remove the deprecated slots (#510)
2874
- remove the deprecated function (#511)
2975

30-
### 1.2.12
76+
## 1.2.12
3177

3278
feat
3379

3480
- Crud: add some slots `crud-table` `crud-dialog` `crud-search` `crud-form` `crud-detail` (#478)
3581
- Crud: add expose function openDialog and closeDialog (#479)
3682

37-
### 1.2.11
83+
## 1.2.11
3884

3985
feat
4086

@@ -50,7 +96,7 @@ other
5096

5197
- optimize CSS variables (#468)
5298

53-
### 1.2.10
99+
## 1.2.10
54100

55101
feat
56102

@@ -64,15 +110,15 @@ perf
64110

65111
- Table: optimize rendering of hidden table column (#456)
66112

67-
### 1.2.9
113+
## 1.2.9
68114

69115
feat
70116

71117
- Form: refactor FormComponent (#446)
72118
- add ElementProResolver from unplugin-vue-components (#447)
73119
- type: add type helper defineComponentProps (#445)
74120

75-
### 1.2.8
121+
## 1.2.8
76122

77123
fix
78124

@@ -89,7 +135,7 @@ other
89135
- Form: optimization type (#438)
90136
- update README (#439)
91137

92-
### 1.2.7
138+
## 1.2.7
93139

94140
feat
95141

@@ -100,13 +146,13 @@ fix
100146
- Form: the style link error (#426)
101147
- optimize SSG about teleports (#428)
102148

103-
### 1.2.6
149+
## 1.2.6
104150

105151
fix
106152

107153
- build: missing the code prompt file (#422)
108154

109-
### 1.2.5
155+
## 1.2.5
110156

111157
feat
112158

@@ -125,7 +171,7 @@ other
125171
- docs: optimize SSG about teleports (#419)
126172
- docs: optimize document directory (#420)
127173

128-
### 1.2.4
174+
## 1.2.4
129175

130176
feat
131177

@@ -139,7 +185,7 @@ fix
139185
- FilterRoutes: optimization styles (#397)
140186
- Tabs: name attribute is not added when using beforeAdd (#407)
141187

142-
### 1.2.3
188+
## 1.2.3
143189

144190
feat
145191

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "element-pro-components",
3-
"version": "1.3.1",
3+
"version": "1.4.0",
44
"description": "a component library for Vue 3 base on element-plus",
55
"type": "module",
66
"main": "lib/index.umd.cjs",

0 commit comments

Comments
 (0)