@sikka/hawa 0.1.41 → 0.1.43

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/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@sikka/hawa",
3
- "version": "0.1.41",
4
- "description": "SaaS Oriented UI Kit",
5
- "main": "lib/index.js",
6
- "module": "es/index.es.js",
3
+ "version": "0.1.43",
4
+ "description": "Modern UI Kit made with Tailwind & Radix Primitives",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
7
8
  "author": {
8
9
  "name": "Sikka Software",
9
10
  "email": "contact@sikka.io",
@@ -34,7 +35,7 @@
34
35
  "generate-css": "postcss src/tailwind.css -o src/styles.css && mkdir -p dist && cp src/styles.css dist/",
35
36
  "deploy-storybook": "storybook-to-ghpages",
36
37
  "build-storybook": "build-storybook -o ./docs/documentation",
37
- "build-up": "tsup src/index.ts --dts",
38
+ "build-up": "tsup src/index.ts --format cjs,esm --dts",
38
39
  "build-lib": "rollup -c",
39
40
  "build:styles": " node tools/build-styles",
40
41
  "chromatic": "npx chromatic --project-token=chpt_9c33d11ef14064f --output-dir ./docs/documentation"
@@ -1,3 +1,5 @@
1
+ 'use client'
2
+
1
3
  import * as React from "react"
2
4
  // import { Slot } from "@radix-ui/react-slot"
3
5
  import { cva, type VariantProps } from "class-variance-authority"