@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/viewer-spec",
3
- "version": "60.0.0",
3
+ "version": "60.1.0",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "description": "VertiGIS Viewer Specification",
6
6
  "type": "module",
package/version.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the VertiGIS Studio Viewer Specification.
3
3
  */
4
- export declare const version = "60.0.0";
4
+ export declare const version = "60.1.0";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the VertiGIS Studio Viewer Specification.
3
3
  */
4
- export const version = "60.0.0";
4
+ export const version = "60.1.0";