@redsift/popovers 7.5.1 → 7.6.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/CONTRIBUTING.md +1 -1
- package/index.d.ts +123 -1
- package/index.js +1372 -103
- package/index.js.map +1 -1
- package/package.json +8 -9
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/redsift/design-system/issues"
|
|
7
7
|
},
|
|
8
|
-
"description": "Popover component library as part of Red Sift's Design System. This package is based on @floating-ui/react.",
|
|
8
|
+
"description": "Popover component library as part of Red Sift's Design System. This package is based on @floating-ui/react and react-toastify.",
|
|
9
9
|
"homepage": "https://github.com/redsift/design-system",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"main": "index.js",
|
|
@@ -28,14 +28,13 @@
|
|
|
28
28
|
"test": "NODE_ENV=test jest --verbose"
|
|
29
29
|
},
|
|
30
30
|
"types": "index.d.ts",
|
|
31
|
-
"version": "7.
|
|
31
|
+
"version": "7.6.0",
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@floating-ui/react": "^0.19.2",
|
|
34
34
|
"@react-aria/button": "^3.6.4",
|
|
35
|
-
"@
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"classnames": "^2.3.1"
|
|
35
|
+
"@redsift/icons": "^7.6.0",
|
|
36
|
+
"classnames": "^2.3.1",
|
|
37
|
+
"react-toastify": "^9.1.1"
|
|
39
38
|
},
|
|
40
39
|
"devDependencies": {
|
|
41
40
|
"@babel/core": "^7.8.3",
|
|
@@ -66,6 +65,7 @@
|
|
|
66
65
|
"@types/jest": "^27.5.1",
|
|
67
66
|
"@types/react": "18.0.12",
|
|
68
67
|
"@types/react-dom": "18.0.5",
|
|
68
|
+
"@types/react-transition-group": "^4.4.5",
|
|
69
69
|
"@types/styled-components": "^5.1.25",
|
|
70
70
|
"@typescript-eslint/eslint-plugin": "^5.48.0",
|
|
71
71
|
"@typescript-eslint/parser": "^5.26.0",
|
|
@@ -89,13 +89,12 @@
|
|
|
89
89
|
"rollup-plugin-ts-paths-resolve": "^1.7.1",
|
|
90
90
|
"rollup-plugin-typescript-paths": "^1.3.1",
|
|
91
91
|
"storybook-addon-styled-component-theme": "^2.0.0",
|
|
92
|
-
"styled-components": "^5.3.5",
|
|
93
92
|
"ts-jest": "^28.0.3"
|
|
94
93
|
},
|
|
95
94
|
"peerDependencies": {
|
|
96
95
|
"react": "18",
|
|
97
96
|
"react-dom": "18",
|
|
98
|
-
"styled-components": "^5.3.
|
|
97
|
+
"styled-components": "^5.3.5"
|
|
99
98
|
},
|
|
100
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "2916bb0d5caa50c6db448183473328fb40927cd5"
|
|
101
100
|
}
|