@stenajs-webui/elements 17.13.0 → 17.13.3

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,42 @@
1
+ # v17.13.3 (Tue Aug 30 2022)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Fix stenaSailingRoute icon [#501](https://github.com/StenaIT/stenajs-webui/pull/501) ([@juiceit](https://github.com/juiceit))
6
+ - Remove link styling for last-of-type (fixes AB#97856) [#499](https://github.com/StenaIT/stenajs-webui/pull/499) ([@lindskogen](https://github.com/lindskogen))
7
+
8
+ #### Authors: 2
9
+
10
+ - Johan Lindskogen ([@lindskogen](https://github.com/lindskogen))
11
+ - Josefina Andreasson ([@juiceit](https://github.com/juiceit))
12
+
13
+ ---
14
+
15
+ # v17.13.2 (Mon Aug 29 2022)
16
+
17
+ #### 🐛 Bug Fix
18
+
19
+ - Change default icon color (fixes AB#97855) [#498](https://github.com/StenaIT/stenajs-webui/pull/498) ([@lindskogen](https://github.com/lindskogen) [@juiceit](https://github.com/juiceit))
20
+
21
+ #### Authors: 2
22
+
23
+ - Johan Lindskogen ([@lindskogen](https://github.com/lindskogen))
24
+ - Josefina Andreasson ([@juiceit](https://github.com/juiceit))
25
+
26
+ ---
27
+
28
+ # v17.13.1 (Mon Aug 29 2022)
29
+
30
+ #### 🐛 Bug Fix
31
+
32
+ - Add icons overview page [#495](https://github.com/StenaIT/stenajs-webui/pull/495) ([@lindskogen](https://github.com/lindskogen))
33
+
34
+ #### Authors: 1
35
+
36
+ - Johan Lindskogen ([@lindskogen](https://github.com/lindskogen))
37
+
38
+ ---
39
+
1
40
  # v17.13.0 (Mon Aug 29 2022)
2
41
 
3
42
  #### 🚀 Enhancement
@@ -7,6 +7,6 @@ interface Props extends Pick<ActionMenuItemProps, "disableCloseOnClick"> {
7
7
  export declare const useActionMenuLogic: <TElement extends HTMLElement>({ disableCloseOnClick, onClick }: Props, ref: React.Ref<TElement>) => {
8
8
  onClickHandler: MouseEventHandler<TElement>;
9
9
  onKeyDown: (event: React.KeyboardEvent<TElement>) => void;
10
- innerRef: React.RefObject<NonNullable<TElement>>;
10
+ innerRef: React.RefObject<TElement & {}>;
11
11
  };
12
12
  export {};