ados-rcm 1.1.122 → 1.1.124
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/AModule/AComponents/ADialog/ADialog.d.ts +6 -0
- package/dist/AModule/AUtils/dlgF.d.ts +3 -0
- package/dist/index.cjs.js +19 -19
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +4158 -4130
- package/package.json +1 -1
@@ -274,3 +274,9 @@ export declare const useADialogCore: () => IADialogCore;
|
|
274
274
|
export declare const CreateADC: <P extends {
|
275
275
|
dlgCore: IADialogCore;
|
276
276
|
}>(Builder: (props: P) => React.ReactNode) => (props: P) => import("react/jsx-runtime").JSX.Element;
|
277
|
+
interface ISavedDlgCore {
|
278
|
+
id: string;
|
279
|
+
core: IADialogCore;
|
280
|
+
}
|
281
|
+
export declare const dlgCores: ISavedDlgCore[];
|
282
|
+
export {};
|