@elementor/editor-interactions 4.0.0-665 → 4.0.0-666
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 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -11
- package/src/utils/prop-value-utils.ts +1 -1
package/dist/index.mjs
CHANGED
|
@@ -385,7 +385,7 @@ var buildDisplayLabel = (item) => {
|
|
|
385
385
|
const type = extractString(item.animation.value.type);
|
|
386
386
|
const triggerLabel = TRIGGER_LABELS[trigger] || capitalize(trigger);
|
|
387
387
|
const effectLabel = capitalize(effect);
|
|
388
|
-
const typeLabel = capitalize(type);
|
|
388
|
+
const typeLabel = "custom" === effect ? "" : capitalize(type);
|
|
389
389
|
return `${triggerLabel}: ${effectLabel} ${typeLabel}`;
|
|
390
390
|
};
|
|
391
391
|
|