@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 +3 -3
- package/README.md +6 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# v0.3.
|
|
1
|
+
# v0.3.2 (Fri Dec 22 2023)
|
|
2
2
|
|
|
3
|
-
####
|
|
3
|
+
#### ⚠️ Pushed to `main`
|
|
4
4
|
|
|
5
|
-
- docs(readme):
|
|
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
|
-
|
|
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
|
|
48
|
+
return (
|
|
49
|
+
<Popover message="Check out this new feature!" onClick={handleClose}>
|
|
50
|
+
{children}
|
|
51
|
+
</Popover>
|
|
52
|
+
)
|
|
49
53
|
}
|
|
50
54
|
```
|
|
51
55
|
|