@hailin-zheng/editor-core 2.0.16 → 2.0.18

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.
@@ -241,6 +241,11 @@ export declare class DocumentChange {
241
241
  * @private
242
242
  */
243
243
  private handlePasteContent;
244
+ /**
245
+ * 复制单元格向另一个单元格粘贴
246
+ * @private
247
+ */
248
+ private pasteTableToCell;
244
249
  insertSoftBr(): void;
245
250
  insertPageBreakSymbol(): void;
246
251
  /**
@@ -197,6 +197,7 @@ export declare class DataEleListProps extends DataEleBaseTextProps {
197
197
  * 是否允许多选
198
198
  */
199
199
  multiSelect: boolean;
200
+ displayField: 'code' | 'value';
200
201
  clone(dest: DataEleListProps | null): DataEleListProps;
201
202
  getSerializeProps(options: ViewOptions): any;
202
203
  updateProps(props: DataEleListProps): void;
@@ -235,6 +236,7 @@ export declare class DataEleCheckProps extends DataEleBaseProps {
235
236
  falseChar: string;
236
237
  trueStateColor: string;
237
238
  falseStateColor: string;
239
+ style: 'CheckBox' | 'RadioButton';
238
240
  clone(dest: DataEleCheckProps | null): DataEleCheckProps;
239
241
  getSerializeProps(options: ViewOptions): any;
240
242
  updateProps(props: DataEleCheckProps): void;
@@ -17,6 +17,8 @@ export declare class DataElementCheckRenderObject extends LeafRenderObject<DataE
17
17
  clone(): RenderObject;
18
18
  render(e: IRenderData): void;
19
19
  exportHTML(event: IEditorVNodeOptions): any;
20
+ private drawRectCheckbox;
21
+ private drawCircleCheckbox;
20
22
  }
21
23
  export declare class DataElementCheckFactory extends ElementFactory<DataEleCheckProps> {
22
24
  match(type: string): boolean;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "author": "hailin-zheng",
5
5
  "private": false,
6
6
  "license": "ISC",
7
- "version": "2.0.16",
7
+ "version": "2.0.18",
8
8
  "scripts": {},
9
9
  "dependencies": {
10
10
  "bwip-js": "^3.0.5",