@elementor/editor-interactions 4.2.0-839 → 4.2.0-840
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/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +12 -12
- package/src/mcp/tools/schema.ts +8 -1
package/dist/index.js
CHANGED
|
@@ -1978,7 +1978,7 @@ var baseSchema = {
|
|
|
1978
1978
|
),
|
|
1979
1979
|
duration: import_schema.z.number().min(0).max(1e4).optional().describe("Animation duration in milliseconds"),
|
|
1980
1980
|
delay: import_schema.z.number().min(0).max(1e4).optional().describe("Animation delay in milliseconds"),
|
|
1981
|
-
easing: import_schema.z.
|
|
1981
|
+
easing: import_schema.z.enum(["easeIn"]).optional().describe('Easing function for the animation. Use "easeIn" for free tier.'),
|
|
1982
1982
|
excludedBreakpoints: import_schema.z.array(import_schema.z.string()).optional().describe(
|
|
1983
1983
|
'Breakpoint IDs on which this interaction is disabled (e.g. ["mobile", "tablet"]). Omit to enable on all breakpoints.'
|
|
1984
1984
|
)
|
|
@@ -1986,6 +1986,7 @@ var baseSchema = {
|
|
|
1986
1986
|
var proSchema = {
|
|
1987
1987
|
trigger: import_schema.z.enum(["load", "scrollIn", "scrollOut", "scrollOn", "hover", "click"]).optional().describe("Event that triggers the animation"),
|
|
1988
1988
|
effect: import_schema.z.enum(["fade", "slide", "scale", "custom"]).optional().describe("Animation effect type"),
|
|
1989
|
+
easing: import_schema.z.enum(["easeIn", "easeInOut", "easeOut", "backIn", "backInOut", "backOut", "linear"]).optional().describe("Easing function for the animation."),
|
|
1989
1990
|
customEffects: import_schema.z.object({
|
|
1990
1991
|
keyframes: import_schema.z.array(
|
|
1991
1992
|
import_schema.z.object({
|