@nuvra-ui/react 0.0.11 → 0.0.12

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.ts CHANGED
@@ -6,6 +6,8 @@ export declare function Button({ className, children, ...props }: React.ButtonHT
6
6
 
7
7
  export declare function Link({ className, children, ...props }: React.AnchorHTMLAttributes<HTMLAnchorElement>): JSX.Element;
8
8
 
9
+ export declare function Status({ className, children, ...props }: React.HTMLAttributes<HTMLDivElement>): JSX.Element;
10
+
9
11
  export declare function Switch({ className, ...props }: React.InputHTMLAttributes<HTMLInputElement>): JSX.Element;
10
12
 
11
13
  export declare function Textarea({ className, ...props }: React.TextareaHTMLAttributes<HTMLTextAreaElement>): JSX.Element;
package/dist/index.js CHANGED
@@ -1657,4 +1657,7 @@ function Textarea({ className: o, ...s }) {
1657
1657
  ...s
1658
1658
  });
1659
1659
  }
1660
- export { Badge, Button, Link, Switch, Textarea };
1660
+ function Status({ className: o, children: s, ...c }) {
1661
+ return /* @__PURE__ */ jsx("div", { className: cn("rounded-full w-[6px] h-[6px] bg-success", o) });
1662
+ }
1663
+ export { Badge, Button, Link, Status, Switch, Textarea };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuvra-ui/react",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -36,8 +36,8 @@
36
36
  "typescript-eslint": "^8.46.4",
37
37
  "vite": "npm:rolldown-vite@7.2.5",
38
38
  "vite-plugin-dts": "^4.5.4",
39
- "@nuvra-ui/eslint-config": "0.0.0",
40
- "@nuvra-ui/typescript-config": "0.0.0"
39
+ "@nuvra-ui/typescript-config": "0.0.0",
40
+ "@nuvra-ui/eslint-config": "0.0.0"
41
41
  },
42
42
  "scripts": {
43
43
  "dev": "vite build --watch",