ados-rcm 1.1.383 → 1.1.384
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/AEditorLazy--DcMKFAH.cjs +1 -0
- package/dist/AEditorLazy-BWX_YxRf.js +6 -0
- package/dist/AModule/AComponents/AEditor/AEditor.d.ts +3 -2
- package/dist/AModule/AComponents/AEditor/AEditorLazy.d.ts +2 -0
- package/dist/index-CyUiCd7U.cjs +353 -0
- package/dist/index-DvM04Zhe.js +33841 -0
- package/dist/index.cjs.js +2 -352
- package/dist/index.es.js +131 -33744
- package/package.json +1 -1
@@ -0,0 +1 @@
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-CyUiCd7U.cjs"),o=require("react"),i=o.forwardRef((t,r)=>e.jsxRuntimeExports.jsx(e.ReactQuill,{ref:r,...t}));exports.AEditorLazy=i;
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { default as React } from 'react';
|
1
2
|
import { default as ReactQuill } from 'react-quill-new';
|
2
3
|
import { TUseValues } from '../../AHooks/useValues';
|
3
4
|
import { IABaseProps } from '../ABase/ABase';
|
@@ -5,7 +6,7 @@ import { IAWrapProps } from '../AWrap/AWrap';
|
|
5
6
|
export type TAEditorType = 'Primary' | 'ReadOnly' | 'Raw' | 'Error';
|
6
7
|
export type TAEditorToolbarType = 'Default' | 'Title';
|
7
8
|
export type TAEditorSize = 'Med' | 'Large';
|
8
|
-
export type TAEditorLimitPosition = '
|
9
|
+
export type TAEditorLimitPosition = 'Top' | 'Bottom';
|
9
10
|
export interface IAEditorProps extends IABaseProps, IAWrapProps {
|
10
11
|
onEnterPress?: (value: string) => void;
|
11
12
|
type?: TAEditorType;
|
@@ -28,5 +29,5 @@ export interface IAEditorProps extends IABaseProps, IAWrapProps {
|
|
28
29
|
noLineBreak?: boolean;
|
29
30
|
singleLine?: boolean;
|
30
31
|
}
|
31
|
-
export declare const AEditor: (props: IAEditorProps) => React.ReactNode;
|
32
32
|
export declare const FileSizeTrans: (size: any) => string;
|
33
|
+
export declare const AEditor: React.MemoExoticComponent<(props: IAEditorProps) => React.ReactNode>;
|