@camunda/play 1.5.0 → 1.5.1

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 (3) hide show
  1. package/build/index.js +56998 -50939
  2. package/build/play.js +3 -2
  3. package/package.json +117 -117
package/build/play.js CHANGED
@@ -1,4 +1,5 @@
1
- import { P as e } from "./index.js";
1
+ import { a as e, P } from "./index.js";
2
2
  export {
3
- e as PlayMode
3
+ e as C8PlayMode,
4
+ P as PlayMode
4
5
  };
package/package.json CHANGED
@@ -1,119 +1,119 @@
1
1
  {
2
- "name": "@camunda/play",
3
- "version": "1.5.0",
4
- "type": "module",
5
- "scripts": {
6
- "start": "vite",
7
- "build": "tsc && vite build",
8
- "build:dev": "tsc && vite build --mode development",
9
- "build:watch": "tsc-watch --onSuccess \"yarn publish-local\"",
10
- "build:e2e": "yarn build --mode e2e",
11
- "playwright": "playwright test",
12
- "test:e2e": "yarn playwright e2e/tests",
13
- "test:e2e:ci": "IS_E2E=true yarn playwright e2e/tests",
14
- "eslint": "eslint .",
15
- "lint": "yarn tsc && yarn eslint",
16
- "analyze-bundle": "yarn build && source-map-explorer build/* --no-border-checks",
17
- "test": "vitest",
18
- "coverage": "yarn test run --coverage --changed",
19
- "fix:prettier": "prettier --write \"**/*.{ts,tsx}\"",
20
- "publish-local": "yarn build:dev && npx yalc push --sig"
21
- },
22
- "peerDependencies": {
23
- "@bpmn-io/element-template-icon-renderer": "0.x",
24
- "@bpmn-io/form-js": "1.x",
25
- "@camunda/improved-canvas": "1.x",
26
- "@carbon/react": "1.x",
27
- "@monaco-editor/react": "4.x",
28
- "bpmn-moddle": "8.x || 9.x",
29
- "camunda-bpmn-js": "3.x || 4.x",
30
- "diagram-js-grid": "1.x",
31
- "diagram-js-minimap": "4.x",
32
- "lodash": "4.x",
33
- "mobx": "6.x",
34
- "mobx-react": "7.x",
35
- "monaco-editor": "0.x",
36
- "react": "18.x",
37
- "react-dom": "18.x",
38
- "react-router-dom": "5.x || 6.x",
39
- "styled-components": "6.x"
40
- },
41
- "devDependencies": {
42
- "@bpmn-io/element-template-icon-renderer": "0.5.2",
43
- "@bpmn-io/form-js": "1.7.3",
44
- "@camunda/form-js-assistant-module": "0.5.0",
45
- "@camunda/form-playground": "0.13.0",
46
- "@camunda/improved-canvas": "1.3.1",
47
- "@carbon/react": "1.53.0",
48
- "@monaco-editor/react": "4.6.0",
49
- "@playwright/test": "1.42.1",
50
- "@testing-library/jest-dom": "6.4.2",
51
- "@testing-library/react": "14.2.2",
52
- "@testing-library/react-hooks": "8.0.1",
53
- "@testing-library/user-event": "14.5.2",
54
- "@types/bpmn-moddle": "5.1.11",
55
- "@types/carbon-components-react": "7.55.10",
56
- "@types/jest": "29.5.12",
57
- "@types/lodash": "4.17.0",
58
- "@types/mixpanel-browser": "2.49.0",
59
- "@types/node": "20.11.30",
60
- "@types/prop-types": "15.7.12",
61
- "@types/react": "18.2.67",
62
- "@types/react-dom": "18.2.22",
63
- "@typescript-eslint/eslint-plugin": "7.3.1",
64
- "@typescript-eslint/parser": "7.3.1",
65
- "@vitejs/plugin-react": "4.2.1",
66
- "@vitest/coverage-istanbul": "1.4.0",
67
- "@vitest/ui": "1.4.0",
68
- "bpmn-js-headless": "0.1.0",
69
- "bpmn-moddle": "9.0.1",
70
- "camunda-bpmn-js": "4.3.2",
71
- "diagram-js-grid": "1.0.0",
72
- "diagram-js-minimap": "4.1.0",
73
- "eslint": "8.57.0",
74
- "eslint-config-prettier": "9.1.0",
75
- "eslint-plugin-camunda-licensed": "0.4.6",
76
- "eslint-plugin-prettier": "5.1.3",
77
- "eslint-plugin-react-hooks": "4.6.0",
78
- "eslint-plugin-react-refresh": "0.4.6",
79
- "eslint-plugin-testing-library": "6.2.0",
80
- "jsdom": "24.0.0",
81
- "lodash": "4.17.21",
82
- "mixpanel-browser": "2.49.0",
83
- "mobx": "6.12.0",
84
- "mobx-react": "7.6.0",
85
- "monaco-editor": "0.47.0",
86
- "prettier": "3.2.5",
87
- "prop-types": "15.8.1",
88
- "react": "18.2.0",
89
- "react-dom": "18.2.0",
90
- "react-router-dom": "6.20.1",
91
- "sass": "1.72.0",
92
- "source-map-explorer": "2.5.3",
93
- "styled-components": "6.1.1",
94
- "ts-toolbelt": "9.6.0",
95
- "tsc-watch": "6.0.4",
96
- "typescript": "5.4.3",
97
- "vite": "5.2.7",
98
- "vite-plugin-svgr": "4.2.0",
99
- "vite-svg-loader": "5.1.0",
100
- "vite-tsconfig-paths": "4.3.2",
101
- "vitest": "1.4.0"
102
- },
103
- "lint-staged": {
104
- "*": [
105
- "prettier --write"
106
- ],
107
- "*.{js,jsx,ts,tsx}": [
108
- "yarn lint"
109
- ]
110
- },
111
- "description": "Camunda Play",
112
- "main": "./build/play.js",
113
- "files": [
114
- "/build"
115
- ],
116
- "author": "Camunda",
117
- "license": "Apache-2.0",
118
- "packageManager": "yarn@1.22.22"
2
+ "name": "@camunda/play",
3
+ "version": "1.5.1",
4
+ "type": "module",
5
+ "scripts": {
6
+ "start": "vite",
7
+ "build": "tsc && vite build",
8
+ "build:dev": "tsc && vite build --mode development",
9
+ "build:watch": "tsc-watch --onSuccess \"yarn publish-local\"",
10
+ "build:e2e": "yarn build --mode e2e",
11
+ "playwright": "playwright test",
12
+ "test:e2e": "yarn playwright e2e/tests",
13
+ "test:e2e:ci": "IS_E2E=true yarn playwright e2e/tests",
14
+ "eslint": "eslint .",
15
+ "lint": "yarn tsc && yarn eslint",
16
+ "analyze-bundle": "yarn build && source-map-explorer build/* --no-border-checks",
17
+ "test": "vitest",
18
+ "coverage": "yarn test run --coverage --changed",
19
+ "fix:prettier": "prettier --write \"**/*.{ts,tsx}\"",
20
+ "publish-local": "yarn build:dev && npx yalc push --sig"
21
+ },
22
+ "peerDependencies": {
23
+ "@bpmn-io/element-template-icon-renderer": "0.x",
24
+ "@bpmn-io/form-js": "1.x",
25
+ "@camunda/improved-canvas": "1.x",
26
+ "@carbon/react": "1.x",
27
+ "@monaco-editor/react": "4.x",
28
+ "bpmn-moddle": "8.x || 9.x",
29
+ "camunda-bpmn-js": "3.x || 4.x",
30
+ "diagram-js-grid": "1.x",
31
+ "diagram-js-minimap": "4.x",
32
+ "lodash": "4.x",
33
+ "mobx": "6.x",
34
+ "mobx-react": "7.x",
35
+ "monaco-editor": "0.x",
36
+ "react": "18.x",
37
+ "react-dom": "18.x",
38
+ "react-router-dom": "5.x || 6.x",
39
+ "styled-components": "6.x"
40
+ },
41
+ "devDependencies": {
42
+ "@bpmn-io/element-template-icon-renderer": "0.5.2",
43
+ "@bpmn-io/form-js": "1.8.4",
44
+ "@camunda/form-js-assistant-module": "0.5.0",
45
+ "@camunda/form-playground": "0.14.0",
46
+ "@camunda/improved-canvas": "1.3.2",
47
+ "@carbon/react": "1.55.0",
48
+ "@monaco-editor/react": "4.6.0",
49
+ "@playwright/test": "1.43.1",
50
+ "@testing-library/jest-dom": "6.4.2",
51
+ "@testing-library/react": "15.0.2",
52
+ "@testing-library/react-hooks": "8.0.1",
53
+ "@testing-library/user-event": "14.5.2",
54
+ "@types/bpmn-moddle": "5.1.11",
55
+ "@types/carbon-components-react": "7.55.10",
56
+ "@types/jest": "29.5.12",
57
+ "@types/lodash": "4.17.0",
58
+ "@types/mixpanel-browser": "2.49.0",
59
+ "@types/node": "20.12.7",
60
+ "@types/prop-types": "15.7.12",
61
+ "@types/react": "18.2.79",
62
+ "@types/react-dom": "18.2.25",
63
+ "@typescript-eslint/eslint-plugin": "7.7.0",
64
+ "@typescript-eslint/parser": "7.7.0",
65
+ "@vitejs/plugin-react": "4.2.1",
66
+ "@vitest/coverage-istanbul": "1.5.0",
67
+ "@vitest/ui": "1.5.0",
68
+ "bpmn-js-headless": "0.1.0",
69
+ "bpmn-moddle": "9.0.1",
70
+ "camunda-bpmn-js": "4.5.0",
71
+ "diagram-js-grid": "1.0.0",
72
+ "diagram-js-minimap": "4.1.0",
73
+ "eslint": "8.57.0",
74
+ "eslint-config-prettier": "9.1.0",
75
+ "eslint-plugin-camunda-licensed": "0.4.6",
76
+ "eslint-plugin-prettier": "5.1.3",
77
+ "eslint-plugin-react-hooks": "4.6.0",
78
+ "eslint-plugin-react-refresh": "0.4.6",
79
+ "eslint-plugin-testing-library": "6.2.1",
80
+ "jsdom": "24.0.0",
81
+ "lodash": "4.17.21",
82
+ "mixpanel-browser": "2.49.0",
83
+ "mobx": "6.12.3",
84
+ "mobx-react": "7.6.0",
85
+ "monaco-editor": "0.47.0",
86
+ "prettier": "3.2.5",
87
+ "prop-types": "15.8.1",
88
+ "react": "18.2.0",
89
+ "react-dom": "18.2.0",
90
+ "react-router-dom": "6.20.1",
91
+ "sass": "1.75.0",
92
+ "source-map-explorer": "2.5.3",
93
+ "styled-components": "6.1.8",
94
+ "ts-toolbelt": "9.6.0",
95
+ "tsc-watch": "6.2.0",
96
+ "typescript": "5.4.5",
97
+ "vite": "5.2.9",
98
+ "vite-plugin-svgr": "4.2.0",
99
+ "vite-svg-loader": "5.1.0",
100
+ "vite-tsconfig-paths": "4.3.2",
101
+ "vitest": "1.5.0"
102
+ },
103
+ "lint-staged": {
104
+ "*": [
105
+ "prettier --write"
106
+ ],
107
+ "*.{js,jsx,ts,tsx}": [
108
+ "yarn lint"
109
+ ]
110
+ },
111
+ "description": "Camunda Play",
112
+ "main": "./build/play.js",
113
+ "files": [
114
+ "/build"
115
+ ],
116
+ "author": "Camunda",
117
+ "license": "Apache-2.0",
118
+ "packageManager": "yarn@1.22.22"
119
119
  }