ados-rcm 1.0.224 → 1.0.225
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/AModule/AComponents/AFrame/AFrame.d.ts +5 -0
- package/dist/index.cjs.js +5 -5
- package/dist/index.es.js +558 -554
- package/package.json +1 -1
|
@@ -51,6 +51,11 @@ interface IAOverflowFrameProps extends IABaseProps {
|
|
|
51
51
|
* </AOverflowFrame>
|
|
52
52
|
*/
|
|
53
53
|
export declare const AOverflowFrame: (props: IAOverflowFrameProps) => import("react/jsx-runtime").JSX.Element;
|
|
54
|
+
interface IASplitterProps<T extends string | number> {
|
|
55
|
+
value: T;
|
|
56
|
+
map: Record<T, JSX.Element>;
|
|
57
|
+
}
|
|
58
|
+
export declare const ASwitchFrame: <T extends string | number>(props: IASplitterProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
54
59
|
interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
|
|
55
60
|
/**
|
|
56
61
|
* pk? : string | number
|