@next-core/brick-kit 2.122.2 → 2.122.3
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 +6 -3
- package/dist/index.bundle.js +13 -0
- package/dist/index.bundle.js.map +1 -1
- package/dist/index.esm.js +13 -0
- package/dist/index.esm.js.map +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -3,16 +3,19 @@
|
|
|
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.122.
|
|
6
|
+
## [2.122.3](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.122.2...@next-core/brick-kit@2.122.3) (2022-06-24)
|
|
7
7
|
|
|
8
|
+
**Note:** Version bump only for package @next-core/brick-kit
|
|
8
9
|
|
|
9
|
-
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
* 对于任意布局,在路由跳转的时候都应该重置浏览器标题 ([1b74aef](https://github.com/easyops-cn/next-core/commit/1b74aefd3689ede050bde022e5bf6c3cc0b6f456))
|
|
12
11
|
|
|
13
12
|
|
|
14
13
|
|
|
14
|
+
## [2.122.2](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.122.1...@next-core/brick-kit@2.122.2) (2022-06-24)
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
15
17
|
|
|
18
|
+
- 对于任意布局,在路由跳转的时候都应该重置浏览器标题 ([1b74aef](https://github.com/easyops-cn/next-core/commit/1b74aefd3689ede050bde022e5bf6c3cc0b6f456))
|
|
16
19
|
|
|
17
20
|
## [2.122.1](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.122.0...@next-core/brick-kit@2.122.1) (2022-06-23)
|
|
18
21
|
|
package/dist/index.bundle.js
CHANGED
|
@@ -7909,6 +7909,19 @@
|
|
|
7909
7909
|
});
|
|
7910
7910
|
presetDarkPalettes[key].primary = presetDarkPalettes[key][5];
|
|
7911
7911
|
});
|
|
7912
|
+
presetPalettes.red;
|
|
7913
|
+
presetPalettes.volcano;
|
|
7914
|
+
presetPalettes.gold;
|
|
7915
|
+
presetPalettes.orange;
|
|
7916
|
+
presetPalettes.yellow;
|
|
7917
|
+
presetPalettes.lime;
|
|
7918
|
+
presetPalettes.green;
|
|
7919
|
+
presetPalettes.cyan;
|
|
7920
|
+
presetPalettes.blue;
|
|
7921
|
+
presetPalettes.geekblue;
|
|
7922
|
+
presetPalettes.purple;
|
|
7923
|
+
presetPalettes.magenta;
|
|
7924
|
+
presetPalettes.grey;
|
|
7912
7925
|
|
|
7913
7926
|
function getStyleByBaseColors(theme, baseColors, backgroundColor) {
|
|
7914
7927
|
return (theme === "dark" ? getDarkStyle : getLightStyle)("".concat(getCssVariableDefinitionsByPalettes(generatePalettes(baseColors, theme, backgroundColor), theme), "\n").concat(getMigratedCssVariableDefinitions(theme, baseColors, backgroundColor)));
|