ados-rcm 1.1.766 → 1.1.767

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.
@@ -336,8 +336,8 @@ export type TADialogStates<T extends string> = {
336
336
  * const testDlgCore = dlgCores.testName;
337
337
  *
338
338
  */
339
- export declare const useADialogCores: <T extends string>(extDlgNames: T[] | readonly T[]) => TADialogCores<T>;
340
339
  export declare const useADialogCore: () => IADialogCore;
340
+ export declare const useADialogCores: <T extends string>(extDlgNames: T[] | readonly T[]) => TADialogCores<T>;
341
341
  export declare const CreateADC: <P extends {
342
342
  dlgCore: IADialogCore;
343
343
  }>(Builder: (props: P) => React.ReactNode) => (props: P) => import("react/jsx-runtime").JSX.Element;