@stenajs-webui/elements 17.18.0 → 17.18.2
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/buttons/common/ButtonCommon.d.ts +1 -0
- package/dist/components/ui/buttons/common/ButtonContent.d.ts +1 -0
- package/dist/icons/ui/IconsUi.d.ts +4 -4
- package/dist/index.es.js +708 -698
- 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,27 @@
|
|
|
1
|
+
# v17.18.2 (Mon Sep 26 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Update angle icons [#511](https://github.com/StenaIT/stenajs-webui/pull/511) ([@AugustasFriend](https://github.com/AugustasFriend))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Augustas ([@AugustasFriend](https://github.com/AugustasFriend))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v17.18.1 (Fri Sep 23 2022)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- Use rem for icons in buttons [#509](https://github.com/StenaIT/stenajs-webui/pull/509) ([@AugustasFriend](https://github.com/AugustasFriend))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Augustas ([@AugustasFriend](https://github.com/AugustasFriend))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v17.18.0 (Thu Sep 22 2022)
|
|
2
26
|
|
|
3
27
|
#### 🚀 Enhancement
|
|
@@ -2,6 +2,7 @@ import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
|
2
2
|
import { ReactNode } from "react";
|
|
3
3
|
export declare type ButtonSize = "medium" | "small" | "large";
|
|
4
4
|
export declare type ButtonVariant = "normal" | "danger" | "success";
|
|
5
|
+
export declare const getIconSizeFromButtonSize: (size: ButtonSize, hasLabel: boolean) => ButtonSize;
|
|
5
6
|
export interface CommonButtonProps {
|
|
6
7
|
/** The text on the button. */
|
|
7
8
|
label?: string;
|
|
@@ -4,14 +4,14 @@ export declare const stenaAngleDownDouble: IconDefinition;
|
|
|
4
4
|
export declare const stenaAngleDown: IconDefinition;
|
|
5
5
|
export declare const stenaAngleLeftDouble: IconDefinition;
|
|
6
6
|
export declare const stenaAngleLeft: IconDefinition;
|
|
7
|
-
export declare const stenaExternalLink: IconDefinition;
|
|
8
|
-
export declare const stenaSailingRoundTrip: IconDefinition;
|
|
9
|
-
export declare const stenaSailingVehicle: IconDefinition;
|
|
10
|
-
export declare const stenaSendPlane: IconDefinition;
|
|
11
7
|
export declare const stenaAngleRightDouble: IconDefinition;
|
|
12
8
|
export declare const stenaAngleRight: IconDefinition;
|
|
13
9
|
export declare const stenaAngleUpDouble: IconDefinition;
|
|
14
10
|
export declare const stenaAngleUp: IconDefinition;
|
|
11
|
+
export declare const stenaExternalLink: IconDefinition;
|
|
12
|
+
export declare const stenaSailingRoundTrip: IconDefinition;
|
|
13
|
+
export declare const stenaSailingVehicle: IconDefinition;
|
|
14
|
+
export declare const stenaSendPlane: IconDefinition;
|
|
15
15
|
export declare const stenaArrowCircleDown: IconDefinition;
|
|
16
16
|
export declare const stenaArrowCircleLeft: IconDefinition;
|
|
17
17
|
export declare const stenaArrowCircleRight: IconDefinition;
|