@dafaz-ui/react 4.0.9 → 4.0.10

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @dafaz-ui/react@4.0.9 build
2
+ > @dafaz-ui/react@4.0.10 build
3
3
  > tsup src/index.tsx --format esm,cjs --dts --external react
4
4
 
5
5
  CLI Building entry: src/index.tsx
@@ -8,11 +8,11 @@
8
8
  CLI Target: es6
9
9
  ESM Build start
10
10
  CJS Build start
11
- ESM dist/index.mjs 19.64 KB
12
- ESM ⚡️ Build success in 34ms
13
- CJS dist/index.js 22.16 KB
14
- CJS ⚡️ Build success in 35ms
11
+ CJS dist/index.js 22.17 KB
12
+ CJS ⚡️ Build success in 37ms
13
+ ESM dist/index.mjs 19.65 KB
14
+ ESM ⚡️ Build success in 37ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 4427ms
16
+ DTS ⚡️ Build success in 4414ms
17
17
  DTS dist/index.d.mts 103.73 KB
18
18
  DTS dist/index.d.ts 103.73 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @dafaz-ui/react
2
2
 
3
+ ## 4.0.10
4
+
5
+ ### Patch Changes
6
+
7
+ - fix key radio
8
+
3
9
  ## 4.0.9
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -690,7 +690,8 @@ function Radio(_a) {
690
690
  value: item.value,
691
691
  size,
692
692
  disabled
693
- }
693
+ },
694
+ item.id
694
695
  );
695
696
  }) }));
696
697
  }
package/dist/index.mjs CHANGED
@@ -641,7 +641,8 @@ function Radio(_a) {
641
641
  value: item.value,
642
642
  size,
643
643
  disabled
644
- }
644
+ },
645
+ item.id
645
646
  );
646
647
  }) }));
647
648
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dafaz-ui/react",
3
- "version": "4.0.9",
3
+ "version": "4.0.10",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -22,6 +22,7 @@ export function Radio({
22
22
  {items.map((item) => {
23
23
  return (
24
24
  <RadioItem
25
+ key={item.id}
25
26
  id={item.id}
26
27
  label={item.label}
27
28
  value={item.value}