@bpmn-io/properties-panel 0.24.1 → 0.25.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/index.esm.js +7 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1289,6 +1289,7 @@ const CodeEditor = compat.forwardRef((props, ref) => {
|
|
|
1289
1289
|
onFeelToggle,
|
|
1290
1290
|
onLint = () => {},
|
|
1291
1291
|
disabled,
|
|
1292
|
+
tooltipContainer,
|
|
1292
1293
|
variables
|
|
1293
1294
|
} = props;
|
|
1294
1295
|
const inputRef = hooks.useRef();
|
|
@@ -1322,6 +1323,7 @@ const CodeEditor = compat.forwardRef((props, ref) => {
|
|
|
1322
1323
|
onChange: handleInput,
|
|
1323
1324
|
onKeyDown: onKeyDown,
|
|
1324
1325
|
onLint: onLint,
|
|
1326
|
+
tooltipContainer: tooltipContainer,
|
|
1325
1327
|
value: localValue,
|
|
1326
1328
|
variables: variables
|
|
1327
1329
|
});
|
|
@@ -1421,6 +1423,7 @@ function FeelTextfield(props) {
|
|
|
1421
1423
|
value = '',
|
|
1422
1424
|
disabled = false,
|
|
1423
1425
|
variables,
|
|
1426
|
+
tooltipContainer,
|
|
1424
1427
|
OptionalComponent = OptionalFeelInput
|
|
1425
1428
|
} = props;
|
|
1426
1429
|
const [localValue, _setLocalValue] = hooks.useState(value);
|
|
@@ -1560,7 +1563,8 @@ function FeelTextfield(props) {
|
|
|
1560
1563
|
onLint: handleLint,
|
|
1561
1564
|
value: feelOnlyValue,
|
|
1562
1565
|
variables: variables,
|
|
1563
|
-
ref: editorRef
|
|
1566
|
+
ref: editorRef,
|
|
1567
|
+
tooltipContainer: tooltipContainer
|
|
1564
1568
|
}) : jsxRuntime.jsx(OptionalComponent, {
|
|
1565
1569
|
...props,
|
|
1566
1570
|
onInput: handleLocalInput,
|
|
@@ -1675,6 +1679,7 @@ function FeelEntry(props) {
|
|
|
1675
1679
|
label,
|
|
1676
1680
|
getValue,
|
|
1677
1681
|
setValue,
|
|
1682
|
+
tooltipContainer,
|
|
1678
1683
|
validate,
|
|
1679
1684
|
show = noop,
|
|
1680
1685
|
example,
|
|
@@ -1733,6 +1738,7 @@ function FeelEntry(props) {
|
|
|
1733
1738
|
show: show,
|
|
1734
1739
|
value: value,
|
|
1735
1740
|
variables: variables,
|
|
1741
|
+
tooltipContainer: tooltipContainer,
|
|
1736
1742
|
OptionalComponent: props.OptionalComponent
|
|
1737
1743
|
}, element), error && jsxRuntime.jsx("div", {
|
|
1738
1744
|
class: "bio-properties-panel-error",
|