@zenuml/core 2.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.
Files changed (97) hide show
  1. package/Integration/vanilla-js/index.html +31 -0
  2. package/LICENSE +21 -0
  3. package/README.md +81 -0
  4. package/README_CN.md +15 -0
  5. package/antlr/antlr-4.8-complete.jar +0 -0
  6. package/coverage/clover.xml +6 -0
  7. package/coverage/coverage-final.json +1 -0
  8. package/coverage/lcov-report/Interaction.vue.html +532 -0
  9. package/coverage/lcov-report/Owner.js.html +175 -0
  10. package/coverage/lcov-report/base.css +224 -0
  11. package/coverage/lcov-report/block-navigation.js +79 -0
  12. package/coverage/lcov-report/components/interaction/Interaction.vue.html +544 -0
  13. package/coverage/lcov-report/components/interaction/index.html +110 -0
  14. package/coverage/lcov-report/index.html +95 -0
  15. package/coverage/lcov-report/positioning/david/DavidEisenstat2.ts.html +196 -0
  16. package/coverage/lcov-report/positioning/david/index.html +110 -0
  17. package/coverage/lcov-report/prettify.css +1 -0
  18. package/coverage/lcov-report/prettify.js +2 -0
  19. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  20. package/coverage/lcov-report/sorter.js +170 -0
  21. package/coverage/lcov.info +0 -0
  22. package/cypress/fixtures/example.json +5 -0
  23. package/cypress/fixtures/profile.json +5 -0
  24. package/cypress/fixtures/users.json +232 -0
  25. package/cypress/integration/__image_snapshots__/Smoke test creation #0.png +0 -0
  26. package/cypress/integration/__image_snapshots__/Smoke test fragment #0.png +0 -0
  27. package/cypress/integration/__image_snapshots__/Smoke test fragmentIssue #0.png +0 -0
  28. package/cypress/integration/__image_snapshots__/Smoke test interaction #0.png +0 -0
  29. package/cypress/integration/__image_snapshots__/Smoke test return #0.png +0 -0
  30. package/cypress/integration/__image_snapshots__/Smoke test return #1.png +0 -0
  31. package/cypress/integration/__image_snapshots__/Smoke test should load the home page #0.png +0 -0
  32. package/cypress/integration/smoke.spec.js +64 -0
  33. package/cypress/plugins/index.js +30 -0
  34. package/cypress/support/commands.js +25 -0
  35. package/cypress/support/index.js +20 -0
  36. package/cypress/videos/smoke.spec.js.mp4 +0 -0
  37. package/cypress.json +7 -0
  38. package/dist/fonts/kalam-v15-latin-300.00bd845e.woff2 +0 -0
  39. package/dist/fonts/kalam-v15-latin-300.1c36b0ad.woff +0 -0
  40. package/dist/fonts/kalam-v15-latin-700.2a87f463.woff2 +0 -0
  41. package/dist/fonts/kalam-v15-latin-700.9ec0bbf1.woff +0 -0
  42. package/dist/fonts/kalam-v15-latin-regular.4c0c4df4.woff +0 -0
  43. package/dist/fonts/kalam-v15-latin-regular.e4d4907f.woff2 +0 -0
  44. package/dist/vue-sequence.css +7 -0
  45. package/dist/vue-sequence.umd.min.js +12 -0
  46. package/docs/asciidoc/contributor.adoc +79 -0
  47. package/docs/asciidoc/create-my-own-theme.adoc +25 -0
  48. package/docs/asciidoc/images/creation-component.png +0 -0
  49. package/docs/asciidoc/images/creation-rtl.png +0 -0
  50. package/docs/asciidoc/images/message-arrow-rtl.png +0 -0
  51. package/docs/asciidoc/images/occurrence.png +0 -0
  52. package/docs/asciidoc/images/return-message-conflict.png +0 -0
  53. package/docs/asciidoc/images/shift-up-half-the-height.png +0 -0
  54. package/docs/asciidoc/images/vertical-alignment.svg +1 -0
  55. package/docs/asciidoc/images/vertically-aligning.png +0 -0
  56. package/docs/asciidoc/index.adoc +277 -0
  57. package/docs/asciidoc/integration-guide.adoc +121 -0
  58. package/docs/asciidoc/tutorial.adoc +22 -0
  59. package/docs/async-vs-sync-parser-rules.md +78 -0
  60. package/docs/handling-starter.png +0 -0
  61. package/docs/highlighting-messages.md +47 -0
  62. package/docs/inherited-vs-provided-from.md +59 -0
  63. package/docs/invalid-host-header-error.md +20 -0
  64. package/docs/osx-unsupported-arm64-node12.md +13 -0
  65. package/docs/participants-function.md +27 -0
  66. package/docs/responsive-participant-margin.md +52 -0
  67. package/docs/starter.md +8 -0
  68. package/docs/testing-minified-lib.md +29 -0
  69. package/docs/watch.md +1 -0
  70. package/docs/why-we-publish-embed-view-to-github-pages.md +15 -0
  71. package/docs/width-translate-and-offsets.md +54 -0
  72. package/gen/css3.interp +214 -0
  73. package/gen/css3.tokens +92 -0
  74. package/gen/css3BaseListener.java +1106 -0
  75. package/gen/css3BaseVisitor.java +636 -0
  76. package/gen/css3Lexer.interp +251 -0
  77. package/gen/css3Lexer.java +672 -0
  78. package/gen/css3Lexer.tokens +92 -0
  79. package/gen/css3Listener.java +939 -0
  80. package/gen/css3Parser.java +8113 -0
  81. package/gen/css3Visitor.java +566 -0
  82. package/gen/sequenceLexer.interp +206 -0
  83. package/gen/sequenceLexer.java +419 -0
  84. package/gen/sequenceLexer.tokens +104 -0
  85. package/gen/sequenceParser.interp +180 -0
  86. package/gen/sequenceParser.java +4659 -0
  87. package/gen/sequenceParser.tokens +101 -0
  88. package/gen/sequenceParserBaseListener.java +830 -0
  89. package/gen/sequenceParserBaseVisitor.java +475 -0
  90. package/gen/sequenceParserListener.java +703 -0
  91. package/gen/sequenceParserVisitor.java +425 -0
  92. package/package.json +133 -0
  93. package/playground/creation.html +32 -0
  94. package/playground/message.html +39 -0
  95. package/tailwind.config.js +15 -0
  96. package/types/index.d.ts +34 -0
  97. package/vue.config.spec.js +53 -0
@@ -0,0 +1,170 @@
1
+ /* eslint-disable */
2
+ var addSorting = (function() {
3
+ 'use strict';
4
+ var cols,
5
+ currentSort = {
6
+ index: 0,
7
+ desc: false
8
+ };
9
+
10
+ // returns the summary table element
11
+ function getTable() {
12
+ return document.querySelector('.coverage-summary');
13
+ }
14
+ // returns the thead element of the summary table
15
+ function getTableHeader() {
16
+ return getTable().querySelector('thead tr');
17
+ }
18
+ // returns the tbody element of the summary table
19
+ function getTableBody() {
20
+ return getTable().querySelector('tbody');
21
+ }
22
+ // returns the th element for nth column
23
+ function getNthColumn(n) {
24
+ return getTableHeader().querySelectorAll('th')[n];
25
+ }
26
+
27
+ // loads all columns
28
+ function loadColumns() {
29
+ var colNodes = getTableHeader().querySelectorAll('th'),
30
+ colNode,
31
+ cols = [],
32
+ col,
33
+ i;
34
+
35
+ for (i = 0; i < colNodes.length; i += 1) {
36
+ colNode = colNodes[i];
37
+ col = {
38
+ key: colNode.getAttribute('data-col'),
39
+ sortable: !colNode.getAttribute('data-nosort'),
40
+ type: colNode.getAttribute('data-type') || 'string'
41
+ };
42
+ cols.push(col);
43
+ if (col.sortable) {
44
+ col.defaultDescSort = col.type === 'number';
45
+ colNode.innerHTML =
46
+ colNode.innerHTML + '<span class="sorter"></span>';
47
+ }
48
+ }
49
+ return cols;
50
+ }
51
+ // attaches a data attribute to every tr element with an object
52
+ // of data values keyed by column name
53
+ function loadRowData(tableRow) {
54
+ var tableCols = tableRow.querySelectorAll('td'),
55
+ colNode,
56
+ col,
57
+ data = {},
58
+ i,
59
+ val;
60
+ for (i = 0; i < tableCols.length; i += 1) {
61
+ colNode = tableCols[i];
62
+ col = cols[i];
63
+ val = colNode.getAttribute('data-value');
64
+ if (col.type === 'number') {
65
+ val = Number(val);
66
+ }
67
+ data[col.key] = val;
68
+ }
69
+ return data;
70
+ }
71
+ // loads all row data
72
+ function loadData() {
73
+ var rows = getTableBody().querySelectorAll('tr'),
74
+ i;
75
+
76
+ for (i = 0; i < rows.length; i += 1) {
77
+ rows[i].data = loadRowData(rows[i]);
78
+ }
79
+ }
80
+ // sorts the table using the data for the ith column
81
+ function sortByIndex(index, desc) {
82
+ var key = cols[index].key,
83
+ sorter = function(a, b) {
84
+ a = a.data[key];
85
+ b = b.data[key];
86
+ return a < b ? -1 : a > b ? 1 : 0;
87
+ },
88
+ finalSorter = sorter,
89
+ tableBody = document.querySelector('.coverage-summary tbody'),
90
+ rowNodes = tableBody.querySelectorAll('tr'),
91
+ rows = [],
92
+ i;
93
+
94
+ if (desc) {
95
+ finalSorter = function(a, b) {
96
+ return -1 * sorter(a, b);
97
+ };
98
+ }
99
+
100
+ for (i = 0; i < rowNodes.length; i += 1) {
101
+ rows.push(rowNodes[i]);
102
+ tableBody.removeChild(rowNodes[i]);
103
+ }
104
+
105
+ rows.sort(finalSorter);
106
+
107
+ for (i = 0; i < rows.length; i += 1) {
108
+ tableBody.appendChild(rows[i]);
109
+ }
110
+ }
111
+ // removes sort indicators for current column being sorted
112
+ function removeSortIndicators() {
113
+ var col = getNthColumn(currentSort.index),
114
+ cls = col.className;
115
+
116
+ cls = cls.replace(/ sorted$/, '').replace(/ sorted-desc$/, '');
117
+ col.className = cls;
118
+ }
119
+ // adds sort indicators for current column being sorted
120
+ function addSortIndicators() {
121
+ getNthColumn(currentSort.index).className += currentSort.desc
122
+ ? ' sorted-desc'
123
+ : ' sorted';
124
+ }
125
+ // adds event listeners for all sorter widgets
126
+ function enableUI() {
127
+ var i,
128
+ el,
129
+ ithSorter = function ithSorter(i) {
130
+ var col = cols[i];
131
+
132
+ return function() {
133
+ var desc = col.defaultDescSort;
134
+
135
+ if (currentSort.index === i) {
136
+ desc = !currentSort.desc;
137
+ }
138
+ sortByIndex(i, desc);
139
+ removeSortIndicators();
140
+ currentSort.index = i;
141
+ currentSort.desc = desc;
142
+ addSortIndicators();
143
+ };
144
+ };
145
+ for (i = 0; i < cols.length; i += 1) {
146
+ if (cols[i].sortable) {
147
+ // add the click event handler on the th so users
148
+ // dont have to click on those tiny arrows
149
+ el = getNthColumn(i).querySelector('.sorter').parentElement;
150
+ if (el.addEventListener) {
151
+ el.addEventListener('click', ithSorter(i));
152
+ } else {
153
+ el.attachEvent('onclick', ithSorter(i));
154
+ }
155
+ }
156
+ }
157
+ }
158
+ // adds sorting functionality to the UI
159
+ return function() {
160
+ if (!getTable()) {
161
+ return;
162
+ }
163
+ cols = loadColumns();
164
+ loadData();
165
+ addSortIndicators();
166
+ enableUI();
167
+ };
168
+ })();
169
+
170
+ window.addEventListener('load', addSorting);
File without changes
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "Using fixtures to represent data",
3
+ "email": "hello@cypress.io",
4
+ "body": "Fixtures are a great way to mock data for responses to routes"
5
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "id": 8739,
3
+ "name": "Jane",
4
+ "email": "jane@example.com"
5
+ }
@@ -0,0 +1,232 @@
1
+ [
2
+ {
3
+ "id": 1,
4
+ "name": "Leanne Graham",
5
+ "username": "Bret",
6
+ "email": "Sincere@april.biz",
7
+ "address": {
8
+ "street": "Kulas Light",
9
+ "suite": "Apt. 556",
10
+ "city": "Gwenborough",
11
+ "zipcode": "92998-3874",
12
+ "geo": {
13
+ "lat": "-37.3159",
14
+ "lng": "81.1496"
15
+ }
16
+ },
17
+ "phone": "1-770-736-8031 x56442",
18
+ "website": "hildegard.org",
19
+ "company": {
20
+ "name": "Romaguera-Crona",
21
+ "catchPhrase": "Multi-layered client-server neural-net",
22
+ "bs": "harness real-time e-markets"
23
+ }
24
+ },
25
+ {
26
+ "id": 2,
27
+ "name": "Ervin Howell",
28
+ "username": "Antonette",
29
+ "email": "Shanna@melissa.tv",
30
+ "address": {
31
+ "street": "Victor Plains",
32
+ "suite": "Suite 879",
33
+ "city": "Wisokyburgh",
34
+ "zipcode": "90566-7771",
35
+ "geo": {
36
+ "lat": "-43.9509",
37
+ "lng": "-34.4618"
38
+ }
39
+ },
40
+ "phone": "010-692-6593 x09125",
41
+ "website": "anastasia.net",
42
+ "company": {
43
+ "name": "Deckow-Crist",
44
+ "catchPhrase": "Proactive didactic contingency",
45
+ "bs": "synergize scalable supply-chains"
46
+ }
47
+ },
48
+ {
49
+ "id": 3,
50
+ "name": "Clementine Bauch",
51
+ "username": "Samantha",
52
+ "email": "Nathan@yesenia.net",
53
+ "address": {
54
+ "street": "Douglas Extension",
55
+ "suite": "Suite 847",
56
+ "city": "McKenziehaven",
57
+ "zipcode": "59590-4157",
58
+ "geo": {
59
+ "lat": "-68.6102",
60
+ "lng": "-47.0653"
61
+ }
62
+ },
63
+ "phone": "1-463-123-4447",
64
+ "website": "ramiro.info",
65
+ "company": {
66
+ "name": "Romaguera-Jacobson",
67
+ "catchPhrase": "Face to face bifurcated interface",
68
+ "bs": "e-enable strategic applications"
69
+ }
70
+ },
71
+ {
72
+ "id": 4,
73
+ "name": "Patricia Lebsack",
74
+ "username": "Karianne",
75
+ "email": "Julianne.OConner@kory.org",
76
+ "address": {
77
+ "street": "Hoeger Mall",
78
+ "suite": "Apt. 692",
79
+ "city": "South Elvis",
80
+ "zipcode": "53919-4257",
81
+ "geo": {
82
+ "lat": "29.4572",
83
+ "lng": "-164.2990"
84
+ }
85
+ },
86
+ "phone": "493-170-9623 x156",
87
+ "website": "kale.biz",
88
+ "company": {
89
+ "name": "Robel-Corkery",
90
+ "catchPhrase": "Multi-tiered zero tolerance productivity",
91
+ "bs": "transition cutting-edge web services"
92
+ }
93
+ },
94
+ {
95
+ "id": 5,
96
+ "name": "Chelsey Dietrich",
97
+ "username": "Kamren",
98
+ "email": "Lucio_Hettinger@annie.ca",
99
+ "address": {
100
+ "street": "Skiles Walks",
101
+ "suite": "Suite 351",
102
+ "city": "Roscoeview",
103
+ "zipcode": "33263",
104
+ "geo": {
105
+ "lat": "-31.8129",
106
+ "lng": "62.5342"
107
+ }
108
+ },
109
+ "phone": "(254)954-1289",
110
+ "website": "demarco.info",
111
+ "company": {
112
+ "name": "Keebler LLC",
113
+ "catchPhrase": "User-centric fault-tolerant solution",
114
+ "bs": "revolutionize end-to-end systems"
115
+ }
116
+ },
117
+ {
118
+ "id": 6,
119
+ "name": "Mrs. Dennis Schulist",
120
+ "username": "Leopoldo_Corkery",
121
+ "email": "Karley_Dach@jasper.info",
122
+ "address": {
123
+ "street": "Norberto Crossing",
124
+ "suite": "Apt. 950",
125
+ "city": "South Christy",
126
+ "zipcode": "23505-1337",
127
+ "geo": {
128
+ "lat": "-71.4197",
129
+ "lng": "71.7478"
130
+ }
131
+ },
132
+ "phone": "1-477-935-8478 x6430",
133
+ "website": "ola.org",
134
+ "company": {
135
+ "name": "Considine-Lockman",
136
+ "catchPhrase": "Synchronised bottom-line interface",
137
+ "bs": "e-enable innovative applications"
138
+ }
139
+ },
140
+ {
141
+ "id": 7,
142
+ "name": "Kurtis Weissnat",
143
+ "username": "Elwyn.Skiles",
144
+ "email": "Telly.Hoeger@billy.biz",
145
+ "address": {
146
+ "street": "Rex Trail",
147
+ "suite": "Suite 280",
148
+ "city": "Howemouth",
149
+ "zipcode": "58804-1099",
150
+ "geo": {
151
+ "lat": "24.8918",
152
+ "lng": "21.8984"
153
+ }
154
+ },
155
+ "phone": "210.067.6132",
156
+ "website": "elvis.io",
157
+ "company": {
158
+ "name": "Johns Group",
159
+ "catchPhrase": "Configurable multimedia task-force",
160
+ "bs": "generate enterprise e-tailers"
161
+ }
162
+ },
163
+ {
164
+ "id": 8,
165
+ "name": "Nicholas Runolfsdottir V",
166
+ "username": "Maxime_Nienow",
167
+ "email": "Sherwood@rosamond.me",
168
+ "address": {
169
+ "street": "Ellsworth Summit",
170
+ "suite": "Suite 729",
171
+ "city": "Aliyaview",
172
+ "zipcode": "45169",
173
+ "geo": {
174
+ "lat": "-14.3990",
175
+ "lng": "-120.7677"
176
+ }
177
+ },
178
+ "phone": "586.493.6943 x140",
179
+ "website": "jacynthe.com",
180
+ "company": {
181
+ "name": "Abernathy Group",
182
+ "catchPhrase": "Implemented secondary concept",
183
+ "bs": "e-enable extensible e-tailers"
184
+ }
185
+ },
186
+ {
187
+ "id": 9,
188
+ "name": "Glenna Reichert",
189
+ "username": "Delphine",
190
+ "email": "Chaim_McDermott@dana.io",
191
+ "address": {
192
+ "street": "Dayna Park",
193
+ "suite": "Suite 449",
194
+ "city": "Bartholomebury",
195
+ "zipcode": "76495-3109",
196
+ "geo": {
197
+ "lat": "24.6463",
198
+ "lng": "-168.8889"
199
+ }
200
+ },
201
+ "phone": "(775)976-6794 x41206",
202
+ "website": "conrad.com",
203
+ "company": {
204
+ "name": "Yost and Sons",
205
+ "catchPhrase": "Switchable contextually-based project",
206
+ "bs": "aggregate real-time technologies"
207
+ }
208
+ },
209
+ {
210
+ "id": 10,
211
+ "name": "Clementina DuBuque",
212
+ "username": "Moriah.Stanton",
213
+ "email": "Rey.Padberg@karina.biz",
214
+ "address": {
215
+ "street": "Kattie Turnpike",
216
+ "suite": "Suite 198",
217
+ "city": "Lebsackbury",
218
+ "zipcode": "31428-2261",
219
+ "geo": {
220
+ "lat": "-38.2386",
221
+ "lng": "57.2232"
222
+ }
223
+ },
224
+ "phone": "024-648-3804",
225
+ "website": "ambrose.net",
226
+ "company": {
227
+ "name": "Hoeger LLC",
228
+ "catchPhrase": "Centralized empowering task-force",
229
+ "bs": "target end-to-end models"
230
+ }
231
+ }
232
+ ]
@@ -0,0 +1,64 @@
1
+ /* eslint-disable no-undef */
2
+ import 'cypress-plugin-snapshots/commands';
3
+ describe('Smoke test', function () {
4
+ it('should load the home page', function () {
5
+ cy.visit('http://localhost:8080/cy/smoke.html', {
6
+ headers: {
7
+ "Accept-Encoding": "gzip, deflate"
8
+ },
9
+ retryOnStatusCodeFailure: true,
10
+ retryOnNetworkFailure: true,
11
+ timeout: 30000
12
+ })
13
+ .then(() => {
14
+ cy.document().toMatchImageSnapshot({
15
+ imageConfig: {"threshold": 0.005}, capture: "viewport"
16
+ });
17
+ })
18
+ });
19
+
20
+ it('interaction', function () {
21
+ cy.visit('http://localhost:8080/cy/smoke-interaction.html')
22
+ .then(() => {
23
+ cy.document().toMatchImageSnapshot({
24
+ imageConfig: {"threshold": 0.005}, capture: "viewport"
25
+ });
26
+ })
27
+ });
28
+
29
+ it('return', function () {
30
+ cy.visit('http://localhost:8080/cy/smoke-return.html')
31
+ .then(() => {
32
+ cy.document().toMatchImageSnapshot({
33
+ imageConfig: {"threshold": 0.005}, capture: "viewport"
34
+ });
35
+ })
36
+ });
37
+
38
+ it('creation', function () {
39
+ cy.visit('http://localhost:8080/cy/smoke-creation.html')
40
+ .then(() => {
41
+ cy.document().toMatchImageSnapshot({
42
+ imageConfig: {"threshold": 0.005}, capture: "viewport"
43
+ });
44
+ })
45
+ });
46
+
47
+ it('fragmentIssue', function () {
48
+ cy.visit('http://localhost:8080/cy/smoke-fragment-issue.html')
49
+ .then(() => {
50
+ cy.document().toMatchImageSnapshot({
51
+ imageConfig: {"threshold": 0.005}, capture: "viewport"
52
+ });
53
+ })
54
+ });
55
+
56
+ it('fragment', function () {
57
+ cy.visit('http://localhost:8080/cy/smoke-fragment.html')
58
+ .then(() => {
59
+ cy.document().toMatchImageSnapshot({
60
+ imageConfig: {"threshold": 0.005}, capture: "viewport"
61
+ });
62
+ })
63
+ });
64
+ });
@@ -0,0 +1,30 @@
1
+ /// <reference types="cypress" />
2
+ // ***********************************************************
3
+ // This example plugins/index.js can be used to load plugins
4
+ //
5
+ // You can change the location of this file or turn off loading
6
+ // the plugins file with the 'pluginsFile' configuration option.
7
+ //
8
+ // You can read more here:
9
+ // https://on.cypress.io/plugins-guide
10
+ // ***********************************************************
11
+
12
+ // This function is called when a project is opened or re-opened (e.g. due to
13
+ // the project's config changing)
14
+ const { initPlugin } = require('cypress-plugin-snapshots/plugin');
15
+ /**
16
+ * @type {Cypress.PluginConfig}
17
+ */
18
+ // eslint-disable-next-line no-unused-vars
19
+ module.exports = (on, config) => {
20
+ // `on` is used to hook into various events Cypress emits
21
+ // `config` is the resolved Cypress config
22
+ initPlugin(on, config);
23
+ // force color profile
24
+ on('before:browser:launch', (browser = {}, launchOptions) => {
25
+ if (browser.family === 'chromium' && browser.name !== 'electron') {
26
+ launchOptions.args.push('--force-color-profile=srgb');
27
+ }
28
+ });
29
+ return config;
30
+ }
@@ -0,0 +1,25 @@
1
+ // ***********************************************
2
+ // This example commands.js shows you how to
3
+ // create various custom commands and overwrite
4
+ // existing commands.
5
+ //
6
+ // For more comprehensive examples of custom
7
+ // commands please read more here:
8
+ // https://on.cypress.io/custom-commands
9
+ // ***********************************************
10
+ //
11
+ //
12
+ // -- This is a parent command --
13
+ // Cypress.Commands.add('login', (email, password) => { ... })
14
+ //
15
+ //
16
+ // -- This is a child command --
17
+ // Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... })
18
+ //
19
+ //
20
+ // -- This is a dual command --
21
+ // Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... })
22
+ //
23
+ //
24
+ // -- This will overwrite an existing command --
25
+ // Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
@@ -0,0 +1,20 @@
1
+ // ***********************************************************
2
+ // This example support/index.js is processed and
3
+ // loaded automatically before your test files.
4
+ //
5
+ // This is a great place to put global configuration and
6
+ // behavior that modifies Cypress.
7
+ //
8
+ // You can change the location of this file or turn off
9
+ // automatically serving support files with the
10
+ // 'supportFile' configuration option.
11
+ //
12
+ // You can read more here:
13
+ // https://on.cypress.io/configuration
14
+ // ***********************************************************
15
+
16
+ // Import commands.js using ES2015 syntax:
17
+ import './commands'
18
+
19
+ // Alternatively you can use CommonJS syntax:
20
+ // require('./commands')
Binary file
package/cypress.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "projectId": "srixxa",
3
+ "ignoreTestFiles": [
4
+ "**/__snapshots__/*",
5
+ "**/__image_snapshots__/*"
6
+ ]
7
+ }
@@ -0,0 +1,7 @@
1
+ .tooltip[data-v-b73ef89e]{cursor:pointer;position:relative;display:block;width:100%;text-align:center;z-index:10}.tooltip span[data-v-b73ef89e]{border-bottom:1px dotted}.tooltip[data-v-b73ef89e]:after{display:none;content:attr(data-tooltip);background:#e8e9e9;max-width:500px;width:200px;position:absolute;left:-200px;right:0;margin:auto;opacity:0;height:auto;font-size:14px;padding:10px;border-radius:4px;color:#111;text-align:left}.tooltip.bottom[data-v-b73ef89e]:after{top:80%;transition:opacity .3s ease .3s,top .3s cubic-bezier(.175,.885,.32,1.275) .3s}.tooltip.bottom[data-v-b73ef89e]:hover:after{display:block;top:130%;opacity:1}.lifeline .line[data-v-789d2d6c]{background:linear-gradient(180deg,#0000 50%,#223049 0);background-size:1px 20px}.fill svg.arrow polyline[data-v-08af3d3e]{fill:#000}.no-fill svg.arrow polyline[data-v-08af3d3e]{fill:none!important}.async>.message>.point>svg.arrow>polyline[data-v-08af3d3e]{fill:none}.right-to-left.point[data-v-08af3d3e]{left:0;right:auto}.right-to-left.point>svg>polyline.right[data-v-08af3d3e]{display:none}.right-to-left.point>svg>polyline.left[data-v-08af3d3e]{display:inline}.point>svg>polyline.left[data-v-08af3d3e]{display:none}.occurrence[data-v-22ef3411]{width:15px;padding:16px 0 16px 5px}[data-v-22ef3411]>.statement-container:last-child>.interaction.return:last-of-type{margin-bottom:0;border-bottom:0;transform:translateY(1px)}[data-v-22ef3411]>.statement-container:last-child>.interaction.return:last-of-type>.message{bottom:-17px;height:0}.right-to-left.occurrence[data-v-22ef3411]{left:-14px}.occurrence{margin-top:-2px}svg polyline[data-v-aa28e916]{fill:none;stroke-width:2px}.interaction .occurrence.source[data-v-ae9d59d8]{position:absolute;height:calc(100% + 14px);left:-12px;display:none}.interaction .occurrence.source.right-to-left[data-v-ae9d59d8]{left:unset;right:-13px}.message.self[data-v-4ba620ac]{transform:translateX(-5px)}.message.self svg.arrow polyline[data-v-4ba620ac]{fill:none;stroke-width:2px}.message.self svg.arrow polyline.head[data-v-4ba620ac]{fill:none}.interaction .invisible-occurrence[data-v-468901ce]{height:20px}.interaction.async[data-v-468901ce] .message{width:100%}.fragment.par>.block>.statement-container:not(:first-child){border-top:1px dashed}.divider[data-v-59e59271]{display:flex;align-items:center}.name[data-v-59e59271]{margin:0;padding:2px 6px 2px 6px}.left[data-v-59e59271],.right[data-v-59e59271]{height:1px;flex-grow:1}.comments{font-size:.8em;line-height:1.5em;opacity:.5}.comments:hover{opacity:.9}.fragment>.comments{width:100%;border-bottom:1px solid;border-top:none;border-left:none;border-right:none}.interaction{border:dashed #0000;border-width:0 7px}.interaction:hover{cursor:pointer}.message{position:relative}.message>.name{font-size:13px;text-align:center}.interaction.right-to-left>.occurrence{left:-14px}.interaction.self>.occurrence{left:-8px;margin-top:-10px}.fragment{border-width:1px;margin:8px 0 0 0;padding-bottom:10px}.fragment .header label{padding:0 10px}.fragment .header .name label{padding:0 10px;background:#aaaaaa1a}.sequence-diagram *{box-sizing:inherit}.sequence-diagram{position:relative;box-sizing:border-box;line-height:normal;text-align:left}.participant{border-width:2px;padding:8px 4px;min-width:88px;max-width:250px;text-align:center}.frame[data-v-864193fe]{display:inline-block;border:1px solid #e6e6e6;border-radius:3px}.header[data-v-864193fe]{border-bottom:1px solid #e6e6e6;margin-bottom:4px;padding:4px}
2
+
3
+
4
+
5
+ /*! tailwindcss v2.2.17 | MIT License | https://tailwindcss.com */
6
+
7
+ /*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */html{-moz-tab-size:4;tab-size:4;line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji}hr{height:0;color:inherit}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],button{-webkit-appearance:button}::-moz-focus-inner{border-style:none;padding:0}legend{padding:0}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:initial;background-image:none}fieldset,ol,ul{margin:0;padding:0}ol,ul{list-style:none}html{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}body{font-family:inherit;line-height:inherit}*,:after,:before{box-sizing:border-box;border-width:0;border-style:solid;border-color:currentColor}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,:after,:before{--tw-border-opacity:1;border-color:rgba(229,231,235,var(--tw-border-opacity))}.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}.zenuml .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.zenuml .invisible{visibility:hidden}.zenuml .fixed{position:fixed}.zenuml .absolute{position:absolute}.zenuml .relative{position:relative}.zenuml .inset-0{top:0;right:0;bottom:0;left:0}.zenuml .right-0{right:0}.zenuml .right-1{right:.25rem}.zenuml .bottom-1{bottom:.25rem}.zenuml .left-1{left:.25rem}.zenuml .left-1\/2{left:50%}.zenuml .left-full{left:100%}.zenuml .z-10{z-index:10}.zenuml .z-40{z-index:40}.zenuml .col-span-1{grid-column:span 1/span 1}.zenuml .col-span-2{grid-column:span 2/span 2}.zenuml .col-span-4{grid-column:span 4/span 4}.zenuml .float-right{float:right}.zenuml .m-1{margin:.25rem}.zenuml .m-2{margin:.5rem}.zenuml .m-auto{margin:auto}.zenuml .mx-2{margin-left:.5rem;margin-right:.5rem}.zenuml .mx-auto{margin-left:auto;margin-right:auto}.zenuml .-my-px{margin-top:-1px;margin-bottom:-1px}.zenuml .mt-2{margin-top:.5rem}.zenuml .mt-3{margin-top:.75rem}.zenuml .mt-4{margin-top:1rem}.zenuml .mt-8{margin-top:2rem}.zenuml .mt-10{margin-top:2.5rem}.zenuml .-mt-12{margin-top:-3rem}.zenuml .mr-2{margin-right:.5rem}.zenuml .mb-4{margin-bottom:1rem}.zenuml .ml-4{margin-left:1rem}.zenuml .block{display:block}.zenuml .inline-block{display:inline-block}.zenuml .flex{display:flex}.zenuml .inline-flex{display:inline-flex}.zenuml .table{display:table}.zenuml .grid{display:grid}.zenuml .contents{display:contents}.zenuml .hidden{display:none}.zenuml .h-3{height:.75rem}.zenuml .h-4{height:1rem}.zenuml .h-5{height:1.25rem}.zenuml .h-6{height:1.5rem}.zenuml .h-8{height:2rem}.zenuml .h-10{height:2.5rem}.zenuml .h-12{height:3rem}.zenuml .h-14{height:3.5rem}.zenuml .h-full{height:100%}.zenuml .h-screen{height:100vh}.zenuml .min-h-screen{min-height:100vh}.zenuml .w-3{width:.75rem}.zenuml .w-4{width:1rem}.zenuml .w-6{width:1.5rem}.zenuml .w-8{width:2rem}.zenuml .w-28{width:7rem}.zenuml .w-96{width:24rem}.zenuml .w-px{width:1px}.zenuml .w-11\/12{width:91.666667%}.zenuml .w-full{width:100%}.zenuml .max-w-7xl{max-width:80rem}.zenuml .max-w-full{max-width:100%}.zenuml .flex-shrink-0{flex-shrink:0}.zenuml .flex-grow{flex-grow:1}.zenuml .origin-top-left{transform-origin:top left}.zenuml .transform{--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.zenuml .-translate-x-1\/2{--tw-translate-x:-50%}.zenuml .-translate-x-full{--tw-translate-x:-100%}.zenuml .translate-y-1\/2{--tw-translate-y:50%}.zenuml .-translate-y-1\/2{--tw-translate-y:-50%}.zenuml .-translate-y-full{--tw-translate-y:-100%}@keyframes spin{to{transform:rotate(1turn)}}@keyframes ping{75%,to{transform:scale(2);opacity:0}}@keyframes pulse{50%{opacity:.5}}@keyframes bounce{0%,to{transform:translateY(-25%);animation-timing-function:cubic-bezier(.8,0,1,1)}50%{transform:none;animation-timing-function:cubic-bezier(0,0,.2,1)}}.zenuml .grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.zenuml .grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.zenuml .grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.zenuml .flex-row-reverse{flex-direction:row-reverse}.zenuml .flex-col{flex-direction:column}.zenuml .flex-nowrap{flex-wrap:nowrap}.zenuml .items-start{align-items:flex-start}.zenuml .items-end{align-items:flex-end}.zenuml .items-center{align-items:center}.zenuml .justify-center{justify-content:center}.zenuml .justify-between{justify-content:space-between}.zenuml .gap-5{gap:1.25rem}.zenuml .overflow-hidden{overflow:hidden}.zenuml .overflow-visible{overflow:visible}.zenuml .overflow-y-auto{overflow-y:auto}.zenuml .truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zenuml .whitespace-normal{white-space:normal}.zenuml .whitespace-nowrap{white-space:nowrap}.zenuml .hover\:whitespace-normal:hover{white-space:normal}.zenuml .rounded-sm{border-radius:.125rem}.zenuml .rounded{border-radius:.25rem}.zenuml .rounded-md{border-radius:.375rem}.zenuml .rounded-lg{border-radius:.5rem}.zenuml .rounded-t-md{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.zenuml .rounded-b-md{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.zenuml .border-2{border-width:2px}.zenuml .border{border-width:1px}.zenuml .border-t{border-top-width:1px}.zenuml .border-r{border-right-width:1px}.zenuml .border-b-2{border-bottom-width:2px}.zenuml .border-b{border-bottom-width:1px}.zenuml .border-solid{border-style:solid}.zenuml .border-transparent{border-color:#0000}.zenuml .border-gray-200{--tw-border-opacity:1;border-color:rgba(229,231,235,var(--tw-border-opacity))}.zenuml .bg-white{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.zenuml .bg-gray-50{--tw-bg-opacity:1;background-color:rgba(249,250,251,var(--tw-bg-opacity))}.zenuml .bg-gray-500{--tw-bg-opacity:1;background-color:rgba(107,114,128,var(--tw-bg-opacity))}.zenuml .bg-green-200{--tw-bg-opacity:1;background-color:rgba(167,243,208,var(--tw-bg-opacity))}.zenuml .bg-blue-100{--tw-bg-opacity:1;background-color:rgba(219,234,254,var(--tw-bg-opacity))}.zenuml .hover\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgba(243,244,246,var(--tw-bg-opacity))}.zenuml .hover\:bg-yellow-300:hover{--tw-bg-opacity:1;background-color:rgba(252,211,77,var(--tw-bg-opacity))}.zenuml .hover\:bg-green-100:hover{--tw-bg-opacity:1;background-color:rgba(209,250,229,var(--tw-bg-opacity))}.zenuml .bg-opacity-75{--tw-bg-opacity:0.75}.zenuml .object-contain{object-fit:contain}.zenuml .p-2{padding:.5rem}.zenuml .px-1{padding-left:.25rem;padding-right:.25rem}.zenuml .px-2{padding-left:.5rem;padding-right:.5rem}.zenuml .px-3{padding-left:.75rem;padding-right:.75rem}.zenuml .px-4{padding-left:1rem;padding-right:1rem}.zenuml .py-1{padding-top:.25rem;padding-bottom:.25rem}.zenuml .py-2{padding-top:.5rem;padding-bottom:.5rem}.zenuml .py-5{padding-top:1.25rem;padding-bottom:1.25rem}.zenuml .pt-4{padding-top:1rem}.zenuml .pt-8{padding-top:2rem}.zenuml .pt-24{padding-top:6rem}.zenuml .pr-24{padding-right:6rem}.zenuml .pb-1{padding-bottom:.25rem}.zenuml .pb-2{padding-bottom:.5rem}.zenuml .pb-4{padding-bottom:1rem}.zenuml .pb-8{padding-bottom:2rem}.zenuml .pb-20{padding-bottom:5rem}.zenuml .pb-32{padding-bottom:8rem}.zenuml .text-left{text-align:left}.zenuml .text-center{text-align:center}.zenuml .align-bottom{vertical-align:bottom}.zenuml .text-xs{font-size:.75rem;line-height:1rem}.zenuml .text-sm{font-size:.875rem;line-height:1.25rem}.zenuml .text-lg{font-size:1.125rem;line-height:1.75rem}.zenuml .text-xl{font-size:1.25rem;line-height:1.75rem}.zenuml .font-medium{font-weight:500}.zenuml .font-semibold{font-weight:600}.zenuml .font-bold{font-weight:700}.zenuml .leading-6{line-height:1.5rem}.zenuml .text-white{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.zenuml .text-gray-400{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}.zenuml .text-gray-500{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.zenuml .text-gray-600{--tw-text-opacity:1;color:rgba(75,85,99,var(--tw-text-opacity))}.zenuml .text-gray-900{--tw-text-opacity:1;color:rgba(17,24,39,var(--tw-text-opacity))}.zenuml .text-green-700{--tw-text-opacity:1;color:rgba(4,120,87,var(--tw-text-opacity))}.zenuml .hover\:text-gray-500:hover{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.zenuml .hover\:text-gray-600:hover{--tw-text-opacity:1;color:rgba(75,85,99,var(--tw-text-opacity))}*,:after,:before{--tw-shadow:0 0 #0000}.zenuml .shadow-sm{--tw-shadow:0 1px 2px 0 #0000000d}.zenuml .shadow,.zenuml .shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.zenuml .shadow{--tw-shadow:0 1px 3px 0 #0000001a,0 1px 2px 0 #0000000f}.zenuml .shadow-xl{--tw-shadow:0 20px 25px -5px #0000001a,0 10px 10px -5px #0000000a;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.zenuml .focus\:outline-none:focus{outline:2px solid #0000;outline-offset:2px}*,:after,:before{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000}.zenuml .focus\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.zenuml .focus\:ring-inset:focus{--tw-ring-inset:inset}.zenuml .focus\:ring-indigo-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgba(99,102,241,var(--tw-ring-opacity))}.zenuml .filter{--tw-blur:var(--tw-empty,/*!*/ /*!*/);--tw-brightness:var(--tw-empty,/*!*/ /*!*/);--tw-contrast:var(--tw-empty,/*!*/ /*!*/);--tw-grayscale:var(--tw-empty,/*!*/ /*!*/);--tw-hue-rotate:var(--tw-empty,/*!*/ /*!*/);--tw-invert:var(--tw-empty,/*!*/ /*!*/);--tw-saturate:var(--tw-empty,/*!*/ /*!*/);--tw-sepia:var(--tw-empty,/*!*/ /*!*/);--tw-drop-shadow:var(--tw-empty,/*!*/ /*!*/);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.zenuml .grayscale{--tw-grayscale:grayscale(100%)}.zenuml .transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.zenuml .transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.zenuml .transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}@media (min-width:640px){.zenuml .sm\:my-8{margin-top:2rem;margin-bottom:2rem}.zenuml .sm\:block{display:block}.zenuml .sm\:inline-block{display:inline-block}.zenuml .sm\:h-screen{height:100vh}.zenuml .sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.zenuml .sm\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.zenuml .sm\:gap-6{gap:1.5rem}.zenuml .sm\:p-2{padding:.5rem}.zenuml .sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.zenuml .sm\:align-middle{vertical-align:middle}}@media (min-width:1024px){.zenuml .lg\:mx-0{margin-left:0;margin-right:0}.zenuml .lg\:mx-auto{margin-left:auto;margin-right:auto}.zenuml .lg\:max-w-none{max-width:none}.zenuml .lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.zenuml .lg\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.zenuml .lg\:px-8{padding-left:2rem;padding-right:2rem}}.sequence-diagram{font-family:Helvetica,Verdana,serif;font-size:16px;display:inline-block}.sequence-diagram .occurrence{border-color:#000;background-color:#dedede}.sequence-diagram .message{border-bottom-color:#000}.sequence-diagram .message .name{color:#000}.sequence-diagram .message svg polyline{stroke:#000}.sequence-diagram .message svg polyline.head{fill:#000}.sequence-diagram .divider .left,.sequence-diagram .divider .right{background:#000}.sequence-diagram .fragment{border-radius:4px;border-color:#0000004d}.sequence-diagram .fragment .header .name{padding:4px 4px 4px 6px;background:none;border-bottom:1px solid #0000004d}.sequence-diagram .fragment .header .name label{font-weight:700;background:#0000;padding:0;color:#000}.sequence-diagram .fragment .header label{display:inline-block;padding:6px 4px 4px 6px;color:#000}.sequence-diagram .fragment .header label.else-if{display:none}.sequence-diagram .fragment.alt div.divider{border-bottom-color:#555}.sequence-diagram .lifeline .participant{border-color:#000;background:#fff}.sequence-diagram .selected{border-color:#0303038c}.sequence-diagram .comments p,.sequence-diagram .comments pre{margin:0;line-height:1.5em}.sequence-diagram .comments code{font-size:90%;background-color:#f9f2f4;border-radius:4px}.sequence-diagram .comments .rest-api .http-method-post{color:#0d4b3b}.sequence-diagram .comments .rest-api .http-method-get{color:#2f3d89}.sequence-diagram .comments .rest-api .http-method-delete{color:#7e1e23}.sequence-diagram .comments ol,.sequence-diagram .comments ul{margin:0;padding-left:20px}.sequence-diagram .comments ul li{list-style-type:none}.sequence-diagram .comments ul li input[type=checkbox]{margin-left:-1em}.sequence-diagram .comments table{border-collapse:collapse;border-spacing:0;empty-cells:show;border-color:#cbcbcb}.sequence-diagram .comments table td,.sequence-diagram .comments table th{padding:.5em}.sequence-diagram .comments table thead{background-color:#e0e0e0}.sequence-diagram .comments table td{background-color:initial}.theme-blue .sequence-diagram .divider .name{border-radius:4px;border:1px solid #e28553;color:#e28553}.theme-blue .sequence-diagram .divider .left,.theme-blue .sequence-diagram .divider .right{background:#e28553}.theme-blue .sequence-diagram .lifeline .participant{border-color:#032c72;background:#92c0f04d}.theme-blue .sequence-diagram .lifeline .participant label{color:#032c72}.theme-blue .sequence-diagram .lifeline .line{border-left-color:#032c72}.theme-blue .sequence-diagram .message{border-bottom-color:#032c72}.theme-blue .sequence-diagram .message .name{color:#032c72}.theme-blue .sequence-diagram .message svg polyline{stroke:#032c72}.theme-blue .sequence-diagram .message svg polyline.head{fill:#032c72}.theme-blue .sequence-diagram .occurrence{border-color:#032c72;background-color:#fff}.theme-blue .sequence-diagram .fragment{border-radius:4px;border-color:#042e6e4d}.theme-blue .sequence-diagram .fragment .header .name{background:#042e6e1a}.theme-blue .sequence-diagram .fragment .header label{color:#032c72}.theme-black-white .sequence-diagram .divider .name{border-radius:0;border-color:#000;box-shadow:2px 2px 0 #000}.theme-black-white .sequence-diagram .divider .left,.theme-black-white .sequence-diagram .divider .right{background:#000}.theme-black-white .sequence-diagram .lifeline .participant{border-color:#000;background:#fff;box-shadow:2px 2px 0 #000}.theme-black-white .sequence-diagram .lifeline .line{border-left-color:#0006}.theme-black-white .sequence-diagram .message{border-bottom-color:#000}.theme-black-white .sequence-diagram .message .name{color:#000}.theme-black-white .sequence-diagram .message svg polyline{stroke:#000}.theme-black-white .sequence-diagram .message svg polyline.head{fill:#000}.theme-black-white .sequence-diagram .occurrence{border-color:#000;background-color:#f5f5f5}.theme-black-white .sequence-diagram .fragment{border-color:#0000004d}.theme-black-white .sequence-diagram .fragment .header .name{background:#00000012}.theme-star-uml .sequence-diagram .lifeline .participant{border-color:#b94065;background-color:#fffec8}.theme-star-uml .sequence-diagram .lifeline .line{border-left-color:#b94065}.theme-star-uml .sequence-diagram .message{border-bottom-color:#b94065}.theme-star-uml .sequence-diagram .message svg polyline{stroke:#b94065}.theme-star-uml .sequence-diagram .message svg polyline.head{fill:#b94065}.theme-star-uml .sequence-diagram .occurrence{background-color:#fffec8;border-color:#b94065}.blue-river .sequence-diagram{color:#5452f6}.blue-river .sequence-diagram .life-line-layer .lifeline.actor .participant:before{filter:invert(100%) sepia(0) saturate(0) hue-rotate(93deg) brightness(103%) contrast(103%)}.blue-river .sequence-diagram .life-line-layer .participant{background:#2097f7;box-shadow:4px 4px 0 #83c4f8;border-radius:9px;color:#fff}.blue-river .sequence-diagram .life-line-layer .participant .interface{font-size:.8em}.blue-river .sequence-diagram .life-line-layer .line{border-left-color:#2097f7}.blue-river .sequence-diagram .message-layer .message{border-bottom-color:#2097f7}.blue-river .sequence-diagram .message-layer .message svg.arrow polyline{stroke:#2097f7;fill:#2097f7}.blue-river .sequence-diagram .message-layer .message.self svg.arrow polyline{fill:none}.blue-river .sequence-diagram .message-layer .message.self svg.arrow polyline.head{fill:#2097f7}.blue-river .sequence-diagram .message-layer .occurrence{background:#e5fde8;border-color:#65bf73;box-shadow:4px 4px 0 #93c69b}.blue-river .sequence-diagram .message-layer .fragment{border-color:#2097f7}.blue-river .sequence-diagram .message-layer .fragment .header .name label{display:inline-block;min-width:50px;background:#5452f6;color:#fff;padding:2px 0 2px 10px}.blue-river .sequence-diagram .message-layer .fragment .header .name:after{content:"SO";display:inline-block;background:#5452f6;margin-left:-23px;width:34px;transform:translateY(-2px);height:22px;-webkit-clip-path:polygon(66% 0,100% 0,100% 66%,66% 100%);clip-path:polygon(66% 0,100% 0,100% 66%,66% 100%)}.blue-river .sequence-diagram .message-layer .fragment .header>label{display:inline-block;min-width:50px;font-weight:700;color:#fff;background:#65bf73}.blue-river .sequence-diagram .message-layer .fragment .comments{border-color:inherit}.blue-river .sequence-diagram .message-layer .fragment .divider{border-bottom-color:inherit}@font-face{font-family:Kalam;font-style:normal;font-weight:300;src:local(""),url(/fonts/kalam-v15-latin-300.00bd845e.woff2) format("woff2"),url(/fonts/kalam-v15-latin-300.1c36b0ad.woff) format("woff")}@font-face{font-family:Kalam;font-style:normal;font-weight:400;src:local(""),url(/fonts/kalam-v15-latin-regular.e4d4907f.woff2) format("woff2"),url(/fonts/kalam-v15-latin-regular.4c0c4df4.woff) format("woff")}@font-face{font-family:Kalam;font-style:normal;font-weight:700;src:local(""),url(/fonts/kalam-v15-latin-700.2a87f463.woff2) format("woff2"),url(/fonts/kalam-v15-latin-700.9ec0bbf1.woff) format("woff")}.handwriting .sequence-diagram{font-family:Kalam,cursive;line-height:1}