@worktile/theia 19.3.2 → 19.3.4
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@worktile/theia",
|
|
3
|
-
"version": "19.3.
|
|
3
|
+
"version": "19.3.4",
|
|
4
4
|
"description": "theia editor",
|
|
5
5
|
"author": "YanDong <nanianqiumo@foxmail.com>",
|
|
6
6
|
"homepage": "https://github.com/atinc/theia#readme",
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"@angular/core": "^19.0.0",
|
|
38
38
|
"date-fns": "^4.1.0",
|
|
39
|
-
"slate-angular": "^19.1.
|
|
39
|
+
"slate-angular": "^19.1.2",
|
|
40
40
|
"slate": "^0.117.2",
|
|
41
41
|
"slate-dom": "^0.116.0",
|
|
42
|
-
"ngx-tethys": "^19.
|
|
42
|
+
"ngx-tethys": "^19.1.0",
|
|
43
43
|
"ng-codemirror": "^19.0.0",
|
|
44
44
|
"lodash": "^4.17.21",
|
|
45
45
|
"marked": "^12.0.2"
|
package/utils/scrolling.d.ts
CHANGED
|
@@ -1,7 +1,2 @@
|
|
|
1
1
|
import { Editor } from 'slate';
|
|
2
|
-
/**
|
|
3
|
-
* reset the sliding distance when the viewport position of the sliding
|
|
4
|
-
* container coincides with the viewport position of the focus element
|
|
5
|
-
*/
|
|
6
|
-
export declare const scrollIntoView: (editor: Editor, scrollContainer?: string) => void;
|
|
7
2
|
export declare const getEditorScrollContainer: (editor: Editor, scrollContainerSelector?: string) => HTMLElement;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import type { ConnectedPosition, FlexibleConnectedPositionStrategyOrigin, OverlayRef } from '@angular/cdk/overlay';
|
|
2
2
|
export declare const topLeftPosition: ConnectedPosition;
|
|
3
3
|
export declare const bottomLeftPosition: ConnectedPosition;
|
|
4
|
+
export declare const bottomRightPosition: ConnectedPosition;
|
|
5
|
+
export declare const topRightPosition: ConnectedPosition;
|
|
4
6
|
export declare const updatePopoverPosition: (overlayRef: OverlayRef, origin: FlexibleConnectedPositionStrategyOrigin, positions?: ConnectedPosition[]) => void;
|