@befe/brick-comp-toast 0.2.98 → 0.2.99
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 +23 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,29 @@
|
|
|
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
|
+
## 0.2.99 (2026-06-01)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **core:** 修正 type 名 AlertType ([8ab1fa7](https://icode.baidu.com/repos/baidu/be-fe/brick/commits/8ab1fa7b9651ee8935aa822a891b580604109048))
|
|
12
|
+
* **toast:** import 依赖组件的样式,并清理多余的依赖项 ([83e769e](https://icode.baidu.com/repos/baidu/be-fe/brick/commits/83e769e506d7447a2ce8128623ca46706a3bd202))
|
|
13
|
+
* **toast:** 修正 z-index 修饰,保证 toast 不被 dialog 盖住 ([e084a66](https://icode.baidu.com/repos/baidu/be-fe/brick/commits/e084a66740f7d01f3225b66751625ba27b09a4c9))
|
|
14
|
+
* **toast:** 尝试 toaster.add 后进行 forceRedraw ([9c3cdbf](https://icode.baidu.com/repos/baidu/be-fe/brick/commits/9c3cdbf6b8cb19427f6ded02573fa0ec4adcda2a))
|
|
15
|
+
* 修复各组件的 index.scss 中对依赖组件样式的引用,应引用依赖 index.scss ([b7c32eb](https://icode.baidu.com/repos/baidu/be-fe/brick/commits/b7c32eb53b575d6cbd92cf5b01e8e1cbd44ab2ba))
|
|
16
|
+
* 修正各组件 peerDependecy `mobx` 的版本号 ([321ed47](https://icode.baidu.com/repos/baidu/be-fe/brick/commits/321ed4704f2bd53449c6c71f1a340db427d4c656))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* **toast:** toaster 加入 placement 支持 ([2d9e4b0](https://icode.baidu.com/repos/baidu/be-fe/brick/commits/2d9e4b09d3f1a17a48c71f3e837e2847d40e8f9e))
|
|
22
|
+
* **toast:** 加入手工关闭功能 ([14cac85](https://icode.baidu.com/repos/baidu/be-fe/brick/commits/14cac857d2eb5bd6366b127011d1da280342ce8d))
|
|
23
|
+
* **toast:** 提供 `createToast()` 用以应用样式隔离方案时进行 configContext 配置 ([0621f2c](https://icode.baidu.com/repos/baidu/be-fe/brick/commits/0621f2c69901149d412c7840eb3587dfd232897f))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
6
29
|
## [0.2.98](https://icode.baidu.com:8235/baidu/be-fe/brick//%40befe%2Fbrick-comp-toast%400.2.97...%40befe%2Fbrick-comp-toast%400.2.98) (2026-05-25)
|
|
7
30
|
|
|
8
31
|
**Note:** Version bump only for package @befe/brick-comp-toast
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@befe/brick-comp-toast",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.99",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "ssh://git@icode.baidu.com:8235/baidu/be-fe/brick",
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"author": "wujun07",
|
|
26
26
|
"license": "ISC",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@befe/brick-comp-alert": "^0.2.
|
|
29
|
-
"@befe/brick-comp-config-provider": "^0.2.
|
|
30
|
-
"@befe/brick-core": "^0.2.
|
|
31
|
-
"@befe/brick-icon": "^0.2.
|
|
32
|
-
"@befe/brick-style": "^0.2.
|
|
33
|
-
"@befe/brick-utils": "^0.2.
|
|
28
|
+
"@befe/brick-comp-alert": "^0.2.98",
|
|
29
|
+
"@befe/brick-comp-config-provider": "^0.2.93",
|
|
30
|
+
"@befe/brick-core": "^0.2.53",
|
|
31
|
+
"@befe/brick-icon": "^0.2.27",
|
|
32
|
+
"@befe/brick-style": "^0.2.65",
|
|
33
|
+
"@befe/brick-utils": "^0.2.25"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"classnames": "^2.0.0",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"react": "^16.9.0 || ^17.0.0",
|
|
39
39
|
"react-dom": "^16.9.0 || ^17.0.0"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "370a467c43e73fd87ab22bfebe9d0953775a1d17"
|
|
42
42
|
}
|