ados-rcm 1.1.124 → 1.1.126

Sign up to get free protection for your applications and to get access to all the features.
@@ -274,9 +274,6 @@ 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 {};
277
+ export declare const dlgF: {
278
+ closeAllDlgs: () => void;
279
+ };
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  import { TCanCallback } from '../../AUtils/cbF';
3
3
  import { IABaseProps } from '../ABase/ABase';
4
- import { EDir12, IOffset, TActionRef } from '../ATypes/ATypes';
4
+ import { EDir12, IAEvent, IOffset, TActionRef } from '../ATypes/ATypes';
5
5
  export interface IAFloatMenuActions {
6
6
  /**
7
7
  * open : (elem : HTMLElement) => void
@@ -83,6 +83,12 @@ export interface IAFloatMenuProps<T> {
83
83
  * Description : offset of AFloatMenu
84
84
  */
85
85
  offset?: IOffset;
86
+ /**
87
+ * onCancel? : () => any
88
+ *
89
+ * Description : onCancel of AFloatMenu
90
+ */
91
+ onCancel?: (e: IAEvent) => any;
86
92
  /**
87
93
  * onClose? : () => any
88
94
  *