@elementor/editor-editing-panel 4.2.0-896 → 4.2.0-898

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") {
@@ -7573,6 +7576,7 @@ export {
7573
7576
  Control as BaseControl,
7574
7577
  ControlTypeContainer,
7575
7578
  CustomCssIndicator,
7579
+ EditingPanelTabs,
7576
7580
  ElementProvider,
7577
7581
  FIELD_TYPE,
7578
7582
  HISTORY_DEBOUNCE_WAIT,