ados-rcm 1.1.765 → 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.
@@ -323,6 +323,19 @@ export type TADialogActions<T extends string> = {
323
323
  export type TADialogStates<T extends string> = {
324
324
  [key in T]: IADialogState;
325
325
  };
326
+ /**
327
+ * useADialogCores
328
+ *
329
+ * Description : useADialogCores is a hook that creates dialog cores.
330
+ *
331
+ * Basic Usage : You should use 'useADialogCores' or 'useADialogCore' to make dialog core,
332
+ *
333
+ * if (case 1)
334
+ * const dlgCores = useADialogCores(['dlgName', 'testName']);
335
+ * const dlgCore = dlgCores.dlgName;
336
+ * const testDlgCore = dlgCores.testName;
337
+ *
338
+ */
326
339
  export declare const useADialogCore: () => IADialogCore;
327
340
  export declare const useADialogCores: <T extends string>(extDlgNames: T[] | readonly T[]) => TADialogCores<T>;
328
341
  export declare const CreateADC: <P extends {