@lizzy-liang-bigstack/ui 0.0.1 → 0.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.
package/dist/index.d.cts CHANGED
@@ -1,10 +1,10 @@
1
- import * as react_jsx_runtime from 'react/jsx-runtime';
1
+ import * as react from 'react';
2
2
  import { ButtonHTMLAttributes, AnchorHTMLAttributes } from 'react';
3
3
 
4
4
  type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement>;
5
- declare function Button({ className, children, ...props }: ButtonProps): react_jsx_runtime.JSX.Element;
5
+ declare function Button({ className, children, ...props }: ButtonProps): react.JSX.Element;
6
6
 
7
7
  type HyperlinkProps = AnchorHTMLAttributes<HTMLAnchorElement>;
8
- declare function Hyperlink({ children, ...props }: HyperlinkProps): react_jsx_runtime.JSX.Element;
8
+ declare function Hyperlink({ children, ...props }: HyperlinkProps): react.JSX.Element;
9
9
 
10
10
  export { Button, type ButtonProps, Hyperlink, type HyperlinkProps };
package/dist/index.d.ts CHANGED
@@ -1,10 +1,10 @@
1
- import * as react_jsx_runtime from 'react/jsx-runtime';
1
+ import * as react from 'react';
2
2
  import { ButtonHTMLAttributes, AnchorHTMLAttributes } from 'react';
3
3
 
4
4
  type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement>;
5
- declare function Button({ className, children, ...props }: ButtonProps): react_jsx_runtime.JSX.Element;
5
+ declare function Button({ className, children, ...props }: ButtonProps): react.JSX.Element;
6
6
 
7
7
  type HyperlinkProps = AnchorHTMLAttributes<HTMLAnchorElement>;
8
- declare function Hyperlink({ children, ...props }: HyperlinkProps): react_jsx_runtime.JSX.Element;
8
+ declare function Hyperlink({ children, ...props }: HyperlinkProps): react.JSX.Element;
9
9
 
10
10
  export { Button, type ButtonProps, Hyperlink, type HyperlinkProps };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@lizzy-liang-bigstack/ui",
3
3
  "private": false,
4
4
  "license": "Apache-2.0",
5
- "version": "0.0.1",
5
+ "version": "0.0.3",
6
6
  "description": "Cube UI Components Library",
7
7
  "type": "module",
8
8
  "main": "./dist/index.js",
@@ -71,5 +71,8 @@
71
71
  "outExtension": {
72
72
  "cjs": ".js",
73
73
  "esm": ".mjs"
74
+ },
75
+ "publishConfig": {
76
+ "access": "public"
74
77
  }
75
78
  }