@motiadev/ui 0.13.2-beta.164-562802 → 0.13.2-beta.164-110989
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/components/ui/badge.d.ts +2 -2
- package/dist/components/ui/breadcrumb.d.ts.map +1 -1
- package/dist/components/ui/button.d.ts +4 -4
- package/dist/components/ui/button.d.ts.map +1 -1
- package/dist/components/ui/container.d.ts.map +1 -1
- package/dist/components/ui/empty.d.ts +2 -2
- package/dist/components/ui/input.d.ts +4 -4
- package/dist/components/ui/tooltip.d.ts +5 -5
- package/package.json +18 -18
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { VariantProps } from "class-variance-authority";
|
|
2
2
|
import { FC, HTMLAttributes } from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as class_variance_authority_types0 from "class-variance-authority/types";
|
|
4
4
|
|
|
5
5
|
//#region src/components/ui/badge.d.ts
|
|
6
6
|
declare const badgeVariants: (props?: ({
|
|
7
7
|
variant?: "info" | "success" | "error" | "default" | "outline" | "warning" | null | undefined;
|
|
8
|
-
} &
|
|
8
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
9
9
|
interface BadgeProps extends HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {}
|
|
10
10
|
declare const Badge: FC<BadgeProps>;
|
|
11
11
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"breadcrumb.d.ts","names":[],"sources":["../../../src/components/ui/breadcrumb.tsx"],"sourcesContent":[],"mappings":";;;UAOiB,mBAAA;kBACC;EADD,IAAA,CAAA,EAER,SAFQ;EACC,OAAA,CAAA,EAAA,GAAA,GAAA,IAAA;EACT,MAAA,EAAA,OAAA;EAIW,aAAA,CAAA,EAAA;IACT,KAAA,EAAA,MAAA,GADS,SACT;IAAS,IAAA,CAAA,EAAT,SAAS;IAKP,OAAA,CAAA,EAAA,GA4CZ,GAAA,IAAA;EAIgB,CAAA,EAAA;;AAGN,cAnDE,cAmDF,EAnDkB,EAmDlB,CAnDqB,mBAmDrB,CAAA;AAGW,UANL,eAAA,SAAwB,cAMnB,CAAA,KAAA,CAAA,CAAA;EACT,KAAA,EAAA;IAP4B,KAAA,EAAA,MAAA,GAErB,SAFqB;IAAc,IAAA,CAAA,EAG5C,SAH4C;IAa1C,OAAA,CAAA,EAsBZ,GAAA,GAAA,
|
|
1
|
+
{"version":3,"file":"breadcrumb.d.ts","names":[],"sources":["../../../src/components/ui/breadcrumb.tsx"],"sourcesContent":[],"mappings":";;;UAOiB,mBAAA;kBACC;EADD,IAAA,CAAA,EAER,SAFQ;EACC,OAAA,CAAA,EAAA,GAAA,GAAA,IAAA;EACT,MAAA,EAAA,OAAA;EAIW,aAAA,CAAA,EAAA;IACT,KAAA,EAAA,MAAA,GADS,SACT;IAAS,IAAA,CAAA,EAAT,SAAS;IAKP,OAAA,CAAA,EAAA,GA4CZ,GAAA,IAAA;EAIgB,CAAA,EAAA;;AAGN,cAnDE,cAmDF,EAnDkB,EAmDlB,CAnDqB,mBAmDrB,CAAA;AAGW,UANL,eAAA,SAAwB,cAMnB,CAAA,KAAA,CAAA,CAAA;EACT,KAAA,EAAA;IAP4B,KAAA,EAAA,MAAA,GAErB,SAFqB;IAAc,IAAA,CAAA,EAG5C,SAH4C;IAa1C,OAAA,CAAA,EAsBZ,GAAA,GAAA,IAtB2B;;sBAPN;aACT;;;;;cAMA,YAAY,GAAG"}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { VariantProps } from "class-variance-authority";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react5 from "react";
|
|
3
3
|
import { ButtonHTMLAttributes } from "react";
|
|
4
|
-
import * as
|
|
4
|
+
import * as class_variance_authority_types2 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/components/ui/button.d.ts
|
|
7
7
|
declare const buttonVariants: (props?: ({
|
|
8
8
|
variant?: "link" | "default" | "outline" | "accent" | "light" | "secondary" | "destructive" | "ghost" | "icon" | null | undefined;
|
|
9
9
|
size?: "default" | "icon" | "sm" | "md" | "lg" | null | undefined;
|
|
10
|
-
} &
|
|
10
|
+
} & class_variance_authority_types2.ClassProp) | undefined) => string;
|
|
11
11
|
interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
12
12
|
asChild?: boolean;
|
|
13
13
|
}
|
|
14
|
-
declare const Button:
|
|
14
|
+
declare const Button: react5.ForwardRefExoticComponent<ButtonProps & react5.RefAttributes<HTMLButtonElement>>;
|
|
15
15
|
//#endregion
|
|
16
16
|
export { Button, ButtonProps };
|
|
17
17
|
//# sourceMappingURL=button.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"button.d.ts","names":[],"sources":["../../../src/components/ui/button.tsx"],"sourcesContent":[],"mappings":";;;;;;cAMM;;;IA4BL,+BAAA,CAAA;AA5BK,UA8BW,WAAA,SAAoB,oBAFpC,CAEyD,iBAFzD,CAAA,EAE6E,YAF7E,CAAA,OAEiG,cAFjG,CAAA,CAAA;EAEgB,OAAA,CAAA,EAAA,OAAY;;AAAqE,cAIrF,MAJqF,EAI/E,
|
|
1
|
+
{"version":3,"file":"button.d.ts","names":[],"sources":["../../../src/components/ui/button.tsx"],"sourcesContent":[],"mappings":";;;;;;cAMM;;;IA4BL,+BAAA,CAAA;AA5BK,UA8BW,WAAA,SAAoB,oBAFpC,CAEyD,iBAFzD,CAAA,EAE6E,YAF7E,CAAA,OAEiG,cAFjG,CAAA,CAAA;EAEgB,OAAA,CAAA,EAAA,OAAY;;AAAqE,cAIrF,MAJqF,EAI/E,MAAA,CAAA,yBAJ+E,CAI/E,WAJ+E,GAI/E,MAAA,CAAA,aAJ+E,CAI/E,iBAJ+E,CAAA,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"container.d.ts","names":[],"sources":["../../../src/components/ui/container.tsx"],"sourcesContent":[],"mappings":";;;;;;UAKU,cAAA,SAAuB,eAAe;cAEnC,WAAS,MAAA,CAAA,0BAAA,iBAAA,MAAA,CAAA,cAAA;cAgBhB,+BAHJ;EAfQ,OAAA,CAAA,EAAA,SAAe,GAAA,
|
|
1
|
+
{"version":3,"file":"container.d.ts","names":[],"sources":["../../../src/components/ui/container.tsx"],"sourcesContent":[],"mappings":";;;;;;UAKU,cAAA,SAAuB,eAAe;cAEnC,WAAS,MAAA,CAAA,0BAAA,iBAAA,MAAA,CAAA,cAAA;cAgBhB,+BAHJ;EAfQ,OAAA,CAAA,EAAA,SAAe,GAAA,MAAA,GAAuB,IAAA,GAAA,SAAf;AAEjC,CAAA,GA0BE,+BAAA,CAAA,SAbA,CAAA,GAAA,SAAA,EAAA,GAAA,MAAA;AAboB,KA4BV,oBAAA,GAAuB,cA5Bb,CA4B4B,cA5B5B,CAAA,GA4B8C,YA5B9C,CAAA,OA4BkE,uBA5BlE,CAAA;AAAA,cA8BT,eA9BS,SA8BM,yBA9BN,CA8BM,cA9BN,CA8BM,cA9BN,CAAA,GA8BM,YA9BN,CAAA,CAAA,KAAA,CAAA,EAAA,CAAA;EAAA,OAAA,CAAA,EAAA,SAAA,GAAA,MAAA,GAAA,IAAA,GAAA,SAAA;CAAA,GA8BM,+BAAA,CAAA,SA9BN,CAAA,GAAA,SAAA,EAAA,GAAA,MAAA,CAAA,uBAAA,eAAA,CAAA,CAAA;AAAA,cA0CT,gBA1CS,EA0CO,MAAA,CAAA,yBA1CP,CA0CO,cA1CP,CA0CO,cA1CP,CAAA,GA0CO,MAAA,CAAA,aA1CP,CA0CO,cA1CP,CAAA,CAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
2
|
import { VariantProps } from "class-variance-authority";
|
|
3
|
-
import * as
|
|
3
|
+
import * as class_variance_authority_types3 from "class-variance-authority/types";
|
|
4
4
|
|
|
5
5
|
//#region src/components/ui/empty.d.ts
|
|
6
6
|
declare function Empty({
|
|
@@ -13,7 +13,7 @@ declare function EmptyHeader({
|
|
|
13
13
|
}: React.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
14
14
|
declare const emptyMediaVariants: (props?: ({
|
|
15
15
|
variant?: "default" | "icon" | null | undefined;
|
|
16
|
-
} &
|
|
16
|
+
} & class_variance_authority_types3.ClassProp) | undefined) => string;
|
|
17
17
|
declare function EmptyMedia({
|
|
18
18
|
className,
|
|
19
19
|
variant,
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { VariantProps } from "class-variance-authority";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react7 from "react";
|
|
3
3
|
import { InputHTMLAttributes } from "react";
|
|
4
|
-
import * as
|
|
4
|
+
import * as class_variance_authority_types4 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/components/ui/input.d.ts
|
|
7
7
|
declare const inputVariants: (props?: ({
|
|
8
8
|
variant?: "default" | "outline" | "shade" | "outlineReadonly" | null | undefined;
|
|
9
|
-
} &
|
|
9
|
+
} & class_variance_authority_types4.ClassProp) | undefined) => string;
|
|
10
10
|
interface InputProps extends InputHTMLAttributes<HTMLInputElement>, VariantProps<typeof inputVariants> {}
|
|
11
|
-
declare const Input:
|
|
11
|
+
declare const Input: react7.ForwardRefExoticComponent<InputProps & react7.RefAttributes<HTMLInputElement>>;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { Input };
|
|
14
14
|
//# sourceMappingURL=input.d.ts.map
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react9 from "react";
|
|
2
2
|
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
|
3
3
|
|
|
4
4
|
//#region src/components/ui/tooltip.d.ts
|
|
5
|
-
declare const TooltipProvider:
|
|
6
|
-
declare const Tooltip:
|
|
7
|
-
declare const TooltipTrigger:
|
|
8
|
-
declare const TooltipContent:
|
|
5
|
+
declare const TooltipProvider: react9.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
6
|
+
declare const Tooltip: react9.FC<TooltipPrimitive.TooltipProps>;
|
|
7
|
+
declare const TooltipTrigger: react9.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & react9.RefAttributes<HTMLButtonElement>>;
|
|
8
|
+
declare const TooltipContent: react9.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & react9.RefAttributes<HTMLDivElement>, "ref"> & react9.RefAttributes<HTMLDivElement>>;
|
|
9
9
|
//#endregion
|
|
10
10
|
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger };
|
|
11
11
|
//# sourceMappingURL=tooltip.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@motiadev/ui",
|
|
3
3
|
"description": "Shared React UI components library for the Motia ecosystem",
|
|
4
|
-
"version": "0.13.2-beta.164-
|
|
4
|
+
"version": "0.13.2-beta.164-110989",
|
|
5
5
|
"license": "Elastic-2.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
@@ -24,40 +24,40 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@radix-ui/react-checkbox": "^1.3.3",
|
|
26
26
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
27
|
-
"@radix-ui/react-label": "^2.1.
|
|
27
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
28
28
|
"@radix-ui/react-select": "^2.2.6",
|
|
29
|
-
"@radix-ui/react-separator": "^1.1.
|
|
30
|
-
"@radix-ui/react-slot": "^1.2.
|
|
29
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
30
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
31
31
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
32
32
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
33
33
|
"class-variance-authority": "^0.7.1",
|
|
34
34
|
"clsx": "^2.1.1",
|
|
35
|
-
"lucide-react": "^0.
|
|
35
|
+
"lucide-react": "^0.555.0",
|
|
36
36
|
"react-resizable-panels": "^3.0.6",
|
|
37
37
|
"react-use-resizable": "^0.2.0",
|
|
38
|
-
"tailwind-merge": "^3.
|
|
39
|
-
"zustand": "^5.0.
|
|
38
|
+
"tailwind-merge": "^3.4.0",
|
|
39
|
+
"zustand": "^5.0.9"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@bosh-code/tsdown-plugin-tailwindcss": "^1.0.1",
|
|
43
43
|
"@rollup/plugin-babel": "^6.1.0",
|
|
44
|
-
"@storybook/addon-a11y": "^10.
|
|
45
|
-
"@storybook/addon-docs": "^10.
|
|
46
|
-
"@storybook/addon-themes": "^10.
|
|
47
|
-
"@storybook/react": "^10.
|
|
48
|
-
"@storybook/react-vite": "^10.
|
|
49
|
-
"@storybook/test-runner": "^0.24.
|
|
44
|
+
"@storybook/addon-a11y": "^10.1.2",
|
|
45
|
+
"@storybook/addon-docs": "^10.1.2",
|
|
46
|
+
"@storybook/addon-themes": "^10.1.2",
|
|
47
|
+
"@storybook/react": "^10.1.2",
|
|
48
|
+
"@storybook/react-vite": "^10.1.2",
|
|
49
|
+
"@storybook/test-runner": "^0.24.2",
|
|
50
50
|
"@tailwindcss/postcss": "^4.1.17",
|
|
51
|
-
"@types/react": "^19.2.
|
|
52
|
-
"@types/react-dom": "^19.2.
|
|
51
|
+
"@types/react": "^19.2.7",
|
|
52
|
+
"@types/react-dom": "^19.2.3",
|
|
53
53
|
"babel-plugin-react-compiler": "^1.0.0",
|
|
54
54
|
"concurrently": "^9.2.1",
|
|
55
55
|
"husky": "^9.1.7",
|
|
56
|
-
"storybook": "^10.
|
|
56
|
+
"storybook": "^10.1.2",
|
|
57
57
|
"tailwindcss": "^4.1.17",
|
|
58
|
-
"tsdown": "^0.16.
|
|
58
|
+
"tsdown": "^0.16.8",
|
|
59
59
|
"typescript": "^5.9.3",
|
|
60
|
-
"wait-on": "^9.0.
|
|
60
|
+
"wait-on": "^9.0.3"
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|
|
63
63
|
"build": "tsdown",
|