@openglobus/og 1.0.0-rc21 → 1.0.0-rc22
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/lib/og.es.js +1 -1
- package/lib/og.es.js.map +1 -1
- package/lib/ui/Dock.d.ts +6 -0
- package/package.json +1 -1
package/lib/ui/Dock.d.ts
CHANGED
|
@@ -83,6 +83,12 @@ export declare class DockManager {
|
|
|
83
83
|
isDocked(dialog: Dialog<any>): boolean;
|
|
84
84
|
attach(dialog: Dialog<any>): void;
|
|
85
85
|
detach(dialog: Dialog<any>): void;
|
|
86
|
+
/**
|
|
87
|
+
* Puts the dialog under the manager's watch, which is all that being known to it means:
|
|
88
|
+
* where it ends up is left to whoever asked - `attach` reads the dialog's own `dock`
|
|
89
|
+
* option, `dock` is told a side outright, and either of them can be the first here.
|
|
90
|
+
*/
|
|
91
|
+
protected _register(dialog: Dialog<any>): void;
|
|
86
92
|
protected _state(dialog: Dialog<any>): DialogState;
|
|
87
93
|
dock(dialog: Dialog<any>, side: DockSide, placement?: DockPlacement): void;
|
|
88
94
|
undock(dialog: Dialog<any>): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openglobus/og",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-rc22",
|
|
4
4
|
"description": "[openglobus](https://www.openglobus.org/) is a javascript/typescript library designed to display interactive 3d maps and planets with map tiles, imagery and vector data, markers, and 3D objects. It uses the WebGL technology, open source, and completely free.",
|
|
5
5
|
"main": "lib/og.es.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|