@oh-just-another/react-ui 0.62.0 → 0.63.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 +11 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/panels/control-sets.d.ts +42 -0
- package/dist/panels/control-sets.d.ts.map +1 -0
- package/dist/panels/control-sets.js +63 -0
- package/dist/panels/control-sets.js.map +1 -0
- package/dist/panels/property-panel.d.ts.map +1 -1
- package/dist/panels/property-panel.js +244 -149
- package/dist/panels/property-panel.js.map +1 -1
- package/package.json +2 -2
- package/src/styles.css +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @oh-just-another/react-ui
|
|
2
2
|
|
|
3
|
+
## 0.63.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c738f81: Multi-selection and group toolbars follow the reference. Every element type declares an ordered control set for single and multi selections (`panels/control-sets.ts`); a selection of two or more elements shows the intersection of the members' multi sets — two shapes keep the shape controls minus the link, a shape + a text share the text controls, a shape + a frame share nothing — and mixed types keep the Filter. The shared tail gains an **Arrange** popover (align left / centre / right / top / middle / bottom, distribute from three) and **Group** / **Ungroup** buttons driven by the action registry; the comment button is single-selection only. A selected group stands for its leaf children (their shared controls, writes to them), shows Ungroup instead of Group and keeps align / distribute disabled while it is the only thing selected; editing inside a group (double-click) hides Group / Ungroup. Text controls no longer take a `labelMode` prop — they write through the label-aware `Editor.updateTextStyle` / `updateTextProps`.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [c738f81]
|
|
12
|
+
- @oh-just-another/state@0.64.0
|
|
13
|
+
|
|
3
14
|
## 0.62.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|