look-ui 1.1.21 → 1.1.24
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/.release-it.json +20 -0
- package/CHANGELOG.md +32 -0
- package/dist/look-ui.common.js +303 -86
- package/dist/look-ui.css +1 -1
- package/dist/look-ui.umd.js +303 -86
- package/dist/look-ui.umd.min.js +1 -1
- package/package.json +37 -34
- package/src/App.vue +17 -17
package/.release-it.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"github": {
|
|
3
|
+
"release": false
|
|
4
|
+
},
|
|
5
|
+
"git": {
|
|
6
|
+
"commitMessage": "release: v${version}"
|
|
7
|
+
},
|
|
8
|
+
"npm": {
|
|
9
|
+
"publish": false
|
|
10
|
+
},
|
|
11
|
+
"hooks": {
|
|
12
|
+
"after:bump": "echo 更新版本成功"
|
|
13
|
+
},
|
|
14
|
+
"plugins": {
|
|
15
|
+
"@release-it/conventional-changelog": {
|
|
16
|
+
"preset": "angular",
|
|
17
|
+
"infile": "CHANGELOG.md"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
## [1.1.24](http://192.168.0.66/font-end/look-ui/compare/1.1.23...1.1.24) (2023-10-31)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* 修复任务列表变化时数据没更新 ([bf226fc](http://192.168.0.66/font-end/look-ui/commits/bf226fc4bd25a20cacfa0eb08c0bb84cbf5f8965))
|
|
9
|
+
* 修复任务状态为空时显示不正确的问题 ([8f6cfb1](http://192.168.0.66/font-end/look-ui/commits/8f6cfb1a284404fc7888272eb20ebcf1239e90c6))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* 添加取消关注、归并等按钮的回调 ([0049cea](http://192.168.0.66/font-end/look-ui/commits/0049cea09afda62d3229b30347ad91d65c0bfdae))
|
|
15
|
+
|
|
16
|
+
## 1.1.23 (2023-10-27)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* 修复导入的任务不在对应的tab问题 ([5e44043](http://192.168.0.66/font-end/look-ui/commit/5e440438c305ba4b385158bdda558794051691a2))
|
|
22
|
+
* 修复导入的任务列表没有查重结果时报错问题 ([f91eecb](http://192.168.0.66/font-end/look-ui/commit/f91eecba195a6352c5e8cf1daee1c4507b245fe0))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* 发布时自动更新CHANGELOG ([86576d1](http://192.168.0.66/font-end/look-ui/commit/86576d128e3b15718e51b0a3a7851a5c4223897a))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Performance Improvements
|
|
31
|
+
|
|
32
|
+
* 查重组件优化 ([5e604d9](http://192.168.0.66/font-end/look-ui/commit/5e604d92fd7c95ed1560630b577b493e54638031))
|