@stenajs-webui/elements 17.34.0 → 18.0.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 +32 -0
- package/dist/components/ui/action-menu/ActionMenuItem.d.ts +1 -1
- package/dist/index.es.js +290 -290
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,35 @@
|
|
|
1
|
+
# v18.0.1 (Thu Feb 16 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Prioritize ActionMenuItems disabled variants in CSS [#540](https://github.com/StenaIT/stenajs-webui/pull/540) (david.zetterdahl@stenaline.com [@lindskogen](https://github.com/lindskogen) [@LordDz](https://github.com/LordDz))
|
|
6
|
+
|
|
7
|
+
#### Authors: 4
|
|
8
|
+
|
|
9
|
+
- David ([@LordDz](https://github.com/LordDz))
|
|
10
|
+
- David Zetterdahl (david.zetterdahl@stenaline.com)
|
|
11
|
+
- Johan Lindskogen ([@lindskogen](https://github.com/lindskogen))
|
|
12
|
+
- Zetterdahl David (david.zetterdahl@stenaline.com)
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
# v18.0.0 (Mon Feb 13 2023)
|
|
17
|
+
|
|
18
|
+
#### 🚀 Enhancement
|
|
19
|
+
|
|
20
|
+
- changing color for disabled UI elements [#556](https://github.com/StenaIT/stenajs-webui/pull/556) ([@PaulineAnnBar](https://github.com/PaulineAnnBar) [@lindskogen](https://github.com/lindskogen))
|
|
21
|
+
|
|
22
|
+
#### 🐛 Bug Fix
|
|
23
|
+
|
|
24
|
+
- Change focus to focus-visible for form elements [#533](https://github.com/StenaIT/stenajs-webui/pull/533) ([@lindskogen](https://github.com/lindskogen))
|
|
25
|
+
|
|
26
|
+
#### Authors: 2
|
|
27
|
+
|
|
28
|
+
- [@PaulineAnnBar](https://github.com/PaulineAnnBar)
|
|
29
|
+
- Johan Lindskogen ([@lindskogen](https://github.com/lindskogen))
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
1
33
|
# v17.34.0 (Thu Feb 09 2023)
|
|
2
34
|
|
|
3
35
|
#### 🚀 Enhancement
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ButtonElementProps } from "@stenajs-webui/core";
|
|
2
|
-
import * as React from "react";
|
|
3
2
|
import { ButtonContentProps } from "../buttons/common/ButtonContent";
|
|
3
|
+
import * as React from "react";
|
|
4
4
|
export declare type ActionMenuItemVariant = "standard" | "danger" | "success";
|
|
5
5
|
export interface ActionMenuItemProps extends Omit<ButtonElementProps, "children">, ButtonContentProps {
|
|
6
6
|
variant?: ActionMenuItemVariant;
|