ados-rcm 1.0.34 → 1.0.36
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.
- package/dist/AModule/AComponents/ADialog/ADialog.d.ts +8 -2
- package/dist/AModule/AComponents/AResource/AResource.d.ts +5 -2
- package/dist/AModule/AComponents/ATree/ATree.d.ts +0 -6
- package/dist/AModule/AComponents/ATree/ATreeSearch.d.ts +2 -0
- package/dist/index.cjs.js +13 -13
- package/dist/index.es.js +2355 -2350
- package/package.json +1 -1
|
@@ -65,11 +65,17 @@ export interface IADialogProps {
|
|
|
65
65
|
*/
|
|
66
66
|
children?: React.ReactNode;
|
|
67
67
|
/**
|
|
68
|
-
*
|
|
68
|
+
* style? : React.CSSProperties
|
|
69
69
|
*
|
|
70
70
|
* Description : style of the dialog
|
|
71
71
|
*/
|
|
72
|
-
|
|
72
|
+
style?: React.CSSProperties;
|
|
73
|
+
/**
|
|
74
|
+
* bodyStyle? : React.CSSProperties
|
|
75
|
+
*
|
|
76
|
+
* Description : bodyStyle of the dialog
|
|
77
|
+
*/
|
|
78
|
+
bodyStyle?: React.CSSProperties;
|
|
73
79
|
/**
|
|
74
80
|
* onOk : (e: IAEventCallers) => void;
|
|
75
81
|
*
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
export declare const Resources: {
|
|
2
2
|
ADialog: {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
Ok: string;
|
|
4
|
+
Cancel: string;
|
|
5
5
|
};
|
|
6
6
|
ATree: {
|
|
7
7
|
'select n': (n: number) => string;
|
|
8
8
|
'deselect n': (n: number) => string;
|
|
9
|
+
Search: string;
|
|
10
|
+
Items: string;
|
|
11
|
+
'*Click row for single select': string;
|
|
9
12
|
};
|
|
10
13
|
ADatePicker: {
|
|
11
14
|
weekDays: (n: number) => string;
|
|
@@ -153,12 +153,6 @@ export interface IATreeProps<T extends IATreeItem<T>> extends IABaseProps {
|
|
|
153
153
|
* Description : actionRef of ATree
|
|
154
154
|
*/
|
|
155
155
|
actionRef?: TActionRef<IATreeAction>;
|
|
156
|
-
/**
|
|
157
|
-
* HeaderRightAddon? : React.ReactNode
|
|
158
|
-
*
|
|
159
|
-
* Description : HeaderRightAddon of ATree
|
|
160
|
-
*/
|
|
161
|
-
HeaderRightAddon?: React.ReactNode;
|
|
162
156
|
/**
|
|
163
157
|
* RightStickyRenderer? : (props: IATreeItemProps<T>) => React.ReactNode
|
|
164
158
|
*
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IATreeItem, IATreeSearchResult } from './ATree';
|
|
2
|
+
import { Resources } from '../AResource/AResource';
|
|
2
3
|
interface IATreeSearchProps<T extends IATreeItem<T>> {
|
|
3
4
|
searchResult: IATreeSearchResult<T> | undefined;
|
|
4
5
|
initSearch: (inputValue: string) => void;
|
|
@@ -6,6 +7,7 @@ interface IATreeSearchProps<T extends IATreeItem<T>> {
|
|
|
6
7
|
searchDown: () => void;
|
|
7
8
|
isDisabled?: boolean;
|
|
8
9
|
isLoading?: boolean;
|
|
10
|
+
resources: typeof Resources.ATree;
|
|
9
11
|
}
|
|
10
12
|
export declare const ATreeSearch: <T extends IATreeItem<T>>(props: IATreeSearchProps<T>) => React.ReactNode;
|
|
11
13
|
export {};
|