robin-component 1.0.20 → 1.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +36 -36
- package/dist/index.mjs.map +1 -1
- package/index.js +53 -53
- package/index.js.map +1 -1
- package/package.json +38 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "robin-component",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.21",
|
|
4
4
|
"description": "Robin Component",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -12,10 +12,9 @@
|
|
|
12
12
|
"author": "",
|
|
13
13
|
"license": "ISC",
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"rollup-plugin-postcss": "^4.0.2",
|
|
15
|
+
"@babel/core": "^7.22.5",
|
|
16
|
+
"@babel/preset-env": "^7.26.3",
|
|
17
|
+
"@babel/preset-react": "^7.26.3",
|
|
19
18
|
"@rollup/plugin-babel": "^6.0.4",
|
|
20
19
|
"@rollup/plugin-commonjs": "^28.0.2",
|
|
21
20
|
"@rollup/plugin-image": "^3.0.3",
|
|
@@ -24,17 +23,41 @@
|
|
|
24
23
|
"@rollup/plugin-replace": "^6.0.2",
|
|
25
24
|
"@rollup/plugin-terser": "^0.4.4",
|
|
26
25
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
26
|
+
"react": "^18.3.1",
|
|
27
|
+
"react-bootstrap": "^2.10.2",
|
|
28
|
+
"rollup": "^4.18.1",
|
|
29
|
+
"rollup-plugin-dts": "^6.1.1",
|
|
30
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
31
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
32
|
+
"tslib": "^2.6.3",
|
|
27
33
|
"typescript": "^5.5.3",
|
|
28
|
-
"@babel/core": "^7.22.5",
|
|
29
|
-
"@babel/preset-env": "^7.26.3",
|
|
30
|
-
"@babel/preset-react": "^7.26.3",
|
|
31
34
|
"@babel/plugin-transform-runtime": "^7.0.0",
|
|
35
|
+
"@testing-library/dom": "^10.4.0",
|
|
36
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
37
|
+
"@testing-library/react": "^16.0.1",
|
|
38
|
+
"@vitejs/plugin-react": "^4.6.0",
|
|
39
|
+
"autoprefixer": "^10.4.21",
|
|
32
40
|
"babel-jest": "^29.7.0",
|
|
33
|
-
"babel-plugin-transform-vite-meta-env": "^1.0.3"
|
|
41
|
+
"babel-plugin-transform-vite-meta-env": "^1.0.3",
|
|
42
|
+
"eslint": "^8.57.0",
|
|
43
|
+
"eslint-config-prettier": "^9.1.0",
|
|
44
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
45
|
+
"eslint-plugin-react": "^7.34.1",
|
|
46
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
47
|
+
"identity-obj-proxy": "^3.0.0",
|
|
48
|
+
"jest": "^29.7.0",
|
|
49
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
50
|
+
"jest-transform-stub": "^2.0.0",
|
|
51
|
+
"postcss": "^8.4.38",
|
|
52
|
+
"postcss-prefix-selector": "^1.16.1",
|
|
53
|
+
"prettier": "3.2.5",
|
|
54
|
+
"react-dom": "^18.2.0",
|
|
55
|
+
"sass": "^1.72.0",
|
|
56
|
+
"sonar-scanner": "^3.1.0",
|
|
57
|
+
"vite": "^5.2.6",
|
|
58
|
+
"vite-plugin-svgr": "^4.2.0"
|
|
34
59
|
},
|
|
35
60
|
"dependencies": {
|
|
36
|
-
"@babel/plugin-transform-runtime": "^7.26.8",
|
|
37
|
-
"@babel/runtime": "^7.26.7",
|
|
38
61
|
"@phosphor-icons/react": "^2.1.6",
|
|
39
62
|
"axios": "^1.7.2",
|
|
40
63
|
"bpmn-js": "^17.9.2",
|
|
@@ -72,14 +95,12 @@
|
|
|
72
95
|
"path-intersection": "^1.0.0",
|
|
73
96
|
"postinstall-postinstall": "^2.1.0",
|
|
74
97
|
"prop-types": "^15.8.1",
|
|
75
|
-
"react": "^18.2.0",
|
|
76
98
|
"react-bootstrap": "^2.10.4",
|
|
77
99
|
"react-bootstrap-table-next": "^4.0.3",
|
|
78
100
|
"react-bootstrap-table2-paginator": "^2.1.2",
|
|
79
101
|
"react-bootstrap-table2-toolkit": "^2.1.3",
|
|
80
102
|
"react-datepicker": "^7.3.0",
|
|
81
103
|
"react-datetime-picker": "^6.0.1",
|
|
82
|
-
"react-dom": "^18.2.0",
|
|
83
104
|
"react-drag-reorder": "^1.2.0",
|
|
84
105
|
"react-dropzone": "^14.2.3",
|
|
85
106
|
"react-redux": "^9.1.0",
|
|
@@ -90,5 +111,9 @@
|
|
|
90
111
|
"simplebar-react": "^3.2.4",
|
|
91
112
|
"vite-plugin-qiankun-lite": "^1.1.1",
|
|
92
113
|
"zeebe-bpmn-moddle": "^1.6.0"
|
|
114
|
+
},
|
|
115
|
+
"peerDependencies": {
|
|
116
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
117
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
93
118
|
}
|
|
94
119
|
}
|