ados-rcm 1.1.447 → 1.1.449

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.
@@ -73,7 +73,7 @@ export interface IAFileBoxProps extends IABaseProps {
73
73
  *
74
74
  * Description : resources of AFileBox
75
75
  */
76
- resources?: typeof Resources.AFileBox;
76
+ resources?: Partial<typeof Resources.AFileBox>;
77
77
  /**
78
78
  * accept? : string
79
79
  *
@@ -20,6 +20,6 @@ export interface IAFileUploaderProps extends IAWrapProps, IABaseProps {
20
20
  limit?: number;
21
21
  maxFileCount?: number;
22
22
  useError?: TUseValues<boolean>;
23
- resources?: typeof Resources.AFileUploader;
23
+ resources?: Partial<typeof Resources.AFileUploader>;
24
24
  }
25
25
  export declare const AFileUploader: (props: IAFileUploaderProps) => import("react/jsx-runtime").JSX.Element | null;
@@ -1,5 +1,6 @@
1
1
  import { default as React, DetailedHTMLProps } from 'react';
2
2
  import { IABaseProps } from '../ABase/ABase';
3
+ import { Resources } from '../AResource/AResource';
3
4
  /**
4
5
  * AComponent : AFrame : ARowFrame
5
6
  *
@@ -137,6 +138,24 @@ export interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttribut
137
138
  * Description : decides whether to enable drag or not
138
139
  */
139
140
  noDraggable?: boolean;
141
+ /**
142
+ * showRemote? : boolean
143
+ *
144
+ * Description : decides whether to show remote button for expanding/collapsing divider functionality
145
+ */
146
+ showRemote?: boolean;
147
+ /**
148
+ * resources: typeof Resources.ADivideFrame;
149
+ *
150
+ * Description : the resources of the ADivideFrame
151
+ */
152
+ resources?: Partial<typeof Resources.ADivideFrame>;
153
+ /**
154
+ * remoteButtonClassName? : string
155
+ *
156
+ * Description : the className of the remote button
157
+ */
158
+ remoteButtonClassName?: string;
140
159
  }
141
160
  export declare const ADivideFrame: React.MemoExoticComponent<(props: IADivideFrameProps) => import("react/jsx-runtime").JSX.Element>;
142
161
  export {};
@@ -91,6 +91,10 @@ export declare const Resources: {
91
91
  AProgressBar: {
92
92
  Progress: string;
93
93
  };
94
+ ADivideFrame: {
95
+ Expand: string;
96
+ Collapse: string;
97
+ };
94
98
  };
95
99
  export type TResource = typeof Resources;
96
100
  export type TResourceType = keyof TResource;