@elementor/editor-site-navigation 0.10.2 → 0.10.3

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.10.3](https://github.com/elementor/elementor-packages/compare/@elementor/editor-site-navigation@0.10.2...@elementor/editor-site-navigation@0.10.3) (2023-07-17)
7
+
8
+ **Note:** Version bump only for package @elementor/editor-site-navigation
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.10.2](https://github.com/elementor/elementor-packages/compare/@elementor/editor-site-navigation@0.10.1...@elementor/editor-site-navigation@0.10.2) (2023-07-17)
7
15
 
8
16
  **Note:** Version bump only for package @elementor/editor-site-navigation
package/dist/index.js CHANGED
@@ -653,7 +653,7 @@ function init() {
653
653
  function registerTopBarMenuItems() {
654
654
  (0, import_editor_app_bar.injectIntoPageIndication)({
655
655
  id: "document-recently-edited",
656
- filler: RecentlyEdited
656
+ component: RecentlyEdited
657
657
  });
658
658
  }
659
659
  function registerButton() {
package/dist/index.mjs CHANGED
@@ -644,7 +644,7 @@ function init() {
644
644
  function registerTopBarMenuItems() {
645
645
  injectIntoPageIndication({
646
646
  id: "document-recently-edited",
647
- filler: RecentlyEdited
647
+ component: RecentlyEdited
648
648
  });
649
649
  }
650
650
  function registerButton() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elementor/editor-site-navigation",
3
- "version": "0.10.2",
3
+ "version": "0.10.3",
4
4
  "private": false,
5
5
  "author": "Elementor Team",
6
6
  "homepage": "https://elementor.com/",
@@ -32,9 +32,9 @@
32
32
  "dev": "tsup --config=../../tsup.dev.ts"
33
33
  },
34
34
  "dependencies": {
35
- "@elementor/editor-app-bar": "^0.6.8",
35
+ "@elementor/editor-app-bar": "^0.6.9",
36
36
  "@elementor/editor-documents": "^0.8.3",
37
- "@elementor/editor-panels": "^0.1.4",
37
+ "@elementor/editor-panels": "^0.1.5",
38
38
  "@elementor/env": "^0.2.0",
39
39
  "@elementor/icons": "^0.6.1",
40
40
  "@elementor/query": "^0.1.1",
@@ -49,5 +49,5 @@
49
49
  "elementor": {
50
50
  "type": "extension"
51
51
  },
52
- "gitHead": "fbb55b97a2581af49559479b6abf63f5acbfc28b"
52
+ "gitHead": "e27c0b852121946fcc32d5ce8a5a1551c93d87a6"
53
53
  }
package/src/init.ts CHANGED
@@ -17,7 +17,7 @@ export default function init() {
17
17
  function registerTopBarMenuItems() {
18
18
  injectIntoPageIndication( {
19
19
  id: 'document-recently-edited',
20
- filler: RecentlyEdited,
20
+ component: RecentlyEdited,
21
21
  } );
22
22
  }
23
23