@bpmn-io/form-js-editor 1.7.0-alpha.0 → 1.7.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.
|
@@ -2276,10 +2276,6 @@ textarea.bio-properties-panel-input {
|
|
|
2276
2276
|
display: block;
|
|
2277
2277
|
}
|
|
2278
2278
|
|
|
2279
|
-
.bio-properties-panel-feelers-editor-container .bio-properties-panel-open-feel-popup {
|
|
2280
|
-
bottom: 0;
|
|
2281
|
-
}
|
|
2282
|
-
|
|
2283
2279
|
.bio-properties-panel-feelers-editor-container .bio-properties-panel-open-feel-popup:hover,
|
|
2284
2280
|
.bio-properties-panel-feel-container .bio-properties-panel-open-feel-popup:hover {
|
|
2285
2281
|
color: var(--feel-open-popup-hover-color);
|
|
@@ -1433,10 +1433,6 @@ textarea.bio-properties-panel-input {
|
|
|
1433
1433
|
display: block;
|
|
1434
1434
|
}
|
|
1435
1435
|
|
|
1436
|
-
.bio-properties-panel-feelers-editor-container .bio-properties-panel-open-feel-popup {
|
|
1437
|
-
bottom: 0;
|
|
1438
|
-
}
|
|
1439
|
-
|
|
1440
1436
|
.bio-properties-panel-feelers-editor-container .bio-properties-panel-open-feel-popup:hover,
|
|
1441
1437
|
.bio-properties-panel-feel-container .bio-properties-panel-open-feel-popup:hover {
|
|
1442
1438
|
color: var(--feel-open-popup-hover-color);
|
package/dist/index.cjs
CHANGED
|
@@ -10363,11 +10363,10 @@ function Height(props) {
|
|
|
10363
10363
|
description,
|
|
10364
10364
|
editField,
|
|
10365
10365
|
field,
|
|
10366
|
-
id
|
|
10367
|
-
defaultValue = 60 // default value for spacer
|
|
10366
|
+
id
|
|
10368
10367
|
} = props;
|
|
10369
10368
|
const debounce = useService('debounce');
|
|
10370
|
-
const getValue = e => minDash.get(field, ['height'],
|
|
10369
|
+
const getValue = e => minDash.get(field, ['height'], null);
|
|
10371
10370
|
const setValue = (value, error) => {
|
|
10372
10371
|
if (error) {
|
|
10373
10372
|
return;
|
|
@@ -10394,7 +10393,7 @@ function Height(props) {
|
|
|
10394
10393
|
*/
|
|
10395
10394
|
const validate$7 = value => {
|
|
10396
10395
|
if (typeof value !== 'number') {
|
|
10397
|
-
return
|
|
10396
|
+
return 'A number is required.';
|
|
10398
10397
|
}
|
|
10399
10398
|
if (!Number.isInteger(value)) {
|
|
10400
10399
|
return 'Should be an integer.';
|
|
@@ -10407,7 +10406,6 @@ const validate$7 = value => {
|
|
|
10407
10406
|
function IFrameHeightEntry(props) {
|
|
10408
10407
|
return [...HeightEntry({
|
|
10409
10408
|
...props,
|
|
10410
|
-
defaultValue: 300,
|
|
10411
10409
|
description: 'Height of the container in pixels.',
|
|
10412
10410
|
isDefaultVisible: field => field.type === 'iframe'
|
|
10413
10411
|
})];
|
|
@@ -10644,7 +10642,7 @@ function Content(props) {
|
|
|
10644
10642
|
|
|
10645
10643
|
const description = jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
10646
10644
|
children: ["Supports HTML, styling, and templating. Styles are automatically scoped to the HTML component. ", jsxRuntime.jsx("a", {
|
|
10647
|
-
href: "https://docs.camunda.io/docs/components/modeler/forms/form-element-library/forms-element-library-html/",
|
|
10645
|
+
href: "https://docs.camunda.io/docs/next/components/modeler/forms/form-element-library/forms-element-library-html/",
|
|
10648
10646
|
target: "_blank",
|
|
10649
10647
|
children: "Learn more"
|
|
10650
10648
|
})]
|