ados-rcm 1.1.376 → 1.1.378
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/AEditor/AEditor.d.ts +5 -0
- package/dist/index.cjs.js +105 -105
- package/dist/index.es.js +6348 -6288
- package/package.json +1 -1
@@ -4,6 +4,7 @@ import { IABaseProps } from '../ABase/ABase';
|
|
4
4
|
import { IAWrapProps } from '../AWrap/AWrap';
|
5
5
|
export type TAEditorType = 'Primary' | 'ReadOnly' | 'Raw' | 'Error';
|
6
6
|
export type TAEditorSize = 'Med' | 'Large';
|
7
|
+
export type TAEditorLimitPosition = 'top' | 'bottom';
|
7
8
|
export interface IAEditorProps extends IABaseProps, IAWrapProps {
|
8
9
|
onEnterPress?: (value: string) => void;
|
9
10
|
type?: TAEditorType;
|
@@ -20,6 +21,10 @@ export interface IAEditorProps extends IABaseProps, IAWrapProps {
|
|
20
21
|
maxHeight?: number;
|
21
22
|
toolbarSize?: TAEditorSize;
|
22
23
|
readOnly?: boolean;
|
24
|
+
limitPosition?: TAEditorLimitPosition;
|
25
|
+
maxLength?: number;
|
26
|
+
noLineBreak?: boolean;
|
27
|
+
toolbar?: any;
|
23
28
|
}
|
24
29
|
export declare const AEditor: (props: IAEditorProps) => React.ReactNode;
|
25
30
|
export declare const FileSizeTrans: (size: any) => string;
|