ados-rcm 1.1.121 → 1.1.123
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/AModule/AComponents/ADialog/ADialog.d.ts +6 -0
- package/dist/AModule/AComponents/ATree/ATree.d.ts +2 -14
- package/dist/AModule/AComponents/ATree/ATreeItem.d.ts +1 -3
- package/dist/AModule/AUtils/dlgF.d.ts +3 -0
- package/dist/index.cjs.js +30 -30
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +5824 -5809
- package/package.json +1 -1
@@ -274,3 +274,9 @@ 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 {};
|
@@ -239,23 +239,11 @@ export interface IATreeProps<T extends IATreeItem<T>> extends IABaseProps {
|
|
239
239
|
*/
|
240
240
|
insertBorder?: boolean;
|
241
241
|
/**
|
242
|
-
*
|
242
|
+
* Width? : number
|
243
243
|
*
|
244
|
-
* Description :
|
244
|
+
* Description : Width of ATree
|
245
245
|
*/
|
246
246
|
width?: number;
|
247
|
-
/**
|
248
|
-
* searchItemClassName? : string
|
249
|
-
*
|
250
|
-
* Description : className of search item
|
251
|
-
*/
|
252
|
-
searchItemClassName?: string;
|
253
|
-
/**
|
254
|
-
* searchItemStyle? : React.CSSProperties
|
255
|
-
*
|
256
|
-
* Description : style of search item
|
257
|
-
*/
|
258
|
-
searchItemStyle?: React.CSSProperties;
|
259
247
|
}
|
260
248
|
/**
|
261
249
|
* AComponent : ATree
|
@@ -40,10 +40,8 @@ export interface IATreeItemProps<T> {
|
|
40
40
|
RightStickyAddon?: TCanCallback<IATreeItemProps<T>, React.ReactNode>;
|
41
41
|
resources: typeof Resources.ATree;
|
42
42
|
containerRef: React.RefObject<HTMLDivElement>;
|
43
|
-
TreeItemClassName?: TCanCallback<IATreeItemProps<T>, string>;
|
44
43
|
TreeItemStyle?: TCanCallback<IATreeItemProps<T>, React.CSSProperties>;
|
45
|
-
|
46
|
-
searchItemStyle?: TCanCallback<IATreeItemProps<T>, React.CSSProperties>;
|
44
|
+
TreeItemClassName?: TCanCallback<IATreeItemProps<T>, string>;
|
47
45
|
}
|
48
46
|
declare enum EIndentState {
|
49
47
|
Collapsed = "Collapsed",
|