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.
@@ -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
- interface ISavedDlgCore {
278
- id: string;
279
- core: IADialogCore;
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
- * Width? : number
242
+ * width? : number
243
243
  *
244
- * Description : Width of ATree
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",