ados-rcm 1.1.15 → 1.1.17
Sign up to get free protection for your applications and to get access to all the features.
@@ -53,9 +53,9 @@ interface IAOverflowFrameProps extends IABaseProps {
|
|
53
53
|
export declare const AOverflowFrame: (props: IAOverflowFrameProps) => import("react/jsx-runtime").JSX.Element;
|
54
54
|
interface IASplitterProps<T extends string | number> {
|
55
55
|
value: T;
|
56
|
-
map: Record<T, React.ReactNode
|
56
|
+
map: Partial<Record<T | 'fallback', React.ReactNode>>;
|
57
57
|
}
|
58
|
-
export declare const ASwitchFrame: <T extends string | number>(props: IASplitterProps<T>) => import("react/jsx-runtime").JSX.Element;
|
58
|
+
export declare const ASwitchFrame: <T extends string | number>(props: IASplitterProps<T>) => import("react/jsx-runtime").JSX.Element | Record<"fallback" | T, React.ReactNode>["fallback"] | undefined;
|
59
59
|
interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
|
60
60
|
/**
|
61
61
|
* pk? : string | number
|