@artsy/dismissible 0.3.1 → 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,4 +1,4 @@
1
- # v0.3.1 (Fri Dec 22 2023)
1
+ # v0.3.2 (Fri Dec 22 2023)
2
2
 
3
3
  #### ⚠️ Pushed to `main`
4
4
 
package/README.md CHANGED
@@ -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.1",
3
+ "version": "0.3.2",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "license": "MIT",