@elementor/editor-site-navigation 0.18.1 → 0.18.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.18.2](https://github.com/elementor/elementor-packages/compare/@elementor/editor-site-navigation@0.18.1...@elementor/editor-site-navigation@0.18.2) (2023-08-16)
7
+
8
+ **Note:** Version bump only for package @elementor/editor-site-navigation
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.18.1](https://github.com/elementor/elementor-packages/compare/@elementor/editor-site-navigation@0.18.0...@elementor/editor-site-navigation@0.18.1) (2023-08-02)
7
15
 
8
16
  **Note:** Version bump only for package @elementor/editor-site-navigation
package/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # Editor Site Navigation
2
2
 
3
- > **Warning**
4
- >
3
+ > [!WARNING]
5
4
  > This package is under development and not ready for production use.
6
5
 
7
6
  ## Code examples
package/dist/index.js CHANGED
@@ -128,6 +128,7 @@ function DocTypeChip({ postType, docType, label }) {
128
128
  size: "medium",
129
129
  variant: "standard",
130
130
  label,
131
+ "data-value": docType,
131
132
  color,
132
133
  icon: /* @__PURE__ */ React2.createElement(Icon, null),
133
134
  sx: { ml: 3 }
package/dist/index.mjs CHANGED
@@ -110,6 +110,7 @@ function DocTypeChip({ postType, docType, label }) {
110
110
  size: "medium",
111
111
  variant: "standard",
112
112
  label,
113
+ "data-value": docType,
113
114
  color,
114
115
  icon: /* @__PURE__ */ React2.createElement(Icon, null),
115
116
  sx: { ml: 3 }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elementor/editor-site-navigation",
3
- "version": "0.18.1",
3
+ "version": "0.18.2",
4
4
  "private": false,
5
5
  "author": "Elementor Team",
6
6
  "homepage": "https://elementor.com/",
@@ -49,5 +49,5 @@
49
49
  "elementor": {
50
50
  "type": "extension"
51
51
  },
52
- "gitHead": "43abed846a5beaf6b0c6c5a8420c81a5bea33152"
52
+ "gitHead": "2b3966576de0a266d74564706aa011833fccda8f"
53
53
  }
@@ -22,6 +22,7 @@ export default function DocTypeChip( { postType, docType, label }: Props ) {
22
22
  size="medium"
23
23
  variant="standard"
24
24
  label={ label }
25
+ data-value={ docType }
25
26
  color={ color }
26
27
  icon={ <Icon /> }
27
28
  sx={ { ml: 3 } }