ados-rcm 1.0.95 → 1.0.97

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.
@@ -248,6 +248,6 @@ export type TADialogActions<T extends string> = {
248
248
  };
249
249
  export declare const useADialogCores: <T extends string>(...dlgNames: T[]) => TADialogCores<T>;
250
250
  export declare const useADialogCore: () => IADialogCore;
251
- export declare const createADialog: <P extends {
251
+ export declare const createADC: <P extends {
252
252
  dlgCore: IADialogCore;
253
253
  }>(Builder: (props: P) => JSX.Element) => (props: P) => import("react/jsx-runtime").JSX.Element;
@@ -1,5 +1,5 @@
1
- import { IABaseProps } from '../ABase/ABase';
2
1
  import React from 'react';
2
+ import { IABaseProps } from '../ABase/ABase';
3
3
  /**
4
4
  * AComponent : AFrame : ARowFrame
5
5
  *
@@ -84,6 +84,12 @@ interface IADivideFrameProps extends IABaseProps {
84
84
  * Description : the children of the frame
85
85
  */
86
86
  children: React.ReactNode | React.ReactNode[];
87
+ /**
88
+ * childProps? : IABaseProps
89
+ *
90
+ * Description : the props for each children
91
+ */
92
+ childProps?: IABaseProps;
87
93
  }
88
94
  export declare const ADivideFrame: (props: IADivideFrameProps) => import("react/jsx-runtime").JSX.Element;
89
95
  export {};