@elementor/editor-site-navigation 0.5.0 → 0.5.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 +11 -0
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +2 -2
- package/src/components/top-bar/chip-doc-type.tsx +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.5.1](https://github.com/elementor/elementor-packages/compare/@elementor/editor-site-navigation@0.5.0...@elementor/editor-site-navigation@0.5.1) (2023-06-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **site-navigation:** chip margin removed from library ([#49](https://github.com/elementor/elementor-packages/issues/49)) ([fdcbc85](https://github.com/elementor/elementor-packages/commit/fdcbc856495c005a2f66b0b267abecf0d65522a2))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [0.5.0](https://github.com/elementor/elementor-packages/compare/@elementor/editor-site-navigation@0.4.2...@elementor/editor-site-navigation@0.5.0) (2023-06-01)
|
|
7
18
|
|
|
8
19
|
|
package/dist/index.js
CHANGED
|
@@ -129,7 +129,8 @@ function DocTypeChip({ postType, docType, label }) {
|
|
|
129
129
|
variant: "standard",
|
|
130
130
|
label,
|
|
131
131
|
color,
|
|
132
|
-
icon: /* @__PURE__ */ React2.createElement(Icon, null)
|
|
132
|
+
icon: /* @__PURE__ */ React2.createElement(Icon, null),
|
|
133
|
+
sx: { ml: 3 }
|
|
133
134
|
}
|
|
134
135
|
);
|
|
135
136
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -111,7 +111,8 @@ function DocTypeChip({ postType, docType, label }) {
|
|
|
111
111
|
variant: "standard",
|
|
112
112
|
label,
|
|
113
113
|
color,
|
|
114
|
-
icon: /* @__PURE__ */ React2.createElement(Icon, null)
|
|
114
|
+
icon: /* @__PURE__ */ React2.createElement(Icon, null),
|
|
115
|
+
sx: { ml: 3 }
|
|
115
116
|
}
|
|
116
117
|
);
|
|
117
118
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elementor/editor-site-navigation",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "Elementor Team",
|
|
6
6
|
"homepage": "https://elementor.com/",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"elementor": {
|
|
47
47
|
"type": "extension"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "14587e8fd0c01c4722c8d4622e68b60c2cc331c6"
|
|
50
50
|
}
|