@stenajs-webui/elements 17.12.0 → 17.13.1
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 +32 -0
- package/dist/components/ui/route-leg/RouteLeg.d.ts +19 -0
- package/dist/components/ui/route-leg/TimeTag.d.ts +7 -0
- package/dist/icons/ui/IconsUi.d.ts +60 -35
- package/dist/icons/ui/IconsUiDemo.d.ts +5 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.es.js +649 -202
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,35 @@
|
|
|
1
|
+
# v17.13.1 (Mon Aug 29 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Add icons overview page [#495](https://github.com/StenaIT/stenajs-webui/pull/495) ([@lindskogen](https://github.com/lindskogen))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Johan Lindskogen ([@lindskogen](https://github.com/lindskogen))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v17.13.0 (Mon Aug 29 2022)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- Add route leg component [#490](https://github.com/StenaIT/stenajs-webui/pull/490) ([@juiceit](https://github.com/juiceit))
|
|
18
|
+
- New batch of Stena SVG icons [#492](https://github.com/StenaIT/stenajs-webui/pull/492) (david.zetterdahl@stenaline.com [@nikteg](https://github.com/nikteg) [@LordDz](https://github.com/LordDz))
|
|
19
|
+
|
|
20
|
+
#### 🐛 Bug Fix
|
|
21
|
+
|
|
22
|
+
- Switch and minus replacements [#493](https://github.com/StenaIT/stenajs-webui/pull/493) (david.zetterdahl@stenaline.com [@LordDz](https://github.com/LordDz))
|
|
23
|
+
|
|
24
|
+
#### Authors: 4
|
|
25
|
+
|
|
26
|
+
- David ([@LordDz](https://github.com/LordDz))
|
|
27
|
+
- Josefina Andreasson ([@juiceit](https://github.com/juiceit))
|
|
28
|
+
- Niklas ([@nikteg](https://github.com/nikteg))
|
|
29
|
+
- Zetterdahl David (david.zetterdahl@stenaline.com)
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
1
33
|
# v17.9.0 (Fri Jul 01 2022)
|
|
2
34
|
|
|
3
35
|
#### 🚀 Enhancement
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
export declare type ModeOfTransport = "ship" | "rail";
|
|
3
|
+
export declare type RouteLegSize = "standard" | "compact" | "relaxed";
|
|
4
|
+
interface LocationAndTimeProps {
|
|
5
|
+
location: string;
|
|
6
|
+
date: string;
|
|
7
|
+
time: string;
|
|
8
|
+
}
|
|
9
|
+
export interface RouteLegProps {
|
|
10
|
+
variant: ModeOfTransport;
|
|
11
|
+
departure: LocationAndTimeProps;
|
|
12
|
+
arrival: LocationAndTimeProps;
|
|
13
|
+
label?: string;
|
|
14
|
+
size?: RouteLegSize;
|
|
15
|
+
selected?: boolean;
|
|
16
|
+
children?: React.ReactNode;
|
|
17
|
+
}
|
|
18
|
+
export declare const RouteLeg: React.FC<RouteLegProps>;
|
|
19
|
+
export {};
|
|
@@ -1,52 +1,77 @@
|
|
|
1
1
|
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
2
|
+
export declare const stenaAngleDown: IconDefinition;
|
|
2
3
|
export declare const stenaAngleLeft: IconDefinition;
|
|
3
4
|
export declare const stenaAngleRight: IconDefinition;
|
|
4
5
|
export declare const stenaAngleUp: IconDefinition;
|
|
5
|
-
export declare const
|
|
6
|
+
export declare const stenaArrowCircleDown: IconDefinition;
|
|
7
|
+
export declare const stenaArrowCircleLeft: IconDefinition;
|
|
8
|
+
export declare const stenaArrowCircleRight: IconDefinition;
|
|
9
|
+
export declare const stenaArrowCircleUp: IconDefinition;
|
|
10
|
+
export declare const stenaArrowDown: IconDefinition;
|
|
6
11
|
export declare const stenaArrowLeft: IconDefinition;
|
|
7
12
|
export declare const stenaArrowRight: IconDefinition;
|
|
8
13
|
export declare const stenaArrowUp: IconDefinition;
|
|
9
|
-
export declare const
|
|
14
|
+
export declare const stenaArrowWideDown: IconDefinition;
|
|
10
15
|
export declare const stenaArrowWideLeft: IconDefinition;
|
|
11
16
|
export declare const stenaArrowWideRight: IconDefinition;
|
|
12
17
|
export declare const stenaArrowWideUp: IconDefinition;
|
|
13
|
-
export declare const
|
|
14
|
-
export declare const
|
|
15
|
-
export declare const
|
|
16
|
-
export declare const
|
|
17
|
-
export declare const
|
|
18
|
-
export declare const
|
|
19
|
-
export declare const
|
|
20
|
-
export declare const
|
|
21
|
-
export declare const
|
|
22
|
-
export declare const
|
|
23
|
-
export declare const
|
|
24
|
-
export declare const
|
|
25
|
-
export declare const
|
|
26
|
-
export declare const stenaMinusCircle: IconDefinition;
|
|
27
|
-
export declare const stenaPen: IconDefinition;
|
|
28
|
-
export declare const stenaHamburger: IconDefinition;
|
|
29
|
-
export declare const stenaExclamationTriangle: IconDefinition;
|
|
30
|
-
export declare const stenaExclamationTriangleFilled: IconDefinition;
|
|
31
|
-
export declare const stenaExclamationCircle: IconDefinition;
|
|
32
|
-
export declare const stenaExclamationCircleFilled: IconDefinition;
|
|
33
|
-
export declare const stenaInfoCircle: IconDefinition;
|
|
34
|
-
export declare const stenaInfoCircleFilled: IconDefinition;
|
|
35
|
-
export declare const stenaCopy: IconDefinition;
|
|
18
|
+
export declare const stenaBackspace: IconDefinition;
|
|
19
|
+
export declare const stenaBell: IconDefinition;
|
|
20
|
+
export declare const stenaBellFilled: IconDefinition;
|
|
21
|
+
export declare const stenaBusinessAgreement: IconDefinition;
|
|
22
|
+
export declare const stenaBusinessCard: IconDefinition;
|
|
23
|
+
export declare const stenaBusinessClaim: IconDefinition;
|
|
24
|
+
export declare const stenaBusinessCustomer: IconDefinition;
|
|
25
|
+
export declare const stenaBusinessInvoice: IconDefinition;
|
|
26
|
+
export declare const stenaBusinessNSLH: IconDefinition;
|
|
27
|
+
export declare const stenaBusinessSignature: IconDefinition;
|
|
28
|
+
export declare const stenaCalendar: IconDefinition;
|
|
29
|
+
export declare const stenaCalendarFilled: IconDefinition;
|
|
30
|
+
export declare const stenaCalendarManage: IconDefinition;
|
|
36
31
|
export declare const stenaCheck: IconDefinition;
|
|
37
32
|
export declare const stenaCheckCircle: IconDefinition;
|
|
33
|
+
export declare const stenaCheckCircleFilled: IconDefinition;
|
|
38
34
|
export declare const stenaClear: IconDefinition;
|
|
39
|
-
export declare const stenaCalendar: IconDefinition;
|
|
40
|
-
export declare const stenaCalendarFilled: IconDefinition;
|
|
41
35
|
export declare const stenaClock: IconDefinition;
|
|
42
36
|
export declare const stenaClockFilled: IconDefinition;
|
|
43
|
-
export declare const
|
|
44
|
-
export declare const
|
|
45
|
-
export declare const
|
|
46
|
-
export declare const
|
|
37
|
+
export declare const stenaCopy: IconDefinition;
|
|
38
|
+
export declare const stenaCopyDocument: IconDefinition;
|
|
39
|
+
export declare const stenaDownload: IconDefinition;
|
|
40
|
+
export declare const stenaExclamationCircle: IconDefinition;
|
|
41
|
+
export declare const stenaExclamationCircleFilled: IconDefinition;
|
|
42
|
+
export declare const stenaExclamationTriangle: IconDefinition;
|
|
43
|
+
export declare const stenaExclamationTriangleFilled: IconDefinition;
|
|
44
|
+
export declare const stenaExpand: IconDefinition;
|
|
45
|
+
export declare const stenaHamburger: IconDefinition;
|
|
46
|
+
export declare const stenaHistory: IconDefinition;
|
|
47
|
+
export declare const stenaInfoCircle: IconDefinition;
|
|
48
|
+
export declare const stenaInfoCircleFilled: IconDefinition;
|
|
49
|
+
export declare const stenaIntermodal: IconDefinition;
|
|
50
|
+
export declare const stenaLogout: IconDefinition;
|
|
51
|
+
export declare const stenaMail: IconDefinition;
|
|
52
|
+
export declare const stenaMinus: IconDefinition;
|
|
53
|
+
export declare const stenaMinusCircle: IconDefinition;
|
|
54
|
+
export declare const stenaMobile: IconDefinition;
|
|
55
|
+
export declare const stenaOverview: IconDefinition;
|
|
56
|
+
export declare const stenaPen: IconDefinition;
|
|
47
57
|
export declare const stenaPhone: IconDefinition;
|
|
48
|
-
export declare const
|
|
58
|
+
export declare const stenaPlus: IconDefinition;
|
|
59
|
+
export declare const stenaPlusCircle: IconDefinition;
|
|
60
|
+
export declare const stenaRefresh: IconDefinition;
|
|
61
|
+
export declare const stenaSailingGate: IconDefinition;
|
|
62
|
+
export declare const stenaSailingLocation: IconDefinition;
|
|
63
|
+
export declare const stenaSailingOnQuay: IconDefinition;
|
|
64
|
+
export declare const stenaSailingOnRoute: IconDefinition;
|
|
65
|
+
export declare const stenaSailingRoute: IconDefinition;
|
|
66
|
+
export declare const stenaSailingShip: IconDefinition;
|
|
67
|
+
export declare const stenaSailingTrain: IconDefinition;
|
|
68
|
+
export declare const stenaSearch: IconDefinition;
|
|
69
|
+
export declare const stenaSliders: IconDefinition;
|
|
49
70
|
export declare const stenaSortDown: IconDefinition;
|
|
50
|
-
export declare const
|
|
51
|
-
export declare const
|
|
52
|
-
export declare const
|
|
71
|
+
export declare const stenaSortUp: IconDefinition;
|
|
72
|
+
export declare const stenaSwitch: IconDefinition;
|
|
73
|
+
export declare const stenaTimes: IconDefinition;
|
|
74
|
+
export declare const stenaTimesCircle: IconDefinition;
|
|
75
|
+
export declare const stenaTrash: IconDefinition;
|
|
76
|
+
export declare const stenaUser: IconDefinition;
|
|
77
|
+
export declare const stenaUserCircle: IconDefinition;
|
package/dist/index.d.ts
CHANGED
|
@@ -40,3 +40,5 @@ export * from "./components/ui/tabs/TabMenu";
|
|
|
40
40
|
export * from "./components/ui/tag/Tag";
|
|
41
41
|
export * from "./components/ui/value-table/ValueTable";
|
|
42
42
|
export * from "./components/ui/value-table/ValueTableItem";
|
|
43
|
+
export * from "./components/ui/route-leg/RouteLeg";
|
|
44
|
+
export * from "./components/ui/route-leg/TimeTag";
|