ados-rcm 1.1.562 → 1.1.564
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.
@@ -1,6 +1,12 @@
|
|
1
1
|
import { IAProgressBarProps } from '../AProgressBar/AProgressBar';
|
2
2
|
import { EDir4 } from '../ATypes/ATypes';
|
3
3
|
export interface IABaseProps extends React.HTMLAttributes<HTMLElement> {
|
4
|
+
/**
|
5
|
+
* ProgressRenderer? : React.ComponentType<IAProgressBarProps>
|
6
|
+
*
|
7
|
+
* Description : component for rendering progress bar
|
8
|
+
*/
|
9
|
+
ProgressRenderer?: React.ComponentType<IAProgressBarProps>;
|
4
10
|
/**
|
5
11
|
* abaseCallbackRef? : (instance: HTMLDivElement | null) => void
|
6
12
|
*
|
@@ -44,6 +44,12 @@ export type TADialogContext<P> = (props: P) => {
|
|
44
44
|
isOkDisabled: boolean;
|
45
45
|
};
|
46
46
|
export interface IADialogProps {
|
47
|
+
/**
|
48
|
+
* ProgressRenderer? : React.ComponentType<IAProgressBarProps>
|
49
|
+
*
|
50
|
+
* Description : component for rendering progress bar
|
51
|
+
*/
|
52
|
+
ProgressRenderer?: React.ComponentType<IAProgressBarProps>;
|
47
53
|
/**
|
48
54
|
* actionStyle? : React.CSSProperties
|
49
55
|
*
|
@@ -28,12 +28,6 @@ export interface IAFloatMenuContentProps<T> {
|
|
28
28
|
* Description : defKey of AFloatMenu
|
29
29
|
*/
|
30
30
|
defKey: keyof T;
|
31
|
-
/**
|
32
|
-
* item : T
|
33
|
-
*
|
34
|
-
* Description : item of AFloatMenu
|
35
|
-
*/
|
36
|
-
item: T;
|
37
31
|
}
|
38
32
|
export interface IAFloatMenuDef<T> extends Omit<IABaseProps, 'content'> {
|
39
33
|
/**
|
@@ -43,11 +37,11 @@ export interface IAFloatMenuDef<T> extends Omit<IABaseProps, 'content'> {
|
|
43
37
|
*/
|
44
38
|
content?: TCanCallback<IAFloatMenuContentProps<T>, React.ReactNode>;
|
45
39
|
/**
|
46
|
-
* noDisplay? :
|
40
|
+
* noDisplay? : boolean
|
47
41
|
*
|
48
42
|
* Description : decides whether to display the menu or not
|
49
43
|
*/
|
50
|
-
noDisplay?:
|
44
|
+
noDisplay?: boolean;
|
51
45
|
}
|
52
46
|
export type TAFloatMenuDefs<T> = {
|
53
47
|
[key in keyof T]?: IAFloatMenuDef<T>;
|
@@ -71,12 +65,6 @@ export interface IAFloatMenuProps<T> {
|
|
71
65
|
* Description : defs of AFloatMenu
|
72
66
|
*/
|
73
67
|
defs: TAFloatMenuDefs<T>;
|
74
|
-
/**
|
75
|
-
* items : T[]
|
76
|
-
*
|
77
|
-
* Description : items data for AFloatMenu
|
78
|
-
*/
|
79
|
-
items?: T[];
|
80
68
|
/**
|
81
69
|
* offset? : IOffset
|
82
70
|
*
|