@elementor/editor-interactions 4.0.0-665 → 4.0.0-667

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.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