@bpmn-io/properties-panel 0.24.1 → 1.0.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.esm.js
CHANGED
|
@@ -1280,6 +1280,7 @@ const CodeEditor = forwardRef((props, ref) => {
|
|
|
1280
1280
|
onFeelToggle,
|
|
1281
1281
|
onLint = () => {},
|
|
1282
1282
|
disabled,
|
|
1283
|
+
tooltipContainer,
|
|
1283
1284
|
variables
|
|
1284
1285
|
} = props;
|
|
1285
1286
|
const inputRef = useRef();
|
|
@@ -1313,6 +1314,7 @@ const CodeEditor = forwardRef((props, ref) => {
|
|
|
1313
1314
|
onChange: handleInput,
|
|
1314
1315
|
onKeyDown: onKeyDown,
|
|
1315
1316
|
onLint: onLint,
|
|
1317
|
+
tooltipContainer: tooltipContainer,
|
|
1316
1318
|
value: localValue,
|
|
1317
1319
|
variables: variables
|
|
1318
1320
|
});
|
|
@@ -1412,6 +1414,7 @@ function FeelTextfield(props) {
|
|
|
1412
1414
|
value = '',
|
|
1413
1415
|
disabled = false,
|
|
1414
1416
|
variables,
|
|
1417
|
+
tooltipContainer,
|
|
1415
1418
|
OptionalComponent = OptionalFeelInput
|
|
1416
1419
|
} = props;
|
|
1417
1420
|
const [localValue, _setLocalValue] = useState(value);
|
|
@@ -1551,7 +1554,8 @@ function FeelTextfield(props) {
|
|
|
1551
1554
|
onLint: handleLint,
|
|
1552
1555
|
value: feelOnlyValue,
|
|
1553
1556
|
variables: variables,
|
|
1554
|
-
ref: editorRef
|
|
1557
|
+
ref: editorRef,
|
|
1558
|
+
tooltipContainer: tooltipContainer
|
|
1555
1559
|
}) : jsx(OptionalComponent, {
|
|
1556
1560
|
...props,
|
|
1557
1561
|
onInput: handleLocalInput,
|
|
@@ -1666,6 +1670,7 @@ function FeelEntry(props) {
|
|
|
1666
1670
|
label,
|
|
1667
1671
|
getValue,
|
|
1668
1672
|
setValue,
|
|
1673
|
+
tooltipContainer,
|
|
1669
1674
|
validate,
|
|
1670
1675
|
show = noop,
|
|
1671
1676
|
example,
|
|
@@ -1724,6 +1729,7 @@ function FeelEntry(props) {
|
|
|
1724
1729
|
show: show,
|
|
1725
1730
|
value: value,
|
|
1726
1731
|
variables: variables,
|
|
1732
|
+
tooltipContainer: tooltipContainer,
|
|
1727
1733
|
OptionalComponent: props.OptionalComponent
|
|
1728
1734
|
}, element), error && jsx("div", {
|
|
1729
1735
|
class: "bio-properties-panel-error",
|