qstd 0.3.90 → 0.3.91
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/block/fns.d.ts +13 -13
- package/package.json +3 -3
package/dist/block/fns.d.ts
CHANGED
|
@@ -983,17 +983,17 @@ export declare const extractElAndStyles: (extract: ReturnType<typeof extractElTy
|
|
|
983
983
|
readonly loadingIcon?: _t.Icons;
|
|
984
984
|
readonly isLoading?: boolean;
|
|
985
985
|
readonly layout?: boolean | "position" | "size" | "preserve-aspect" | undefined;
|
|
986
|
-
readonly initial?: boolean | import("motion
|
|
987
|
-
readonly animate?: boolean | import("framer-motion").VariantLabels | import("motion
|
|
988
|
-
readonly exit?: import("framer-motion").VariantLabels | import("motion
|
|
989
|
-
readonly whileHover?: import("framer-motion").VariantLabels | import("motion
|
|
990
|
-
readonly whileTap?: import("framer-motion").VariantLabels | import("motion
|
|
991
|
-
readonly whileFocus?: import("framer-motion").VariantLabels | import("motion
|
|
992
|
-
readonly whileDrag?: import("framer-motion").VariantLabels | import("motion
|
|
993
|
-
readonly variants?: import("motion
|
|
986
|
+
readonly initial?: boolean | import("framer-motion").Target | import("framer-motion").VariantLabels | undefined;
|
|
987
|
+
readonly animate?: boolean | import("framer-motion").VariantLabels | import("framer-motion").TargetAndTransition | undefined;
|
|
988
|
+
readonly exit?: import("framer-motion").VariantLabels | import("framer-motion").TargetAndTransition | undefined;
|
|
989
|
+
readonly whileHover?: import("framer-motion").VariantLabels | import("framer-motion").TargetAndTransition | undefined;
|
|
990
|
+
readonly whileTap?: import("framer-motion").VariantLabels | import("framer-motion").TargetAndTransition | undefined;
|
|
991
|
+
readonly whileFocus?: import("framer-motion").VariantLabels | import("framer-motion").TargetAndTransition | undefined;
|
|
992
|
+
readonly whileDrag?: import("framer-motion").VariantLabels | import("framer-motion").TargetAndTransition | undefined;
|
|
993
|
+
readonly variants?: import("framer-motion").Variants | undefined;
|
|
994
994
|
readonly custom?: unknown;
|
|
995
|
-
readonly onAnimationStart?: ((definition: import("motion
|
|
996
|
-
readonly onAnimationComplete?: ((definition: import("motion
|
|
995
|
+
readonly onAnimationStart?: ((definition: import("framer-motion").AnimationDefinition) => void) | undefined;
|
|
996
|
+
readonly onAnimationComplete?: ((definition: import("framer-motion").AnimationDefinition) => void) | undefined;
|
|
997
997
|
readonly drag?: boolean | "x" | "y" | undefined;
|
|
998
998
|
readonly dragListener?: boolean | undefined;
|
|
999
999
|
readonly dragControls?: import("framer-motion").DragControls | undefined;
|
|
@@ -1010,9 +1010,9 @@ export declare const extractElAndStyles: (extract: ReturnType<typeof extractElTy
|
|
|
1010
1010
|
bottom: number;
|
|
1011
1011
|
}> | undefined;
|
|
1012
1012
|
readonly dragMomentum?: boolean | undefined;
|
|
1013
|
-
readonly onDragStart?: ((event: unknown, info?: import("motion
|
|
1014
|
-
readonly onDrag?: ((event: unknown, info?: import("motion
|
|
1015
|
-
readonly onDragEnd?: ((event: unknown, info?: import("motion
|
|
1013
|
+
readonly onDragStart?: ((event: unknown, info?: import("framer-motion").PanInfo) => void) | undefined;
|
|
1014
|
+
readonly onDrag?: ((event: unknown, info?: import("framer-motion").PanInfo) => void) | undefined;
|
|
1015
|
+
readonly onDragEnd?: ((event: unknown, info?: import("framer-motion").PanInfo) => void) | undefined;
|
|
1016
1016
|
}];
|
|
1017
1017
|
export declare const getIcons: (extract: ReturnType<typeof extractElType>, anyProps: InternalBlockProps) => {
|
|
1018
1018
|
leftIcon: import("react/jsx-runtime").JSX.Element | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qstd",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.91",
|
|
4
4
|
"description": "Standard Block component and utilities library with Panda CSS",
|
|
5
5
|
"author": "malin1",
|
|
6
6
|
"license": "MIT",
|
|
@@ -62,6 +62,7 @@
|
|
|
62
62
|
"lint": "eslint ."
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
|
+
"framer-motion": "^12.38.0",
|
|
65
66
|
"react": "^18.0.0 || ^19.0.0",
|
|
66
67
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
67
68
|
},
|
|
@@ -84,8 +85,6 @@
|
|
|
84
85
|
"arktype": "2",
|
|
85
86
|
"aws-lambda": "latest",
|
|
86
87
|
"date-fns": "4",
|
|
87
|
-
"framer-motion": "^12.15.0",
|
|
88
|
-
"motion-dom": "^12.23.21",
|
|
89
88
|
"music-metadata-browser": "^2.5.11",
|
|
90
89
|
"nanoid": "^5.1.5",
|
|
91
90
|
"react-icons": "^5.5.0",
|
|
@@ -107,6 +106,7 @@
|
|
|
107
106
|
"@types/signale": "^1.4.7",
|
|
108
107
|
"eslint": "^9.39.1",
|
|
109
108
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
109
|
+
"framer-motion": "^12.38.0",
|
|
110
110
|
"globals": "^16.2.0",
|
|
111
111
|
"react": "^19.2.0",
|
|
112
112
|
"react-dom": "^19.2.0",
|