@nimbus-ds/popover 3.2.0-rc.1 → 3.2.1-rc.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 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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nimbus-ds/popover",
3
- "version": "3.2.0-rc.1",
3
+ "version": "3.2.1-rc.1",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -33,5 +33,5 @@
33
33
  "@nimbus-ds/webpack": "^1.3.0",
34
34
  "@vanilla-extract/dynamic": "^2.0.2"
35
35
  },
36
- "stableVersion": "3.1.0"
36
+ "stableVersion": "3.2.0"
37
37
  }