@sap-ux/control-property-editor 0.5.18 → 0.5.20
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 +52 -50
- package/dist/app.js.map +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/i18n/i18n.json +3 -3
- package/src/index.tsx +4 -2
- package/src/middleware.ts +5 -2
- package/src/panels/changes/ChangesPanel.module.scss +3 -1
- package/src/panels/outline/OutlinePanel.scss +2 -1
- package/src/panels/outline/Tree.tsx +1 -1
- package/src/panels/properties/Properties.scss +2 -1
- package/src/panels/properties/PropertiesList.tsx +1 -1
- package/src/slice.ts +8 -0
- package/test/unit/appIndex.test.ts +12 -5
- package/test/unit/slice.test.ts +23 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @sap-ux/control-property-editor
|
|
2
2
|
|
|
3
|
+
## 0.5.20
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 93ffe8d: Use feature toggles in the control property editor
|
|
8
|
+
|
|
9
|
+
## 0.5.19
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 0135cea: Update filter bars.
|
|
14
|
+
|
|
3
15
|
## 0.5.18
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|