@stenajs-webui/elements 18.11.0 → 18.11.2-next.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/dist/components/ui/action-menu/ActionMenu.d.ts +1 -2
- package/dist/components/ui/action-menu/ActionMenuItem.d.ts +2 -5
- package/dist/components/ui/action-menu/ActionMenuItemContent.d.ts +5 -4
- package/dist/components/ui/action-menu/ActionMenuLink.d.ts +2 -5
- package/dist/components/ui/buttons/common/ButtonCommon.d.ts +1 -1
- package/dist/components/ui/buttons/common/ButtonContent.d.ts +2 -0
- package/dist/components/ui/buttons/menu-button/MenuButton.d.ts +15 -0
- package/dist/components/ui/buttons/menu-button/MenuButtonContent.d.ts +7 -0
- package/dist/components/ui/buttons/menu-button/MenuButtonGroupBox.d.ts +6 -0
- package/dist/components/ui/buttons/menu-button/MenuButtonLink.d.ts +27 -0
- package/dist/components/ui/icon/CircledIcon.d.ts +12 -0
- package/dist/icons/ui/IconsUi.d.ts +50 -16
- package/dist/index.d.ts +3 -0
- package/dist/index.es.js +2363 -1918
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +12 -8
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/dist/components/ui/action-menu/ActionMenuCommonContent.d.ts +0 -3
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { BoxProps } from "@stenajs-webui/core";
|
|
2
2
|
import * as React from "react";
|
|
3
3
|
import { ReactNode } from "react";
|
|
4
|
-
export declare type ActionMenuVariant = "standard" | "outlined";
|
|
5
4
|
export interface ActionMenuProps {
|
|
6
5
|
top?: ReactNode;
|
|
7
6
|
width?: BoxProps["width"];
|
|
8
|
-
variant?: ActionMenuVariant;
|
|
9
7
|
shadow?: BoxProps["shadow"];
|
|
10
8
|
trapFocus?: boolean;
|
|
11
9
|
children?: ReactNode;
|
|
10
|
+
className?: string;
|
|
12
11
|
}
|
|
13
12
|
export declare const ActionMenu: React.FC<ActionMenuProps>;
|
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
import { ButtonElementProps } from "@stenajs-webui/core";
|
|
2
|
-
import { ButtonContentProps } from "../buttons/common/ButtonContent";
|
|
3
1
|
import * as React from "react";
|
|
4
|
-
|
|
5
|
-
export interface ActionMenuItemProps extends Omit<
|
|
6
|
-
variant?: ActionMenuItemVariant;
|
|
2
|
+
import { MenuButtonProps } from "../buttons/menu-button/MenuButton";
|
|
3
|
+
export interface ActionMenuItemProps extends Omit<MenuButtonProps, "children" | "expandable" | "expanded" | "selected"> {
|
|
7
4
|
disableCloseOnClick?: boolean;
|
|
8
5
|
}
|
|
9
6
|
export declare const ActionMenuItem: React.ForwardRefExoticComponent<ActionMenuItemProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { DivProps } from "@stenajs-webui/core";
|
|
2
2
|
import * as React from "react";
|
|
3
3
|
import { ReactNode } from "react";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
export interface ActionMenuItemContentProps extends DivProps,
|
|
7
|
-
|
|
4
|
+
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
5
|
+
import { MenuButtonContentProps } from "../buttons/menu-button/MenuButtonContent";
|
|
6
|
+
export interface ActionMenuItemContentProps extends DivProps, MenuButtonContentProps {
|
|
7
|
+
leftIcon?: IconDefinition;
|
|
8
8
|
disabled?: boolean;
|
|
9
|
+
right?: ReactNode;
|
|
9
10
|
bottom?: ReactNode;
|
|
10
11
|
fullWidthBottomContent?: boolean;
|
|
11
12
|
}
|
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
import { AnchorElementProps } from "@stenajs-webui/core";
|
|
2
1
|
import * as React from "react";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
export interface ActionMenuLinkProps extends AnchorElementProps, ButtonContentProps {
|
|
6
|
-
variant?: ActionMenuItemVariant;
|
|
2
|
+
import { MenuButtonLinkProps } from "../buttons/menu-button/MenuButtonLink";
|
|
3
|
+
export interface ActionMenuLinkProps extends Omit<MenuButtonLinkProps, "children" | "expandable" | "expanded" | "selected"> {
|
|
7
4
|
disabled?: boolean;
|
|
8
5
|
disableCloseOnClick?: boolean;
|
|
9
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
2
2
|
import { ReactNode } from "react";
|
|
3
|
-
export declare type ButtonSize = "medium" | "small" | "large";
|
|
3
|
+
export declare type ButtonSize = "medium" | "small" | "large" | "larger";
|
|
4
4
|
export declare type ButtonVariant = "normal" | "danger" | "success";
|
|
5
5
|
export interface CommonButtonProps {
|
|
6
6
|
/** The text on the button. */
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { ReactNode } from "react";
|
|
3
3
|
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
4
|
+
import { ButtonSize } from "./ButtonCommon";
|
|
4
5
|
export interface ButtonContentProps {
|
|
5
6
|
label?: string;
|
|
6
7
|
loading?: boolean;
|
|
@@ -14,5 +15,6 @@ export interface ButtonContentProps {
|
|
|
14
15
|
spinnerClassName?: string;
|
|
15
16
|
leftWrapperClassName?: string;
|
|
16
17
|
rightWrapperClassName?: string;
|
|
18
|
+
size?: ButtonSize;
|
|
17
19
|
}
|
|
18
20
|
export declare const ButtonContent: React.FC<ButtonContentProps>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { ReactNode } from "react";
|
|
3
|
+
import { ButtonElementProps } from "@stenajs-webui/core";
|
|
4
|
+
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
5
|
+
export declare type MenuButtonVariant = "standard" | "danger";
|
|
6
|
+
export interface MenuButtonProps extends ButtonElementProps {
|
|
7
|
+
label: string;
|
|
8
|
+
expanded?: boolean;
|
|
9
|
+
expandable?: boolean;
|
|
10
|
+
selected?: boolean;
|
|
11
|
+
leftIcon?: IconDefinition;
|
|
12
|
+
variant?: MenuButtonVariant;
|
|
13
|
+
children?: ReactNode;
|
|
14
|
+
}
|
|
15
|
+
export declare const MenuButton: React.ForwardRefExoticComponent<MenuButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
3
|
+
export interface MenuButtonContentProps {
|
|
4
|
+
leftIcon?: IconDefinition;
|
|
5
|
+
label: string;
|
|
6
|
+
}
|
|
7
|
+
export declare const MenuButtonContent: React.FC<MenuButtonContentProps>;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { ReactNode } from "react";
|
|
3
|
+
import { AnchorElementProps } from "@stenajs-webui/core";
|
|
4
|
+
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
5
|
+
import { MenuButtonVariant } from "./MenuButton";
|
|
6
|
+
export declare type MenuButtonLinkRenderer = (anchorProps: AnchorElementProps, activeClassName: string) => ReactNode;
|
|
7
|
+
export declare type MenuButtonLinkProps = MenuButtonLinkNotSelectedProps | MenuButtonLinkWithSelectedProps | MenuButtonLinkWithRenderLinkProps;
|
|
8
|
+
interface MenuButtonCommonProps extends AnchorElementProps {
|
|
9
|
+
label: string;
|
|
10
|
+
leftIcon?: IconDefinition;
|
|
11
|
+
variant?: MenuButtonVariant;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
}
|
|
14
|
+
export interface MenuButtonLinkNotSelectedProps extends MenuButtonCommonProps {
|
|
15
|
+
renderLink?: never;
|
|
16
|
+
selected?: never;
|
|
17
|
+
}
|
|
18
|
+
export interface MenuButtonLinkWithSelectedProps extends MenuButtonCommonProps {
|
|
19
|
+
renderLink?: never;
|
|
20
|
+
selected?: boolean;
|
|
21
|
+
}
|
|
22
|
+
export interface MenuButtonLinkWithRenderLinkProps extends MenuButtonCommonProps {
|
|
23
|
+
renderLink?: MenuButtonLinkRenderer;
|
|
24
|
+
selected?: never;
|
|
25
|
+
}
|
|
26
|
+
export declare const MenuButtonLink: React.ForwardRefExoticComponent<MenuButtonLinkProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
27
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { CssPropColor } from "@stenajs-webui/theme";
|
|
3
|
+
import { IconProps } from "./Icon";
|
|
4
|
+
declare type SizeVariant = "small" | "medium";
|
|
5
|
+
export interface CircledIconProps extends Omit<IconProps, "size" | "color"> {
|
|
6
|
+
iconSize?: number;
|
|
7
|
+
backgroundColor?: CssPropColor;
|
|
8
|
+
iconColor?: CssPropColor;
|
|
9
|
+
sizeVariant?: SizeVariant;
|
|
10
|
+
}
|
|
11
|
+
export declare const CircledIcon: React.FC<CircledIconProps>;
|
|
12
|
+
export {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
2
2
|
export declare const stenaAccount: IconDefinition;
|
|
3
|
+
export declare const stenaAngleDown2: IconDefinition;
|
|
3
4
|
export declare const stenaAngleDownDouble: IconDefinition;
|
|
4
5
|
export declare const stenaAngleDown: IconDefinition;
|
|
5
6
|
export declare const stenaAngleLeftDouble: IconDefinition;
|
|
@@ -8,6 +9,7 @@ export declare const stenaAngleRightDouble: IconDefinition;
|
|
|
8
9
|
export declare const stenaAngleRight: IconDefinition;
|
|
9
10
|
export declare const stenaAngleUpDouble: IconDefinition;
|
|
10
11
|
export declare const stenaAngleUp: IconDefinition;
|
|
12
|
+
export declare const stenaAnimals: IconDefinition;
|
|
11
13
|
export declare const stenaArrowCircleDown: IconDefinition;
|
|
12
14
|
export declare const stenaArrowCircleLeft: IconDefinition;
|
|
13
15
|
export declare const stenaArrowCircleRight: IconDefinition;
|
|
@@ -26,22 +28,29 @@ export declare const stenaBackspace: IconDefinition;
|
|
|
26
28
|
export declare const stenaBan: IconDefinition;
|
|
27
29
|
export declare const stenaBellFilled: IconDefinition;
|
|
28
30
|
export declare const stenaBell: IconDefinition;
|
|
31
|
+
export declare const stenaBookmark: IconDefinition;
|
|
29
32
|
export declare const stenaBusinessAgreement: IconDefinition;
|
|
33
|
+
export declare const stenaBusinessArticle: IconDefinition;
|
|
30
34
|
export declare const stenaBusinessCard: IconDefinition;
|
|
31
35
|
export declare const stenaBusinessClaim: IconDefinition;
|
|
32
36
|
export declare const stenaBusinessInvoice: IconDefinition;
|
|
33
37
|
export declare const stenaBusinessNslh: IconDefinition;
|
|
34
38
|
export declare const stenaBusinessSignature: IconDefinition;
|
|
39
|
+
export declare const stenaBuy: IconDefinition;
|
|
35
40
|
export declare const stenaCalculate: IconDefinition;
|
|
36
41
|
export declare const stenaCalendarFilled: IconDefinition;
|
|
37
42
|
export declare const stenaCalendarManage: IconDefinition;
|
|
38
43
|
export declare const stenaCalendarSortDown: IconDefinition;
|
|
39
44
|
export declare const stenaCalendarSortUp: IconDefinition;
|
|
40
45
|
export declare const stenaCalendar: IconDefinition;
|
|
46
|
+
export declare const stenaCargoConstruction: IconDefinition;
|
|
47
|
+
export declare const stenaCargoMetal: IconDefinition;
|
|
41
48
|
export declare const stenaCheckCircleFilled: IconDefinition;
|
|
42
49
|
export declare const stenaCheckCircle: IconDefinition;
|
|
50
|
+
export declare const stenaCheckDouble: IconDefinition;
|
|
43
51
|
export declare const stenaCheckThick: IconDefinition;
|
|
44
52
|
export declare const stenaCheck: IconDefinition;
|
|
53
|
+
export declare const stenaClean: IconDefinition;
|
|
45
54
|
export declare const stenaClearRow: IconDefinition;
|
|
46
55
|
export declare const stenaClear: IconDefinition;
|
|
47
56
|
export declare const stenaClockFilled: IconDefinition;
|
|
@@ -50,6 +59,7 @@ export declare const stenaCloudArrow: IconDefinition;
|
|
|
50
59
|
export declare const stenaCloud: IconDefinition;
|
|
51
60
|
export declare const stenaCog: IconDefinition;
|
|
52
61
|
export declare const stenaCompress: IconDefinition;
|
|
62
|
+
export declare const stenaCookies: IconDefinition;
|
|
53
63
|
export declare const stenaCopyDocument: IconDefinition;
|
|
54
64
|
export declare const stenaCopy: IconDefinition;
|
|
55
65
|
export declare const stenaDetails: IconDefinition;
|
|
@@ -57,78 +67,94 @@ export declare const stenaDotFilled: IconDefinition;
|
|
|
57
67
|
export declare const stenaDotOutline: IconDefinition;
|
|
58
68
|
export declare const stenaDotsVertical: IconDefinition;
|
|
59
69
|
export declare const stenaDots: IconDefinition;
|
|
60
|
-
export declare const stenaDownloadCsv: IconDefinition;
|
|
61
70
|
export declare const stenaDownloadPdf: IconDefinition;
|
|
62
|
-
export declare const stenaDownloadXls: IconDefinition;
|
|
63
71
|
export declare const stenaDownload: IconDefinition;
|
|
64
72
|
export declare const stenaEditColumns: IconDefinition;
|
|
65
|
-
export declare const
|
|
73
|
+
export declare const stenaEdit: IconDefinition;
|
|
66
74
|
export declare const stenaExclamationCircleFilled: IconDefinition;
|
|
67
75
|
export declare const stenaExclamationCircle: IconDefinition;
|
|
68
76
|
export declare const stenaExclamationTriangleFilled: IconDefinition;
|
|
69
77
|
export declare const stenaExclamationTriangle: IconDefinition;
|
|
70
78
|
export declare const stenaExpand: IconDefinition;
|
|
71
79
|
export declare const stenaExternalLink: IconDefinition;
|
|
80
|
+
export declare const stenaEyeClose: IconDefinition;
|
|
81
|
+
export declare const stenaEyeHide: IconDefinition;
|
|
82
|
+
export declare const stenaEyeOpen: IconDefinition;
|
|
83
|
+
export declare const stenaEyeShow: IconDefinition;
|
|
72
84
|
export declare const stenaFavorites: IconDefinition;
|
|
73
85
|
export declare const stenaFileCsvLabel: IconDefinition;
|
|
86
|
+
export declare const stenaFileCsv: IconDefinition;
|
|
74
87
|
export declare const stenaFilePdfLabel: IconDefinition;
|
|
88
|
+
export declare const stenaFilePdf: IconDefinition;
|
|
75
89
|
export declare const stenaFileXlsLabel: IconDefinition;
|
|
90
|
+
export declare const stenaFileXls: IconDefinition;
|
|
76
91
|
export declare const stenaFilter: IconDefinition;
|
|
77
92
|
export declare const stenaFinancePaid: IconDefinition;
|
|
78
93
|
export declare const stenaFinancePay: IconDefinition;
|
|
79
94
|
export declare const stenaFinanceRaise: IconDefinition;
|
|
80
|
-
export declare const stenaFinanceRebatePercent: IconDefinition;
|
|
81
95
|
export declare const stenaFinanceRebate: IconDefinition;
|
|
82
96
|
export declare const stenaFinanceUnpaid: IconDefinition;
|
|
83
97
|
export declare const stenaFinanceWallet: IconDefinition;
|
|
84
98
|
export declare const stenaHamburger: IconDefinition;
|
|
99
|
+
export declare const stenaHandicapped: IconDefinition;
|
|
85
100
|
export declare const stenaHazardous: IconDefinition;
|
|
86
|
-
export declare const
|
|
101
|
+
export declare const stenaHelp: IconDefinition;
|
|
87
102
|
export declare const stenaHistory: IconDefinition;
|
|
103
|
+
export declare const stenaHotelBed: IconDefinition;
|
|
104
|
+
export declare const stenaHotel: IconDefinition;
|
|
88
105
|
export declare const stenaInfoCircleFilled: IconDefinition;
|
|
89
106
|
export declare const stenaInfoCircle: IconDefinition;
|
|
90
107
|
export declare const stenaInfoMegaphone: IconDefinition;
|
|
108
|
+
export declare const stenaInfoSpeechAlert: IconDefinition;
|
|
91
109
|
export declare const stenaInfoSpeech: IconDefinition;
|
|
92
110
|
export declare const stenaIntermodal: IconDefinition;
|
|
111
|
+
export declare const stenaLanguage: IconDefinition;
|
|
93
112
|
export declare const stenaLightbulb: IconDefinition;
|
|
113
|
+
export declare const stenaLightning: IconDefinition;
|
|
114
|
+
export declare const stenaLineDotted: IconDefinition;
|
|
115
|
+
export declare const stenaLineSlash: IconDefinition;
|
|
116
|
+
export declare const stenaLineStraight: IconDefinition;
|
|
94
117
|
export declare const stenaLink: IconDefinition;
|
|
95
118
|
export declare const stenaLockClosed: IconDefinition;
|
|
96
119
|
export declare const stenaLockOpen: IconDefinition;
|
|
97
120
|
export declare const stenaLogout: IconDefinition;
|
|
98
121
|
export declare const stenaMail: IconDefinition;
|
|
122
|
+
export declare const stenaMapNavigation: IconDefinition;
|
|
99
123
|
export declare const stenaMerge: IconDefinition;
|
|
100
124
|
export declare const stenaMinusCircle: IconDefinition;
|
|
101
125
|
export declare const stenaMinus: IconDefinition;
|
|
102
126
|
export declare const stenaMobile: IconDefinition;
|
|
127
|
+
export declare const stenaMouse: IconDefinition;
|
|
103
128
|
export declare const stenaMoveIn: IconDefinition;
|
|
104
129
|
export declare const stenaMoveOut: IconDefinition;
|
|
105
130
|
export declare const stenaMove: IconDefinition;
|
|
106
|
-
export declare const stenaOverviewFull: IconDefinition;
|
|
107
131
|
export declare const stenaOverview: IconDefinition;
|
|
108
|
-
export declare const stenaPaw: IconDefinition;
|
|
109
132
|
export declare const stenaPen: IconDefinition;
|
|
110
133
|
export declare const stenaPercentage: IconDefinition;
|
|
134
|
+
export declare const stenaPets: IconDefinition;
|
|
111
135
|
export declare const stenaPhone: IconDefinition;
|
|
136
|
+
export declare const stenaPhoto: IconDefinition;
|
|
112
137
|
export declare const stenaPin: IconDefinition;
|
|
113
138
|
export declare const stenaPluginCheck: IconDefinition;
|
|
114
139
|
export declare const stenaPlugin: IconDefinition;
|
|
115
|
-
export declare const stenaPluginFilled: IconDefinition;
|
|
116
140
|
export declare const stenaPlusCircle: IconDefinition;
|
|
117
141
|
export declare const stenaPlus: IconDefinition;
|
|
118
142
|
export declare const stenaPrint: IconDefinition;
|
|
119
143
|
export declare const stenaQuestionBubble: IconDefinition;
|
|
120
144
|
export declare const stenaQuestionCircle: IconDefinition;
|
|
145
|
+
export declare const stenaRateThumbDown: IconDefinition;
|
|
146
|
+
export declare const stenaRateThumbUp: IconDefinition;
|
|
121
147
|
export declare const stenaRefresh: IconDefinition;
|
|
148
|
+
export declare const stenaSailingBus: IconDefinition;
|
|
149
|
+
export declare const stenaSailingCar: IconDefinition;
|
|
122
150
|
export declare const stenaSailingCargo: IconDefinition;
|
|
123
151
|
export declare const stenaSailingCrane: IconDefinition;
|
|
124
|
-
export declare const stenaSailingDrivers: IconDefinition;
|
|
125
152
|
export declare const stenaSailingGate: IconDefinition;
|
|
126
153
|
export declare const stenaSailingImportExport: IconDefinition;
|
|
127
154
|
export declare const stenaSailingLocation: IconDefinition;
|
|
128
155
|
export declare const stenaSailingNoShow: IconDefinition;
|
|
129
156
|
export declare const stenaSailingOffpeak: IconDefinition;
|
|
130
157
|
export declare const stenaSailingOnQuay: IconDefinition;
|
|
131
|
-
export declare const stenaSailingOnQuayFilled: IconDefinition;
|
|
132
158
|
export declare const stenaSailingOnRoute: IconDefinition;
|
|
133
159
|
export declare const stenaSailingPeak: IconDefinition;
|
|
134
160
|
export declare const stenaSailingRoundTrip: IconDefinition;
|
|
@@ -143,53 +169,61 @@ export declare const stenaSailingTruckAlt: IconDefinition;
|
|
|
143
169
|
export declare const stenaSailingVehicle: IconDefinition;
|
|
144
170
|
export declare const stenaSave: IconDefinition;
|
|
145
171
|
export declare const stenaSearchError: IconDefinition;
|
|
172
|
+
export declare const stenaSearchMinus: IconDefinition;
|
|
173
|
+
export declare const stenaSearchPlus: IconDefinition;
|
|
146
174
|
export declare const stenaSearch: IconDefinition;
|
|
147
|
-
export declare const stenaSearchFilled: IconDefinition;
|
|
148
175
|
export declare const stenaSendPlane: IconDefinition;
|
|
149
176
|
export declare const stenaShare: IconDefinition;
|
|
177
|
+
export declare const stenaShield: IconDefinition;
|
|
150
178
|
export declare const stenaSignIn: IconDefinition;
|
|
151
179
|
export declare const stenaSignOut: IconDefinition;
|
|
180
|
+
export declare const stenaSlidersMini: IconDefinition;
|
|
152
181
|
export declare const stenaSliders: IconDefinition;
|
|
153
182
|
export declare const stenaSms: IconDefinition;
|
|
183
|
+
export declare const stenaSortDownMini: IconDefinition;
|
|
154
184
|
export declare const stenaSortDown: IconDefinition;
|
|
185
|
+
export declare const stenaSortUpMini: IconDefinition;
|
|
155
186
|
export declare const stenaSortUp: IconDefinition;
|
|
156
187
|
export declare const stenaStackCheck: IconDefinition;
|
|
157
188
|
export declare const stenaStack: IconDefinition;
|
|
189
|
+
export declare const stenaStar: IconDefinition;
|
|
158
190
|
export declare const stenaStatisticsBar: IconDefinition;
|
|
159
191
|
export declare const stenaStatisticsLine: IconDefinition;
|
|
160
192
|
export declare const stenaStatusActive: IconDefinition;
|
|
161
193
|
export declare const stenaStatusBlock: IconDefinition;
|
|
162
194
|
export declare const stenaStatusCanceled: IconDefinition;
|
|
163
|
-
export declare const stenaStatusCheckedinWaitlist: IconDefinition;
|
|
164
|
-
export declare const stenaStatusCheckedin: IconDefinition;
|
|
165
195
|
export declare const stenaStatusConfirmed: IconDefinition;
|
|
166
196
|
export declare const stenaStatusDone: IconDefinition;
|
|
167
197
|
export declare const stenaStatusInProgress: IconDefinition;
|
|
198
|
+
export declare const stenaStatusMissing: IconDefinition;
|
|
168
199
|
export declare const stenaStatusNoShow: IconDefinition;
|
|
169
200
|
export declare const stenaStatusTodo: IconDefinition;
|
|
170
|
-
export declare const
|
|
201
|
+
export declare const stenaSupport: IconDefinition;
|
|
171
202
|
export declare const stenaSwitch: IconDefinition;
|
|
172
203
|
export declare const stenaSync: IconDefinition;
|
|
173
204
|
export declare const stenaTag: IconDefinition;
|
|
174
205
|
export declare const stenaTags: IconDefinition;
|
|
175
206
|
export declare const stenaTimesCircle: IconDefinition;
|
|
176
207
|
export declare const stenaTimesSmall: IconDefinition;
|
|
208
|
+
export declare const stenaTimesThick: IconDefinition;
|
|
177
209
|
export declare const stenaTimes: IconDefinition;
|
|
210
|
+
export declare const stenaTodoCreate: IconDefinition;
|
|
178
211
|
export declare const stenaTodoDone: IconDefinition;
|
|
179
212
|
export declare const stenaTodoList: IconDefinition;
|
|
180
213
|
export declare const stenaTrash: IconDefinition;
|
|
214
|
+
export declare const stenaTravelEnjoyHygge: IconDefinition;
|
|
181
215
|
export declare const stenaTurnOff: IconDefinition;
|
|
182
216
|
export declare const stenaUndo: IconDefinition;
|
|
183
217
|
export declare const stenaUnlink: IconDefinition;
|
|
184
218
|
export declare const stenaUpload: IconDefinition;
|
|
185
219
|
export declare const stenaUserAdd: IconDefinition;
|
|
186
220
|
export declare const stenaUserCircle: IconDefinition;
|
|
187
|
-
export declare const stenaUserCircleFilled: IconDefinition;
|
|
188
221
|
export declare const stenaUserGroupLarge: IconDefinition;
|
|
189
222
|
export declare const stenaUserGroupSmall: IconDefinition;
|
|
190
223
|
export declare const stenaUserMultiple: IconDefinition;
|
|
191
224
|
export declare const stenaUserSingle: IconDefinition;
|
|
192
|
-
export declare const stenaUserMultipleFilled: IconDefinition;
|
|
193
225
|
export declare const stenaUser: IconDefinition;
|
|
194
226
|
export declare const stenaUsers: IconDefinition;
|
|
195
227
|
export declare const stenaWarehouse: IconDefinition;
|
|
228
|
+
export declare const stenaWeather: IconDefinition;
|
|
229
|
+
export declare const stenaWifi: IconDefinition;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export declare const StenaFlag: SvgrComponent;
|
|
1
2
|
export * from "./icons/ui/IconsUi";
|
|
2
3
|
export * from "./icons/misc/IconsMisc";
|
|
3
4
|
export * from "./components/ui/banners/banner/Banner";
|
|
@@ -14,6 +15,8 @@ export * from "./components/ui/buttons/PrimaryButton";
|
|
|
14
15
|
export * from "./components/ui/buttons/SecondaryButton";
|
|
15
16
|
export * from "./components/ui/buttons/common/ButtonCommon";
|
|
16
17
|
export * from "./components/ui/buttons/common/ButtonContent";
|
|
18
|
+
export * from "./components/ui/buttons/menu-button/MenuButton";
|
|
19
|
+
export * from "./components/ui/buttons/menu-button/MenuButtonLink";
|
|
17
20
|
export * from "./components/ui/button-links/FlatButtonLink";
|
|
18
21
|
export * from "./components/ui/button-links/PrimaryButtonLink";
|
|
19
22
|
export * from "./components/ui/button-links/SecondaryButtonLink";
|