ados-rcm 1.1.317 → 1.1.319

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  import { TCanCallback } from '../../AUtils/cbF';
2
2
  import { IABaseProps } from '../ABase/ABase';
3
- import { EDir12, IOffset, TActionRef } from '../ATypes/ATypes';
3
+ import { EDir12, IAEvent, IOffset, TActionRef, TPromisable } from '../ATypes/ATypes';
4
4
  export interface IAFloatMenuActions {
5
5
  /**
6
6
  * open : (elem : HTMLElement) => void
@@ -82,6 +82,12 @@ export interface IAFloatMenuProps<T> {
82
82
  * Description : offset of AFloatMenu
83
83
  */
84
84
  offset?: IOffset;
85
+ /**
86
+ * onPaperClick : (e: IAEvent) => void;
87
+ *
88
+ * Description : onPaperClick of the dialog. it runs cancel by default
89
+ */
90
+ onPaperClick?: (e: IAEvent) => TPromisable<any>;
85
91
  /**
86
92
  * onClose? : () => any
87
93
  *
@@ -12,20 +12,20 @@ type CSSModuleClasses = {
12
12
  };
13
13
  type TSDC = 'Title-large' | 'Title-normal' | 'Button-label' | 'Body' | 'Body-reading' | 'Caption' | 'Caption-reading';
14
14
  declare const keys: {
15
- Display1: any;
16
- Display2: any;
17
- Title1: any;
18
- Title2: any;
19
- Title3: any;
20
- Headline1: any;
21
- Headline2: any;
22
- Body1Normal: any;
23
- Body1Reading: any;
24
- Label1: any;
25
- Label2: any;
26
- Caption1: any;
27
- Caption2: any;
28
- NoSelect: any;
15
+ Display1: string;
16
+ Display2: string;
17
+ Title1: string;
18
+ Title2: string;
19
+ Title3: string;
20
+ Headline1: string;
21
+ Headline2: string;
22
+ Body1Normal: string;
23
+ Body1Reading: string;
24
+ Label1: string;
25
+ Label2: string;
26
+ Caption1: string;
27
+ Caption2: string;
28
+ NoSelect: string;
29
29
  IsClickable: string;
30
30
  IsInteractive: string;
31
31
  };
@@ -39,24 +39,24 @@ export declare const sF: {
39
39
  clsx: typeof clsx;
40
40
  sclsx: typeof sclsx;
41
41
  classes: {
42
- NoSelect: any;
42
+ NoSelect: string;
43
43
  IsClickable: string;
44
44
  IsInteractive: string;
45
45
  };
46
46
  typographies: {
47
- Display1: any;
48
- Display2: any;
49
- Title1: any;
50
- Title2: any;
51
- Title3: any;
52
- Headline1: any;
53
- Headline2: any;
54
- Body1Normal: any;
55
- Body1Reading: any;
56
- Label1: any;
57
- Label2: any;
58
- Caption1: any;
59
- Caption2: any;
47
+ Display1: string;
48
+ Display2: string;
49
+ Title1: string;
50
+ Title2: string;
51
+ Title3: string;
52
+ Headline1: string;
53
+ Headline2: string;
54
+ Body1Normal: string;
55
+ Body1Reading: string;
56
+ Label1: string;
57
+ Label2: string;
58
+ Caption1: string;
59
+ Caption2: string;
60
60
  };
61
61
  additionalClasses: IAdditionalClasses;
62
62
  updateKeys: typeof updateKeys;