camunda-bpmn-js 2.4.0 → 2.5.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 +40 -12
- package/dist/base-modeler.development.js +158 -220
- package/dist/base-modeler.production.min.js +31 -31
- package/dist/base-navigated-viewer.development.js +48 -24
- package/dist/base-navigated-viewer.production.min.js +1 -1
- package/dist/base-viewer.development.js +48 -24
- package/dist/base-viewer.production.min.js +1 -1
- package/dist/camunda-cloud-modeler.development.js +707 -379
- package/dist/camunda-cloud-modeler.production.min.js +32 -32
- package/dist/camunda-cloud-navigated-viewer.development.js +118 -92
- package/dist/camunda-cloud-navigated-viewer.production.min.js +1 -1
- package/dist/camunda-cloud-viewer.development.js +118 -92
- package/dist/camunda-cloud-viewer.production.min.js +1 -1
- package/dist/camunda-platform-modeler.development.js +543 -305
- package/dist/camunda-platform-modeler.production.min.js +31 -31
- package/dist/camunda-platform-navigated-viewer.development.js +48 -24
- package/dist/camunda-platform-navigated-viewer.production.min.js +1 -1
- package/dist/camunda-platform-viewer.development.js +48 -24
- package/dist/camunda-platform-viewer.production.min.js +1 -1
- package/lib/camunda-cloud/util/commonModules.js +1 -1
- package/package.json +7 -8
|
@@ -113,7 +113,9 @@
|
|
|
113
113
|
--font-family: sans-serif;
|
|
114
114
|
--font-family-monospace: monospace;
|
|
115
115
|
|
|
116
|
-
display:
|
|
116
|
+
display: flex;
|
|
117
|
+
flex-direction: column;
|
|
118
|
+
flex: 1;
|
|
117
119
|
position: relative;
|
|
118
120
|
height: 100%;
|
|
119
121
|
width: 100%;
|
|
@@ -135,12 +137,6 @@
|
|
|
135
137
|
font-family: var(--font-family);
|
|
136
138
|
}
|
|
137
139
|
|
|
138
|
-
.bio-properties-panel.open {
|
|
139
|
-
display: flex;
|
|
140
|
-
flex-direction: column;
|
|
141
|
-
flex: 1;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
140
|
/**
|
|
145
141
|
* Placeholder (empty, multi select, ...)
|
|
146
142
|
*/
|
|
@@ -421,6 +417,14 @@
|
|
|
421
417
|
border-radius: 3px;
|
|
422
418
|
}
|
|
423
419
|
|
|
420
|
+
.bio-properties-panel-description pre code {
|
|
421
|
+
width: 100%;
|
|
422
|
+
display: block;
|
|
423
|
+
overflow-x: auto;
|
|
424
|
+
padding: 4px 6px;
|
|
425
|
+
font-family: var(--font-family-monospace);
|
|
426
|
+
}
|
|
427
|
+
|
|
424
428
|
.bio-properties-panel-description ul {
|
|
425
429
|
padding: 0;
|
|
426
430
|
margin: 0 0 0 12px;
|
|
@@ -438,6 +442,22 @@
|
|
|
438
442
|
text-decoration: underline;
|
|
439
443
|
}
|
|
440
444
|
|
|
445
|
+
.bio-properties-panel-feelers-editor.bio-properties-panel-input {
|
|
446
|
+
padding: 0;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.bio-properties-panel-feelers-input .cm-editor
|
|
450
|
+
{
|
|
451
|
+
min-height: 32px;
|
|
452
|
+
max-height: 215px;
|
|
453
|
+
background-color: transparent;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.bio-properties-panel-feelers-editor .cm-editor.cm-focused,
|
|
457
|
+
.bio-properties-panel-feelers-input .cm-editor.cm-focused {
|
|
458
|
+
outline: none;
|
|
459
|
+
}
|
|
460
|
+
|
|
441
461
|
.bio-properties-panel-input {
|
|
442
462
|
padding: 3px 6px 2px;
|
|
443
463
|
border: 1px solid var(--input-border-color);
|
|
@@ -455,7 +475,7 @@ textarea.bio-properties-panel-input,
|
|
|
455
475
|
width: 100%;
|
|
456
476
|
}
|
|
457
477
|
|
|
458
|
-
textarea.bio-properties-panel-input
|
|
478
|
+
textarea.bio-properties-panel-input {
|
|
459
479
|
min-height: 28px;
|
|
460
480
|
}
|
|
461
481
|
|
|
@@ -990,10 +1010,6 @@ textarea.bio-properties-panel-input {
|
|
|
990
1010
|
min-height: 28px;
|
|
991
1011
|
}
|
|
992
1012
|
|
|
993
|
-
.bio-properties-panel-feel-container .cm-scroller {
|
|
994
|
-
overflow: hidden !important;
|
|
995
|
-
}
|
|
996
|
-
|
|
997
1013
|
.bio-properties-panel-feel-indicator {
|
|
998
1014
|
position: absolute;
|
|
999
1015
|
border: 1px solid var(--input-border-color);
|
|
@@ -1007,6 +1023,18 @@ textarea.bio-properties-panel-input {
|
|
|
1007
1023
|
padding: 2px 6px;
|
|
1008
1024
|
}
|
|
1009
1025
|
|
|
1026
|
+
.bio-properties-panel-feel-editor-container .cm-scroller {
|
|
1027
|
+
overflow: hidden !important;
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
.bio-properties-panel-feelers-editor .cm-editor {
|
|
1031
|
+
background-color: transparent;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
.bio-properties-panel-feelers-editor .cm-editor.cm-focused {
|
|
1035
|
+
background-color: transparent;
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1010
1038
|
.bio-properties-panel-feel-editor-container .bio-properties-panel-input {
|
|
1011
1039
|
resize: vertical;
|
|
1012
1040
|
overflow: hidden;
|