@bpmn-io/properties-panel 3.42.0 → 3.43.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/dist/assets/properties-panel.css +1 -0
- package/dist/index.esm.js +3 -5
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -4
- package/dist/index.js.map +1 -1
- package/package.json +14 -15
- package/preact/compat/client.d.ts +13 -0
- package/preact/compat/src/hooks.js +67 -0
- package/preact/compat/test-utils.mjs +1 -0
- package/preact/src/dom.d.ts +2548 -0
- package/preact/src/index-5.d.ts +399 -0
package/dist/index.js
CHANGED
|
@@ -916,7 +916,6 @@ function Group(props) {
|
|
|
916
916
|
value: props.tooltip,
|
|
917
917
|
forId: 'group-' + id,
|
|
918
918
|
element: element,
|
|
919
|
-
parent: groupRef,
|
|
920
919
|
children: label
|
|
921
920
|
})
|
|
922
921
|
}), jsxRuntime.jsxs("div", {
|
|
@@ -1015,7 +1014,7 @@ const DEFAULT_TOOLTIP = {};
|
|
|
1015
1014
|
* autoOpen?: Boolean,
|
|
1016
1015
|
* entries: Array<EntryDefinition>,
|
|
1017
1016
|
* id: String,
|
|
1018
|
-
* label: String,
|
|
1017
|
+
* label: String|import('preact').ComponentChildren,
|
|
1019
1018
|
* remove: (event: MouseEvent) => void
|
|
1020
1019
|
* } } ListItemDefinition
|
|
1021
1020
|
*
|
|
@@ -1578,7 +1577,6 @@ function ListGroup(props) {
|
|
|
1578
1577
|
value: props.tooltip,
|
|
1579
1578
|
forId: 'group-' + id,
|
|
1580
1579
|
element: element,
|
|
1581
|
-
parent: groupRef,
|
|
1582
1580
|
children: label
|
|
1583
1581
|
})
|
|
1584
1582
|
}), jsxRuntime.jsxs("div", {
|
|
@@ -3662,7 +3660,7 @@ function prefixIdLabel(id) {
|
|
|
3662
3660
|
* @param {*} props.element
|
|
3663
3661
|
* @param {Function} props.onAdd
|
|
3664
3662
|
* @param {import('preact').Component} props.component
|
|
3665
|
-
* @param {string} [props.label='<empty>']
|
|
3663
|
+
* @param {string|import('preact').ComponentChildren} [props.label='<empty>']
|
|
3666
3664
|
* @param {Function} [props.onRemove]
|
|
3667
3665
|
* @param {Item[]} [props.items]
|
|
3668
3666
|
* @param {boolean} [props.open]
|