@plurid/plurid-ui-components-react 0.0.0-14 → 0.0.0-17
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/head/Head/index.d.ts +38 -0
- package/distribution/components/pluridal/head/index.d.ts +5 -0
- package/distribution/components/pluridal/index.d.ts +3 -0
- package/distribution/components/pluridal/notifications/Notification/index.d.ts +3 -3
- package/distribution/components/pluridal/notifications/Notifications/index.d.ts +5 -5
- package/distribution/components/pluridal/sitting/SittingTray/components/Sittings/index.d.ts +1 -0
- package/distribution/components/pluridal/sitting/SittingTray/components/StateImage/index.d.ts +1 -0
- package/distribution/components/pluridal/sitting/SittingTray/components/StateLine/index.d.ts +1 -0
- package/distribution/components/pluridal/sitting/SittingTray/components/StateLink/index.d.ts +1 -0
- package/distribution/components/pluridal/sitting/SittingTray/index.d.ts +1 -1
- package/distribution/components/pluridal/toolbars/ToolbarGeneral/index.d.ts +3 -3
- package/distribution/index.es.js +144 -7
- package/distribution/index.es.js.map +1 -1
- package/distribution/index.js +144 -7
- package/distribution/index.js.map +1 -1
- package/package.json +22 -39
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-17",
|
|
4
4
|
"description": "Plurid User Interface Components for React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"plurid",
|
|
@@ -34,17 +34,15 @@
|
|
|
34
34
|
"npm": ">=6"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
|
-
"storybook": "start-storybook -p 9001 -c storybook",
|
|
38
|
-
"build.storybook": "build-storybook -c storybook",
|
|
39
37
|
"test": "jest -c ./configurations/jest.config.js",
|
|
40
38
|
"lint": "eslint -c ./configurations/.eslintrc.js ./source/index.ts",
|
|
41
39
|
"clean": "rm -rf ./distribution",
|
|
42
|
-
"start": "
|
|
43
|
-
"build.clean": "rm -rf `find ./distribution/ -type d -name __tests__`
|
|
44
|
-
"build.development": "
|
|
40
|
+
"start": "pnpm clean && rollup -c ./scripts/rollup.config.js -w",
|
|
41
|
+
"build.clean": "rm -rf `find ./distribution/ -type d -name __tests__`",
|
|
42
|
+
"build.development": "pnpm clean && rollup -c ./scripts/rollup.config.js",
|
|
45
43
|
"build.production": "rollup -c ./scripts/rollup.config.js --environment BUILD:production",
|
|
46
|
-
"build": "
|
|
47
|
-
"prepublishOnly": "
|
|
44
|
+
"build": "pnpm clean && pnpm lint && pnpm test && pnpm build.production && pnpm build.clean",
|
|
45
|
+
"prepublishOnly": "pnpm build"
|
|
48
46
|
},
|
|
49
47
|
"peerDependencies": {
|
|
50
48
|
"@plurid/plurid-functions": "*",
|
|
@@ -52,57 +50,42 @@
|
|
|
52
50
|
"@plurid/plurid-icons-react": "*",
|
|
53
51
|
"@plurid/plurid-themes": "*",
|
|
54
52
|
"@plurid/plurid-ui-state-react": "*",
|
|
53
|
+
"@reduxjs/toolkit": ">=1.8",
|
|
55
54
|
"react": ">=17",
|
|
56
55
|
"react-dom": ">=17",
|
|
57
56
|
"react-redux": ">=7.2",
|
|
58
|
-
"redux": ">=4",
|
|
59
|
-
"redux-thunk": ">=2.3",
|
|
60
57
|
"styled-components": ">=5"
|
|
61
58
|
},
|
|
62
59
|
"devDependencies": {
|
|
63
|
-
"@babel/core": "^7.18.
|
|
64
|
-
"@plurid/plurid-functions": "^0.0.0-
|
|
60
|
+
"@babel/core": "^7.18.13",
|
|
61
|
+
"@plurid/plurid-functions": "^0.0.0-30",
|
|
65
62
|
"@plurid/plurid-functions-react": "^0.0.0-5",
|
|
66
63
|
"@plurid/plurid-icons-react": "^0.0.0-5",
|
|
67
64
|
"@plurid/plurid-themes": "^0.0.0-2",
|
|
68
|
-
"@plurid/plurid-ui-state-react": "^0.0.0-
|
|
69
|
-
"@
|
|
70
|
-
"@
|
|
71
|
-
"@
|
|
72
|
-
"@
|
|
73
|
-
"@storybook/addons": "^6.5.9",
|
|
74
|
-
"@storybook/react": "^6.5.9",
|
|
75
|
-
"@svgr/rollup": "^6.3.1",
|
|
76
|
-
"@types/enzyme": "^3.10.12",
|
|
77
|
-
"@types/enzyme-adapter-react-16": "^1.0.6",
|
|
78
|
-
"@types/jest": "^28.1.6",
|
|
79
|
-
"@types/node": "^18.6.3",
|
|
80
|
-
"@types/react": "^18.0.15",
|
|
65
|
+
"@plurid/plurid-ui-state-react": "^0.0.0-7",
|
|
66
|
+
"@reduxjs/toolkit": "^1.8.5",
|
|
67
|
+
"@types/jest": "^28.1.7",
|
|
68
|
+
"@types/node": "^18.7.9",
|
|
69
|
+
"@types/react": "^18.0.17",
|
|
81
70
|
"@types/react-dom": "^18.0.6",
|
|
82
71
|
"@types/react-redux": "^7.1.24",
|
|
83
|
-
"@types/styled-components": "^5.1.
|
|
84
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
85
|
-
"@typescript-eslint/parser": "^5.
|
|
72
|
+
"@types/styled-components": "^5.1.26",
|
|
73
|
+
"@typescript-eslint/eslint-plugin": "^5.33.1",
|
|
74
|
+
"@typescript-eslint/parser": "^5.33.1",
|
|
86
75
|
"@zerollup/ts-transform-paths": "^1.7.18",
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"enzyme": "^3.11.0",
|
|
90
|
-
"enzyme-adapter-react-16": "^1.15.6",
|
|
91
|
-
"eslint": "^8.21.0",
|
|
76
|
+
"eslint": "^8.22.0",
|
|
77
|
+
"immer": "^9.0.15",
|
|
92
78
|
"jest": "^28.1.3",
|
|
93
79
|
"react": "==17.0.2",
|
|
94
|
-
"react-docgen-typescript-loader": "^3.7.2",
|
|
95
|
-
"react-docgen-typescript-webpack-plugin": "^1.1.0",
|
|
96
80
|
"react-dom": "==17.0.2",
|
|
97
81
|
"react-redux": "^8.0.2",
|
|
98
|
-
"react-test-renderer": "==17.0.2",
|
|
99
82
|
"redux": "^4.2.0",
|
|
100
83
|
"redux-thunk": "^2.4.1",
|
|
101
|
-
"rollup": "^2.
|
|
84
|
+
"rollup": "^2.78.1",
|
|
102
85
|
"rollup-plugin-terser": "^7.0.2",
|
|
103
|
-
"rollup-plugin-typescript2": "^0.
|
|
86
|
+
"rollup-plugin-typescript2": "^0.33.0",
|
|
104
87
|
"styled-components": "^5.3.5",
|
|
105
|
-
"ts-jest": "^28.0.
|
|
88
|
+
"ts-jest": "^28.0.8",
|
|
106
89
|
"ttypescript": "^1.5.13",
|
|
107
90
|
"typescript": "^4.7.4"
|
|
108
91
|
}
|