@eddyter/angular 1.0.0 → 1.0.1
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/README.md +35 -35
- package/fesm2022/eddyter-angular.mjs +8 -8
- package/fesm2022/eddyter-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/styles.css +1 -1
- package/types/eddyter-angular.d.ts +4 -4
|
@@ -3,7 +3,7 @@ import { AfterViewInit, OnDestroy, OnChanges, ElementRef, EventEmitter, SimpleCh
|
|
|
3
3
|
import { ControlValueAccessor } from '@angular/forms';
|
|
4
4
|
import { EddyterApiResponse, EddyterCurrentUser, EddyterToolbarConfig, EddyterEditorOptions } from '@eddyter/core';
|
|
5
5
|
|
|
6
|
-
declare class
|
|
6
|
+
declare class Eddyter implements AfterViewInit, OnDestroy, OnChanges, ControlValueAccessor {
|
|
7
7
|
editorRef: ElementRef<HTMLElement>;
|
|
8
8
|
value: string;
|
|
9
9
|
apiKey: string;
|
|
@@ -38,8 +38,8 @@ declare class EddyterAngularComponent implements AfterViewInit, OnDestroy, OnCha
|
|
|
38
38
|
writeValue(value: string): void;
|
|
39
39
|
registerOnChange(fn: (value: string) => void): void;
|
|
40
40
|
registerOnTouched(fn: () => void): void;
|
|
41
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Eddyter, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Eddyter, "eddyter", never, { "value": { "alias": "value"; "required": false; }; "apiKey": { "alias": "apiKey"; "required": true; }; "customVerifyKey": { "alias": "customVerifyKey"; "required": false; }; "user": { "alias": "user"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "darkMode": { "alias": "darkMode"; "required": false; }; "className": { "alias": "className"; "required": false; }; "containerClass": { "alias": "containerClass"; "required": false; }; "contentClass": { "alias": "contentClass"; "required": false; }; "floatingToolbarClass": { "alias": "floatingToolbarClass"; "required": false; }; "style": { "alias": "style"; "required": false; }; "toolbar": { "alias": "toolbar"; "required": false; }; "editor": { "alias": "editor"; "required": false; }; "defaultFontFamilies": { "alias": "defaultFontFamilies"; "required": false; }; "mentionUserList": { "alias": "mentionUserList"; "required": false; }; "enableReactNativeBridge": { "alias": "enableReactNativeBridge"; "required": false; }; }, { "valueChange": "valueChange"; "ready": "ready"; "focus": "focus"; "blur": "blur"; "heightChange": "heightChange"; "authSuccess": "authSuccess"; "authError": "authError"; "previewClick": "previewClick"; }, never, never, true, never>;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
export {
|
|
45
|
+
export { Eddyter };
|