@schemavaults/ui 0.11.129 → 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.
@@ -0,0 +1,3 @@
1
+ import OpacityGradient from "./opacity-gradient";
2
+ export { OpacityGradient, OpacityGradient as default };
3
+ export type { OpacityGradientProps } from "./opacity-gradient";
@@ -0,0 +1,3 @@
1
+ import OpacityGradient from "./opacity-gradient";
2
+ export { OpacityGradient, OpacityGradient as default };
3
+ //# sourceMappingURL=index.js.map
@@ -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,5 @@
1
+ import type { ReactElement } from "react";
2
+ export interface OpacityGradientProps {
3
+ className?: string;
4
+ }
5
+ export default function OpacityGradient({ className, }: OpacityGradientProps): ReactElement;
@@ -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"}
@@ -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";
@@ -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,GACZ,MAAM,eAAe,CAAC"}
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.129",
3
+ "version": "0.11.130",
4
4
  "private": false,
5
5
  "license": "UNLICENSED",
6
6
  "description": "React.js UI components for SchemaVaults frontend applications",