@elementor/editor-interactions 4.0.0-639 → 4.0.0-641
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 +1 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -13
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -11
- package/src/utils/get-interactions-config.ts +1 -14
package/dist/index.mjs
CHANGED
|
@@ -173,20 +173,8 @@ var createSizeValue = (size, unit) => {
|
|
|
173
173
|
};
|
|
174
174
|
|
|
175
175
|
// src/utils/get-interactions-config.ts
|
|
176
|
-
var DEFAULT_CONFIG = {
|
|
177
|
-
constants: {
|
|
178
|
-
defaultDuration: 600,
|
|
179
|
-
defaultDelay: 0,
|
|
180
|
-
slideDistance: 100,
|
|
181
|
-
scaleStart: 0,
|
|
182
|
-
defaultEasing: "easeIn",
|
|
183
|
-
relativeTo: "viewport",
|
|
184
|
-
end: 15,
|
|
185
|
-
start: 85
|
|
186
|
-
}
|
|
187
|
-
};
|
|
188
176
|
function getInteractionsConfig() {
|
|
189
|
-
return window.ElementorInteractionsConfig
|
|
177
|
+
return window.ElementorInteractionsConfig ?? {};
|
|
190
178
|
}
|
|
191
179
|
|
|
192
180
|
// src/utils/temp-id-utils.ts
|