@bptlab/openbpt-modeler-typed-pn-variants 1.0.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/LICENSE +21 -0
- package/README.md +25 -0
- package/assets/icons/pn-fire-transition.svg +6 -0
- package/assets/icons/pn-inhibitor-arc.svg +30 -0
- package/assets/icons/pn-place.svg +62 -0
- package/assets/icons/pn-transition.svg +46 -0
- package/assets/icons/pn-unfire-transition.svg +6 -0
- package/assets/icons/reset.svg +1 -0
- package/assets/icons/toggle-off.svg +1 -0
- package/assets/icons/toggle-on.svg +1 -0
- package/assets/simulation.css +265 -0
- package/assets/tpn-js.css +101 -0
- package/dist/lib/BaseViewer.js +181 -0
- package/dist/lib/BaseViewer.js.map +1 -0
- package/dist/lib/CustomModeler.js +100 -0
- package/dist/lib/CustomModeler.js.map +1 -0
- package/dist/lib/NavigatedViewer.js +14 -0
- package/dist/lib/NavigatedViewer.js.map +1 -0
- package/dist/lib/Viewer.js +53 -0
- package/dist/lib/Viewer.js.map +1 -0
- package/dist/lib/auto-place/CustomAutoPlace.js +10 -0
- package/dist/lib/auto-place/CustomAutoPlace.js.map +1 -0
- package/dist/lib/auto-place/CustomAutoPlaceUtil.js +51 -0
- package/dist/lib/auto-place/CustomAutoPlaceUtil.js.map +1 -0
- package/dist/lib/auto-place/index.js +9 -0
- package/dist/lib/auto-place/index.js.map +1 -0
- package/dist/lib/common/copy-paste/CommonCopyPaste.js +58 -0
- package/dist/lib/common/copy-paste/CommonCopyPaste.js.map +1 -0
- package/dist/lib/common/copy-paste/ModdleCopy.js +168 -0
- package/dist/lib/common/copy-paste/ModdleCopy.js.map +1 -0
- package/dist/lib/common/copy-paste/index.js +10 -0
- package/dist/lib/common/copy-paste/index.js.map +1 -0
- package/dist/lib/common/editor-actions/EditorActions.js +110 -0
- package/dist/lib/common/editor-actions/EditorActions.js.map +1 -0
- package/dist/lib/common/editor-actions/index.js +7 -0
- package/dist/lib/common/editor-actions/index.js.map +1 -0
- package/dist/lib/common/keyboard/KeyboardBindings.js +101 -0
- package/dist/lib/common/keyboard/KeyboardBindings.js.map +1 -0
- package/dist/lib/common/keyboard/index.js +8 -0
- package/dist/lib/common/keyboard/index.js.map +1 -0
- package/dist/lib/common/search/CommonSearchProvider.js +72 -0
- package/dist/lib/common/search/CommonSearchProvider.js.map +1 -0
- package/dist/lib/common/search/index.js +9 -0
- package/dist/lib/common/search/index.js.map +1 -0
- package/dist/lib/core/index.js +6 -0
- package/dist/lib/core/index.js.map +1 -0
- package/dist/lib/declarations-panel/Util.js +32 -0
- package/dist/lib/declarations-panel/Util.js.map +1 -0
- package/dist/lib/declarations-panel/cmd/IdentifierCommitHandler.js +34 -0
- package/dist/lib/declarations-panel/cmd/IdentifierCommitHandler.js.map +1 -0
- package/dist/lib/declarations-panel/cmd/MultiCommandHandler.js +24 -0
- package/dist/lib/declarations-panel/cmd/MultiCommandHandler.js.map +1 -0
- package/dist/lib/declarations-panel/cmd/index.js +19 -0
- package/dist/lib/declarations-panel/cmd/index.js.map +1 -0
- package/dist/lib/declarations-panel/context/DeclarationsPanelContext.js +10 -0
- package/dist/lib/declarations-panel/context/DeclarationsPanelContext.js.map +1 -0
- package/dist/lib/declarations-panel/context/index.js +2 -0
- package/dist/lib/declarations-panel/context/index.js.map +1 -0
- package/dist/lib/declarations-panel/hooks/index.js +2 -0
- package/dist/lib/declarations-panel/hooks/index.js.map +1 -0
- package/dist/lib/declarations-panel/hooks/useService.js +7 -0
- package/dist/lib/declarations-panel/hooks/useService.js.map +1 -0
- package/dist/lib/declarations-panel/provider/DeclarationsProvider.js +107 -0
- package/dist/lib/declarations-panel/provider/DeclarationsProvider.js.map +1 -0
- package/dist/lib/declarations-panel/provider/IdentifierService.js +107 -0
- package/dist/lib/declarations-panel/provider/IdentifierService.js.map +1 -0
- package/dist/lib/declarations-panel/provider/SimulationModeService.js +14 -0
- package/dist/lib/declarations-panel/provider/SimulationModeService.js.map +1 -0
- package/dist/lib/declarations-panel/provider/index.js +14 -0
- package/dist/lib/declarations-panel/provider/index.js.map +1 -0
- package/dist/lib/declarations-panel/provider/properties/ArcProps.js +123 -0
- package/dist/lib/declarations-panel/provider/properties/ArcProps.js.map +1 -0
- package/dist/lib/declarations-panel/provider/properties/IdProps.js +47 -0
- package/dist/lib/declarations-panel/provider/properties/IdProps.js.map +1 -0
- package/dist/lib/declarations-panel/provider/properties/ModelDeclarations.js +193 -0
- package/dist/lib/declarations-panel/provider/properties/ModelDeclarations.js.map +1 -0
- package/dist/lib/declarations-panel/provider/properties/NameProps.js +43 -0
- package/dist/lib/declarations-panel/provider/properties/NameProps.js.map +1 -0
- package/dist/lib/declarations-panel/provider/properties/PlaceProps.js +135 -0
- package/dist/lib/declarations-panel/provider/properties/PlaceProps.js.map +1 -0
- package/dist/lib/declarations-panel/provider/properties/ReferenceSelect.js +21 -0
- package/dist/lib/declarations-panel/provider/properties/ReferenceSelect.js.map +1 -0
- package/dist/lib/declarations-panel/provider/properties/TokenProps.js +116 -0
- package/dist/lib/declarations-panel/provider/properties/TokenProps.js.map +1 -0
- package/dist/lib/declarations-panel/provider/properties/Util.js +112 -0
- package/dist/lib/declarations-panel/provider/properties/Util.js.map +1 -0
- package/dist/lib/declarations-panel/provider/properties/VariableArcProps.js +107 -0
- package/dist/lib/declarations-panel/provider/properties/VariableArcProps.js.map +1 -0
- package/dist/lib/declarations-panel/provider/properties/index.js +8 -0
- package/dist/lib/declarations-panel/provider/properties/index.js.map +1 -0
- package/dist/lib/declarations-panel/render/DeclarationsPanel.js +197 -0
- package/dist/lib/declarations-panel/render/DeclarationsPanel.js.map +1 -0
- package/dist/lib/declarations-panel/render/DeclarationsPanelRenderer.js +154 -0
- package/dist/lib/declarations-panel/render/DeclarationsPanelRenderer.js.map +1 -0
- package/dist/lib/declarations-panel/render/PanelHeaderProvider.js +55 -0
- package/dist/lib/declarations-panel/render/PanelHeaderProvider.js.map +1 -0
- package/dist/lib/declarations-panel/render/PanelPlaceholderProvider.js +17 -0
- package/dist/lib/declarations-panel/render/PanelPlaceholderProvider.js.map +1 -0
- package/dist/lib/declarations-panel/render/index.js +9 -0
- package/dist/lib/declarations-panel/render/index.js.map +1 -0
- package/dist/lib/draw/CustomRenderer.js +361 -0
- package/dist/lib/draw/CustomRenderer.js.map +1 -0
- package/dist/lib/draw/TextRenderer.js +52 -0
- package/dist/lib/draw/TextRenderer.js.map +1 -0
- package/dist/lib/draw/index.js +8 -0
- package/dist/lib/draw/index.js.map +1 -0
- package/dist/lib/import/CustomImporter.js +177 -0
- package/dist/lib/import/CustomImporter.js.map +1 -0
- package/dist/lib/import/CustomTreeWalker.js +178 -0
- package/dist/lib/import/CustomTreeWalker.js.map +1 -0
- package/dist/lib/import/Importer.js +47 -0
- package/dist/lib/import/Importer.js.map +1 -0
- package/dist/lib/import/index.js +7 -0
- package/dist/lib/import/index.js.map +1 -0
- package/dist/lib/moddle/CustomModdle.js +86 -0
- package/dist/lib/moddle/CustomModdle.js.map +1 -0
- package/dist/lib/moddle/index.js +15 -0
- package/dist/lib/moddle/index.js.map +1 -0
- package/dist/lib/moddle/resources/dc.json +99 -0
- package/dist/lib/moddle/resources/diagramSchema.js +210 -0
- package/dist/lib/moddle/resources/diagramSchema.js.map +1 -0
- package/dist/lib/moddle/resources/modelSchema.js +254 -0
- package/dist/lib/moddle/resources/modelSchema.js.map +1 -0
- package/dist/lib/modeling/CustomElementFactory.js +66 -0
- package/dist/lib/modeling/CustomElementFactory.js.map +1 -0
- package/dist/lib/modeling/CustomLabelEditing.js +177 -0
- package/dist/lib/modeling/CustomLabelEditing.js.map +1 -0
- package/dist/lib/modeling/CustomModeling.js +40 -0
- package/dist/lib/modeling/CustomModeling.js.map +1 -0
- package/dist/lib/modeling/CustomUpdater.js +291 -0
- package/dist/lib/modeling/CustomUpdater.js.map +1 -0
- package/dist/lib/modeling/CustomVerification.js +111 -0
- package/dist/lib/modeling/CustomVerification.js.map +1 -0
- package/dist/lib/modeling/ElementFactory.js +56 -0
- package/dist/lib/modeling/ElementFactory.js.map +1 -0
- package/dist/lib/modeling/LabelUtil.js +151 -0
- package/dist/lib/modeling/LabelUtil.js.map +1 -0
- package/dist/lib/modeling/UpdateLabelHandler.js +86 -0
- package/dist/lib/modeling/UpdateLabelHandler.js.map +1 -0
- package/dist/lib/modeling/UpdateModdlePropertiesHandler.js +88 -0
- package/dist/lib/modeling/UpdateModdlePropertiesHandler.js.map +1 -0
- package/dist/lib/modeling/UpdatePropertiesHandler.js +136 -0
- package/dist/lib/modeling/UpdatePropertiesHandler.js.map +1 -0
- package/dist/lib/modeling/behavior/AdaptiveLabelPositioningBehavior.js +169 -0
- package/dist/lib/modeling/behavior/AdaptiveLabelPositioningBehavior.js.map +1 -0
- package/dist/lib/modeling/behavior/LabelBehavior.js +255 -0
- package/dist/lib/modeling/behavior/LabelBehavior.js.map +1 -0
- package/dist/lib/modeling/behavior/index.js +8 -0
- package/dist/lib/modeling/behavior/index.js.map +1 -0
- package/dist/lib/modeling/behavior/util/GeometricUtil.js +99 -0
- package/dist/lib/modeling/behavior/util/GeometricUtil.js.map +1 -0
- package/dist/lib/modeling/behavior/util/LabelLayoutUtil.js +178 -0
- package/dist/lib/modeling/behavior/util/LabelLayoutUtil.js.map +1 -0
- package/dist/lib/modeling/behavior/util/LineAttachmentUtil.js +175 -0
- package/dist/lib/modeling/behavior/util/LineAttachmentUtil.js.map +1 -0
- package/dist/lib/modeling/index.js +36 -0
- package/dist/lib/modeling/index.js.map +1 -0
- package/dist/lib/palette/CustomContextPadProvider.js +182 -0
- package/dist/lib/palette/CustomContextPadProvider.js.map +1 -0
- package/dist/lib/palette/CustomPaletteProvider.js +93 -0
- package/dist/lib/palette/CustomPaletteProvider.js.map +1 -0
- package/dist/lib/palette/TokenModals.js +105 -0
- package/dist/lib/palette/TokenModals.js.map +1 -0
- package/dist/lib/palette/index.js +28 -0
- package/dist/lib/palette/index.js.map +1 -0
- package/dist/lib/replace/ReplaceMenuProvider.js +84 -0
- package/dist/lib/replace/ReplaceMenuProvider.js.map +1 -0
- package/dist/lib/replace/index.js +9 -0
- package/dist/lib/replace/index.js.map +1 -0
- package/dist/lib/rules/CustomRuleProvider.js +107 -0
- package/dist/lib/rules/CustomRuleProvider.js.map +1 -0
- package/dist/lib/rules/index.js +8 -0
- package/dist/lib/rules/index.js.map +1 -0
- package/dist/lib/simulation/EventHelper.js +6 -0
- package/dist/lib/simulation/EventHelper.js.map +1 -0
- package/dist/lib/simulation/Utils.js +8 -0
- package/dist/lib/simulation/Utils.js.map +1 -0
- package/dist/lib/simulation/binding-utils/arcPlaceInfoLogic.js +157 -0
- package/dist/lib/simulation/binding-utils/arcPlaceInfoLogic.js.map +1 -0
- package/dist/lib/simulation/binding-utils/bindingUtils.js +64 -0
- package/dist/lib/simulation/binding-utils/bindingUtils.js.map +1 -0
- package/dist/lib/simulation/binding-utils/earlyReturnLogic.js +107 -0
- package/dist/lib/simulation/binding-utils/earlyReturnLogic.js.map +1 -0
- package/dist/lib/simulation/binding-utils/exactSynchro.js +102 -0
- package/dist/lib/simulation/binding-utils/exactSynchro.js.map +1 -0
- package/dist/lib/simulation/binding-utils/helpers.js +141 -0
- package/dist/lib/simulation/binding-utils/helpers.js.map +1 -0
- package/dist/lib/simulation/binding-utils/inhibitorLogic.js +166 -0
- package/dist/lib/simulation/binding-utils/inhibitorLogic.js.map +1 -0
- package/dist/lib/simulation/binding-utils/linkingLogic.js +384 -0
- package/dist/lib/simulation/binding-utils/linkingLogic.js.map +1 -0
- package/dist/lib/simulation/context-pads/ContextPads.js +141 -0
- package/dist/lib/simulation/context-pads/ContextPads.js.map +1 -0
- package/dist/lib/simulation/context-pads/FireTransitionHandler.js +481 -0
- package/dist/lib/simulation/context-pads/FireTransitionHandler.js.map +1 -0
- package/dist/lib/simulation/context-pads/FireTransitionUtils.js +169 -0
- package/dist/lib/simulation/context-pads/FireTransitionUtils.js.map +1 -0
- package/dist/lib/simulation/context-pads/FormJsAdapter.js +99 -0
- package/dist/lib/simulation/context-pads/FormJsAdapter.js.map +1 -0
- package/dist/lib/simulation/context-pads/index.js +8 -0
- package/dist/lib/simulation/context-pads/index.js.map +1 -0
- package/dist/lib/simulation/palette/Palette.js +36 -0
- package/dist/lib/simulation/palette/Palette.js.map +1 -0
- package/dist/lib/simulation/palette/index.js +6 -0
- package/dist/lib/simulation/palette/index.js.map +1 -0
- package/dist/lib/simulation/reset-simulation/ResetSimulation.js +36 -0
- package/dist/lib/simulation/reset-simulation/ResetSimulation.js.map +1 -0
- package/dist/lib/simulation/reset-simulation/index.js +6 -0
- package/dist/lib/simulation/reset-simulation/index.js.map +1 -0
- package/dist/lib/simulation/simulation-history/SimulationHistory.js +158 -0
- package/dist/lib/simulation/simulation-history/SimulationHistory.js.map +1 -0
- package/dist/lib/simulation/simulation-history/index.js +6 -0
- package/dist/lib/simulation/simulation-history/index.js.map +1 -0
- package/dist/lib/simulation/simulator/Simulator.js +131 -0
- package/dist/lib/simulation/simulator/Simulator.js.map +1 -0
- package/dist/lib/simulation/simulator/index.js +6 -0
- package/dist/lib/simulation/simulator/index.js.map +1 -0
- package/dist/lib/simulation/toggle-simulation-mode/DisableModeling.js +85 -0
- package/dist/lib/simulation/toggle-simulation-mode/DisableModeling.js.map +1 -0
- package/dist/lib/simulation/toggle-simulation-mode/ToggleSimulationMode.js +65 -0
- package/dist/lib/simulation/toggle-simulation-mode/ToggleSimulationMode.js.map +1 -0
- package/dist/lib/simulation/toggle-simulation-mode/index.js +8 -0
- package/dist/lib/simulation/toggle-simulation-mode/index.js.map +1 -0
- package/dist/lib/util/EventBusEvents.js +70 -0
- package/dist/lib/util/EventBusEvents.js.map +1 -0
- package/dist/lib/util/FileUtil.js +35 -0
- package/dist/lib/util/FileUtil.js.map +1 -0
- package/dist/lib/util/HtmlUtil.js +67 -0
- package/dist/lib/util/HtmlUtil.js.map +1 -0
- package/dist/lib/util/Util.js +60 -0
- package/dist/lib/util/Util.js.map +1 -0
- package/dist/lib/util/constants.js +6 -0
- package/dist/lib/util/constants.js.map +1 -0
- package/dist/lib/util/emptyDiagram.js +12 -0
- package/dist/lib/util/emptyDiagram.js.map +1 -0
- package/dist/lib/util/generated-icons.js +12 -0
- package/dist/lib/util/generated-icons.js.map +1 -0
- package/dist/scripts/build-icons.js +30 -0
- package/dist/scripts/build-icons.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/index.js +1 -0
- package/package.json +83 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Business Process Technology
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# openbpt-typed-pn-variants-modeler
|
|
2
|
+
|
|
3
|
+
A modeler for various typed Petri net variants presented in literature. Currently supported types are:
|
|
4
|
+
|
|
5
|
+
- [t-PNID](https://journals.sagepub.com/doi/10.3233/FI-2009-0095) (typed Petri nets with Identifiers) with inhibitor arcs
|
|
6
|
+
- [OCPN](https://journals.sagepub.com/doi/abs/10.3233/FI-2020-1946) (Object-centric Petri nets)
|
|
7
|
+
- [OPID](https://link.springer.com/chapter/10.1007/978-3-031-61057-8_1) (Object-centric Petri nets with Identifiers) with the exact synchronization extension presented for [DOPID](https://link.springer.com/chapter/10.1007/978-3-031-94571-7_11) (Data-aware Object-centri Petri nets with Identifiers)
|
|
8
|
+
|
|
9
|
+
The modeler is based on the [openbpt-modeler-petri-net](https://github.com/bptlab/openbpt-modeler-petri-net) modeler, which makes use of the wonderful [diagram-js](https://github.com/bpmn-io/diagram-js) library and took inspiration from [bpmn-js](https://github.com/bpmn-io/bpmn-js), [object-diagram-js](https://github.com/timKraeuter/object-diagram-js) and [fcm-js](https://github.com/bptlab/fCM-design-support).
|
|
10
|
+
|
|
11
|
+
## Development Setup
|
|
12
|
+
|
|
13
|
+
1. Clone this repository: ``git clone git@github.com:bptlab/openbpt-typed-pn-variants-modeler.git``
|
|
14
|
+
2. Navigate into the created directory
|
|
15
|
+
3. Run ``npm install``
|
|
16
|
+
4. Run ``npm link``
|
|
17
|
+
5. Clone the [development repository](https://github.com/bptlab/openbpt-modeler-dev/tree/openbpt-typed-pn-variants-modeler): ``git clone git@github.com:bptlab/openbpt-modeler-dev.git``
|
|
18
|
+
6. Navigate into the created directory
|
|
19
|
+
7. Checkout the `openbpt-typed-pn-variants-modeler` branch
|
|
20
|
+
8. Run ``npm install``
|
|
21
|
+
9. Run ``npm link openbpt-typed-pn-variants-modeler``
|
|
22
|
+
|
|
23
|
+
To start the modeler, run
|
|
24
|
+
1. ``npm run watch`` in this repository to automatically compile changes to js (relevant for changes to .ts files)
|
|
25
|
+
2. ``npm run dev`` in the development repo's directory.
|
|
@@ -0,0 +1,6 @@
|
|
|
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" width="1000px" height="1000px" viewBox="0 0 1000 1000" version="1.1">
|
|
3
|
+
<g id="surface1">
|
|
4
|
+
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 212.722656 22.050781 C 122.566406 -29.664062 49.476562 12.699219 49.476562 116.597656 L 49.476562 883.328125 C 49.476562 987.332031 122.566406 1029.640625 212.722656 977.976562 L 882.882812 593.644531 C 973.070312 541.910156 973.070312 458.09375 882.882812 406.375 Z M 212.722656 22.050781 "/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
id="svg8"
|
|
4
|
+
version="1.1"
|
|
5
|
+
viewBox="0 0 2048.0001 2048"
|
|
6
|
+
height="2048mm"
|
|
7
|
+
width="2048mm"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
11
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
12
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
13
|
+
<defs
|
|
14
|
+
id="defs2" />
|
|
15
|
+
<metadata
|
|
16
|
+
id="metadata5">
|
|
17
|
+
<rdf:RDF>
|
|
18
|
+
<cc:Work
|
|
19
|
+
rdf:about="">
|
|
20
|
+
<dc:format>image/svg+xml</dc:format>
|
|
21
|
+
<dc:type
|
|
22
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
23
|
+
</cc:Work>
|
|
24
|
+
</rdf:RDF>
|
|
25
|
+
</metadata>
|
|
26
|
+
<path
|
|
27
|
+
id="rect1"
|
|
28
|
+
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
|
29
|
+
d="m 1724.0002,24.000085 c -164.9253,0 -300.0003,135.074455 -300.0003,299.999775 0,62.29226 19.2693,120.32629 52.1384,168.4321 L 24.000085,1944.5702 103.42986,2024 1555.5681,571.86174 c 48.1058,32.86907 106.1399,52.13841 168.4321,52.13841 C 1888.9255,624.00015 2024,488.92518 2024,323.99986 2024,159.07454 1888.9255,24.000085 1724.0002,24.000085 Z m 0,128.353405 c 95.5581,0 171.6464,76.08811 171.6464,171.64637 0,95.55826 -76.0883,171.64637 -171.6464,171.64637 -95.5581,0 -171.6469,-76.08811 -171.6469,-171.64637 0,-95.55826 76.0888,-171.64637 171.6469,-171.64637 z" />
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
width="2048mm"
|
|
13
|
+
height="2048mm"
|
|
14
|
+
viewBox="0 0 2048 2048"
|
|
15
|
+
version="1.1"
|
|
16
|
+
id="svg5105"
|
|
17
|
+
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
|
18
|
+
sodipodi:docname="pn-place.svg">
|
|
19
|
+
<defs
|
|
20
|
+
id="defs5099" />
|
|
21
|
+
<sodipodi:namedview
|
|
22
|
+
id="base"
|
|
23
|
+
pagecolor="#ffffff"
|
|
24
|
+
bordercolor="#666666"
|
|
25
|
+
borderopacity="1.0"
|
|
26
|
+
inkscape:pageopacity="0.0"
|
|
27
|
+
inkscape:pageshadow="2"
|
|
28
|
+
inkscape:zoom="0.11313708"
|
|
29
|
+
inkscape:cx="3731.6926"
|
|
30
|
+
inkscape:cy="3957.7145"
|
|
31
|
+
inkscape:document-units="mm"
|
|
32
|
+
inkscape:current-layer="layer1"
|
|
33
|
+
showgrid="false"
|
|
34
|
+
inkscape:window-width="1920"
|
|
35
|
+
inkscape:window-height="1017"
|
|
36
|
+
inkscape:window-x="-8"
|
|
37
|
+
inkscape:window-y="-8"
|
|
38
|
+
inkscape:window-maximized="1" />
|
|
39
|
+
<metadata
|
|
40
|
+
id="metadata5102">
|
|
41
|
+
<rdf:RDF>
|
|
42
|
+
<cc:Work
|
|
43
|
+
rdf:about="">
|
|
44
|
+
<dc:format>image/svg+xml</dc:format>
|
|
45
|
+
<dc:type
|
|
46
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
47
|
+
<dc:title></dc:title>
|
|
48
|
+
</cc:Work>
|
|
49
|
+
</rdf:RDF>
|
|
50
|
+
</metadata>
|
|
51
|
+
<g
|
|
52
|
+
inkscape:label="Ebene 1"
|
|
53
|
+
inkscape:groupmode="layer"
|
|
54
|
+
id="layer1"
|
|
55
|
+
transform="translate(0,1751)">
|
|
56
|
+
<path
|
|
57
|
+
id="path5650"
|
|
58
|
+
transform="matrix(0.26458333,0,0,0.26458333,0,-1751)"
|
|
59
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:279.05026245;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
|
60
|
+
d="m 3870.2363,374.17383 c -927.16,0 -1816.4907,368.36969 -2472.0918,1023.97067 -655.60105,655.601 -1023.97069,1544.9318 -1023.97067,2472.0918 0,927.16 368.36962,1816.4907 1023.97067,2472.0918 655.6011,655.6011 1544.9319,1023.9707 2472.0918,1023.9707 927.1601,1e-4 1816.4908,-368.3696 2472.0918,-1023.9707 655.601,-655.6011 1023.9707,-1544.9318 1023.9707,-2472.0918 0,-927.16 -368.3697,-1816.4908 -1023.9707,-2472.0918 C 5686.7271,742.54352 4797.3964,374.17383 3870.2363,374.17383 Z m 0,279.04883 c 853.2586,0 1671.4286,338.89535 2274.7735,942.24024 603.3448,603.3449 942.2402,1421.515 942.2402,2274.7734 0,853.2585 -338.8954,1671.4286 -942.2402,2274.7735 -603.3449,603.3448 -1421.5149,942.2382 -2274.7735,942.2382 -853.2584,0 -1671.4286,-338.8934 -2274.7734,-942.2382 -603.34482,-603.3449 -942.24024,-1421.515 -942.24024,-2274.7735 0,-853.2584 338.89542,-1671.4285 942.24024,-2274.7734 603.3448,-603.34489 1421.515,-942.24024 2274.7734,-942.24024 z" />
|
|
61
|
+
</g>
|
|
62
|
+
</svg>
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
|
4
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
5
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
6
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
7
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
id="svg8"
|
|
10
|
+
version="1.1"
|
|
11
|
+
viewBox="0 0 2048.0001 2048"
|
|
12
|
+
height="2048mm"
|
|
13
|
+
width="2048mm">
|
|
14
|
+
<defs
|
|
15
|
+
id="defs2">
|
|
16
|
+
<linearGradient
|
|
17
|
+
osb:paint="solid"
|
|
18
|
+
id="linearGradient4536">
|
|
19
|
+
<stop
|
|
20
|
+
id="stop4534"
|
|
21
|
+
offset="0"
|
|
22
|
+
style="stop-color:#000001;stop-opacity:1;" />
|
|
23
|
+
</linearGradient>
|
|
24
|
+
</defs>
|
|
25
|
+
<metadata
|
|
26
|
+
id="metadata5">
|
|
27
|
+
<rdf:RDF>
|
|
28
|
+
<cc:Work
|
|
29
|
+
rdf:about="">
|
|
30
|
+
<dc:format>image/svg+xml</dc:format>
|
|
31
|
+
<dc:type
|
|
32
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
33
|
+
<dc:title></dc:title>
|
|
34
|
+
</cc:Work>
|
|
35
|
+
</rdf:RDF>
|
|
36
|
+
</metadata>
|
|
37
|
+
<g
|
|
38
|
+
transform="translate(12.329584,2007.3581)"
|
|
39
|
+
id="layer1">
|
|
40
|
+
<path
|
|
41
|
+
d="M 374.17188,374.17578 V 458.35156 7366.3027 H 7366.2969 V 374.17578 Z M 542.5293,542.53516 H 7197.9395 V 7197.9434 H 542.5293 Z"
|
|
42
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:168.35902405;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
|
43
|
+
transform="matrix(0.26458333,0,0,0.26458333,-12.329584,-2007.3581)"
|
|
44
|
+
id="rect4518" />
|
|
45
|
+
</g>
|
|
46
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
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" width="1000px" height="1000px" viewBox="0 0 1000 1000" version="1.1">
|
|
3
|
+
<g id="surface1">
|
|
4
|
+
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 787.277344 977.949219 C 877.433594 1029.664062 950.5234379999999 987.300781 950.5234379999999 883.402344 L 950.5234379999999 116.671875 C 950.5234379999999 12.667968999999971 877.433594 -29.640625 787.277344 22.023438000000056 L 117.11718800000006 406.35546899999997 C 26.929688000000056 458.08984399999997 26.929688000000056 541.90625 117.11718800000006 593.625 Z M 787.277344 977.949219"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path fill="currentColor" d="M440.65 12.57l4 82.77A247.16 247.16 0 0 0 255.83 8C134.73 8 33.91 94.92 12.29 209.82A12 12 0 0 0 24.09 224h49.05a12 12 0 0 0 11.67-9.26 175.91 175.91 0 0 1 317-56.94l-101.46-4.86a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12H500a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12h-47.37a12 12 0 0 0-11.98 12.57zM255.83 432a175.61 175.61 0 0 1-146-77.8l101.8 4.87a12 12 0 0 0 12.57-12v-47.4a12 12 0 0 0-12-12H12a12 12 0 0 0-12 12V500a12 12 0 0 0 12 12h47.35a12 12 0 0 0 12-12.6l-4.15-82.57A247.17 247.17 0 0 0 255.83 504c121.11 0 221.93-86.92 243.55-201.82a12 12 0 0 0-11.8-14.18h-49.05a12 12 0 0 0-11.67 9.26A175.86 175.86 0 0 1 255.83 432z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path fill="currentColor" d="M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path fill="currentColor" d="M384 64H192C86 64 0 150 0 256s86 192 192 192h192c106 0 192-86 192-192S490 64 384 64zm0 320c-70.8 0-128-57.3-128-128 0-70.8 57.3-128 128-128 70.8 0 128 57.3 128 128 0 70.8-57.3 128-128 128z"/></svg>
|
|
@@ -0,0 +1,265 @@
|
|
|
1
|
+
.canvas {
|
|
2
|
+
padding: 0px;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.simulation {
|
|
6
|
+
box-shadow: inset 0px 0px 0px 4px
|
|
7
|
+
var(--token-simulation-green-base-44, #10d070);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.tpn-toggle-mode {
|
|
11
|
+
cursor: pointer;
|
|
12
|
+
position: absolute;
|
|
13
|
+
top: 20px;
|
|
14
|
+
left: 20px;
|
|
15
|
+
background-color: var(--token-simulation-silver-darken-94, #efefef);
|
|
16
|
+
border-radius: 2px;
|
|
17
|
+
padding: 6px;
|
|
18
|
+
font-size: 16px;
|
|
19
|
+
color: var(--token-simulation-grey-darken-30, #212121);
|
|
20
|
+
user-select: none;
|
|
21
|
+
display: inline-flex;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.tpn-toggle-mode .tpn-toggle {
|
|
25
|
+
margin-left: 0.25em;
|
|
26
|
+
display: inline-flex;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.djs-container.simulation .tpn-toggle-mode,
|
|
30
|
+
.tpn-toggle-mode:hover {
|
|
31
|
+
background-color: var(--token-simulation-green-base-44, #10d070);
|
|
32
|
+
color: var(--token-simulation-white, #000000);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.djs-container.simulation .djs-bendpoint,
|
|
36
|
+
.djs-container.simulation .djs-context-pad,
|
|
37
|
+
.djs-container.simulation .djs-outline,
|
|
38
|
+
.djs-container.simulation .djs-palette,
|
|
39
|
+
.djs-container.simulation .djs-resizer,
|
|
40
|
+
.djs-container.simulation .djs-segment-dragger {
|
|
41
|
+
display: none !important;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.djs-container.simulation
|
|
45
|
+
.djs-overlay:not(
|
|
46
|
+
.djs-overlay-bts-context-menu,
|
|
47
|
+
.djs-overlay-bts-element-notification,
|
|
48
|
+
.djs-overlay-bts-token-count
|
|
49
|
+
) {
|
|
50
|
+
display: none !important;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/* Ensure our fire overlay is visible in simulation mode */
|
|
54
|
+
.djs-container.simulation .djs-overlay-bts-fire-overlay {
|
|
55
|
+
display: block !important;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.djs-container.simulation .djs-overlay-bts-fire-overlay .bts-fire-overlay {
|
|
59
|
+
z-index: 2000 !important;
|
|
60
|
+
pointer-events: auto !important;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/* Even stronger override in case other stylesheets apply display:none to .djs-overlay */
|
|
64
|
+
.djs-container.simulation
|
|
65
|
+
.djs-overlays
|
|
66
|
+
.djs-overlay.djs-overlay-bts-fire-overlay {
|
|
67
|
+
display: block !important;
|
|
68
|
+
visibility: visible !important;
|
|
69
|
+
opacity: 1 !important;
|
|
70
|
+
pointer-events: auto !important;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.djs-container .djs-palette {
|
|
74
|
+
top: 60px !important;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.bts-palette {
|
|
78
|
+
position: absolute;
|
|
79
|
+
top: 60px;
|
|
80
|
+
left: 20px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.bts-palette.hidden {
|
|
84
|
+
display: none;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.bts-palette .bts-entry {
|
|
88
|
+
cursor: pointer;
|
|
89
|
+
background-color: var(--token-simulation-silver-darken-94, #efefef);
|
|
90
|
+
border-radius: 2px;
|
|
91
|
+
padding: 6px 0;
|
|
92
|
+
margin-bottom: 6px;
|
|
93
|
+
font-size: 16px;
|
|
94
|
+
color: var(--token-simulation-grey-darken-30, #212121);
|
|
95
|
+
user-select: none;
|
|
96
|
+
display: flex;
|
|
97
|
+
justify-content: center;
|
|
98
|
+
align-items: center;
|
|
99
|
+
width: 30px;
|
|
100
|
+
box-sizing: border-box;
|
|
101
|
+
transition: all 0.1s ease;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.bts-palette .bts-entry:last-child {
|
|
105
|
+
margin-bottom: 0;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.bts-palette .bts-entry:not(.disabled):hover {
|
|
109
|
+
color: var(--token-simulation-white, #ffffff);
|
|
110
|
+
background-color: var(--token-simulation-green-base-44, #10d070);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.bts-palette .bts-entry.active {
|
|
114
|
+
color: var(--token-simulation-white, #ffffff);
|
|
115
|
+
background-color: var(--token-simulation-green-base-44, #10d070);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.bts-palette .bts-entry.disabled {
|
|
119
|
+
pointer-events: none;
|
|
120
|
+
color: var(--token-simulation-grey-base-40, #666666);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.bts-context-pad {
|
|
124
|
+
cursor: pointer;
|
|
125
|
+
background-color: var(--token-simulation-grey-lighten-56, #909090);
|
|
126
|
+
border-radius: 2px;
|
|
127
|
+
margin: 0;
|
|
128
|
+
font-size: 16px;
|
|
129
|
+
color: var(--token-simulation-grey-darken-30, #212121);
|
|
130
|
+
opacity: 0.5;
|
|
131
|
+
transition: all 0.1s ease-in-out;
|
|
132
|
+
width: 30px;
|
|
133
|
+
height: 30px;
|
|
134
|
+
display: flex;
|
|
135
|
+
justify-content: center;
|
|
136
|
+
align-items: center;
|
|
137
|
+
box-sizing: border-box;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
/* wrapper for multiple context pads so each button has its own background */
|
|
141
|
+
.bts-context-menu-wrapper {
|
|
142
|
+
display: inline-flex;
|
|
143
|
+
gap: 6px;
|
|
144
|
+
align-items: center;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.djs-overlay-bts-context-menu .bts-context-pad {
|
|
148
|
+
/* ensure overlay sizing doesn't collapse when multiple pads exist */
|
|
149
|
+
width: 30px;
|
|
150
|
+
height: 30px;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.bts-context-pad:not(.disabled):hover {
|
|
154
|
+
background-color: var(--token-simulation-green-base-44, #10d070);
|
|
155
|
+
opacity: 1;
|
|
156
|
+
color: var(--token-simulation-white, #ffffff);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.djs-overlays:not(.hover) .bts-context-pad:not(:hover).show-hover,
|
|
160
|
+
.bts-context-pad:not(:hover) .show-hover,
|
|
161
|
+
.bts-context-pad:hover .hide-hover {
|
|
162
|
+
display: none;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.bts-context-pad.disabled {
|
|
166
|
+
background-color: var(--token-simulation-silver-darken-94, #efefef);
|
|
167
|
+
color: var(--token-simulation-grey-base-40, #666666);
|
|
168
|
+
pointer-events: none;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.bts-context-pad.hidden {
|
|
172
|
+
display: none;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.bts-context-pad [class^="bpmn-icon-"]:before,
|
|
176
|
+
.bts-context-pad [class*=" bpmn-icon-"]:before {
|
|
177
|
+
margin: 0;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
/* fast-fire icon in context pad */
|
|
181
|
+
.pn-icon-fast-fire:before {
|
|
182
|
+
content: "⚡";
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
/* Fire overlay (moved from inline styles in FireTransitionHandler.js) */
|
|
186
|
+
.bts-fire-overlay {
|
|
187
|
+
background: #fff;
|
|
188
|
+
padding: 10px;
|
|
189
|
+
border: 1px solid rgba(0, 0, 0, 0.12);
|
|
190
|
+
min-width: 260px;
|
|
191
|
+
box-sizing: border-box;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.bts-fire-content {
|
|
195
|
+
display: flex;
|
|
196
|
+
flex-direction: column;
|
|
197
|
+
gap: 8px;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.bts-fire-title {
|
|
201
|
+
font-weight: 600;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.bts-fire-fields {
|
|
205
|
+
display: flex;
|
|
206
|
+
flex-direction: column;
|
|
207
|
+
gap: 8px;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.bts-fire-row {
|
|
211
|
+
display: flex;
|
|
212
|
+
flex-direction: row;
|
|
213
|
+
align-items: center;
|
|
214
|
+
gap: 8px;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.bts-fire-row select {
|
|
218
|
+
flex: 1 1 auto;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
/* Ensure two-column layout: label (left) and control (right).
|
|
222
|
+
Apply to common adapter output shapes by selecting immediate children
|
|
223
|
+
and common form-js generated wrappers. */
|
|
224
|
+
.bts-fire-fields > * {
|
|
225
|
+
display: flex !important;
|
|
226
|
+
flex-direction: row !important;
|
|
227
|
+
align-items: center !important;
|
|
228
|
+
gap: 8px !important;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.bts-fire-fields label,
|
|
232
|
+
.bts-fire-fields .fjs-label,
|
|
233
|
+
.bts-fire-fields .field-label {
|
|
234
|
+
/* label min-width will be adjusted dynamically by JS; provide a sensible default */
|
|
235
|
+
min-width: 120px;
|
|
236
|
+
margin: 0;
|
|
237
|
+
box-sizing: border-box;
|
|
238
|
+
white-space: nowrap;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.bts-fire-fields select,
|
|
242
|
+
.bts-fire-fields .fjs-input,
|
|
243
|
+
.bts-fire-fields .field-control {
|
|
244
|
+
flex: 1 1 auto;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.bts-fire-footer {
|
|
248
|
+
text-align: right;
|
|
249
|
+
margin-top: 6px;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.bts-fire-cancel,
|
|
253
|
+
.bts-fire-fast {
|
|
254
|
+
margin-right: 8px;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.bts-fire-confirm:disabled {
|
|
258
|
+
opacity: 0.6;
|
|
259
|
+
cursor: not-allowed;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.bts-entry.disabled img {
|
|
263
|
+
filter: grayscale(100%) opacity(0.6);
|
|
264
|
+
pointer-events: none;
|
|
265
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
@import "diagram-js/assets/diagram-js.css";
|
|
2
|
+
@import "bpmn-font/dist/css/bpmn.css";
|
|
3
|
+
@import url("./simulation.css");
|
|
4
|
+
|
|
5
|
+
/* Overwriting diagram-js classes */
|
|
6
|
+
.djs-context-pad .entry.active {
|
|
7
|
+
color: var(--popup-header-entry-selected-color);
|
|
8
|
+
border: solid 1px var(--popup-header-entry-selected-color);
|
|
9
|
+
background-color: var(--popup-header-entry-selected-background-color);
|
|
10
|
+
font-size: 20px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.djs-palette .separator {
|
|
14
|
+
background-color: transparent;
|
|
15
|
+
opacity: 1;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.custom-token-modal {
|
|
19
|
+
background: #fff;
|
|
20
|
+
padding: 20px;
|
|
21
|
+
border: 1px solid #ccc;
|
|
22
|
+
z-index: 10000;
|
|
23
|
+
border-radius: 6px;
|
|
24
|
+
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
|
|
25
|
+
min-width: 220px;
|
|
26
|
+
height: auto;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.custom-token-btn-row {
|
|
30
|
+
display: flex;
|
|
31
|
+
flex-direction: row;
|
|
32
|
+
gap: 8px;
|
|
33
|
+
justify-content: flex-end;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.custom-token-btn {
|
|
37
|
+
font-size: 12px;
|
|
38
|
+
padding: 4px 10px;
|
|
39
|
+
border-radius: 4px;
|
|
40
|
+
border: 1px solid #bbb;
|
|
41
|
+
background: #f5f5f5;
|
|
42
|
+
cursor: pointer;
|
|
43
|
+
transition: background 0.2s;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.custom-token-btn:hover {
|
|
47
|
+
background: #e0e0e0;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.structurally-incorrect-overlay {
|
|
51
|
+
position: relative;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.structurally-incorrect-tooltip {
|
|
55
|
+
position: absolute;
|
|
56
|
+
bottom: 120%;
|
|
57
|
+
left: 50%;
|
|
58
|
+
transform: translateX(-50%);
|
|
59
|
+
background: #fff3cd;
|
|
60
|
+
color: #856404;
|
|
61
|
+
border: 1px solid #856404;
|
|
62
|
+
border-radius: 4px;
|
|
63
|
+
padding: 8px 10px;
|
|
64
|
+
font-size: 16px;
|
|
65
|
+
line-height: 1.3;
|
|
66
|
+
white-space: pre-line;
|
|
67
|
+
min-width: 210px;
|
|
68
|
+
opacity: 0;
|
|
69
|
+
pointer-events: none;
|
|
70
|
+
transition: opacity 0.1s ease-in-out;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.structurally-incorrect-overlay:hover .structurally-incorrect-tooltip {
|
|
74
|
+
opacity: 1;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/* center diagram-js palette and context-pad icons */
|
|
78
|
+
.djs-context-pad .entry,
|
|
79
|
+
.djs-palette .entry {
|
|
80
|
+
align-items: center;
|
|
81
|
+
justify-content: center;
|
|
82
|
+
padding: 0;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.djs-palette .entry {
|
|
86
|
+
display: flex;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.djs-context-pad .entry img {
|
|
90
|
+
width: 20px;
|
|
91
|
+
height: 20px;
|
|
92
|
+
object-fit: contain;
|
|
93
|
+
display: block;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.djs-palette .entry img {
|
|
97
|
+
width: 30px;
|
|
98
|
+
height: 30px;
|
|
99
|
+
object-fit: contain;
|
|
100
|
+
display: block;
|
|
101
|
+
}
|