@stenajs-webui/elements 19.0.0-next.65 → 19.0.0-next.67

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.
@@ -5,10 +5,12 @@ import { MediumIcon, XlIcon } from "../../../icons/IconSizes";
5
5
  export declare type CircledIconSizeVariant = CircledIconSizeStandardVariant | CircledIconSizeXlVariant;
6
6
  export declare type CircledIconSizeStandardVariant = "medium" | "small";
7
7
  export declare type CircledIconSizeXlVariant = "xl";
8
+ export declare type CircledIconVariant = "normal" | "whiteBg";
8
9
  export declare type CircledIconProps = CircledIconNormalProps | CircledIconXlProps;
9
10
  export interface CircledIconCommonProps extends Omit<IconProps, "size" | "color" | "icon"> {
10
11
  backgroundColor?: CssPropColor;
11
12
  iconColor?: CssPropColor;
13
+ variant?: CircledIconVariant;
12
14
  }
13
15
  export interface CircledIconNormalProps extends CircledIconCommonProps {
14
16
  size?: CircledIconSizeStandardVariant;
@@ -1,8 +1,14 @@
1
1
  import * as React from "react";
2
+ import { ReactNode } from "react";
2
3
  import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
3
4
  export declare const IconDemoList: React.FC<{
4
5
  icons: Record<string, IconDefinition>;
6
+ renderIconDemo?: (selectedIcon: IconDefinition) => ReactNode;
7
+ iconSize?: number;
5
8
  }>;
6
9
  export declare const IconDemo: React.FC<{
7
10
  icon: IconDefinition;
8
11
  }>;
12
+ export declare const XlIconDemo: React.FC<{
13
+ icon: IconDefinition;
14
+ }>;
@@ -1,4 +1,4 @@
1
- import { XlIcon, MediumIcon } from "../IconSizes";
1
+ import { MediumIcon } from "../IconSizes";
2
2
  export declare const stenaAccount: MediumIcon;
3
3
  export declare const stenaAnimals: MediumIcon;
4
4
  export declare const stenaBackspace: MediumIcon;
@@ -75,9 +75,11 @@ export declare const stenaInfoSpeechAlert: MediumIcon;
75
75
  export declare const stenaInfoSpeech: MediumIcon;
76
76
  export declare const stenaIntermodal: MediumIcon;
77
77
  export declare const stenaKeyboard: MediumIcon;
78
+ export declare const stenaKeycardPin: MediumIcon;
79
+ export declare const stenaKeycardWifi: MediumIcon;
80
+ export declare const stenaKeycard: MediumIcon;
78
81
  export declare const stenaLanguage: MediumIcon;
79
82
  export declare const stenaLightbulb: MediumIcon;
80
- export declare const stenaLighthouseXl: XlIcon;
81
83
  export declare const stenaLightning: MediumIcon;
82
84
  export declare const stenaLineDotted: MediumIcon;
83
85
  export declare const stenaLineSlash: MediumIcon;
@@ -149,6 +151,7 @@ export declare const stenaSearchMinus: MediumIcon;
149
151
  export declare const stenaSearchPlus: MediumIcon;
150
152
  export declare const stenaSearch: MediumIcon;
151
153
  export declare const stenaSendPlane: MediumIcon;
154
+ export declare const stenaService: MediumIcon;
152
155
  export declare const stenaShare: MediumIcon;
153
156
  export declare const stenaShield: MediumIcon;
154
157
  export declare const stenaSignIn: MediumIcon;
@@ -0,0 +1,3 @@
1
+ import { XlIcon } from "../IconSizes";
2
+ export declare const stenaLighthouseXl: XlIcon;
3
+ export declare const stenaTripFerryXl: XlIcon;
package/dist/index.d.ts CHANGED
@@ -5,6 +5,7 @@ export * from "./icons/generated/CommonIcons";
5
5
  export * from "./icons/generated/PassengerTypeIcons";
6
6
  export * from "./icons/generated/VehicleTypeIcons";
7
7
  export * from "./icons/generated/UserIcons";
8
+ export * from "./icons/generated/XlIcons";
8
9
  export * from "./icons/IconSizes";
9
10
  export * from "./components/ui/banners/banner/Banner";
10
11
  export * from "./components/ui/banners/result-list-banner/ResultListBanner";