azamat-ui-kit 0.1.0 → 0.1.1
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 +2 -25
- package/dist/index.cjs +2 -4
- package/dist/index.d.ts +0 -1
- package/dist/index.js +5460 -9331
- package/package.json +1 -7
- package/dist/components/ui/component-preview.d.ts +0 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "azamat-ui-kit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Reusable React UI kit with dashboard-ready components, CLI registry helpers, and TypeScript support.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -53,14 +53,10 @@
|
|
|
53
53
|
"LICENSE"
|
|
54
54
|
],
|
|
55
55
|
"scripts": {
|
|
56
|
-
"dev": "vite",
|
|
57
56
|
"build": "tsc -b && vite build && tsc -p tsconfig.build.json && tsup",
|
|
58
|
-
"build:web": "tsc -b && vite build --mode site",
|
|
59
|
-
"build:lib": "tsc -b && vite build",
|
|
60
57
|
"build:cli": "tsup",
|
|
61
58
|
"prepack": "npm run build",
|
|
62
59
|
"lint": "eslint .",
|
|
63
|
-
"preview": "vite preview",
|
|
64
60
|
"test:types": "tsc -p tsconfig.test.json --noEmit",
|
|
65
61
|
"test:a11y": "node scripts/a11y-smoke.mjs",
|
|
66
62
|
"test:registry": "node scripts/validate-registry.mjs",
|
|
@@ -83,7 +79,6 @@
|
|
|
83
79
|
"fs-extra": "^11.3.5",
|
|
84
80
|
"kolorist": "^1.8.0",
|
|
85
81
|
"lucide-react": "^1.17.0",
|
|
86
|
-
"prism-react-renderer": "^2.4.1",
|
|
87
82
|
"prompts": "^2.4.2",
|
|
88
83
|
"tailwind-merge": "^3.6.0",
|
|
89
84
|
"tw-animate-css": "^1.4.0"
|
|
@@ -107,7 +102,6 @@
|
|
|
107
102
|
"react": "^19.2.6",
|
|
108
103
|
"react-dom": "^19.2.6",
|
|
109
104
|
"react-hook-form": "^7.75.0",
|
|
110
|
-
"react-router-dom": "^7.18.0",
|
|
111
105
|
"shadcn": "^4.11.0",
|
|
112
106
|
"tailwindcss": "^4.3.0",
|
|
113
107
|
"tsup": "^8.5.1",
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
export interface ComponentPreviewProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title" | "description"> {
|
|
3
|
-
code: string;
|
|
4
|
-
language?: string;
|
|
5
|
-
title?: React.ReactNode;
|
|
6
|
-
description?: React.ReactNode;
|
|
7
|
-
dependencies?: string[];
|
|
8
|
-
children: React.ReactNode;
|
|
9
|
-
}
|
|
10
|
-
export declare function ComponentPreview({ code, language, title, description, dependencies, children, className, ...props }: ComponentPreviewProps): React.JSX.Element;
|