@dafaz-ui/react 3.0.2 → 3.0.3

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@3.0.2 build
2
+ > @dafaz-ui/react@3.0.3 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 16.76 KB
12
- ESM ⚡️ Build success in 39ms
13
- CJS dist/index.js 19.19 KB
14
- CJS ⚡️ Build success in 39ms
11
+ CJS dist/index.js 19.22 KB
12
+ CJS ⚡️ Build success in 37ms
13
+ ESM dist/index.mjs 16.79 KB
14
+ ESM ⚡️ Build success in 38ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 4265ms
17
- DTS dist/index.d.mts 97.71 KB
18
- DTS dist/index.d.ts 97.71 KB
16
+ DTS ⚡️ Build success in 4739ms
17
+ DTS dist/index.d.mts 97.76 KB
18
+ DTS dist/index.d.ts 97.76 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @dafaz-ui/react
2
2
 
3
+ ## 3.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - fix DisplayName
8
+
3
9
  ## 3.0.2
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -450,6 +450,9 @@ interface ButtonProps {
450
450
  children: ReactNode;
451
451
  }
452
452
  declare function Button({ children, variant, size, ...props }: ButtonUIProps & ButtonProps): react_jsx_runtime.JSX.Element;
453
+ declare namespace Button {
454
+ var displayName: string;
455
+ }
453
456
 
454
457
  declare const CheckBoxUI: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<Checkbox.CheckboxProps & react.RefAttributes<HTMLButtonElement>>, {
455
458
  size?: "sm" | "md" | "lg" | undefined;
package/dist/index.d.ts CHANGED
@@ -450,6 +450,9 @@ interface ButtonProps {
450
450
  children: ReactNode;
451
451
  }
452
452
  declare function Button({ children, variant, size, ...props }: ButtonUIProps & ButtonProps): react_jsx_runtime.JSX.Element;
453
+ declare namespace Button {
454
+ var displayName: string;
455
+ }
453
456
 
454
457
  declare const CheckBoxUI: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<Checkbox.CheckboxProps & react.RefAttributes<HTMLButtonElement>>, {
455
458
  size?: "sm" | "md" | "lg" | undefined;
package/dist/index.js CHANGED
@@ -316,6 +316,7 @@ function Button(_a) {
316
316
  ]);
317
317
  return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(ButtonUI, __spreadProps(__spreadValues({ variant, size }, props), { children }));
318
318
  }
319
+ Button.displayName = "Button";
319
320
 
320
321
  // src/components/CheckBox/styles.ts
321
322
  var Checkbox = __toESM(require("@radix-ui/react-checkbox"));
package/dist/index.mjs CHANGED
@@ -268,6 +268,7 @@ function Button(_a) {
268
268
  ]);
269
269
  return /* @__PURE__ */ jsx2(ButtonUI, __spreadProps(__spreadValues({ variant, size }, props), { children }));
270
270
  }
271
+ Button.displayName = "Button";
271
272
 
272
273
  // src/components/CheckBox/styles.ts
273
274
  import * as Checkbox from "@radix-ui/react-checkbox";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dafaz-ui/react",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -17,3 +17,5 @@ export function Button({
17
17
  </ButtonUI>
18
18
  )
19
19
  }
20
+
21
+ Button.displayName = 'Button'