@elementor/editor-editing-panel 4.2.0-895 → 4.2.0-897

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
@@ -657,7 +657,10 @@ function ensureClassesAreLoaded(classIds) {
657
657
  const owningProvider = providers.find(
658
658
  (provider) => provider.actions.all().some((style) => style.id === classId)
659
659
  );
660
- owningProvider?.actions.get(classId);
660
+ try {
661
+ owningProvider?.actions.get(classId);
662
+ } catch {
663
+ }
661
664
  });
662
665
  }
663
666
  function doUnapplyClass(elementId, classId, classesPropType = "classes") {