@sikka/hawa 0.7.0 → 0.7.2-next
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/README.md +65 -65
- package/dist/index.css +916 -903
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +17 -9
- package/dist/index.mjs +39 -13
- package/package.json +85 -85
package/dist/index.d.mts
CHANGED
|
@@ -218,7 +218,7 @@ declare const Radio: FC<RadioTypes>;
|
|
|
218
218
|
|
|
219
219
|
interface SkeletonProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
220
220
|
className?: string;
|
|
221
|
-
animation?: "pulse" | "shimmer";
|
|
221
|
+
animation?: "none" | "pulse" | "shimmer";
|
|
222
222
|
}
|
|
223
223
|
declare function Skeleton({ className, animation, ...props }: SkeletonProps): React__default.JSX.Element;
|
|
224
224
|
|
package/dist/index.d.ts
CHANGED
|
@@ -218,7 +218,7 @@ declare const Radio: FC<RadioTypes>;
|
|
|
218
218
|
|
|
219
219
|
interface SkeletonProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
220
220
|
className?: string;
|
|
221
|
-
animation?: "pulse" | "shimmer";
|
|
221
|
+
animation?: "none" | "pulse" | "shimmer";
|
|
222
222
|
}
|
|
223
223
|
declare function Skeleton({ className, animation, ...props }: SkeletonProps): React__default.JSX.Element;
|
|
224
224
|
|
package/dist/index.js
CHANGED
|
@@ -1299,8 +1299,12 @@ var CodeBlock = function(_param) {
|
|
|
1299
1299
|
};
|
|
1300
1300
|
return /* @__PURE__ */ import_react8.default.createElement("div", {
|
|
1301
1301
|
className: cn(widthStyles[width], "hawa-w-full hawa-flex-col hawa-items-center hawa-rounded hawa-bg-background hawa-text-left hawa-text-white sm:hawa-text-base")
|
|
1302
|
-
},
|
|
1303
|
-
className: "hawa-flex hawa-flex-row hawa-gap-2 hawa-rounded-t
|
|
1302
|
+
}, fileName && /* @__PURE__ */ import_react8.default.createElement("div", {
|
|
1303
|
+
className: cn("hawa-flex hawa-flex-row hawa-gap-2 hawa-rounded-t dark:hawa-bg-muted hawa-p-2 hawa-py-0.5 hawa-pb-0 hawa-text-foreground hawa-font-mono", fileName && tabs ? "hawa-bg-gray-300 dark:hawa-bg-muted/50" : "hawa-bg-gray-200")
|
|
1304
|
+
}, /* @__PURE__ */ import_react8.default.createElement("div", {
|
|
1305
|
+
className: cn("mono hawa-w-full hawa-max-w-[52px] hawa-rounded-inner hawa-p-1 hawa-py-0.5 hawa-text-center hawa-text-[0.75rem]")
|
|
1306
|
+
}, fileName)), tabs && /* @__PURE__ */ import_react8.default.createElement("div", {
|
|
1307
|
+
className: cn("hawa-flex hawa-flex-row hawa-gap-2 hawa-rounded-t hawa-bg-gray-200 dark:hawa-bg-muted hawa-p-2 hawa-pb-0 hawa-text-foreground hawa-font-mono", tabs && fileName && "hawa-rounded-t-none")
|
|
1304
1308
|
}, tabs.map(function(tab, i) {
|
|
1305
1309
|
return /* @__PURE__ */ import_react8.default.createElement("div", {
|
|
1306
1310
|
key: i,
|
|
@@ -1311,11 +1315,7 @@ var CodeBlock = function(_param) {
|
|
|
1311
1315
|
},
|
|
1312
1316
|
className: cn("hawa-mb-1 hawa-transition-all hawa-w-full hawa-max-w-[52px] hawa-cursor-pointer hawa-rounded-inner hawa-p-2 hawa-py-1 hawa-text-center hawa-text-[1rem] hover:hawa-bg-muted-foreground/20")
|
|
1313
1317
|
}, tab.title));
|
|
1314
|
-
})),
|
|
1315
|
-
className: "hawa-flex hawa-flex-row hawa-gap-2 hawa-rounded-t hawa-bg-gray-200 dark:hawa-bg-muted hawa-p-2 hawa-pb-0 hawa-text-foreground hawa-font-mono"
|
|
1316
|
-
}, /* @__PURE__ */ import_react8.default.createElement("div", {
|
|
1317
|
-
className: cn("hawa-mb-1 mono hawa-w-full hawa-max-w-[52px] hawa-rounded-inner hawa-p-2 hawa-py-1 hawa-text-center hawa-text-[1rem]")
|
|
1318
|
-
}, fileName)), /* @__PURE__ */ import_react8.default.createElement("pre", null, /* @__PURE__ */ import_react8.default.createElement("div", {
|
|
1318
|
+
})), /* @__PURE__ */ import_react8.default.createElement("pre", null, /* @__PURE__ */ import_react8.default.createElement("div", {
|
|
1319
1319
|
className: cn("hawa-relative hawa-flex hawa-w-full hawa-flex-row hawa-border hawa-items-start hawa-justify-between hawa-bg-foreground/5 hawa-p-0 hawa-text-left hawa-text-sm sm:hawa-text-base ", tabs || fileName ? "hawa-rounded-b hawa-rounded-t-none" : "hawa-rounded")
|
|
1320
1320
|
}, /* @__PURE__ */ import_react8.default.createElement(import_prism_react_renderer.Highlight, {
|
|
1321
1321
|
theme: theme,
|
|
@@ -1849,8 +1849,16 @@ function Skeleton(_param) {
|
|
|
1849
1849
|
"className",
|
|
1850
1850
|
"animation"
|
|
1851
1851
|
]);
|
|
1852
|
+
var animationStyles = {
|
|
1853
|
+
none: "hawa-rounded hawa-bg-muted",
|
|
1854
|
+
pulse: "hawa-animate-pulse hawa-rounded hawa-bg-muted",
|
|
1855
|
+
shimmer: "hawa-space-y-5 hawa-rounded hawa-bg-muted hawa-p-4 hawa-relative before:hawa-absolute before:hawa-inset-0 before:hawa--translate-x-full before:hawa-animate-[shimmer_2s_infinite] before:hawa-bg-gradient-to-r before:hawa-from-transparent before:hawa-via-gray-300/40 dark:before:hawa-via-white/10 before:hawa-to-transparent hawa-isolate hawa-overflow-hidden before:hawa-border-t before:hawa-border-rose-100/10"
|
|
1856
|
+
};
|
|
1852
1857
|
return /* @__PURE__ */ import_react11.default.createElement("div", _object_spread({
|
|
1853
|
-
className: cn(animation
|
|
1858
|
+
className: cn(animationStyles[animation], // animation === "pulse"
|
|
1859
|
+
// ? "hawa-animate-pulse hawa-rounded hawa-bg-muted"
|
|
1860
|
+
// : "hawa-space-y-5 hawa-rounded hawa-bg-muted hawa-p-4 hawa-relative before:hawa-absolute before:hawa-inset-0 before:hawa--translate-x-full before:hawa-animate-[shimmer_2s_infinite] before:hawa-bg-gradient-to-r before:hawa-from-transparent before:hawa-via-gray-300/40 dark:before:hawa-via-white/10 before:hawa-to-transparent hawa-isolate hawa-overflow-hidden before:hawa-border-t before:hawa-border-rose-100/10",
|
|
1861
|
+
className)
|
|
1854
1862
|
}, props));
|
|
1855
1863
|
}
|
|
1856
1864
|
{}// components/elements/Chip.tsx
|
|
@@ -4327,7 +4335,7 @@ var Input = function(_param) {
|
|
|
4327
4335
|
}, props.icon && /* @__PURE__ */ import_react17.default.createElement("div", {
|
|
4328
4336
|
className: "hawa-absolute hawa-left-3 hawa-top-1/2 hawa--translate-y-1/2"
|
|
4329
4337
|
}, props.icon), /* @__PURE__ */ import_react17.default.createElement("input", {
|
|
4330
|
-
className: cn(defaultInputStyle, "hawa-text-black dark:hawa-text-white
|
|
4338
|
+
className: cn(defaultInputStyle, "hawa-text-black dark:hawa-text-white", props.icon && "hawa-pl-10", "focus-visible:hawa-outline-none focus-visible:hawa-ring-2 focus-visible:hawa-ring-ring focus-visible:hawa-ring-offset-0", preview && "hawa-border-transparent hawa-bg-transparent hawa-px-0", (_props_inputProps = props.inputProps) === null || _props_inputProps === void 0 ? void 0 : _props_inputProps.className),
|
|
4331
4339
|
onChange: props.onChange,
|
|
4332
4340
|
autoComplete: props.autoComplete,
|
|
4333
4341
|
value: props.value,
|
package/dist/index.mjs
CHANGED
|
@@ -636,34 +636,52 @@ var CodeBlock = ({
|
|
|
636
636
|
"hawa-w-full hawa-flex-col hawa-items-center hawa-rounded hawa-bg-background hawa-text-left hawa-text-white sm:hawa-text-base"
|
|
637
637
|
)
|
|
638
638
|
},
|
|
639
|
-
|
|
639
|
+
fileName && /* @__PURE__ */ React10.createElement(
|
|
640
640
|
"div",
|
|
641
641
|
{
|
|
642
|
-
key: i,
|
|
643
642
|
className: cn(
|
|
644
|
-
|
|
643
|
+
"hawa-flex hawa-flex-row hawa-gap-2 hawa-rounded-t dark:hawa-bg-muted hawa-p-2 hawa-py-0.5 hawa-pb-0 hawa-text-foreground hawa-font-mono",
|
|
644
|
+
fileName && tabs ? "hawa-bg-gray-300 dark:hawa-bg-muted/50" : "hawa-bg-gray-200"
|
|
645
645
|
)
|
|
646
646
|
},
|
|
647
647
|
/* @__PURE__ */ React10.createElement(
|
|
648
648
|
"div",
|
|
649
649
|
{
|
|
650
|
-
onClick: () => setSelectedTab(i),
|
|
651
650
|
className: cn(
|
|
652
|
-
"
|
|
651
|
+
"mono hawa-w-full hawa-max-w-[52px] hawa-rounded-inner hawa-p-1 hawa-py-0.5 hawa-text-center hawa-text-[0.75rem]"
|
|
653
652
|
)
|
|
654
653
|
},
|
|
655
|
-
|
|
654
|
+
fileName
|
|
656
655
|
)
|
|
657
|
-
)
|
|
658
|
-
|
|
656
|
+
),
|
|
657
|
+
tabs && /* @__PURE__ */ React10.createElement(
|
|
659
658
|
"div",
|
|
660
659
|
{
|
|
661
660
|
className: cn(
|
|
662
|
-
"hawa-
|
|
661
|
+
"hawa-flex hawa-flex-row hawa-gap-2 hawa-rounded-t hawa-bg-gray-200 dark:hawa-bg-muted hawa-p-2 hawa-pb-0 hawa-text-foreground hawa-font-mono",
|
|
662
|
+
tabs && fileName && "hawa-rounded-t-none"
|
|
663
663
|
)
|
|
664
664
|
},
|
|
665
|
-
|
|
666
|
-
|
|
665
|
+
tabs.map((tab, i) => /* @__PURE__ */ React10.createElement(
|
|
666
|
+
"div",
|
|
667
|
+
{
|
|
668
|
+
key: i,
|
|
669
|
+
className: cn(
|
|
670
|
+
selectedTab === i ? " hawa-border-b-2 hawa-border-primary" : "hawa-bg-transparent"
|
|
671
|
+
)
|
|
672
|
+
},
|
|
673
|
+
/* @__PURE__ */ React10.createElement(
|
|
674
|
+
"div",
|
|
675
|
+
{
|
|
676
|
+
onClick: () => setSelectedTab(i),
|
|
677
|
+
className: cn(
|
|
678
|
+
"hawa-mb-1 hawa-transition-all hawa-w-full hawa-max-w-[52px] hawa-cursor-pointer hawa-rounded-inner hawa-p-2 hawa-py-1 hawa-text-center hawa-text-[1rem] hover:hawa-bg-muted-foreground/20"
|
|
679
|
+
)
|
|
680
|
+
},
|
|
681
|
+
tab.title
|
|
682
|
+
)
|
|
683
|
+
))
|
|
684
|
+
),
|
|
667
685
|
/* @__PURE__ */ React10.createElement("pre", null, /* @__PURE__ */ React10.createElement(
|
|
668
686
|
"div",
|
|
669
687
|
{
|
|
@@ -1266,11 +1284,19 @@ var Radio = ({
|
|
|
1266
1284
|
// components/elements/Skeleton.tsx
|
|
1267
1285
|
import React17 from "react";
|
|
1268
1286
|
function Skeleton({ className, animation = "pulse", ...props }) {
|
|
1287
|
+
const animationStyles = {
|
|
1288
|
+
none: "hawa-rounded hawa-bg-muted",
|
|
1289
|
+
pulse: "hawa-animate-pulse hawa-rounded hawa-bg-muted",
|
|
1290
|
+
shimmer: "hawa-space-y-5 hawa-rounded hawa-bg-muted hawa-p-4 hawa-relative before:hawa-absolute before:hawa-inset-0 before:hawa--translate-x-full before:hawa-animate-[shimmer_2s_infinite] before:hawa-bg-gradient-to-r before:hawa-from-transparent before:hawa-via-gray-300/40 dark:before:hawa-via-white/10 before:hawa-to-transparent hawa-isolate hawa-overflow-hidden before:hawa-border-t before:hawa-border-rose-100/10"
|
|
1291
|
+
};
|
|
1269
1292
|
return /* @__PURE__ */ React17.createElement(
|
|
1270
1293
|
"div",
|
|
1271
1294
|
{
|
|
1272
1295
|
className: cn(
|
|
1273
|
-
animation
|
|
1296
|
+
animationStyles[animation],
|
|
1297
|
+
// animation === "pulse"
|
|
1298
|
+
// ? "hawa-animate-pulse hawa-rounded hawa-bg-muted"
|
|
1299
|
+
// : "hawa-space-y-5 hawa-rounded hawa-bg-muted hawa-p-4 hawa-relative before:hawa-absolute before:hawa-inset-0 before:hawa--translate-x-full before:hawa-animate-[shimmer_2s_infinite] before:hawa-bg-gradient-to-r before:hawa-from-transparent before:hawa-via-gray-300/40 dark:before:hawa-via-white/10 before:hawa-to-transparent hawa-isolate hawa-overflow-hidden before:hawa-border-t before:hawa-border-rose-100/10",
|
|
1274
1300
|
className
|
|
1275
1301
|
),
|
|
1276
1302
|
...props
|
|
@@ -3907,7 +3933,7 @@ var Input = ({
|
|
|
3907
3933
|
{
|
|
3908
3934
|
className: cn(
|
|
3909
3935
|
defaultInputStyle,
|
|
3910
|
-
"hawa-text-black dark:hawa-text-white
|
|
3936
|
+
"hawa-text-black dark:hawa-text-white",
|
|
3911
3937
|
props.icon && "hawa-pl-10",
|
|
3912
3938
|
"focus-visible:hawa-outline-none focus-visible:hawa-ring-2 focus-visible:hawa-ring-ring focus-visible:hawa-ring-offset-0",
|
|
3913
3939
|
preview && "hawa-border-transparent hawa-bg-transparent hawa-px-0",
|
package/package.json
CHANGED
|
@@ -1,85 +1,85 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@sikka/hawa",
|
|
3
|
-
"version": "0.7.
|
|
4
|
-
"main": "./dist/index.js",
|
|
5
|
-
"types": "./dist/index.d.ts",
|
|
6
|
-
"exports": {
|
|
7
|
-
".": {
|
|
8
|
-
"import": "./dist/index.js"
|
|
9
|
-
},
|
|
10
|
-
"./dist/style.css": "./dist/index.css"
|
|
11
|
-
},
|
|
12
|
-
"files": [
|
|
13
|
-
"dist/**"
|
|
14
|
-
],
|
|
15
|
-
"scripts": {
|
|
16
|
-
"dev": "next dev",
|
|
17
|
-
"build": "next build",
|
|
18
|
-
"start": "next start -p 3032",
|
|
19
|
-
"lint": "next lint",
|
|
20
|
-
"storybook": "storybook dev -p 6006",
|
|
21
|
-
"build-storybook": "storybook build",
|
|
22
|
-
"build-lib": "tsup components/index.tsx --format cjs,esm --dts",
|
|
23
|
-
"build-css": "postcss styles/globals.css -o dist/index.css",
|
|
24
|
-
"prepub": "npm run build-lib && npm run build-css",
|
|
25
|
-
"pub": "npm publish --tag next"
|
|
26
|
-
},
|
|
27
|
-
"dependencies": {
|
|
28
|
-
"@hookform/resolvers": "^3.3.1",
|
|
29
|
-
"@radix-ui/react-accordion": "^1.1.2",
|
|
30
|
-
"@radix-ui/react-checkbox": "^1.0.4",
|
|
31
|
-
"@radix-ui/react-dialog": "^1.0.5",
|
|
32
|
-
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
33
|
-
"@radix-ui/react-label": "^2.0.2",
|
|
34
|
-
"@radix-ui/react-popover": "^1.0.7",
|
|
35
|
-
"@radix-ui/react-progress": "^1.0.3",
|
|
36
|
-
"@radix-ui/react-scroll-area": "^1.0.5",
|
|
37
|
-
"@radix-ui/react-slider": "^1.1.2",
|
|
38
|
-
"@radix-ui/react-switch": "^1.0.3",
|
|
39
|
-
"@radix-ui/react-tabs": "^1.0.4",
|
|
40
|
-
"@radix-ui/react-toast": "^1.1.5",
|
|
41
|
-
"@radix-ui/react-tooltip": "^1.0.7",
|
|
42
|
-
"@tanstack/react-table": "^8.10.3",
|
|
43
|
-
"@types/node": "20.8.0",
|
|
44
|
-
"@types/react": "18.2.23",
|
|
45
|
-
"@types/react-dom": "18.2.8",
|
|
46
|
-
"class-variance-authority": "^0.7.0",
|
|
47
|
-
"clsx": "^2.0.0",
|
|
48
|
-
"cmdk": "^0.2.0",
|
|
49
|
-
"eslint": "8.50.0",
|
|
50
|
-
"eslint-config-next": "13.5.3",
|
|
51
|
-
"next": "^13.5.4",
|
|
52
|
-
"next-themes": "^0.2.1",
|
|
53
|
-
"prism-react-renderer": "^2.1.0",
|
|
54
|
-
"react": "18.2.0",
|
|
55
|
-
"react-dom": "18.2.0",
|
|
56
|
-
"react-dropzone": "^14.2.3",
|
|
57
|
-
"react-hook-form": "^7.47.0",
|
|
58
|
-
"react-select": "^5.7.7",
|
|
59
|
-
"tailwind-merge": "^1.14.0",
|
|
60
|
-
"typescript": "5.2.2",
|
|
61
|
-
"zod": "^3.22.3"
|
|
62
|
-
},
|
|
63
|
-
"devDependencies": {
|
|
64
|
-
"@storybook/addon-essentials": "^7.4.5",
|
|
65
|
-
"@storybook/addon-interactions": "^7.4.5",
|
|
66
|
-
"@storybook/addon-links": "^7.4.5",
|
|
67
|
-
"@storybook/addon-onboarding": "^1.0.8",
|
|
68
|
-
"@storybook/blocks": "^7.4.5",
|
|
69
|
-
"@storybook/manager-api": "^7.4.5",
|
|
70
|
-
"@storybook/nextjs": "^7.4.5",
|
|
71
|
-
"@storybook/react": "^7.4.5",
|
|
72
|
-
"@storybook/testing-library": "^0.2.1",
|
|
73
|
-
"autoprefixer": "^10.4.16",
|
|
74
|
-
"lucide-react": "^0.279.0",
|
|
75
|
-
"eslint-plugin-storybook": "^0.6.14",
|
|
76
|
-
"postcss": "^8.4.31",
|
|
77
|
-
"postcss-cli": "^10.1.0",
|
|
78
|
-
"postcss-import": "^15.1.0",
|
|
79
|
-
"storybook": "^7.4.5",
|
|
80
|
-
"storybook-dark-mode": "^3.0.1",
|
|
81
|
-
"tailwindcss": "^3.3.3",
|
|
82
|
-
"tailwindcss-animate": "^1.0.7",
|
|
83
|
-
"tsup": "^7.2.0"
|
|
84
|
-
}
|
|
85
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@sikka/hawa",
|
|
3
|
+
"version": "0.7.2-next",
|
|
4
|
+
"main": "./dist/index.js",
|
|
5
|
+
"types": "./dist/index.d.ts",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"import": "./dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"./dist/style.css": "./dist/index.css"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"dist/**"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"dev": "next dev",
|
|
17
|
+
"build": "next build",
|
|
18
|
+
"start": "next start -p 3032",
|
|
19
|
+
"lint": "next lint",
|
|
20
|
+
"storybook": "storybook dev -p 6006",
|
|
21
|
+
"build-storybook": "storybook build",
|
|
22
|
+
"build-lib": "tsup components/index.tsx --format cjs,esm --dts",
|
|
23
|
+
"build-css": "postcss styles/globals.css -o dist/index.css",
|
|
24
|
+
"prepub": "npm run build-lib && npm run build-css",
|
|
25
|
+
"pub": "npm publish --tag next"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@hookform/resolvers": "^3.3.1",
|
|
29
|
+
"@radix-ui/react-accordion": "^1.1.2",
|
|
30
|
+
"@radix-ui/react-checkbox": "^1.0.4",
|
|
31
|
+
"@radix-ui/react-dialog": "^1.0.5",
|
|
32
|
+
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
33
|
+
"@radix-ui/react-label": "^2.0.2",
|
|
34
|
+
"@radix-ui/react-popover": "^1.0.7",
|
|
35
|
+
"@radix-ui/react-progress": "^1.0.3",
|
|
36
|
+
"@radix-ui/react-scroll-area": "^1.0.5",
|
|
37
|
+
"@radix-ui/react-slider": "^1.1.2",
|
|
38
|
+
"@radix-ui/react-switch": "^1.0.3",
|
|
39
|
+
"@radix-ui/react-tabs": "^1.0.4",
|
|
40
|
+
"@radix-ui/react-toast": "^1.1.5",
|
|
41
|
+
"@radix-ui/react-tooltip": "^1.0.7",
|
|
42
|
+
"@tanstack/react-table": "^8.10.3",
|
|
43
|
+
"@types/node": "20.8.0",
|
|
44
|
+
"@types/react": "18.2.23",
|
|
45
|
+
"@types/react-dom": "18.2.8",
|
|
46
|
+
"class-variance-authority": "^0.7.0",
|
|
47
|
+
"clsx": "^2.0.0",
|
|
48
|
+
"cmdk": "^0.2.0",
|
|
49
|
+
"eslint": "8.50.0",
|
|
50
|
+
"eslint-config-next": "13.5.3",
|
|
51
|
+
"next": "^13.5.4",
|
|
52
|
+
"next-themes": "^0.2.1",
|
|
53
|
+
"prism-react-renderer": "^2.1.0",
|
|
54
|
+
"react": "18.2.0",
|
|
55
|
+
"react-dom": "18.2.0",
|
|
56
|
+
"react-dropzone": "^14.2.3",
|
|
57
|
+
"react-hook-form": "^7.47.0",
|
|
58
|
+
"react-select": "^5.7.7",
|
|
59
|
+
"tailwind-merge": "^1.14.0",
|
|
60
|
+
"typescript": "5.2.2",
|
|
61
|
+
"zod": "^3.22.3"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@storybook/addon-essentials": "^7.4.5",
|
|
65
|
+
"@storybook/addon-interactions": "^7.4.5",
|
|
66
|
+
"@storybook/addon-links": "^7.4.5",
|
|
67
|
+
"@storybook/addon-onboarding": "^1.0.8",
|
|
68
|
+
"@storybook/blocks": "^7.4.5",
|
|
69
|
+
"@storybook/manager-api": "^7.4.5",
|
|
70
|
+
"@storybook/nextjs": "^7.4.5",
|
|
71
|
+
"@storybook/react": "^7.4.5",
|
|
72
|
+
"@storybook/testing-library": "^0.2.1",
|
|
73
|
+
"autoprefixer": "^10.4.16",
|
|
74
|
+
"lucide-react": "^0.279.0",
|
|
75
|
+
"eslint-plugin-storybook": "^0.6.14",
|
|
76
|
+
"postcss": "^8.4.31",
|
|
77
|
+
"postcss-cli": "^10.1.0",
|
|
78
|
+
"postcss-import": "^15.1.0",
|
|
79
|
+
"storybook": "^7.4.5",
|
|
80
|
+
"storybook-dark-mode": "^3.0.1",
|
|
81
|
+
"tailwindcss": "^3.3.3",
|
|
82
|
+
"tailwindcss-animate": "^1.0.7",
|
|
83
|
+
"tsup": "^7.2.0"
|
|
84
|
+
}
|
|
85
|
+
}
|