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.
- package/dist/AModule/AComponents/AFloatMenu/AFloatMenu.d.ts +7 -1
- package/dist/AModule/AUtils/sF.d.ts +28 -28
- package/dist/index.cjs.js +26 -26
- package/dist/index.es.js +6243 -6516
- package/package.json +6 -6
@@ -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:
|
16
|
-
Display2:
|
17
|
-
Title1:
|
18
|
-
Title2:
|
19
|
-
Title3:
|
20
|
-
Headline1:
|
21
|
-
Headline2:
|
22
|
-
Body1Normal:
|
23
|
-
Body1Reading:
|
24
|
-
Label1:
|
25
|
-
Label2:
|
26
|
-
Caption1:
|
27
|
-
Caption2:
|
28
|
-
NoSelect:
|
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:
|
42
|
+
NoSelect: string;
|
43
43
|
IsClickable: string;
|
44
44
|
IsInteractive: string;
|
45
45
|
};
|
46
46
|
typographies: {
|
47
|
-
Display1:
|
48
|
-
Display2:
|
49
|
-
Title1:
|
50
|
-
Title2:
|
51
|
-
Title3:
|
52
|
-
Headline1:
|
53
|
-
Headline2:
|
54
|
-
Body1Normal:
|
55
|
-
Body1Reading:
|
56
|
-
Label1:
|
57
|
-
Label2:
|
58
|
-
Caption1:
|
59
|
-
Caption2:
|
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;
|