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.
@@ -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
- * 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;
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
- searchItemClassName?: TCanCallback<IATreeItemProps<T>, string>;
46
- searchItemStyle?: TCanCallback<IATreeItemProps<T>, React.CSSProperties>;
44
+ TreeItemClassName?: TCanCallback<IATreeItemProps<T>, string>;
47
45
  }
48
46
  declare enum EIndentState {
49
47
  Collapsed = "Collapsed",
@@ -0,0 +1,3 @@
1
+ export declare const dlgF: {
2
+ closeAllDlgs: () => void;
3
+ };