@befe/brick-comp-badge 0.2.82 → 0.2.83

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 CHANGED
@@ -3,6 +3,14 @@
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.83](https://icode.baidu.com/repos/baidu/be-fe/brick/merge/%40befe%2Fbrick-comp-badge%400.2.82...%40befe%2Fbrick-comp-badge%400.2.83) (2025-11-26)
7
+
8
+ **Note:** Version bump only for package @befe/brick-comp-badge
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.2.82](https://icode.baidu.com:8235/baidu/be-fe/brick//%40befe%2Fbrick-comp-badge%400.2.81...%40befe%2Fbrick-comp-badge%400.2.82) (2025-09-03)
7
15
 
8
16
  **Note:** Version bump only for package @befe/brick-comp-badge
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@befe/brick-comp-badge",
3
- "version": "0.2.82",
3
+ "version": "0.2.83",
4
4
  "description": "@befe/brick component Badge",
5
5
  "main": "es",
6
6
  "module": "es",
@@ -12,7 +12,7 @@
12
12
  "scripts": {
13
13
  "test": "node ../../scripts/test",
14
14
  "clean": "rm -rf es lib types",
15
- "build": "npm run clean && npm run build:js && npm run build:dts && npm run build:style",
15
+ "build": "pnpm run clean && pnpm run build:js && pnpm run build:dts && pnpm run build:style",
16
16
  "build:dts": "node ../../scripts/build-dts",
17
17
  "build:js": "node ../../scripts/build-js",
18
18
  "build:style": "node ../../scripts/build-style-component"
@@ -20,9 +20,9 @@
20
20
  "author": "wujun07",
21
21
  "license": "ISC",
22
22
  "dependencies": {
23
- "@befe/brick-core": "^0.2.46",
24
- "@befe/brick-style": "^0.2.55",
25
- "@befe/brick-utils": "^0.2.20"
23
+ "@befe/brick-core": "^0.2.47",
24
+ "@befe/brick-style": "^0.2.56",
25
+ "@befe/brick-utils": "^0.2.21"
26
26
  },
27
27
  "peerDependencies": {
28
28
  "classnames": "^2.0.0",
@@ -30,5 +30,5 @@
30
30
  "react": "^16.9.0 || ^17.0.0",
31
31
  "react-dom": "^16.9.0 || ^17.0.0"
32
32
  },
33
- "gitHead": "3c90adc50c18d14448a66856a5920d076c32f13d"
33
+ "gitHead": "683b25ba0d02bd9120ea54fc367d6e2f3d373e47"
34
34
  }
package/types/index.d.ts CHANGED
@@ -38,6 +38,6 @@ export declare class Badge extends Component<BadgeProps> {
38
38
  get className(): string;
39
39
  get titleTip(): string | undefined;
40
40
  get markContent(): string | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | null;
41
- renderMark(): false | "" | JSX.Element;
42
- render(): JSX.Element;
41
+ renderMark(): false | "" | import("react/jsx-runtime").JSX.Element;
42
+ render(): import("react/jsx-runtime").JSX.Element;
43
43
  }