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.
@@ -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