@schemavaults/ui 0.11.128 → 0.11.130
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/.devcontainer/Dockerfile +11 -0
- package/.devcontainer/devcontainer.json +28 -0
- package/dist/components/ui/opacity-gradient/index.d.ts +3 -0
- package/dist/components/ui/opacity-gradient/index.js +3 -0
- package/dist/components/ui/opacity-gradient/index.js.map +1 -0
- package/dist/components/ui/opacity-gradient/opacity-gradient.d.ts +5 -0
- package/dist/components/ui/opacity-gradient/opacity-gradient.js +14 -0
- package/dist/components/ui/opacity-gradient/opacity-gradient.js.map +1 -0
- package/dist/framer-motion.d.ts +1 -1
- package/dist/framer-motion.js +1 -1
- package/dist/framer-motion.js.map +1 -1
- package/package.json +7 -6
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Bun + Storybook",
|
|
3
|
+
"build": {
|
|
4
|
+
"dockerfile": "Dockerfile",
|
|
5
|
+
"args": {
|
|
6
|
+
"BUN_VERSION": "1.3.1"
|
|
7
|
+
}
|
|
8
|
+
},
|
|
9
|
+
"postCreateCommand": "bun install",
|
|
10
|
+
"postAttachCommand": {
|
|
11
|
+
"server": "bun run preview"
|
|
12
|
+
},
|
|
13
|
+
"forwardPorts": [6006],
|
|
14
|
+
"portsAttributes": {
|
|
15
|
+
"6006": {
|
|
16
|
+
"label": "Storybook",
|
|
17
|
+
"onAutoForward": "openPreview"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"customizations": {
|
|
21
|
+
"codespaces": {
|
|
22
|
+
"openFiles": [".storybook/main.ts"]
|
|
23
|
+
},
|
|
24
|
+
"vscode": {
|
|
25
|
+
"extensions": []
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/ui/opacity-gradient/index.ts"],"names":[],"mappings":"AAAA,OAAO,eAAe,MAAM,oBAAoB,CAAC;AAEjD,OAAO,EAAE,eAAe,EAAE,eAAe,IAAI,OAAO,EAAE,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
import { m } from "../../../framer-motion";
|
|
4
|
+
import { cn } from "../../../lib/utils";
|
|
5
|
+
export default function OpacityGradient({ className, }) {
|
|
6
|
+
return (_jsx(m.div, { initial: {
|
|
7
|
+
opacity: 0,
|
|
8
|
+
}, exit: {
|
|
9
|
+
opacity: 0,
|
|
10
|
+
}, animate: {
|
|
11
|
+
opacity: 1,
|
|
12
|
+
}, className: cn(className, "bg-gradient-to-b from-transparent to-background") }));
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=opacity-gradient.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"opacity-gradient.js","sourceRoot":"","sources":["../../../../src/components/ui/opacity-gradient/opacity-gradient.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;;AAEb,OAAO,EAAE,CAAC,EAAE,MAAM,iBAAiB,CAAC;AACpC,OAAO,EAAE,EAAE,EAAE,MAAM,aAAa,CAAC;AAOjC,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EACtC,SAAS,GACY;IACrB,OAAO,CACL,KAAC,CAAC,CAAC,GAAG,IACJ,OAAO,EAAE;YACP,OAAO,EAAE,CAAC;SACX,EACD,IAAI,EAAE;YACJ,OAAO,EAAE,CAAC;SACX,EACD,OAAO,EAAE;YACP,OAAO,EAAE,CAAC;SACX,EACD,SAAS,EAAE,EAAE,CACX,SAAS,EACT,iDAAiD,CAClD,GACD,CACH,CAAC;AACJ,CAAC"}
|
package/dist/framer-motion.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { m, AnimatePresence, domAnimation, LazyMotion, useAnimate, useTransform, useMotionValue, usePresence, } from "framer-motion";
|
|
1
|
+
export { m, AnimatePresence, domAnimation, LazyMotion, useAnimate, useTransform, useMotionValue, usePresence, useScroll, useMotionValueEvent, useReducedMotion, } from "framer-motion";
|
|
2
2
|
export type { MotionValue, AnimationScope } from "framer-motion";
|
package/dist/framer-motion.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
export { m, AnimatePresence, domAnimation, LazyMotion, useAnimate, useTransform, useMotionValue, usePresence, } from "framer-motion";
|
|
2
|
+
export { m, AnimatePresence, domAnimation, LazyMotion, useAnimate, useTransform, useMotionValue, usePresence, useScroll, useMotionValueEvent, useReducedMotion, } from "framer-motion";
|
|
3
3
|
//# sourceMappingURL=framer-motion.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"framer-motion.js","sourceRoot":"","sources":["../src/framer-motion.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,EACL,CAAC,EACD,eAAe,EACf,YAAY,EACZ,UAAU,EACV,UAAU,EACV,YAAY,EACZ,cAAc,EACd,WAAW,
|
|
1
|
+
{"version":3,"file":"framer-motion.js","sourceRoot":"","sources":["../src/framer-motion.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,EACL,CAAC,EACD,eAAe,EACf,YAAY,EACZ,UAAU,EACV,UAAU,EACV,YAAY,EACZ,cAAc,EACd,WAAW,EACX,SAAS,EACT,mBAAmB,EACnB,gBAAgB,GACjB,MAAM,eAAe,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schemavaults/ui",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.130",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"description": "React.js UI components for SchemaVaults frontend applications",
|
|
@@ -34,13 +34,14 @@
|
|
|
34
34
|
"clsx": "2.1.1",
|
|
35
35
|
"cmdk": "1.1.1",
|
|
36
36
|
"eslint": "9.17.0",
|
|
37
|
-
"framer-motion": "12.23.
|
|
37
|
+
"framer-motion": "12.23.24",
|
|
38
38
|
"lucide-react": "0.508.0",
|
|
39
39
|
"next-themes": "0.4.6",
|
|
40
40
|
"react": "19.0.0",
|
|
41
41
|
"react-dom": "19.0.0",
|
|
42
42
|
"react-hook-form": "7.58.1",
|
|
43
|
-
"tailwind-merge": "3.0.2"
|
|
43
|
+
"tailwind-merge": "3.0.2",
|
|
44
|
+
"@emotion/is-prop-valid": "1.4.0"
|
|
44
45
|
},
|
|
45
46
|
"devDependencies": {
|
|
46
47
|
"@storybook/addon-essentials": "8.6.14",
|
|
@@ -55,7 +56,7 @@
|
|
|
55
56
|
"autoprefixer": "10.4.21",
|
|
56
57
|
"base64url": "3.0.1",
|
|
57
58
|
"buffer": "6.0.3",
|
|
58
|
-
"bun-types": "1.
|
|
59
|
+
"bun-types": "1.3.1",
|
|
59
60
|
"eslint-plugin-storybook": "0.12.0",
|
|
60
61
|
"ignore-loader": "0.1.2",
|
|
61
62
|
"postcss": "8.5.6",
|
|
@@ -63,7 +64,7 @@
|
|
|
63
64
|
"storybook": "8.6.14",
|
|
64
65
|
"tailwindcss": "3.4.17",
|
|
65
66
|
"tsc-alias": "1.8.16",
|
|
66
|
-
"typescript": "5.9.
|
|
67
|
+
"typescript": "5.9.3",
|
|
67
68
|
"webpack": "5.102.0"
|
|
68
69
|
},
|
|
69
70
|
"scripts": {
|
|
@@ -119,7 +120,7 @@
|
|
|
119
120
|
"publishConfig": {
|
|
120
121
|
"access": "public"
|
|
121
122
|
},
|
|
122
|
-
"packageManager": "bun@1.
|
|
123
|
+
"packageManager": "bun@1.3.1",
|
|
123
124
|
"eslintConfig": {
|
|
124
125
|
"extends": [
|
|
125
126
|
"plugin:storybook/recommended"
|