@elementor/editor-editing-panel 4.3.0-1050 → 4.3.0-1052
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 +24 -24
- package/src/components/css-classes/css-class-selector.tsx +1 -0
package/dist/index.js
CHANGED
|
@@ -1562,7 +1562,7 @@ var updateClassByProvider = (provider, data) => {
|
|
|
1562
1562
|
function useOptions() {
|
|
1563
1563
|
const { element } = useElement();
|
|
1564
1564
|
const isProviderEditable = (provider) => !!provider.actions.updateProps;
|
|
1565
|
-
return (0, import_editor_styles_repository11.useProviders)().filter(isProviderEditable).flatMap((provider) => {
|
|
1565
|
+
return (0, import_editor_styles_repository11.useProviders)().filter(isProviderEditable).filter((provider) => provider.getKey() !== "default-styles").flatMap((provider) => {
|
|
1566
1566
|
const isElements = (0, import_editor_styles_repository11.isElementsStylesProvider)(provider.getKey());
|
|
1567
1567
|
const styleDefs = provider.actions.all({ elementId: element.id });
|
|
1568
1568
|
if (isElements && styleDefs.length === 0) {
|