@stenajs-webui/elements 19.0.0-next.40 → 19.0.0-next.42
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.
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { BoxProps } from "@stenajs-webui/core";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import { PropsWithChildren } from "react";
|
|
4
3
|
import { CssPropColor } from "@stenajs-webui/theme";
|
|
5
|
-
export interface CardyProps extends
|
|
4
|
+
export interface CardyProps extends Omit<BoxProps, "background" | "position"> {
|
|
6
5
|
color?: CssPropColor;
|
|
7
6
|
loading?: boolean;
|
|
8
|
-
className?: string;
|
|
9
7
|
}
|
|
10
|
-
export declare const Cardy: React.FC<
|
|
8
|
+
export declare const Cardy: React.FC<CardyProps>;
|
|
@@ -3,8 +3,8 @@ export declare type ModeOfTransport = "ship" | "rail";
|
|
|
3
3
|
export declare type RouteLegSize = "standard" | "compact" | "relaxed";
|
|
4
4
|
interface LocationAndTimeProps {
|
|
5
5
|
location: string;
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
originalDateTime?: string;
|
|
7
|
+
dateTime: string;
|
|
8
8
|
}
|
|
9
9
|
export interface RouteLegProps {
|
|
10
10
|
variant: ModeOfTransport;
|