camunda-bpmn-js 4.3.2 → 4.4.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.
Files changed (36) hide show
  1. package/README.md +5 -0
  2. package/dist/assets/diagram-js.css +15 -19
  3. package/dist/base-modeler.development.js +336 -175
  4. package/dist/base-modeler.production.min.js +34 -36
  5. package/dist/base-navigated-viewer.development.js +177 -60
  6. package/dist/base-navigated-viewer.production.min.js +1 -1
  7. package/dist/base-viewer.development.js +160 -52
  8. package/dist/base-viewer.production.min.js +1 -1
  9. package/dist/camunda-cloud-modeler.development.js +366 -202
  10. package/dist/camunda-cloud-modeler.production.min.js +34 -36
  11. package/dist/camunda-cloud-navigated-viewer.development.js +177 -60
  12. package/dist/camunda-cloud-navigated-viewer.production.min.js +1 -1
  13. package/dist/camunda-cloud-viewer.development.js +160 -52
  14. package/dist/camunda-cloud-viewer.production.min.js +1 -1
  15. package/dist/camunda-platform-modeler.development.js +349 -188
  16. package/dist/camunda-platform-modeler.production.min.js +34 -36
  17. package/dist/camunda-platform-navigated-viewer.development.js +177 -60
  18. package/dist/camunda-platform-navigated-viewer.production.min.js +1 -1
  19. package/dist/camunda-platform-viewer.development.js +160 -52
  20. package/dist/camunda-platform-viewer.production.min.js +1 -1
  21. package/lib/base/Modeler.d.ts +15 -15
  22. package/lib/base/NavigatedViewer.d.ts +2 -2
  23. package/lib/base/Viewer.d.ts +2 -2
  24. package/lib/camunda-cloud/ElementTemplatesValidator.d.ts +1 -1
  25. package/lib/camunda-cloud/Modeler.d.ts +3 -3
  26. package/lib/camunda-cloud/Modeler.js +84 -84
  27. package/lib/camunda-cloud/NavigatedViewer.d.ts +3 -3
  28. package/lib/camunda-cloud/Viewer.d.ts +3 -3
  29. package/lib/camunda-cloud/util/commonModules.d.ts +9 -9
  30. package/lib/camunda-platform/Modeler.d.ts +3 -3
  31. package/lib/camunda-platform/Modeler.js +68 -68
  32. package/lib/camunda-platform/NavigatedViewer.d.ts +5 -5
  33. package/lib/camunda-platform/Viewer.d.ts +5 -5
  34. package/lib/camunda-platform/util/commonModules.d.ts +9 -9
  35. package/lib/util/ExtensionElementsUtil.d.ts +24 -24
  36. package/package.json +140 -140
package/README.md CHANGED
@@ -75,6 +75,11 @@ camunda-bpmn-js builds on top of a few powerful tools:
75
75
 
76
76
  * [bpmn-js](https://github.com/bpmn-io/bpmn-js): View and edit BPMN 2.0 diagrams in the browser
77
77
  * [diagram-js](https://github.com/bpmn-io/diagram-js): Diagram rendering and editing toolkit
78
+ * [bpmn-js-properties-panel](https://github.com/bpmn-io/bpmn-js-properties-panel): A panel for (technical) properties editing
79
+ * [bpmn-js-element-templates](https://github.com/bpmn-io/bpmn-js-element-templates): Domain specific editing for bpmn-js
80
+ * [bpmn-js-create-append-anything](bpmn-js-create-append-anything): A create/append anything extension for bpmn-js
81
+ * [bpmn-moddle](https://github.com/bpmn-io/bpmn-moddle): A BPMN 2.0 diagram reader/writer with extensions for [Camunda 7](https://github.com/camunda/camunda-bpmn-moddle) and [Camunda 8](https://github.com/camunda/zeebe-bpmn-moddle)
82
+ * [camunda-bpmn-js-behaviors](https://github.com/camunda/camunda-bpmn-js-behaviors): Camunda specific behaviors for bpmn-js
78
83
 
79
84
  ## License
80
85
 
@@ -55,6 +55,7 @@
55
55
  --palette-background-color: var(--color-grey-225-10-97);
56
56
  --palette-border-color: var(--color-grey-225-10-75);
57
57
 
58
+ --popup-font-family: "IBM Plex Sans", sans-serif;
58
59
  --popup-font-size: 14px;
59
60
  --popup-header-entry-selected-color: var(--color-blue-205-100-50);
60
61
  --popup-header-font-weight: bolder;
@@ -513,29 +514,20 @@ marker.djs-dragger tspan {
513
514
  /**
514
515
  * popup styles
515
516
  */
516
- .djs-popup-backdrop {
517
- position: fixed;
518
- width: 100vw;
519
- height: 100vh;
520
- top: 0;
521
- left: 0;
522
- z-index: 200;
523
- line-height: 1;
524
- font-family: "IBM Plex Sans", sans-serif;
525
- }
526
-
527
517
  .djs-popup {
518
+ line-height: 1;
528
519
  box-sizing: border-box;
529
520
  width: min-content;
530
521
  background: var(--popup-background-color);
531
522
  overflow: hidden;
532
- position: absolute;
523
+ position: fixed;
533
524
 
534
525
  box-shadow: 0px 2px 6px var(--popup-shadow-color);
535
526
  border: solid 1px var(--popup-border-color);
536
527
  min-width: 120px;
537
528
  outline: none;
538
529
  font-size: var(--popup-font-size);
530
+ font-family: var(--popup-font-family);
539
531
  }
540
532
 
541
533
  .djs-popup-search input {
@@ -565,6 +557,12 @@ marker.djs-dragger tspan {
565
557
  border-radius: 2px;
566
558
  }
567
559
 
560
+ .djs-popup button.entry {
561
+ padding: 0;
562
+ background: transparent;
563
+ border: 0;
564
+ }
565
+
568
566
  .djs-popup-header .entry.active {
569
567
  color: var(--popup-header-entry-selected-color);
570
568
  }
@@ -676,6 +674,11 @@ marker.djs-dragger tspan {
676
674
  line-height: 1.4em;
677
675
  }
678
676
 
677
+ .djs-popup .entry,
678
+ .djs-popup .entry-header {
679
+ margin: 1px;
680
+ }
681
+
679
682
  .djs-popup-title,
680
683
  .djs-popup-label,
681
684
  .djs-popup-entry-description,
@@ -689,13 +692,6 @@ marker.djs-dragger tspan {
689
692
  display: flex;
690
693
  }
691
694
 
692
- .entry-content {
693
- display: flex;
694
- flex-direction: column;
695
- flex: 1;
696
- overflow: hidden;
697
- }
698
-
699
695
  .djs-popup-body {
700
696
  flex-direction: column;
701
697
  width: auto;