@omnifyjp/ui 2.2.0 → 2.3.0
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.
|
@@ -4,7 +4,7 @@ import { VariantProps } from 'class-variance-authority';
|
|
|
4
4
|
import { UIColor } from '../../lib/types.js';
|
|
5
5
|
|
|
6
6
|
declare const buttonVariants: (props?: ({
|
|
7
|
-
variant?: "
|
|
7
|
+
variant?: "destructive" | "default" | "secondary" | "outline" | "soft" | "ghost" | "link" | null | undefined;
|
|
8
8
|
color?: "primary" | "destructive" | "success" | "warning" | "info" | null | undefined;
|
|
9
9
|
size?: "default" | "xs" | "sm" | "lg" | "xl" | "icon" | null | undefined;
|
|
10
10
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnifyjp/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -35,6 +35,14 @@
|
|
|
35
35
|
"dist",
|
|
36
36
|
"src/styles"
|
|
37
37
|
],
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "tsup",
|
|
40
|
+
"dev": "tsup --watch",
|
|
41
|
+
"lint": "eslint src/",
|
|
42
|
+
"type-check": "tsc --noEmit",
|
|
43
|
+
"test": "vitest run",
|
|
44
|
+
"test:watch": "vitest"
|
|
45
|
+
},
|
|
38
46
|
"peerDependencies": {
|
|
39
47
|
"date-fns": ">=3",
|
|
40
48
|
"react": ">=19",
|
|
@@ -91,7 +99,7 @@
|
|
|
91
99
|
"sonner": "2.0.3",
|
|
92
100
|
"tailwind-merge": "3.2.0",
|
|
93
101
|
"vaul": "1.1.2",
|
|
94
|
-
"@omnifyjp/ui-mcp": "2.
|
|
102
|
+
"@omnifyjp/ui-mcp": "2.3.0"
|
|
95
103
|
},
|
|
96
104
|
"devDependencies": {
|
|
97
105
|
"@testing-library/jest-dom": "^6.9.1",
|
|
@@ -103,13 +111,5 @@
|
|
|
103
111
|
"tsup": "^8.0.0",
|
|
104
112
|
"typescript": "^5.9.3",
|
|
105
113
|
"vitest": "^4.0.18"
|
|
106
|
-
},
|
|
107
|
-
"scripts": {
|
|
108
|
-
"build": "tsup",
|
|
109
|
-
"dev": "tsup --watch",
|
|
110
|
-
"lint": "eslint src/",
|
|
111
|
-
"type-check": "tsc --noEmit",
|
|
112
|
-
"test": "vitest run",
|
|
113
|
-
"test:watch": "vitest"
|
|
114
114
|
}
|
|
115
|
-
}
|
|
115
|
+
}
|