@nimbus-ds/popover 3.2.0 → 3.2.1
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 +6 -0
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Use Popovers to bring attention to specific user interface elements and suggest an action or to guide users through a new experience
|
|
4
4
|
|
|
5
|
+
## 2023-05-02 `3.1.1`
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug fixes
|
|
8
|
+
|
|
9
|
+
- Omit `content` HTML prop on `Popover` API. ([#152](https://github.com/TiendaNube/nimbus-design-system/pull/152) by [@juanchigallego](https://github.com/juanchigallego))
|
|
10
|
+
|
|
5
11
|
## 2023-04-13 `3.1.0`
|
|
6
12
|
|
|
7
13
|
#### 🎉 New features
|
package/dist/index.d.ts
CHANGED
|
@@ -123,7 +123,7 @@ export interface PopoverProperties extends PopoverSprinkle {
|
|
|
123
123
|
*/
|
|
124
124
|
offset?: number;
|
|
125
125
|
}
|
|
126
|
-
export type PopoverProps = PopoverProperties & Omit<HTMLAttributes<HTMLDivElement>, "children">;
|
|
126
|
+
export type PopoverProps = PopoverProperties & Omit<HTMLAttributes<HTMLDivElement>, "children" | "content">;
|
|
127
127
|
export declare const Popover: React.FC<PopoverProps>;
|
|
128
128
|
|
|
129
129
|
export {
|