@vertigis/viewer-spec 60.0.0 → 60.1.0
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/messaging/registry/highlights.d.ts +18 -0
- package/messaging/registry/highlights.js +1 -1
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import type { MapExtension } from "@vertigis/arcgis-extensions/mapping/MapExtension.js";
|
|
1
2
|
import type { Command } from "../Command.js";
|
|
2
3
|
import { CommandRegistry } from "../CommandRegistry.js";
|
|
4
|
+
import type { Operation } from "../Operation.js";
|
|
5
|
+
import { OperationRegistry } from "../OperationRegistry.js";
|
|
3
6
|
import type { Features, HasMaps, HasMapsAndFeatures, Maps } from "../common.js";
|
|
4
7
|
export declare class HighlightsCommands extends CommandRegistry {
|
|
5
8
|
protected readonly _prefix = "highlights";
|
|
@@ -65,3 +68,18 @@ export declare class HighlightsCommands extends CommandRegistry {
|
|
|
65
68
|
*/
|
|
66
69
|
get showFocus(): Command<HasMaps>;
|
|
67
70
|
}
|
|
71
|
+
export declare class HighlightsOperations extends OperationRegistry {
|
|
72
|
+
protected readonly _prefix = "highlights";
|
|
73
|
+
/**
|
|
74
|
+
* Returns all highlighted features for a given map. Web only.
|
|
75
|
+
*
|
|
76
|
+
* @webOnly
|
|
77
|
+
*/
|
|
78
|
+
get get(): Operation<MapExtension, Features>;
|
|
79
|
+
/**
|
|
80
|
+
* Returns all focused features for a given map. Web only.
|
|
81
|
+
*
|
|
82
|
+
* @webOnly
|
|
83
|
+
*/
|
|
84
|
+
get getFocused(): Operation<MapExtension, Features>;
|
|
85
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{CommandRegistry as e}from"../CommandRegistry.js";export class HighlightsCommands extends e{_prefix="highlights";get add(){return this._get("add")}get remove(){return this._get("remove")}get clear(){return this._get("clear")}get pulse(){return this._get("pulse")}get addFocus(){return this._get("add-focus")}get removeFocus(){return this._get("remove-focus")}get clearFocus(){return this._get("clear-focus")}get hide(){return this._get("hide")}get hideFocus(){return this._get("hide-focus")}get refresh(){return this._get("refresh")}get show(){return this._get("show")}get showFocus(){return this._get("show-focus")}}
|
|
1
|
+
import{CommandRegistry as e}from"../CommandRegistry.js";import{OperationRegistry as t}from"../OperationRegistry.js";export class HighlightsCommands extends e{_prefix="highlights";get add(){return this._get("add")}get remove(){return this._get("remove")}get clear(){return this._get("clear")}get pulse(){return this._get("pulse")}get addFocus(){return this._get("add-focus")}get removeFocus(){return this._get("remove-focus")}get clearFocus(){return this._get("clear-focus")}get hide(){return this._get("hide")}get hideFocus(){return this._get("hide-focus")}get refresh(){return this._get("refresh")}get show(){return this._get("show")}get showFocus(){return this._get("show-focus")}}export class HighlightsOperations extends t{_prefix="highlights";get get(){return this._get("get")}get getFocused(){return this._get("get-focused")}}
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED