@elementor/editor-app-bar 0.9.1 → 0.9.2

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,14 @@
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.9.2](https://github.com/elementor/elementor-packages/compare/@elementor/editor-app-bar@0.9.1...@elementor/editor-app-bar@0.9.2) (2023-09-26)
7
+
8
+ **Note:** Version bump only for package @elementor/editor-app-bar
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.9.1](https://github.com/elementor/elementor-packages/compare/@elementor/editor-app-bar@0.9.0...@elementor/editor-app-bar@0.9.1) (2023-09-26)
7
15
 
8
16
  **Note:** Version bump only for package @elementor/editor-app-bar
package/README.md CHANGED
@@ -1,7 +1,8 @@
1
1
  # Editor App Bar
2
2
 
3
3
  > [!WARNING]
4
- > This package is under development and not ready for production use.
4
+ > Please refrain from accessing or depending on functions and variables starting with double underscores, as they are subject to change without notice.
5
+ > Naming convention involving double underscores (`__`) as a prefix to indicate that a function or variable is meant for internal use and should not be accessed or relied upon by third-party developers.
5
6
 
6
7
  ## Usage
7
8
 
@@ -41,7 +42,7 @@ integrationsMenu.registerAction( {
41
42
  title: __( 'My Custom Action', 'elementor' ),
42
43
  icon: PlusIcon, // A react component that renders an SVG icon
43
44
  disabled: false, // Optional
44
- onClick: () => alert( 'Custom action triggred!' ), // Optional
45
+ onClick: () => alert( 'Custom action triggered!' ), // Optional
45
46
  }
46
47
  } );
47
48
  ```
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@elementor/editor-app-bar",
3
- "version": "0.9.1",
3
+ "description": "App Bar extension for @elementor/editor",
4
+ "version": "0.9.2",
4
5
  "private": false,
5
6
  "author": "Elementor Team",
6
7
  "homepage": "https://elementor.com/",
@@ -32,11 +33,11 @@
32
33
  "dev": "tsup --config=../../tsup.dev.ts"
33
34
  },
34
35
  "dependencies": {
35
- "@elementor/editor": "^0.10.0",
36
+ "@elementor/editor": "^0.10.1",
36
37
  "@elementor/editor-documents": "^0.10.0",
37
38
  "@elementor/editor-v1-adapters": "^0.6.0",
38
39
  "@elementor/icons": "^0.7.0",
39
- "@elementor/locations": "^0.7.0",
40
+ "@elementor/locations": "^0.7.1",
40
41
  "@elementor/ui": "^1.4.53",
41
42
  "@wordpress/i18n": "^4.36.0"
42
43
  },
@@ -46,5 +47,5 @@
46
47
  "elementor": {
47
48
  "type": "extension"
48
49
  },
49
- "gitHead": "c73d2e5d2e1ecb93d29fc4f1a72171b80ce90033"
50
+ "gitHead": "63057364b22f05d593555c5953b6b18766c21428"
50
51
  }