@sap-ux/control-property-editor 0.4.21 → 0.4.23
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 +3 -3
- package/dist/app.js +136 -136
- package/dist/app.js.map +3 -3
- package/package.json +3 -3
- package/src/App.scss +10 -1
- package/src/App.tsx +76 -73
- package/src/Workarounds.scss +5 -0
- package/src/components/ThemeSelectorCallout.tsx +3 -2
- package/src/components/index.ts +0 -1
- package/src/i18n/i18n.json +9 -1
- package/src/icons.tsx +12 -1
- package/src/index.css +1136 -470
- package/src/middleware.ts +9 -1
- package/src/panels/index.ts +1 -1
- package/src/panels/properties/index.ts +1 -0
- package/src/slice.ts +37 -2
- package/src/{panels/properties → toolbar}/DeviceSelector.tsx +1 -1
- package/src/{panels/properties → toolbar}/DeviceToggle.tsx +4 -4
- package/src/toolbar/ModeSwitcher.scss +16 -0
- package/src/toolbar/ModeSwitcher.tsx +52 -0
- package/src/{components → toolbar}/ToolBar.scss +35 -2
- package/src/toolbar/ToolBar.tsx +56 -0
- package/src/toolbar/UndoRedoSaveActions.tsx +61 -0
- package/src/{panels/properties → toolbar}/ViewChanger.tsx +2 -2
- package/src/toolbar/index.ts +1 -0
- package/test/unit/App.test.tsx +8 -3
- package/test/unit/middleware.test.ts +89 -0
- package/test/unit/panels/outline/OutlinePanel.test.tsx +5 -1
- package/test/unit/panels/properties/ViewChanger.test.tsx +1 -1
- package/test/unit/slice.test.ts +2 -1
- package/test/unit/toolbar/ModeSwitcher.test.tsx +40 -0
- package/test/unit/toolbar/UndoRedoSaveActions.test.tsx +56 -0
- package/src/components/ToolBar.tsx +0 -26
- package/src/panels/properties/PropertiesPanel.tsx +0 -30
- package/src/panels/properties/index.tsx +0 -1
- /package/src/{panels/properties → toolbar}/ViewChanger.module.scss +0 -0
- /package/test/unit/{components → toolbar}/ThemeSelector.test.tsx +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @sap-ux/control-property-editor
|
|
2
2
|
|
|
3
|
+
## 0.4.23
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 78de7813: RTA standard toolbar replaced with custom CPE toolbar
|
|
8
|
+
|
|
9
|
+
## 0.4.22
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 33f1df85: Update build in themes(`dark`, `light`, `hcb`) by syncing from latest VSCode 1.89.1
|
|
14
|
+
|
|
3
15
|
## 0.4.21
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|