@xwadex/fesd-next 0.3.4-12 → 0.3.4-14
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/shadcns/index.d.mts +2 -2
- package/package.json +9 -27
package/dist/shadcns/index.d.mts
CHANGED
|
@@ -141,7 +141,7 @@ declare function AvatarFallback({
|
|
|
141
141
|
//#endregion
|
|
142
142
|
//#region src/shadcns/components/ui/badge.d.ts
|
|
143
143
|
declare const badgeVariants: (props?: ({
|
|
144
|
-
variant?: "default" | "destructive" | "
|
|
144
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
|
|
145
145
|
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
146
146
|
declare function Badge({
|
|
147
147
|
className,
|
|
@@ -187,7 +187,7 @@ declare function BreadcrumbEllipsis({
|
|
|
187
187
|
//#endregion
|
|
188
188
|
//#region src/shadcns/components/ui/button.d.ts
|
|
189
189
|
declare const buttonVariants: (props?: ({
|
|
190
|
-
variant?: "default" | "destructive" | "
|
|
190
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
|
|
191
191
|
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
192
192
|
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
193
193
|
declare function Button({
|
package/package.json
CHANGED
|
@@ -1,42 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xwadex/fesd-next",
|
|
3
|
-
"version": "0.3.4-
|
|
3
|
+
"version": "0.3.4-14",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "./dist/index.mjs",
|
|
7
6
|
"types": "./dist/index.d.mts",
|
|
8
7
|
"exports": {
|
|
9
|
-
".":
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"./
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
},
|
|
17
|
-
"./shadcns": {
|
|
18
|
-
"import": "./dist/shadcns/index.mjs",
|
|
19
|
-
"types": "./dist/shadcns/index.d.mts"
|
|
20
|
-
},
|
|
21
|
-
"./hooks": {
|
|
22
|
-
"import": "./dist/hooks/index.mjs",
|
|
23
|
-
"types": "./dist/hooks/index.d.mts"
|
|
24
|
-
},
|
|
25
|
-
"./utils": {
|
|
26
|
-
"import": "./dist/utils/index.mjs",
|
|
27
|
-
"types": "./dist/utils/index.d.mts"
|
|
28
|
-
},
|
|
29
|
-
"./types": {
|
|
30
|
-
"import": "./dist/types/index.mjs",
|
|
31
|
-
"types": "./dist/types/index.d.mts"
|
|
32
|
-
}
|
|
8
|
+
".": "./dist/index.mjs",
|
|
9
|
+
"./components": "./dist/components/index.mjs",
|
|
10
|
+
"./hooks": "./dist/hooks/index.mjs",
|
|
11
|
+
"./shadcns": "./dist/shadcns/index.mjs",
|
|
12
|
+
"./types": "./dist/types/index.mjs",
|
|
13
|
+
"./utils": "./dist/utils/index.mjs",
|
|
14
|
+
"./package.json": "./package.json"
|
|
33
15
|
},
|
|
34
16
|
"files": [
|
|
35
17
|
"dist"
|
|
36
18
|
],
|
|
37
19
|
"scripts": {
|
|
38
20
|
"clean": "rm -rf dist",
|
|
39
|
-
"build:js": "tsdown",
|
|
21
|
+
"build:js": "tsdown --exports",
|
|
40
22
|
"build": "npm run clean && npm run build:js"
|
|
41
23
|
},
|
|
42
24
|
"peerDependencies": {
|