camunda-bpmn-js 1.3.0 → 1.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.
- package/dist/base-modeler.development.js +85 -59
- package/dist/base-modeler.production.min.js +2 -2
- package/dist/base-navigated-viewer.development.js +20 -4
- package/dist/base-navigated-viewer.production.min.js +1 -1
- package/dist/base-viewer.development.js +20 -4
- package/dist/base-viewer.production.min.js +1 -1
- package/dist/camunda-cloud-modeler.development.js +368 -59
- package/dist/camunda-cloud-modeler.production.min.js +3 -3
- package/dist/camunda-cloud-navigated-viewer.development.js +20 -4
- package/dist/camunda-cloud-navigated-viewer.production.min.js +1 -1
- package/dist/camunda-cloud-viewer.development.js +20 -4
- package/dist/camunda-cloud-viewer.production.min.js +2 -2
- package/dist/camunda-platform-modeler.development.js +85 -59
- package/dist/camunda-platform-modeler.production.min.js +2 -2
- package/dist/camunda-platform-navigated-viewer.development.js +20 -4
- package/dist/camunda-platform-navigated-viewer.production.min.js +1 -1
- package/dist/camunda-platform-viewer.development.js +20 -4
- package/dist/camunda-platform-viewer.production.min.js +1 -1
- package/lib/camunda-cloud/Modeler.js +2 -0
- package/lib/camunda-cloud/features/create-append-anything/ElementTemplatesAppendProvider.js +162 -0
- package/lib/camunda-cloud/features/create-append-anything/ElementTemplatesCreateProvider.js +114 -0
- package/lib/camunda-cloud/features/create-append-anything/index.js +11 -0
- package/package.json +2 -2
|
@@ -2481,7 +2481,11 @@
|
|
|
2481
2481
|
...shapeStyle({
|
|
2482
2482
|
fill: fill,
|
|
2483
2483
|
stroke: stroke,
|
|
2484
|
-
strokeWidth: 1
|
|
2484
|
+
strokeWidth: 1,
|
|
2485
|
+
|
|
2486
|
+
// fix for safari / chrome / firefox bug not correctly
|
|
2487
|
+
// resetting stroke dash array
|
|
2488
|
+
strokeDasharray: [ 10000, 1 ]
|
|
2485
2489
|
})
|
|
2486
2490
|
});
|
|
2487
2491
|
|
|
@@ -2497,7 +2501,11 @@
|
|
|
2497
2501
|
...shapeStyle({
|
|
2498
2502
|
fill: fill,
|
|
2499
2503
|
stroke: stroke,
|
|
2500
|
-
strokeWidth: 1
|
|
2504
|
+
strokeWidth: 1,
|
|
2505
|
+
|
|
2506
|
+
// fix for safari / chrome / firefox bug not correctly
|
|
2507
|
+
// resetting stroke dash array
|
|
2508
|
+
strokeDasharray: [ 10000, 1 ]
|
|
2501
2509
|
})
|
|
2502
2510
|
});
|
|
2503
2511
|
|
|
@@ -2513,7 +2521,11 @@
|
|
|
2513
2521
|
...lineStyle({
|
|
2514
2522
|
fill: 'none',
|
|
2515
2523
|
stroke: stroke,
|
|
2516
|
-
strokeWidth: 1.5
|
|
2524
|
+
strokeWidth: 1.5,
|
|
2525
|
+
|
|
2526
|
+
// fix for safari / chrome / firefox bug not correctly
|
|
2527
|
+
// resetting stroke dash array
|
|
2528
|
+
strokeDasharray: [ 10000, 1 ]
|
|
2517
2529
|
})
|
|
2518
2530
|
});
|
|
2519
2531
|
|
|
@@ -2530,7 +2542,11 @@
|
|
|
2530
2542
|
...lineStyle({
|
|
2531
2543
|
fill: 'none',
|
|
2532
2544
|
stroke: stroke,
|
|
2533
|
-
strokeWidth: 1.5
|
|
2545
|
+
strokeWidth: 1.5,
|
|
2546
|
+
|
|
2547
|
+
// fix for safari / chrome / firefox bug not correctly
|
|
2548
|
+
// resetting stroke dash array
|
|
2549
|
+
strokeDasharray: [ 10000, 1 ]
|
|
2534
2550
|
})
|
|
2535
2551
|
});
|
|
2536
2552
|
|