@stenajs-webui/elements 19.0.0-next.23 → 19.0.0-next.25
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/icons/{ui/IconsUiDemo.d.ts → IconsDemo.d.ts} +3 -0
- package/dist/icons/{ui/IconsUi.d.ts → generated/CommonIcons.d.ts} +4 -2
- package/dist/icons/generated/VehicleTypeIcons.d.ts +10 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.es.js +869 -758
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/dist/icons/misc/IconsMisc.d.ts +0 -2
|
@@ -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
|
}>;
|
|
@@ -58,6 +58,7 @@ export declare const stenaClock: IconDefinition;
|
|
|
58
58
|
export declare const stenaCloudArrow: IconDefinition;
|
|
59
59
|
export declare const stenaCloud: IconDefinition;
|
|
60
60
|
export declare const stenaCog: IconDefinition;
|
|
61
|
+
export declare const stenaCompare: IconDefinition;
|
|
61
62
|
export declare const stenaCompress: IconDefinition;
|
|
62
63
|
export declare const stenaCookies: IconDefinition;
|
|
63
64
|
export declare const stenaCopyDocument: IconDefinition;
|
|
@@ -135,6 +136,7 @@ export declare const stenaMove: IconDefinition;
|
|
|
135
136
|
export declare const stenaOverview: IconDefinition;
|
|
136
137
|
export declare const stenaPen: IconDefinition;
|
|
137
138
|
export declare const stenaPercentage: IconDefinition;
|
|
139
|
+
export declare const stenaPerformance: IconDefinition;
|
|
138
140
|
export declare const stenaPets: IconDefinition;
|
|
139
141
|
export declare const stenaPhone: IconDefinition;
|
|
140
142
|
export declare const stenaPhoto: IconDefinition;
|
|
@@ -157,7 +159,7 @@ export declare const stenaSailingCrane: IconDefinition;
|
|
|
157
159
|
export declare const stenaSailingGate: IconDefinition;
|
|
158
160
|
export declare const stenaSailingImportExport: IconDefinition;
|
|
159
161
|
export declare const stenaSailingLocation: IconDefinition;
|
|
160
|
-
export declare const
|
|
162
|
+
export declare const stenaSailingNoshow: IconDefinition;
|
|
161
163
|
export declare const stenaSailingOffpeak: IconDefinition;
|
|
162
164
|
export declare const stenaSailingOnQuay: IconDefinition;
|
|
163
165
|
export declare const stenaSailingOnRoute: IconDefinition;
|
|
@@ -202,7 +204,7 @@ export declare const stenaStatusBlock: IconDefinition;
|
|
|
202
204
|
export declare const stenaStatusCanceled: IconDefinition;
|
|
203
205
|
export declare const stenaStatusConfirmed: IconDefinition;
|
|
204
206
|
export declare const stenaStatusDone: IconDefinition;
|
|
205
|
-
export declare const
|
|
207
|
+
export declare const stenaStatusInprogress: IconDefinition;
|
|
206
208
|
export declare const stenaStatusMissing: IconDefinition;
|
|
207
209
|
export declare const stenaStatusNoShow: IconDefinition;
|
|
208
210
|
export declare const stenaStatusTodo: IconDefinition;
|
|
@@ -0,0 +1,10 @@
|
|
|
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 stenaVehicleMotorcycle: IconDefinition;
|
|
7
|
+
export declare const stenaVehicleMotorhomeExtraLarge: IconDefinition;
|
|
8
|
+
export declare const stenaVehicleMotorhomeLarge: IconDefinition;
|
|
9
|
+
export declare const stenaVehicleMotorhomeMedium: IconDefinition;
|
|
10
|
+
export declare const stenaVehicleMotorhomeStandard: IconDefinition;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const StenaFlag: SvgrComponent;
|
|
2
|
-
export * from "./icons/
|
|
3
|
-
export * from "./icons/
|
|
2
|
+
export * from "./icons/generated/CommonIcons";
|
|
3
|
+
export * from "./icons/generated/VehicleTypeIcons";
|
|
4
4
|
export * from "./components/ui/banners/banner/Banner";
|
|
5
5
|
export * from "./components/ui/banners/result-list-banner/ResultListBanner";
|
|
6
6
|
export * from "./components/ui/banners/result-list-banner/hooks/UseResultListBannerState";
|