ingred-ui 9.3.2 → 9.4.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/dist/components/Icon/Icon.d.ts +1 -1
- package/dist/components/Icon/internal/BidStrapIcon/index.d.ts +4 -0
- package/dist/components/Icon/internal/DataStrapIcon/index.d.ts +4 -0
- package/dist/components/Icon/internal/FluctIcon/index.d.ts +4 -0
- package/dist/components/Select/internal/ClearIndicator/ClearIndicator.d.ts +0 -1
- package/dist/components/Select/internal/DropdownIndicator/DropdownIndicator.d.ts +0 -1
- package/dist/components/Select/internal/MultiValueRemove/MultiValueRemove.d.ts +0 -1
- package/dist/components/Toast/ToastProvider/internal/ToastContainer/styled.d.ts +0 -1
- package/dist/index.es.js +499 -51
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +499 -51
- package/dist/index.js.map +1 -1
- package/dist/lib/react-toast-notification/src/icons.d.ts +0 -1
- package/dist/utils/renderWithThemeProvider.d.ts +0 -1
- package/package.json +14 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ingred-ui",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.4.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "voyagegroup",
|
|
6
6
|
"license": "MIT",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@rollup/plugin-commonjs": "21.0.1",
|
|
42
|
-
"@rollup/plugin-node-resolve": "13.
|
|
42
|
+
"@rollup/plugin-node-resolve": "13.1.3",
|
|
43
43
|
"@rollup/plugin-typescript": "8.3.0",
|
|
44
44
|
"@rollup/plugin-url": "6.1.0",
|
|
45
45
|
"@storybook/addon-console": "1.2.3",
|
|
@@ -50,41 +50,42 @@
|
|
|
50
50
|
"@svgr/rollup": "6.1.2",
|
|
51
51
|
"@testing-library/jest-dom": "5.16.1",
|
|
52
52
|
"@testing-library/react": "12.1.2",
|
|
53
|
-
"@types/jest": "27.0
|
|
53
|
+
"@types/jest": "27.4.0",
|
|
54
54
|
"@types/moment": "2.13.0",
|
|
55
|
-
"@types/react": "17.0.
|
|
55
|
+
"@types/react": "17.0.38",
|
|
56
56
|
"@types/react-dates": "21.8.3",
|
|
57
57
|
"@types/react-dom": "17.0.11",
|
|
58
58
|
"@types/react-transition-group": "4.4.4",
|
|
59
|
-
"@types/styled-components": "5.1.
|
|
60
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
61
|
-
"@typescript-eslint/parser": "5.
|
|
59
|
+
"@types/styled-components": "5.1.20",
|
|
60
|
+
"@typescript-eslint/eslint-plugin": "5.10.0",
|
|
61
|
+
"@typescript-eslint/parser": "5.10.0",
|
|
62
62
|
"cross-env": "7.0.3",
|
|
63
|
-
"eslint": "8.
|
|
63
|
+
"eslint": "8.5.0",
|
|
64
64
|
"eslint-config-prettier": "8.3.0",
|
|
65
|
-
"eslint-plugin-import": "2.25.
|
|
66
|
-
"eslint-plugin-jest": "25.
|
|
65
|
+
"eslint-plugin-import": "2.25.4",
|
|
66
|
+
"eslint-plugin-jest": "25.7.0",
|
|
67
67
|
"eslint-plugin-mdx": "1.16.0",
|
|
68
68
|
"eslint-plugin-prettier": "4.0.0",
|
|
69
69
|
"eslint-plugin-react": "7.28.0",
|
|
70
70
|
"eslint-plugin-react-hooks": "4.3.0",
|
|
71
|
-
"jest": "27.4.
|
|
71
|
+
"jest": "27.4.7",
|
|
72
72
|
"prettier": "2.5.1",
|
|
73
73
|
"react": "17.0.2",
|
|
74
74
|
"react-dom": "17.0.2",
|
|
75
|
-
"rollup": "2.
|
|
75
|
+
"rollup": "2.63.0",
|
|
76
76
|
"rollup-plugin-imagemin": "0.5.0",
|
|
77
77
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
78
78
|
"rollup-plugin-postcss": "4.0.2",
|
|
79
79
|
"scaffdog": "1.1.0",
|
|
80
80
|
"styled-components": "5.3.3",
|
|
81
|
-
"ts-jest": "27.1.
|
|
81
|
+
"ts-jest": "27.1.3",
|
|
82
82
|
"typescript": "4.5.4"
|
|
83
83
|
},
|
|
84
84
|
"files": [
|
|
85
85
|
"dist"
|
|
86
86
|
],
|
|
87
87
|
"resolutions": {
|
|
88
|
+
"colors": "1.4.0",
|
|
88
89
|
"react": "17.0.2",
|
|
89
90
|
"react-dom": "17.0.2"
|
|
90
91
|
}
|