@dafaz-ui/react 4.0.4 → 4.0.5

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.4 build
2
+ > @dafaz-ui/react@4.0.5 build
3
3
  > tsup src/index.tsx --format esm,cjs --dts --external react
4
4
 
5
5
  CLI Building entry: src/index.tsx
@@ -9,10 +9,10 @@
9
9
  ESM Build start
10
10
  CJS Build start
11
11
  ESM dist/index.mjs 19.57 KB
12
- ESM ⚡️ Build success in 41ms
12
+ ESM ⚡️ Build success in 40ms
13
13
  CJS dist/index.js 22.09 KB
14
- CJS ⚡️ Build success in 41ms
14
+ CJS ⚡️ Build success in 40ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 4529ms
16
+ DTS ⚡️ Build success in 4458ms
17
17
  DTS dist/index.d.mts 103.69 KB
18
18
  DTS dist/index.d.ts 103.69 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @dafaz-ui/react
2
2
 
3
+ ## 4.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - change default size select field
8
+
3
9
  ## 4.0.4
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -731,7 +731,7 @@ var SelectUI = styled("select", {
731
731
  }
732
732
  },
733
733
  defaultVariants: {
734
- size: "md"
734
+ size: "lg"
735
735
  }
736
736
  });
737
737
  var OptionUI = styled("option", {
@@ -753,7 +753,7 @@ var OptionUI = styled("option", {
753
753
  }
754
754
  },
755
755
  defaultVariants: {
756
- size: "md"
756
+ size: "lg"
757
757
  }
758
758
  });
759
759
 
package/dist/index.mjs CHANGED
@@ -682,7 +682,7 @@ var SelectUI = styled("select", {
682
682
  }
683
683
  },
684
684
  defaultVariants: {
685
- size: "md"
685
+ size: "lg"
686
686
  }
687
687
  });
688
688
  var OptionUI = styled("option", {
@@ -704,7 +704,7 @@ var OptionUI = styled("option", {
704
704
  }
705
705
  },
706
706
  defaultVariants: {
707
- size: "md"
707
+ size: "lg"
708
708
  }
709
709
  });
710
710
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dafaz-ui/react",
3
- "version": "4.0.4",
3
+ "version": "4.0.5",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -47,7 +47,7 @@ export const SelectUI = styled('select', {
47
47
  },
48
48
 
49
49
  defaultVariants: {
50
- size: 'md',
50
+ size: 'lg',
51
51
  },
52
52
  })
53
53
 
@@ -76,7 +76,7 @@ export const OptionUI = styled('option', {
76
76
  },
77
77
  },
78
78
  defaultVariants: {
79
- size: 'md',
79
+ size: 'lg',
80
80
  },
81
81
  })
82
82