ados-rcm 1.1.123 → 1.1.125
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 +3 -6
- package/dist/AModule/AComponents/ATree/ATree.d.ts +14 -2
- package/dist/AModule/AComponents/ATree/ATreeItem.d.ts +3 -1
- package/dist/index.cjs.js +28 -28
- package/dist/index.d.ts +0 -1
- package/dist/index.es.js +2933 -2922
- package/package.json +1 -1
- package/dist/AModule/AUtils/dlgF.d.ts +0 -3
@@ -274,9 +274,6 @@ 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
|
-
|
278
|
-
|
279
|
-
|
280
|
-
}
|
281
|
-
export declare const dlgCores: ISavedDlgCore[];
|
282
|
-
export {};
|
277
|
+
export declare const dlgF: {
|
278
|
+
closeAllDlgs: () => void;
|
279
|
+
};
|
@@ -239,11 +239,23 @@ 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;
|
247
259
|
}
|
248
260
|
/**
|
249
261
|
* AComponent : ATree
|
@@ -40,8 +40,10 @@ 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
|
-
TreeItemStyle?: TCanCallback<IATreeItemProps<T>, React.CSSProperties>;
|
44
43
|
TreeItemClassName?: TCanCallback<IATreeItemProps<T>, string>;
|
44
|
+
TreeItemStyle?: TCanCallback<IATreeItemProps<T>, React.CSSProperties>;
|
45
|
+
searchItemClassName?: TCanCallback<IATreeItemProps<T>, string>;
|
46
|
+
searchItemStyle?: TCanCallback<IATreeItemProps<T>, React.CSSProperties>;
|
45
47
|
}
|
46
48
|
declare enum EIndentState {
|
47
49
|
Collapsed = "Collapsed",
|