slate-angular 20.2.0-next.11 → 20.2.0-next.12
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/slate-angular.mjs +312 -32
- package/fesm2022/slate-angular.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -103,6 +103,7 @@ type OriginEvent = 'drag' | 'copy' | 'cut';
|
|
|
103
103
|
interface AngularEditor extends CustomDOMEditor {
|
|
104
104
|
deleteCutData: () => void;
|
|
105
105
|
selectAll: () => void;
|
|
106
|
+
isVisible: (element: Element$1) => boolean;
|
|
106
107
|
onKeydown: (event: KeyboardEvent) => void;
|
|
107
108
|
onClick: (event: MouseEvent) => void;
|
|
108
109
|
injector: Injector;
|
|
@@ -420,7 +421,6 @@ declare class SlateEditable implements OnInit, OnChanges, OnDestroy, AfterViewCh
|
|
|
420
421
|
virtualTopHeightElement: HTMLElement;
|
|
421
422
|
virtualBottomHeightElement: HTMLElement;
|
|
422
423
|
virtualCenterOutlet: HTMLElement;
|
|
423
|
-
private debugOverlay?;
|
|
424
424
|
initializeVirtualScrolling(): void;
|
|
425
425
|
changeVirtualHeight(topHeight: number, bottomHeight: number): void;
|
|
426
426
|
private debugLog;
|
package/package.json
CHANGED