@deix/rossini-core 0.2.1 → 0.3.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.
- package/lib/package.json +19 -15
- package/lib/src/components/display/Accordion/Accordion.d.ts +15 -0
- package/lib/src/components/display/Accordion/Accordion.d.ts.map +1 -0
- package/lib/src/components/display/Accordion/Accordion.js +39 -0
- package/lib/src/components/display/index.d.ts +3 -0
- package/lib/src/components/display/index.d.ts.map +1 -0
- package/lib/src/components/display/index.js +1 -0
- package/lib/src/components/index.d.ts +2 -0
- package/lib/src/components/index.d.ts.map +1 -1
- package/lib/src/components/index.js +1 -0
- package/lib/src/index.d.ts +2 -2
- package/lib/src/index.d.ts.map +1 -1
- package/lib/src/index.js +1 -1
- package/lib/tsconfig-lib.tsbuildinfo +1 -1
- package/package.json +19 -15
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deix/rossini-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"main": "lib/src/index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "https://github.com/
|
|
7
|
+
"url": "https://github.com/deix-ai/rossini-core.git"
|
|
8
8
|
},
|
|
9
9
|
"license": "UNLICENSED",
|
|
10
10
|
"private": false,
|
|
@@ -24,11 +24,8 @@
|
|
|
24
24
|
"react-dom": "^18.2.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@babel/core": "^7.20.
|
|
28
|
-
"@storybook/addon-actions": "^6.5.15",
|
|
27
|
+
"@babel/core": "^7.20.12",
|
|
29
28
|
"@storybook/addon-essentials": "^6.5.15",
|
|
30
|
-
"@storybook/addon-interactions": "^6.5.15",
|
|
31
|
-
"@storybook/addon-links": "^6.5.15",
|
|
32
29
|
"@storybook/builder-webpack5": "^6.5.15",
|
|
33
30
|
"@storybook/manager-webpack5": "^6.5.15",
|
|
34
31
|
"@storybook/react": "^6.5.15",
|
|
@@ -36,17 +33,17 @@
|
|
|
36
33
|
"@types/node": "18.11.18",
|
|
37
34
|
"@types/react": "18.0.26",
|
|
38
35
|
"@types/react-dom": "18.0.10",
|
|
39
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
40
|
-
"babel-loader": "^
|
|
36
|
+
"@typescript-eslint/eslint-plugin": "^5.48.1",
|
|
37
|
+
"babel-loader": "^9.1.2",
|
|
38
|
+
"commitizen": "^4.2.6",
|
|
39
|
+
"cz-conventional-changelog": "^3.3.0",
|
|
41
40
|
"eslint": "8.31.0",
|
|
42
41
|
"eslint-config-next": "^13.1.1",
|
|
43
|
-
"eslint-config-prettier": "^8.
|
|
42
|
+
"eslint-config-prettier": "^8.6.0",
|
|
44
43
|
"eslint-plugin-prettier": "^4.2.1",
|
|
45
|
-
"eslint-plugin-storybook": "^0.6.
|
|
44
|
+
"eslint-plugin-storybook": "^0.6.10",
|
|
46
45
|
"react": "18.2.0",
|
|
47
|
-
"react-docgen-typescript": "^2.2.2",
|
|
48
46
|
"react-dom": "18.2.0",
|
|
49
|
-
"storybook-addon-locale": "^0.3.6",
|
|
50
47
|
"storybook-addon-next-router": "^4.0.2",
|
|
51
48
|
"typescript": "4.9.4"
|
|
52
49
|
},
|
|
@@ -54,16 +51,23 @@
|
|
|
54
51
|
"@emotion/react": "^11.10.5",
|
|
55
52
|
"@emotion/styled": "^11.10.5",
|
|
56
53
|
"@fontsource/raleway": "^4.5.11",
|
|
57
|
-
"@material-ui/icons": "^4.11.3",
|
|
58
54
|
"@mui/icons-material": "^5.11.0",
|
|
59
|
-
"@mui/material": "^5.11.
|
|
55
|
+
"@mui/material": "^5.11.4",
|
|
60
56
|
"@uiball/loaders": "^1.2.6",
|
|
61
57
|
"axios": "^1.2.2",
|
|
62
58
|
"next": "13.1.1",
|
|
63
59
|
"next-themes": "^0.2.1",
|
|
64
60
|
"react-query": "^3.39.2"
|
|
65
61
|
},
|
|
62
|
+
"resolutions": {
|
|
63
|
+
"@storybook/react-docgen-typescript-plugin": "npm:react-docgen-typescript-plugin@1.0.2"
|
|
64
|
+
},
|
|
66
65
|
"files": [
|
|
67
66
|
"lib/**/*"
|
|
68
|
-
]
|
|
67
|
+
],
|
|
68
|
+
"config": {
|
|
69
|
+
"commitizen": {
|
|
70
|
+
"path": "./node_modules/cz-conventional-changelog"
|
|
71
|
+
}
|
|
72
|
+
}
|
|
69
73
|
}
|