@stenajs-webui/elements 19.0.0-next.4 → 19.0.0-next.41
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/dist/components/ui/action-menu/ActionMenuItemContent.d.ts +2 -2
- package/dist/components/ui/button-links/FlatButtonLink.d.ts +2 -3
- package/dist/components/ui/button-links/PrimaryButtonLink.d.ts +2 -3
- package/dist/components/ui/button-links/SecondaryButtonLink.d.ts +4 -2
- package/dist/components/ui/button-links/common/BaseButtonLink.d.ts +6 -0
- package/dist/components/ui/buttons/FlatButton.d.ts +4 -7
- package/dist/components/ui/buttons/PrimaryButton.d.ts +2 -4
- package/dist/components/ui/buttons/SecondaryButton.d.ts +4 -2
- package/dist/components/ui/buttons/common/BaseButton.d.ts +6 -0
- package/dist/components/ui/buttons/common/ButtonCommon.d.ts +2 -0
- package/dist/components/ui/buttons/common/ButtonContent.d.ts +1 -0
- package/dist/components/ui/buttons/menu-button/ContentMenuButton.d.ts +7 -0
- package/dist/components/ui/buttons/menu-button/IconMenuButton.d.ts +10 -0
- package/dist/components/ui/buttons/menu-button/IconMenuButtonLink.d.ts +25 -0
- package/dist/components/ui/buttons/menu-button/MenuButton.d.ts +1 -0
- package/dist/components/ui/buttons/menu-button/{MenuButtonContent.d.ts → internal/MenuButtonContent.d.ts} +2 -0
- package/dist/components/ui/cardy/Cardy.d.ts +1 -2
- package/dist/components/ui/icon/CircledIcon.d.ts +2 -4
- package/dist/icons/{ui/IconsUiDemo.d.ts → IconsDemo.d.ts} +3 -0
- package/dist/icons/generated/ArrowIcons.d.ts +34 -0
- package/dist/icons/generated/BusinessIcons.d.ts +16 -0
- package/dist/icons/{ui/IconsUi.d.ts → generated/CommonIcons.d.ts} +18 -50
- package/dist/icons/generated/PassengerTypeIcons.d.ts +6 -0
- package/dist/icons/generated/UserIcons.d.ts +9 -0
- package/dist/icons/generated/VehicleTypeIcons.d.ts +12 -0
- package/dist/index.d.ts +10 -2
- package/dist/index.es.js +2677 -2112
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/dist/icons/misc/IconsMisc.d.ts +0 -2
|
@@ -2,8 +2,8 @@ import { DivProps } from "@stenajs-webui/core";
|
|
|
2
2
|
import * as React from "react";
|
|
3
3
|
import { ReactNode } from "react";
|
|
4
4
|
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
5
|
-
import { MenuButtonContentProps } from "../buttons/menu-button/MenuButtonContent";
|
|
6
|
-
export interface ActionMenuItemContentProps extends DivProps, MenuButtonContentProps {
|
|
5
|
+
import { MenuButtonContentProps } from "../buttons/menu-button/internal/MenuButtonContent";
|
|
6
|
+
export interface ActionMenuItemContentProps extends DivProps, Omit<MenuButtonContentProps, "left"> {
|
|
7
7
|
leftIcon?: IconDefinition;
|
|
8
8
|
disabled?: boolean;
|
|
9
9
|
right?: ReactNode;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import {
|
|
3
|
-
export interface FlatButtonLinkProps extends
|
|
4
|
-
inverted?: boolean;
|
|
2
|
+
import { BaseButtonLinkProps } from "./common/BaseButtonLink";
|
|
3
|
+
export interface FlatButtonLinkProps extends BaseButtonLinkProps {
|
|
5
4
|
}
|
|
6
5
|
export declare const FlatButtonLink: React.ForwardRefExoticComponent<FlatButtonLinkProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
export interface PrimaryButtonLinkProps extends CommonButtonProps, AnchorElementProps {
|
|
2
|
+
import { BaseButtonLinkProps } from "./common/BaseButtonLink";
|
|
3
|
+
export interface PrimaryButtonLinkProps extends BaseButtonLinkProps {
|
|
5
4
|
}
|
|
6
5
|
export declare const PrimaryButtonLink: React.ForwardRefExoticComponent<PrimaryButtonLinkProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import {
|
|
3
|
-
export
|
|
2
|
+
import { BaseButtonLinkProps } from "./common/BaseButtonLink";
|
|
3
|
+
export interface SecondaryButtonLinkProps extends BaseButtonLinkProps {
|
|
4
|
+
}
|
|
5
|
+
export declare const SecondaryButtonLink: React.ForwardRefExoticComponent<SecondaryButtonLinkProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { AnchorElementProps } from "@stenajs-webui/core";
|
|
3
|
+
import { CommonButtonProps } from "../../buttons/common/ButtonCommon";
|
|
4
|
+
export interface BaseButtonLinkProps extends CommonButtonProps, AnchorElementProps {
|
|
5
|
+
}
|
|
6
|
+
export declare const BaseButtonLink: React.ForwardRefExoticComponent<BaseButtonLinkProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import {
|
|
3
|
-
export
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
export declare const FlatButton: React.ForwardRefExoticComponent<PrimaryButtonProps & {
|
|
7
|
-
inverted?: boolean | undefined;
|
|
8
|
-
} & React.RefAttributes<HTMLButtonElement>>;
|
|
2
|
+
import { BaseButtonProps } from "./common/BaseButton";
|
|
3
|
+
export interface FlatButtonProps extends BaseButtonProps {
|
|
4
|
+
}
|
|
5
|
+
export declare const FlatButton: React.ForwardRefExoticComponent<FlatButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import { ButtonElementProps } from "@stenajs-webui/core";
|
|
2
1
|
import * as React from "react";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
export interface PrimaryButtonProps extends CommonButtonProps, ButtonElementProps, WidthProps {
|
|
2
|
+
import { BaseButtonProps } from "./common/BaseButton";
|
|
3
|
+
export interface PrimaryButtonProps extends BaseButtonProps {
|
|
6
4
|
}
|
|
7
5
|
export declare const PrimaryButton: React.ForwardRefExoticComponent<PrimaryButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import {
|
|
3
|
-
export
|
|
2
|
+
import { BaseButtonProps } from "./common/BaseButton";
|
|
3
|
+
export interface SecondaryButtonProps extends BaseButtonProps {
|
|
4
|
+
}
|
|
5
|
+
export declare const SecondaryButton: React.ForwardRefExoticComponent<SecondaryButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ButtonElementProps } from "@stenajs-webui/core";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
import { CommonButtonProps } from "./ButtonCommon";
|
|
4
|
+
export interface BaseButtonProps extends CommonButtonProps, ButtonElementProps {
|
|
5
|
+
}
|
|
6
|
+
export declare const BaseButton: React.ForwardRefExoticComponent<BaseButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { ReactNode } from "react";
|
|
3
|
+
import { LabelElementProps } from "@stenajs-webui/core";
|
|
4
|
+
export interface ContentMenuButtonProps extends LabelElementProps {
|
|
5
|
+
children?: ReactNode;
|
|
6
|
+
}
|
|
7
|
+
export declare const ContentMenuButton: React.ForwardRefExoticComponent<ContentMenuButtonProps & React.RefAttributes<HTMLLabelElement>>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { ButtonElementProps } from "@stenajs-webui/core";
|
|
3
|
+
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
4
|
+
import { MenuButtonVariant } from "./MenuButton";
|
|
5
|
+
export interface IconMenuButtonProps extends ButtonElementProps {
|
|
6
|
+
selected?: boolean;
|
|
7
|
+
icon: IconDefinition;
|
|
8
|
+
variant?: MenuButtonVariant;
|
|
9
|
+
}
|
|
10
|
+
export declare const IconMenuButton: React.ForwardRefExoticComponent<IconMenuButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { AnchorElementProps } from "@stenajs-webui/core";
|
|
3
|
+
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
4
|
+
import { MenuButtonVariant } from "./MenuButton";
|
|
5
|
+
import { MenuButtonLinkRenderer } from "./MenuButtonLink";
|
|
6
|
+
export declare type IconMenuButtonLinkProps = IconMenuButtonLinkNotSelectedProps | IconMenuButtonLinkWithSelectedProps | IconMenuButtonLinkWithRenderLinkProps;
|
|
7
|
+
interface IconMenuButtonCommonProps extends AnchorElementProps {
|
|
8
|
+
icon: IconDefinition;
|
|
9
|
+
variant?: MenuButtonVariant;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
}
|
|
12
|
+
export interface IconMenuButtonLinkNotSelectedProps extends IconMenuButtonCommonProps {
|
|
13
|
+
renderLink?: never;
|
|
14
|
+
selected?: never;
|
|
15
|
+
}
|
|
16
|
+
export interface IconMenuButtonLinkWithSelectedProps extends IconMenuButtonCommonProps {
|
|
17
|
+
renderLink?: never;
|
|
18
|
+
selected?: boolean;
|
|
19
|
+
}
|
|
20
|
+
export interface IconMenuButtonLinkWithRenderLinkProps extends IconMenuButtonCommonProps {
|
|
21
|
+
renderLink?: MenuButtonLinkRenderer;
|
|
22
|
+
selected?: never;
|
|
23
|
+
}
|
|
24
|
+
export declare const IconMenuButtonLink: React.ForwardRefExoticComponent<IconMenuButtonLinkProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
25
|
+
export {};
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
3
|
+
import { ReactNode } from "react";
|
|
3
4
|
export interface MenuButtonContentProps {
|
|
4
5
|
leftIcon?: IconDefinition;
|
|
6
|
+
left?: ReactNode;
|
|
5
7
|
label: string;
|
|
6
8
|
}
|
|
7
9
|
export declare const MenuButtonContent: React.FC<MenuButtonContentProps>;
|
|
@@ -2,10 +2,9 @@ import { BoxProps } from "@stenajs-webui/core";
|
|
|
2
2
|
import * as React from "react";
|
|
3
3
|
import { PropsWithChildren } from "react";
|
|
4
4
|
import { CssPropColor } from "@stenajs-webui/theme";
|
|
5
|
-
interface CardyProps extends Pick<BoxProps, "minWidth"> {
|
|
5
|
+
export interface CardyProps extends Pick<BoxProps, "minWidth"> {
|
|
6
6
|
color?: CssPropColor;
|
|
7
7
|
loading?: boolean;
|
|
8
8
|
className?: string;
|
|
9
9
|
}
|
|
10
10
|
export declare const Cardy: React.FC<PropsWithChildren<CardyProps>>;
|
|
11
|
-
export {};
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { CssPropColor } from "@stenajs-webui/theme";
|
|
3
3
|
import { IconProps } from "./Icon";
|
|
4
|
-
declare type
|
|
4
|
+
export declare type CircledIconSizeVariant = "medium" | "small";
|
|
5
5
|
export interface CircledIconProps extends Omit<IconProps, "size" | "color"> {
|
|
6
|
-
iconSize?: number;
|
|
7
6
|
backgroundColor?: CssPropColor;
|
|
8
7
|
iconColor?: CssPropColor;
|
|
9
|
-
|
|
8
|
+
size?: CircledIconSizeVariant;
|
|
10
9
|
}
|
|
11
10
|
export declare const CircledIcon: React.FC<CircledIconProps>;
|
|
12
|
-
export {};
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
3
|
+
export declare const IconDemoList: React.FC<{
|
|
4
|
+
icons: Record<string, IconDefinition>;
|
|
5
|
+
}>;
|
|
3
6
|
export declare const IconDemo: React.FC<{
|
|
4
7
|
icon: IconDefinition;
|
|
5
8
|
}>;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
2
|
+
export declare const stenaAngleDownDouble: IconDefinition;
|
|
3
|
+
export declare const stenaAngleDown: IconDefinition;
|
|
4
|
+
export declare const stenaAngleLeftDouble: IconDefinition;
|
|
5
|
+
export declare const stenaAngleLeft: IconDefinition;
|
|
6
|
+
export declare const stenaAngleRightDouble: IconDefinition;
|
|
7
|
+
export declare const stenaAngleRight: IconDefinition;
|
|
8
|
+
export declare const stenaAngleUpDouble: IconDefinition;
|
|
9
|
+
export declare const stenaAngleUp: IconDefinition;
|
|
10
|
+
export declare const stenaArrowCircleDown: IconDefinition;
|
|
11
|
+
export declare const stenaArrowCircleLeft: IconDefinition;
|
|
12
|
+
export declare const stenaArrowCircleRight: IconDefinition;
|
|
13
|
+
export declare const stenaArrowCircleUp: IconDefinition;
|
|
14
|
+
export declare const stenaArrowDoubleVertical: IconDefinition;
|
|
15
|
+
export declare const stenaArrowDouble: IconDefinition;
|
|
16
|
+
export declare const stenaArrowDown: IconDefinition;
|
|
17
|
+
export declare const stenaArrowLeft: IconDefinition;
|
|
18
|
+
export declare const stenaArrowPath: IconDefinition;
|
|
19
|
+
export declare const stenaArrowRightAngle: IconDefinition;
|
|
20
|
+
export declare const stenaArrowRight: IconDefinition;
|
|
21
|
+
export declare const stenaArrowShortDown: IconDefinition;
|
|
22
|
+
export declare const stenaArrowShortLeft: IconDefinition;
|
|
23
|
+
export declare const stenaArrowShortRight: IconDefinition;
|
|
24
|
+
export declare const stenaArrowShortUp: IconDefinition;
|
|
25
|
+
export declare const stenaArrowUp: IconDefinition;
|
|
26
|
+
export declare const stenaArrowWideDown: IconDefinition;
|
|
27
|
+
export declare const stenaArrowWideLeft: IconDefinition;
|
|
28
|
+
export declare const stenaArrowWideRight: IconDefinition;
|
|
29
|
+
export declare const stenaArrowWideUp: IconDefinition;
|
|
30
|
+
export declare const stenaCompress: IconDefinition;
|
|
31
|
+
export declare const stenaExpand: IconDefinition;
|
|
32
|
+
export declare const stenaMerge: IconDefinition;
|
|
33
|
+
export declare const stenaSailingRoundTrip: IconDefinition;
|
|
34
|
+
export declare const stenaSync: IconDefinition;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
2
|
+
export declare const stenaBusinessAgreement: IconDefinition;
|
|
3
|
+
export declare const stenaBusinessArticle: IconDefinition;
|
|
4
|
+
export declare const stenaBusinessCard: IconDefinition;
|
|
5
|
+
export declare const stenaBusinessClaim: IconDefinition;
|
|
6
|
+
export declare const stenaBusinessInvoice: IconDefinition;
|
|
7
|
+
export declare const stenaBusinessNslh: IconDefinition;
|
|
8
|
+
export declare const stenaBusinessSignature: IconDefinition;
|
|
9
|
+
export declare const stenaFinancePaid: IconDefinition;
|
|
10
|
+
export declare const stenaFinancePayPartially: IconDefinition;
|
|
11
|
+
export declare const stenaFinancePay: IconDefinition;
|
|
12
|
+
export declare const stenaFinanceRaise: IconDefinition;
|
|
13
|
+
export declare const stenaFinanceRebate: IconDefinition;
|
|
14
|
+
export declare const stenaFinanceUnpaidAlt: IconDefinition;
|
|
15
|
+
export declare const stenaFinanceUnpaid: IconDefinition;
|
|
16
|
+
export declare const stenaFinanceWallet: IconDefinition;
|
|
@@ -1,41 +1,11 @@
|
|
|
1
1
|
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
2
2
|
export declare const stenaAccount: IconDefinition;
|
|
3
|
-
export declare const stenaAngleDown2: IconDefinition;
|
|
4
|
-
export declare const stenaAngleDownDouble: IconDefinition;
|
|
5
|
-
export declare const stenaAngleDown: IconDefinition;
|
|
6
|
-
export declare const stenaAngleLeftDouble: IconDefinition;
|
|
7
|
-
export declare const stenaAngleLeft: IconDefinition;
|
|
8
|
-
export declare const stenaAngleRightDouble: IconDefinition;
|
|
9
|
-
export declare const stenaAngleRight: IconDefinition;
|
|
10
|
-
export declare const stenaAngleUpDouble: IconDefinition;
|
|
11
|
-
export declare const stenaAngleUp: IconDefinition;
|
|
12
3
|
export declare const stenaAnimals: IconDefinition;
|
|
13
|
-
export declare const stenaArrowCircleDown: IconDefinition;
|
|
14
|
-
export declare const stenaArrowCircleLeft: IconDefinition;
|
|
15
|
-
export declare const stenaArrowCircleRight: IconDefinition;
|
|
16
|
-
export declare const stenaArrowCircleUp: IconDefinition;
|
|
17
|
-
export declare const stenaArrowDown: IconDefinition;
|
|
18
|
-
export declare const stenaArrowLeft: IconDefinition;
|
|
19
|
-
export declare const stenaArrowPath: IconDefinition;
|
|
20
|
-
export declare const stenaArrowRightAngle: IconDefinition;
|
|
21
|
-
export declare const stenaArrowRight: IconDefinition;
|
|
22
|
-
export declare const stenaArrowUp: IconDefinition;
|
|
23
|
-
export declare const stenaArrowWideDown: IconDefinition;
|
|
24
|
-
export declare const stenaArrowWideLeft: IconDefinition;
|
|
25
|
-
export declare const stenaArrowWideRight: IconDefinition;
|
|
26
|
-
export declare const stenaArrowWideUp: IconDefinition;
|
|
27
4
|
export declare const stenaBackspace: IconDefinition;
|
|
28
5
|
export declare const stenaBan: IconDefinition;
|
|
29
6
|
export declare const stenaBellFilled: IconDefinition;
|
|
30
7
|
export declare const stenaBell: IconDefinition;
|
|
31
8
|
export declare const stenaBookmark: IconDefinition;
|
|
32
|
-
export declare const stenaBusinessAgreement: IconDefinition;
|
|
33
|
-
export declare const stenaBusinessArticle: IconDefinition;
|
|
34
|
-
export declare const stenaBusinessCard: IconDefinition;
|
|
35
|
-
export declare const stenaBusinessClaim: IconDefinition;
|
|
36
|
-
export declare const stenaBusinessInvoice: IconDefinition;
|
|
37
|
-
export declare const stenaBusinessNslh: IconDefinition;
|
|
38
|
-
export declare const stenaBusinessSignature: IconDefinition;
|
|
39
9
|
export declare const stenaBuy: IconDefinition;
|
|
40
10
|
export declare const stenaCalculate: IconDefinition;
|
|
41
11
|
export declare const stenaCalendarFilled: IconDefinition;
|
|
@@ -58,7 +28,7 @@ export declare const stenaClock: IconDefinition;
|
|
|
58
28
|
export declare const stenaCloudArrow: IconDefinition;
|
|
59
29
|
export declare const stenaCloud: IconDefinition;
|
|
60
30
|
export declare const stenaCog: IconDefinition;
|
|
61
|
-
export declare const
|
|
31
|
+
export declare const stenaCompare: IconDefinition;
|
|
62
32
|
export declare const stenaCookies: IconDefinition;
|
|
63
33
|
export declare const stenaCopyDocument: IconDefinition;
|
|
64
34
|
export declare const stenaCopy: IconDefinition;
|
|
@@ -69,13 +39,14 @@ export declare const stenaDotsVertical: IconDefinition;
|
|
|
69
39
|
export declare const stenaDots: IconDefinition;
|
|
70
40
|
export declare const stenaDownloadPdf: IconDefinition;
|
|
71
41
|
export declare const stenaDownload: IconDefinition;
|
|
42
|
+
export declare const stenaDrag: IconDefinition;
|
|
72
43
|
export declare const stenaEditColumns: IconDefinition;
|
|
73
44
|
export declare const stenaEdit: IconDefinition;
|
|
45
|
+
export declare const stenaEmptyRead: IconDefinition;
|
|
74
46
|
export declare const stenaExclamationCircleFilled: IconDefinition;
|
|
75
47
|
export declare const stenaExclamationCircle: IconDefinition;
|
|
76
48
|
export declare const stenaExclamationTriangleFilled: IconDefinition;
|
|
77
49
|
export declare const stenaExclamationTriangle: IconDefinition;
|
|
78
|
-
export declare const stenaExpand: IconDefinition;
|
|
79
50
|
export declare const stenaExternalLink: IconDefinition;
|
|
80
51
|
export declare const stenaExtra: IconDefinition;
|
|
81
52
|
export declare const stenaEyeClose: IconDefinition;
|
|
@@ -90,12 +61,6 @@ export declare const stenaFilePdf: IconDefinition;
|
|
|
90
61
|
export declare const stenaFileXlsLabel: IconDefinition;
|
|
91
62
|
export declare const stenaFileXls: IconDefinition;
|
|
92
63
|
export declare const stenaFilter: IconDefinition;
|
|
93
|
-
export declare const stenaFinancePaid: IconDefinition;
|
|
94
|
-
export declare const stenaFinancePay: IconDefinition;
|
|
95
|
-
export declare const stenaFinanceRaise: IconDefinition;
|
|
96
|
-
export declare const stenaFinanceRebate: IconDefinition;
|
|
97
|
-
export declare const stenaFinanceUnpaid: IconDefinition;
|
|
98
|
-
export declare const stenaFinanceWallet: IconDefinition;
|
|
99
64
|
export declare const stenaHamburger: IconDefinition;
|
|
100
65
|
export declare const stenaHandicapped: IconDefinition;
|
|
101
66
|
export declare const stenaHazardous: IconDefinition;
|
|
@@ -109,6 +74,7 @@ export declare const stenaInfoMegaphone: IconDefinition;
|
|
|
109
74
|
export declare const stenaInfoSpeechAlert: IconDefinition;
|
|
110
75
|
export declare const stenaInfoSpeech: IconDefinition;
|
|
111
76
|
export declare const stenaIntermodal: IconDefinition;
|
|
77
|
+
export declare const stenaKeyboard: IconDefinition;
|
|
112
78
|
export declare const stenaLanguage: IconDefinition;
|
|
113
79
|
export declare const stenaLightbulb: IconDefinition;
|
|
114
80
|
export declare const stenaLightning: IconDefinition;
|
|
@@ -118,10 +84,10 @@ export declare const stenaLineStraight: IconDefinition;
|
|
|
118
84
|
export declare const stenaLink: IconDefinition;
|
|
119
85
|
export declare const stenaLockClosed: IconDefinition;
|
|
120
86
|
export declare const stenaLockOpen: IconDefinition;
|
|
87
|
+
export declare const stenaLogoPlus: IconDefinition;
|
|
121
88
|
export declare const stenaLogout: IconDefinition;
|
|
122
89
|
export declare const stenaMail: IconDefinition;
|
|
123
90
|
export declare const stenaMapNavigation: IconDefinition;
|
|
124
|
-
export declare const stenaMerge: IconDefinition;
|
|
125
91
|
export declare const stenaMinusCircle: IconDefinition;
|
|
126
92
|
export declare const stenaMinus: IconDefinition;
|
|
127
93
|
export declare const stenaMobile: IconDefinition;
|
|
@@ -129,9 +95,11 @@ export declare const stenaMouse: IconDefinition;
|
|
|
129
95
|
export declare const stenaMoveIn: IconDefinition;
|
|
130
96
|
export declare const stenaMoveOut: IconDefinition;
|
|
131
97
|
export declare const stenaMove: IconDefinition;
|
|
98
|
+
export declare const stenaMovieTheatre: IconDefinition;
|
|
132
99
|
export declare const stenaOverview: IconDefinition;
|
|
133
100
|
export declare const stenaPen: IconDefinition;
|
|
134
101
|
export declare const stenaPercentage: IconDefinition;
|
|
102
|
+
export declare const stenaPerformance: IconDefinition;
|
|
135
103
|
export declare const stenaPets: IconDefinition;
|
|
136
104
|
export declare const stenaPhone: IconDefinition;
|
|
137
105
|
export declare const stenaPhoto: IconDefinition;
|
|
@@ -146,6 +114,8 @@ export declare const stenaQuestionCircle: IconDefinition;
|
|
|
146
114
|
export declare const stenaRateThumbDown: IconDefinition;
|
|
147
115
|
export declare const stenaRateThumbUp: IconDefinition;
|
|
148
116
|
export declare const stenaRefresh: IconDefinition;
|
|
117
|
+
export declare const stenaRobot: IconDefinition;
|
|
118
|
+
export declare const stenaRunningPerson: IconDefinition;
|
|
149
119
|
export declare const stenaSailingBus: IconDefinition;
|
|
150
120
|
export declare const stenaSailingCar: IconDefinition;
|
|
151
121
|
export declare const stenaSailingCargo: IconDefinition;
|
|
@@ -153,17 +123,20 @@ export declare const stenaSailingCrane: IconDefinition;
|
|
|
153
123
|
export declare const stenaSailingGate: IconDefinition;
|
|
154
124
|
export declare const stenaSailingImportExport: IconDefinition;
|
|
155
125
|
export declare const stenaSailingLocation: IconDefinition;
|
|
156
|
-
export declare const
|
|
126
|
+
export declare const stenaSailingNoTicket: IconDefinition;
|
|
157
127
|
export declare const stenaSailingOffpeak: IconDefinition;
|
|
158
128
|
export declare const stenaSailingOnQuay: IconDefinition;
|
|
129
|
+
export declare const stenaSailingOnRouteArrow: IconDefinition;
|
|
159
130
|
export declare const stenaSailingOnRoute: IconDefinition;
|
|
160
131
|
export declare const stenaSailingPeak: IconDefinition;
|
|
161
|
-
export declare const
|
|
132
|
+
export declare const stenaSailingRouteAlt: IconDefinition;
|
|
162
133
|
export declare const stenaSailingRoute: IconDefinition;
|
|
163
134
|
export declare const stenaSailingShip: IconDefinition;
|
|
164
135
|
export declare const stenaSailingShoulder: IconDefinition;
|
|
165
136
|
export declare const stenaSailingTicketFilled: IconDefinition;
|
|
166
137
|
export declare const stenaSailingTicket: IconDefinition;
|
|
138
|
+
export declare const stenaSailingTrailerDo: IconDefinition;
|
|
139
|
+
export declare const stenaSailingTrailerPu: IconDefinition;
|
|
167
140
|
export declare const stenaSailingTrailer: IconDefinition;
|
|
168
141
|
export declare const stenaSailingTrain: IconDefinition;
|
|
169
142
|
export declare const stenaSailingTruckAlt: IconDefinition;
|
|
@@ -191,6 +164,7 @@ export declare const stenaStack: IconDefinition;
|
|
|
191
164
|
export declare const stenaStar: IconDefinition;
|
|
192
165
|
export declare const stenaStatisticsBar: IconDefinition;
|
|
193
166
|
export declare const stenaStatisticsLine: IconDefinition;
|
|
167
|
+
export declare const stenaStatisticsPie: IconDefinition;
|
|
194
168
|
export declare const stenaStatusActive: IconDefinition;
|
|
195
169
|
export declare const stenaStatusBlock: IconDefinition;
|
|
196
170
|
export declare const stenaStatusCanceled: IconDefinition;
|
|
@@ -202,9 +176,9 @@ export declare const stenaStatusNoShow: IconDefinition;
|
|
|
202
176
|
export declare const stenaStatusTodo: IconDefinition;
|
|
203
177
|
export declare const stenaSupport: IconDefinition;
|
|
204
178
|
export declare const stenaSwitch: IconDefinition;
|
|
205
|
-
export declare const stenaSync: IconDefinition;
|
|
206
179
|
export declare const stenaTag: IconDefinition;
|
|
207
180
|
export declare const stenaTags: IconDefinition;
|
|
181
|
+
export declare const stenaTemperature: IconDefinition;
|
|
208
182
|
export declare const stenaTimesCircle: IconDefinition;
|
|
209
183
|
export declare const stenaTimesSmall: IconDefinition;
|
|
210
184
|
export declare const stenaTimesThick: IconDefinition;
|
|
@@ -218,14 +192,8 @@ export declare const stenaTurnOff: IconDefinition;
|
|
|
218
192
|
export declare const stenaUndo: IconDefinition;
|
|
219
193
|
export declare const stenaUnlink: IconDefinition;
|
|
220
194
|
export declare const stenaUpload: IconDefinition;
|
|
221
|
-
export declare const stenaUserAdd: IconDefinition;
|
|
222
|
-
export declare const stenaUserCircle: IconDefinition;
|
|
223
|
-
export declare const stenaUserGroupLarge: IconDefinition;
|
|
224
|
-
export declare const stenaUserGroupSmall: IconDefinition;
|
|
225
|
-
export declare const stenaUserMultiple: IconDefinition;
|
|
226
|
-
export declare const stenaUserSingle: IconDefinition;
|
|
227
|
-
export declare const stenaUser: IconDefinition;
|
|
228
|
-
export declare const stenaUsers: IconDefinition;
|
|
229
195
|
export declare const stenaWarehouse: IconDefinition;
|
|
230
196
|
export declare const stenaWeather: IconDefinition;
|
|
197
|
+
export declare const stenaWeight: IconDefinition;
|
|
198
|
+
export declare const stenaWifiOff: IconDefinition;
|
|
231
199
|
export declare const stenaWifi: IconDefinition;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
2
|
+
export declare const stenaHumanAdult: IconDefinition;
|
|
3
|
+
export declare const stenaHumanChild: IconDefinition;
|
|
4
|
+
export declare const stenaHumanInfant: IconDefinition;
|
|
5
|
+
export declare const stenaHumanSenior: IconDefinition;
|
|
6
|
+
export declare const stenaHumanStudent: IconDefinition;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
2
|
+
export declare const stenaUserAdd: IconDefinition;
|
|
3
|
+
export declare const stenaUserCircle: IconDefinition;
|
|
4
|
+
export declare const stenaUserGroupLarge: IconDefinition;
|
|
5
|
+
export declare const stenaUserGroupSmall: IconDefinition;
|
|
6
|
+
export declare const stenaUserMultiple: IconDefinition;
|
|
7
|
+
export declare const stenaUserSingle: IconDefinition;
|
|
8
|
+
export declare const stenaUser: IconDefinition;
|
|
9
|
+
export declare const stenaUsers: IconDefinition;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
2
|
+
export declare const stenaBicycle: IconDefinition;
|
|
3
|
+
export declare const stenaVehicleCarLarge: IconDefinition;
|
|
4
|
+
export declare const stenaVehicleCarMpv: IconDefinition;
|
|
5
|
+
export declare const stenaVehicleCarStandard: IconDefinition;
|
|
6
|
+
export declare const stenaVehicleCaravan: IconDefinition;
|
|
7
|
+
export declare const stenaVehicleMotorcycle: IconDefinition;
|
|
8
|
+
export declare const stenaVehicleMotorhomeExtraLarge: IconDefinition;
|
|
9
|
+
export declare const stenaVehicleMotorhomeLarge: IconDefinition;
|
|
10
|
+
export declare const stenaVehicleMotorhomeMedium: IconDefinition;
|
|
11
|
+
export declare const stenaVehicleMotorhomeStandard: IconDefinition;
|
|
12
|
+
export declare const stenaVehicleTrailer: IconDefinition;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
export declare const StenaFlag: SvgrComponent;
|
|
2
|
-
export * from "./icons/
|
|
3
|
-
export * from "./icons/
|
|
2
|
+
export * from "./icons/generated/ArrowIcons";
|
|
3
|
+
export * from "./icons/generated/BusinessIcons";
|
|
4
|
+
export * from "./icons/generated/CommonIcons";
|
|
5
|
+
export * from "./icons/generated/PassengerTypeIcons";
|
|
6
|
+
export * from "./icons/generated/VehicleTypeIcons";
|
|
7
|
+
export * from "./icons/generated/UserIcons";
|
|
4
8
|
export * from "./components/ui/banners/banner/Banner";
|
|
5
9
|
export * from "./components/ui/banners/result-list-banner/ResultListBanner";
|
|
6
10
|
export * from "./components/ui/banners/result-list-banner/hooks/UseResultListBannerState";
|
|
@@ -16,13 +20,17 @@ export * from "./components/ui/buttons/SecondaryButton";
|
|
|
16
20
|
export * from "./components/ui/buttons/common/ButtonCommon";
|
|
17
21
|
export * from "./components/ui/buttons/common/ButtonContent";
|
|
18
22
|
export * from "./components/ui/buttons/menu-button/MenuButton";
|
|
23
|
+
export * from "./components/ui/buttons/menu-button/ContentMenuButton";
|
|
24
|
+
export * from "./components/ui/buttons/menu-button/IconMenuButton";
|
|
19
25
|
export * from "./components/ui/buttons/menu-button/MenuButtonLink";
|
|
26
|
+
export * from "./components/ui/buttons/menu-button/IconMenuButtonLink";
|
|
20
27
|
export * from "./components/ui/button-links/FlatButtonLink";
|
|
21
28
|
export * from "./components/ui/button-links/PrimaryButtonLink";
|
|
22
29
|
export * from "./components/ui/button-links/SecondaryButtonLink";
|
|
23
30
|
export * from "./components/ui/button-group/ButtonGroup";
|
|
24
31
|
export * from "./components/ui/up-down-buttons/UpDownButtons";
|
|
25
32
|
export * from "./components/ui/icon/Icon";
|
|
33
|
+
export * from "./components/ui/icon/CircledIcon";
|
|
26
34
|
export * from "./components/ui/card/Card";
|
|
27
35
|
export * from "./components/ui/card/CardHeader";
|
|
28
36
|
export * from "./components/ui/card/CardBody";
|