Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump dom-iterator from 1.0.0 to 1.0.1 #5011

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## [1.27.31](https://github.com/alibaba-fusion/next/compare/1.27.30...1.27.31) (2025-01-06)


### Bug Fixes

* **Core:** 修复使用 css variable 模式构建时,主题包内的 varMap 配置值会被重复覆盖的问题 ([#5002](https://github.com/alibaba-fusion/next/issues/5002)) ([6ed80bf](https://github.com/alibaba-fusion/next/commit/6ed80bf2a5f1eff453fe1ced2eb7a7366e719bd0))


## [1.27.30](https://github.com/alibaba-fusion/next/compare/1.27.28...1.27.30) (2024-12-06)


Expand Down
14 changes: 2 additions & 12 deletions LATESTLOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,9 @@
# Latest Log

## [1.27.30](https://github.com/alibaba-fusion/next/compare/1.27.28...1.27.30) (2024-12-06)
## [1.27.31](https://github.com/alibaba-fusion/next/compare/1.27.30...1.27.31) (2025-01-06)


### Bug Fixes

* **Badge:** set alignment by use transform ([fbda649](https://github.com/alibaba-fusion/next/commit/fbda649d53fe8bdf080b5cea51e2841233afa34c))
* **Balloon:** v2 default offset adjustment ([3f5f818](https://github.com/alibaba-fusion/next/commit/3f5f81882963f8dbfb716c77a75622d001803b6e))
* **CascaderSelect:** The value of the menuProps attribute is passed by props ([7a33369](https://github.com/alibaba-fusion/next/commit/7a33369dc01195edf5da7b15f7b9f2d45aa94ceb))
* **Collapse:** Internal elements need to apply the radius configuration of external elements, close [#3277](https://github.com/alibaba-fusion/next/issues/3277) ([936c429](https://github.com/alibaba-fusion/next/commit/936c429ae74a2568d835b5f4c57b7abd94a6194c))
* **DatePicker2:** support defaultValue & value for quarter, close [#3006](https://github.com/alibaba-fusion/next/issues/3006) ([9760278](https://github.com/alibaba-fusion/next/commit/97602785374fe6bdedfb8f5a97639b85d0fc32d2))
* **Select:** Fix select doc ([af1c2e7](https://github.com/alibaba-fusion/next/commit/af1c2e7943be7f40e197cac0cd0b9db3fd5d44b0))


### Code Refactoring

* **ConfigProvider:** static reference to moment ([e74c307](https://github.com/alibaba-fusion/next/commit/e74c30744907d3c4e712c90c28e31bdf972bd160))
* **Core:** 修复使用 css variable 模式构建时,主题包内的 varMap 配置值会被重复覆盖的问题 ([#5002](https://github.com/alibaba-fusion/next/issues/5002)) ([6ed80bf](https://github.com/alibaba-fusion/next/commit/6ed80bf2a5f1eff453fe1ced2eb7a7366e719bd0))

2 changes: 1 addition & 1 deletion components/core/util/_varMap.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$varMap: ();
$varMap: () !default;
@function get-compiling-value($cssVarRepresentation) {
@if map-has-key($varMap, $cssVarRepresentation) {
@return map-get($varMap, $cssVarRepresentation);
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var next = require('./lib/index.js');

next.version = '1.27.30';
next.version = '1.27.31';

module.exports = next;
100 changes: 92 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alifd/next",
"version": "1.27.30",
"version": "1.27.31",
"description": "A configurable component library for web built on React.",
"keywords": [
"fusion",
Expand Down
6 changes: 3 additions & 3 deletions tools/build/dist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ const distPath = resolve(CWD, 'dist');

export function registryDist(file = __filename) {
return registryTask(file, 'dist', async function () {
registryTask(file, 'dist:clean', () => {
await registryTask(file, 'dist:clean', () => {
removeSync(distPath);
});
registryTask(file, 'dist:next', pack);
registryTask(file, 'dist:next:minify', pack.bind(undefined, true));
await registryTask(file, 'dist:next', pack);
await registryTask(file, 'dist:next:minify', pack.bind(undefined, true));
await registryTask(file, 'dist:adaptor', packAdaptor.run, packAdaptor.rollback);
});
}
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@
"@alifd/next/types/*": ["./components/*"]
}
},
"include": ["global.d.ts", "cypress/**/*.ts", "./components/**/*.ts", "./components/**/*.tsx", "tools"]
"include": ["*.ts", "cypress/**/*.ts", "./components/**/*.ts", "./components/**/*.tsx", "tools"]
}
Loading