@bpmn-io/properties-panel 0.4.1 → 0.5.1
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 +22 -0
- package/assets/properties-panel.css +351 -129
- package/lib/PropertiesPanel.js +9 -4
- package/lib/PropertiesPanel.js.map +1 -1
- package/lib/components/Group.js +10 -24
- package/lib/components/Group.js.map +1 -1
- package/lib/components/Header.js +6 -6
- package/lib/components/Header.js.map +1 -1
- package/lib/components/ListGroup.js +40 -33
- package/lib/components/ListGroup.js.map +1 -1
- package/lib/components/ListItem.js +6 -1
- package/lib/components/ListItem.js.map +1 -1
- package/lib/components/entries/Checkbox.js +9 -4
- package/lib/components/entries/Checkbox.js.map +1 -1
- package/lib/components/entries/Collapsible.js +8 -5
- package/lib/components/entries/Collapsible.js.map +1 -1
- package/lib/components/entries/List.js +31 -23
- package/lib/components/entries/List.js.map +1 -1
- package/lib/components/entries/ToggleSwitch.js +1 -1
- package/lib/components/entries/ToggleSwitch.js.map +1 -1
- package/lib/components/icons/index.js +18 -33
- package/lib/context/LayoutContext.js +1 -0
- package/lib/context/LayoutContext.js.map +1 -1
- package/lib/hooks/index.js +1 -0
- package/lib/hooks/index.js.map +1 -1
- package/lib/hooks/useLayoutState.js +36 -0
- package/lib/hooks/useLayoutState.js.map +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,28 @@ All notable changes to [`@bpmn-io/properties-panel`](https://github.com/bpmn-io/
|
|
|
6
6
|
|
|
7
7
|
___Note:__ Yet to be released changes appear here._
|
|
8
8
|
|
|
9
|
+
|
|
10
|
+
## 0.5.1
|
|
11
|
+
|
|
12
|
+
* `FEAT`: allow custom selector for `ListEntry#autoFocusEntry` (['4afae1'](https://github.com/bpmn-io/properties-panel/commit/4afae1ec0215417d961b176840f19e51ba8b9043))
|
|
13
|
+
* `FEAT`: add variable for monospace font (['354fc9'](https://github.com/bpmn-io/properties-panel/commit/354fc99c8e54c1eb3c8cb2bca20630172e7fad7b))
|
|
14
|
+
|
|
15
|
+
## 0.5.0
|
|
16
|
+
|
|
17
|
+
* `FEAT`: add various design improvements ([#105](https://github.com/bpmn-io/properties-panel/pull/105))
|
|
18
|
+
* `FEAT`: add description for check boxes ([`f515016c`](https://github.com/bpmn-io/properties-panel/commit/f515016c3fedf59c9e629454a6a5e2fbbf2bfb79))
|
|
19
|
+
|
|
20
|
+
## 0.4.3
|
|
21
|
+
|
|
22
|
+
* `FEAT`: for `List` component, insert new items to bottom given there is no `compareFn` ([#104](https://github.com/bpmn-io/properties-panel/pull/104))
|
|
23
|
+
* `FEAT`: for `ListGroup` component, offer `shouldOpen` parameter ([#106](https://github.com/bpmn-io/properties-panel/pull/106))
|
|
24
|
+
* `FEAT`: for `ListGroup` component, insert new items to bottom given `shouldSort` is false ([#106](https://github.com/bpmn-io/properties-panel/pull/106))
|
|
25
|
+
* `FEAT`: add `useLayoutState` hook ([#99](https://github.com/bpmn-io/properties-panel/pull/99))
|
|
26
|
+
|
|
27
|
+
## 0.4.2
|
|
28
|
+
|
|
29
|
+
* `FIX`: make auto-focus work for select elements ([#101](https://github.com/bpmn-io/properties-panel/pull/101))
|
|
30
|
+
|
|
9
31
|
## 0.4.1
|
|
10
32
|
|
|
11
33
|
* `CHORE`: unbuild custom checkbox component ([#97](https://github.com/bpmn-io/properties-panel/pull/97))
|