@elementor/editor-app-bar 0.6.9 → 0.7.1

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/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.7.1](https://github.com/elementor/elementor-packages/compare/@elementor/editor-app-bar@0.7.0...@elementor/editor-app-bar@0.7.1) (2023-08-02)
7
+
8
+ **Note:** Version bump only for package @elementor/editor-app-bar
9
+
10
+
11
+
12
+
13
+
14
+ # [0.7.0](https://github.com/elementor/elementor-packages/compare/@elementor/editor-app-bar@0.6.9...@elementor/editor-app-bar@0.7.0) (2023-08-01)
15
+
16
+
17
+ ### Features
18
+
19
+ * **app-bar:** introduce integrations menu [ED-11437] ([#93](https://github.com/elementor/elementor-packages/issues/93)) ([507f367](https://github.com/elementor/elementor-packages/commit/507f367ea54e80ed29c22b64fe93f15353327c21))
20
+
21
+
22
+
23
+
24
+
6
25
  ## [0.6.9](https://github.com/elementor/elementor-packages/compare/@elementor/editor-app-bar@0.6.8...@elementor/editor-app-bar@0.6.9) (2023-07-17)
7
26
 
8
27
  **Note:** Version bump only for package @elementor/editor-app-bar
package/dist/index.d.mts CHANGED
@@ -167,6 +167,50 @@ declare const utilitiesMenu: {
167
167
  }[];
168
168
  };
169
169
  };
170
+ declare const integrationsMenu: {
171
+ registerAction: (args: {
172
+ id: string;
173
+ group?: "default" | undefined;
174
+ priority?: number | undefined;
175
+ overwrite?: boolean | undefined;
176
+ } & ({
177
+ props: Props$2;
178
+ useProps?: undefined;
179
+ } | {
180
+ useProps: () => Props$2;
181
+ props?: undefined;
182
+ })) => void;
183
+ registerToggleAction: (args: {
184
+ id: string;
185
+ group?: "default" | undefined;
186
+ priority?: number | undefined;
187
+ overwrite?: boolean | undefined;
188
+ } & ({
189
+ props: Props$1;
190
+ useProps?: undefined;
191
+ } | {
192
+ useProps: () => Props$1;
193
+ props?: undefined;
194
+ })) => void;
195
+ registerLink: (args: {
196
+ id: string;
197
+ group?: "default" | undefined;
198
+ priority?: number | undefined;
199
+ overwrite?: boolean | undefined;
200
+ } & ({
201
+ props: Props;
202
+ useProps?: undefined;
203
+ } | {
204
+ useProps: () => Props;
205
+ props?: undefined;
206
+ })) => void;
207
+ useMenuItems: () => {
208
+ default: {
209
+ id: string;
210
+ MenuItem: react.ElementType;
211
+ }[];
212
+ };
213
+ };
170
214
  declare const documentOptionsMenu: {
171
215
  registerAction: (args: {
172
216
  id: string;
@@ -216,4 +260,4 @@ declare const documentOptionsMenu: {
216
260
  };
217
261
  };
218
262
 
219
- export { documentOptionsMenu, injectIntoPageIndication, injectIntoPrimaryAction, injectIntoResponsive, mainMenu, toolsMenu, utilitiesMenu };
263
+ export { documentOptionsMenu, injectIntoPageIndication, injectIntoPrimaryAction, injectIntoResponsive, integrationsMenu, mainMenu, toolsMenu, utilitiesMenu };
package/dist/index.d.ts CHANGED
@@ -167,6 +167,50 @@ declare const utilitiesMenu: {
167
167
  }[];
168
168
  };
169
169
  };
170
+ declare const integrationsMenu: {
171
+ registerAction: (args: {
172
+ id: string;
173
+ group?: "default" | undefined;
174
+ priority?: number | undefined;
175
+ overwrite?: boolean | undefined;
176
+ } & ({
177
+ props: Props$2;
178
+ useProps?: undefined;
179
+ } | {
180
+ useProps: () => Props$2;
181
+ props?: undefined;
182
+ })) => void;
183
+ registerToggleAction: (args: {
184
+ id: string;
185
+ group?: "default" | undefined;
186
+ priority?: number | undefined;
187
+ overwrite?: boolean | undefined;
188
+ } & ({
189
+ props: Props$1;
190
+ useProps?: undefined;
191
+ } | {
192
+ useProps: () => Props$1;
193
+ props?: undefined;
194
+ })) => void;
195
+ registerLink: (args: {
196
+ id: string;
197
+ group?: "default" | undefined;
198
+ priority?: number | undefined;
199
+ overwrite?: boolean | undefined;
200
+ } & ({
201
+ props: Props;
202
+ useProps?: undefined;
203
+ } | {
204
+ useProps: () => Props;
205
+ props?: undefined;
206
+ })) => void;
207
+ useMenuItems: () => {
208
+ default: {
209
+ id: string;
210
+ MenuItem: react.ElementType;
211
+ }[];
212
+ };
213
+ };
170
214
  declare const documentOptionsMenu: {
171
215
  registerAction: (args: {
172
216
  id: string;
@@ -216,4 +260,4 @@ declare const documentOptionsMenu: {
216
260
  };
217
261
  };
218
262
 
219
- export { documentOptionsMenu, injectIntoPageIndication, injectIntoPrimaryAction, injectIntoResponsive, mainMenu, toolsMenu, utilitiesMenu };
263
+ export { documentOptionsMenu, injectIntoPageIndication, injectIntoPrimaryAction, injectIntoResponsive, integrationsMenu, mainMenu, toolsMenu, utilitiesMenu };