@processmaker/modeler 1.39.29 → 1.39.31
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/img/{spinner.020b98db.svg → spinner.1e5b7f57.svg} +1 -1
- package/dist/modeler.common.js +271 -107
- package/dist/modeler.common.js.map +1 -1
- package/dist/modeler.umd.js +271 -107
- package/dist/modeler.umd.js.map +1 -1
- package/dist/modeler.umd.min.js +4 -4
- package/dist/modeler.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/spinner.svg +1 -1
- package/src/components/inspectors/LoadingPreview.vue +9 -26
- package/src/components/inspectors/MessageSelect.vue +1 -1
- package/src/components/inspectors/NoPreviewAvailable.vue +10 -28
- package/src/components/inspectors/preview_panel.scss +29 -1
- package/src/components/modeler/Modeler.vue +4 -0
- package/src/components/nodes/errorEndEvent/index.js +3 -1
- package/src/components/nodes/messageEventDefinition/index.js +13 -1
- package/src/components/nodes/sequenceFlow/index.js +15 -0
- package/src/components/railBottom/RailBottom.vue +2 -0
- package/src/components/topRail/multiplayerViewUsers/MultiplayerViewUsers.vue +4 -1
- package/src/multiplayer/multiplayer.js +46 -14
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="margin: auto; background: rgb(
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="margin: auto; background: rgb(255, 255, 255); display: block; shape-rendering: auto;" width="50px" height="50px" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid">
|
|
3
3
|
<circle cx="50" cy="50" fill="none" stroke="#1572c2" stroke-width="10" r="35" stroke-dasharray="164.93361431346415 56.97787143782138">
|
|
4
4
|
<animateTransform attributeName="transform" type="rotate" repeatCount="indefinite" dur="1s" values="0 50 50;360 50 50" keyTimes="0;1"/>
|
|
5
5
|
</circle>
|