@dafaz-ui/react 4.0.6 → 4.0.7

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.6 build
2
+ > @dafaz-ui/react@4.0.7 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.61 KB
12
- ESM ⚡️ Build success in 39ms
12
+ ESM ⚡️ Build success in 51ms
13
13
  CJS dist/index.js 22.13 KB
14
- CJS ⚡️ Build success in 40ms
14
+ CJS ⚡️ Build success in 52ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 4868ms
16
+ DTS ⚡️ Build success in 4624ms
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.7
4
+
5
+ ### Patch Changes
6
+
7
+ - fix button size
8
+
3
9
  ## 4.0.6
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -298,7 +298,7 @@ var ButtonUI = styled("button", {
298
298
  },
299
299
  defaultVariants: {
300
300
  variant: "primary",
301
- size: "md",
301
+ size: "lg",
302
302
  flat: false
303
303
  }
304
304
  });
@@ -309,7 +309,7 @@ function Button(_a) {
309
309
  var _b = _a, {
310
310
  children,
311
311
  variant = "primary",
312
- size = "md",
312
+ size = "lg",
313
313
  type = "button"
314
314
  } = _b, props = __objRest(_b, [
315
315
  "children",
package/dist/index.mjs CHANGED
@@ -249,7 +249,7 @@ var ButtonUI = styled("button", {
249
249
  },
250
250
  defaultVariants: {
251
251
  variant: "primary",
252
- size: "md",
252
+ size: "lg",
253
253
  flat: false
254
254
  }
255
255
  });
@@ -260,7 +260,7 @@ function Button(_a) {
260
260
  var _b = _a, {
261
261
  children,
262
262
  variant = "primary",
263
- size = "md",
263
+ size = "lg",
264
264
  type = "button"
265
265
  } = _b, props = __objRest(_b, [
266
266
  "children",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dafaz-ui/react",
3
- "version": "4.0.6",
3
+ "version": "4.0.7",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -8,7 +8,7 @@ interface ButtonProps {
8
8
  export function Button({
9
9
  children,
10
10
  variant = 'primary',
11
- size = 'md',
11
+ size = 'lg',
12
12
  type = 'button',
13
13
  ...props
14
14
  }: ButtonUIProps & ButtonProps) {
@@ -97,7 +97,7 @@ export const ButtonUI = styled('button', {
97
97
  },
98
98
  defaultVariants: {
99
99
  variant: 'primary',
100
- size: 'md',
100
+ size: 'lg',
101
101
  flat: false,
102
102
  },
103
103
  })