@stenajs-webui/elements 17.29.0 → 17.30.0
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 +24 -0
- package/dist/components/ui/action-menu/ActionMenuItem.d.ts +1 -1
- package/dist/icons/ui/IconsUi.d.ts +6 -0
- package/dist/index.es.js +619 -553
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v17.30.0 (Tue Dec 20 2022)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Update and add new icons [#542](https://github.com/StenaIT/stenajs-webui/pull/542) ([@AugustasFriend](https://github.com/AugustasFriend))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Augustas Eidikis ([@AugustasFriend](https://github.com/AugustasFriend))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v17.29.1 (Mon Dec 19 2022)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- Remove children from ActionMenuItem (fixes AB#104119) [#534](https://github.com/StenaIT/stenajs-webui/pull/534) ([@lindskogen](https://github.com/lindskogen))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Johan Lindskogen ([@lindskogen](https://github.com/lindskogen))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v17.29.0 (Mon Dec 12 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
|
}
|
|
@@ -34,6 +34,8 @@ export declare const stenaBusinessSignature: IconDefinition;
|
|
|
34
34
|
export declare const stenaCalculate: IconDefinition;
|
|
35
35
|
export declare const stenaCalendarFilled: IconDefinition;
|
|
36
36
|
export declare const stenaCalendarManage: IconDefinition;
|
|
37
|
+
export declare const stenaCalendarSortDown: IconDefinition;
|
|
38
|
+
export declare const stenaCalendarSortUp: IconDefinition;
|
|
37
39
|
export declare const stenaCalendar: IconDefinition;
|
|
38
40
|
export declare const stenaCheckCircleFilled: IconDefinition;
|
|
39
41
|
export declare const stenaCheckCircle: IconDefinition;
|
|
@@ -49,6 +51,7 @@ export declare const stenaCopy: IconDefinition;
|
|
|
49
51
|
export declare const stenaDetails: IconDefinition;
|
|
50
52
|
export declare const stenaDotFilled: IconDefinition;
|
|
51
53
|
export declare const stenaDotOutline: IconDefinition;
|
|
54
|
+
export declare const stenaDotsVertical: IconDefinition;
|
|
52
55
|
export declare const stenaDots: IconDefinition;
|
|
53
56
|
export declare const stenaDownloadCsv: IconDefinition;
|
|
54
57
|
export declare const stenaDownloadPdf: IconDefinition;
|
|
@@ -89,6 +92,7 @@ export declare const stenaOverviewFull: IconDefinition;
|
|
|
89
92
|
export declare const stenaOverview: IconDefinition;
|
|
90
93
|
export declare const stenaPaw: IconDefinition;
|
|
91
94
|
export declare const stenaPen: IconDefinition;
|
|
95
|
+
export declare const stenaPercentage: IconDefinition;
|
|
92
96
|
export declare const stenaPhone: IconDefinition;
|
|
93
97
|
export declare const stenaPin: IconDefinition;
|
|
94
98
|
export declare const stenaPluginCheck: IconDefinition;
|
|
@@ -146,6 +150,8 @@ export declare const stenaTodoList: IconDefinition;
|
|
|
146
150
|
export declare const stenaTrash: IconDefinition;
|
|
147
151
|
export declare const stenaTurnOff: IconDefinition;
|
|
148
152
|
export declare const stenaUndo: IconDefinition;
|
|
153
|
+
export declare const stenaUnlink: IconDefinition;
|
|
154
|
+
export declare const stenaUpload: IconDefinition;
|
|
149
155
|
export declare const stenaUserAdd: IconDefinition;
|
|
150
156
|
export declare const stenaUserCircle: IconDefinition;
|
|
151
157
|
export declare const stenaUserGroupLarge: IconDefinition;
|