@vertigis/viewer-spec 51.9.0 → 51.11.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.
@@ -31,7 +31,7 @@ export declare class Events extends EventRegistry {
31
31
  readonly app: AppEvents;
32
32
  readonly appConfig: AppConfigEvents;
33
33
  readonly auth: AuthEvents;
34
- readonly bookmarks: BookmarkEvents;
34
+ readonly bookmark: BookmarkEvents;
35
35
  readonly device: DeviceEvents;
36
36
  readonly display: DisplayEvents;
37
37
  readonly edit: EditEvents;
@@ -1 +1 @@
1
- import{EventRegistry}from"../EventRegistry.js";import{AppConfigEvents}from"./app-config.js";import{AppEvents}from"./app.js";import{AuthEvents}from"./auth.js";import{BookmarkEvents}from"./bookmark.js";import{DeviceEvents}from"./device.js";import{DisplayEvents}from"./display.js";import{EditEvents}from"./edit.js";import{GeolocationEvents}from"./geolocation.js";import{InputEvents}from"./input.js";import{LayersEvents}from"./layers.js";import{LayoutEvents}from"./layout.js";import{LocationMarkerEvents}from"./location-marker.js";import{MapEvents}from"./map.js";import{OfflineEvents}from"./offline.js";import{PanelEvents}from"./panel.js";import{PhotosEvents}from"./photos.js";import{PortalEvents}from"./portal.js";import{PrintEvents}from"./printing.js";import{RegionEvents}from"./region.js";import{ReportEvents}from"./reports.js";import{ResultsEvents}from"./results.js";import{SearchEvents}from"./search.js";import{SettingsEvents}from"./settings.js";import{ShortcutEvents}from"./shortcut.js";import{TasksEvents}from"./tasks.js";import{UIEvents}from"./ui.js";import{ViewerEvents}from"./viewer.js";import{WorkflowEvents}from"./workflow.js";export class Events extends EventRegistry{constructor(){super(...arguments),this.app=new AppEvents(this._messages),this.appConfig=new AppConfigEvents(this._messages),this.auth=new AuthEvents(this._messages),this.bookmarks=new BookmarkEvents(this._messages),this.device=new DeviceEvents(this._messages),this.display=new DisplayEvents(this._messages),this.edit=new EditEvents(this._messages),this.geolocation=new GeolocationEvents(this._messages),this.input=new InputEvents(this._messages),this.layers=new LayersEvents(this._messages),this.layout=new LayoutEvents(this._messages),this.locationMarker=new LocationMarkerEvents(this._messages),this.map=new MapEvents(this._messages),this.offline=new OfflineEvents(this._messages),this.panel=new PanelEvents(this._messages),this.photos=new PhotosEvents(this._messages),this.portal=new PortalEvents(this._messages),this.printing=new PrintEvents(this._messages),this.region=new RegionEvents(this._messages),this.reports=new ReportEvents(this._messages),this.results=new ResultsEvents(this._messages),this.search=new SearchEvents(this._messages),this.settings=new SettingsEvents(this._messages),this.shortcuts=new ShortcutEvents(this._messages),this.tasks=new TasksEvents(this._messages),this.ui=new UIEvents(this._messages),this.viewer=new ViewerEvents(this._messages),this.workflow=new WorkflowEvents(this._messages)}}
1
+ import{EventRegistry}from"../EventRegistry.js";import{AppConfigEvents}from"./app-config.js";import{AppEvents}from"./app.js";import{AuthEvents}from"./auth.js";import{BookmarkEvents}from"./bookmark.js";import{DeviceEvents}from"./device.js";import{DisplayEvents}from"./display.js";import{EditEvents}from"./edit.js";import{GeolocationEvents}from"./geolocation.js";import{InputEvents}from"./input.js";import{LayersEvents}from"./layers.js";import{LayoutEvents}from"./layout.js";import{LocationMarkerEvents}from"./location-marker.js";import{MapEvents}from"./map.js";import{OfflineEvents}from"./offline.js";import{PanelEvents}from"./panel.js";import{PhotosEvents}from"./photos.js";import{PortalEvents}from"./portal.js";import{PrintEvents}from"./printing.js";import{RegionEvents}from"./region.js";import{ReportEvents}from"./reports.js";import{ResultsEvents}from"./results.js";import{SearchEvents}from"./search.js";import{SettingsEvents}from"./settings.js";import{ShortcutEvents}from"./shortcut.js";import{TasksEvents}from"./tasks.js";import{UIEvents}from"./ui.js";import{ViewerEvents}from"./viewer.js";import{WorkflowEvents}from"./workflow.js";export class Events extends EventRegistry{constructor(){super(...arguments),this.app=new AppEvents(this._messages),this.appConfig=new AppConfigEvents(this._messages),this.auth=new AuthEvents(this._messages),this.bookmark=new BookmarkEvents(this._messages),this.device=new DeviceEvents(this._messages),this.display=new DisplayEvents(this._messages),this.edit=new EditEvents(this._messages),this.geolocation=new GeolocationEvents(this._messages),this.input=new InputEvents(this._messages),this.layers=new LayersEvents(this._messages),this.layout=new LayoutEvents(this._messages),this.locationMarker=new LocationMarkerEvents(this._messages),this.map=new MapEvents(this._messages),this.offline=new OfflineEvents(this._messages),this.panel=new PanelEvents(this._messages),this.photos=new PhotosEvents(this._messages),this.portal=new PortalEvents(this._messages),this.printing=new PrintEvents(this._messages),this.region=new RegionEvents(this._messages),this.reports=new ReportEvents(this._messages),this.results=new ResultsEvents(this._messages),this.search=new SearchEvents(this._messages),this.settings=new SettingsEvents(this._messages),this.shortcuts=new ShortcutEvents(this._messages),this.tasks=new TasksEvents(this._messages),this.ui=new UIEvents(this._messages),this.viewer=new ViewerEvents(this._messages),this.workflow=new WorkflowEvents(this._messages)}}
@@ -280,6 +280,11 @@ export interface GetCoordinateArgs extends HasUITarget {
280
280
  * An optional starting coordinate.
281
281
  */
282
282
  geometry?: Point;
283
+ /**
284
+ * Optionally override the display text on the complete button. Defaults to
285
+ * 'OK'.
286
+ */
287
+ completeLabel?: string;
283
288
  }
284
289
  /**
285
290
  * The result of a map.get-user-coordinates-input operation.
@@ -1937,40 +1937,40 @@
1937
1937
  "auth.token-refreshed:input": {
1938
1938
  "type": "string"
1939
1939
  },
1940
- "bookmarks.added": {
1940
+ "bookmark.added": {
1941
1941
  "description": "Raised when a bookmark is added.",
1942
1942
  "enum": [
1943
- "bookmarks.added"
1943
+ "bookmark.added"
1944
1944
  ]
1945
1945
  },
1946
- "bookmarks.added:input": {
1946
+ "bookmark.added:input": {
1947
1947
  "$ref": "#/definitions/BookmarkEventArgs"
1948
1948
  },
1949
- "bookmarks.deleted": {
1949
+ "bookmark.deleted": {
1950
1950
  "description": "Raised when a bookmark is deleted.",
1951
1951
  "enum": [
1952
- "bookmarks.deleted"
1952
+ "bookmark.deleted"
1953
1953
  ]
1954
1954
  },
1955
- "bookmarks.deleted:input": {
1955
+ "bookmark.deleted:input": {
1956
1956
  "$ref": "#/definitions/BookmarkEventArgs"
1957
1957
  },
1958
- "bookmarks.updated": {
1958
+ "bookmark.updated": {
1959
1959
  "description": "Raised when a bookmark is updated.",
1960
1960
  "enum": [
1961
- "bookmarks.updated"
1961
+ "bookmark.updated"
1962
1962
  ]
1963
1963
  },
1964
- "bookmarks.updated:input": {
1964
+ "bookmark.updated:input": {
1965
1965
  "$ref": "#/definitions/BookmarkEventArgs"
1966
1966
  },
1967
- "bookmarks.viewed": {
1967
+ "bookmark.viewed": {
1968
1968
  "description": "Raised when a bookmark is viewed.",
1969
1969
  "enum": [
1970
- "bookmarks.viewed"
1970
+ "bookmark.viewed"
1971
1971
  ]
1972
1972
  },
1973
- "bookmarks.viewed:input": {
1973
+ "bookmark.viewed:input": {
1974
1974
  "$ref": "#/definitions/BookmarkEventArgs"
1975
1975
  },
1976
1976
  "device.keyboard-hidden": {
@@ -11335,16 +11335,16 @@
11335
11335
  "$ref": "#/definitions/auth.token-refreshed"
11336
11336
  },
11337
11337
  {
11338
- "$ref": "#/definitions/bookmarks.added"
11338
+ "$ref": "#/definitions/bookmark.added"
11339
11339
  },
11340
11340
  {
11341
- "$ref": "#/definitions/bookmarks.deleted"
11341
+ "$ref": "#/definitions/bookmark.deleted"
11342
11342
  },
11343
11343
  {
11344
- "$ref": "#/definitions/bookmarks.updated"
11344
+ "$ref": "#/definitions/bookmark.updated"
11345
11345
  },
11346
11346
  {
11347
- "$ref": "#/definitions/bookmarks.viewed"
11347
+ "$ref": "#/definitions/bookmark.viewed"
11348
11348
  },
11349
11349
  {
11350
11350
  "$ref": "#/definitions/device.keyboard-hidden"
@@ -3100,6 +3100,10 @@
3100
3100
  "attributes": {
3101
3101
  "description": "Optional layout XML attributes to be used for the transient UI container."
3102
3102
  },
3103
+ "completeLabel": {
3104
+ "description": "Optionally override the display text on the complete button. Defaults to 'OK'.",
3105
+ "type": "string"
3106
+ },
3103
3107
  "geometry": {
3104
3108
  "$ref": "#/definitions/esri.Point",
3105
3109
  "description": "An optional starting coordinate."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/viewer-spec",
3
- "version": "51.9.0",
3
+ "version": "51.11.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 = "51.9.0";
4
+ export declare const version = "51.11.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 = "51.9.0";
4
+ export const version = "51.11.0";