Skip to content

Commit ec057b5

Browse files
committed
chore(*): Release-1.27.32
1 parent bb46a4d commit ec057b5

File tree

6 files changed

+27
-47
lines changed

6 files changed

+27
-47
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## [1.27.32](https://github.com/alibaba-fusion/next/compare/1.27.30...1.27.32) (2025-03-10)
4+
5+
6+
### Bug Fixes
7+
8+
* **Field:** fix use setError on uninitialized field caused incorrect values configuration ([3f402b6](https://github.com/alibaba-fusion/next/commit/3f402b63540e2091fe6efaab9414272334641266))
9+
* **Nav:** the icon is not centered when the width of Nav in iconOnly mode is less than the default width ([bb46a4d](https://github.com/alibaba-fusion/next/commit/bb46a4d9d939b0b67d5dbee9722fb54fe16adfe7))
10+
* **TimePicker2:** support set locale by ConfigProvider ([a5e1284](https://github.com/alibaba-fusion/next/commit/a5e1284c30410d372a2fe71d02f857e8dc9027e7))
11+
12+
313
## [1.27.31](https://github.com/alibaba-fusion/next/compare/1.27.30...1.27.31) (2025-01-06)
414

515

LATESTLOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# Latest Log
22

3-
## [1.27.31](https://github.com/alibaba-fusion/next/compare/1.27.30...1.27.31) (2025-01-06)
3+
## [1.27.32](https://github.com/alibaba-fusion/next/compare/1.27.30...1.27.32) (2025-03-10)
44

55

66
### Bug Fixes
77

8-
* **Core:** 修复使用 css variable 模式构建时,主题包内的 varMap 配置值会被重复覆盖的问题 ([#5002](https://github.com/alibaba-fusion/next/issues/5002)) ([6ed80bf](https://github.com/alibaba-fusion/next/commit/6ed80bf2a5f1eff453fe1ced2eb7a7366e719bd0))
8+
* **Field:** fix use setError on uninitialized field caused incorrect values configuration ([3f402b6](https://github.com/alibaba-fusion/next/commit/3f402b63540e2091fe6efaab9414272334641266))
9+
* **Nav:** the icon is not centered when the width of Nav in iconOnly mode is less than the default width ([bb46a4d](https://github.com/alibaba-fusion/next/commit/bb46a4d9d939b0b67d5dbee9722fb54fe16adfe7))
10+
* **TimePicker2:** support set locale by ConfigProvider ([a5e1284](https://github.com/alibaba-fusion/next/commit/a5e1284c30410d372a2fe71d02f857e8dc9027e7))
911

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
var next = require('./lib/index.js');
22

3-
next.version = '1.27.31';
3+
next.version = '1.27.32';
44

55
module.exports = next;

package-lock.json

+9-41
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alifd/next",
3-
"version": "1.27.31",
3+
"version": "1.27.32",
44
"description": "A configurable component library for web built on React.",
55
"keywords": [
66
"fusion",
@@ -105,7 +105,7 @@
105105
},
106106
"dependencies": {
107107
"@alifd/field": "~2.0.4",
108-
"@alifd/overlay": "^0.3.3",
108+
"@alifd/overlay": "^0.3.7",
109109
"@alifd/validate": "~2.0.3",
110110
"@types/react-transition-group": "^4.4.6",
111111
"babel-runtime": "^6.26.0",

tools/release/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ async function publishNpmForDocs(distTag = 'latest') {
216216

217217
registryTask(__filename, 'release', async () => {
218218
// 暂时手动生成 changelog
219-
// await registryChangelog(__filename);
219+
await registryChangelog(__filename);
220220
const { masterTag } = getVersion();
221221

222222
await registryBuild(__filename);

0 commit comments

Comments
 (0)