@stenajs-webui/elements 23.12.0 → 23.12.2

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.
@@ -0,0 +1 @@
1
+ export { default as stenaShipAnimation } from "./StenaShipAnimation.lottie";
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ export interface ScreenSpinnerProps {
3
+ }
4
+ export declare const ScreenSpinner: React.FC<ScreenSpinnerProps>;
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import { BoxProps } from "@stenajs-webui/core";
3
+ export interface StickySummaryFooterProps extends BoxProps {
4
+ }
5
+ export declare const StickySummaryFooter: React.FC<StickySummaryFooterProps>;
package/dist/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  export { ReactComponent as StenaFlag } from "./icons/StenaFlag.svg";
2
2
  export { ReactComponent as StenaLineLogo } from "./icons/StenaLineLogo.svg";
3
+ export { stenaShipAnimation } from "./animations/generated";
3
4
  export * from "./icons/generated/ArrowIcons";
4
5
  export * from "./icons/generated/BusinessIcons";
5
6
  export * from "./icons/generated/CommonIcons";
@@ -17,6 +18,7 @@ export * from "./components/ui/result-list/ResultListRow";
17
18
  export * from "./components/ui/spinner/Spinner";
18
19
  export * from "./components/ui/spinner/InputSpinner";
19
20
  export * from "./components/ui/spinner/SpinnerImage";
21
+ export * from "./components/ui/spinner/ScreenSpinner";
20
22
  export * from "./components/ui/bread-crumbs/BreadCrumbs";
21
23
  export * from "./components/ui/bread-crumbs/Crumb";
22
24
  export * from "./components/ui/buttons/FlatButton";
@@ -70,3 +72,4 @@ export * from "./components/ui/shimmer-box/ShimmerBox";
70
72
  export * from "./components/ui/step-indicator-list/StepIndicatorItem";
71
73
  export * from "./components/ui/step-indicator-list/StepIndicatorList";
72
74
  export * from "./components/ui/step-indicator-list/StepIndicatorStatus";
75
+ export * from "./components/ui/sticky-summary-footer/StickySummaryFooter";