@vertigis/viewer-spec 48.2.0 → 48.5.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.
@@ -17,6 +17,15 @@ export interface LayerEventArgs {
17
17
  */
18
18
  export interface ILayerContent {
19
19
  }
20
+ /**
21
+ * Arguments for the "layers.show-labels" and "layers.hide-labels" commands. If
22
+ * no 'maps' are specified, all active maps in the layout will be targeted. If
23
+ * no 'layers' are specified, all viable layers and sublayers within the 'maps'
24
+ * will be affected. If the 'layers' property includes (Sub)Layer references or
25
+ * ESRI (Sub)Layers, they must exist within one of the 'maps'.
26
+ */
27
+ export interface SetLabelVisibilityArgs extends HasLayers, HasMaps {
28
+ }
20
29
  /**
21
30
  * Arguments for the layer.set-symbol command.
22
31
  */
@@ -34,6 +43,18 @@ export declare class LayersCommands extends CommandRegistry {
34
43
  * @webOnly
35
44
  */
36
45
  get setSymbol(): Command<SetSymbolArgs>;
46
+ /**
47
+ * Turns on the layer's labels on the map.
48
+ *
49
+ * @webOnly
50
+ */
51
+ get showLabels(): Command<SetLabelVisibilityArgs>;
52
+ /**
53
+ * Turns off the layer's labels on the map.
54
+ *
55
+ * @webOnly
56
+ */
57
+ get hideLabels(): Command<SetLabelVisibilityArgs>;
37
58
  }
38
59
  export declare class LayersEvents extends EventRegistry {
39
60
  /**
@@ -1 +1 @@
1
- import{CommandRegistry}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";export class LayersCommands extends CommandRegistry{get ensureCanSetSymbol(){return this._messages.command("layers.ensure-can-set-symbol")}get setSymbol(){return this._messages.command("layers.set-symbol")}}export class LayersEvents extends EventRegistry{get visibilityChanged(){return this._messages.event("layers.visibility-changed")}}
1
+ import{CommandRegistry}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";export class LayersCommands extends CommandRegistry{get ensureCanSetSymbol(){return this._messages.command("layers.ensure-can-set-symbol")}get setSymbol(){return this._messages.command("layers.set-symbol")}get showLabels(){return this._messages.command("layers.show-labels")}get hideLabels(){return this._messages.command("layers.hide-labels")}}export class LayersEvents extends EventRegistry{get visibilityChanged(){return this._messages.event("layers.visibility-changed")}}
@@ -19,9 +19,10 @@ import type { Event } from "../Event.js";
19
19
  import { EventRegistry } from "../EventRegistry.js";
20
20
  import type { Operation } from "../Operation.js";
21
21
  import { OperationRegistry } from "../OperationRegistry.js";
22
- import type { Features, FeaturesLike, Geometries, GeometryLike, GraphicsLike, HasUITarget, Layers, LayersLike, Maps, MapsLike, ViewpointLike } from "../common.js";
22
+ import type { Features, FeaturesLike, Geometries, GeometryLike, GraphicsLike, HasMaps, HasUITarget, Layers, LayersLike, Maps, MapsLike, ViewpointLike } from "../common.js";
23
23
  import type { MapExtensionArgs } from "../mobile.js";
24
24
  import type { EnhancedFileData } from "./file.js";
25
+ import type { PortalItemData } from "./portal.js";
25
26
  import type { GeometryEditorSettings } from "./sketching.js";
26
27
  /**
27
28
  * Arguments for the various map events.
@@ -953,6 +954,13 @@ export declare class MapOperations extends OperationRegistry {
953
954
  * @mobileOnly
954
955
  */
955
956
  get exportImage(): Operation<ExportMapImageArgs, EnhancedFileData>;
957
+ /**
958
+ * Exports the current configuration of the selected map component as a web
959
+ * map or scene.
960
+ *
961
+ * @webOnly
962
+ */
963
+ get exportWebMapOrScene(): Operation<HasMaps, PortalItemData>;
956
964
  /**
957
965
  * Returns markup from the specified map that are intersected by the
958
966
  * supplied geometry.
@@ -1 +1 @@
1
- import{CommandRegistry}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";import{OperationRegistry}from"../OperationRegistry.js";export class MapCommands extends CommandRegistry{get addMarkup(){return this._messages.command("map.add-markup")}get addLayers(){return this._messages.command("map.add-layers")}get applyFilterEffect(){return this._messages.command("map.apply-filter-effect")}get applyLayerPreset(){return this._messages.command("map.apply-layer-preset")}get createNote(){return this._messages.command("map.create-note")}get editNote(){return this._messages.command("map.edit-note")}get removeFilterEffects(){return this._messages.command("map.remove-filter-effects")}get clearFilterEffects(){return this._messages.command("map.clear-filter-effects")}get clearMarkup(){return this._messages.command("map.clear-markup")}get disableMapClick(){return this._messages.command("map.disable-map-click")}get displayExtentSelector(){return this._messages.command("map.display-extent-selector")}get enableMapClick(){return this._messages.command("map.enable-map-click")}get goToFeatures(){return this._messages.command("map.go-to-features")}get goToGeometry(){return this._messages.command("map.go-to-geometry")}get goToViewpoint(){return this._messages.command("map.go-to-viewpoint")}get goToScale(){return this._messages.command("map.go-to-scale")}get goToInitialViewpoint(){return this._messages.command("map.go-to-initial-viewpoint")}get goToLayerExtent(){return this._messages.command("map.go-to-layer-extent")}get hideExtentSelector(){return this._messages.command("map.hide-extent-selector")}get panToFeatures(){return this._messages.command("map.pan-to-features")}get panToGeometry(){return this._messages.command("map.pan-to-geometry")}get pauseSketch(){return this._messages.command("map.pause-sketch")}get removeLayers(){return this._messages.command("map.remove-layers")}get replace(){return this._messages.command("map.replace")}get replaceAdditionalLayers(){return this._messages.command("map.replace-additional-layers")}get replaceMmpk(){return this._messages.command("map.replace-mmpk")}get resumeSketch(){return this._messages.command("map.resume-sketch")}get rotateBy(){return this._messages.command("map.rotate-by")}get rotateTo(){return this._messages.command("map.rotate-to")}get refresh(){return this._messages.command("map.refresh")}get updateLayer(){return this._messages.command("map.update-layer")}get zoomToFeatures(){return this._messages.command("map.zoom-to-features")}get zoomToGeometry(){return this._messages.command("map.zoom-to-geometry")}get zoomIn(){return this._messages.command("map.zoom-in")}get zoomOut(){return this._messages.command("map.zoom-out")}get zoomToScale(){return this._messages.command("map.zoom-to-scale")}get zoomToInitialViewpoint(){return this._messages.command("map.zoom-to-initial-viewpoint")}get zoomToViewpoint(){return this._messages.command("map.zoom-to-viewpoint")}get zoomToLayerExtent(){return this._messages.command("map.zoom-to-layer-extent")}get zoomToLayerVisibleScale(){return this._messages.command("map.zoom-to-layer-visible-scale")}}export class MapEvents extends EventRegistry{get initialized(){return this._messages.event("map.initialized")}get initializing(){return this._messages.event("map.initializing")}get navigationCompleted(){return this._messages.event("map.navigation-completed")}get refreshed(){return this._messages.event("map.refreshed")}get refreshing(){return this._messages.event("map.refreshing")}get rotated(){return this._messages.event("map.rotated")}get rotating(){return this._messages.event("map.rotating")}get viewModeChanged(){return this._messages.event("map.view-mode-changed")}get viewpointChanged(){return this._messages.event("map.viewpoint-changed")}}export class MapOperations extends OperationRegistry{get getUserCoordinatesInput(){return this._messages.operation("map.get-user-coordinates-input")}get getCoordinateTransformation(){return this._messages.operation("map.get-coordinate-transformation")}get exportImage(){return this._messages.operation("map.export-image")}get getMarkup(){return this._messages.operation("map.get-markup")}get getExtent(){return this._messages.operation("map.get-extent")}get getGeometryFromSelector(){return this._messages.operation("map.get-geometry-from-selector")}get getInitialViewpoint(){return this._messages.operation("map.get-initial-viewpoint")}get getViewpoint(){return this._messages.operation("map.get-viewpoint")}get getSpatialReference(){return this._messages.operation("map.get-spatial-reference")}get getVisibleCenter(){return this._messages.operation("map.get-visible-center")}get hide(){return this._messages.operation("map.hide")}get show(){return this._messages.operation("map.show")}get startSketch(){return this._messages.operation("map.start-sketch")}get stopSketch(){return this._messages.operation("map.stop-sketch")}get getViewInsets(){return this._messages.operation("map.get-view-insets")}}
1
+ import{CommandRegistry}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";import{OperationRegistry}from"../OperationRegistry.js";export class MapCommands extends CommandRegistry{get addMarkup(){return this._messages.command("map.add-markup")}get addLayers(){return this._messages.command("map.add-layers")}get applyFilterEffect(){return this._messages.command("map.apply-filter-effect")}get applyLayerPreset(){return this._messages.command("map.apply-layer-preset")}get createNote(){return this._messages.command("map.create-note")}get editNote(){return this._messages.command("map.edit-note")}get removeFilterEffects(){return this._messages.command("map.remove-filter-effects")}get clearFilterEffects(){return this._messages.command("map.clear-filter-effects")}get clearMarkup(){return this._messages.command("map.clear-markup")}get disableMapClick(){return this._messages.command("map.disable-map-click")}get displayExtentSelector(){return this._messages.command("map.display-extent-selector")}get enableMapClick(){return this._messages.command("map.enable-map-click")}get goToFeatures(){return this._messages.command("map.go-to-features")}get goToGeometry(){return this._messages.command("map.go-to-geometry")}get goToViewpoint(){return this._messages.command("map.go-to-viewpoint")}get goToScale(){return this._messages.command("map.go-to-scale")}get goToInitialViewpoint(){return this._messages.command("map.go-to-initial-viewpoint")}get goToLayerExtent(){return this._messages.command("map.go-to-layer-extent")}get hideExtentSelector(){return this._messages.command("map.hide-extent-selector")}get panToFeatures(){return this._messages.command("map.pan-to-features")}get panToGeometry(){return this._messages.command("map.pan-to-geometry")}get pauseSketch(){return this._messages.command("map.pause-sketch")}get removeLayers(){return this._messages.command("map.remove-layers")}get replace(){return this._messages.command("map.replace")}get replaceAdditionalLayers(){return this._messages.command("map.replace-additional-layers")}get replaceMmpk(){return this._messages.command("map.replace-mmpk")}get resumeSketch(){return this._messages.command("map.resume-sketch")}get rotateBy(){return this._messages.command("map.rotate-by")}get rotateTo(){return this._messages.command("map.rotate-to")}get refresh(){return this._messages.command("map.refresh")}get updateLayer(){return this._messages.command("map.update-layer")}get zoomToFeatures(){return this._messages.command("map.zoom-to-features")}get zoomToGeometry(){return this._messages.command("map.zoom-to-geometry")}get zoomIn(){return this._messages.command("map.zoom-in")}get zoomOut(){return this._messages.command("map.zoom-out")}get zoomToScale(){return this._messages.command("map.zoom-to-scale")}get zoomToInitialViewpoint(){return this._messages.command("map.zoom-to-initial-viewpoint")}get zoomToViewpoint(){return this._messages.command("map.zoom-to-viewpoint")}get zoomToLayerExtent(){return this._messages.command("map.zoom-to-layer-extent")}get zoomToLayerVisibleScale(){return this._messages.command("map.zoom-to-layer-visible-scale")}}export class MapEvents extends EventRegistry{get initialized(){return this._messages.event("map.initialized")}get initializing(){return this._messages.event("map.initializing")}get navigationCompleted(){return this._messages.event("map.navigation-completed")}get refreshed(){return this._messages.event("map.refreshed")}get refreshing(){return this._messages.event("map.refreshing")}get rotated(){return this._messages.event("map.rotated")}get rotating(){return this._messages.event("map.rotating")}get viewModeChanged(){return this._messages.event("map.view-mode-changed")}get viewpointChanged(){return this._messages.event("map.viewpoint-changed")}}export class MapOperations extends OperationRegistry{get getUserCoordinatesInput(){return this._messages.operation("map.get-user-coordinates-input")}get getCoordinateTransformation(){return this._messages.operation("map.get-coordinate-transformation")}get exportImage(){return this._messages.operation("map.export-image")}get exportWebMapOrScene(){return this._messages.operation("map.export-web-map-or-scene")}get getMarkup(){return this._messages.operation("map.get-markup")}get getExtent(){return this._messages.operation("map.get-extent")}get getGeometryFromSelector(){return this._messages.operation("map.get-geometry-from-selector")}get getInitialViewpoint(){return this._messages.operation("map.get-initial-viewpoint")}get getViewpoint(){return this._messages.operation("map.get-viewpoint")}get getSpatialReference(){return this._messages.operation("map.get-spatial-reference")}get getVisibleCenter(){return this._messages.operation("map.get-visible-center")}get hide(){return this._messages.operation("map.hide")}get show(){return this._messages.operation("map.show")}get startSketch(){return this._messages.operation("map.start-sketch")}get stopSketch(){return this._messages.operation("map.stop-sketch")}get getViewInsets(){return this._messages.operation("map.get-view-insets")}}
@@ -2,6 +2,7 @@ import type { Command } from "../Command.js";
2
2
  import { CommandRegistry } from "../CommandRegistry.js";
3
3
  import type { Event } from "../Event.js";
4
4
  import { EventRegistry } from "../EventRegistry.js";
5
+ import type { Model } from "../common.js";
5
6
  /**
6
7
  * Arguments for the "panel.anchor-host-panel" command.
7
8
  */
@@ -80,6 +81,20 @@ export declare class PanelCommands extends CommandRegistry {
80
81
  * @mobileOnly
81
82
  */
82
83
  get snapHostPanel(): Command<SnapHostPanelArgs>;
84
+ /**
85
+ * Closes the popout window for a panel and restores the original
86
+ * layout.
87
+ *
88
+ * @webOnly
89
+ */
90
+ get popIn(): Command<Model["id"] | Model>;
91
+ /**
92
+ * Removes a panel from the main layout and opens it in a new popout
93
+ * window.
94
+ *
95
+ * @webOnly
96
+ */
97
+ get popOut(): Command<Model["id"] | Model>;
83
98
  }
84
99
  export declare class PanelEvents extends EventRegistry {
85
100
  /**
@@ -1 +1 @@
1
- import{CommandRegistry}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";export var SnapPosition;!function(e){e.HIDDEN="hidden",e.MIDDLE="middle",e.TOP="top"}(SnapPosition||(SnapPosition={}));export class PanelCommands extends CommandRegistry{get openHostPanel(){return this._messages.command("panel.open-host-panel")}get closeHostPanel(){return this._messages.command("panel.close-host-panel")}get anchorHostPanel(){return this._messages.command("panel.anchor-host-panel")}get snapHostPanel(){return this._messages.command("panel.snap-host-panel")}}export class PanelEvents extends EventRegistry{get hostPanelComponentChanged(){return this._messages.event("panel.host-panel-component-changed")}}
1
+ import{CommandRegistry}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";export var SnapPosition;!function(e){e.HIDDEN="hidden",e.MIDDLE="middle",e.TOP="top"}(SnapPosition||(SnapPosition={}));export class PanelCommands extends CommandRegistry{get openHostPanel(){return this._messages.command("panel.open-host-panel")}get closeHostPanel(){return this._messages.command("panel.close-host-panel")}get anchorHostPanel(){return this._messages.command("panel.anchor-host-panel")}get snapHostPanel(){return this._messages.command("panel.snap-host-panel")}get popIn(){return this._messages.command("panel.pop-in")}get popOut(){return this._messages.command("panel.pop-out")}}export class PanelEvents extends EventRegistry{get hostPanelComponentChanged(){return this._messages.event("panel.host-panel-component-changed")}}
@@ -1,3 +1,4 @@
1
+ import type PortalItem from "@arcgis/core/portal/PortalItem";
1
2
  import type { Event } from "../Event.js";
2
3
  import { EventRegistry } from "../EventRegistry.js";
3
4
  import type { Operation } from "../Operation.js";
@@ -27,6 +28,41 @@ export interface ChooseLayersResult extends HasMaps {
27
28
  */
28
29
  layers?: LayersLike;
29
30
  }
31
+ /**
32
+ * Information about a portal item to be saved.
33
+ */
34
+ export interface PortalItemData {
35
+ /**
36
+ * The JSON data associated with the item.
37
+ */
38
+ data: unknown;
39
+ /**
40
+ * The portal type of the item.
41
+ */
42
+ type: string;
43
+ /**
44
+ * The URL of a thumbnail for the item.
45
+ */
46
+ thumbnail?: string;
47
+ }
48
+ /**
49
+ * Arguments for the 'portal.create-or-update-item' operation.
50
+ */
51
+ export interface CreateOrUpdateItemArgs extends PortalItemData {
52
+ /**
53
+ * The title of the resulting portal item. Must be provided if `showUI` is `false`.
54
+ */
55
+ title?: string;
56
+ /**
57
+ * Whether to show UI elements associated with this operation. Defaults to `true`.
58
+ */
59
+ showUI?: boolean;
60
+ /**
61
+ * Whether to prompt before overwriting an existing item. This must be set
62
+ * to `false` to allow overwriting if `showUI` is also `false`. Defaults to `true`.
63
+ */
64
+ promptForOverwrite?: boolean;
65
+ }
30
66
  export declare class PortalEvents extends EventRegistry {
31
67
  /**
32
68
  * Raised when an ArcGIS Portal is initialized.
@@ -43,4 +79,10 @@ export declare class PortalOperations extends OperationRegistry {
43
79
  * @webOnly
44
80
  */
45
81
  get chooseLayers(): Operation<ChooseLayersOptions, ChooseLayersResult>;
82
+ /**
83
+ * Creates or updates a portal item from the supplied data.
84
+ *
85
+ * @webOnly
86
+ */
87
+ get createOrUpdateItem(): Operation<CreateOrUpdateItemArgs, PortalItem>;
46
88
  }
@@ -1 +1 @@
1
- import{EventRegistry}from"../EventRegistry.js";import{OperationRegistry}from"../OperationRegistry.js";export class PortalEvents extends EventRegistry{get initialized(){return this._messages.event("portal.initialized")}}export class PortalOperations extends OperationRegistry{get chooseLayers(){return this._messages.operation("portal.choose-layers")}}
1
+ import{EventRegistry}from"../EventRegistry.js";import{OperationRegistry}from"../OperationRegistry.js";export class PortalEvents extends EventRegistry{get initialized(){return this._messages.event("portal.initialized")}}export class PortalOperations extends OperationRegistry{get chooseLayers(){return this._messages.operation("portal.choose-layers")}get createOrUpdateItem(){return this._messages.operation("portal.create-or-update-item")}}
@@ -187,6 +187,23 @@ export interface FocusArgs {
187
187
  */
188
188
  timeout?: number;
189
189
  }
190
+ /**
191
+ * Payload for a VisualStateChangeEvent.
192
+ */
193
+ export interface VisualStateChangeEvent {
194
+ /**
195
+ * The ID of the component whose visual state has changed.
196
+ */
197
+ component: ComponentId;
198
+ /**
199
+ * The visual state of the component before the change.
200
+ */
201
+ previous: VisualState;
202
+ /**
203
+ * The new visual state of the component.
204
+ */
205
+ current: VisualState;
206
+ }
190
207
  /**
191
208
  * A component's visual state. The values will vary based on the component type.
192
209
  */
@@ -414,4 +431,10 @@ export declare class UIEvents extends EventRegistry {
414
431
  * @mobileOnly
415
432
  */
416
433
  get themeChanged(): Event;
434
+ /**
435
+ * Raised when a component's visual state is changed.
436
+ *
437
+ * @webOnly
438
+ */
439
+ get visualStateChanged(): Event<VisualStateChangeEvent>;
417
440
  }
@@ -1 +1 @@
1
- import{CommandRegistry}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";import{OperationRegistry}from"../OperationRegistry.js";export var NotificationCategory;!function(e){e.ERROR="error",e.INFO="info",e.SUCCESS="success",e.WARNING="warning"}(NotificationCategory||(NotificationCategory={}));export var NotificationType;!function(e){e.AUTO="auto",e.APP="app",e.SYSTEM="system"}(NotificationType||(NotificationType={}));export var Position;!function(e){e.BOTTOM="bottom",e.LEFT="left",e.RIGHT="right",e.TOP="top"}(Position||(Position={}));export class UICommands extends CommandRegistry{get activate(){return this._messages.command("ui.activate")}get activeToggle(){return this._messages.command("ui.active-toggle")}get alert(){return this._messages.command("ui.alert")}get await(){return this._messages.command("ui.await")}get deactivate(){return this._messages.command("ui.deactivate")}get displayBusyState(){return this._messages.command("ui.display-busy-state")}get displayNotification(){return this._messages.command("ui.display-notification")}get pauseNotifications(){return this._messages.command("ui.pause-notifications")}get resumeNotifications(){return this._messages.command("ui.resume-notifications")}get focus(){return this._messages.command("ui.focus")}get hideBusyState(){return this._messages.command("ui.hide-busy-state")}get hideNotification(){return this._messages.command("ui.hide-notification")}get narrate(){return this._messages.command("ui.narrate")}get setDensity(){return this._messages.command("ui.set-density")}get setLocale(){return this._messages.command("ui.set-locale")}get setTheme(){return this._messages.command("ui.set-theme")}get setVisualState(){return this._messages.command("ui.set-visual-state")}}export class UIOperations extends OperationRegistry{get confirm(){return this._messages.operation("ui.confirm")}get prompt(){return this._messages.operation("ui.prompt")}get getTheme(){return this._messages.operation("ui.get-theme")}get getThemes(){return this._messages.operation("ui.get-themes")}get getVisualState(){return this._messages.operation("ui.get-visual-state")}}export class UIEvents extends EventRegistry{get activated(){return this._messages.event("ui.activated")}get added(){return this._messages.event("ui.added")}get ancestorActivated(){return this._messages.event("ui.ancestor-activated")}get ancestorDeactivated(){return this._messages.event("ui.ancestor-deactivated")}get deactivated(){return this._messages.event("ui.deactivated")}get densityChanged(){return this._messages.event("ui.density-changed")}get localeChanged(){return this._messages.event("ui.locale-changed")}get initializing(){return this._messages.event("ui.initializing")}get initialized(){return this._messages.event("ui.initialized")}get removed(){return this._messages.event("ui.removed")}get reordered(){return this._messages.event("ui.reordered")}get themeChanged(){return this._messages.event("ui.theme-changed")}}
1
+ import{CommandRegistry}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";import{OperationRegistry}from"../OperationRegistry.js";export var NotificationCategory;!function(e){e.ERROR="error",e.INFO="info",e.SUCCESS="success",e.WARNING="warning"}(NotificationCategory||(NotificationCategory={}));export var NotificationType;!function(e){e.AUTO="auto",e.APP="app",e.SYSTEM="system"}(NotificationType||(NotificationType={}));export var Position;!function(e){e.BOTTOM="bottom",e.LEFT="left",e.RIGHT="right",e.TOP="top"}(Position||(Position={}));export class UICommands extends CommandRegistry{get activate(){return this._messages.command("ui.activate")}get activeToggle(){return this._messages.command("ui.active-toggle")}get alert(){return this._messages.command("ui.alert")}get await(){return this._messages.command("ui.await")}get deactivate(){return this._messages.command("ui.deactivate")}get displayBusyState(){return this._messages.command("ui.display-busy-state")}get displayNotification(){return this._messages.command("ui.display-notification")}get pauseNotifications(){return this._messages.command("ui.pause-notifications")}get resumeNotifications(){return this._messages.command("ui.resume-notifications")}get focus(){return this._messages.command("ui.focus")}get hideBusyState(){return this._messages.command("ui.hide-busy-state")}get hideNotification(){return this._messages.command("ui.hide-notification")}get narrate(){return this._messages.command("ui.narrate")}get setDensity(){return this._messages.command("ui.set-density")}get setLocale(){return this._messages.command("ui.set-locale")}get setTheme(){return this._messages.command("ui.set-theme")}get setVisualState(){return this._messages.command("ui.set-visual-state")}}export class UIOperations extends OperationRegistry{get confirm(){return this._messages.operation("ui.confirm")}get prompt(){return this._messages.operation("ui.prompt")}get getTheme(){return this._messages.operation("ui.get-theme")}get getThemes(){return this._messages.operation("ui.get-themes")}get getVisualState(){return this._messages.operation("ui.get-visual-state")}}export class UIEvents extends EventRegistry{get activated(){return this._messages.event("ui.activated")}get added(){return this._messages.event("ui.added")}get ancestorActivated(){return this._messages.event("ui.ancestor-activated")}get ancestorDeactivated(){return this._messages.event("ui.ancestor-deactivated")}get deactivated(){return this._messages.event("ui.deactivated")}get densityChanged(){return this._messages.event("ui.density-changed")}get localeChanged(){return this._messages.event("ui.locale-changed")}get initializing(){return this._messages.event("ui.initializing")}get initialized(){return this._messages.event("ui.initialized")}get removed(){return this._messages.event("ui.removed")}get reordered(){return this._messages.event("ui.reordered")}get themeChanged(){return this._messages.event("ui.theme-changed")}get visualStateChanged(){return this._messages.event("ui.visual-state-changed")}}
@@ -7326,10 +7326,18 @@
7326
7326
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
7327
7327
  "description": "Blend modes are used to blend layers together to create an interesting effect in a layer, or even to produce what seems like a new layer."
7328
7328
  },
7329
+ "disablePopup": {
7330
+ "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
7331
+ "type": "boolean"
7332
+ },
7329
7333
  "id": {
7330
7334
  "description": "A unique identifying string for the layer.",
7331
7335
  "type": "string"
7332
7336
  },
7337
+ "layerDefinition": {
7338
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.LayerDefinition",
7339
+ "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
7340
+ },
7333
7341
  "layerType": {
7334
7342
  "description": "The type of layer.",
7335
7343
  "enum": [
@@ -7353,6 +7361,10 @@
7353
7361
  "description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
7354
7362
  "type": "number"
7355
7363
  },
7364
+ "popupInfo": {
7365
+ "$ref": "#/definitions/esri.rest-api.PopupInfo.PopupInfo",
7366
+ "description": "A PopupInfo object defining the content of pop-up windows when you click or query a feature."
7367
+ },
7356
7368
  "refreshInterval": {
7357
7369
  "description": "When the refresh interval is set on a layer, the client must refresh that layer only, not the entire web map. The default value is '0', meaning the no refresh. You can enable a refresh interval on the following types of layers: ArcGIS Server web service, hosted feature layer, hosted tile layer, OGC WMS, OGS WMTS, tile layer, GeoRSS, Living Atlas layers, basemaps (including Bing Maps basemaps), CSV from the web with latitude and longitude fields, and KML when added to ArcGIS Online through the My Content page.{@linkhttps://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
7358
7370
  "type": "number"
@@ -4783,10 +4783,18 @@
4783
4783
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
4784
4784
  "description": "Blend modes are used to blend layers together to create an interesting effect in a layer, or even to produce what seems like a new layer."
4785
4785
  },
4786
+ "disablePopup": {
4787
+ "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
4788
+ "type": "boolean"
4789
+ },
4786
4790
  "id": {
4787
4791
  "description": "A unique identifying string for the layer.",
4788
4792
  "type": "string"
4789
4793
  },
4794
+ "layerDefinition": {
4795
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.LayerDefinition",
4796
+ "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
4797
+ },
4790
4798
  "layerType": {
4791
4799
  "description": "The type of layer.",
4792
4800
  "enum": [
@@ -4810,6 +4818,10 @@
4810
4818
  "description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
4811
4819
  "type": "number"
4812
4820
  },
4821
+ "popupInfo": {
4822
+ "$ref": "#/definitions/esri.rest-api.PopupInfo.PopupInfo",
4823
+ "description": "A PopupInfo object defining the content of pop-up windows when you click or query a feature."
4824
+ },
4813
4825
  "refreshInterval": {
4814
4826
  "description": "When the refresh interval is set on a layer, the client must refresh that layer only, not the entire web map. The default value is '0', meaning the no refresh. You can enable a refresh interval on the following types of layers: ArcGIS Server web service, hosted feature layer, hosted tile layer, OGC WMS, OGS WMTS, tile layer, GeoRSS, Living Atlas layers, basemaps (including Bing Maps basemaps), CSV from the web with latitude and longitude fields, and KML when added to ArcGIS Online through the My Content page.{@linkhttps://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
4815
4827
  "type": "number"
@@ -8266,10 +8266,18 @@
8266
8266
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
8267
8267
  "description": "Blend modes are used to blend layers together to create an interesting effect in a layer, or even to produce what seems like a new layer."
8268
8268
  },
8269
+ "disablePopup": {
8270
+ "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
8271
+ "type": "boolean"
8272
+ },
8269
8273
  "id": {
8270
8274
  "description": "A unique identifying string for the layer.",
8271
8275
  "type": "string"
8272
8276
  },
8277
+ "layerDefinition": {
8278
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.LayerDefinition",
8279
+ "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
8280
+ },
8273
8281
  "layerType": {
8274
8282
  "description": "The type of layer.",
8275
8283
  "enum": [
@@ -8293,6 +8301,10 @@
8293
8301
  "description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
8294
8302
  "type": "number"
8295
8303
  },
8304
+ "popupInfo": {
8305
+ "$ref": "#/definitions/esri.rest-api.PopupInfo.PopupInfo",
8306
+ "description": "A PopupInfo object defining the content of pop-up windows when you click or query a feature."
8307
+ },
8296
8308
  "refreshInterval": {
8297
8309
  "description": "When the refresh interval is set on a layer, the client must refresh that layer only, not the entire web map. The default value is '0', meaning the no refresh. You can enable a refresh interval on the following types of layers: ArcGIS Server web service, hosted feature layer, hosted tile layer, OGC WMS, OGS WMTS, tile layer, GeoRSS, Living Atlas layers, basemaps (including Bing Maps basemaps), CSV from the web with latitude and longitude fields, and KML when added to ArcGIS Online through the My Content page.{@linkhttps://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
8298
8310
  "type": "number"
@@ -5517,10 +5517,18 @@
5517
5517
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
5518
5518
  "description": "Blend modes are used to blend layers together to create an interesting effect in a layer, or even to produce what seems like a new layer."
5519
5519
  },
5520
+ "disablePopup": {
5521
+ "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
5522
+ "type": "boolean"
5523
+ },
5520
5524
  "id": {
5521
5525
  "description": "A unique identifying string for the layer.",
5522
5526
  "type": "string"
5523
5527
  },
5528
+ "layerDefinition": {
5529
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.LayerDefinition",
5530
+ "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
5531
+ },
5524
5532
  "layerType": {
5525
5533
  "description": "The type of layer.",
5526
5534
  "enum": [
@@ -5544,6 +5552,10 @@
5544
5552
  "description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
5545
5553
  "type": "number"
5546
5554
  },
5555
+ "popupInfo": {
5556
+ "$ref": "#/definitions/esri.rest-api.PopupInfo.PopupInfo",
5557
+ "description": "A PopupInfo object defining the content of pop-up windows when you click or query a feature."
5558
+ },
5547
5559
  "refreshInterval": {
5548
5560
  "description": "When the refresh interval is set on a layer, the client must refresh that layer only, not the entire web map. The default value is '0', meaning the no refresh. You can enable a refresh interval on the following types of layers: ArcGIS Server web service, hosted feature layer, hosted tile layer, OGC WMS, OGS WMTS, tile layer, GeoRSS, Living Atlas layers, basemaps (including Bing Maps basemaps), CSV from the web with latitude and longitude fields, and KML when added to ArcGIS Online through the My Content page.{@linkhttps://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
5549
5561
  "type": "number"
@@ -3690,6 +3690,28 @@
3690
3690
  ],
3691
3691
  "type": "string"
3692
3692
  },
3693
+ "PortalItemData": {
3694
+ "additionalProperties": false,
3695
+ "description": "Information about a portal item to be saved.",
3696
+ "properties": {
3697
+ "data": {
3698
+ "description": "The JSON data associated with the item."
3699
+ },
3700
+ "thumbnail": {
3701
+ "description": "The URL of a thumbnail for the item.",
3702
+ "type": "string"
3703
+ },
3704
+ "type": {
3705
+ "description": "The portal type of the item.",
3706
+ "type": "string"
3707
+ }
3708
+ },
3709
+ "required": [
3710
+ "data",
3711
+ "type"
3712
+ ],
3713
+ "type": "object"
3714
+ },
3693
3715
  "ProjectArgs": {
3694
3716
  "additionalProperties": false,
3695
3717
  "description": "Arguments for the geometry.project operation.",
@@ -4331,6 +4353,21 @@
4331
4353
  ],
4332
4354
  "type": "object"
4333
4355
  },
4356
+ "SetLabelVisibilityArgs": {
4357
+ "additionalProperties": false,
4358
+ "description": "Arguments for the \"layers.show-labels\" and \"layers.hide-labels\" commands. If no 'maps' are specified, all active maps in the layout will be targeted. If no 'layers' are specified, all viable layers and sublayers within the 'maps' will be affected. If the 'layers' property includes (Sub)Layer references or ESRI (Sub)Layers, they must exist within one of the 'maps'.",
4359
+ "properties": {
4360
+ "layers": {
4361
+ "$ref": "#/definitions/LayersLike",
4362
+ "description": "Layer(s) to use for the command/operation."
4363
+ },
4364
+ "maps": {
4365
+ "$ref": "MapsLike",
4366
+ "description": "Map(s) to use for the command/operation."
4367
+ }
4368
+ },
4369
+ "type": "object"
4370
+ },
4334
4371
  "SetLayerComparisonDirectionArgs": {
4335
4372
  "additionalProperties": false,
4336
4373
  "description": "Arguments for the layer-comparison.set-direction command.",
@@ -10895,10 +10932,18 @@
10895
10932
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
10896
10933
  "description": "Blend modes are used to blend layers together to create an interesting effect in a layer, or even to produce what seems like a new layer."
10897
10934
  },
10935
+ "disablePopup": {
10936
+ "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
10937
+ "type": "boolean"
10938
+ },
10898
10939
  "id": {
10899
10940
  "description": "A unique identifying string for the layer.",
10900
10941
  "type": "string"
10901
10942
  },
10943
+ "layerDefinition": {
10944
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.LayerDefinition",
10945
+ "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
10946
+ },
10902
10947
  "layerType": {
10903
10948
  "description": "The type of layer.",
10904
10949
  "enum": [
@@ -10922,6 +10967,10 @@
10922
10967
  "description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
10923
10968
  "type": "number"
10924
10969
  },
10970
+ "popupInfo": {
10971
+ "$ref": "#/definitions/esri.rest-api.PopupInfo.PopupInfo",
10972
+ "description": "A PopupInfo object defining the content of pop-up windows when you click or query a feature."
10973
+ },
10925
10974
  "refreshInterval": {
10926
10975
  "description": "When the refresh interval is set on a layer, the client must refresh that layer only, not the entire web map. The default value is '0', meaning the no refresh. You can enable a refresh interval on the following types of layers: ArcGIS Server web service, hosted feature layer, hosted tile layer, OGC WMS, OGS WMTS, tile layer, GeoRSS, Living Atlas layers, basemaps (including Bing Maps basemaps), CSV from the web with latitude and longitude fields, and KML when added to ArcGIS Online through the My Content page.{@linkhttps://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
10927
10976
  "type": "number"
@@ -15049,6 +15098,15 @@
15049
15098
  "layers.ensure-can-set-symbol:input": {
15050
15099
  "$ref": "#/definitions/SetSymbolArgs"
15051
15100
  },
15101
+ "layers.hide-labels": {
15102
+ "description": "Turns off the layer's labels on the map.",
15103
+ "enum": [
15104
+ "layers.hide-labels"
15105
+ ]
15106
+ },
15107
+ "layers.hide-labels:input": {
15108
+ "$ref": "#/definitions/SetLabelVisibilityArgs"
15109
+ },
15052
15110
  "layers.set-symbol": {
15053
15111
  "description": "Updates the symbol for the provided layer(s).",
15054
15112
  "enum": [
@@ -15058,6 +15116,15 @@
15058
15116
  "layers.set-symbol:input": {
15059
15117
  "$ref": "#/definitions/SetSymbolArgs"
15060
15118
  },
15119
+ "layers.show-labels": {
15120
+ "description": "Turns on the layer's labels on the map.",
15121
+ "enum": [
15122
+ "layers.show-labels"
15123
+ ]
15124
+ },
15125
+ "layers.show-labels:input": {
15126
+ "$ref": "#/definitions/SetLabelVisibilityArgs"
15127
+ },
15061
15128
  "location-marker.clear": {
15062
15129
  "description": "Removes all Markers.",
15063
15130
  "enum": [
@@ -15227,6 +15294,18 @@
15227
15294
  "map.edit-note:input": {
15228
15295
  "$ref": "#/definitions/EditMapNotesArgs"
15229
15296
  },
15297
+ "map.export-web-map-or-scene": {
15298
+ "description": "Exports the current configuration of the selected map component as a web map or scene.",
15299
+ "enum": [
15300
+ "map.export-web-map-or-scene"
15301
+ ]
15302
+ },
15303
+ "map.export-web-map-or-scene:input": {
15304
+ "$ref": "#/definitions/HasMaps"
15305
+ },
15306
+ "map.export-web-map-or-scene:output": {
15307
+ "$ref": "#/definitions/PortalItemData"
15308
+ },
15230
15309
  "map.get-extent": {
15231
15310
  "description": "Returns the extent from the specified map.",
15232
15311
  "enum": [
@@ -16246,6 +16325,38 @@
16246
16325
  "items": {},
16247
16326
  "type": "array"
16248
16327
  },
16328
+ "panel.pop-in": {
16329
+ "description": "Closes the popout window for a panel and restores the original layout.",
16330
+ "enum": [
16331
+ "panel.pop-in"
16332
+ ]
16333
+ },
16334
+ "panel.pop-in:input": {
16335
+ "anyOf": [
16336
+ {
16337
+ "$ref": "#/definitions/Model"
16338
+ },
16339
+ {
16340
+ "type": "string"
16341
+ }
16342
+ ]
16343
+ },
16344
+ "panel.pop-out": {
16345
+ "description": "Removes a panel from the main layout and opens it in a new popout window.",
16346
+ "enum": [
16347
+ "panel.pop-out"
16348
+ ]
16349
+ },
16350
+ "panel.pop-out:input": {
16351
+ "anyOf": [
16352
+ {
16353
+ "$ref": "#/definitions/Model"
16354
+ },
16355
+ {
16356
+ "type": "string"
16357
+ }
16358
+ ]
16359
+ },
16249
16360
  "printing.run": {
16250
16361
  "description": "Run a print job with a given map and template.",
16251
16362
  "enum": [
@@ -18289,6 +18400,22 @@
18289
18400
  ],
18290
18401
  "type": "object"
18291
18402
  },
18403
+ {
18404
+ "additionalProperties": false,
18405
+ "properties": {
18406
+ "arguments": {
18407
+ "$ref": "#/definitions/layers.hide-labels:input"
18408
+ },
18409
+ "name": {
18410
+ "$ref": "#/definitions/layers.hide-labels"
18411
+ }
18412
+ },
18413
+ "required": [
18414
+ "name",
18415
+ "arguments"
18416
+ ],
18417
+ "type": "object"
18418
+ },
18292
18419
  {
18293
18420
  "additionalProperties": false,
18294
18421
  "properties": {
@@ -18305,6 +18432,22 @@
18305
18432
  ],
18306
18433
  "type": "object"
18307
18434
  },
18435
+ {
18436
+ "additionalProperties": false,
18437
+ "properties": {
18438
+ "arguments": {
18439
+ "$ref": "#/definitions/layers.show-labels:input"
18440
+ },
18441
+ "name": {
18442
+ "$ref": "#/definitions/layers.show-labels"
18443
+ }
18444
+ },
18445
+ "required": [
18446
+ "name",
18447
+ "arguments"
18448
+ ],
18449
+ "type": "object"
18450
+ },
18308
18451
  {
18309
18452
  "additionalProperties": false,
18310
18453
  "properties": {
@@ -18929,6 +19072,38 @@
18929
19072
  ],
18930
19073
  "type": "object"
18931
19074
  },
19075
+ {
19076
+ "additionalProperties": false,
19077
+ "properties": {
19078
+ "arguments": {
19079
+ "$ref": "#/definitions/panel.pop-in:input"
19080
+ },
19081
+ "name": {
19082
+ "$ref": "#/definitions/panel.pop-in"
19083
+ }
19084
+ },
19085
+ "required": [
19086
+ "name",
19087
+ "arguments"
19088
+ ],
19089
+ "type": "object"
19090
+ },
19091
+ {
19092
+ "additionalProperties": false,
19093
+ "properties": {
19094
+ "arguments": {
19095
+ "$ref": "#/definitions/panel.pop-out:input"
19096
+ },
19097
+ "name": {
19098
+ "$ref": "#/definitions/panel.pop-out"
19099
+ }
19100
+ },
19101
+ "required": [
19102
+ "name",
19103
+ "arguments"
19104
+ ],
19105
+ "type": "object"
19106
+ },
18932
19107
  {
18933
19108
  "additionalProperties": false,
18934
19109
  "properties": {
@@ -19728,9 +19903,15 @@
19728
19903
  {
19729
19904
  "$ref": "#/definitions/layers.ensure-can-set-symbol"
19730
19905
  },
19906
+ {
19907
+ "$ref": "#/definitions/layers.hide-labels"
19908
+ },
19731
19909
  {
19732
19910
  "$ref": "#/definitions/layers.set-symbol"
19733
19911
  },
19912
+ {
19913
+ "$ref": "#/definitions/layers.show-labels"
19914
+ },
19734
19915
  {
19735
19916
  "$ref": "#/definitions/location-marker.clear"
19736
19917
  },
@@ -19848,6 +20029,12 @@
19848
20029
  {
19849
20030
  "$ref": "#/definitions/messaging.mix-in-args"
19850
20031
  },
20032
+ {
20033
+ "$ref": "#/definitions/panel.pop-in"
20034
+ },
20035
+ {
20036
+ "$ref": "#/definitions/panel.pop-out"
20037
+ },
19851
20038
  {
19852
20039
  "$ref": "#/definitions/printing.run"
19853
20040
  },
@@ -20252,6 +20439,22 @@
20252
20439
  ],
20253
20440
  "type": "object"
20254
20441
  },
20442
+ {
20443
+ "additionalProperties": false,
20444
+ "properties": {
20445
+ "arguments": {
20446
+ "$ref": "#/definitions/map.export-web-map-or-scene:input"
20447
+ },
20448
+ "name": {
20449
+ "$ref": "#/definitions/map.export-web-map-or-scene"
20450
+ }
20451
+ },
20452
+ "required": [
20453
+ "name",
20454
+ "arguments"
20455
+ ],
20456
+ "type": "object"
20457
+ },
20255
20458
  {
20256
20459
  "additionalProperties": false,
20257
20460
  "properties": {
@@ -20964,6 +21167,9 @@
20964
21167
  {
20965
21168
  "$ref": "#/definitions/kpi.get-features"
20966
21169
  },
21170
+ {
21171
+ "$ref": "#/definitions/map.export-web-map-or-scene"
21172
+ },
20967
21173
  {
20968
21174
  "$ref": "#/definitions/map.get-extent"
20969
21175
  },
@@ -373,6 +373,10 @@
373
373
  ],
374
374
  "type": "string"
375
375
  },
376
+ "ComponentId": {
377
+ "description": "A component's ID in the layout.",
378
+ "type": "string"
379
+ },
376
380
  "CreateGraphicsResult": {
377
381
  "additionalProperties": false,
378
382
  "description": "Result of the \"drawing.create-graphics\" and \"measurement.create-graphics\" operations.",
@@ -1025,6 +1029,34 @@
1025
1029
  },
1026
1030
  "type": "object"
1027
1031
  },
1032
+ "VisualState": {
1033
+ "description": "A component's visual state. The values will vary based on the component type.",
1034
+ "type": "string"
1035
+ },
1036
+ "VisualStateChangeEvent": {
1037
+ "additionalProperties": false,
1038
+ "description": "Payload for a VisualStateChangeEvent.",
1039
+ "properties": {
1040
+ "component": {
1041
+ "$ref": "#/definitions/ComponentId",
1042
+ "description": "The ID of the component whose visual state has changed."
1043
+ },
1044
+ "current": {
1045
+ "$ref": "#/definitions/VisualState",
1046
+ "description": "The new visual state of the component."
1047
+ },
1048
+ "previous": {
1049
+ "$ref": "#/definitions/VisualState",
1050
+ "description": "The visual state of the component before the change."
1051
+ }
1052
+ },
1053
+ "required": [
1054
+ "component",
1055
+ "current",
1056
+ "previous"
1057
+ ],
1058
+ "type": "object"
1059
+ },
1028
1060
  "WorkflowErrorEventArgs": {
1029
1061
  "additionalProperties": false,
1030
1062
  "description": "Arguments for the \"workflow.workflow-error\" event.",
@@ -5598,10 +5630,18 @@
5598
5630
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
5599
5631
  "description": "Blend modes are used to blend layers together to create an interesting effect in a layer, or even to produce what seems like a new layer."
5600
5632
  },
5633
+ "disablePopup": {
5634
+ "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
5635
+ "type": "boolean"
5636
+ },
5601
5637
  "id": {
5602
5638
  "description": "A unique identifying string for the layer.",
5603
5639
  "type": "string"
5604
5640
  },
5641
+ "layerDefinition": {
5642
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.LayerDefinition",
5643
+ "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
5644
+ },
5605
5645
  "layerType": {
5606
5646
  "description": "The type of layer.",
5607
5647
  "enum": [
@@ -5625,6 +5665,10 @@
5625
5665
  "description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
5626
5666
  "type": "number"
5627
5667
  },
5668
+ "popupInfo": {
5669
+ "$ref": "#/definitions/esri.rest-api.PopupInfo.PopupInfo",
5670
+ "description": "A PopupInfo object defining the content of pop-up windows when you click or query a feature."
5671
+ },
5628
5672
  "refreshInterval": {
5629
5673
  "description": "When the refresh interval is set on a layer, the client must refresh that layer only, not the entire web map. The default value is '0', meaning the no refresh. You can enable a refresh interval on the following types of layers: ArcGIS Server web service, hosted feature layer, hosted tile layer, OGC WMS, OGS WMTS, tile layer, GeoRSS, Living Atlas layers, basemaps (including Bing Maps basemaps), CSV from the web with latitude and longitude fields, and KML when added to ArcGIS Online through the My Content page.{@linkhttps://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
5630
5674
  "type": "number"
@@ -9480,6 +9524,15 @@
9480
9524
  "ui.reordered:input": {
9481
9525
  "type": "string"
9482
9526
  },
9527
+ "ui.visual-state-changed": {
9528
+ "description": "Raised when a component's visual state is changed.",
9529
+ "enum": [
9530
+ "ui.visual-state-changed"
9531
+ ]
9532
+ },
9533
+ "ui.visual-state-changed:input": {
9534
+ "$ref": "#/definitions/VisualStateChangeEvent"
9535
+ },
9483
9536
  "viewer-spec.Event": {
9484
9537
  "anyOf": [
9485
9538
  {
@@ -9620,6 +9673,9 @@
9620
9673
  {
9621
9674
  "$ref": "#/definitions/ui.reordered"
9622
9675
  },
9676
+ {
9677
+ "$ref": "#/definitions/ui.visual-state-changed"
9678
+ },
9623
9679
  {
9624
9680
  "$ref": "#/definitions/viewer.layout-changed"
9625
9681
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/viewer-spec",
3
- "version": "48.2.0",
3
+ "version": "48.5.0",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "description": "VertiGIS Viewer Specification",
6
6
  "type": "module",
@@ -33,11 +33,11 @@
33
33
  },
34
34
  "author": "VertiGIS Ltd.",
35
35
  "peerDependencies": {
36
- "@vertigis/arcgis-extensions": ">= 35.1.0 < 36.0.0"
36
+ "@vertigis/arcgis-extensions": ">= 35.5.0 < 36.0.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@arcgis/core": "4.23.3",
40
- "@vertigis/arcgis-extensions": "35.1.0",
40
+ "@vertigis/arcgis-extensions": "35.5.0",
41
41
  "@prettier/plugin-xml": "2.2.0",
42
42
  "@types/glob": "7.2.0",
43
43
  "@types/node": "14.14.41",
package/version.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the Geocortex Viewer Specification.
3
3
  */
4
- export declare const version = "48.2.0";
4
+ export declare const version = "48.5.0";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the Geocortex Viewer Specification.
3
3
  */
4
- export const version = "48.2.0";
4
+ export const version = "48.5.0";