ados-rcm 1.1.448 → 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 +13 -0
- package/dist/AModule/AComponents/AResource/AResource.d.ts +4 -0
- package/dist/index.cjs.js +100 -100
- package/dist/index.es.js +5979 -5973
- 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
|
*
|
@@ -143,6 +144,18 @@ export interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttribut
|
|
143
144
|
* Description : decides whether to show remote button for expanding/collapsing divider functionality
|
144
145
|
*/
|
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;
|
146
159
|
}
|
147
160
|
export declare const ADivideFrame: React.MemoExoticComponent<(props: IADivideFrameProps) => import("react/jsx-runtime").JSX.Element>;
|
148
161
|
export {};
|