@react-md/states
Advanced tools
Comparing version 2.8.2 to 2.8.3
@@ -6,2 +6,19 @@ # Change Log | ||
## [2.8.3](https://github.com/mlaursen/react-md/compare/v2.8.2...v2.8.3) (2021-05-18) | ||
### Bug Fixes | ||
* **@react-md/states:** Added missing `classnames` dependency ([a7a2012](https://github.com/mlaursen/react-md/commit/a7a2012d59724ad381109898e9ee64a8b31d81a6)), closes [#1155](https://github.com/mlaursen/react-md/issues/1155) | ||
### Documentation | ||
* **react-md.dev:** updated tsdoc to work with `typedoc` ([cf54c35](https://github.com/mlaursen/react-md/commit/cf54c359268332245d1dad8a8d91e0476cd8cb33)) | ||
## [2.8.2](https://github.com/mlaursen/react-md/compare/v2.8.1...v2.8.2) (2021-04-23) | ||
@@ -8,0 +25,0 @@ |
@@ -0,1 +1,4 @@ | ||
/** | ||
* @module @react-md/states | ||
*/ | ||
export * from "./useInteractionStates"; | ||
@@ -2,0 +5,0 @@ export * from "./StatesConfig"; |
@@ -0,3 +1,6 @@ | ||
/** | ||
* @module @react-md/states | ||
*/ | ||
export * from "./useInteractionStates"; | ||
export * from "./StatesConfig"; | ||
export * from "./ripples/constants"; |
@@ -13,2 +13,5 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
/** | ||
* @module @react-md/states | ||
*/ | ||
__exportStar(require("./useInteractionStates"), exports); | ||
@@ -15,0 +18,0 @@ __exportStar(require("./StatesConfig"), exports); |
{ | ||
"name": "@react-md/states", | ||
"version": "2.8.2", | ||
"version": "2.8.3", | ||
"description": "A package for adding the different focus, hover, selected, active, etc states to elements", | ||
@@ -38,5 +38,6 @@ "main": "./lib/index.js", | ||
"dependencies": { | ||
"@react-md/theme": "^2.8.2", | ||
"@react-md/transition": "^2.8.2", | ||
"@react-md/utils": "^2.8.2", | ||
"@react-md/theme": "^2.8.3", | ||
"@react-md/transition": "^2.8.3", | ||
"@react-md/utils": "^2.8.3", | ||
"classnames": "^2.3.1", | ||
"react-transition-group": "^4.4.1" | ||
@@ -57,3 +58,3 @@ }, | ||
}, | ||
"gitHead": "c69105066207d23a3323299638ceeecd4bc1162e" | ||
"gitHead": "c02bfcf9eca5196f9b9c415bdf6d81cabd08a980" | ||
} |
@@ -0,3 +1,6 @@ | ||
/** | ||
* @module @react-md/states | ||
*/ | ||
export * from "./useInteractionStates"; | ||
export * from "./StatesConfig"; | ||
export * from "./ripples/constants"; |
@@ -0,3 +1,6 @@ | ||
/** | ||
* @module @react-md/states | ||
*/ | ||
export * from "./useInteractionStates"; | ||
export * from "./StatesConfig"; | ||
export * from "./ripples/constants"; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
329834
5143
7
+ Addedclassnames@^2.3.1
Updated@react-md/theme@^2.8.3
Updated@react-md/transition@^2.8.3
Updated@react-md/utils@^2.8.3