@elementor/editor-interactions 4.2.0-839 → 4.2.0-841
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.mjs
CHANGED
|
@@ -1913,7 +1913,7 @@ var baseSchema = {
|
|
|
1913
1913
|
),
|
|
1914
1914
|
duration: z.number().min(0).max(1e4).optional().describe("Animation duration in milliseconds"),
|
|
1915
1915
|
delay: z.number().min(0).max(1e4).optional().describe("Animation delay in milliseconds"),
|
|
1916
|
-
easing: z.
|
|
1916
|
+
easing: z.enum(["easeIn"]).optional().describe('Easing function for the animation. Use "easeIn" for free tier.'),
|
|
1917
1917
|
excludedBreakpoints: z.array(z.string()).optional().describe(
|
|
1918
1918
|
'Breakpoint IDs on which this interaction is disabled (e.g. ["mobile", "tablet"]). Omit to enable on all breakpoints.'
|
|
1919
1919
|
)
|
|
@@ -1921,6 +1921,7 @@ var baseSchema = {
|
|
|
1921
1921
|
var proSchema = {
|
|
1922
1922
|
trigger: z.enum(["load", "scrollIn", "scrollOut", "scrollOn", "hover", "click"]).optional().describe("Event that triggers the animation"),
|
|
1923
1923
|
effect: z.enum(["fade", "slide", "scale", "custom"]).optional().describe("Animation effect type"),
|
|
1924
|
+
easing: z.enum(["easeIn", "easeInOut", "easeOut", "backIn", "backInOut", "backOut", "linear"]).optional().describe("Easing function for the animation."),
|
|
1924
1925
|
customEffects: z.object({
|
|
1925
1926
|
keyframes: z.array(
|
|
1926
1927
|
z.object({
|