@plurid/plurid-ui-components-react 0.0.0-21 → 0.0.0-23
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/distribution/components/pluridal/containers/DashboardsRenderer/components/RenderArea/index.d.ts +15 -0
- package/distribution/components/pluridal/containers/DashboardsRenderer/components/RenderArea/styled.d.ts +5 -0
- package/distribution/components/pluridal/containers/DashboardsRenderer/components/Sidebar/components/Selector/index.d.ts +13 -0
- package/distribution/components/pluridal/containers/DashboardsRenderer/components/Sidebar/components/Selector/styled.d.ts +11 -0
- package/distribution/components/pluridal/containers/DashboardsRenderer/components/Sidebar/index.d.ts +21 -0
- package/distribution/components/pluridal/containers/DashboardsRenderer/components/Sidebar/styled.d.ts +20 -0
- package/distribution/components/pluridal/containers/DashboardsRenderer/data.d.ts +18 -0
- package/distribution/components/pluridal/containers/DashboardsRenderer/index.d.ts +24 -0
- package/distribution/components/pluridal/containers/DashboardsRenderer/styled.d.ts +8 -0
- package/distribution/components/pluridal/containers/index.d.ts +1 -0
- package/distribution/components/pluridal/index.d.ts +1 -0
- package/distribution/components/universal/inputs/Dropdown/index.d.ts +1 -0
- package/distribution/index.d.ts +3 -2
- package/distribution/index.es.js +307 -5
- package/distribution/index.es.js.map +1 -1
- package/distribution/index.js +307 -3
- package/distribution/index.js.map +1 -1
- package/package.json +17 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plurid/plurid-ui-components-react",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-23",
|
|
4
4
|
"description": "Plurid User Interface Components for React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"plurid",
|
|
@@ -57,35 +57,35 @@
|
|
|
57
57
|
"styled-components": ">=5"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@babel/core": "^7.
|
|
60
|
+
"@babel/core": "^7.21.8",
|
|
61
61
|
"@plurid/plurid-functions": "^0.0.0-31",
|
|
62
62
|
"@plurid/plurid-functions-react": "^0.0.0-5",
|
|
63
63
|
"@plurid/plurid-icons-react": "^0.0.0-5",
|
|
64
64
|
"@plurid/plurid-themes": "^0.0.0-2",
|
|
65
|
-
"@plurid/plurid-ui-state-react": "^0.0.0-
|
|
66
|
-
"@reduxjs/toolkit": "^1.9.
|
|
67
|
-
"@
|
|
68
|
-
"@types/
|
|
69
|
-
"@types/
|
|
70
|
-
"@types/react
|
|
65
|
+
"@plurid/plurid-ui-state-react": "^0.0.0-11",
|
|
66
|
+
"@reduxjs/toolkit": "^1.9.5",
|
|
67
|
+
"@rollup/plugin-terser": "^0.4.1",
|
|
68
|
+
"@types/jest": "^29.5.1",
|
|
69
|
+
"@types/node": "^18.16.3",
|
|
70
|
+
"@types/react": "^18.2.0",
|
|
71
|
+
"@types/react-dom": "^18.2.1",
|
|
71
72
|
"@types/react-redux": "^7.1.25",
|
|
72
73
|
"@types/styled-components": "^5.1.26",
|
|
73
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
74
|
-
"@typescript-eslint/parser": "^5.
|
|
74
|
+
"@typescript-eslint/eslint-plugin": "^5.59.2",
|
|
75
|
+
"@typescript-eslint/parser": "^5.59.2",
|
|
75
76
|
"@zerollup/ts-transform-paths": "^1.7.18",
|
|
76
|
-
"eslint": "^8.
|
|
77
|
-
"immer": "^
|
|
78
|
-
"jest": "^29.
|
|
77
|
+
"eslint": "^8.39.0",
|
|
78
|
+
"immer": "^10.0.1",
|
|
79
|
+
"jest": "^29.5.0",
|
|
79
80
|
"react": "^18.2.0",
|
|
80
81
|
"react-dom": "^18.2.0",
|
|
81
82
|
"react-redux": "^8.0.5",
|
|
82
83
|
"redux": "^4.2.1",
|
|
83
84
|
"redux-thunk": "^2.4.2",
|
|
84
|
-
"rollup": "^3.
|
|
85
|
-
"rollup-plugin-terser": "^7.0.2",
|
|
85
|
+
"rollup": "^3.21.3",
|
|
86
86
|
"rollup-plugin-typescript2": "^0.34.1",
|
|
87
|
-
"styled-components": "^5.3.
|
|
88
|
-
"ts-jest": "^29.0
|
|
87
|
+
"styled-components": "^5.3.10",
|
|
88
|
+
"ts-jest": "^29.1.0",
|
|
89
89
|
"ttypescript": "^1.5.15",
|
|
90
90
|
"typescript": "==4.7.3"
|
|
91
91
|
}
|