@elementor/editor-editing-panel 3.35.0-374 → 3.35.0-376
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.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +305 -238
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +230 -163
- package/dist/index.mjs.map +1 -1
- package/package.json +20 -20
- package/src/components/promotions/custom-css.tsx +48 -0
- package/src/components/promotions/init.tsx +13 -0
- package/src/components/section.tsx +8 -3
- package/src/components/style-tab-section.tsx +5 -3
- package/src/init.ts +3 -0
package/dist/index.d.mts
CHANGED
|
@@ -69,9 +69,10 @@ declare const useFontFamilies: () => FontCategory[];
|
|
|
69
69
|
declare const injectIntoStyleTab: (args: _elementor_locations.InjectArgs<object>) => void;
|
|
70
70
|
|
|
71
71
|
type SectionType = {
|
|
72
|
-
component
|
|
72
|
+
component?: () => react.JSX.Element;
|
|
73
73
|
name: string;
|
|
74
74
|
title: string;
|
|
75
|
+
action?: react.ReactNode;
|
|
75
76
|
};
|
|
76
77
|
type Props$1 = {
|
|
77
78
|
section: SectionType;
|
package/dist/index.d.ts
CHANGED
|
@@ -69,9 +69,10 @@ declare const useFontFamilies: () => FontCategory[];
|
|
|
69
69
|
declare const injectIntoStyleTab: (args: _elementor_locations.InjectArgs<object>) => void;
|
|
70
70
|
|
|
71
71
|
type SectionType = {
|
|
72
|
-
component
|
|
72
|
+
component?: () => react.JSX.Element;
|
|
73
73
|
name: string;
|
|
74
74
|
title: string;
|
|
75
|
+
action?: react.ReactNode;
|
|
75
76
|
};
|
|
76
77
|
type Props$1 = {
|
|
77
78
|
section: SectionType;
|