slate-angular 20.2.0-next.3 → 20.2.0-next.5
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 +35 -44
- package/fesm2022/slate-angular.mjs.map +1 -1
- package/index.d.ts +1 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -391,7 +391,6 @@ declare class SlateEditable implements OnInit, OnChanges, OnDestroy, AfterViewCh
|
|
|
391
391
|
private renderedChildren;
|
|
392
392
|
private virtualVisibleIndexes;
|
|
393
393
|
private measuredHeights;
|
|
394
|
-
private measurePending;
|
|
395
394
|
private refreshVirtualViewAnimId;
|
|
396
395
|
private measureVisibleHeightsAnimId;
|
|
397
396
|
constructor(elementRef: ElementRef, renderer2: Renderer2, cdr: ChangeDetectorRef, ngZone: NgZone, injector: Injector);
|
|
@@ -413,6 +412,7 @@ declare class SlateEditable implements OnInit, OnChanges, OnDestroy, AfterViewCh
|
|
|
413
412
|
composePlaceholderDecorate(editor: Editor): SlatePlaceholder[];
|
|
414
413
|
generateDecorations(): slate.BaseRange[];
|
|
415
414
|
private shouldUseVirtual;
|
|
415
|
+
private businessHeight;
|
|
416
416
|
virtualScrollInitialized: boolean;
|
|
417
417
|
virtualTopHeightElement: HTMLElement;
|
|
418
418
|
virtualBottomHeightElement: HTMLElement;
|
|
@@ -424,7 +424,6 @@ declare class SlateEditable implements OnInit, OnChanges, OnDestroy, AfterViewCh
|
|
|
424
424
|
private diffVirtualView;
|
|
425
425
|
private getBlockHeight;
|
|
426
426
|
private buildAccumulatedHeight;
|
|
427
|
-
private getBufferBelowHeight;
|
|
428
427
|
private scheduleMeasureVisibleHeights;
|
|
429
428
|
private measureVisibleHeights;
|
|
430
429
|
private remeasureHeightByIndics;
|
package/package.json
CHANGED