@stenajs-webui/elements 17.28.1 → 17.29.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
@@ -1,3 +1,27 @@
1
+ # v17.29.1 (Mon Dec 19 2022)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Remove children from ActionMenuItem (fixes AB#104119) [#534](https://github.com/StenaIT/stenajs-webui/pull/534) ([@lindskogen](https://github.com/lindskogen))
6
+
7
+ #### Authors: 1
8
+
9
+ - Johan Lindskogen ([@lindskogen](https://github.com/lindskogen))
10
+
11
+ ---
12
+
13
+ # v17.29.0 (Mon Dec 12 2022)
14
+
15
+ #### 🐛 Bug Fix
16
+
17
+ - Remove --lhds-color-purple-* [#538](https://github.com/StenaIT/stenajs-webui/pull/538) ([@LordDz](https://github.com/LordDz))
18
+
19
+ #### Authors: 1
20
+
21
+ - David ([@LordDz](https://github.com/LordDz))
22
+
23
+ ---
24
+
1
25
  # v17.27.1 (Mon Nov 14 2022)
2
26
 
3
27
  #### 🐛 Bug Fix
@@ -2,7 +2,7 @@ import { ButtonElementProps } from "@stenajs-webui/core";
2
2
  import * as React from "react";
3
3
  import { ButtonContentProps } from "../buttons/common/ButtonContent";
4
4
  export declare type ActionMenuItemVariant = "standard" | "danger" | "success";
5
- export interface ActionMenuItemProps extends ButtonElementProps, ButtonContentProps {
5
+ export interface ActionMenuItemProps extends Omit<ButtonElementProps, "children">, ButtonContentProps {
6
6
  variant?: ActionMenuItemVariant;
7
7
  disableCloseOnClick?: boolean;
8
8
  }