@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.
Files changed (39) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/app.css +1 -1
  3. package/dist/app.css.map +3 -3
  4. package/dist/app.js +136 -136
  5. package/dist/app.js.map +3 -3
  6. package/package.json +3 -3
  7. package/src/App.scss +10 -1
  8. package/src/App.tsx +76 -73
  9. package/src/Workarounds.scss +5 -0
  10. package/src/components/ThemeSelectorCallout.tsx +3 -2
  11. package/src/components/index.ts +0 -1
  12. package/src/i18n/i18n.json +9 -1
  13. package/src/icons.tsx +12 -1
  14. package/src/index.css +1136 -470
  15. package/src/middleware.ts +9 -1
  16. package/src/panels/index.ts +1 -1
  17. package/src/panels/properties/index.ts +1 -0
  18. package/src/slice.ts +37 -2
  19. package/src/{panels/properties → toolbar}/DeviceSelector.tsx +1 -1
  20. package/src/{panels/properties → toolbar}/DeviceToggle.tsx +4 -4
  21. package/src/toolbar/ModeSwitcher.scss +16 -0
  22. package/src/toolbar/ModeSwitcher.tsx +52 -0
  23. package/src/{components → toolbar}/ToolBar.scss +35 -2
  24. package/src/toolbar/ToolBar.tsx +56 -0
  25. package/src/toolbar/UndoRedoSaveActions.tsx +61 -0
  26. package/src/{panels/properties → toolbar}/ViewChanger.tsx +2 -2
  27. package/src/toolbar/index.ts +1 -0
  28. package/test/unit/App.test.tsx +8 -3
  29. package/test/unit/middleware.test.ts +89 -0
  30. package/test/unit/panels/outline/OutlinePanel.test.tsx +5 -1
  31. package/test/unit/panels/properties/ViewChanger.test.tsx +1 -1
  32. package/test/unit/slice.test.ts +2 -1
  33. package/test/unit/toolbar/ModeSwitcher.test.tsx +40 -0
  34. package/test/unit/toolbar/UndoRedoSaveActions.test.tsx +56 -0
  35. package/src/components/ToolBar.tsx +0 -26
  36. package/src/panels/properties/PropertiesPanel.tsx +0 -30
  37. package/src/panels/properties/index.tsx +0 -1
  38. /package/src/{panels/properties → toolbar}/ViewChanger.module.scss +0 -0
  39. /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