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.
- package/dist/AModule/AComponents/AFileBox/AFileBox.d.ts +1 -1
- package/dist/AModule/AComponents/AFileUploder/AFileUploader.d.ts +1 -1
- package/dist/AModule/AComponents/AFrame/AFrame.d.ts +19 -0
- package/dist/AModule/AComponents/AResource/AResource.d.ts +4 -0
- package/dist/index.cjs.js +108 -108
- package/dist/index.es.js +6948 -6906
- package/package.json +1 -1
@@ -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 {};
|