atr-components 3.0.19 → 3.0.21
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/fesm2022/atr-components.mjs +66 -21
- package/fesm2022/atr-components.mjs.map +1 -1
- package/index.d.ts +5 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1371,15 +1371,18 @@ declare class ViewFormComponent implements OnInit {
|
|
|
1371
1371
|
}
|
|
1372
1372
|
|
|
1373
1373
|
declare class EditorComponent implements ControlValueAccessor, AfterViewInit, OnDestroy {
|
|
1374
|
+
private uploadOssService;
|
|
1374
1375
|
apiKey_editor: string;
|
|
1375
1376
|
value: any;
|
|
1376
1377
|
editorConfig: any;
|
|
1378
|
+
imgDir: string;
|
|
1377
1379
|
editor: any;
|
|
1378
1380
|
onChangeListener: any;
|
|
1379
1381
|
onTouchedListener: any;
|
|
1380
1382
|
initialized: boolean;
|
|
1381
|
-
constructor();
|
|
1383
|
+
constructor(uploadOssService: UploadOssService);
|
|
1382
1384
|
ngAfterViewInit(): void;
|
|
1385
|
+
uploadOss(blobInfo: any): Promise<string>;
|
|
1383
1386
|
writeValue(value: string): void;
|
|
1384
1387
|
registerOnChange(fn: any): void;
|
|
1385
1388
|
registerOnTouched(fn: any): void;
|
|
@@ -1387,7 +1390,7 @@ declare class EditorComponent implements ControlValueAccessor, AfterViewInit, On
|
|
|
1387
1390
|
onEditorChange(content: any): void;
|
|
1388
1391
|
ngOnDestroy(): void;
|
|
1389
1392
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorComponent, never>;
|
|
1390
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EditorComponent, "app-editor", never, { "apiKey_editor": { "alias": "apiKey_editor"; "required": false; }; "value": { "alias": "value"; "required": false; }; "editorConfig": { "alias": "editorConfig"; "required": false; }; }, {}, never, never, false, never>;
|
|
1393
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditorComponent, "app-editor", never, { "apiKey_editor": { "alias": "apiKey_editor"; "required": false; }; "value": { "alias": "value"; "required": false; }; "editorConfig": { "alias": "editorConfig"; "required": false; }; "imgDir": { "alias": "imgDir"; "required": false; }; }, {}, never, never, false, never>;
|
|
1391
1394
|
}
|
|
1392
1395
|
|
|
1393
1396
|
declare class AtrSharedModule {
|