@next-core/brick-kit 2.75.0 → 2.75.1
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/CHANGELOG.md +11 -0
- package/dist/index.bundle.js +2 -2
- package/dist/index.bundle.js.map +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.75.1](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.75.0...@next-core/brick-kit@2.75.1) (2021-10-15)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* window.open action the third parameter is missing ([e2e8e27](https://github.com/easyops-cn/next-core/commit/e2e8e278e080c6c0f157168e10d0e97d66e22ccf))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [2.75.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.74.1...@next-core/brick-kit@2.75.0) (2021-10-13)
|
|
7
18
|
|
|
8
19
|
|
package/dist/index.bundle.js
CHANGED
|
@@ -5069,8 +5069,8 @@
|
|
|
5069
5069
|
return;
|
|
5070
5070
|
}
|
|
5071
5071
|
|
|
5072
|
-
var [url, target] = argsFactory(args, context, event);
|
|
5073
|
-
window.open(url, target || "_self");
|
|
5072
|
+
var [url, target, features] = argsFactory(args, context, event);
|
|
5073
|
+
window.open(url, target || "_self", features);
|
|
5074
5074
|
};
|
|
5075
5075
|
}
|
|
5076
5076
|
|