@sap-ux/control-property-editor 0.2.3 → 0.3.0
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 +12 -0
- package/dist/app.css +1 -1
- package/dist/app.css.map +2 -2
- package/dist/app.js +53 -54
- package/dist/app.js.map +3 -3
- package/package.json +4 -4
- package/src/middleware.ts +6 -1
- package/src/panels/changes/UnknownChange.tsx +1 -1
- package/src/panels/outline/OutlinePanel.scss +44 -2
- package/src/panels/outline/Tree.tsx +95 -5
- package/src/panels/outline/utils.ts +2 -1
- package/test/unit/middleware.test.ts +20 -0
- package/test/unit/panels/outline/OutlinePanel.test.tsx +96 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @sap-ux/control-property-editor
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 318e040e: Enables creation of XML fragments for Extension Points from the outline tree (when right-clicking on extension point) or from the application (when clicking on control).
|
|
8
|
+
|
|
9
|
+
## 0.2.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- cbcad88d: fix(deps): update dependencies [i18next]
|
|
14
|
+
|
|
3
15
|
## 0.2.3
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|