@artsy/dismissible 0.3.0 → 0.3.2

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/CHANGELOG.md CHANGED
@@ -1,8 +1,8 @@
1
- # v0.3.0 (Fri Dec 22 2023)
1
+ # v0.3.2 (Fri Dec 22 2023)
2
2
 
3
- #### 🚀 Enhancement
3
+ #### ⚠️ Pushed to `main`
4
4
 
5
- - docs(readme): Add readme docs [#7](https://github.com/artsy/dismissible/pull/7) ([@damassi](https://github.com/damassi))
5
+ - docs(readme): Update ([@damassi](https://github.com/damassi))
6
6
 
7
7
  #### Authors: 1
8
8
 
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @artsy/dismissible
2
2
 
3
- A package that stores dismissible key/value entries in localStorage, which can be used in apps that require progressive onboarding and the like.
3
+ Store dismissible key/value entries in localStorage, which can be used for things like onboarding, notifications and more.
4
4
 
5
5
  ## Setup and Use
6
6
 
@@ -45,7 +45,11 @@ const NewFeatureAlert = () => {
45
45
  return <>{children}</>
46
46
  }
47
47
 
48
- return <Popover message="Check out this new feature!">{children}</Popover>
48
+ return (
49
+ <Popover message="Check out this new feature!" onClick={handleClose}>
50
+ {children}
51
+ </Popover>
52
+ )
49
53
  }
50
54
  ```
51
55
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/dismissible",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "license": "MIT",