@esri/solutions-components 0.7.40 → 0.7.41
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/calcite-flow_5.cjs.entry.js +3 -1
- package/dist/cjs/crowdsource-reporter.cjs.entry.js +12 -3
- package/dist/collection/components/crowdsource-reporter/crowdsource-reporter.js +12 -3
- package/dist/collection/components/layer-list/layer-list.js +3 -1
- package/dist/collection/demos/crowdsource-reporter.html +5 -2
- package/dist/components/crowdsource-reporter.js +12 -3
- package/dist/components/layer-list2.js +3 -1
- package/dist/esm/calcite-flow_5.entry.js +3 -1
- package/dist/esm/crowdsource-reporter.entry.js +12 -3
- package/dist/solutions-components/demos/crowdsource-reporter.html +5 -2
- package/dist/solutions-components/{p-59c6f63f.entry.js → p-6c86a392.entry.js} +2 -2
- package/dist/solutions-components/p-c6af6407.entry.js +6 -0
- package/dist/solutions-components/solutions-components.esm.js +1 -1
- package/dist/types/components/crowdsource-reporter/crowdsource-reporter.d.ts +1 -0
- package/dist/types/components/layer-list/layer-list.d.ts +1 -0
- package/package.json +1 -1
- package/dist/solutions-components/p-207fd378.entry.js +0 -6
@@ -771,6 +771,8 @@ const LayerList = class {
|
|
771
771
|
index.registerInstance(this, hostRef);
|
772
772
|
this.layerSelect = index.createEvent(this, "layerSelect", 7);
|
773
773
|
this.layersListLoaded = index.createEvent(this, "layersListLoaded", 7);
|
774
|
+
//HARDCODED IN EN
|
775
|
+
this._noLayerToDisplayErrorMsg = "Web map does not contain any editable layers.";
|
774
776
|
this.mapView = undefined;
|
775
777
|
this.layers = undefined;
|
776
778
|
this.noLayerErrorMsg = undefined;
|
@@ -823,7 +825,7 @@ const LayerList = class {
|
|
823
825
|
*/
|
824
826
|
render() {
|
825
827
|
return (index.h(index.Fragment, null, this._isLoading && index.h("calcite-loader", { label: "", scale: "m" }), !this._isLoading && this.mapView && this._noLayersToDisplay &&
|
826
|
-
index.h("calcite-notice", { class: "error-msg", icon: "layers-reference", kind: "danger", open: true }, index.h("div", { slot: "title" }, this._translations.error), index.h("div", { slot: "message" }, this.noLayerErrorMsg ? this.noLayerErrorMsg : this.
|
828
|
+
index.h("calcite-notice", { class: "error-msg", icon: "layers-reference", kind: "danger", open: true }, index.h("div", { slot: "title" }, this._translations.error), index.h("div", { slot: "message" }, this.noLayerErrorMsg ? this.noLayerErrorMsg : this._noLayerToDisplayErrorMsg)), !this._isLoading && this.mapView &&
|
827
829
|
index.h("calcite-list", { "selection-appearance": "border", "selection-mode": this.showNextIcon ? "none" : "single-persist" }, this.renderLayerList())));
|
828
830
|
}
|
829
831
|
//--------------------------------------------------------------------------
|
@@ -20,6 +20,8 @@ const CrowdsourceReporter = class {
|
|
20
20
|
constructor(hostRef) {
|
21
21
|
index.registerInstance(this, hostRef);
|
22
22
|
this.togglePanel = index.createEvent(this, "togglePanel", 7);
|
23
|
+
//HARDCODED IN EN
|
24
|
+
this._noLayerToDisplayErrorMsg = "Web map does not contain any editable layers.";
|
23
25
|
this.description = undefined;
|
24
26
|
this.isMobile = undefined;
|
25
27
|
this.enableAnonymousAccess = undefined;
|
@@ -165,7 +167,7 @@ const CrowdsourceReporter = class {
|
|
165
167
|
*/
|
166
168
|
getLayerListFlowItem() {
|
167
169
|
return (index.h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this.reportsHeader }, this.isMobile && this.getActionToExpandCollapsePanel(), this._hasValidLayers && this.enableNewReports &&
|
168
|
-
index.h("calcite-button", { appearance: "solid", onClick: this.navigateToChooseCategory.bind(this), slot: "footer", width: "full" }, this.reportButtonText), index.h("calcite-panel", { "full-height": true, "full-width": true }, index.h("layer-list", { class: "height-full", layers: this.layers, mapView: this.mapView, noLayerErrorMsg: this.
|
170
|
+
index.h("calcite-button", { appearance: "solid", onClick: this.navigateToChooseCategory.bind(this), slot: "footer", width: "full" }, this.reportButtonText), index.h("calcite-panel", { "full-height": true, "full-width": true }, index.h("layer-list", { class: "height-full", layers: this.layers, mapView: this.mapView, noLayerErrorMsg: this._noLayerToDisplayErrorMsg, onLayerSelect: this.displayFeaturesList.bind(this), onLayersListLoaded: this.layerListLoaded.bind(this), ref: el => this._layerList = el, showFeatureCount: true, showNextIcon: true }))));
|
169
171
|
}
|
170
172
|
/**
|
171
173
|
* Get the layer list for creating a report
|
@@ -173,7 +175,7 @@ const CrowdsourceReporter = class {
|
|
173
175
|
* @protected
|
174
176
|
*/
|
175
177
|
getChooseCategoryFlowItem() {
|
176
|
-
return (index.h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this._translations.createReportHeader, onCalciteFlowItemBack: this.backFromSelectedPanel.bind(this) }, this.isMobile && this.getActionToExpandCollapsePanel(), index.h("div", { class: "width-full", slot: "footer" }, index.h("calcite-button", { appearance: "solid", class: "footer-top-button footer-button", disabled: !this._selectedLayerId, onClick: this.navigateToCreateFeature.bind(this), width: "full" }, this._translations.next), index.h("calcite-button", { appearance: "outline", class: "footer-button", onClick: this.backFromSelectedPanel.bind(this), width: "full" }, this._translations.cancel)), index.h("calcite-panel", { "full-height": true, "full-width": true }, index.h("calcite-notice", { class: "notice-msg", icon: "lightbulb", kind: "success", open: true }, index.h("div", { slot: "message" }, this._translations.chooseCategoryMsg)), index.h("layer-list", { class: "height-full", layers: this.layers, mapView: this.mapView, noLayerErrorMsg: this.
|
178
|
+
return (index.h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this._translations.createReportHeader, onCalciteFlowItemBack: this.backFromSelectedPanel.bind(this) }, this.isMobile && this.getActionToExpandCollapsePanel(), index.h("div", { class: "width-full", slot: "footer" }, index.h("calcite-button", { appearance: "solid", class: "footer-top-button footer-button", disabled: !this._selectedLayerId, onClick: this.navigateToCreateFeature.bind(this), width: "full" }, this._translations.next), index.h("calcite-button", { appearance: "outline", class: "footer-button", onClick: this.backFromSelectedPanel.bind(this), width: "full" }, this._translations.cancel)), index.h("calcite-panel", { "full-height": true, "full-width": true }, index.h("calcite-notice", { class: "notice-msg", icon: "lightbulb", kind: "success", open: true }, index.h("div", { slot: "message" }, this._translations.chooseCategoryMsg)), index.h("layer-list", { class: "height-full", layers: this.layers, mapView: this.mapView, noLayerErrorMsg: this._noLayerToDisplayErrorMsg, onLayerSelect: this.highlightSelectedLayer.bind(this), showFeatureCount: false, showNextIcon: false }))));
|
177
179
|
}
|
178
180
|
/**
|
179
181
|
* Get Feature create form of the selected feature layer
|
@@ -519,11 +521,17 @@ const CrowdsourceReporter = class {
|
|
519
521
|
* @protected
|
520
522
|
*/
|
521
523
|
async loadFeatureFromURLParams() {
|
524
|
+
if (this.center && this.level) {
|
525
|
+
await this.mapView.goTo({
|
526
|
+
center: this.center.split(';').map(Number),
|
527
|
+
zoom: this.level
|
528
|
+
});
|
529
|
+
}
|
522
530
|
if (this.layerId && this.objectId) {
|
523
531
|
const layer = await mapViewUtils.getLayerOrTable(this.mapView, this.layerId);
|
524
532
|
if (layer) {
|
525
533
|
// only query if we have some ids...query with no ids will result in all features being returned
|
526
|
-
const featureSet = await mapViewUtils.queryFeaturesByID([Number(this.objectId)], layer, [],
|
534
|
+
const featureSet = await mapViewUtils.queryFeaturesByID([Number(this.objectId)], layer, [], true, this.mapView.spatialReference);
|
527
535
|
if (featureSet.length) {
|
528
536
|
//update the selectedFeature
|
529
537
|
this._selectedFeature = featureSet;
|
@@ -535,6 +543,7 @@ const CrowdsourceReporter = class {
|
|
535
543
|
else {
|
536
544
|
this._flowItems = [...this._flowItems];
|
537
545
|
}
|
546
|
+
await this.highlightOnMap(featureSet[0]);
|
538
547
|
}
|
539
548
|
}
|
540
549
|
}
|
@@ -25,6 +25,8 @@ import { getAllLayers, getFeatureLayerView, getLayerOrTable, highlightFeatures }
|
|
25
25
|
import { queryFeaturesByID } from "../../utils/queryUtils";
|
26
26
|
export class CrowdsourceReporter {
|
27
27
|
constructor() {
|
28
|
+
//HARDCODED IN EN
|
29
|
+
this._noLayerToDisplayErrorMsg = "Web map does not contain any editable layers.";
|
28
30
|
this.description = undefined;
|
29
31
|
this.isMobile = undefined;
|
30
32
|
this.enableAnonymousAccess = undefined;
|
@@ -170,7 +172,7 @@ export class CrowdsourceReporter {
|
|
170
172
|
*/
|
171
173
|
getLayerListFlowItem() {
|
172
174
|
return (h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this.reportsHeader }, this.isMobile && this.getActionToExpandCollapsePanel(), this._hasValidLayers && this.enableNewReports &&
|
173
|
-
h("calcite-button", { appearance: "solid", onClick: this.navigateToChooseCategory.bind(this), slot: "footer", width: "full" }, this.reportButtonText), h("calcite-panel", { "full-height": true, "full-width": true }, h("layer-list", { class: "height-full", layers: this.layers, mapView: this.mapView, noLayerErrorMsg: this.
|
175
|
+
h("calcite-button", { appearance: "solid", onClick: this.navigateToChooseCategory.bind(this), slot: "footer", width: "full" }, this.reportButtonText), h("calcite-panel", { "full-height": true, "full-width": true }, h("layer-list", { class: "height-full", layers: this.layers, mapView: this.mapView, noLayerErrorMsg: this._noLayerToDisplayErrorMsg, onLayerSelect: this.displayFeaturesList.bind(this), onLayersListLoaded: this.layerListLoaded.bind(this), ref: el => this._layerList = el, showFeatureCount: true, showNextIcon: true }))));
|
174
176
|
}
|
175
177
|
/**
|
176
178
|
* Get the layer list for creating a report
|
@@ -178,7 +180,7 @@ export class CrowdsourceReporter {
|
|
178
180
|
* @protected
|
179
181
|
*/
|
180
182
|
getChooseCategoryFlowItem() {
|
181
|
-
return (h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this._translations.createReportHeader, onCalciteFlowItemBack: this.backFromSelectedPanel.bind(this) }, this.isMobile && this.getActionToExpandCollapsePanel(), h("div", { class: "width-full", slot: "footer" }, h("calcite-button", { appearance: "solid", class: "footer-top-button footer-button", disabled: !this._selectedLayerId, onClick: this.navigateToCreateFeature.bind(this), width: "full" }, this._translations.next), h("calcite-button", { appearance: "outline", class: "footer-button", onClick: this.backFromSelectedPanel.bind(this), width: "full" }, this._translations.cancel)), h("calcite-panel", { "full-height": true, "full-width": true }, h("calcite-notice", { class: "notice-msg", icon: "lightbulb", kind: "success", open: true }, h("div", { slot: "message" }, this._translations.chooseCategoryMsg)), h("layer-list", { class: "height-full", layers: this.layers, mapView: this.mapView, noLayerErrorMsg: this.
|
183
|
+
return (h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this._translations.createReportHeader, onCalciteFlowItemBack: this.backFromSelectedPanel.bind(this) }, this.isMobile && this.getActionToExpandCollapsePanel(), h("div", { class: "width-full", slot: "footer" }, h("calcite-button", { appearance: "solid", class: "footer-top-button footer-button", disabled: !this._selectedLayerId, onClick: this.navigateToCreateFeature.bind(this), width: "full" }, this._translations.next), h("calcite-button", { appearance: "outline", class: "footer-button", onClick: this.backFromSelectedPanel.bind(this), width: "full" }, this._translations.cancel)), h("calcite-panel", { "full-height": true, "full-width": true }, h("calcite-notice", { class: "notice-msg", icon: "lightbulb", kind: "success", open: true }, h("div", { slot: "message" }, this._translations.chooseCategoryMsg)), h("layer-list", { class: "height-full", layers: this.layers, mapView: this.mapView, noLayerErrorMsg: this._noLayerToDisplayErrorMsg, onLayerSelect: this.highlightSelectedLayer.bind(this), showFeatureCount: false, showNextIcon: false }))));
|
182
184
|
}
|
183
185
|
/**
|
184
186
|
* Get Feature create form of the selected feature layer
|
@@ -524,11 +526,17 @@ export class CrowdsourceReporter {
|
|
524
526
|
* @protected
|
525
527
|
*/
|
526
528
|
async loadFeatureFromURLParams() {
|
529
|
+
if (this.center && this.level) {
|
530
|
+
await this.mapView.goTo({
|
531
|
+
center: this.center.split(';').map(Number),
|
532
|
+
zoom: this.level
|
533
|
+
});
|
534
|
+
}
|
527
535
|
if (this.layerId && this.objectId) {
|
528
536
|
const layer = await getLayerOrTable(this.mapView, this.layerId);
|
529
537
|
if (layer) {
|
530
538
|
// only query if we have some ids...query with no ids will result in all features being returned
|
531
|
-
const featureSet = await queryFeaturesByID([Number(this.objectId)], layer, [],
|
539
|
+
const featureSet = await queryFeaturesByID([Number(this.objectId)], layer, [], true, this.mapView.spatialReference);
|
532
540
|
if (featureSet.length) {
|
533
541
|
//update the selectedFeature
|
534
542
|
this._selectedFeature = featureSet;
|
@@ -540,6 +548,7 @@ export class CrowdsourceReporter {
|
|
540
548
|
else {
|
541
549
|
this._flowItems = [...this._flowItems];
|
542
550
|
}
|
551
|
+
await this.highlightOnMap(featureSet[0]);
|
543
552
|
}
|
544
553
|
}
|
545
554
|
}
|
@@ -24,6 +24,8 @@ import { getLocaleComponentStrings } from "../../utils/locale";
|
|
24
24
|
import { formatNumber } from "../../utils/languageUtil";
|
25
25
|
export class LayerList {
|
26
26
|
constructor() {
|
27
|
+
//HARDCODED IN EN
|
28
|
+
this._noLayerToDisplayErrorMsg = "Web map does not contain any editable layers.";
|
27
29
|
this.mapView = undefined;
|
28
30
|
this.layers = undefined;
|
29
31
|
this.noLayerErrorMsg = undefined;
|
@@ -76,7 +78,7 @@ export class LayerList {
|
|
76
78
|
*/
|
77
79
|
render() {
|
78
80
|
return (h(Fragment, null, this._isLoading && h("calcite-loader", { label: "", scale: "m" }), !this._isLoading && this.mapView && this._noLayersToDisplay &&
|
79
|
-
h("calcite-notice", { class: "error-msg", icon: "layers-reference", kind: "danger", open: true }, h("div", { slot: "title" }, this._translations.error), h("div", { slot: "message" }, this.noLayerErrorMsg ? this.noLayerErrorMsg : this.
|
81
|
+
h("calcite-notice", { class: "error-msg", icon: "layers-reference", kind: "danger", open: true }, h("div", { slot: "title" }, this._translations.error), h("div", { slot: "message" }, this.noLayerErrorMsg ? this.noLayerErrorMsg : this._noLayerToDisplayErrorMsg)), !this._isLoading && this.mapView &&
|
80
82
|
h("calcite-list", { "selection-appearance": "border", "selection-mode": this.showNextIcon ? "none" : "single-persist" }, this.renderLayerList())));
|
81
83
|
}
|
82
84
|
//--------------------------------------------------------------------------
|
@@ -47,6 +47,8 @@ const CrowdsourceReporter$1 = /*@__PURE__*/ proxyCustomElement(class Crowdsource
|
|
47
47
|
super();
|
48
48
|
this.__registerHost();
|
49
49
|
this.togglePanel = createEvent(this, "togglePanel", 7);
|
50
|
+
//HARDCODED IN EN
|
51
|
+
this._noLayerToDisplayErrorMsg = "Web map does not contain any editable layers.";
|
50
52
|
this.description = undefined;
|
51
53
|
this.isMobile = undefined;
|
52
54
|
this.enableAnonymousAccess = undefined;
|
@@ -192,7 +194,7 @@ const CrowdsourceReporter$1 = /*@__PURE__*/ proxyCustomElement(class Crowdsource
|
|
192
194
|
*/
|
193
195
|
getLayerListFlowItem() {
|
194
196
|
return (h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this.reportsHeader }, this.isMobile && this.getActionToExpandCollapsePanel(), this._hasValidLayers && this.enableNewReports &&
|
195
|
-
h("calcite-button", { appearance: "solid", onClick: this.navigateToChooseCategory.bind(this), slot: "footer", width: "full" }, this.reportButtonText), h("calcite-panel", { "full-height": true, "full-width": true }, h("layer-list", { class: "height-full", layers: this.layers, mapView: this.mapView, noLayerErrorMsg: this.
|
197
|
+
h("calcite-button", { appearance: "solid", onClick: this.navigateToChooseCategory.bind(this), slot: "footer", width: "full" }, this.reportButtonText), h("calcite-panel", { "full-height": true, "full-width": true }, h("layer-list", { class: "height-full", layers: this.layers, mapView: this.mapView, noLayerErrorMsg: this._noLayerToDisplayErrorMsg, onLayerSelect: this.displayFeaturesList.bind(this), onLayersListLoaded: this.layerListLoaded.bind(this), ref: el => this._layerList = el, showFeatureCount: true, showNextIcon: true }))));
|
196
198
|
}
|
197
199
|
/**
|
198
200
|
* Get the layer list for creating a report
|
@@ -200,7 +202,7 @@ const CrowdsourceReporter$1 = /*@__PURE__*/ proxyCustomElement(class Crowdsource
|
|
200
202
|
* @protected
|
201
203
|
*/
|
202
204
|
getChooseCategoryFlowItem() {
|
203
|
-
return (h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this._translations.createReportHeader, onCalciteFlowItemBack: this.backFromSelectedPanel.bind(this) }, this.isMobile && this.getActionToExpandCollapsePanel(), h("div", { class: "width-full", slot: "footer" }, h("calcite-button", { appearance: "solid", class: "footer-top-button footer-button", disabled: !this._selectedLayerId, onClick: this.navigateToCreateFeature.bind(this), width: "full" }, this._translations.next), h("calcite-button", { appearance: "outline", class: "footer-button", onClick: this.backFromSelectedPanel.bind(this), width: "full" }, this._translations.cancel)), h("calcite-panel", { "full-height": true, "full-width": true }, h("calcite-notice", { class: "notice-msg", icon: "lightbulb", kind: "success", open: true }, h("div", { slot: "message" }, this._translations.chooseCategoryMsg)), h("layer-list", { class: "height-full", layers: this.layers, mapView: this.mapView, noLayerErrorMsg: this.
|
205
|
+
return (h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this._translations.createReportHeader, onCalciteFlowItemBack: this.backFromSelectedPanel.bind(this) }, this.isMobile && this.getActionToExpandCollapsePanel(), h("div", { class: "width-full", slot: "footer" }, h("calcite-button", { appearance: "solid", class: "footer-top-button footer-button", disabled: !this._selectedLayerId, onClick: this.navigateToCreateFeature.bind(this), width: "full" }, this._translations.next), h("calcite-button", { appearance: "outline", class: "footer-button", onClick: this.backFromSelectedPanel.bind(this), width: "full" }, this._translations.cancel)), h("calcite-panel", { "full-height": true, "full-width": true }, h("calcite-notice", { class: "notice-msg", icon: "lightbulb", kind: "success", open: true }, h("div", { slot: "message" }, this._translations.chooseCategoryMsg)), h("layer-list", { class: "height-full", layers: this.layers, mapView: this.mapView, noLayerErrorMsg: this._noLayerToDisplayErrorMsg, onLayerSelect: this.highlightSelectedLayer.bind(this), showFeatureCount: false, showNextIcon: false }))));
|
204
206
|
}
|
205
207
|
/**
|
206
208
|
* Get Feature create form of the selected feature layer
|
@@ -546,11 +548,17 @@ const CrowdsourceReporter$1 = /*@__PURE__*/ proxyCustomElement(class Crowdsource
|
|
546
548
|
* @protected
|
547
549
|
*/
|
548
550
|
async loadFeatureFromURLParams() {
|
551
|
+
if (this.center && this.level) {
|
552
|
+
await this.mapView.goTo({
|
553
|
+
center: this.center.split(';').map(Number),
|
554
|
+
zoom: this.level
|
555
|
+
});
|
556
|
+
}
|
549
557
|
if (this.layerId && this.objectId) {
|
550
558
|
const layer = await getLayerOrTable(this.mapView, this.layerId);
|
551
559
|
if (layer) {
|
552
560
|
// only query if we have some ids...query with no ids will result in all features being returned
|
553
|
-
const featureSet = await queryFeaturesByID([Number(this.objectId)], layer, [],
|
561
|
+
const featureSet = await queryFeaturesByID([Number(this.objectId)], layer, [], true, this.mapView.spatialReference);
|
554
562
|
if (featureSet.length) {
|
555
563
|
//update the selectedFeature
|
556
564
|
this._selectedFeature = featureSet;
|
@@ -562,6 +570,7 @@ const CrowdsourceReporter$1 = /*@__PURE__*/ proxyCustomElement(class Crowdsource
|
|
562
570
|
else {
|
563
571
|
this._flowItems = [...this._flowItems];
|
564
572
|
}
|
573
|
+
await this.highlightOnMap(featureSet[0]);
|
565
574
|
}
|
566
575
|
}
|
567
576
|
}
|
@@ -27,6 +27,8 @@ const LayerList = /*@__PURE__*/ proxyCustomElement(class LayerList extends HTMLE
|
|
27
27
|
this.__registerHost();
|
28
28
|
this.layerSelect = createEvent(this, "layerSelect", 7);
|
29
29
|
this.layersListLoaded = createEvent(this, "layersListLoaded", 7);
|
30
|
+
//HARDCODED IN EN
|
31
|
+
this._noLayerToDisplayErrorMsg = "Web map does not contain any editable layers.";
|
30
32
|
this.mapView = undefined;
|
31
33
|
this.layers = undefined;
|
32
34
|
this.noLayerErrorMsg = undefined;
|
@@ -79,7 +81,7 @@ const LayerList = /*@__PURE__*/ proxyCustomElement(class LayerList extends HTMLE
|
|
79
81
|
*/
|
80
82
|
render() {
|
81
83
|
return (h(Fragment, null, this._isLoading && h("calcite-loader", { label: "", scale: "m" }), !this._isLoading && this.mapView && this._noLayersToDisplay &&
|
82
|
-
h("calcite-notice", { class: "error-msg", icon: "layers-reference", kind: "danger", open: true }, h("div", { slot: "title" }, this._translations.error), h("div", { slot: "message" }, this.noLayerErrorMsg ? this.noLayerErrorMsg : this.
|
84
|
+
h("calcite-notice", { class: "error-msg", icon: "layers-reference", kind: "danger", open: true }, h("div", { slot: "title" }, this._translations.error), h("div", { slot: "message" }, this.noLayerErrorMsg ? this.noLayerErrorMsg : this._noLayerToDisplayErrorMsg)), !this._isLoading && this.mapView &&
|
83
85
|
h("calcite-list", { "selection-appearance": "border", "selection-mode": this.showNextIcon ? "none" : "single-persist" }, this.renderLayerList())));
|
84
86
|
}
|
85
87
|
//--------------------------------------------------------------------------
|
@@ -767,6 +767,8 @@ const LayerList = class {
|
|
767
767
|
registerInstance(this, hostRef);
|
768
768
|
this.layerSelect = createEvent(this, "layerSelect", 7);
|
769
769
|
this.layersListLoaded = createEvent(this, "layersListLoaded", 7);
|
770
|
+
//HARDCODED IN EN
|
771
|
+
this._noLayerToDisplayErrorMsg = "Web map does not contain any editable layers.";
|
770
772
|
this.mapView = undefined;
|
771
773
|
this.layers = undefined;
|
772
774
|
this.noLayerErrorMsg = undefined;
|
@@ -819,7 +821,7 @@ const LayerList = class {
|
|
819
821
|
*/
|
820
822
|
render() {
|
821
823
|
return (h(Fragment, null, this._isLoading && h("calcite-loader", { label: "", scale: "m" }), !this._isLoading && this.mapView && this._noLayersToDisplay &&
|
822
|
-
h("calcite-notice", { class: "error-msg", icon: "layers-reference", kind: "danger", open: true }, h("div", { slot: "title" }, this._translations.error), h("div", { slot: "message" }, this.noLayerErrorMsg ? this.noLayerErrorMsg : this.
|
824
|
+
h("calcite-notice", { class: "error-msg", icon: "layers-reference", kind: "danger", open: true }, h("div", { slot: "title" }, this._translations.error), h("div", { slot: "message" }, this.noLayerErrorMsg ? this.noLayerErrorMsg : this._noLayerToDisplayErrorMsg)), !this._isLoading && this.mapView &&
|
823
825
|
h("calcite-list", { "selection-appearance": "border", "selection-mode": this.showNextIcon ? "none" : "single-persist" }, this.renderLayerList())));
|
824
826
|
}
|
825
827
|
//--------------------------------------------------------------------------
|
@@ -16,6 +16,8 @@ const CrowdsourceReporter = class {
|
|
16
16
|
constructor(hostRef) {
|
17
17
|
registerInstance(this, hostRef);
|
18
18
|
this.togglePanel = createEvent(this, "togglePanel", 7);
|
19
|
+
//HARDCODED IN EN
|
20
|
+
this._noLayerToDisplayErrorMsg = "Web map does not contain any editable layers.";
|
19
21
|
this.description = undefined;
|
20
22
|
this.isMobile = undefined;
|
21
23
|
this.enableAnonymousAccess = undefined;
|
@@ -161,7 +163,7 @@ const CrowdsourceReporter = class {
|
|
161
163
|
*/
|
162
164
|
getLayerListFlowItem() {
|
163
165
|
return (h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this.reportsHeader }, this.isMobile && this.getActionToExpandCollapsePanel(), this._hasValidLayers && this.enableNewReports &&
|
164
|
-
h("calcite-button", { appearance: "solid", onClick: this.navigateToChooseCategory.bind(this), slot: "footer", width: "full" }, this.reportButtonText), h("calcite-panel", { "full-height": true, "full-width": true }, h("layer-list", { class: "height-full", layers: this.layers, mapView: this.mapView, noLayerErrorMsg: this.
|
166
|
+
h("calcite-button", { appearance: "solid", onClick: this.navigateToChooseCategory.bind(this), slot: "footer", width: "full" }, this.reportButtonText), h("calcite-panel", { "full-height": true, "full-width": true }, h("layer-list", { class: "height-full", layers: this.layers, mapView: this.mapView, noLayerErrorMsg: this._noLayerToDisplayErrorMsg, onLayerSelect: this.displayFeaturesList.bind(this), onLayersListLoaded: this.layerListLoaded.bind(this), ref: el => this._layerList = el, showFeatureCount: true, showNextIcon: true }))));
|
165
167
|
}
|
166
168
|
/**
|
167
169
|
* Get the layer list for creating a report
|
@@ -169,7 +171,7 @@ const CrowdsourceReporter = class {
|
|
169
171
|
* @protected
|
170
172
|
*/
|
171
173
|
getChooseCategoryFlowItem() {
|
172
|
-
return (h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this._translations.createReportHeader, onCalciteFlowItemBack: this.backFromSelectedPanel.bind(this) }, this.isMobile && this.getActionToExpandCollapsePanel(), h("div", { class: "width-full", slot: "footer" }, h("calcite-button", { appearance: "solid", class: "footer-top-button footer-button", disabled: !this._selectedLayerId, onClick: this.navigateToCreateFeature.bind(this), width: "full" }, this._translations.next), h("calcite-button", { appearance: "outline", class: "footer-button", onClick: this.backFromSelectedPanel.bind(this), width: "full" }, this._translations.cancel)), h("calcite-panel", { "full-height": true, "full-width": true }, h("calcite-notice", { class: "notice-msg", icon: "lightbulb", kind: "success", open: true }, h("div", { slot: "message" }, this._translations.chooseCategoryMsg)), h("layer-list", { class: "height-full", layers: this.layers, mapView: this.mapView, noLayerErrorMsg: this.
|
174
|
+
return (h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this._translations.createReportHeader, onCalciteFlowItemBack: this.backFromSelectedPanel.bind(this) }, this.isMobile && this.getActionToExpandCollapsePanel(), h("div", { class: "width-full", slot: "footer" }, h("calcite-button", { appearance: "solid", class: "footer-top-button footer-button", disabled: !this._selectedLayerId, onClick: this.navigateToCreateFeature.bind(this), width: "full" }, this._translations.next), h("calcite-button", { appearance: "outline", class: "footer-button", onClick: this.backFromSelectedPanel.bind(this), width: "full" }, this._translations.cancel)), h("calcite-panel", { "full-height": true, "full-width": true }, h("calcite-notice", { class: "notice-msg", icon: "lightbulb", kind: "success", open: true }, h("div", { slot: "message" }, this._translations.chooseCategoryMsg)), h("layer-list", { class: "height-full", layers: this.layers, mapView: this.mapView, noLayerErrorMsg: this._noLayerToDisplayErrorMsg, onLayerSelect: this.highlightSelectedLayer.bind(this), showFeatureCount: false, showNextIcon: false }))));
|
173
175
|
}
|
174
176
|
/**
|
175
177
|
* Get Feature create form of the selected feature layer
|
@@ -515,11 +517,17 @@ const CrowdsourceReporter = class {
|
|
515
517
|
* @protected
|
516
518
|
*/
|
517
519
|
async loadFeatureFromURLParams() {
|
520
|
+
if (this.center && this.level) {
|
521
|
+
await this.mapView.goTo({
|
522
|
+
center: this.center.split(';').map(Number),
|
523
|
+
zoom: this.level
|
524
|
+
});
|
525
|
+
}
|
518
526
|
if (this.layerId && this.objectId) {
|
519
527
|
const layer = await getLayerOrTable(this.mapView, this.layerId);
|
520
528
|
if (layer) {
|
521
529
|
// only query if we have some ids...query with no ids will result in all features being returned
|
522
|
-
const featureSet = await queryFeaturesByID([Number(this.objectId)], layer, [],
|
530
|
+
const featureSet = await queryFeaturesByID([Number(this.objectId)], layer, [], true, this.mapView.spatialReference);
|
523
531
|
if (featureSet.length) {
|
524
532
|
//update the selectedFeature
|
525
533
|
this._selectedFeature = featureSet;
|
@@ -531,6 +539,7 @@ const CrowdsourceReporter = class {
|
|
531
539
|
else {
|
532
540
|
this._flowItems = [...this._flowItems];
|
533
541
|
}
|
542
|
+
await this.highlightOnMap(featureSet[0]);
|
534
543
|
}
|
535
544
|
}
|
536
545
|
}
|
@@ -8,10 +8,10 @@ import{r as t,h as i,g as s,c as e,H as a,F as o}from"./p-7d280d8a.js";import{c
|
|
8
8
|
* All material copyright ESRI, All Rights Reserved, unless otherwise specified.
|
9
9
|
* See https://github.com/Esri/calcite-design-system/blob/main/LICENSE.md for details.
|
10
10
|
* v2.4.0
|
11
|
-
*/const
|
11
|
+
*/const W=class{constructor(i){t(this,i),this.itemMutationObserver=n("mutation",(()=>this.updateFlowProps())),this.getFlowDirection=(t,i)=>t&&i>1||t>1?i<t?"retreating":"advancing":null,this.updateFlowProps=()=>{const{customItemSelectors:t,el:i,items:s}=this,e=Array.from(i.querySelectorAll("calcite-flow-item"+(t?`,${t}`:""))).filter((t=>t.closest("calcite-flow")===i)),a=s.length,o=e.length,n=e[o-1],l=e[o-2];if(o&&n&&e.forEach((t=>{t.showBackButton=t===n&&o>1,t.hidden=t!==n})),l&&(l.menuOpen=!1),this.items=e,a!==o){const t=this.getFlowDirection(a,o);this.itemCount=o,this.flowDirection=t}},this.customItemSelectors=void 0,this.flowDirection=null,this.itemCount=0,this.items=[]}async back(){const{items:t}=this,i=t[t.length-1];if(!i)return;const s=i.beforeBack?i.beforeBack:()=>Promise.resolve();try{await s.call(i)}catch(t){return}return i.remove(),i}async setFocus(){await l(this);const{items:t}=this,i=t[t.length-1];return null==i?void 0:i.setFocus()}connectedCallback(){var t;null===(t=this.itemMutationObserver)||void 0===t||t.observe(this.el,{childList:!0,subtree:!0}),this.updateFlowProps()}async componentWillLoad(){c(this)}componentDidLoad(){r(this)}disconnectedCallback(){var t;null===(t=this.itemMutationObserver)||void 0===t||t.disconnect()}async handleItemBackClick(t){if(!t.defaultPrevented)return await this.back(),this.setFocus()}render(){const{flowDirection:t}=this;return i("div",{class:{frame:!0,"frame--advancing":"advancing"===t,"frame--retreating":"retreating"===t}},i("slot",null))}get el(){return s(this)}};W.style=":host{box-sizing:border-box;background-color:var(--calcite-color-foreground-1);color:var(--calcite-color-text-2);font-size:var(--calcite-font-size--1)}:host *{box-sizing:border-box}:host{position:relative;display:flex;inline-size:100%;flex:1 1 auto;align-items:stretch;overflow:hidden;background-color:transparent}:host .frame{position:relative;margin:0px;display:flex;inline-size:100%;flex:1 1 auto;flex-direction:column;align-items:stretch;padding:0px}:host ::slotted(calcite-flow-item),:host ::slotted(calcite-panel){block-size:100%}:host ::slotted(.calcite-match-height:last-child){display:flex;flex:1 1 auto;overflow:hidden}:host .frame--advancing{animation:calcite-frame-advance var(--calcite-animation-timing)}:host .frame--retreating{animation:calcite-frame-retreat var(--calcite-animation-timing)}@keyframes calcite-frame-advance{0%{--tw-bg-opacity:0.5;transform:translate3d(50px, 0, 0)}100%{--tw-bg-opacity:1;transform:translate3d(0, 0, 0)}}@keyframes calcite-frame-retreat{0%{--tw-bg-opacity:0.5;transform:translate3d(-50px, 0, 0)}100%{--tw-bg-opacity:1;transform:translate3d(0, 0, 0)}}:host([hidden]){display:none}[hidden]{display:none}";
|
12
12
|
/*!
|
13
13
|
* All material copyright ESRI, All Rights Reserved, unless otherwise specified.
|
14
14
|
* See https://github.com/Esri/calcite-design-system/blob/main/LICENSE.md for details.
|
15
15
|
* v2.4.0
|
16
16
|
*/
|
17
|
-
const P=class{constructor(i){t(this,i),this.calciteFlowItemBack=e(this,"calciteFlowItemBack",7),this.calciteFlowItemScroll=e(this,"calciteFlowItemScroll",6),this.calciteFlowItemClose=e(this,"calciteFlowItemClose",6),this.calciteFlowItemToggle=e(this,"calciteFlowItemToggle",6),this.handlePanelScroll=t=>{t.stopPropagation(),this.calciteFlowItemScroll.emit()},this.handlePanelClose=t=>{t.stopPropagation(),this.calciteFlowItemClose.emit()},this.handlePanelToggle=t=>{t.stopPropagation(),this.collapsed=t.target.collapsed,this.calciteFlowItemToggle.emit()},this.backButtonClick=()=>{this.calciteFlowItemBack.emit()},this.setBackRef=t=>{this.backButtonEl=t},this.setContainerRef=t=>{this.containerEl=t},this.closable=!1,this.closed=!1,this.collapsed=!1,this.collapseDirection="down",this.collapsible=!1,this.beforeBack=void 0,this.description=void 0,this.disabled=!1,this.heading=void 0,this.headingLevel=void 0,this.loading=!1,this.menuOpen=!1,this.messageOverrides=void 0,this.messages=void 0,this.overlayPositioning="absolute",this.showBackButton=!1,this.defaultMessages=void 0,this.effectiveLocale=""}onMessagesChange(){}connectedCallback(){d(this),f(this),g(this)}async componentWillLoad(){await y(this),c(this)}componentDidRender(){p(this)}disconnectedCallback(){m(this),v(this),b(this)}componentDidLoad(){r(this)}effectiveLocaleChange(){w(this,this.effectiveLocale)}async setFocus(){await l(this);const{backButtonEl:t,containerEl:i}=this;return t?t.setFocus():i?i.setFocus():void 0}async scrollContentTo(t){var i;await(null===(i=this.containerEl)||void 0===i?void 0:i.scrollContentTo(t))}renderBackButton(){const{el:t}=this,s="rtl"===h(t),{showBackButton:e,backButtonClick:a,messages:o}=this,n=o.back;return e?i("calcite-action",{"aria-label":n,class:"back-button",icon:s?"chevron-right":"chevron-left",key:"flow-back-button",onClick:a,scale:"s",slot:"header-actions-start",text:n,title:n,ref:this.setBackRef}):null}render(){const{collapsed:t,collapseDirection:s,collapsible:e,closable:o,closed:n,description:l,disabled:c,heading:r,headingLevel:h,loading:d,menuOpen:p,messages:m,overlayPositioning:f}=this;return i(a,null,i(u,{disabled:c},i("calcite-panel",{closable:o,closed:n,collapseDirection:s,collapsed:t,collapsible:e,description:l,disabled:c,heading:r,headingLevel:h,loading:d,menuOpen:p,messageOverrides:m,onCalcitePanelClose:this.handlePanelClose,onCalcitePanelScroll:this.handlePanelScroll,onCalcitePanelToggle:this.handlePanelToggle,overlayPositioning:f,ref:this.setContainerRef},this.renderBackButton(),i("slot",{name:"action-bar",slot:x.actionBar}),i("slot",{name:"header-actions-start",slot:x.headerActionsStart}),i("slot",{name:"header-actions-end",slot:x.headerActionsEnd}),i("slot",{name:"header-content",slot:x.headerContent}),i("slot",{name:"header-menu-actions",slot:x.headerMenuActions}),i("slot",{name:"fab",slot:x.fab}),i("slot",{name:"footer-actions",slot:x.footerActions}),i("slot",{name:"footer",slot:x.footer}),i("slot",null))))}static get assetsDirs(){return["assets"]}get el(){return s(this)}static get watchers(){return{messageOverrides:["onMessagesChange"],effectiveLocale:["effectiveLocaleChange"]}}};P.style=":host{box-sizing:border-box;background-color:var(--calcite-color-foreground-1);color:var(--calcite-color-text-2);font-size:var(--calcite-font-size--1)}:host *{box-sizing:border-box}:host([disabled]){cursor:default;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:var(--calcite-opacity-disabled)}:host([disabled]) *,:host([disabled]) ::slotted(*){pointer-events:none}:host{position:relative;display:flex;inline-size:100%;flex:1 1 auto}:host([disabled]) ::slotted([calcite-hydrated][disabled]),:host([disabled]) [calcite-hydrated][disabled]{opacity:1}.interaction-container{display:contents}.back-button{border-width:0px;border-style:solid;border-color:var(--calcite-color-border-3);border-inline-end-width:1px}calcite-panel{--calcite-panel-footer-padding:var(--calcite-flow-item-footer-padding);--calcite-panel-header-border-block-end:var(--calcite-flow-item-header-border-block-end)}:host([hidden]){display:none}[hidden]{display:none}";const S=class{constructor(i){t(this,i),this.success=e(this,"success",7),this.fail=e(this,"fail",7),this.drawComplete=e(this,"drawComplete",7),this.editingAttachment=e(this,"editingAttachment",7),this.mapView=void 0,this.selectedLayerId=void 0,this.customizeSubmit=!1}async mapViewWatchHandler(){await this.mapView.when((async()=>{await this.init()}))}async close(){this._editor&&this._editor.destroy()}async submit(){this._editor&&this._editor.viewModel.featureFormViewModel.submit()}async componentWillLoad(){await this.initModules()}async componentDidLoad(){await this.init()}render(){return i(a,{id:"feature-form"})}async init(){this.mapView&&this.selectedLayerId&&await this.createEditorWidget()}async initModules(){const[t,i]=await k(["esri/widgets/Editor","esri/core/reactiveUtils"]);this.Editor=t,this.reactiveUtils=i}async createEditorWidget(){this._editor&&this._editor.destroy();const t=[],i=document.createElement("div");(await _(this.mapView)).forEach((async i=>{t.push({layer:i,enabled:"feature"===(null==i?void 0:i.type)&&(null==i?void 0:i.id)===this.selectedLayerId,addEnabled:!0,updateEnabled:!1,deleteEnabled:!1})})),this._editor=new this.Editor({allowedWorkflows:"create-features",view:this.mapView,layerInfos:t,visibleElements:{snappingControls:!1},container:i}),this.el.appendChild(i);const s=this.reactiveUtils.watch((()=>this._editor.viewModel.state),(t=>{"adding-attachment"===t||"editing-attachment"===t?(this._addingAttachment=!0,this.editingAttachment.emit(!0)):this._addingAttachment&&(this.editingAttachment.emit(!1),this._addingAttachment=!1)}));this._editor.viewModel.addHandles(s);const e=this.reactiveUtils.watch((()=>this._editor.viewModel.featureTemplatesViewModel.state),(t=>{"ready"===t&&this.startCreate()}));this._editor.viewModel.addHandles(e)}async startCreate(){var t;if(null===(t=this._editor.viewModel.featureTemplatesViewModel.items)||void 0===t?void 0:t.length){const t=this._editor.viewModel.featureTemplatesViewModel.items[0].get("items");this._editor.viewModel.featureTemplatesViewModel.on("select",(()=>{setTimeout((()=>{this._editor.viewModel.featureFormViewModel.on("submit",this.submitted.bind(this)),this._editor.viewModel.sketchViewModel.on("create",(t=>{"complete"===t.state&&this.drawComplete.emit()})),this.hideEditorsElements()}),700),this.hideEditorsElements()})),1===t.length&&this._editor.viewModel.featureTemplatesViewModel.select(t[0]),this.hideEditorsElements()}}hideEditorsElements(){this.customizeSubmit&&setTimeout((()=>{var t;null===(t=this.el.querySelector(".esri-editor").querySelectorAll("calcite-flow-item"))||void 0===t||t.forEach((t=>{var i,s,e,a,o;const n=null===(e=null===(s=null===(i=t.shadowRoot)||void 0===i?void 0:i.querySelector("calcite-panel"))||void 0===s?void 0:s.shadowRoot)||void 0===e?void 0:e.querySelector("article");null===(a=null==n?void 0:n.querySelector("header"))||void 0===a||a.setAttribute("style","display: none"),null===(o=null==n?void 0:n.querySelector("footer"))||void 0===o||o.setAttribute("style","display: none")}))}),700)}async submitted(t){var i;if(!t.invalid.length&&t.valid.length){try{await this._editor.activeWorkflow.commit(),(null===(i=this._editor.viewModel.failures)||void 0===i?void 0:i.length)&&this._editor.viewModel.failures.some((t=>{if(t.error)throw t.error}))}catch(t){return void this.fail.emit(t)}this.success.emit()}}get el(){return s(this)}static get watchers(){return{mapView:["mapViewWatchHandler"]}}};S.style=":host{display:block}.esri-editor__panel-toolbar{display:none !important}.esri-editor__update-actions{display:none !important}.esri-editor__panel-content{padding-block:0px !important}.esri-editor .esri-item-list__group__header{display:none !important}.esri-editor__panel-content__section .esri-widget__heading{display:none !important}.esri-editor .esri-item-list__filter-container--sticky{padding-block:0px !important;padding-inline:10px !important}";const W=class{constructor(i){t(this,i),this.featureSelect=e(this,"featureSelect",7),this.selectedLayerId=void 0,this.mapView=void 0,this.noFeaturesFoundMsg=void 0,this.pageSize=100,this.highlightOnMap=!1,this._featureItems=[],this._featuresCount=0,this._isLoading=!1,this._translations=void 0}async selectedLayerWatchHandler(){this._selectedLayer=await j(this.mapView,this.selectedLayerId),await this.initializeFeatureItems()}async componentWillLoad(){await this._getTranslations(),this._isLoading=!0,this._popupUtils=new E,this.mapView&&this.selectedLayerId&&(this._selectedLayer=await j(this.mapView,this.selectedLayerId))}async componentDidLoad(){await this.initializeFeatureItems()}render(){return i("calcite-panel",{"full-height":!0,"full-width":!0},this._isLoading&&i("calcite-loader",{label:"",scale:"m"}),0===this._featureItems.length&&!this._isLoading&&i("calcite-notice",{class:"error-msg",icon:"feature-details",kind:"info",open:!0},i("div",{slot:"message"},this.noFeaturesFoundMsg?this.noFeaturesFoundMsg:this._translations.featureErrorMsg)),i("calcite-list",{"selection-appearance":"border","selection-mode":"none"},!this._isLoading&&this._featureItems.length>0&&this._featureItems),this._featuresCount>this.pageSize&&i("div",{class:"width-full",slot:"footer"},i("calcite-pagination",{class:"pagination","full-width":!0,onCalcitePaginationChange:this.pageChanged.bind(this),"page-size":this.pageSize,"start-item":"1","total-items":this._featuresCount})))}async initializeFeatureItems(){this._selectedLayer&&(this._isLoading=!0,this._featureItems=await this.queryPage(0),this._featuresCount=await this._selectedLayer.queryFeatureCount(),this._isLoading=!1)}async pageChanged(t){this._isLoading=!0,this._highlightHandle&&(this._highlightHandle.remove(),this._highlightHandle=null);const i=t.target.startItem-1;this._featureItems=await this.queryPage(i),this._isLoading=!1}async featureClicked(t,i){if(this.highlightOnMap&&this._highlightHandle&&(this._highlightHandle.remove(),this._highlightHandle=null),this.highlightOnMap){const i=Number(t.target.value),s=await I(this.mapView,this.selectedLayerId);this._highlightHandle=await z([i],s,this.mapView,!0)}this.featureSelect.emit(i)}async queryPage(t){const i=this._selectedLayer,s=i.objectIdField,e={start:t,num:this.pageSize,outFields:["*"],returnGeometry:!0,where:i.definitionExpression,outSpatialReference:this.mapView.spatialReference.toJSON()};s&&(e.orderByFields=[s.toString()+" DESC"]);const a=await i.queryFeatures(e);return await this.createFeatureItem(a)}async createFeatureItem(t){const i=(null==t?void 0:t.features).map((async t=>{const i=await this._popupUtils.getPopupTitle(t,this.mapView.map);return this.getFeatureItem(t,i)}));return Promise.all(i)}getFeatureItem(t,s){const e=t.attributes[this._selectedLayer.objectIdField].toString();return i("calcite-list-item",{onCalciteListItemSelect:i=>{this.featureClicked(i,t)},value:e},i("div",{class:"popup-title",slot:"content-start"},s=null!=s?s:e),i("calcite-icon",{icon:"chevron-right",scale:"s",slot:"content-end"}))}async _getTranslations(){const t=await L(this.el);this._translations=t[0]}get el(){return s(this)}static get watchers(){return{selectedLayerId:["selectedLayerWatchHandler"]}}};W.style=":host{display:block}.width-full{width:100%}.pagination{display:flex;justify-content:center}.error-msg{padding:10px;width:calc(100% - 20px)}.popup-title{font-weight:500;padding:10px 12px}";const B=class{constructor(i){t(this,i),this.layerSelect=e(this,"layerSelect",7),this.layersListLoaded=e(this,"layersListLoaded",7),this.mapView=void 0,this.layers=void 0,this.noLayerErrorMsg=void 0,this.showFeatureCount=!0,this.showNextIcon=!1,this._noLayersToDisplay=!1,this._mapLayerIds=[],this._isLoading=!1,this._translations=void 0}async refresh(){await this.setLayers()}async componentWillLoad(){await this._getTranslations(),this._isLoading=!0}async componentDidLoad(){await this.setLayers(),this._isLoading=!1}render(){return i(o,null,this._isLoading&&i("calcite-loader",{label:"",scale:"m"}),!this._isLoading&&this.mapView&&this._noLayersToDisplay&&i("calcite-notice",{class:"error-msg",icon:"layers-reference",kind:"danger",open:!0},i("div",{slot:"title"},this._translations.error),i("div",{slot:"message"},this.noLayerErrorMsg?this.noLayerErrorMsg:this._translations.noLayerToDisplayErrorMsg)),!this._isLoading&&this.mapView&&i("calcite-list",{"selection-appearance":"border","selection-mode":this.showNextIcon?"none":"single-persist"},this.renderLayerList()))}async setLayers(){this.mapView&&await this.initLayerHash()}async initLayerHash(){const t=[];this._layerItemsHash=await D(this.mapView,!0),(await _(this.mapView)).forEach((async i=>{var s,e;if("feature"===(null==i?void 0:i.type)&&(null==i?void 0:i.editingEnabled)&&(null===(e=null===(s=null==i?void 0:i.capabilities)||void 0===s?void 0:s.operations)||void 0===e?void 0:e.supportsAdd)&&(this._layerItemsHash[i.id].supportsAdd=!0,this.showFeatureCount)){const s=i.createQuery(),e=i.queryFeatureCount(s);t.push(e),e.then((async t=>{const s=isNaN(t)?"":await C(t,{places:0,api:4,type:"decimal"});this._layerItemsHash[i.id].formattedFeatureCount=s}))}})),await Promise.all(t).then((()=>{const t=this.getEditableIds(this._layerItemsHash);this._mapLayerIds=t.reverse(),this.handleNoLayersToDisplay()}),(()=>{this._mapLayerIds=[],this.handleNoLayersToDisplay()}))}handleNoLayersToDisplay(){this._noLayersToDisplay=!(this._mapLayerIds.length>0),this.layersListLoaded.emit(this._mapLayerIds)}getEditableIds(t){var i;const s=(null===(i=this.layers)||void 0===i?void 0:i.length)>0?this.layers:[];return Object.keys(t).reduce(((i,e)=>{let a=t[e].supportsAdd;return(null==s?void 0:s.length)>0&&(a=s.indexOf(e)>-1&&t[e].supportsAdd),a&&i.push(e),i}),[])}renderLayerList(){return this._mapLayerIds.length>0&&this._mapLayerIds.reduce(((t,i)=>(this._layerItemsHash[i]&&t.push(this.getLayerListItem(i)),t)),[])}getLayerListItem(t){const s=this._layerItemsHash[t].formattedFeatureCount;return i("calcite-list-item",{onCalciteListItemSelect:()=>{this.onLayerItemSelected(t)}},i("div",{class:"layer-name",slot:"content-start"},this._layerItemsHash[t].name),this.showFeatureCount&&void 0!==s&&""!==s&&i("div",{class:this.showNextIcon?"":"feature-count",slot:"content-end"},"("+s+")"),this.showNextIcon&&i("calcite-icon",{icon:"chevron-right",scale:"s",slot:"content-end"}))}onLayerItemSelected(t){this.layerSelect.emit({layerId:t,layerName:this._layerItemsHash[t].name})}async _getTranslations(){const t=await L(this.el);this._translations=t[0]}get el(){return s(this)}};B.style=":host{display:block}.error-msg{padding:10px}.layer-name{font-weight:500;padding:10px 12px}.feature-count{padding-right:12px}";export{F as calcite_flow,P as calcite_flow_item,S as create_feature,W as feature_list,B as layer_list}
|
17
|
+
const F=class{constructor(i){t(this,i),this.calciteFlowItemBack=e(this,"calciteFlowItemBack",7),this.calciteFlowItemScroll=e(this,"calciteFlowItemScroll",6),this.calciteFlowItemClose=e(this,"calciteFlowItemClose",6),this.calciteFlowItemToggle=e(this,"calciteFlowItemToggle",6),this.handlePanelScroll=t=>{t.stopPropagation(),this.calciteFlowItemScroll.emit()},this.handlePanelClose=t=>{t.stopPropagation(),this.calciteFlowItemClose.emit()},this.handlePanelToggle=t=>{t.stopPropagation(),this.collapsed=t.target.collapsed,this.calciteFlowItemToggle.emit()},this.backButtonClick=()=>{this.calciteFlowItemBack.emit()},this.setBackRef=t=>{this.backButtonEl=t},this.setContainerRef=t=>{this.containerEl=t},this.closable=!1,this.closed=!1,this.collapsed=!1,this.collapseDirection="down",this.collapsible=!1,this.beforeBack=void 0,this.description=void 0,this.disabled=!1,this.heading=void 0,this.headingLevel=void 0,this.loading=!1,this.menuOpen=!1,this.messageOverrides=void 0,this.messages=void 0,this.overlayPositioning="absolute",this.showBackButton=!1,this.defaultMessages=void 0,this.effectiveLocale=""}onMessagesChange(){}connectedCallback(){d(this),f(this),g(this)}async componentWillLoad(){await y(this),c(this)}componentDidRender(){p(this)}disconnectedCallback(){m(this),v(this),b(this)}componentDidLoad(){r(this)}effectiveLocaleChange(){w(this,this.effectiveLocale)}async setFocus(){await l(this);const{backButtonEl:t,containerEl:i}=this;return t?t.setFocus():i?i.setFocus():void 0}async scrollContentTo(t){var i;await(null===(i=this.containerEl)||void 0===i?void 0:i.scrollContentTo(t))}renderBackButton(){const{el:t}=this,s="rtl"===h(t),{showBackButton:e,backButtonClick:a,messages:o}=this,n=o.back;return e?i("calcite-action",{"aria-label":n,class:"back-button",icon:s?"chevron-right":"chevron-left",key:"flow-back-button",onClick:a,scale:"s",slot:"header-actions-start",text:n,title:n,ref:this.setBackRef}):null}render(){const{collapsed:t,collapseDirection:s,collapsible:e,closable:o,closed:n,description:l,disabled:c,heading:r,headingLevel:h,loading:d,menuOpen:p,messages:m,overlayPositioning:f}=this;return i(a,null,i(u,{disabled:c},i("calcite-panel",{closable:o,closed:n,collapseDirection:s,collapsed:t,collapsible:e,description:l,disabled:c,heading:r,headingLevel:h,loading:d,menuOpen:p,messageOverrides:m,onCalcitePanelClose:this.handlePanelClose,onCalcitePanelScroll:this.handlePanelScroll,onCalcitePanelToggle:this.handlePanelToggle,overlayPositioning:f,ref:this.setContainerRef},this.renderBackButton(),i("slot",{name:"action-bar",slot:x.actionBar}),i("slot",{name:"header-actions-start",slot:x.headerActionsStart}),i("slot",{name:"header-actions-end",slot:x.headerActionsEnd}),i("slot",{name:"header-content",slot:x.headerContent}),i("slot",{name:"header-menu-actions",slot:x.headerMenuActions}),i("slot",{name:"fab",slot:x.fab}),i("slot",{name:"footer-actions",slot:x.footerActions}),i("slot",{name:"footer",slot:x.footer}),i("slot",null))))}static get assetsDirs(){return["assets"]}get el(){return s(this)}static get watchers(){return{messageOverrides:["onMessagesChange"],effectiveLocale:["effectiveLocaleChange"]}}};F.style=":host{box-sizing:border-box;background-color:var(--calcite-color-foreground-1);color:var(--calcite-color-text-2);font-size:var(--calcite-font-size--1)}:host *{box-sizing:border-box}:host([disabled]){cursor:default;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:var(--calcite-opacity-disabled)}:host([disabled]) *,:host([disabled]) ::slotted(*){pointer-events:none}:host{position:relative;display:flex;inline-size:100%;flex:1 1 auto}:host([disabled]) ::slotted([calcite-hydrated][disabled]),:host([disabled]) [calcite-hydrated][disabled]{opacity:1}.interaction-container{display:contents}.back-button{border-width:0px;border-style:solid;border-color:var(--calcite-color-border-3);border-inline-end-width:1px}calcite-panel{--calcite-panel-footer-padding:var(--calcite-flow-item-footer-padding);--calcite-panel-header-border-block-end:var(--calcite-flow-item-header-border-block-end)}:host([hidden]){display:none}[hidden]{display:none}";const P=class{constructor(i){t(this,i),this.success=e(this,"success",7),this.fail=e(this,"fail",7),this.drawComplete=e(this,"drawComplete",7),this.editingAttachment=e(this,"editingAttachment",7),this.mapView=void 0,this.selectedLayerId=void 0,this.customizeSubmit=!1}async mapViewWatchHandler(){await this.mapView.when((async()=>{await this.init()}))}async close(){this._editor&&this._editor.destroy()}async submit(){this._editor&&this._editor.viewModel.featureFormViewModel.submit()}async componentWillLoad(){await this.initModules()}async componentDidLoad(){await this.init()}render(){return i(a,{id:"feature-form"})}async init(){this.mapView&&this.selectedLayerId&&await this.createEditorWidget()}async initModules(){const[t,i]=await k(["esri/widgets/Editor","esri/core/reactiveUtils"]);this.Editor=t,this.reactiveUtils=i}async createEditorWidget(){this._editor&&this._editor.destroy();const t=[],i=document.createElement("div");(await _(this.mapView)).forEach((async i=>{t.push({layer:i,enabled:"feature"===(null==i?void 0:i.type)&&(null==i?void 0:i.id)===this.selectedLayerId,addEnabled:!0,updateEnabled:!1,deleteEnabled:!1})})),this._editor=new this.Editor({allowedWorkflows:"create-features",view:this.mapView,layerInfos:t,visibleElements:{snappingControls:!1},container:i}),this.el.appendChild(i);const s=this.reactiveUtils.watch((()=>this._editor.viewModel.state),(t=>{"adding-attachment"===t||"editing-attachment"===t?(this._addingAttachment=!0,this.editingAttachment.emit(!0)):this._addingAttachment&&(this.editingAttachment.emit(!1),this._addingAttachment=!1)}));this._editor.viewModel.addHandles(s);const e=this.reactiveUtils.watch((()=>this._editor.viewModel.featureTemplatesViewModel.state),(t=>{"ready"===t&&this.startCreate()}));this._editor.viewModel.addHandles(e)}async startCreate(){var t;if(null===(t=this._editor.viewModel.featureTemplatesViewModel.items)||void 0===t?void 0:t.length){const t=this._editor.viewModel.featureTemplatesViewModel.items[0].get("items");this._editor.viewModel.featureTemplatesViewModel.on("select",(()=>{setTimeout((()=>{this._editor.viewModel.featureFormViewModel.on("submit",this.submitted.bind(this)),this._editor.viewModel.sketchViewModel.on("create",(t=>{"complete"===t.state&&this.drawComplete.emit()})),this.hideEditorsElements()}),700),this.hideEditorsElements()})),1===t.length&&this._editor.viewModel.featureTemplatesViewModel.select(t[0]),this.hideEditorsElements()}}hideEditorsElements(){this.customizeSubmit&&setTimeout((()=>{var t;null===(t=this.el.querySelector(".esri-editor").querySelectorAll("calcite-flow-item"))||void 0===t||t.forEach((t=>{var i,s,e,a,o;const n=null===(e=null===(s=null===(i=t.shadowRoot)||void 0===i?void 0:i.querySelector("calcite-panel"))||void 0===s?void 0:s.shadowRoot)||void 0===e?void 0:e.querySelector("article");null===(a=null==n?void 0:n.querySelector("header"))||void 0===a||a.setAttribute("style","display: none"),null===(o=null==n?void 0:n.querySelector("footer"))||void 0===o||o.setAttribute("style","display: none")}))}),700)}async submitted(t){var i;if(!t.invalid.length&&t.valid.length){try{await this._editor.activeWorkflow.commit(),(null===(i=this._editor.viewModel.failures)||void 0===i?void 0:i.length)&&this._editor.viewModel.failures.some((t=>{if(t.error)throw t.error}))}catch(t){return void this.fail.emit(t)}this.success.emit()}}get el(){return s(this)}static get watchers(){return{mapView:["mapViewWatchHandler"]}}};P.style=":host{display:block}.esri-editor__panel-toolbar{display:none !important}.esri-editor__update-actions{display:none !important}.esri-editor__panel-content{padding-block:0px !important}.esri-editor .esri-item-list__group__header{display:none !important}.esri-editor__panel-content__section .esri-widget__heading{display:none !important}.esri-editor .esri-item-list__filter-container--sticky{padding-block:0px !important;padding-inline:10px !important}";const S=class{constructor(i){t(this,i),this.featureSelect=e(this,"featureSelect",7),this.selectedLayerId=void 0,this.mapView=void 0,this.noFeaturesFoundMsg=void 0,this.pageSize=100,this.highlightOnMap=!1,this._featureItems=[],this._featuresCount=0,this._isLoading=!1,this._translations=void 0}async selectedLayerWatchHandler(){this._selectedLayer=await j(this.mapView,this.selectedLayerId),await this.initializeFeatureItems()}async componentWillLoad(){await this._getTranslations(),this._isLoading=!0,this._popupUtils=new E,this.mapView&&this.selectedLayerId&&(this._selectedLayer=await j(this.mapView,this.selectedLayerId))}async componentDidLoad(){await this.initializeFeatureItems()}render(){return i("calcite-panel",{"full-height":!0,"full-width":!0},this._isLoading&&i("calcite-loader",{label:"",scale:"m"}),0===this._featureItems.length&&!this._isLoading&&i("calcite-notice",{class:"error-msg",icon:"feature-details",kind:"info",open:!0},i("div",{slot:"message"},this.noFeaturesFoundMsg?this.noFeaturesFoundMsg:this._translations.featureErrorMsg)),i("calcite-list",{"selection-appearance":"border","selection-mode":"none"},!this._isLoading&&this._featureItems.length>0&&this._featureItems),this._featuresCount>this.pageSize&&i("div",{class:"width-full",slot:"footer"},i("calcite-pagination",{class:"pagination","full-width":!0,onCalcitePaginationChange:this.pageChanged.bind(this),"page-size":this.pageSize,"start-item":"1","total-items":this._featuresCount})))}async initializeFeatureItems(){this._selectedLayer&&(this._isLoading=!0,this._featureItems=await this.queryPage(0),this._featuresCount=await this._selectedLayer.queryFeatureCount(),this._isLoading=!1)}async pageChanged(t){this._isLoading=!0,this._highlightHandle&&(this._highlightHandle.remove(),this._highlightHandle=null);const i=t.target.startItem-1;this._featureItems=await this.queryPage(i),this._isLoading=!1}async featureClicked(t,i){if(this.highlightOnMap&&this._highlightHandle&&(this._highlightHandle.remove(),this._highlightHandle=null),this.highlightOnMap){const i=Number(t.target.value),s=await I(this.mapView,this.selectedLayerId);this._highlightHandle=await z([i],s,this.mapView,!0)}this.featureSelect.emit(i)}async queryPage(t){const i=this._selectedLayer,s=i.objectIdField,e={start:t,num:this.pageSize,outFields:["*"],returnGeometry:!0,where:i.definitionExpression,outSpatialReference:this.mapView.spatialReference.toJSON()};s&&(e.orderByFields=[s.toString()+" DESC"]);const a=await i.queryFeatures(e);return await this.createFeatureItem(a)}async createFeatureItem(t){const i=(null==t?void 0:t.features).map((async t=>{const i=await this._popupUtils.getPopupTitle(t,this.mapView.map);return this.getFeatureItem(t,i)}));return Promise.all(i)}getFeatureItem(t,s){const e=t.attributes[this._selectedLayer.objectIdField].toString();return i("calcite-list-item",{onCalciteListItemSelect:i=>{this.featureClicked(i,t)},value:e},i("div",{class:"popup-title",slot:"content-start"},s=null!=s?s:e),i("calcite-icon",{icon:"chevron-right",scale:"s",slot:"content-end"}))}async _getTranslations(){const t=await L(this.el);this._translations=t[0]}get el(){return s(this)}static get watchers(){return{selectedLayerId:["selectedLayerWatchHandler"]}}};S.style=":host{display:block}.width-full{width:100%}.pagination{display:flex;justify-content:center}.error-msg{padding:10px;width:calc(100% - 20px)}.popup-title{font-weight:500;padding:10px 12px}";const B=class{constructor(i){t(this,i),this.layerSelect=e(this,"layerSelect",7),this.layersListLoaded=e(this,"layersListLoaded",7),this._noLayerToDisplayErrorMsg="Web map does not contain any editable layers.",this.mapView=void 0,this.layers=void 0,this.noLayerErrorMsg=void 0,this.showFeatureCount=!0,this.showNextIcon=!1,this._noLayersToDisplay=!1,this._mapLayerIds=[],this._isLoading=!1,this._translations=void 0}async refresh(){await this.setLayers()}async componentWillLoad(){await this._getTranslations(),this._isLoading=!0}async componentDidLoad(){await this.setLayers(),this._isLoading=!1}render(){return i(o,null,this._isLoading&&i("calcite-loader",{label:"",scale:"m"}),!this._isLoading&&this.mapView&&this._noLayersToDisplay&&i("calcite-notice",{class:"error-msg",icon:"layers-reference",kind:"danger",open:!0},i("div",{slot:"title"},this._translations.error),i("div",{slot:"message"},this.noLayerErrorMsg?this.noLayerErrorMsg:this._noLayerToDisplayErrorMsg)),!this._isLoading&&this.mapView&&i("calcite-list",{"selection-appearance":"border","selection-mode":this.showNextIcon?"none":"single-persist"},this.renderLayerList()))}async setLayers(){this.mapView&&await this.initLayerHash()}async initLayerHash(){const t=[];this._layerItemsHash=await D(this.mapView,!0),(await _(this.mapView)).forEach((async i=>{var s,e;if("feature"===(null==i?void 0:i.type)&&(null==i?void 0:i.editingEnabled)&&(null===(e=null===(s=null==i?void 0:i.capabilities)||void 0===s?void 0:s.operations)||void 0===e?void 0:e.supportsAdd)&&(this._layerItemsHash[i.id].supportsAdd=!0,this.showFeatureCount)){const s=i.createQuery(),e=i.queryFeatureCount(s);t.push(e),e.then((async t=>{const s=isNaN(t)?"":await C(t,{places:0,api:4,type:"decimal"});this._layerItemsHash[i.id].formattedFeatureCount=s}))}})),await Promise.all(t).then((()=>{const t=this.getEditableIds(this._layerItemsHash);this._mapLayerIds=t.reverse(),this.handleNoLayersToDisplay()}),(()=>{this._mapLayerIds=[],this.handleNoLayersToDisplay()}))}handleNoLayersToDisplay(){this._noLayersToDisplay=!(this._mapLayerIds.length>0),this.layersListLoaded.emit(this._mapLayerIds)}getEditableIds(t){var i;const s=(null===(i=this.layers)||void 0===i?void 0:i.length)>0?this.layers:[];return Object.keys(t).reduce(((i,e)=>{let a=t[e].supportsAdd;return(null==s?void 0:s.length)>0&&(a=s.indexOf(e)>-1&&t[e].supportsAdd),a&&i.push(e),i}),[])}renderLayerList(){return this._mapLayerIds.length>0&&this._mapLayerIds.reduce(((t,i)=>(this._layerItemsHash[i]&&t.push(this.getLayerListItem(i)),t)),[])}getLayerListItem(t){const s=this._layerItemsHash[t].formattedFeatureCount;return i("calcite-list-item",{onCalciteListItemSelect:()=>{this.onLayerItemSelected(t)}},i("div",{class:"layer-name",slot:"content-start"},this._layerItemsHash[t].name),this.showFeatureCount&&void 0!==s&&""!==s&&i("div",{class:this.showNextIcon?"":"feature-count",slot:"content-end"},"("+s+")"),this.showNextIcon&&i("calcite-icon",{icon:"chevron-right",scale:"s",slot:"content-end"}))}onLayerItemSelected(t){this.layerSelect.emit({layerId:t,layerName:this._layerItemsHash[t].name})}async _getTranslations(){const t=await L(this.el);this._translations=t[0]}get el(){return s(this)}};B.style=":host{display:block}.error-msg{padding:10px}.layer-name{font-weight:500;padding:10px 12px}.feature-count{padding-right:12px}";export{W as calcite_flow,F as calcite_flow_item,P as create_feature,S as feature_list,B as layer_list}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
/*!
|
2
|
+
* Copyright 2022 Esri
|
3
|
+
* Licensed under the Apache License, Version 2.0
|
4
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
5
|
+
*/
|
6
|
+
import{r as t,c as i,h as s,H as e,g as h}from"./p-7d280d8a.js";import{l as a,g as o}from"./p-b04c9dc3.js";import{a as l,b as c,h as n,g as r,q as d}from"./p-3eedaead.js";import"./p-d918ec36.js";import"./p-e1a4994d.js";import"./p-c1cf3ebc.js";const u=class{constructor(s){t(this,s),this.togglePanel=i(this,"togglePanel",7),this._noLayerToDisplayErrorMsg="Web map does not contain any editable layers.",this.description=void 0,this.isMobile=void 0,this.enableAnonymousAccess=void 0,this.enableAnonymousComments=void 0,this.enableComments=void 0,this.enableLogin=void 0,this.enableNewReports=void 0,this.layers=void 0,this.loginTitle=void 0,this.mapView=void 0,this.layerId=void 0,this.objectId=void 0,this.center=void 0,this.level=void 0,this.reportButtonText=void 0,this.reportsHeader=void 0,this.reportSubmittedMessage=void 0,this.searchConfiguration=void 0,this.showComments=void 0,this.defaultWebmap="",this.enableSearch=!0,this.enableHome=!0,this.mapInfos=[],this.theme="light",this.enableZoom=!0,this._mapInfo=void 0,this._flowItems=["layer-list"],this._sidePanelCollapsed=!1,this._translations=void 0,this._hasValidLayers=!1,this._selectedLayerName=void 0,this._reportSubmitted=!1,this._showSubmitCancelButton=!1,this._featureCreationFailedErrorMsg=void 0}async isMobileWatchHandler(){this._sidePanelCollapsed=!1}async mapViewWatchHandler(){await this.mapView.when((async()=>{await this.setMapView()}))}async componentWillLoad(){this._urlParamsLoaded=!1,await this._initModules(),await this._getTranslations()}render(){const t="dark"===this.theme?"calcite-mode-dark":"calcite-mode-light";return s(e,null,this._reportSubmitted&&s("calcite-alert",{"auto-close":!0,class:t,icon:"check-circle",kind:"success",label:"",onCalciteAlertClose:()=>{this._reportSubmitted=!1},open:!0,placement:"top"},s("div",{slot:"title"},this._translations.reportSubmit),s("div",{slot:"message"},this.reportSubmittedMessage?this.reportSubmittedMessage:this._translations.submitMsg)),this._featureCreationFailedErrorMsg&&s("calcite-alert",{"auto-close":!0,class:t,icon:"x-octagon",kind:"danger",label:"",onCalciteAlertClose:()=>{this._featureCreationFailedErrorMsg=""},open:!0,placement:"top"},s("div",{slot:"title"},this._translations.error),s("div",{slot:"message"},this._featureCreationFailedErrorMsg)),s("div",null,s("calcite-shell",{"content-behind":!0},this._getReporter())))}async _initModules(){const[t]=await a(["esri/core/reactiveUtils"]);this.reactiveUtils=t}setSelectedLayer(t,i){this._selectedLayerId=t,this._selectedLayerName=i,this._validLayers.forEach((i=>{i.set("visible",!t||i.id===t)}))}_getReporter(){const t=[];return this._flowItems.forEach((i=>{switch(i){case"layer-list":t.push(this.getLayerListFlowItem());break;case"feature-list":t.push(this.getFeatureListFlowItem(this._selectedLayerId,this._selectedLayerName));break;case"feature-details":t.push(this.getFeatureDetailsFlowItem());break;case"reporting-layer-list":t.push(this.getChooseCategoryFlowItem());break;case"feature-create":t.push(this.getFeatureCreateFlowItem())}})),s("calcite-panel",{class:"width-full "+("dark"===this.theme?"calcite-mode-dark":"calcite-mode-light")},this.mapView?s("calcite-flow",null,(null==t?void 0:t.length)>0&&t):s("calcite-loader",{label:"",scale:"m"}))}getLayerListFlowItem(){return s("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this.reportsHeader},this.isMobile&&this.getActionToExpandCollapsePanel(),this._hasValidLayers&&this.enableNewReports&&s("calcite-button",{appearance:"solid",onClick:this.navigateToChooseCategory.bind(this),slot:"footer",width:"full"},this.reportButtonText),s("calcite-panel",{"full-height":!0,"full-width":!0},s("layer-list",{class:"height-full",layers:this.layers,mapView:this.mapView,noLayerErrorMsg:this._noLayerToDisplayErrorMsg,onLayerSelect:this.displayFeaturesList.bind(this),onLayersListLoaded:this.layerListLoaded.bind(this),ref:t=>this._layerList=t,showFeatureCount:!0,showNextIcon:!0})))}getChooseCategoryFlowItem(){return s("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this._translations.createReportHeader,onCalciteFlowItemBack:this.backFromSelectedPanel.bind(this)},this.isMobile&&this.getActionToExpandCollapsePanel(),s("div",{class:"width-full",slot:"footer"},s("calcite-button",{appearance:"solid",class:"footer-top-button footer-button",disabled:!this._selectedLayerId,onClick:this.navigateToCreateFeature.bind(this),width:"full"},this._translations.next),s("calcite-button",{appearance:"outline",class:"footer-button",onClick:this.backFromSelectedPanel.bind(this),width:"full"},this._translations.cancel)),s("calcite-panel",{"full-height":!0,"full-width":!0},s("calcite-notice",{class:"notice-msg",icon:"lightbulb",kind:"success",open:!0},s("div",{slot:"message"},this._translations.chooseCategoryMsg)),s("layer-list",{class:"height-full",layers:this.layers,mapView:this.mapView,noLayerErrorMsg:this._noLayerToDisplayErrorMsg,onLayerSelect:this.highlightSelectedLayer.bind(this),showFeatureCount:!1,showNextIcon:!1})))}getFeatureCreateFlowItem(){return s("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this._selectedLayerName,onCalciteFlowItemBack:this.backFromCreateFeaturePanel.bind(this)},this.isMobile&&this.getActionToExpandCollapsePanel(),this._showSubmitCancelButton&&s("div",{class:"width-full",slot:"footer"},s("calcite-button",{appearance:"solid",class:"footer-top-button footer-button",onClick:this.onSubmitButtonClick.bind(this),width:"full"},this._translations.submit),s("calcite-button",{appearance:"outline",class:"footer-button",onClick:this.backFromCreateFeaturePanel.bind(this),width:"full"},this._translations.cancel)),s("calcite-panel",{"full-height":!0,"full-width":!0},s("calcite-notice",{class:"notice-msg",icon:"lightbulb",kind:"success",open:!0},s("div",{slot:"message"},this._translations.featureEditFormInfoMsg)),s("create-feature",{customizeSubmit:!0,mapView:this.mapView,onDrawComplete:this.onDrawComplete.bind(this),onEditingAttachment:this.showSubmitCancelButton.bind(this),onFail:this.createFeatureFailed.bind(this),onSuccess:this.onReportSubmitted.bind(this),ref:t=>this._createFeature=t,selectedLayerId:this._selectedLayerId})))}onDrawComplete(){this._showSubmitCancelButton=!0}showSubmitCancelButton(t){this._showSubmitCancelButton=!t.detail}onSubmitButtonClick(){this._createFeature&&this._createFeature.submit()}backFromCreateFeaturePanel(){this._createFeature&&this._createFeature.close(),this.backFromSelectedPanel()}createFeatureFailed(t){console.error(t.detail),this._featureCreationFailedErrorMsg=t.detail.message}onReportSubmitted(){this._reportSubmitted=!0,this.navigateToHomePage()}navigateToHomePage(){this._createFeature&&this._createFeature.close(),this._layerList&&this._layerList.refresh(),this.setSelectedFeatures([]),this._flowItems=["layer-list"]}highlightSelectedLayer(t){this.setSelectedLayer(t.detail.layerId,t.detail.layerName)}async navigateToCreateFeature(){this._showSubmitCancelButton=!1,this._flowItems=[...this._flowItems,"feature-create"]}navigateToChooseCategory(){this._flowItems=[...this._flowItems,"reporting-layer-list"]}async layerListLoaded(t){const i=t.detail,s=await l(this.mapView);this._validLayers=[],s.forEach((t=>{i.includes(t.id)&&this._validLayers.push(t)})),this.handleMapClick(),this._hasValidLayers=i.length>0,this._urlParamsLoaded||(this._urlParamsLoaded=!0,await this.loadFeatureFromURLParams())}displayFeaturesList(t){this.setSelectedLayer(t.detail.layerId,t.detail.layerName),this._flowItems=[...this._flowItems,"feature-list"]}backFromSelectedPanel(){const t=[...this._flowItems];t.pop(),this.clearHighlights(),1!==t.length?this._flowItems=[...t]:this.navigateToHomePage()}toggleSidePanel(){this._sidePanelCollapsed=!this._sidePanelCollapsed,this.togglePanel.emit(this._sidePanelCollapsed)}async onFeatureSelectFromList(t){this.setSelectedFeatures([t.detail]),this._flowItems=[...this._flowItems,"feature-details"]}getFeatureListFlowItem(t,i){return s("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:i,onCalciteFlowItemBack:this.backFromSelectedPanel.bind(this)},this.isMobile&&this.getActionToExpandCollapsePanel(),this.enableNewReports&&s("calcite-button",{appearance:"solid",onClick:this.navigateToCreateFeature.bind(this),slot:"footer",width:"full"},this.reportButtonText),s("calcite-panel",{"full-height":!0},s("feature-list",{class:"height-full",mapView:this.mapView,noFeaturesFoundMsg:this._translations.featureErrorMsg,onFeatureSelect:this.onFeatureSelectFromList.bind(this),pageSize:30,selectedLayerId:t})))}getFeatureDetailsFlowItem(){return s("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this._selectedLayerName,onCalciteFlowItemBack:this.backFromSelectedPanel.bind(this)},this.isMobile&&this.getActionToExpandCollapsePanel(),s("instant-apps-social-share",{autoUpdateShareUrl:!1,embed:!1,popoverButtonIconScale:"s",ref:t=>this._shareNode=t,scale:"m",shareButtonColor:"neutral",shareButtonType:"action",slot:"header-actions-end",socialMedia:!0,view:this.mapView}),s("calcite-panel",{"full-height":!0},s("info-card",{allowEditing:!1,graphics:this._selectedFeature,highlightEnabled:!1,isLoading:!1,isMobile:!1,mapView:this.mapView,onSelectionChanged:this.featureDetailsChanged.bind(this),zoomAndScrollToSelected:!0})))}setSelectedFeatures(t){this._selectedFeature=t,this.setCurrentFeature(this._selectedFeature.length?this._selectedFeature[0]:null)}setCurrentFeature(t){if(t&&t.layer){const i=t.layer;this.setSelectedLayer(i.id,i.title),this._currentFeatureId=t.attributes[i.objectIdField]}else this.setSelectedLayer("",""),this._currentFeatureId="";this._updateShareURL()}featureDetailsChanged(t){this.setCurrentFeature(t.detail[0]),this.highlightOnMap(t.detail[0])}async highlightOnMap(t){if(this.clearHighlights(),t&&t.geometry&&t.layer){const i=await c(this.mapView,t.layer.id);this._highlightHandle=await n([t.getObjectId()],i,this.mapView,!0)}}clearHighlights(){this._highlightHandle&&this._highlightHandle.remove()}getActionToExpandCollapsePanel(){return s("calcite-action",{icon:this._sidePanelCollapsed?"chevrons-up":"chevrons-down",onClick:this.toggleSidePanel.bind(this),slot:"header-actions-end",text:this._sidePanelCollapsed?this._translations.expand:this._translations.collapse})}async setMapView(){this.mapView.popupEnabled=!1,this._defaultCenter&&this._defaultLevel&&(await this.mapView.goTo({center:this._defaultCenter,zoom:this._defaultLevel}),this._defaultCenter=void 0,this._defaultLevel=void 0)}handleMapClick(){this._mapClickHandle&&this._mapClickHandle.remove(),this._mapClickHandle=this.reactiveUtils.on((()=>this.mapView),"click",this.onMapClick.bind(this))}async onMapClick(t){this.mapView.popupEnabled=!1;const i={include:this._validLayers},s=await this.mapView.hitTest(t,i);if(s.results.length>0){const t=[];s.results.forEach((function(i){"graphic"===i.type&&t.push(i.graphic)})),this.setSelectedFeatures(t),this._flowItems.length&&"feature-details"!==this._flowItems[this._flowItems.length-1]?this._flowItems=[...this._flowItems,"feature-details"]:(this._flowItems=[...this._flowItems],this.highlightOnMap(t[0]))}}async _getTranslations(){const t=await o(this.el);this._translations=t[0]}_updateShareURL(){var t,i;const s=null===(t=this._shareNode)||void 0===t?void 0:t.shareUrl;if(!s)return;const e=new URL(s);this._selectedLayerId?e.searchParams.set("layerid",this._selectedLayerId):e.searchParams.delete("layerid"),(null===(i=this._selectedFeature)||void 0===i?void 0:i.length)?e.searchParams.set("oid",this._currentFeatureId):e.searchParams.delete("oid"),this._shareNode.shareUrl=e.href}async loadFeatureFromURLParams(){if(this.center&&this.level&&await this.mapView.goTo({center:this.center.split(";").map(Number),zoom:this.level}),this.layerId&&this.objectId){const t=await r(this.mapView,this.layerId);if(t){const i=await d([Number(this.objectId)],t,[],!0,this.mapView.spatialReference);i.length&&(this._selectedFeature=i,this._flowItems=this._flowItems.length&&"feature-details"!==this._flowItems[this._flowItems.length-1]?[...this._flowItems,"feature-details"]:[...this._flowItems],await this.highlightOnMap(i[0]))}}}get el(){return h(this)}static get watchers(){return{isMobile:["isMobileWatchHandler"],mapView:["mapViewWatchHandler"]}}};u.style=":host{display:block;--calcite-label-margin-bottom:0px;--solutions-theme-foreground-color:var(--calcite-color-foreground-1)}.width-full{width:100% !important}.width-0{width:0}.height-full{height:100% !important}.height-0{height:0}.overflow-hidden{overflow:hidden}.border{border:1px solid var(--calcite-color-border-3)}.notice-msg{padding:10px;width:calc(100% - 20px)}.footer-top-button{padding-bottom:7px}.footer-button{height:35px}";export{u as crowdsource_reporter}
|
@@ -3,4 +3,4 @@
|
|
3
3
|
* Licensed under the Apache License, Version 2.0
|
4
4
|
* http://www.apache.org/licenses/LICENSE-2.0
|
5
5
|
*/
|
6
|
-
import{p as e,b as a}from"./p-7d280d8a.js";export{s as setNonce}from"./p-7d280d8a.js";import{g as t}from"./p-680b89db.js";import"./p-7c2be8cc.js";(()=>{const a=import.meta.url,t={};return""!==a&&(t.resourcesUrl=new URL(".",a).href),e(t)})().then((e=>(t(),a(JSON.parse('[["p-42233edc",[[0,"crowdsource-manager",{"defaultCenter":[1,"default-center"],"defaultFilter":[1,"default-filter"],"defaultGlobalId":[1,"default-global-id"],"defaultLayer":[1,"default-layer"],"defaultLevel":[1,"default-level"],"defaultOid":[1,"default-oid"],"defaultWebmap":[1,"default-webmap"],"enableAutoRefresh":[4,"enable-auto-refresh"],"enableColumnReorder":[4,"enable-column-reorder"],"enableCSV":[4,"enable-c-s-v"],"enableFloorFilter":[4,"enable-floor-filter"],"enableFullscreen":[4,"enable-fullscreen"],"enableInlineEdit":[4,"enable-inline-edit"],"enableLegend":[4,"enable-legend"],"enableSearch":[4,"enable-search"],"enableShare":[4,"enable-share"],"enableHome":[4,"enable-home"],"enableZoom":[4,"enable-zoom"],"enableBasemap":[4,"enable-basemap"],"basemapConfig":[16],"showNewestFirst":[4,"show-newest-first"],"mapInfos":[16],"onlyShowUpdatableLayers":[4,"only-show-updatable-layers"],"searchConfiguration":[16],"shareIncludeEmbed":[4,"share-include-embed"],"shareIncludeSocial":[4,"share-include-social"],"theme":[1],"zoomAndScrollToSelected":[4,"zoom-and-scroll-to-selected"],"_expandPopup":[32],"_hideFooter":[32],"_hideTable":[32],"_isMobile":[32],"_translations":[32],"_layer":[32],"_layoutMode":[32],"_mapInfo":[32],"_mapView":[32],"_panelOpen":[32],"_numSelected":[32],"_tableOnly":[32]},[[8,"featureSelectionChange","featureSelectionChange"],[8,"popupClosed","popupClosed"],[8,"idsFound","idsFound"],[8,"layoutChanged","layoutChanged"],[8,"mapChanged","mapChanged"],[8,"beforeMapChanged","beforeMapChanged"],[8,"layerSelectionChange","layerSelectionChange"]],{"defaultCenter":["defaultCenterWatchHandler"],"defaultFilter":["defaultFilterWatchHandler"],"defaultGlobalId":["defaultGlobalIdWatchHandler"],"defaultOid":["defaultOidWatchHandler"],"defaultLevel":["defaultLevelWatchHandler"],"enableZoom":["enableZoomWatchHandler"]}]]],["p-69a1df0f",[[0,"public-notification",{"addresseeLayerIds":[16],"bufferColor":[8,"buffer-color"],"bufferOutlineColor":[8,"buffer-outline-color"],"customLabelEnabled":[4,"custom-label-enabled"],"defaultBufferDistance":[2,"default-buffer-distance"],"defaultBufferUnit":[1,"default-buffer-unit"],"defaultExportTitle":[1,"default-export-title"],"defaultNumLabelsPerPage":[2,"default-num-labels-per-page"],"featureEffect":[16],"featureHighlightEnabled":[4,"feature-highlight-enabled"],"mapView":[16],"noResultText":[1,"no-result-text"],"searchConfiguration":[1040],"selectionLayerIds":[16],"showRefineSelection":[4,"show-refine-selection"],"showSearchSettings":[4,"show-search-settings"],"sketchLineSymbol":[8,"sketch-line-symbol"],"sketchPointSymbol":[8,"sketch-point-symbol"],"sketchPolygonSymbol":[8,"sketch-polygon-symbol"],"_addMap":[32],"_addResults":[32],"_addTitle":[32],"_downloadActive":[32],"_exportType":[32],"_fetchingData":[32],"_isMobile":[32],"_numDuplicates":[32],"_pageType":[32],"_saveEnabled":[32],"_selectionSets":[32],"_translations":[32]},[[8,"selectionSetsChanged","selectionSetsChanged"]],{"mapView":["mapViewWatchHandler"],"searchConfiguration":["watchSearchConfigurationHandler"],"sketchLineSymbol":["sketchLineSymbolWatchHandler"],"sketchPointSymbol":["sketchPointSymbolWatchHandler"],"sketchPolygonSymbol":["sketchPolygonSymbolWatchHandler"],"_pageType":["pageTypeWatchHandler"]}]]],["p-463712ef",[[0,"solution-configuration",{"authentication":[1040],"serializedAuthentication":[1025,"serialized-authentication"],"solutionItemId":[1537,"solution-item-id"],"showLoading":[1540,"show-loading"],"_currentEditItemId":[32],"_organizationVariables":[32],"_solutionContentsComponent":[32],"_solutionIsLoaded":[32],"_solutionVariables":[32],"_templateHierarchy":[32],"_translations":[32],"_treeOpen":[32],"getSpatialReferenceInfo":[64],"saveSolution":[64],"unloadSolution":[64]},[[8,"solutionItemSelected","_solutionItemSelected"]],{"serializedAuthentication":["serializedAuthenticationWatchHandler"],"solutionItemId":["valueWatchHandler"]}]]],["p-207fd378",[[0,"crowdsource-reporter",{"description":[1],"isMobile":[4,"is-mobile"],"enableAnonymousAccess":[4,"enable-anonymous-access"],"enableAnonymousComments":[4,"enable-anonymous-comments"],"enableComments":[4,"enable-comments"],"enableLogin":[4,"enable-login"],"enableNewReports":[4,"enable-new-reports"],"layers":[16],"loginTitle":[1,"login-title"],"mapView":[16],"layerId":[1,"layer-id"],"objectId":[1,"object-id"],"center":[1],"level":[1],"reportButtonText":[1,"report-button-text"],"reportsHeader":[1,"reports-header"],"reportSubmittedMessage":[1,"report-submitted-message"],"searchConfiguration":[16],"showComments":[4,"show-comments"],"defaultWebmap":[1,"default-webmap"],"enableSearch":[4,"enable-search"],"enableHome":[4,"enable-home"],"mapInfos":[16],"theme":[1],"enableZoom":[4,"enable-zoom"],"_mapInfo":[32],"_flowItems":[32],"_sidePanelCollapsed":[32],"_translations":[32],"_hasValidLayers":[32],"_selectedLayerName":[32],"_reportSubmitted":[32],"_showSubmitCancelButton":[32],"_featureCreationFailedErrorMsg":[32]},null,{"isMobile":["isMobileWatchHandler"],"mapView":["mapViewWatchHandler"]}]]],["p-e2b0b3fa",[[1,"instant-apps-language-switcher",{"icon":[1],"portalItem":[16],"view":[16],"locales":[16],"defaultLocale":[1,"default-locale"],"messages":[32],"selectedLanguage":[32],"t9nData":[32],"refresh":[64]}]]],["p-5fd1ae46",[[2,"instant-apps-interactive-legend",{"view":[16],"zoomTo":[4,"zoom-to"],"featureCount":[4,"feature-count"],"filterMode":[16],"handles":[32],"reactiveUtils":[32],"legendvm":[32],"widget":[32],"messages":[32]},null,{"handles":["init"],"reactiveUtils":["init"],"view":["init"]}]]],["p-3cb1de38",[[17,"calcite-color-picker",{"allowEmpty":[516,"allow-empty"],"alphaChannel":[4,"alpha-channel"],"channelsDisabled":[4,"channels-disabled"],"color":[1040],"disabled":[516],"format":[513],"hideChannels":[516,"hide-channels"],"hexDisabled":[4,"hex-disabled"],"hideHex":[516,"hide-hex"],"hideSaved":[516,"hide-saved"],"savedDisabled":[516,"saved-disabled"],"scale":[513],"storageId":[513,"storage-id"],"messageOverrides":[1040],"numberingSystem":[513,"numbering-system"],"value":[1025],"messages":[1040],"defaultMessages":[32],"channelMode":[32],"channels":[32],"dimensions":[32],"effectiveLocale":[32],"savedColors":[32],"colorFieldScopeTop":[32],"colorFieldScopeLeft":[32],"hueScopeLeft":[32],"opacityScopeLeft":[32],"scopeOrientation":[32],"setFocus":[64]},[[2,"keydown","handleChannelKeyUpOrDown"],[2,"keyup","handleChannelKeyUpOrDown"]],{"alphaChannel":["handleAlphaChannelChange","handleFormatOrAlphaChannelChange"],"color":["handleColorChange"],"format":["handleFormatOrAlphaChannelChange"],"scale":["handleScaleChange"],"messageOverrides":["onMessagesChange"],"value":["handleValueChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-bb94c414",[[2,"instant-apps-measurement",{"view":[16],"areaUnit":[1,"area-unit"],"linearUnit":[1,"linear-unit"],"coordinateFormat":[1,"coordinate-format"],"activeToolType":[1,"active-tool-type"],"closable":[4],"messages":[32]}]]],["p-7480ac64",[[1,"instant-apps-export",{"output":[1040],"beforeExport":[16],"popoverIcon":[1,"popover-icon"],"extraContent":[16],"extraContentLabel":[1,"extra-content-label"],"headerTitle":[1025,"header-title"],"includeExtraContent":[1028,"include-extra-content"],"includeLegend":[1028,"include-legend"],"includeMap":[1028,"include-map"],"includePopup":[1028,"include-popup"],"mode":[513],"popoverPositioning":[1,"popover-positioning"],"popoverPlacement":[1,"popover-placement"],"scale":[1],"showHeaderTitle":[4,"show-header-title"],"showIncludeLegend":[4,"show-include-legend"],"showIncludeMap":[4,"show-include-map"],"showIncludePopup":[4,"show-include-popup"],"showScaleBar":[4,"show-scale-bar"],"view":[16],"maskBackground":[1,"mask-background"],"maskBorder":[1,"mask-border"],"baseClass":[32],"exportIsLoading":[32],"messages":[32]},null,{"includeMap":["watchIncludeMap"]}]]],["p-431d8154",[[1,"pci-calculator",{"showAddDeduct":[32]}]]],["p-2917dae0",[[1,"instant-apps-keyboard-shortcuts",{"view":[16],"messages":[32]}]]],["p-9f895288",[[17,"calcite-input-time-picker",{"open":[1540],"disabled":[516],"focusTrapDisabled":[516,"focus-trap-disabled"],"form":[513],"readOnly":[516,"read-only"],"messageOverrides":[1040],"messages":[1040],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"name":[1],"numberingSystem":[1,"numbering-system"],"required":[516],"scale":[513],"status":[513],"overlayPositioning":[1,"overlay-positioning"],"placement":[513],"step":[2],"value":[1025],"defaultMessages":[32],"effectiveLocale":[32],"setFocus":[64],"reposition":[64]},null,{"open":["openHandler"],"focusTrapDisabled":["handleFocusTrapDisabled"],"disabled":["handleDisabledAndReadOnlyChange"],"readOnly":["handleDisabledAndReadOnlyChange"],"messageOverrides":["onMessagesChange"],"numberingSystem":["numberingSystemWatcher"],"step":["stepWatcher"],"value":["valueWatcher"],"effectiveLocale":["effectiveLocaleWatcher"]}]]],["p-cacd0307",[[1,"instant-apps-splash",{"localStorageKey":[1,"local-storage-key"],"titleText":[1,"title-text"],"content":[1],"primaryButtonText":[1,"primary-button-text"],"open":[1028],"closeButtonDisabled":[4,"close-button-disabled"],"messages":[32]},null,{"content":["sanitizeContent"]}]]],["p-d36f2db6",[[1,"calcite-table",{"bordered":[516],"caption":[1],"groupSeparator":[516,"group-separator"],"layout":[513],"numbered":[516],"numberingSystem":[513,"numbering-system"],"pageSize":[514,"page-size"],"scale":[513],"selectionMode":[513,"selection-mode"],"zebra":[516],"striped":[516],"selectedItems":[1040],"messages":[1040],"messageOverrides":[1040],"colCount":[32],"pageStartRow":[32],"selectedCount":[32],"readCellContentsToAT":[32],"defaultMessages":[32],"effectiveLocale":[32]},[[0,"calciteTableRowSelect","calciteChipSelectListener"],[0,"calciteInternalTableRowFocusRequest","calciteInternalTableRowFocusEvent"]],{"groupSeparator":["handleNumberedChange"],"numbered":["handleNumberedChange"],"numberingSystem":["handleNumberedChange"],"pageSize":["handleNumberedChange"],"scale":["handleNumberedChange"],"selectionMode":["handleNumberedChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-3cf84035",[[0,"instant-apps-popover",{"popoverTitle":[513,"popover-title"],"subtitle":[513],"content":[513],"imgSrc":[513,"img-src"],"imgAlt":[513,"img-alt"],"mediaSrc":[513,"media-src"],"index":[514],"referenceElement":[513,"reference-element"],"parent":[16],"placement":[1],"refId":[1,"ref-id"],"pagination":[516],"disableAction":[516,"disable-action"],"popoverAction":[16],"messageOverrides":[16],"messages":[32]}]]],["p-8dbf3319",[[1,"layout-manager",{"_translations":[32]}]]],["p-71b65d8a",[[17,"calcite-input-time-zone",{"disabled":[516],"form":[513],"maxItems":[514,"max-items"],"messages":[1040],"messageOverrides":[1040],"mode":[513],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"name":[513],"open":[1540],"overlayPositioning":[513,"overlay-positioning"],"referenceDate":[1,"reference-date"],"required":[516],"scale":[513],"status":[513],"value":[1025],"defaultMessages":[32],"effectiveLocale":[32],"setFocus":[64]},null,{"messageOverrides":["onMessagesChange"],"messages":["handleTimeZoneItemPropsChange"],"mode":["handleTimeZoneItemPropsChange"],"referenceDate":["handleTimeZoneItemPropsChange"],"value":["handleValueChange"],"effectiveLocale":["effectiveLocaleWatcher"]}]]],["p-e813faf8",[[1,"calcite-menu-item",{"active":[516],"breadcrumb":[516],"href":[1],"iconEnd":[513,"icon-end"],"iconFlipRtl":[513,"icon-flip-rtl"],"iconStart":[513,"icon-start"],"isTopLevelItem":[4,"is-top-level-item"],"label":[1],"layout":[513],"messageOverrides":[1040],"messages":[1040],"open":[1540],"rel":[513],"target":[513],"text":[1],"topLevelMenuLayout":[1,"top-level-menu-layout"],"defaultMessages":[32],"effectiveLocale":[32],"hasSubmenu":[32],"submenuItems":[32],"setFocus":[64]},[[8,"click","handleClickOut"],[0,"focusout","handleFocusOut"]],{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-3d324690",[[17,"calcite-split-button",{"appearance":[513],"kind":[513],"disabled":[516],"active":[1540],"dropdownIconType":[513,"dropdown-icon-type"],"dropdownLabel":[513,"dropdown-label"],"loading":[516],"overlayPositioning":[513,"overlay-positioning"],"primaryIconEnd":[513,"primary-icon-end"],"primaryIconFlipRtl":[513,"primary-icon-flip-rtl"],"primaryIconStart":[513,"primary-icon-start"],"primaryLabel":[513,"primary-label"],"primaryText":[513,"primary-text"],"scale":[513],"width":[513],"setFocus":[64]},null,{"disabled":["handleDisabledChange"],"active":["activeHandler"]}]]],["p-2ba240b9",[[2,"instant-apps-interactive-legend-group-legend-element-caption",{"legendvm":[16],"featureCount":[4,"feature-count"],"activeLayerInfo":[16],"messages":[8],"isChild":[4,"is-child"],"expanded":[1028]}]]],["p-96104375",[[1,"instant-apps-scoreboard",{"view":[16],"items":[16],"position":[1],"mode":[1],"itemLimit":[2,"item-limit"],"autoDockEnabled":[4,"auto-dock-enabled"],"geometry":[1040],"state":[32],"messages":[32],"itemIndex":[32],"layers":[32],"layerViews":[32],"isMobile":[32]},null,{"items":["generateUIDs","storeLayers"],"layers":["storeLayerViews"],"geometry":["calculateScoreboardItemValuesFromGeometry"],"layerViews":["calculateScoreboardItemValues"]}]]],["p-d67f3b6e",[[1,"calcite-block-section",{"open":[1540],"status":[513],"text":[1],"toggleDisplay":[513,"toggle-display"],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"setFocus":[64]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-20320bf6",[[1,"calcite-card",{"loading":[516],"selected":[1540],"selectable":[516],"thumbnailPosition":[513,"thumbnail-position"],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-6d93bdfd",[[1,"calcite-fab",{"appearance":[513],"kind":[513],"disabled":[516],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"label":[1],"loading":[516],"scale":[513],"text":[1],"textEnabled":[516,"text-enabled"],"setFocus":[64]}]]],["p-792907e2",[[17,"calcite-inline-editable",{"disabled":[516],"editingEnabled":[1540,"editing-enabled"],"loading":[1540],"controls":[516],"scale":[1537],"afterConfirm":[16],"messages":[1040],"messageOverrides":[1040],"defaultMessages":[32],"effectiveLocale":[32],"setFocus":[64]},[[0,"calciteInternalInputBlur","blurHandler"]],{"disabled":["disabledWatcher"],"editingEnabled":["editingEnabledWatcher"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-47a97db7",[[1,"calcite-navigation",{"label":[1],"navigationAction":[516,"navigation-action"],"logoSlotHasElements":[32],"navigationActionSlotHasElements":[32],"primaryContentCenterSlotHasElements":[32],"primaryContentEndSlotHasElements":[32],"primaryContentStartSlotHasElements":[32],"progressSlotHasElement":[32],"secondarySlotHasElements":[32],"tertiarySlotHasElements":[32],"userSlotHasElements":[32],"setFocus":[64]}]]],["p-701568c2",[[1,"calcite-stepper",{"icon":[516],"layout":[513],"numbered":[516],"scale":[513],"messages":[1040],"numberingSystem":[513,"numbering-system"],"selectedItem":[1040],"messageOverrides":[1040],"defaultMessages":[32],"effectiveLocale":[32],"currentActivePosition":[32],"elWidth":[32],"nextStep":[64],"prevStep":[64],"goToStep":[64],"startStep":[64],"endStep":[64]},[[0,"calciteInternalStepperItemKeyEvent","calciteInternalStepperItemKeyEvent"],[0,"calciteInternalStepperItemRegister","registerItem"],[0,"calciteInternalStepperItemSelect","updateItem"],[0,"calciteInternalUserRequestedStepperItemSelect","handleUserRequestedStepperItemSelect"]],{"icon":["handleItemPropChange"],"layout":["handleItemPropChange"],"numbered":["handleItemPropChange"],"scale":["handleItemPropChange"],"numberingSystem":["numberingSystemChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"],"currentActivePosition":["handlePositionChange"],"elWidth":["handleElWidthChange"]}]]],["p-e61c56fa",[[1,"calcite-table-row",{"disabled":[516],"selected":[516],"cellCount":[1026,"cell-count"],"lastVisibleRow":[4,"last-visible-row"],"rowType":[1,"row-type"],"numbered":[4],"positionSection":[2,"position-section"],"positionSectionLocalized":[1,"position-section-localized"],"positionAll":[2,"position-all"],"readCellContentsToAT":[4,"read-cell-contents-to-a-t"],"scale":[1],"selectionMode":[1,"selection-mode"],"selectedRowCount":[2,"selected-row-count"],"selectedRowCountLocalized":[1,"selected-row-count-localized"],"bodyRowCount":[2,"body-row-count"],"effectiveLocale":[32]},[[4,"calciteInternalTableRowFocusChange","calciteInternalTableRowFocusChangeHandler"]],{"bodyRowCount":["handleCellChanges"],"scale":["handleCellChanges"],"selected":["handleCellChanges"],"selectedRowCount":["handleCellChanges"],"numbered":["handleDelayedCellChanges"],"selectionMode":["handleDelayedCellChanges"]}]]],["p-3e79d77b",[[1,"calcite-tile-select",{"checked":[1540],"description":[513],"disabled":[516],"heading":[513],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"name":[520],"inputEnabled":[516,"input-enabled"],"inputAlignment":[513,"input-alignment"],"type":[513],"value":[8],"width":[513],"focused":[32],"setFocus":[64]},[[0,"calciteCheckboxChange","checkboxChangeHandler"],[0,"calciteInternalCheckboxFocus","checkboxFocusBlurHandler"],[0,"calciteInternalCheckboxBlur","checkboxFocusBlurHandler"],[0,"calciteRadioButtonChange","radioButtonChangeHandler"],[0,"calciteInternalRadioButtonCheckedChange","radioButtonCheckedChangeHandler"],[0,"calciteInternalRadioButtonFocus","radioButtonFocusBlurHandler"],[0,"calciteInternalRadioButtonBlur","radioButtonFocusBlurHandler"],[0,"click","clickHandler"],[1,"pointerenter","pointerEnterHandler"],[1,"pointerleave","pointerLeaveHandler"]],{"checked":["checkedChanged"],"name":["nameChanged"]}]]],["p-52a6d2dc",[[1,"calcite-tip",{"closed":[1540],"closeDisabled":[516,"close-disabled"],"heading":[1],"headingLevel":[514,"heading-level"],"selected":[516],"messages":[1040],"messageOverrides":[1040],"defaultMessages":[32],"effectiveLocale":[32]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-02fa1945",[[1,"calcite-tip-manager",{"closed":[1540],"headingLevel":[514,"heading-level"],"messages":[1040],"messageOverrides":[1040],"selectedIndex":[32],"tips":[32],"total":[32],"direction":[32],"groupTitle":[32],"defaultMessages":[32],"effectiveLocale":[32],"nextTip":[64],"previousTip":[64]},null,{"closed":["closedChangeHandler"],"messageOverrides":["onMessagesChange"],"selectedIndex":["selectedChangeHandler"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-dd45738e",[[1,"instant-apps-landing-page",{"titleText":[1,"title-text"],"subtitleText":[1,"subtitle-text"],"descriptionText":[1,"description-text"],"entryButtonText":[1,"entry-button-text"],"iconImage":[1,"icon-image"],"iconImageScale":[1,"icon-image-scale"],"iconImageAltText":[1,"icon-image-alt-text"],"alignment":[1],"disableTransition":[4,"disable-transition"],"backgroundImageSrc":[1,"background-image-src"],"open":[1028],"entryButtonScale":[1,"entry-button-scale"],"fontFamily":[513,"font-family"]},null,{"open":["emitToggleEvent"]}]]],["p-906ad47a",[[17,"calcite-navigation-user",{"active":[516],"fullName":[1,"full-name"],"label":[1],"textDisabled":[516,"text-disabled"],"thumbnail":[1],"userId":[1,"user-id"],"username":[1],"setFocus":[64]}]]],["p-5b228ed7",[[1,"calcite-rating",{"average":[514],"count":[514],"disabled":[516],"form":[513],"messages":[1040],"messageOverrides":[1040],"name":[513],"readOnly":[516,"read-only"],"required":[516],"scale":[513],"showChip":[516,"show-chip"],"value":[1538],"effectiveLocale":[32],"defaultMessages":[32],"hoverValue":[32],"setFocus":[64]},null,{"messageOverrides":["onMessagesChange"],"value":["handleValueUpdate"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-312c045a",[[1,"calcite-sheet",{"beforeClose":[16],"displayMode":[513,"display-mode"],"escapeDisabled":[516,"escape-disabled"],"heightScale":[513,"height-scale"],"focusTrapDisabled":[516,"focus-trap-disabled"],"label":[1],"open":[1540],"opened":[1540],"outsideCloseDisabled":[516,"outside-close-disabled"],"position":[513],"slottedInShell":[4,"slotted-in-shell"],"widthScale":[513,"width-scale"],"setFocus":[64],"updateFocusTrapElements":[64]},[[8,"keydown","handleEscape"]],{"focusTrapDisabled":["handleFocusTrapDisabled"],"open":["toggleSheet"],"opened":["handleOpenedChange"]}]]],["p-beba1804",[[1,"calcite-tile",{"active":[516],"description":[513],"disabled":[516],"embed":[516],"focused":[516],"heading":[513],"href":[513],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"scale":[513]}]]],["p-e10ca475",[[1,"calcite-accordion-item",{"expanded":[1540],"heading":[1],"description":[1],"iconStart":[513,"icon-start"],"iconEnd":[513,"icon-end"],"iconFlipRtl":[513,"icon-flip-rtl"],"iconPosition":[1,"icon-position"],"iconType":[1,"icon-type"],"accordionParent":[16],"scale":[1]},[[0,"keydown","keyDownHandler"],[16,"calciteInternalAccordionChange","updateActiveItemOnChange"],[4,"calciteInternalAccordionItemsSync","accordionItemSyncHandler"]]]]],["p-033522a7",[[17,"calcite-navigation-logo",{"active":[516],"href":[513],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"label":[1],"rel":[513],"description":[1],"target":[513],"heading":[1],"thumbnail":[1],"setFocus":[64]}]]],["p-d3ba36ce",[[1,"calcite-stepper-item",{"selected":[1540],"complete":[516],"error":[516],"disabled":[516],"heading":[1],"description":[1],"iconFlipRtl":[516,"icon-flip-rtl"],"numberingSystem":[1,"numbering-system"],"icon":[4],"layout":[513],"messages":[1040],"numbered":[4],"scale":[513],"multipleViewMode":[516,"multiple-view-mode"],"messageOverrides":[1040],"defaultMessages":[32],"effectiveLocale":[32],"setFocus":[64]},[[16,"calciteInternalStepperItemChange","updateActiveItemOnChange"]],{"selected":["selectedHandler"],"disabled":["disabledWatcher"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleWatcher"]}]]],["p-84546f35",[[1,"arcgis-login"]]],["p-4b530f7b",[[1,"calcite-accordion",{"appearance":[513],"iconPosition":[513,"icon-position"],"iconType":[513,"icon-type"],"scale":[513],"selectionMode":[513,"selection-mode"]},[[0,"calciteInternalAccordionItemSelect","updateActiveItemOnChange"]],{"iconPosition":["handlePropsChange"],"iconType":["handlePropsChange"],"scale":["handlePropsChange"],"selectionMode":["handlePropsChange"]}]]],["p-449db954",[[1,"calcite-chip-group",{"disabled":[516],"label":[1],"scale":[513],"selectionMode":[513,"selection-mode"],"selectedItems":[1040],"setFocus":[64]},[[0,"calciteInternalChipKeyEvent","calciteInternalChipKeyEventListener"],[0,"calciteChipClose","calciteChipCloseListener"],[0,"calciteChipSelect","calciteChipSelectListener"]],{"selectionMode":["onSelectionModeChange"]}]]],["p-08651773",[[1,"calcite-combobox-item-group",{"afterEmptyGroup":[516,"after-empty-group"],"ancestors":[1040],"label":[1],"scale":[1]}]]],["p-3fbfe26a",[[1,"calcite-list-item-group",{"disabled":[516],"filterHidden":[516,"filter-hidden"],"heading":[513],"visualLevel":[32]}]]],["p-4ce1ffd8",[[1,"calcite-meter",{"appearance":[513],"disabled":[516],"fillType":[513,"fill-type"],"form":[513],"groupSeparator":[516,"group-separator"],"high":[1538],"label":[1],"low":[1538],"max":[514],"min":[514],"name":[513],"numberingSystem":[1,"numbering-system"],"rangeLabels":[516,"range-labels"],"rangeLabelType":[513,"range-label-type"],"scale":[513],"unitLabel":[1,"unit-label"],"value":[1026],"valueLabel":[516,"value-label"],"valueLabelType":[513,"value-label-type"],"currentPercent":[32],"effectiveLocale":[32],"highActive":[32],"highPercent":[32],"lowActive":[32],"lowPercent":[32]},null,{"min":["handleRangeChange"],"max":["handleRangeChange"],"low":["handleRangeChange"],"high":["handleRangeChange"],"value":["handleRangeChange"],"rangeLabels":["handleLabelChange"],"rangeLabelType":["handleLabelChange"],"unitLabel":["handleLabelChange"],"valueLabel":["handleLabelChange"],"valueLabelType":["handleLabelChange"]}]]],["p-a55b766f",[[1,"calcite-option-group",{"disabled":[516],"label":[1]},null,{"disabled":["handlePropChange"],"label":["handlePropChange"]}]]],["p-a17d0d80",[[1,"calcite-pick-list",{"disabled":[516],"filteredItems":[1040],"filteredData":[1040],"filterEnabled":[516,"filter-enabled"],"filterPlaceholder":[513,"filter-placeholder"],"filterText":[1537,"filter-text"],"headingLevel":[514,"heading-level"],"loading":[516],"multiple":[516],"selectionFollowsFocus":[516,"selection-follows-focus"],"selectedValues":[32],"dataForFilter":[32],"getSelectedItems":[64],"setFocus":[64]},[[0,"calciteListItemRemove","calciteListItemRemoveHandler"],[0,"calciteListItemChange","calciteListItemChangeHandler"],[0,"calciteInternalListItemPropsChange","calciteInternalListItemPropsChangeHandler"],[0,"calciteInternalListItemValueChange","calciteInternalListItemValueChangeHandler"],[0,"focusout","calciteListFocusOutHandler"]]]]],["p-6332fd4e",[[1,"calcite-pick-list-group",{"groupTitle":[513,"group-title"],"headingLevel":[514,"heading-level"]}]]],["p-23de1b01",[[1,"calcite-radio-button-group",{"disabled":[516],"layout":[513],"name":[513],"required":[516],"selectedItem":[1040],"scale":[513],"status":[513],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"radioButtons":[32],"setFocus":[64]},[[0,"calciteRadioButtonChange","radioButtonChangeHandler"]],{"hidden":["handleHiddenChange"],"disabled":["onDisabledChange"],"layout":["onLayoutChange"],"scale":["onScaleChange"]}]]],["p-1c8cdfeb",[[1,"calcite-shell-center-row",{"detached":[516],"heightScale":[513,"height-scale"],"position":[513]}]]],["p-30480847",[[1,"calcite-sortable-list",{"canPull":[16],"canPut":[16],"dragSelector":[513,"drag-selector"],"group":[513],"handleSelector":[513,"handle-selector"],"layout":[513],"disabled":[516],"loading":[516]},[[0,"calciteHandleNudge","calciteHandleNudgeNextHandler"]]]]],["p-7c0fe27e",[[1,"calcite-text-area",{"autofocus":[516],"columns":[514],"disabled":[516],"form":[513],"groupSeparator":[516,"group-separator"],"label":[1],"maxLength":[514,"max-length"],"messages":[1040],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"name":[513],"numberingSystem":[1,"numbering-system"],"placeholder":[1],"readOnly":[516,"read-only"],"required":[516],"resize":[513],"rows":[514],"scale":[513],"status":[513],"value":[1025],"wrap":[513],"messageOverrides":[1040],"defaultMessages":[32],"endSlotHasElements":[32],"startSlotHasElements":[32],"effectiveLocale":[32],"setFocus":[64],"selectText":[64]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-f8a6785d",[[1,"calcite-tile-select-group",{"disabled":[516],"layout":[513]}]]],["p-2b6679d2",[[1,"calcite-tip-group",{"groupTitle":[1,"group-title"]}]]],["p-3d7d78f3",[[1,"feature-comments"]]],["p-63572270",[[1,"feature-form-flow-item"]]],["p-08cca1ba",[[1,"features-flow-item"]]],["p-88cd4a24",[[1,"instant-apps-control-panel",{"components":[16],"view":[16]}]]],["p-e9700988",[[4,"instant-apps-popovers",{"inTour":[1540,"in-tour"],"currentId":[1537,"current-id"],"instantAppsPopovers":[16],"beforeOpen":[16],"open":[64],"close":[64],"beginTour":[64],"endTour":[64]}]]],["p-905f7e81",[[1,"list-flow-item"]]],["p-212c00e9",[[1,"location-flow-item"]]],["p-2a0f52c5",[[1,"refine-results-flow-item"]]],["p-9ae4f911",[[1,"share-item"]]],["p-91c49d95",[[0,"store-manager",{"value":[1537],"templates":[1040],"authentication":[1040]}]]],["p-cc859d2b",[[1,"calcite-icon",{"icon":[513],"flipRtl":[516,"flip-rtl"],"scale":[513],"textLabel":[1,"text-label"],"pathData":[32],"visible":[32]},null,{"icon":["loadIconPathData"],"scale":["loadIconPathData"]}]]],["p-2f017ad2",[[6,"instant-apps-language-translator",{"portalItem":[16],"appSettings":[16],"locales":[16],"open":[1028],"userLocaleInputOnChangeCallback":[16],"translatedLocaleInputOnChangeCallback":[16],"saving":[32],"messages":[32],"isCollapse":[32],"getTranslationData":[64],"setTranslationData":[64],"getPortalItemResource":[64],"batchWriteToPortalItemResource":[64]},[[8,"translatorItemDataUpdated","handleT9nItemUpdate"]],{"locales":["handleLocaleChange"],"appSettings":["handleAppSettings"]}]]],["p-11c85508",[[2,"instant-apps-interactive-legend-classic",{"legendvm":[16],"zoomTo":[4,"zoom-to"],"featureCount":[4,"feature-count"],"filterMode":[16],"messages":[8],"isLoading":[32],"intLegendId":[32]},null,{"filterMode":["handleFilterModeChange"]}]]],["p-ef1cf76c",[[1,"deduct-calculator"]]],["p-044cd52c",[[1,"instant-apps-header",{"titleText":[1,"title-text"],"titleTextLink":[1,"title-text-link"],"backgroundColor":[1,"background-color"],"textColor":[1,"text-color"],"logoImage":[1,"logo-image"],"logoScale":[1537,"logo-scale"],"logoImageAltText":[1,"logo-image-alt-text"],"logoLink":[1,"logo-link"],"infoButton":[1540,"info-button"],"infoIsOpen":[516,"info-is-open"],"infoTitleText":[1,"info-title-text"],"customHeaderHtml":[1025,"custom-header-html"],"headerAlignment":[1025,"header-alignment"],"customHeaderCss":[1025,"custom-header-css"],"fontFamily":[513,"font-family"],"mobileWidthBreakpoint":[2,"mobile-width-breakpoint"],"dir":[32],"initialScale":[32]},null,{"customHeaderHtml":["sanitizeCustomHeaderHtml"]}]]],["p-b7337228",[[1,"calcite-avatar",{"scale":[513],"thumbnail":[513],"fullName":[513,"full-name"],"username":[513],"userId":[513,"user-id"],"label":[1],"thumbnailFailedToLoad":[32]}]]],["p-4d09aa4c",[[1,"calcite-link",{"disabled":[516],"download":[520],"href":[513],"iconEnd":[513,"icon-end"],"iconFlipRtl":[513,"icon-flip-rtl"],"iconStart":[513,"icon-start"],"rel":[1],"target":[1],"setFocus":[64]},[[0,"click","clickHandler"]]]]],["p-26461392",[[17,"calcite-time-picker",{"scale":[513],"step":[514],"numberingSystem":[1,"numbering-system"],"value":[1025],"messages":[1040],"messageOverrides":[1040],"activeEl":[32],"effectiveLocale":[32],"fractionalSecond":[32],"hour":[32],"hourCycle":[32],"localizedDecimalSeparator":[32],"localizedHour":[32],"localizedHourSuffix":[32],"localizedMeridiem":[32],"localizedFractionalSecond":[32],"localizedMinute":[32],"localizedMinuteSuffix":[32],"localizedSecond":[32],"localizedSecondSuffix":[32],"meridiem":[32],"minute":[32],"second":[32],"showFractionalSecond":[32],"showSecond":[32],"defaultMessages":[32],"setFocus":[64]},[[0,"blur","blurHandler"],[0,"focus","hostFocusHandler"],[0,"keydown","keyDownHandler"],[1,"pointerdown","pointerDownHandler"]],{"step":["stepChange"],"value":["valueWatcher"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleWatcher"]}]]],["p-0c6d2898",[[17,"calcite-menu",{"label":[1],"layout":[513],"messageOverrides":[1040],"messages":[1040],"defaultMessages":[32],"effectiveLocale":[32],"setFocus":[64]},[[0,"calciteInternalMenuItemKeyEvent","calciteInternalNavMenuItemKeyEvent"]],{"role":["handleGlobalAttributesChanged"],"layout":["handleLayoutChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-0d641d14",[[1,"calcite-radio-button",{"checked":[1540],"disabled":[516],"focused":[1540],"form":[513],"guid":[1537],"hovered":[1540],"label":[1],"name":[513],"required":[516],"scale":[513],"value":[1032],"setFocus":[64],"emitCheckedChange":[64]},[[1,"pointerenter","pointerEnterHandler"],[1,"pointerleave","pointerLeaveHandler"]],{"hidden":["handleHiddenChange"],"checked":["checkedChanged"],"disabled":["disabledChanged"],"name":["nameChanged"]}]]],["p-7cfce9ee",[[17,"calcite-action-pad",{"actionsEndGroupLabel":[1,"actions-end-group-label"],"expandDisabled":[516,"expand-disabled"],"expanded":[1540],"layout":[513],"position":[513],"scale":[513],"messages":[1040],"messageOverrides":[1040],"overlayPositioning":[513,"overlay-positioning"],"expandTooltip":[32],"effectiveLocale":[32],"defaultMessages":[32],"setFocus":[64]},null,{"expanded":["expandedHandler"],"layout":["layoutHandler"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[2,"instant-apps-measurement-tool",{"view":[16],"measureConfiguration":[16],"activeTool":[1,"active-tool"]},null,{"activeTool":["_updateToolType"]}]]],["p-547b4dba",[[0,"spatial-ref",{"defaultWkid":[1538,"default-wkid"],"disabled":[1540],"value":[1537],"_cachedValue":[32],"_spatialRef":[32],"_srSearchText":[32],"_translations":[32],"createSpatialRefDisplay":[64],"getSpatialRef":[64],"wkidToDisplay":[64]},null,{"value":["valueChanged"]}]]],["p-71964176",[[1,"calcite-input-number",{"alignment":[513],"autofocus":[516],"clearable":[516],"disabled":[516],"form":[513],"groupSeparator":[516,"group-separator"],"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"integer":[4],"label":[1],"loading":[516],"numberingSystem":[513,"numbering-system"],"localeFormat":[4,"locale-format"],"max":[514],"min":[514],"maxLength":[514,"max-length"],"minLength":[514,"min-length"],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"name":[513],"numberButtonType":[513,"number-button-type"],"placeholder":[1],"prefixText":[1,"prefix-text"],"readOnly":[516,"read-only"],"required":[516],"scale":[513],"status":[513],"step":[520],"autocomplete":[1],"inputMode":[1,"input-mode"],"enterKeyHint":[1,"enter-key-hint"],"suffixText":[1,"suffix-text"],"editingEnabled":[1540,"editing-enabled"],"value":[1025],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"displayedValue":[32],"slottedActionElDisabledInternally":[32],"setFocus":[64],"selectText":[64]},null,{"disabled":["disabledWatcher"],"max":["maxWatcher"],"min":["minWatcher"],"messageOverrides":["onMessagesChange"],"value":["valueWatcher"],"icon":["updateRequestedIcon"],"effectiveLocale":["effectiveLocaleWatcher"]}]]],["p-c8ca9b8c",[[1,"calcite-color-picker-hex-input",{"allowEmpty":[4,"allow-empty"],"alphaChannel":[4,"alpha-channel"],"hexLabel":[1,"hex-label"],"messages":[16],"numberingSystem":[1,"numbering-system"],"scale":[513],"value":[1537],"internalColor":[32],"setFocus":[64]},null,{"value":["handleValueChange"]}],[1,"calcite-color-picker-swatch",{"active":[516],"color":[1],"scale":[513]},null,{"color":["handleColorChange"]}]]],["p-1ee6220e",[[1,"calcite-table-header",{"alignment":[513],"colSpan":[514,"col-span"],"description":[513],"heading":[513],"rowSpan":[514,"row-span"],"lastCell":[4,"last-cell"],"numberCell":[4,"number-cell"],"parentRowIsSelected":[4,"parent-row-is-selected"],"parentRowPosition":[2,"parent-row-position"],"parentRowType":[1,"parent-row-type"],"positionInRow":[2,"position-in-row"],"scale":[1],"selectedRowCount":[2,"selected-row-count"],"selectedRowCountLocalized":[1,"selected-row-count-localized"],"selectionCell":[4,"selection-cell"],"selectionMode":[1,"selection-mode"],"bodyRowCount":[2,"body-row-count"],"messages":[1040],"messageOverrides":[1040],"defaultMessages":[32],"screenReaderText":[32],"effectiveLocale":[32],"setFocus":[64]},null,{"selectedRowCount":["onSelectedChange"],"selectedRowCountLocalized":["onSelectedChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[1,"calcite-table-cell",{"alignment":[513],"colSpan":[514,"col-span"],"rowSpan":[514,"row-span"],"disabled":[4],"lastCell":[4,"last-cell"],"numberCell":[4,"number-cell"],"parentRowIsSelected":[4,"parent-row-is-selected"],"parentRowPositionLocalized":[1,"parent-row-position-localized"],"parentRowType":[1,"parent-row-type"],"positionInRow":[2,"position-in-row"],"readCellContentsToAT":[4,"read-cell-contents-to-a-t"],"scale":[1],"selectionCell":[4,"selection-cell"],"messages":[1040],"messageOverrides":[1040],"contentsText":[32],"defaultMessages":[32],"focused":[32],"selectionText":[32],"effectiveLocale":[32],"setFocus":[64]},null,{"parentRowIsSelected":["onSelectedChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-e29a378e",[[0,"solution-item-icon",{"isPortal":[4,"is-portal"],"type":[1],"typeKeywords":[16]}]]],["p-efec6ba5",[[1,"calcite-input-text",{"alignment":[513],"autofocus":[516],"clearable":[516],"disabled":[516],"form":[513],"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"label":[1],"loading":[516],"maxLength":[514,"max-length"],"minLength":[514,"min-length"],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"name":[513],"placeholder":[1],"prefixText":[1,"prefix-text"],"readOnly":[516,"read-only"],"required":[516],"scale":[513],"status":[513],"autocomplete":[1],"inputMode":[1,"input-mode"],"enterKeyHint":[1,"enter-key-hint"],"pattern":[1],"suffixText":[1,"suffix-text"],"editingEnabled":[1540,"editing-enabled"],"value":[1025],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"slottedActionElDisabledInternally":[32],"setFocus":[64],"selectText":[64]},null,{"disabled":["disabledWatcher"],"messageOverrides":["onMessagesChange"],"value":["valueWatcher"],"icon":["updateRequestedIcon"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-dd67e38a",[[1,"calcite-switch",{"disabled":[516],"form":[513],"label":[1],"name":[513],"scale":[513],"checked":[1540],"value":[8],"setFocus":[64]}]]],["p-c51f2880",[[1,"calcite-action",{"active":[516],"alignment":[513],"appearance":[513],"compact":[516],"disabled":[516],"icon":[1],"iconFlipRtl":[516,"icon-flip-rtl"],"indicator":[516],"label":[1],"loading":[516],"scale":[513],"text":[1],"textEnabled":[516,"text-enabled"],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"setFocus":[64]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[1,"calcite-loader",{"inline":[516],"label":[1],"scale":[513],"type":[513],"value":[2],"text":[1]}]]],["p-d9826b1d",[[1,"calcite-modal",{"open":[1540],"opened":[1540],"beforeClose":[16],"closeButtonDisabled":[516,"close-button-disabled"],"focusTrapDisabled":[516,"focus-trap-disabled"],"outsideCloseDisabled":[516,"outside-close-disabled"],"docked":[516],"escapeDisabled":[516,"escape-disabled"],"scale":[513],"widthScale":[513,"width-scale"],"fullscreen":[516],"kind":[513],"messages":[1040],"messageOverrides":[1040],"slottedInShell":[1028,"slotted-in-shell"],"cssWidth":[32],"cssHeight":[32],"hasFooter":[32],"hasContentTop":[32],"hasContentBottom":[32],"effectiveLocale":[32],"defaultMessages":[32],"setFocus":[64],"updateFocusTrapElements":[64],"scrollContent":[64]},[[8,"keydown","handleEscape"]],{"focusTrapDisabled":["handleFocusTrapDisabled"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"],"open":["toggleModal"],"opened":["handleOpenedChange"]}]]],["p-e14e6c12",[[17,"calcite-action-group",{"expanded":[516],"label":[1],"layout":[513],"columns":[514],"menuOpen":[1540,"menu-open"],"overlayPositioning":[513,"overlay-positioning"],"scale":[513],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"hasMenuActions":[32],"setFocus":[64]},null,{"expanded":["expandedHandler"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-04c37d69",[[17,"calcite-slider",{"disabled":[516],"form":[513],"groupSeparator":[516,"group-separator"],"hasHistogram":[1540,"has-histogram"],"histogram":[16],"histogramStops":[16],"labelHandles":[516,"label-handles"],"labelTicks":[516,"label-ticks"],"max":[514],"maxLabel":[1,"max-label"],"maxValue":[1026,"max-value"],"min":[514],"minLabel":[1,"min-label"],"minValue":[1026,"min-value"],"mirrored":[516],"name":[513],"numberingSystem":[1,"numbering-system"],"pageStep":[514,"page-step"],"precise":[516],"required":[516],"snap":[516],"step":[514],"ticks":[514],"value":[1538],"scale":[513],"effectiveLocale":[32],"minMaxValueRange":[32],"minValueDragRange":[32],"maxValueDragRange":[32],"tickValues":[32],"setFocus":[64]},[[0,"keydown","keyDownHandler"],[1,"pointerdown","pointerDownHandler"]],{"histogram":["histogramWatcher"],"ticks":["ticksWatcher"],"value":["valueHandler"],"minValue":["minMaxValueHandler"],"maxValue":["minMaxValueHandler"]}],[1,"calcite-graph",{"data":[16],"colorStops":[16],"highlightMin":[2,"highlight-min"],"highlightMax":[2,"highlight-max"],"min":[514],"max":[514]}]]],["p-fdedce1c",[[1,"calcite-notice",{"open":[1540],"kind":[513],"closable":[516],"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"scale":[513],"width":[513],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"setFocus":[64]},null,{"open":["openHandler"],"messageOverrides":["onMessagesChange"],"icon":["updateRequestedIcon"],"kind":["updateRequestedIcon"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-6068c1cf",[[1,"calcite-tooltip",{"closeOnClick":[516,"close-on-click"],"label":[1],"offsetDistance":[514,"offset-distance"],"offsetSkidding":[514,"offset-skidding"],"open":[516],"overlayPositioning":[513,"overlay-positioning"],"placement":[513],"referenceElement":[1,"reference-element"],"effectiveReferenceElement":[32],"floatingLayout":[32],"reposition":[64]},null,{"offsetDistance":["offsetDistanceOffsetHandler"],"offsetSkidding":["offsetSkiddingHandler"],"open":["openHandler"],"overlayPositioning":["overlayPositioningHandler"],"placement":["placementHandler"],"referenceElement":["referenceElementHandler"]}]]],["p-0b92e4b1",[[1,"calcite-scrim",{"loading":[516],"messages":[1040],"messageOverrides":[1040],"loaderScale":[32],"defaultMessages":[32],"effectiveLocale":[32],"hasContent":[32]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-7878534f",[[1,"calcite-button",{"alignment":[513],"appearance":[513],"label":[1],"kind":[513],"disabled":[516],"form":[513],"href":[513],"iconEnd":[513,"icon-end"],"iconFlipRtl":[513,"icon-flip-rtl"],"iconStart":[513,"icon-start"],"loading":[516],"name":[513],"rel":[513],"round":[516],"scale":[513],"splitChild":[520,"split-child"],"target":[513],"type":[513],"width":[513],"messages":[1040],"messageOverrides":[1040],"hasContent":[32],"hasLoader":[32],"effectiveLocale":[32],"defaultMessages":[32],"tooltipText":[32],"setFocus":[64]},null,{"aria-expanded":["handleGlobalAttributesChanged"],"loading":["loadingChanged"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-32adb2cc",[[0,"map-layer-picker",{"appearance":[1],"defaultLayerId":[1,"default-layer-id"],"display":[1],"enabledLayerIds":[16],"enabledTableIds":[16],"height":[2],"isMobile":[4,"is-mobile"],"mapView":[16],"onlyShowUpdatableLayers":[4,"only-show-updatable-layers"],"placeholderIcon":[1,"placeholder-icon"],"selectedIds":[1040],"scale":[1],"showTables":[4,"show-tables"],"showSingleLayerAsLabel":[4,"show-single-layer-as-label"],"type":[1],"_hasMultipleLayers":[32],"_hasValidLayers":[32],"_isDropdownOpen":[32],"ids":[32],"selectedName":[32],"_translations":[32]},null,{"mapView":["mapViewWatchHandler"]}],[17,"calcite-dropdown-group",{"groupTitle":[513,"group-title"],"scale":[1],"selectionMode":[513,"selection-mode"]},[[0,"calciteInternalDropdownItemSelect","updateActiveItemOnChange"]],{"selectionMode":["handlePropsChange"]}],[1,"calcite-dropdown-item",{"disabled":[516],"href":[513],"iconFlipRtl":[513,"icon-flip-rtl"],"iconStart":[513,"icon-start"],"iconEnd":[513,"icon-end"],"label":[1],"rel":[513],"selected":[1540],"target":[513],"selectionMode":[1,"selection-mode"],"scale":[1],"setFocus":[64]},[[0,"click","onClick"],[0,"keydown","keyDownHandler"],[16,"calciteInternalDropdownItemChange","updateActiveItemOnChange"]]],[1,"calcite-combobox",{"clearDisabled":[516,"clear-disabled"],"selectionDisplay":[513,"selection-display"],"open":[1540],"disabled":[516],"form":[513],"label":[1],"placeholder":[1],"placeholderIcon":[513,"placeholder-icon"],"placeholderIconFlipRtl":[516,"placeholder-icon-flip-rtl"],"maxItems":[514,"max-items"],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"name":[513],"allowCustomValues":[516,"allow-custom-values"],"overlayPositioning":[513,"overlay-positioning"],"required":[516],"selectionMode":[513,"selection-mode"],"scale":[513],"status":[513],"value":[1025],"flipPlacements":[16],"messages":[1040],"messageOverrides":[1040],"selectedItems":[1040],"filteredItems":[1040],"items":[32],"groupItems":[32],"needsIcon":[32],"activeItemIndex":[32],"activeChipIndex":[32],"activeDescendant":[32],"compactSelectionDisplay":[32],"selectedHiddenChipsCount":[32],"selectedVisibleChipsCount":[32],"text":[32],"effectiveLocale":[32],"defaultMessages":[32],"reposition":[64],"setFocus":[64]},[[5,"pointerdown","documentClickHandler"],[0,"calciteComboboxItemChange","calciteComboboxItemChangeHandler"]],{"open":["openHandler"],"disabled":["handleDisabledChange"],"maxItems":["maxItemsHandler"],"overlayPositioning":["overlayPositioningHandler"],"selectionMode":["handlePropsChange"],"scale":["handlePropsChange"],"value":["valueHandler"],"messageOverrides":["onMessagesChange"],"flipPlacements":["flipPlacementsHandler"],"selectedItems":["selectedItemsHandler"],"text":["textHandler"],"effectiveLocale":["effectiveLocaleChange"]}],[17,"calcite-dropdown",{"open":[1540],"closeOnSelectDisabled":[516,"close-on-select-disabled"],"disabled":[516],"flipPlacements":[16],"maxItems":[514,"max-items"],"overlayPositioning":[513,"overlay-positioning"],"placement":[513],"selectedItems":[1040],"type":[513],"widthScale":[513,"width-scale"],"scale":[513],"setFocus":[64],"reposition":[64]},[[9,"pointerdown","closeCalciteDropdownOnClick"],[0,"calciteInternalDropdownCloseRequest","closeCalciteDropdownOnEvent"],[8,"calciteDropdownOpen","closeCalciteDropdownOnOpenEvent"],[1,"pointerenter","pointerEnterHandler"],[1,"pointerleave","pointerLeaveHandler"],[0,"calciteInternalDropdownItemKeyEvent","calciteInternalDropdownItemKeyEvent"],[0,"calciteInternalDropdownItemSelect","handleItemSelect"]],{"open":["openHandler"],"disabled":["handleDisabledChange"],"flipPlacements":["flipPlacementsHandler"],"maxItems":["maxItemsHandler"],"overlayPositioning":["overlayPositioningHandler"],"placement":["placementHandler"],"scale":["handlePropsChange"]}]]],["p-57087d57",[[1,"instant-apps-filter-list",{"layerExpressions":[1040],"autoUpdateUrl":[4,"auto-update-url"],"closeBtn":[4,"close-btn"],"closeBtnOnClick":[16],"closeBtnText":[1,"close-btn-text"],"openFilters":[4,"open-filters"],"extentSelector":[4,"extent-selector"],"extentSelectorConfig":[16],"urlParams":[1040],"view":[16],"zoomBtn":[4,"zoom-btn"],"loading":[32],"filterLayerExpressions":[32],"messages":[32],"baseClass":[32],"disabled":[32],"hasLayerExpression":[32],"initDefExpressions":[32],"initMapImageExpressions":[32],"initPointCloudFilters":[32]},null,{"view":["watchViewHandler"],"layerExpressions":["watchLayerExpressions"]}],[17,"calcite-input-date-picker",{"disabled":[516],"focusTrapDisabled":[516,"focus-trap-disabled"],"form":[513],"readOnly":[516,"read-only"],"value":[1025],"flipPlacements":[16],"headingLevel":[514,"heading-level"],"valueAsDate":[1040],"messageOverrides":[1040],"messages":[1040],"minAsDate":[1040],"maxAsDate":[1040],"min":[1],"max":[1],"open":[1540],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"name":[513],"numberingSystem":[513,"numbering-system"],"scale":[513],"status":[513],"placement":[513],"range":[516],"required":[516],"overlayPositioning":[513,"overlay-positioning"],"proximitySelectionDisabled":[4,"proximity-selection-disabled"],"layout":[513],"datePickerActiveDate":[32],"defaultMessages":[32],"effectiveLocale":[32],"focusedInput":[32],"localeData":[32],"setFocus":[64],"reposition":[64]},[[0,"calciteDaySelect","calciteDaySelectHandler"]],{"focusTrapDisabled":["handleFocusTrapDisabled"],"disabled":["handleDisabledAndReadOnlyChange"],"readOnly":["handleDisabledAndReadOnlyChange"],"value":["valueWatcher"],"valueAsDate":["valueAsDateWatcher"],"flipPlacements":["flipPlacementsHandler"],"messageOverrides":["onMessagesChange"],"min":["onMinChanged"],"max":["onMaxChanged"],"open":["openHandler"],"overlayPositioning":["overlayPositioningHandler"],"layout":["setReferenceEl"],"focusedInput":["setReferenceEl"],"effectiveLocale":["loadLocaleData"]}],[1,"instant-apps-social-share",{"mode":[513],"shareUrl":[1025,"share-url"],"autoUpdateShareUrl":[1028,"auto-update-share-url"],"shareText":[513,"share-text"],"embed":[516],"shareButtonColor":[513,"share-button-color"],"shareButtonType":[513,"share-button-type"],"shareButtonScale":[513,"share-button-scale"],"iframeInnerText":[513,"iframe-inner-text"],"popoverButtonIconScale":[513,"popover-button-icon-scale"],"view":[16],"displayTipText":[516,"display-tip-text"],"shortenShareUrl":[516,"shorten-share-url"],"socialMedia":[516,"social-media"],"shareIconsLayout":[513,"share-icons-layout"],"scale":[513],"successMessage":[513,"success-message"],"defaultUrlParams":[16],"inlineSuccessPopoverPlacement":[513,"inline-success-popover-placement"],"messages":[32],"opened":[32],"copied":[32],"inlineCopyLinkOpened":[32],"inlineCopyEmbedOpened":[32],"embedWidth":[32],"embedHeight":[32]}]]],["p-aecf92f4",[[0,"layer-table",{"defaultFilter":[16],"defaultGlobalId":[16],"defaultLayerId":[1,"default-layer-id"],"defaultOid":[16],"enableAutoRefresh":[4,"enable-auto-refresh"],"enableColumnReorder":[4,"enable-column-reorder"],"enableCSV":[4,"enable-c-s-v"],"enableInlineEdit":[4,"enable-inline-edit"],"enableShare":[4,"enable-share"],"isMobile":[4,"is-mobile"],"mapInfo":[16],"mapView":[16],"onlyShowUpdatableLayers":[4,"only-show-updatable-layers"],"selectedIds":[16],"shareIncludeEmbed":[4,"share-include-embed"],"shareIncludeSocial":[4,"share-include-social"],"showNewestFirst":[4,"show-newest-first"],"zoomAndScrollToSelected":[4,"zoom-and-scroll-to-selected"],"_controlsThatFit":[32],"_csvExporting":[32],"_fetchingData":[32],"_filterActive":[32],"_filterOpen":[32],"_layer":[32],"_selectAllActive":[32],"_showHideOpen":[32],"_showOnlySelected":[32],"_sortActive":[32],"_translations":[32]},[[8,"selectionChanged","selectionChanged"],[8,"editsComplete","editsComplete"],[8,"levelChanged","levelChanged"],[8,"noLayersFound","noLayersFound"]],{"enableCSV":["enableCSVWatchHandler"],"enableInlineEdit":["enableInlineEditWatchHandler"],"_controlsThatFit":["_controlsThatFitWatchHandler"],"isMobile":["isMobileWatchHandler"],"mapInfo":["mapInfoWatchHandler"],"mapView":["mapViewWatchHandler"],"_layer":["_layerWatchHandler"],"selectedIds":["selectedIdsWatchHandler"],"_sortActive":["_sortActiveWatchHandler"]}],[0,"map-card",{"defaultWebmapId":[1,"default-webmap-id"],"enableHome":[4,"enable-home"],"enableLegend":[4,"enable-legend"],"enableFloorFilter":[4,"enable-floor-filter"],"enableFullscreen":[4,"enable-fullscreen"],"enableSingleExpand":[4,"enable-single-expand"],"enableSearch":[4,"enable-search"],"enableBasemap":[4,"enable-basemap"],"basemapConfig":[16],"hidden":[4],"homeZoomIndex":[2,"home-zoom-index"],"homeZoomPosition":[1,"home-zoom-position"],"homeZoomToolsSize":[1,"home-zoom-tools-size"],"mapInfos":[16],"mapWidgetsIndex":[2,"map-widgets-index"],"mapWidgetsPosition":[1,"map-widgets-position"],"mapWidgetsSize":[1,"map-widgets-size"],"mapView":[16],"stackTools":[4,"stack-tools"],"theme":[1],"toolOrder":[16],"_searchConfiguration":[32],"_webMapInfo":[32]},[[8,"mapInfoChange","mapInfoChange"]],{"enableHome":["enableHomeWatchHandler"]}],[0,"card-manager",{"isMobile":[4,"is-mobile"],"layer":[16],"mapView":[16],"zoomAndScrollToSelected":[4,"zoom-and-scroll-to-selected"],"_cardLoading":[32],"_graphics":[32],"_translations":[32]},[[8,"featureSelectionChange","featureSelectionChange"],[8,"layerSelectionChange","layerSelectionChange"]]]]],["p-2283ae14",[[0,"refine-selection",{"addresseeLayer":[16],"enabledLayerIds":[16],"mapView":[16],"selectionSets":[1040],"sketchLineSymbol":[16],"sketchPointSymbol":[16],"sketchPolygonSymbol":[16],"_translations":[32],"_selectionMode":[32],"_refineLayer":[32]}],[0,"map-select-tools",{"bufferColor":[8,"buffer-color"],"bufferOutlineColor":[8,"buffer-outline-color"],"customLabelEnabled":[4,"custom-label-enabled"],"enabledLayerIds":[16],"defaultBufferDistance":[2,"default-buffer-distance"],"defaultBufferUnit":[1,"default-buffer-unit"],"geometries":[16],"isUpdate":[4,"is-update"],"layerViews":[16],"mapView":[16],"noResultText":[1,"no-result-text"],"searchConfiguration":[1040],"selectionSet":[16],"selectionLayerIds":[16],"selectLayerView":[16],"sketchLineSymbol":[16],"sketchPointSymbol":[16],"sketchPolygonSymbol":[16],"_numSelected":[32],"_searchDistanceEnabled":[32],"_searchTerm":[32],"_selectionLoading":[32],"_translations":[32],"_useLayerFeaturesEnabled":[32],"clearSelection":[64],"getSelection":[64]},[[8,"searchConfigurationChange","searchConfigurationChangeChanged"],[8,"distanceChanged","distanceChanged"],[8,"unitChanged","unitChanged"]],{"geometries":["watchGeometriesHandler"],"searchConfiguration":["watchSearchConfigurationHandler"]}],[1,"pdf-download",{"defaultNumLabelsPerPage":[2,"default-num-labels-per-page"],"disabled":[4],"_translations":[32],"downloadCSV":[64],"downloadPDF":[64]}]]],["p-565e0f0d",[[1,"calcite-pick-list-item",{"description":[513],"disabled":[516],"deselectDisabled":[516,"deselect-disabled"],"nonInteractive":[516,"non-interactive"],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"label":[513],"messageOverrides":[1040],"messages":[1040],"metadata":[16],"removable":[516],"selected":[1540],"value":[8],"defaultMessages":[32],"effectiveLocale":[32],"toggleSelected":[64],"setFocus":[64]},null,{"description":["descriptionWatchHandler"],"label":["labelWatchHandler"],"defaultMessages":["onMessagesChange"],"messageOverrides":["onMessagesChange"],"metadata":["metadataWatchHandler"],"selected":["selectedWatchHandler"],"value":["valueWatchHandler"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-e05b02c5",[[0,"solution-template-data",{"instanceid":[1537],"itemId":[1537,"item-id"],"organizationVariables":[1537,"organization-variables"],"solutionVariables":[1537,"solution-variables"],"varsOpen":[1540,"vars-open"],"_translations":[32],"value":[32]},null,{"itemId":["itemIdWatchHandler"]}],[1,"solution-resource-item",{"authentication":[1040],"itemId":[1537,"item-id"],"resourceFilePaths":[32],"resources":[32],"_translations":[32]},null,{"itemId":["itemIdWatchHandler"]}],[0,"solution-item-details",{"itemId":[1537,"item-id"],"itemDetails":[32],"itemEdit":[32],"_translations":[32],"thumbnail":[32],"thumbnailContainer":[32]},[[0,"calciteInputInput","inputReceivedHandler"]]],[1,"solution-item-sharing",{"groupId":[1537,"group-id"],"_translations":[32],"sharing":[32],"getShareInfo":[64]},null,{"groupId":["itemIdWatchHandler"]}],[1,"solution-variables",{"value":[1537],"_solutionVariables":[32],"_translations":[32]},null,{"value":["valueWatchHandler"]}],[1,"calcite-value-list-item",{"description":[513],"disabled":[516],"deselectDisabled":[4,"deselect-disabled"],"nonInteractive":[516,"non-interactive"],"handleActivated":[1028,"handle-activated"],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"label":[513],"metadata":[16],"removable":[516],"selected":[1540],"value":[8],"toggleSelected":[64],"setFocus":[64]},[[0,"calciteListItemChange","calciteListItemChangeHandler"]]],[1,"solution-organization-variables",{"value":[1537],"_organizationVariables":[32],"_translations":[32]},null,{"value":["valueWatchHandler"]}],[0,"json-editor",{"hasChanges":[1540,"has-changes"],"hasErrors":[1540,"has-errors"],"instanceid":[1544],"value":[1544],"getEditorContents":[64],"prepareForDeletion":[64],"replaceCurrentSelection":[64],"reset":[64]}],[1,"calcite-tab-title",{"selected":[1540],"closable":[516],"closed":[1540],"disabled":[516],"iconEnd":[513,"icon-end"],"iconFlipRtl":[513,"icon-flip-rtl"],"iconStart":[513,"icon-start"],"layout":[1537],"position":[1],"scale":[1],"bordered":[1540],"tab":[513],"messages":[1040],"messageOverrides":[1040],"controls":[32],"defaultMessages":[32],"effectiveLocale":[32],"hasText":[32],"getTabIndex":[64],"getTabIdentifier":[64],"updateAriaInfo":[64],"activateTab":[64]},[[16,"calciteInternalTabChange","internalTabChangeHandler"],[0,"click","onClick"],[0,"keydown","keyDownHandler"]],{"selected":["selectedHandler"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[1,"calcite-shell-panel",{"collapsed":[516],"detached":[516],"displayMode":[513,"display-mode"],"detachedHeightScale":[513,"detached-height-scale"],"heightScale":[513,"height-scale"],"widthScale":[513,"width-scale"],"layout":[513],"position":[513],"resizable":[516],"messages":[1040],"messageOverrides":[1040],"contentWidth":[32],"contentHeight":[32],"defaultMessages":[32],"effectiveLocale":[32],"hasHeader":[32]},null,{"detached":["handleDetached"],"displayMode":["handleDisplayMode"],"detachedHeightScale":["handleDetachedHeightScale"],"heightScale":["handleHeightScale"],"layout":["layoutHandler"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[1,"calcite-tab",{"tab":[513],"selected":[1540],"scale":[1],"labeledBy":[32],"getTabIndex":[64],"updateAriaInfo":[64]},[[16,"calciteInternalTabChange","internalTabChangeHandler"]]],[1,"calcite-tab-nav",{"storageId":[513,"storage-id"],"syncId":[513,"sync-id"],"selectedTitle":[1040],"scale":[1],"layout":[1537],"position":[1],"bordered":[1540],"indicatorOffset":[1026,"indicator-offset"],"indicatorWidth":[1026,"indicator-width"],"selectedTabId":[32]},[[0,"calciteInternalTabsFocusPrevious","focusPreviousTabHandler"],[0,"calciteInternalTabsFocusNext","focusNextTabHandler"],[0,"calciteInternalTabsFocusFirst","focusFirstTabHandler"],[0,"calciteInternalTabsFocusLast","focusLastTabHandler"],[0,"calciteInternalTabsActivate","internalActivateTabHandler"],[0,"calciteTabsActivate","activateTabHandler"],[0,"calciteInternalTabsClose","internalCloseTabHandler"],[0,"calciteInternalTabTitleRegister","updateTabTitles"],[16,"calciteInternalTabChange","globalInternalTabChangeHandler"],[0,"calciteInternalTabIconChanged","iconStartChangeHandler"]],{"selectedTabId":["selectedTabIdChanged"],"selectedTitle":["selectedTitleChanged"]}],[1,"calcite-tabs",{"layout":[513],"position":[513],"scale":[513],"bordered":[4],"titles":[32],"tabs":[32]},[[0,"calciteInternalTabTitleRegister","calciteInternalTabTitleRegister"],[16,"calciteTabTitleUnregister","calciteTabTitleUnregister"],[0,"calciteInternalTabRegister","calciteInternalTabRegister"],[16,"calciteTabUnregister","calciteTabUnregister"]],{"position":["handleInheritableProps"],"scale":["handleInheritableProps"]}],[1,"calcite-value-list",{"disabled":[516],"canPull":[16],"canPut":[16],"dragEnabled":[516,"drag-enabled"],"filteredItems":[1040],"filteredData":[1040],"filterEnabled":[516,"filter-enabled"],"filterPlaceholder":[513,"filter-placeholder"],"filterText":[1537,"filter-text"],"group":[513],"loading":[516],"multiple":[516],"selectionFollowsFocus":[516,"selection-follows-focus"],"messageOverrides":[1040],"messages":[1040],"dataForFilter":[32],"defaultMessages":[32],"effectiveLocale":[32],"selectedValues":[32],"getSelectedItems":[64],"setFocus":[64]},[[0,"focusout","calciteListFocusOutHandler"],[0,"calciteListItemRemove","calciteListItemRemoveHandler"],[0,"calciteListItemChange","calciteListItemChangeHandler"],[0,"calciteInternalListItemPropsChange","calciteInternalListItemPropsChangeHandler"],[0,"calciteInternalListItemValueChange","calciteInternalListItemValueChangeHandler"],[0,"calciteValueListItemDragHandleBlur","handleValueListItemBlur"]],{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-531ccf84",[[0,"solution-item",{"authentication":[1040],"itemId":[1537,"item-id"],"solutionVariables":[1537,"solution-variables"],"organizationVariables":[1537,"organization-variables"],"itemType":[32],"_translations":[32]},null,{"itemId":["itemIdWatchHandler"]}],[0,"solution-spatial-ref",{"defaultWkid":[1538,"default-wkid"],"locked":[1540],"services":[1040],"value":[1537],"loaded":[32],"_srSearchText":[32],"_translations":[32]},[[8,"spatialReferenceChange","spatialReferenceChange"]],{"locked":["lockedChanged"]}],[0,"solution-contents",{"selectedItemId":[1537,"selected-item-id"],"templateHierarchy":[1040]},null,{"templateHierarchy":["valueWatchHandler"]}]]],["p-bd06bae0",[[17,"calcite-pagination",{"groupSeparator":[516,"group-separator"],"messages":[1040],"messageOverrides":[1040],"numberingSystem":[1,"numbering-system"],"pageSize":[1538,"page-size"],"scale":[513],"startItem":[1538,"start-item"],"totalItems":[514,"total-items"],"defaultMessages":[32],"effectiveLocale":[32],"maxItems":[32],"totalPages":[32],"lastStartItem":[32],"isXXSmall":[32],"setFocus":[64],"nextPage":[64],"previousPage":[64]},null,{"messageOverrides":["onMessagesChange"],"totalItems":["handleTotalPages","handleLastStartItemChange"],"pageSize":["handleTotalPages","handleLastStartItemChange"],"effectiveLocale":["effectiveLocaleChange","effectiveLocaleWatcher"],"totalPages":["handleLastStartItemChange"],"maxItems":["handleIsXXSmall"]}]]],["p-04923112",[[1,"calcite-segmented-control-item",{"checked":[1540],"iconFlipRtl":[516,"icon-flip-rtl"],"iconStart":[513,"icon-start"],"iconEnd":[513,"icon-end"],"value":[1032],"appearance":[1],"layout":[1],"scale":[1]},null,{"checked":["handleCheckedChange"]}],[1,"calcite-segmented-control",{"appearance":[513],"disabled":[516],"form":[513],"required":[516],"name":[513],"layout":[513],"scale":[513],"value":[1025],"selectedItem":[1040],"status":[513],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"width":[513],"setFocus":[64]},[[0,"calciteInternalSegmentedControlItemChange","handleSelected"],[0,"keydown","handleKeyDown"]],{"appearance":["handlePropsChange"],"layout":["handlePropsChange"],"scale":["handlePropsChange"],"value":["valueHandler"],"selectedItem":["handleSelectedItemChange"]}]]],["p-ebd6afea",[[1,"calcite-input",{"alignment":[513],"autofocus":[516],"clearable":[516],"disabled":[516],"form":[513],"groupSeparator":[516,"group-separator"],"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"label":[1],"loading":[516],"numberingSystem":[513,"numbering-system"],"localeFormat":[4,"locale-format"],"max":[514],"min":[514],"maxLength":[514,"max-length"],"minLength":[514,"min-length"],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"name":[513],"numberButtonType":[513,"number-button-type"],"placeholder":[1],"prefixText":[1,"prefix-text"],"readOnly":[516,"read-only"],"required":[516],"scale":[513],"status":[513],"step":[520],"autocomplete":[1],"pattern":[1],"accept":[1],"multiple":[4],"inputMode":[1,"input-mode"],"enterKeyHint":[1,"enter-key-hint"],"suffixText":[1,"suffix-text"],"editingEnabled":[1540,"editing-enabled"],"type":[513],"value":[1025],"files":[16],"messages":[1040],"messageOverrides":[1040],"defaultMessages":[32],"effectiveLocale":[32],"displayedValue":[32],"slottedActionElDisabledInternally":[32],"setFocus":[64],"selectText":[64]},null,{"disabled":["disabledWatcher"],"max":["maxWatcher"],"min":["minWatcher"],"messageOverrides":["onMessagesChange"],"value":["valueWatcher"],"icon":["updateRequestedIcon"],"type":["updateRequestedIcon"],"effectiveLocale":["effectiveLocaleChange"]}],[1,"calcite-progress",{"type":[513],"value":[2],"label":[1],"text":[1],"reversed":[516]}]]],["p-32dc5007",[[1,"calcite-list",{"disabled":[516],"canPull":[16],"canPut":[16],"dragEnabled":[516,"drag-enabled"],"group":[513],"filterEnabled":[516,"filter-enabled"],"filteredItems":[1040],"filteredData":[1040],"filterPlaceholder":[513,"filter-placeholder"],"filterText":[1537,"filter-text"],"label":[1],"loading":[516],"messageOverrides":[1040],"messages":[1040],"numberingSystem":[1,"numbering-system"],"openable":[4],"selectedItems":[1040],"selectionMode":[513,"selection-mode"],"selectionAppearance":[513,"selection-appearance"],"effectiveLocale":[32],"defaultMessages":[32],"assistiveText":[32],"dataForFilter":[32],"hasFilterActionsEnd":[32],"hasFilterActionsStart":[32],"hasFilterNoResults":[32],"setFocus":[64]},[[0,"calciteInternalFocusPreviousItem","handleCalciteInternalFocusPreviousItem"],[0,"calciteInternalListItemActive","handleCalciteInternalListItemActive"],[0,"calciteListItemSelect","handleCalciteListItemSelect"],[0,"calciteInternalAssistiveTextChange","handleCalciteInternalAssistiveTextChange"],[0,"calciteHandleNudge","handleCalciteHandleNudge"],[0,"calciteInternalListItemSelect","handleCalciteInternalListItemSelect"],[0,"calciteInternalListItemSelectMultiple","handleCalciteInternalListItemSelectMultiple"],[0,"calciteInternalListItemChange","handleCalciteInternalListItemChange"],[0,"calciteInternalListItemGroupDefaultSlotChange","handleCalciteInternalListItemGroupDefaultSlotChange"]],{"filterText":["handleFilterTextChange"],"messageOverrides":["onMessagesChange"],"filterEnabled":["handleListItemChange"],"group":["handleListItemChange"],"dragEnabled":["handleListItemChange"],"selectionMode":["handleListItemChange"],"selectionAppearance":["handleListItemChange"],"effectiveLocale":["effectiveLocaleChange"]}],[1,"calcite-list-item",{"active":[4],"closable":[516],"closed":[1540],"description":[1],"disabled":[516],"dragDisabled":[516,"drag-disabled"],"dragHandle":[4,"drag-handle"],"dragSelected":[1540,"drag-selected"],"filterHidden":[516,"filter-hidden"],"label":[1],"metadata":[16],"open":[1540],"setSize":[2,"set-size"],"setPosition":[2,"set-position"],"selected":[1540],"value":[8],"selectionMode":[1025,"selection-mode"],"selectionAppearance":[1025,"selection-appearance"],"messageOverrides":[1040],"messages":[1040],"effectiveLocale":[32],"defaultMessages":[32],"level":[32],"visualLevel":[32],"parentListEl":[32],"openable":[32],"hasActionsStart":[32],"hasActionsEnd":[32],"hasCustomContent":[32],"hasContentStart":[32],"hasContentEnd":[32],"hasContentBottom":[32],"setFocus":[64]},[[0,"calciteInternalListItemGroupDefaultSlotChange","handleCalciteInternalListDefaultSlotChanges"],[0,"calciteInternalListDefaultSlotChange","handleCalciteInternalListDefaultSlotChanges"]],{"active":["activeHandler"],"closed":["handleClosedChange"],"disabled":["handleDisabledChange"],"selected":["handleSelectedChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[17,"calcite-filter",{"items":[16],"disabled":[516],"filteredItems":[1040],"placeholder":[1],"scale":[513],"value":[1025],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"filter":[64],"setFocus":[64]},null,{"items":["watchItemsHandler"],"messageOverrides":["onMessagesChange"],"value":["valueHandler"],"effectiveLocale":["effectiveLocaleChange"]}],[1,"calcite-stack",{"disabled":[516],"hasActionsStart":[32],"hasActionsEnd":[32],"hasContentStart":[32],"hasContentEnd":[32]}],[1,"calcite-handle",{"selected":[1540],"disabled":[516],"dragHandle":[513,"drag-handle"],"messages":[16],"setPosition":[2,"set-position"],"setSize":[2,"set-size"],"label":[1],"blurUnselectDisabled":[4,"blur-unselect-disabled"],"messageOverrides":[16],"effectiveLocale":[32],"defaultMessages":[32],"setFocus":[64]},null,{"messages":["handleAriaTextChange"],"label":["handleAriaTextChange"],"selected":["handleAriaTextChange"],"setPosition":["handleAriaTextChange"],"setSize":["handleAriaTextChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-aec06ce4",[[1,"calcite-action-menu",{"appearance":[513],"expanded":[516],"flipPlacements":[16],"label":[1],"open":[1540],"overlayPositioning":[513,"overlay-positioning"],"placement":[513],"scale":[513],"menuButtonEl":[32],"activeMenuItemIndex":[32],"setFocus":[64]},null,{"expanded":["expandedHandler"],"open":["openHandler"],"activeMenuItemIndex":["activeMenuItemIndexHandler"]}],[1,"calcite-popover",{"autoClose":[516,"auto-close"],"closable":[516],"flipDisabled":[516,"flip-disabled"],"focusTrapDisabled":[516,"focus-trap-disabled"],"pointerDisabled":[516,"pointer-disabled"],"flipPlacements":[16],"heading":[1],"headingLevel":[514,"heading-level"],"label":[1],"messageOverrides":[1040],"messages":[1040],"offsetDistance":[514,"offset-distance"],"offsetSkidding":[514,"offset-skidding"],"open":[1540],"overlayPositioning":[513,"overlay-positioning"],"placement":[513],"referenceElement":[1,"reference-element"],"scale":[513],"triggerDisabled":[516,"trigger-disabled"],"effectiveLocale":[32],"floatingLayout":[32],"effectiveReferenceElement":[32],"defaultMessages":[32],"reposition":[64],"setFocus":[64],"updateFocusTrapElements":[64]},null,{"focusTrapDisabled":["handleFocusTrapDisabled"],"flipPlacements":["flipPlacementsHandler"],"messageOverrides":["onMessagesChange"],"offsetDistance":["offsetDistanceOffsetHandler"],"offsetSkidding":["offsetSkiddingHandler"],"open":["openHandler"],"overlayPositioning":["overlayPositioningHandler"],"placement":["placementHandler"],"referenceElement":["referenceElementHandler"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-59c6f63f",[[0,"feature-list",{"selectedLayerId":[1,"selected-layer-id"],"mapView":[16],"noFeaturesFoundMsg":[1,"no-features-found-msg"],"pageSize":[2,"page-size"],"highlightOnMap":[4,"highlight-on-map"],"_featureItems":[32],"_featuresCount":[32],"_isLoading":[32],"_translations":[32]},null,{"selectedLayerId":["selectedLayerWatchHandler"]}],[0,"layer-list",{"mapView":[16],"layers":[16],"noLayerErrorMsg":[1,"no-layer-error-msg"],"showFeatureCount":[4,"show-feature-count"],"showNextIcon":[4,"show-next-icon"],"_noLayersToDisplay":[32],"_mapLayerIds":[32],"_isLoading":[32],"_translations":[32],"refresh":[64]}],[1,"calcite-flow-item",{"closable":[516],"closed":[516],"collapsed":[516],"collapseDirection":[1,"collapse-direction"],"collapsible":[516],"beforeBack":[16],"description":[1],"disabled":[516],"heading":[1],"headingLevel":[514,"heading-level"],"loading":[516],"menuOpen":[516,"menu-open"],"messageOverrides":[1040],"messages":[1040],"overlayPositioning":[513,"overlay-positioning"],"showBackButton":[4,"show-back-button"],"defaultMessages":[32],"effectiveLocale":[32],"setFocus":[64],"scrollContentTo":[64]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[1,"calcite-flow",{"customItemSelectors":[1,"custom-item-selectors"],"flowDirection":[32],"itemCount":[32],"items":[32],"back":[64],"setFocus":[64]},[[0,"calciteFlowItemBack","handleItemBackClick"]]],[0,"create-feature",{"mapView":[16],"selectedLayerId":[1,"selected-layer-id"],"customizeSubmit":[4,"customize-submit"],"close":[64],"submit":[64]},null,{"mapView":["mapViewWatchHandler"]}]]],["p-4a030771",[[1,"calcite-action-bar",{"actionsEndGroupLabel":[1,"actions-end-group-label"],"expandDisabled":[516,"expand-disabled"],"expanded":[1540],"layout":[513],"overflowActionsDisabled":[516,"overflow-actions-disabled"],"overlayPositioning":[513,"overlay-positioning"],"position":[513],"scale":[513],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"hasActionsEnd":[32],"hasBottomActions":[32],"expandTooltip":[32],"defaultMessages":[32],"overflowActions":[64],"setFocus":[64]},null,{"expandDisabled":["expandHandler"],"expanded":["expandedHandler"],"layout":["layoutHandler"],"overflowActionsDisabled":["overflowDisabledHandler"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-df468e80",[[1,"buffer-tools",{"appearance":[1025],"distance":[1026],"geometries":[1040],"max":[1026],"min":[1026],"sliderTicks":[1026,"slider-ticks"],"unionResults":[1028,"union-results"],"unit":[1025],"disabled":[4],"_translations":[32],"getTranslatedUnit":[64]},null,{"geometries":["geometriesWatchHandler"],"disabled":["disabledWatchHandler"]}],[1,"calcite-input-message",{"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"scale":[513],"status":[513]},null,{"status":["handleIconEl"],"icon":["handleIconEl"]}],[0,"map-draw-tools",{"active":[4],"drawMode":[1,"draw-mode"],"editGraphicsEnabled":[4,"edit-graphics-enabled"],"graphics":[1040],"mapView":[1040],"pointSymbol":[1040],"polylineSymbol":[1040],"polygonSymbol":[1040],"redoEnabled":[4,"redo-enabled"],"undoEnabled":[4,"undo-enabled"],"_translations":[32],"_selectionMode":[32],"clear":[64],"updateGraphics":[64]},null,{"graphics":["graphicsWatchHandler"],"mapView":["mapViewWatchHandler"]}]]],["p-4742efa8",[[2,"instant-apps-language-translator-item",{"fieldName":[1,"field-name"],"translatedLanguageLabels":[16],"setting":[16],"userLocaleInputOnChangeCallback":[16],"translatedLocaleInputOnChangeCallback":[16]}],[2,"instant-apps-language-translator-search",{"t9nPlaceholder":[1,"t-9n-placeholder"],"results":[32]}],[0,"instant-apps-ckeditor-wrapper",{"value":[1025],"editorInstance":[1040],"config":[16]},null,{"value":["updateValue"]}]]],["p-ced067bd",[[1,"calcite-block",{"collapsible":[516],"disabled":[516],"dragHandle":[516,"drag-handle"],"heading":[1],"headingLevel":[514,"heading-level"],"loading":[516],"open":[1540],"status":[513],"description":[1],"messages":[1040],"messageOverrides":[1040],"overlayPositioning":[513,"overlay-positioning"],"effectiveLocale":[32],"defaultMessages":[32],"setFocus":[64]},null,{"open":["openHandler"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[17,"calcite-date-picker",{"activeDate":[1040],"activeRange":[513,"active-range"],"value":[1025],"headingLevel":[514,"heading-level"],"valueAsDate":[1040],"minAsDate":[1040],"maxAsDate":[1040],"min":[513],"max":[513],"numberingSystem":[513,"numbering-system"],"scale":[513],"range":[516],"proximitySelectionDisabled":[516,"proximity-selection-disabled"],"messageOverrides":[1040],"messages":[1040],"activeEndDate":[32],"activeStartDate":[32],"dateTimeFormat":[32],"defaultMessages":[32],"effectiveLocale":[32],"endAsDate":[32],"hoverRange":[32],"localeData":[32],"mostRecentRangeValue":[32],"startAsDate":[32],"setFocus":[64],"reset":[64]},null,{"activeDate":["activeDateWatcher"],"valueAsDate":["valueAsDateWatcher"],"min":["onMinChanged"],"max":["onMaxChanged"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange","loadLocaleData"],"value":["valueHandler"]}]]],["p-62f2cea7",[[2,"instant-apps-interactive-legend-layer-element-caption",{"legendvm":[16],"featureCount":[4,"feature-count"],"activeLayerInfo":[16],"messages":[8],"isChild":[4,"is-child"],"expanded":[1028]}],[2,"instant-apps-interactive-legend-count",{"showTotal":[4,"show-total"],"legendvm":[16],"activeLayerInfo":[16],"categoryId":[1,"category-id"],"infoIndex":[2,"info-index"],"messages":[8],"selected":[4],"legendElement":[16]}]]],["p-732ae6e8",[[6,"instant-apps-interactive-legend-legend-element",{"activeLayerInfo":[16],"isSizeRamp":[4,"is-size-ramp"],"isChild":[4,"is-child"],"isColorRamp":[4,"is-color-ramp"],"isRelationshipRamp":[4,"is-relationship-ramp"],"isInteractive":[4,"is-interactive"],"zoomTo":[4,"zoom-to"],"legendElement":[16],"titleText":[1,"title-text"],"legendvm":[16],"legendElementIndex":[2,"legend-element-index"],"messages":[8],"expanded":[32]},[[8,"legendLayerExpandUpdated","legendLayerExpandUpdatedEmitted"]]],[6,"instant-apps-interactive-legend-group-legend-element",{"legendvm":[16],"featureCount":[4,"feature-count"],"activeLayerInfo":[16],"messages":[8],"isChild":[4,"is-child"],"expanded":[32]},[[8,"layerCaptionElementExpandUpdated","layerCaptionElementExpandUpdatedEmitted"]]],[6,"instant-apps-interactive-legend-layer-element",{"legendvm":[16],"featureCount":[4,"feature-count"],"activeLayerInfo":[16],"messages":[8],"isChild":[4,"is-child"],"expanded":[32]},[[8,"layerCaptionElementExpandUpdated","layerCaptionElementExpandUpdatedEmitted"]]],[2,"instant-apps-interactive-legend-relationship",{"filterMode":[16],"activeLayerInfo":[16],"legendElement":[16],"messages":[8]},[[8,"showAllSelected","showAllSelectedEmitted"]]],[2,"instant-apps-interactive-legend-legend-element-caption",{"legendvm":[16],"activeLayerInfo":[16],"layer":[16],"titleText":[1,"title-text"],"legendElementIndex":[2,"legend-element-index"],"zoomTo":[4,"zoom-to"],"isInteractive":[4,"is-interactive"],"legendElement":[16],"expanded":[1028],"messages":[8]}]]],["p-5fbfa5e4",[[1,"calcite-shell",{"contentBehind":[516,"content-behind"],"hasHeader":[32],"hasFooter":[32],"hasAlerts":[32],"hasModals":[32],"hasSheets":[32],"panelIsResizing":[32]},[[0,"calciteInternalShellPanelResizeStart","handleCalciteInternalShellPanelResizeStart"],[0,"calciteInternalShellPanelResizeEnd","handleCalciteInternalShellPanelResizeEnd"]]],[1,"calcite-panel",{"closed":[1540],"disabled":[516],"closable":[516],"collapsed":[516],"collapseDirection":[1,"collapse-direction"],"collapsible":[516],"headingLevel":[514,"heading-level"],"loading":[516],"heading":[1],"description":[1],"menuOpen":[516,"menu-open"],"messageOverrides":[1040],"messages":[1040],"overlayPositioning":[513,"overlay-positioning"],"hasStartActions":[32],"hasEndActions":[32],"hasMenuItems":[32],"hasHeaderContent":[32],"hasActionBar":[32],"hasFooterContent":[32],"hasFooterActions":[32],"hasFab":[32],"defaultMessages":[32],"effectiveLocale":[32],"showHeaderContent":[32],"setFocus":[64],"scrollContentTo":[64]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-6fe5e1d5",[[0,"info-card",{"graphics":[16],"isLoading":[4,"is-loading"],"isMobile":[4,"is-mobile"],"mapView":[16],"zoomAndScrollToSelected":[4,"zoom-and-scroll-to-selected"],"allowEditing":[4,"allow-editing"],"highlightEnabled":[4,"highlight-enabled"],"_alertOpen":[32],"_count":[32],"_editRecordOpen":[32],"_mobileTitle":[32],"_showListView":[32],"_translations":[32],"getSelectedFeature":[64]},[[8,"closeEdit","closeEdit"],[8,"layerSelectionChange","layerSelectionChange"],[8,"refreshGraphics","refreshGraphics"]],{"graphics":["graphicsWatchHandler"],"isMobile":["isMobileWatchHandler"],"mapView":["mapViewWatchHandler"]}],[0,"edit-card",{"graphics":[1040],"mapView":[16],"open":[1028],"graphicIndex":[2,"graphic-index"],"_editorLoading":[32],"_translations":[32]},[[8,"featureSelectionChange","featureSelectionChange"]],{"graphics":["graphicsWatchHandler"],"open":["openWatchHandler"]}],[1,"calcite-alert",{"open":[1540],"autoClose":[516,"auto-close"],"autoCloseDuration":[513,"auto-close-duration"],"kind":[513],"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"label":[1],"numberingSystem":[513,"numbering-system"],"placement":[513],"scale":[513],"messages":[1040],"messageOverrides":[1040],"slottedInShell":[1028,"slotted-in-shell"],"defaultMessages":[32],"effectiveLocale":[32],"numberStringFormatter":[32],"hasEndActions":[32],"queue":[32],"queueLength":[32],"queued":[32],"setFocus":[64]},[[8,"calciteInternalAlertSync","alertSync"],[8,"calciteInternalAlertRegister","alertRegister"],[8,"calciteInternalAlertUnregister","alertUnregister"]],{"open":["openHandler"],"messageOverrides":["onMessagesChange"],"autoCloseDuration":["updateDuration"],"effectiveLocale":["effectiveLocaleChange"],"numberingSystem":["numberingSystemChange"]}],[1,"delete-button",{"buttonType":[1,"button-type"],"disabled":[4],"icon":[1],"ids":[16],"layer":[16],"_confirmDelete":[32],"_deleteEndabled":[32],"_isDeleting":[32],"_supportsDelete":[32],"_translations":[32]},null,{"ids":["idsWatchHandler"],"layer":["layerWatchHandler"]}]]],["p-038fcd93",[[1,"calcite-date-picker-month",{"dateTimeFormat":[16],"selectedDate":[16],"activeDate":[16],"startDate":[16],"endDate":[16],"min":[16],"max":[16],"scale":[513],"localeData":[16],"hoverRange":[16]},[[1,"pointerout","pointerOutHandler"]]],[1,"calcite-date-picker-month-header",{"selectedDate":[16],"activeDate":[16],"headingLevel":[2,"heading-level"],"min":[16],"max":[16],"scale":[513],"localeData":[16],"messages":[1040],"nextMonthDate":[32],"prevMonthDate":[32]},null,{"min":["setNextPrevMonthDates"],"max":["setNextPrevMonthDates"],"activeDate":["setNextPrevMonthDates"]}],[1,"calcite-date-picker-day",{"day":[2],"dateTimeFormat":[16],"disabled":[516],"currentMonth":[516,"current-month"],"selected":[516],"highlighted":[516],"range":[516],"rangeEdge":[513,"range-edge"],"startOfRange":[516,"start-of-range"],"endOfRange":[516,"end-of-range"],"rangeHover":[516,"range-hover"],"active":[516],"scale":[513],"value":[16]},[[1,"pointerover","pointerOverHandler"]]]]],["p-928c0b29",[[1,"calcite-checkbox",{"checked":[1540],"disabled":[516],"form":[513],"guid":[1537],"hovered":[516],"indeterminate":[1540],"label":[1],"name":[513],"required":[516],"scale":[513],"status":[513],"value":[8],"setFocus":[64]}]]],["p-45263007",[[1,"calcite-tree-item",{"disabled":[516],"expanded":[1540],"iconFlipRtl":[513,"icon-flip-rtl"],"iconStart":[513,"icon-start"],"selected":[1540],"parentExpanded":[4,"parent-expanded"],"depth":[1538],"hasChildren":[1540,"has-children"],"lines":[1540],"scale":[1537],"indeterminate":[516],"selectionMode":[1537,"selection-mode"],"hasEndActions":[32],"updateAfterInitialRender":[32]},[[0,"click","onClick"],[0,"keydown","keyDownHandler"]],{"expanded":["expandedHandler"],"selected":["handleSelectedChange"],"selectionMode":["getSelectionMode"]}],[1,"calcite-tree",{"lines":[1540],"child":[1540],"scale":[1537],"selectionMode":[1537,"selection-mode"],"selectedItems":[1040]},[[0,"focus","onFocus"],[0,"focusin","onFocusIn"],[0,"focusout","onFocusOut"],[0,"calciteInternalTreeItemSelect","onInternalTreeItemSelect"]]]]],["p-fc4df904",[[1,"map-picker",{"mapInfos":[16],"_mapListExpanded":[32],"_translations":[32],"_webMapInfo":[32],"setMapByID":[64]},null,{"_webMapInfo":["_webMapInfoWatchHandler"],"mapInfos":["mapInfosWatchHandler"]}],[1,"map-tools",{"basemapConfig":[16],"enableLegend":[4,"enable-legend"],"enableFloorFilter":[4,"enable-floor-filter"],"enableFullscreen":[4,"enable-fullscreen"],"enableSearch":[4,"enable-search"],"enableBasemap":[4,"enable-basemap"],"enableHome":[4,"enable-home"],"enableSingleExpand":[4,"enable-single-expand"],"homeZoomToolsSize":[1,"home-zoom-tools-size"],"layout":[1],"mapView":[16],"mapWidgetsSize":[1,"map-widgets-size"],"position":[1],"searchConfiguration":[16],"stackTools":[4,"stack-tools"],"toolOrder":[16],"_hasFloorInfo":[32],"_translations":[32],"_showTools":[32],"_showBasemapWidget":[32],"_showFloorFilter":[32],"_showFullscreen":[32],"_showLegendWidget":[32],"_showSearchWidget":[32]},null,{"mapView":["mapViewWatchHandler"],"_showBasemapWidget":["_showBasemapWidgetWatchHandler"],"_showFloorFilter":["_showFloorFilterWatchHandler"],"_showFullscreen":["_showFullscreenWatchHandler"],"_showLegendWidget":["_showLegendWidgetWatchHandler"],"_showSearchWidget":["_showSearchWidgetWatchHandler"]}],[1,"basemap-gallery",{"mapView":[16],"basemapConfig":[16],"basemapWidget":[16]},null,{"mapView":["mapViewWatchHandler"]}],[1,"floor-filter",{"enabled":[4],"floorFilterWidget":[16],"mapView":[16]},null,{"mapView":["mapViewWatchHandler"]}],[1,"map-fullscreen",{"mapView":[16],"fullscreenWidget":[16]},null,{"mapView":["mapViewWatchHandler"]}],[1,"map-legend",{"mapView":[16],"legendWidget":[16]},null,{"mapView":["mapViewWatchHandler"]}],[1,"map-search",{"mapView":[16],"popupEnabled":[4,"popup-enabled"],"resultGraphicEnabled":[4,"result-graphic-enabled"],"searchConfiguration":[16],"searchTerm":[1,"search-term"],"searchWidget":[16]},null,{"searchConfiguration":["watchSearchConfigurationHandler"],"mapView":["mapViewWatchHandler"]}]]],["p-e9788173",[[1,"calcite-label",{"alignment":[513],"for":[513],"scale":[513],"layout":[513]},null,{"for":["handleForChange"]}]]],["p-070d486d",[[1,"calcite-combobox-item",{"disabled":[516],"selected":[1540],"active":[516],"ancestors":[1040],"guid":[513],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"textLabel":[513,"text-label"],"value":[8],"filterDisabled":[516,"filter-disabled"],"selectionMode":[513,"selection-mode"],"scale":[1]},null,{"selected":["selectedWatchHandler"]}],[1,"calcite-chip",{"disabled":[516],"appearance":[513],"kind":[513],"closable":[516],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"scale":[513],"label":[1],"value":[8],"closed":[1540],"selectionMode":[1,"selection-mode"],"selected":[1540],"messageOverrides":[1040],"messages":[1040],"interactive":[4],"defaultMessages":[32],"effectiveLocale":[32],"hasText":[32],"hasImage":[32],"setFocus":[64]},[[0,"keydown","keyDownHandler"],[0,"click","clickHandler"]],{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-b3ad3ac1",[[1,"calcite-select",{"disabled":[516],"form":[513],"label":[1],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"name":[513],"required":[516],"scale":[513],"status":[513],"value":[1025],"selectedOption":[1040],"width":[513],"setFocus":[64]},[[0,"calciteInternalOptionChange","handleOptionOrGroupChange"],[0,"calciteInternalOptionGroupChange","handleOptionOrGroupChange"]],{"value":["valueHandler"],"selectedOption":["selectedOptionHandler"]}],[1,"calcite-option",{"disabled":[516],"label":[1025],"selected":[516],"value":[1032]},null,{"disabled":["handlePropChange"],"label":["handlePropChange"],"selected":["handlePropChange"],"value":["handlePropChange"]}]]]]'),e))));
|
6
|
+
import{p as e,b as a}from"./p-7d280d8a.js";export{s as setNonce}from"./p-7d280d8a.js";import{g as t}from"./p-680b89db.js";import"./p-7c2be8cc.js";(()=>{const a=import.meta.url,t={};return""!==a&&(t.resourcesUrl=new URL(".",a).href),e(t)})().then((e=>(t(),a(JSON.parse('[["p-42233edc",[[0,"crowdsource-manager",{"defaultCenter":[1,"default-center"],"defaultFilter":[1,"default-filter"],"defaultGlobalId":[1,"default-global-id"],"defaultLayer":[1,"default-layer"],"defaultLevel":[1,"default-level"],"defaultOid":[1,"default-oid"],"defaultWebmap":[1,"default-webmap"],"enableAutoRefresh":[4,"enable-auto-refresh"],"enableColumnReorder":[4,"enable-column-reorder"],"enableCSV":[4,"enable-c-s-v"],"enableFloorFilter":[4,"enable-floor-filter"],"enableFullscreen":[4,"enable-fullscreen"],"enableInlineEdit":[4,"enable-inline-edit"],"enableLegend":[4,"enable-legend"],"enableSearch":[4,"enable-search"],"enableShare":[4,"enable-share"],"enableHome":[4,"enable-home"],"enableZoom":[4,"enable-zoom"],"enableBasemap":[4,"enable-basemap"],"basemapConfig":[16],"showNewestFirst":[4,"show-newest-first"],"mapInfos":[16],"onlyShowUpdatableLayers":[4,"only-show-updatable-layers"],"searchConfiguration":[16],"shareIncludeEmbed":[4,"share-include-embed"],"shareIncludeSocial":[4,"share-include-social"],"theme":[1],"zoomAndScrollToSelected":[4,"zoom-and-scroll-to-selected"],"_expandPopup":[32],"_hideFooter":[32],"_hideTable":[32],"_isMobile":[32],"_translations":[32],"_layer":[32],"_layoutMode":[32],"_mapInfo":[32],"_mapView":[32],"_panelOpen":[32],"_numSelected":[32],"_tableOnly":[32]},[[8,"featureSelectionChange","featureSelectionChange"],[8,"popupClosed","popupClosed"],[8,"idsFound","idsFound"],[8,"layoutChanged","layoutChanged"],[8,"mapChanged","mapChanged"],[8,"beforeMapChanged","beforeMapChanged"],[8,"layerSelectionChange","layerSelectionChange"]],{"defaultCenter":["defaultCenterWatchHandler"],"defaultFilter":["defaultFilterWatchHandler"],"defaultGlobalId":["defaultGlobalIdWatchHandler"],"defaultOid":["defaultOidWatchHandler"],"defaultLevel":["defaultLevelWatchHandler"],"enableZoom":["enableZoomWatchHandler"]}]]],["p-69a1df0f",[[0,"public-notification",{"addresseeLayerIds":[16],"bufferColor":[8,"buffer-color"],"bufferOutlineColor":[8,"buffer-outline-color"],"customLabelEnabled":[4,"custom-label-enabled"],"defaultBufferDistance":[2,"default-buffer-distance"],"defaultBufferUnit":[1,"default-buffer-unit"],"defaultExportTitle":[1,"default-export-title"],"defaultNumLabelsPerPage":[2,"default-num-labels-per-page"],"featureEffect":[16],"featureHighlightEnabled":[4,"feature-highlight-enabled"],"mapView":[16],"noResultText":[1,"no-result-text"],"searchConfiguration":[1040],"selectionLayerIds":[16],"showRefineSelection":[4,"show-refine-selection"],"showSearchSettings":[4,"show-search-settings"],"sketchLineSymbol":[8,"sketch-line-symbol"],"sketchPointSymbol":[8,"sketch-point-symbol"],"sketchPolygonSymbol":[8,"sketch-polygon-symbol"],"_addMap":[32],"_addResults":[32],"_addTitle":[32],"_downloadActive":[32],"_exportType":[32],"_fetchingData":[32],"_isMobile":[32],"_numDuplicates":[32],"_pageType":[32],"_saveEnabled":[32],"_selectionSets":[32],"_translations":[32]},[[8,"selectionSetsChanged","selectionSetsChanged"]],{"mapView":["mapViewWatchHandler"],"searchConfiguration":["watchSearchConfigurationHandler"],"sketchLineSymbol":["sketchLineSymbolWatchHandler"],"sketchPointSymbol":["sketchPointSymbolWatchHandler"],"sketchPolygonSymbol":["sketchPolygonSymbolWatchHandler"],"_pageType":["pageTypeWatchHandler"]}]]],["p-463712ef",[[0,"solution-configuration",{"authentication":[1040],"serializedAuthentication":[1025,"serialized-authentication"],"solutionItemId":[1537,"solution-item-id"],"showLoading":[1540,"show-loading"],"_currentEditItemId":[32],"_organizationVariables":[32],"_solutionContentsComponent":[32],"_solutionIsLoaded":[32],"_solutionVariables":[32],"_templateHierarchy":[32],"_translations":[32],"_treeOpen":[32],"getSpatialReferenceInfo":[64],"saveSolution":[64],"unloadSolution":[64]},[[8,"solutionItemSelected","_solutionItemSelected"]],{"serializedAuthentication":["serializedAuthenticationWatchHandler"],"solutionItemId":["valueWatchHandler"]}]]],["p-c6af6407",[[0,"crowdsource-reporter",{"description":[1],"isMobile":[4,"is-mobile"],"enableAnonymousAccess":[4,"enable-anonymous-access"],"enableAnonymousComments":[4,"enable-anonymous-comments"],"enableComments":[4,"enable-comments"],"enableLogin":[4,"enable-login"],"enableNewReports":[4,"enable-new-reports"],"layers":[16],"loginTitle":[1,"login-title"],"mapView":[16],"layerId":[1,"layer-id"],"objectId":[1,"object-id"],"center":[1],"level":[1],"reportButtonText":[1,"report-button-text"],"reportsHeader":[1,"reports-header"],"reportSubmittedMessage":[1,"report-submitted-message"],"searchConfiguration":[16],"showComments":[4,"show-comments"],"defaultWebmap":[1,"default-webmap"],"enableSearch":[4,"enable-search"],"enableHome":[4,"enable-home"],"mapInfos":[16],"theme":[1],"enableZoom":[4,"enable-zoom"],"_mapInfo":[32],"_flowItems":[32],"_sidePanelCollapsed":[32],"_translations":[32],"_hasValidLayers":[32],"_selectedLayerName":[32],"_reportSubmitted":[32],"_showSubmitCancelButton":[32],"_featureCreationFailedErrorMsg":[32]},null,{"isMobile":["isMobileWatchHandler"],"mapView":["mapViewWatchHandler"]}]]],["p-e2b0b3fa",[[1,"instant-apps-language-switcher",{"icon":[1],"portalItem":[16],"view":[16],"locales":[16],"defaultLocale":[1,"default-locale"],"messages":[32],"selectedLanguage":[32],"t9nData":[32],"refresh":[64]}]]],["p-5fd1ae46",[[2,"instant-apps-interactive-legend",{"view":[16],"zoomTo":[4,"zoom-to"],"featureCount":[4,"feature-count"],"filterMode":[16],"handles":[32],"reactiveUtils":[32],"legendvm":[32],"widget":[32],"messages":[32]},null,{"handles":["init"],"reactiveUtils":["init"],"view":["init"]}]]],["p-3cb1de38",[[17,"calcite-color-picker",{"allowEmpty":[516,"allow-empty"],"alphaChannel":[4,"alpha-channel"],"channelsDisabled":[4,"channels-disabled"],"color":[1040],"disabled":[516],"format":[513],"hideChannels":[516,"hide-channels"],"hexDisabled":[4,"hex-disabled"],"hideHex":[516,"hide-hex"],"hideSaved":[516,"hide-saved"],"savedDisabled":[516,"saved-disabled"],"scale":[513],"storageId":[513,"storage-id"],"messageOverrides":[1040],"numberingSystem":[513,"numbering-system"],"value":[1025],"messages":[1040],"defaultMessages":[32],"channelMode":[32],"channels":[32],"dimensions":[32],"effectiveLocale":[32],"savedColors":[32],"colorFieldScopeTop":[32],"colorFieldScopeLeft":[32],"hueScopeLeft":[32],"opacityScopeLeft":[32],"scopeOrientation":[32],"setFocus":[64]},[[2,"keydown","handleChannelKeyUpOrDown"],[2,"keyup","handleChannelKeyUpOrDown"]],{"alphaChannel":["handleAlphaChannelChange","handleFormatOrAlphaChannelChange"],"color":["handleColorChange"],"format":["handleFormatOrAlphaChannelChange"],"scale":["handleScaleChange"],"messageOverrides":["onMessagesChange"],"value":["handleValueChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-bb94c414",[[2,"instant-apps-measurement",{"view":[16],"areaUnit":[1,"area-unit"],"linearUnit":[1,"linear-unit"],"coordinateFormat":[1,"coordinate-format"],"activeToolType":[1,"active-tool-type"],"closable":[4],"messages":[32]}]]],["p-7480ac64",[[1,"instant-apps-export",{"output":[1040],"beforeExport":[16],"popoverIcon":[1,"popover-icon"],"extraContent":[16],"extraContentLabel":[1,"extra-content-label"],"headerTitle":[1025,"header-title"],"includeExtraContent":[1028,"include-extra-content"],"includeLegend":[1028,"include-legend"],"includeMap":[1028,"include-map"],"includePopup":[1028,"include-popup"],"mode":[513],"popoverPositioning":[1,"popover-positioning"],"popoverPlacement":[1,"popover-placement"],"scale":[1],"showHeaderTitle":[4,"show-header-title"],"showIncludeLegend":[4,"show-include-legend"],"showIncludeMap":[4,"show-include-map"],"showIncludePopup":[4,"show-include-popup"],"showScaleBar":[4,"show-scale-bar"],"view":[16],"maskBackground":[1,"mask-background"],"maskBorder":[1,"mask-border"],"baseClass":[32],"exportIsLoading":[32],"messages":[32]},null,{"includeMap":["watchIncludeMap"]}]]],["p-431d8154",[[1,"pci-calculator",{"showAddDeduct":[32]}]]],["p-2917dae0",[[1,"instant-apps-keyboard-shortcuts",{"view":[16],"messages":[32]}]]],["p-9f895288",[[17,"calcite-input-time-picker",{"open":[1540],"disabled":[516],"focusTrapDisabled":[516,"focus-trap-disabled"],"form":[513],"readOnly":[516,"read-only"],"messageOverrides":[1040],"messages":[1040],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"name":[1],"numberingSystem":[1,"numbering-system"],"required":[516],"scale":[513],"status":[513],"overlayPositioning":[1,"overlay-positioning"],"placement":[513],"step":[2],"value":[1025],"defaultMessages":[32],"effectiveLocale":[32],"setFocus":[64],"reposition":[64]},null,{"open":["openHandler"],"focusTrapDisabled":["handleFocusTrapDisabled"],"disabled":["handleDisabledAndReadOnlyChange"],"readOnly":["handleDisabledAndReadOnlyChange"],"messageOverrides":["onMessagesChange"],"numberingSystem":["numberingSystemWatcher"],"step":["stepWatcher"],"value":["valueWatcher"],"effectiveLocale":["effectiveLocaleWatcher"]}]]],["p-cacd0307",[[1,"instant-apps-splash",{"localStorageKey":[1,"local-storage-key"],"titleText":[1,"title-text"],"content":[1],"primaryButtonText":[1,"primary-button-text"],"open":[1028],"closeButtonDisabled":[4,"close-button-disabled"],"messages":[32]},null,{"content":["sanitizeContent"]}]]],["p-d36f2db6",[[1,"calcite-table",{"bordered":[516],"caption":[1],"groupSeparator":[516,"group-separator"],"layout":[513],"numbered":[516],"numberingSystem":[513,"numbering-system"],"pageSize":[514,"page-size"],"scale":[513],"selectionMode":[513,"selection-mode"],"zebra":[516],"striped":[516],"selectedItems":[1040],"messages":[1040],"messageOverrides":[1040],"colCount":[32],"pageStartRow":[32],"selectedCount":[32],"readCellContentsToAT":[32],"defaultMessages":[32],"effectiveLocale":[32]},[[0,"calciteTableRowSelect","calciteChipSelectListener"],[0,"calciteInternalTableRowFocusRequest","calciteInternalTableRowFocusEvent"]],{"groupSeparator":["handleNumberedChange"],"numbered":["handleNumberedChange"],"numberingSystem":["handleNumberedChange"],"pageSize":["handleNumberedChange"],"scale":["handleNumberedChange"],"selectionMode":["handleNumberedChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-3cf84035",[[0,"instant-apps-popover",{"popoverTitle":[513,"popover-title"],"subtitle":[513],"content":[513],"imgSrc":[513,"img-src"],"imgAlt":[513,"img-alt"],"mediaSrc":[513,"media-src"],"index":[514],"referenceElement":[513,"reference-element"],"parent":[16],"placement":[1],"refId":[1,"ref-id"],"pagination":[516],"disableAction":[516,"disable-action"],"popoverAction":[16],"messageOverrides":[16],"messages":[32]}]]],["p-8dbf3319",[[1,"layout-manager",{"_translations":[32]}]]],["p-71b65d8a",[[17,"calcite-input-time-zone",{"disabled":[516],"form":[513],"maxItems":[514,"max-items"],"messages":[1040],"messageOverrides":[1040],"mode":[513],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"name":[513],"open":[1540],"overlayPositioning":[513,"overlay-positioning"],"referenceDate":[1,"reference-date"],"required":[516],"scale":[513],"status":[513],"value":[1025],"defaultMessages":[32],"effectiveLocale":[32],"setFocus":[64]},null,{"messageOverrides":["onMessagesChange"],"messages":["handleTimeZoneItemPropsChange"],"mode":["handleTimeZoneItemPropsChange"],"referenceDate":["handleTimeZoneItemPropsChange"],"value":["handleValueChange"],"effectiveLocale":["effectiveLocaleWatcher"]}]]],["p-e813faf8",[[1,"calcite-menu-item",{"active":[516],"breadcrumb":[516],"href":[1],"iconEnd":[513,"icon-end"],"iconFlipRtl":[513,"icon-flip-rtl"],"iconStart":[513,"icon-start"],"isTopLevelItem":[4,"is-top-level-item"],"label":[1],"layout":[513],"messageOverrides":[1040],"messages":[1040],"open":[1540],"rel":[513],"target":[513],"text":[1],"topLevelMenuLayout":[1,"top-level-menu-layout"],"defaultMessages":[32],"effectiveLocale":[32],"hasSubmenu":[32],"submenuItems":[32],"setFocus":[64]},[[8,"click","handleClickOut"],[0,"focusout","handleFocusOut"]],{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-3d324690",[[17,"calcite-split-button",{"appearance":[513],"kind":[513],"disabled":[516],"active":[1540],"dropdownIconType":[513,"dropdown-icon-type"],"dropdownLabel":[513,"dropdown-label"],"loading":[516],"overlayPositioning":[513,"overlay-positioning"],"primaryIconEnd":[513,"primary-icon-end"],"primaryIconFlipRtl":[513,"primary-icon-flip-rtl"],"primaryIconStart":[513,"primary-icon-start"],"primaryLabel":[513,"primary-label"],"primaryText":[513,"primary-text"],"scale":[513],"width":[513],"setFocus":[64]},null,{"disabled":["handleDisabledChange"],"active":["activeHandler"]}]]],["p-2ba240b9",[[2,"instant-apps-interactive-legend-group-legend-element-caption",{"legendvm":[16],"featureCount":[4,"feature-count"],"activeLayerInfo":[16],"messages":[8],"isChild":[4,"is-child"],"expanded":[1028]}]]],["p-96104375",[[1,"instant-apps-scoreboard",{"view":[16],"items":[16],"position":[1],"mode":[1],"itemLimit":[2,"item-limit"],"autoDockEnabled":[4,"auto-dock-enabled"],"geometry":[1040],"state":[32],"messages":[32],"itemIndex":[32],"layers":[32],"layerViews":[32],"isMobile":[32]},null,{"items":["generateUIDs","storeLayers"],"layers":["storeLayerViews"],"geometry":["calculateScoreboardItemValuesFromGeometry"],"layerViews":["calculateScoreboardItemValues"]}]]],["p-d67f3b6e",[[1,"calcite-block-section",{"open":[1540],"status":[513],"text":[1],"toggleDisplay":[513,"toggle-display"],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"setFocus":[64]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-20320bf6",[[1,"calcite-card",{"loading":[516],"selected":[1540],"selectable":[516],"thumbnailPosition":[513,"thumbnail-position"],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-6d93bdfd",[[1,"calcite-fab",{"appearance":[513],"kind":[513],"disabled":[516],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"label":[1],"loading":[516],"scale":[513],"text":[1],"textEnabled":[516,"text-enabled"],"setFocus":[64]}]]],["p-792907e2",[[17,"calcite-inline-editable",{"disabled":[516],"editingEnabled":[1540,"editing-enabled"],"loading":[1540],"controls":[516],"scale":[1537],"afterConfirm":[16],"messages":[1040],"messageOverrides":[1040],"defaultMessages":[32],"effectiveLocale":[32],"setFocus":[64]},[[0,"calciteInternalInputBlur","blurHandler"]],{"disabled":["disabledWatcher"],"editingEnabled":["editingEnabledWatcher"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-47a97db7",[[1,"calcite-navigation",{"label":[1],"navigationAction":[516,"navigation-action"],"logoSlotHasElements":[32],"navigationActionSlotHasElements":[32],"primaryContentCenterSlotHasElements":[32],"primaryContentEndSlotHasElements":[32],"primaryContentStartSlotHasElements":[32],"progressSlotHasElement":[32],"secondarySlotHasElements":[32],"tertiarySlotHasElements":[32],"userSlotHasElements":[32],"setFocus":[64]}]]],["p-701568c2",[[1,"calcite-stepper",{"icon":[516],"layout":[513],"numbered":[516],"scale":[513],"messages":[1040],"numberingSystem":[513,"numbering-system"],"selectedItem":[1040],"messageOverrides":[1040],"defaultMessages":[32],"effectiveLocale":[32],"currentActivePosition":[32],"elWidth":[32],"nextStep":[64],"prevStep":[64],"goToStep":[64],"startStep":[64],"endStep":[64]},[[0,"calciteInternalStepperItemKeyEvent","calciteInternalStepperItemKeyEvent"],[0,"calciteInternalStepperItemRegister","registerItem"],[0,"calciteInternalStepperItemSelect","updateItem"],[0,"calciteInternalUserRequestedStepperItemSelect","handleUserRequestedStepperItemSelect"]],{"icon":["handleItemPropChange"],"layout":["handleItemPropChange"],"numbered":["handleItemPropChange"],"scale":["handleItemPropChange"],"numberingSystem":["numberingSystemChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"],"currentActivePosition":["handlePositionChange"],"elWidth":["handleElWidthChange"]}]]],["p-e61c56fa",[[1,"calcite-table-row",{"disabled":[516],"selected":[516],"cellCount":[1026,"cell-count"],"lastVisibleRow":[4,"last-visible-row"],"rowType":[1,"row-type"],"numbered":[4],"positionSection":[2,"position-section"],"positionSectionLocalized":[1,"position-section-localized"],"positionAll":[2,"position-all"],"readCellContentsToAT":[4,"read-cell-contents-to-a-t"],"scale":[1],"selectionMode":[1,"selection-mode"],"selectedRowCount":[2,"selected-row-count"],"selectedRowCountLocalized":[1,"selected-row-count-localized"],"bodyRowCount":[2,"body-row-count"],"effectiveLocale":[32]},[[4,"calciteInternalTableRowFocusChange","calciteInternalTableRowFocusChangeHandler"]],{"bodyRowCount":["handleCellChanges"],"scale":["handleCellChanges"],"selected":["handleCellChanges"],"selectedRowCount":["handleCellChanges"],"numbered":["handleDelayedCellChanges"],"selectionMode":["handleDelayedCellChanges"]}]]],["p-3e79d77b",[[1,"calcite-tile-select",{"checked":[1540],"description":[513],"disabled":[516],"heading":[513],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"name":[520],"inputEnabled":[516,"input-enabled"],"inputAlignment":[513,"input-alignment"],"type":[513],"value":[8],"width":[513],"focused":[32],"setFocus":[64]},[[0,"calciteCheckboxChange","checkboxChangeHandler"],[0,"calciteInternalCheckboxFocus","checkboxFocusBlurHandler"],[0,"calciteInternalCheckboxBlur","checkboxFocusBlurHandler"],[0,"calciteRadioButtonChange","radioButtonChangeHandler"],[0,"calciteInternalRadioButtonCheckedChange","radioButtonCheckedChangeHandler"],[0,"calciteInternalRadioButtonFocus","radioButtonFocusBlurHandler"],[0,"calciteInternalRadioButtonBlur","radioButtonFocusBlurHandler"],[0,"click","clickHandler"],[1,"pointerenter","pointerEnterHandler"],[1,"pointerleave","pointerLeaveHandler"]],{"checked":["checkedChanged"],"name":["nameChanged"]}]]],["p-52a6d2dc",[[1,"calcite-tip",{"closed":[1540],"closeDisabled":[516,"close-disabled"],"heading":[1],"headingLevel":[514,"heading-level"],"selected":[516],"messages":[1040],"messageOverrides":[1040],"defaultMessages":[32],"effectiveLocale":[32]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-02fa1945",[[1,"calcite-tip-manager",{"closed":[1540],"headingLevel":[514,"heading-level"],"messages":[1040],"messageOverrides":[1040],"selectedIndex":[32],"tips":[32],"total":[32],"direction":[32],"groupTitle":[32],"defaultMessages":[32],"effectiveLocale":[32],"nextTip":[64],"previousTip":[64]},null,{"closed":["closedChangeHandler"],"messageOverrides":["onMessagesChange"],"selectedIndex":["selectedChangeHandler"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-dd45738e",[[1,"instant-apps-landing-page",{"titleText":[1,"title-text"],"subtitleText":[1,"subtitle-text"],"descriptionText":[1,"description-text"],"entryButtonText":[1,"entry-button-text"],"iconImage":[1,"icon-image"],"iconImageScale":[1,"icon-image-scale"],"iconImageAltText":[1,"icon-image-alt-text"],"alignment":[1],"disableTransition":[4,"disable-transition"],"backgroundImageSrc":[1,"background-image-src"],"open":[1028],"entryButtonScale":[1,"entry-button-scale"],"fontFamily":[513,"font-family"]},null,{"open":["emitToggleEvent"]}]]],["p-906ad47a",[[17,"calcite-navigation-user",{"active":[516],"fullName":[1,"full-name"],"label":[1],"textDisabled":[516,"text-disabled"],"thumbnail":[1],"userId":[1,"user-id"],"username":[1],"setFocus":[64]}]]],["p-5b228ed7",[[1,"calcite-rating",{"average":[514],"count":[514],"disabled":[516],"form":[513],"messages":[1040],"messageOverrides":[1040],"name":[513],"readOnly":[516,"read-only"],"required":[516],"scale":[513],"showChip":[516,"show-chip"],"value":[1538],"effectiveLocale":[32],"defaultMessages":[32],"hoverValue":[32],"setFocus":[64]},null,{"messageOverrides":["onMessagesChange"],"value":["handleValueUpdate"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-312c045a",[[1,"calcite-sheet",{"beforeClose":[16],"displayMode":[513,"display-mode"],"escapeDisabled":[516,"escape-disabled"],"heightScale":[513,"height-scale"],"focusTrapDisabled":[516,"focus-trap-disabled"],"label":[1],"open":[1540],"opened":[1540],"outsideCloseDisabled":[516,"outside-close-disabled"],"position":[513],"slottedInShell":[4,"slotted-in-shell"],"widthScale":[513,"width-scale"],"setFocus":[64],"updateFocusTrapElements":[64]},[[8,"keydown","handleEscape"]],{"focusTrapDisabled":["handleFocusTrapDisabled"],"open":["toggleSheet"],"opened":["handleOpenedChange"]}]]],["p-beba1804",[[1,"calcite-tile",{"active":[516],"description":[513],"disabled":[516],"embed":[516],"focused":[516],"heading":[513],"href":[513],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"scale":[513]}]]],["p-e10ca475",[[1,"calcite-accordion-item",{"expanded":[1540],"heading":[1],"description":[1],"iconStart":[513,"icon-start"],"iconEnd":[513,"icon-end"],"iconFlipRtl":[513,"icon-flip-rtl"],"iconPosition":[1,"icon-position"],"iconType":[1,"icon-type"],"accordionParent":[16],"scale":[1]},[[0,"keydown","keyDownHandler"],[16,"calciteInternalAccordionChange","updateActiveItemOnChange"],[4,"calciteInternalAccordionItemsSync","accordionItemSyncHandler"]]]]],["p-033522a7",[[17,"calcite-navigation-logo",{"active":[516],"href":[513],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"label":[1],"rel":[513],"description":[1],"target":[513],"heading":[1],"thumbnail":[1],"setFocus":[64]}]]],["p-d3ba36ce",[[1,"calcite-stepper-item",{"selected":[1540],"complete":[516],"error":[516],"disabled":[516],"heading":[1],"description":[1],"iconFlipRtl":[516,"icon-flip-rtl"],"numberingSystem":[1,"numbering-system"],"icon":[4],"layout":[513],"messages":[1040],"numbered":[4],"scale":[513],"multipleViewMode":[516,"multiple-view-mode"],"messageOverrides":[1040],"defaultMessages":[32],"effectiveLocale":[32],"setFocus":[64]},[[16,"calciteInternalStepperItemChange","updateActiveItemOnChange"]],{"selected":["selectedHandler"],"disabled":["disabledWatcher"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleWatcher"]}]]],["p-84546f35",[[1,"arcgis-login"]]],["p-4b530f7b",[[1,"calcite-accordion",{"appearance":[513],"iconPosition":[513,"icon-position"],"iconType":[513,"icon-type"],"scale":[513],"selectionMode":[513,"selection-mode"]},[[0,"calciteInternalAccordionItemSelect","updateActiveItemOnChange"]],{"iconPosition":["handlePropsChange"],"iconType":["handlePropsChange"],"scale":["handlePropsChange"],"selectionMode":["handlePropsChange"]}]]],["p-449db954",[[1,"calcite-chip-group",{"disabled":[516],"label":[1],"scale":[513],"selectionMode":[513,"selection-mode"],"selectedItems":[1040],"setFocus":[64]},[[0,"calciteInternalChipKeyEvent","calciteInternalChipKeyEventListener"],[0,"calciteChipClose","calciteChipCloseListener"],[0,"calciteChipSelect","calciteChipSelectListener"]],{"selectionMode":["onSelectionModeChange"]}]]],["p-08651773",[[1,"calcite-combobox-item-group",{"afterEmptyGroup":[516,"after-empty-group"],"ancestors":[1040],"label":[1],"scale":[1]}]]],["p-3fbfe26a",[[1,"calcite-list-item-group",{"disabled":[516],"filterHidden":[516,"filter-hidden"],"heading":[513],"visualLevel":[32]}]]],["p-4ce1ffd8",[[1,"calcite-meter",{"appearance":[513],"disabled":[516],"fillType":[513,"fill-type"],"form":[513],"groupSeparator":[516,"group-separator"],"high":[1538],"label":[1],"low":[1538],"max":[514],"min":[514],"name":[513],"numberingSystem":[1,"numbering-system"],"rangeLabels":[516,"range-labels"],"rangeLabelType":[513,"range-label-type"],"scale":[513],"unitLabel":[1,"unit-label"],"value":[1026],"valueLabel":[516,"value-label"],"valueLabelType":[513,"value-label-type"],"currentPercent":[32],"effectiveLocale":[32],"highActive":[32],"highPercent":[32],"lowActive":[32],"lowPercent":[32]},null,{"min":["handleRangeChange"],"max":["handleRangeChange"],"low":["handleRangeChange"],"high":["handleRangeChange"],"value":["handleRangeChange"],"rangeLabels":["handleLabelChange"],"rangeLabelType":["handleLabelChange"],"unitLabel":["handleLabelChange"],"valueLabel":["handleLabelChange"],"valueLabelType":["handleLabelChange"]}]]],["p-a55b766f",[[1,"calcite-option-group",{"disabled":[516],"label":[1]},null,{"disabled":["handlePropChange"],"label":["handlePropChange"]}]]],["p-a17d0d80",[[1,"calcite-pick-list",{"disabled":[516],"filteredItems":[1040],"filteredData":[1040],"filterEnabled":[516,"filter-enabled"],"filterPlaceholder":[513,"filter-placeholder"],"filterText":[1537,"filter-text"],"headingLevel":[514,"heading-level"],"loading":[516],"multiple":[516],"selectionFollowsFocus":[516,"selection-follows-focus"],"selectedValues":[32],"dataForFilter":[32],"getSelectedItems":[64],"setFocus":[64]},[[0,"calciteListItemRemove","calciteListItemRemoveHandler"],[0,"calciteListItemChange","calciteListItemChangeHandler"],[0,"calciteInternalListItemPropsChange","calciteInternalListItemPropsChangeHandler"],[0,"calciteInternalListItemValueChange","calciteInternalListItemValueChangeHandler"],[0,"focusout","calciteListFocusOutHandler"]]]]],["p-6332fd4e",[[1,"calcite-pick-list-group",{"groupTitle":[513,"group-title"],"headingLevel":[514,"heading-level"]}]]],["p-23de1b01",[[1,"calcite-radio-button-group",{"disabled":[516],"layout":[513],"name":[513],"required":[516],"selectedItem":[1040],"scale":[513],"status":[513],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"radioButtons":[32],"setFocus":[64]},[[0,"calciteRadioButtonChange","radioButtonChangeHandler"]],{"hidden":["handleHiddenChange"],"disabled":["onDisabledChange"],"layout":["onLayoutChange"],"scale":["onScaleChange"]}]]],["p-1c8cdfeb",[[1,"calcite-shell-center-row",{"detached":[516],"heightScale":[513,"height-scale"],"position":[513]}]]],["p-30480847",[[1,"calcite-sortable-list",{"canPull":[16],"canPut":[16],"dragSelector":[513,"drag-selector"],"group":[513],"handleSelector":[513,"handle-selector"],"layout":[513],"disabled":[516],"loading":[516]},[[0,"calciteHandleNudge","calciteHandleNudgeNextHandler"]]]]],["p-7c0fe27e",[[1,"calcite-text-area",{"autofocus":[516],"columns":[514],"disabled":[516],"form":[513],"groupSeparator":[516,"group-separator"],"label":[1],"maxLength":[514,"max-length"],"messages":[1040],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"name":[513],"numberingSystem":[1,"numbering-system"],"placeholder":[1],"readOnly":[516,"read-only"],"required":[516],"resize":[513],"rows":[514],"scale":[513],"status":[513],"value":[1025],"wrap":[513],"messageOverrides":[1040],"defaultMessages":[32],"endSlotHasElements":[32],"startSlotHasElements":[32],"effectiveLocale":[32],"setFocus":[64],"selectText":[64]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-f8a6785d",[[1,"calcite-tile-select-group",{"disabled":[516],"layout":[513]}]]],["p-2b6679d2",[[1,"calcite-tip-group",{"groupTitle":[1,"group-title"]}]]],["p-3d7d78f3",[[1,"feature-comments"]]],["p-63572270",[[1,"feature-form-flow-item"]]],["p-08cca1ba",[[1,"features-flow-item"]]],["p-88cd4a24",[[1,"instant-apps-control-panel",{"components":[16],"view":[16]}]]],["p-e9700988",[[4,"instant-apps-popovers",{"inTour":[1540,"in-tour"],"currentId":[1537,"current-id"],"instantAppsPopovers":[16],"beforeOpen":[16],"open":[64],"close":[64],"beginTour":[64],"endTour":[64]}]]],["p-905f7e81",[[1,"list-flow-item"]]],["p-212c00e9",[[1,"location-flow-item"]]],["p-2a0f52c5",[[1,"refine-results-flow-item"]]],["p-9ae4f911",[[1,"share-item"]]],["p-91c49d95",[[0,"store-manager",{"value":[1537],"templates":[1040],"authentication":[1040]}]]],["p-cc859d2b",[[1,"calcite-icon",{"icon":[513],"flipRtl":[516,"flip-rtl"],"scale":[513],"textLabel":[1,"text-label"],"pathData":[32],"visible":[32]},null,{"icon":["loadIconPathData"],"scale":["loadIconPathData"]}]]],["p-2f017ad2",[[6,"instant-apps-language-translator",{"portalItem":[16],"appSettings":[16],"locales":[16],"open":[1028],"userLocaleInputOnChangeCallback":[16],"translatedLocaleInputOnChangeCallback":[16],"saving":[32],"messages":[32],"isCollapse":[32],"getTranslationData":[64],"setTranslationData":[64],"getPortalItemResource":[64],"batchWriteToPortalItemResource":[64]},[[8,"translatorItemDataUpdated","handleT9nItemUpdate"]],{"locales":["handleLocaleChange"],"appSettings":["handleAppSettings"]}]]],["p-11c85508",[[2,"instant-apps-interactive-legend-classic",{"legendvm":[16],"zoomTo":[4,"zoom-to"],"featureCount":[4,"feature-count"],"filterMode":[16],"messages":[8],"isLoading":[32],"intLegendId":[32]},null,{"filterMode":["handleFilterModeChange"]}]]],["p-ef1cf76c",[[1,"deduct-calculator"]]],["p-044cd52c",[[1,"instant-apps-header",{"titleText":[1,"title-text"],"titleTextLink":[1,"title-text-link"],"backgroundColor":[1,"background-color"],"textColor":[1,"text-color"],"logoImage":[1,"logo-image"],"logoScale":[1537,"logo-scale"],"logoImageAltText":[1,"logo-image-alt-text"],"logoLink":[1,"logo-link"],"infoButton":[1540,"info-button"],"infoIsOpen":[516,"info-is-open"],"infoTitleText":[1,"info-title-text"],"customHeaderHtml":[1025,"custom-header-html"],"headerAlignment":[1025,"header-alignment"],"customHeaderCss":[1025,"custom-header-css"],"fontFamily":[513,"font-family"],"mobileWidthBreakpoint":[2,"mobile-width-breakpoint"],"dir":[32],"initialScale":[32]},null,{"customHeaderHtml":["sanitizeCustomHeaderHtml"]}]]],["p-b7337228",[[1,"calcite-avatar",{"scale":[513],"thumbnail":[513],"fullName":[513,"full-name"],"username":[513],"userId":[513,"user-id"],"label":[1],"thumbnailFailedToLoad":[32]}]]],["p-4d09aa4c",[[1,"calcite-link",{"disabled":[516],"download":[520],"href":[513],"iconEnd":[513,"icon-end"],"iconFlipRtl":[513,"icon-flip-rtl"],"iconStart":[513,"icon-start"],"rel":[1],"target":[1],"setFocus":[64]},[[0,"click","clickHandler"]]]]],["p-26461392",[[17,"calcite-time-picker",{"scale":[513],"step":[514],"numberingSystem":[1,"numbering-system"],"value":[1025],"messages":[1040],"messageOverrides":[1040],"activeEl":[32],"effectiveLocale":[32],"fractionalSecond":[32],"hour":[32],"hourCycle":[32],"localizedDecimalSeparator":[32],"localizedHour":[32],"localizedHourSuffix":[32],"localizedMeridiem":[32],"localizedFractionalSecond":[32],"localizedMinute":[32],"localizedMinuteSuffix":[32],"localizedSecond":[32],"localizedSecondSuffix":[32],"meridiem":[32],"minute":[32],"second":[32],"showFractionalSecond":[32],"showSecond":[32],"defaultMessages":[32],"setFocus":[64]},[[0,"blur","blurHandler"],[0,"focus","hostFocusHandler"],[0,"keydown","keyDownHandler"],[1,"pointerdown","pointerDownHandler"]],{"step":["stepChange"],"value":["valueWatcher"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleWatcher"]}]]],["p-0c6d2898",[[17,"calcite-menu",{"label":[1],"layout":[513],"messageOverrides":[1040],"messages":[1040],"defaultMessages":[32],"effectiveLocale":[32],"setFocus":[64]},[[0,"calciteInternalMenuItemKeyEvent","calciteInternalNavMenuItemKeyEvent"]],{"role":["handleGlobalAttributesChanged"],"layout":["handleLayoutChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-0d641d14",[[1,"calcite-radio-button",{"checked":[1540],"disabled":[516],"focused":[1540],"form":[513],"guid":[1537],"hovered":[1540],"label":[1],"name":[513],"required":[516],"scale":[513],"value":[1032],"setFocus":[64],"emitCheckedChange":[64]},[[1,"pointerenter","pointerEnterHandler"],[1,"pointerleave","pointerLeaveHandler"]],{"hidden":["handleHiddenChange"],"checked":["checkedChanged"],"disabled":["disabledChanged"],"name":["nameChanged"]}]]],["p-7cfce9ee",[[17,"calcite-action-pad",{"actionsEndGroupLabel":[1,"actions-end-group-label"],"expandDisabled":[516,"expand-disabled"],"expanded":[1540],"layout":[513],"position":[513],"scale":[513],"messages":[1040],"messageOverrides":[1040],"overlayPositioning":[513,"overlay-positioning"],"expandTooltip":[32],"effectiveLocale":[32],"defaultMessages":[32],"setFocus":[64]},null,{"expanded":["expandedHandler"],"layout":["layoutHandler"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[2,"instant-apps-measurement-tool",{"view":[16],"measureConfiguration":[16],"activeTool":[1,"active-tool"]},null,{"activeTool":["_updateToolType"]}]]],["p-547b4dba",[[0,"spatial-ref",{"defaultWkid":[1538,"default-wkid"],"disabled":[1540],"value":[1537],"_cachedValue":[32],"_spatialRef":[32],"_srSearchText":[32],"_translations":[32],"createSpatialRefDisplay":[64],"getSpatialRef":[64],"wkidToDisplay":[64]},null,{"value":["valueChanged"]}]]],["p-71964176",[[1,"calcite-input-number",{"alignment":[513],"autofocus":[516],"clearable":[516],"disabled":[516],"form":[513],"groupSeparator":[516,"group-separator"],"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"integer":[4],"label":[1],"loading":[516],"numberingSystem":[513,"numbering-system"],"localeFormat":[4,"locale-format"],"max":[514],"min":[514],"maxLength":[514,"max-length"],"minLength":[514,"min-length"],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"name":[513],"numberButtonType":[513,"number-button-type"],"placeholder":[1],"prefixText":[1,"prefix-text"],"readOnly":[516,"read-only"],"required":[516],"scale":[513],"status":[513],"step":[520],"autocomplete":[1],"inputMode":[1,"input-mode"],"enterKeyHint":[1,"enter-key-hint"],"suffixText":[1,"suffix-text"],"editingEnabled":[1540,"editing-enabled"],"value":[1025],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"displayedValue":[32],"slottedActionElDisabledInternally":[32],"setFocus":[64],"selectText":[64]},null,{"disabled":["disabledWatcher"],"max":["maxWatcher"],"min":["minWatcher"],"messageOverrides":["onMessagesChange"],"value":["valueWatcher"],"icon":["updateRequestedIcon"],"effectiveLocale":["effectiveLocaleWatcher"]}]]],["p-c8ca9b8c",[[1,"calcite-color-picker-hex-input",{"allowEmpty":[4,"allow-empty"],"alphaChannel":[4,"alpha-channel"],"hexLabel":[1,"hex-label"],"messages":[16],"numberingSystem":[1,"numbering-system"],"scale":[513],"value":[1537],"internalColor":[32],"setFocus":[64]},null,{"value":["handleValueChange"]}],[1,"calcite-color-picker-swatch",{"active":[516],"color":[1],"scale":[513]},null,{"color":["handleColorChange"]}]]],["p-1ee6220e",[[1,"calcite-table-header",{"alignment":[513],"colSpan":[514,"col-span"],"description":[513],"heading":[513],"rowSpan":[514,"row-span"],"lastCell":[4,"last-cell"],"numberCell":[4,"number-cell"],"parentRowIsSelected":[4,"parent-row-is-selected"],"parentRowPosition":[2,"parent-row-position"],"parentRowType":[1,"parent-row-type"],"positionInRow":[2,"position-in-row"],"scale":[1],"selectedRowCount":[2,"selected-row-count"],"selectedRowCountLocalized":[1,"selected-row-count-localized"],"selectionCell":[4,"selection-cell"],"selectionMode":[1,"selection-mode"],"bodyRowCount":[2,"body-row-count"],"messages":[1040],"messageOverrides":[1040],"defaultMessages":[32],"screenReaderText":[32],"effectiveLocale":[32],"setFocus":[64]},null,{"selectedRowCount":["onSelectedChange"],"selectedRowCountLocalized":["onSelectedChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[1,"calcite-table-cell",{"alignment":[513],"colSpan":[514,"col-span"],"rowSpan":[514,"row-span"],"disabled":[4],"lastCell":[4,"last-cell"],"numberCell":[4,"number-cell"],"parentRowIsSelected":[4,"parent-row-is-selected"],"parentRowPositionLocalized":[1,"parent-row-position-localized"],"parentRowType":[1,"parent-row-type"],"positionInRow":[2,"position-in-row"],"readCellContentsToAT":[4,"read-cell-contents-to-a-t"],"scale":[1],"selectionCell":[4,"selection-cell"],"messages":[1040],"messageOverrides":[1040],"contentsText":[32],"defaultMessages":[32],"focused":[32],"selectionText":[32],"effectiveLocale":[32],"setFocus":[64]},null,{"parentRowIsSelected":["onSelectedChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-e29a378e",[[0,"solution-item-icon",{"isPortal":[4,"is-portal"],"type":[1],"typeKeywords":[16]}]]],["p-efec6ba5",[[1,"calcite-input-text",{"alignment":[513],"autofocus":[516],"clearable":[516],"disabled":[516],"form":[513],"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"label":[1],"loading":[516],"maxLength":[514,"max-length"],"minLength":[514,"min-length"],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"name":[513],"placeholder":[1],"prefixText":[1,"prefix-text"],"readOnly":[516,"read-only"],"required":[516],"scale":[513],"status":[513],"autocomplete":[1],"inputMode":[1,"input-mode"],"enterKeyHint":[1,"enter-key-hint"],"pattern":[1],"suffixText":[1,"suffix-text"],"editingEnabled":[1540,"editing-enabled"],"value":[1025],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"slottedActionElDisabledInternally":[32],"setFocus":[64],"selectText":[64]},null,{"disabled":["disabledWatcher"],"messageOverrides":["onMessagesChange"],"value":["valueWatcher"],"icon":["updateRequestedIcon"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-dd67e38a",[[1,"calcite-switch",{"disabled":[516],"form":[513],"label":[1],"name":[513],"scale":[513],"checked":[1540],"value":[8],"setFocus":[64]}]]],["p-c51f2880",[[1,"calcite-action",{"active":[516],"alignment":[513],"appearance":[513],"compact":[516],"disabled":[516],"icon":[1],"iconFlipRtl":[516,"icon-flip-rtl"],"indicator":[516],"label":[1],"loading":[516],"scale":[513],"text":[1],"textEnabled":[516,"text-enabled"],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"setFocus":[64]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[1,"calcite-loader",{"inline":[516],"label":[1],"scale":[513],"type":[513],"value":[2],"text":[1]}]]],["p-d9826b1d",[[1,"calcite-modal",{"open":[1540],"opened":[1540],"beforeClose":[16],"closeButtonDisabled":[516,"close-button-disabled"],"focusTrapDisabled":[516,"focus-trap-disabled"],"outsideCloseDisabled":[516,"outside-close-disabled"],"docked":[516],"escapeDisabled":[516,"escape-disabled"],"scale":[513],"widthScale":[513,"width-scale"],"fullscreen":[516],"kind":[513],"messages":[1040],"messageOverrides":[1040],"slottedInShell":[1028,"slotted-in-shell"],"cssWidth":[32],"cssHeight":[32],"hasFooter":[32],"hasContentTop":[32],"hasContentBottom":[32],"effectiveLocale":[32],"defaultMessages":[32],"setFocus":[64],"updateFocusTrapElements":[64],"scrollContent":[64]},[[8,"keydown","handleEscape"]],{"focusTrapDisabled":["handleFocusTrapDisabled"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"],"open":["toggleModal"],"opened":["handleOpenedChange"]}]]],["p-e14e6c12",[[17,"calcite-action-group",{"expanded":[516],"label":[1],"layout":[513],"columns":[514],"menuOpen":[1540,"menu-open"],"overlayPositioning":[513,"overlay-positioning"],"scale":[513],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"hasMenuActions":[32],"setFocus":[64]},null,{"expanded":["expandedHandler"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-04c37d69",[[17,"calcite-slider",{"disabled":[516],"form":[513],"groupSeparator":[516,"group-separator"],"hasHistogram":[1540,"has-histogram"],"histogram":[16],"histogramStops":[16],"labelHandles":[516,"label-handles"],"labelTicks":[516,"label-ticks"],"max":[514],"maxLabel":[1,"max-label"],"maxValue":[1026,"max-value"],"min":[514],"minLabel":[1,"min-label"],"minValue":[1026,"min-value"],"mirrored":[516],"name":[513],"numberingSystem":[1,"numbering-system"],"pageStep":[514,"page-step"],"precise":[516],"required":[516],"snap":[516],"step":[514],"ticks":[514],"value":[1538],"scale":[513],"effectiveLocale":[32],"minMaxValueRange":[32],"minValueDragRange":[32],"maxValueDragRange":[32],"tickValues":[32],"setFocus":[64]},[[0,"keydown","keyDownHandler"],[1,"pointerdown","pointerDownHandler"]],{"histogram":["histogramWatcher"],"ticks":["ticksWatcher"],"value":["valueHandler"],"minValue":["minMaxValueHandler"],"maxValue":["minMaxValueHandler"]}],[1,"calcite-graph",{"data":[16],"colorStops":[16],"highlightMin":[2,"highlight-min"],"highlightMax":[2,"highlight-max"],"min":[514],"max":[514]}]]],["p-fdedce1c",[[1,"calcite-notice",{"open":[1540],"kind":[513],"closable":[516],"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"scale":[513],"width":[513],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"setFocus":[64]},null,{"open":["openHandler"],"messageOverrides":["onMessagesChange"],"icon":["updateRequestedIcon"],"kind":["updateRequestedIcon"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-6068c1cf",[[1,"calcite-tooltip",{"closeOnClick":[516,"close-on-click"],"label":[1],"offsetDistance":[514,"offset-distance"],"offsetSkidding":[514,"offset-skidding"],"open":[516],"overlayPositioning":[513,"overlay-positioning"],"placement":[513],"referenceElement":[1,"reference-element"],"effectiveReferenceElement":[32],"floatingLayout":[32],"reposition":[64]},null,{"offsetDistance":["offsetDistanceOffsetHandler"],"offsetSkidding":["offsetSkiddingHandler"],"open":["openHandler"],"overlayPositioning":["overlayPositioningHandler"],"placement":["placementHandler"],"referenceElement":["referenceElementHandler"]}]]],["p-0b92e4b1",[[1,"calcite-scrim",{"loading":[516],"messages":[1040],"messageOverrides":[1040],"loaderScale":[32],"defaultMessages":[32],"effectiveLocale":[32],"hasContent":[32]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-7878534f",[[1,"calcite-button",{"alignment":[513],"appearance":[513],"label":[1],"kind":[513],"disabled":[516],"form":[513],"href":[513],"iconEnd":[513,"icon-end"],"iconFlipRtl":[513,"icon-flip-rtl"],"iconStart":[513,"icon-start"],"loading":[516],"name":[513],"rel":[513],"round":[516],"scale":[513],"splitChild":[520,"split-child"],"target":[513],"type":[513],"width":[513],"messages":[1040],"messageOverrides":[1040],"hasContent":[32],"hasLoader":[32],"effectiveLocale":[32],"defaultMessages":[32],"tooltipText":[32],"setFocus":[64]},null,{"aria-expanded":["handleGlobalAttributesChanged"],"loading":["loadingChanged"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-32adb2cc",[[0,"map-layer-picker",{"appearance":[1],"defaultLayerId":[1,"default-layer-id"],"display":[1],"enabledLayerIds":[16],"enabledTableIds":[16],"height":[2],"isMobile":[4,"is-mobile"],"mapView":[16],"onlyShowUpdatableLayers":[4,"only-show-updatable-layers"],"placeholderIcon":[1,"placeholder-icon"],"selectedIds":[1040],"scale":[1],"showTables":[4,"show-tables"],"showSingleLayerAsLabel":[4,"show-single-layer-as-label"],"type":[1],"_hasMultipleLayers":[32],"_hasValidLayers":[32],"_isDropdownOpen":[32],"ids":[32],"selectedName":[32],"_translations":[32]},null,{"mapView":["mapViewWatchHandler"]}],[17,"calcite-dropdown-group",{"groupTitle":[513,"group-title"],"scale":[1],"selectionMode":[513,"selection-mode"]},[[0,"calciteInternalDropdownItemSelect","updateActiveItemOnChange"]],{"selectionMode":["handlePropsChange"]}],[1,"calcite-dropdown-item",{"disabled":[516],"href":[513],"iconFlipRtl":[513,"icon-flip-rtl"],"iconStart":[513,"icon-start"],"iconEnd":[513,"icon-end"],"label":[1],"rel":[513],"selected":[1540],"target":[513],"selectionMode":[1,"selection-mode"],"scale":[1],"setFocus":[64]},[[0,"click","onClick"],[0,"keydown","keyDownHandler"],[16,"calciteInternalDropdownItemChange","updateActiveItemOnChange"]]],[1,"calcite-combobox",{"clearDisabled":[516,"clear-disabled"],"selectionDisplay":[513,"selection-display"],"open":[1540],"disabled":[516],"form":[513],"label":[1],"placeholder":[1],"placeholderIcon":[513,"placeholder-icon"],"placeholderIconFlipRtl":[516,"placeholder-icon-flip-rtl"],"maxItems":[514,"max-items"],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"name":[513],"allowCustomValues":[516,"allow-custom-values"],"overlayPositioning":[513,"overlay-positioning"],"required":[516],"selectionMode":[513,"selection-mode"],"scale":[513],"status":[513],"value":[1025],"flipPlacements":[16],"messages":[1040],"messageOverrides":[1040],"selectedItems":[1040],"filteredItems":[1040],"items":[32],"groupItems":[32],"needsIcon":[32],"activeItemIndex":[32],"activeChipIndex":[32],"activeDescendant":[32],"compactSelectionDisplay":[32],"selectedHiddenChipsCount":[32],"selectedVisibleChipsCount":[32],"text":[32],"effectiveLocale":[32],"defaultMessages":[32],"reposition":[64],"setFocus":[64]},[[5,"pointerdown","documentClickHandler"],[0,"calciteComboboxItemChange","calciteComboboxItemChangeHandler"]],{"open":["openHandler"],"disabled":["handleDisabledChange"],"maxItems":["maxItemsHandler"],"overlayPositioning":["overlayPositioningHandler"],"selectionMode":["handlePropsChange"],"scale":["handlePropsChange"],"value":["valueHandler"],"messageOverrides":["onMessagesChange"],"flipPlacements":["flipPlacementsHandler"],"selectedItems":["selectedItemsHandler"],"text":["textHandler"],"effectiveLocale":["effectiveLocaleChange"]}],[17,"calcite-dropdown",{"open":[1540],"closeOnSelectDisabled":[516,"close-on-select-disabled"],"disabled":[516],"flipPlacements":[16],"maxItems":[514,"max-items"],"overlayPositioning":[513,"overlay-positioning"],"placement":[513],"selectedItems":[1040],"type":[513],"widthScale":[513,"width-scale"],"scale":[513],"setFocus":[64],"reposition":[64]},[[9,"pointerdown","closeCalciteDropdownOnClick"],[0,"calciteInternalDropdownCloseRequest","closeCalciteDropdownOnEvent"],[8,"calciteDropdownOpen","closeCalciteDropdownOnOpenEvent"],[1,"pointerenter","pointerEnterHandler"],[1,"pointerleave","pointerLeaveHandler"],[0,"calciteInternalDropdownItemKeyEvent","calciteInternalDropdownItemKeyEvent"],[0,"calciteInternalDropdownItemSelect","handleItemSelect"]],{"open":["openHandler"],"disabled":["handleDisabledChange"],"flipPlacements":["flipPlacementsHandler"],"maxItems":["maxItemsHandler"],"overlayPositioning":["overlayPositioningHandler"],"placement":["placementHandler"],"scale":["handlePropsChange"]}]]],["p-57087d57",[[1,"instant-apps-filter-list",{"layerExpressions":[1040],"autoUpdateUrl":[4,"auto-update-url"],"closeBtn":[4,"close-btn"],"closeBtnOnClick":[16],"closeBtnText":[1,"close-btn-text"],"openFilters":[4,"open-filters"],"extentSelector":[4,"extent-selector"],"extentSelectorConfig":[16],"urlParams":[1040],"view":[16],"zoomBtn":[4,"zoom-btn"],"loading":[32],"filterLayerExpressions":[32],"messages":[32],"baseClass":[32],"disabled":[32],"hasLayerExpression":[32],"initDefExpressions":[32],"initMapImageExpressions":[32],"initPointCloudFilters":[32]},null,{"view":["watchViewHandler"],"layerExpressions":["watchLayerExpressions"]}],[17,"calcite-input-date-picker",{"disabled":[516],"focusTrapDisabled":[516,"focus-trap-disabled"],"form":[513],"readOnly":[516,"read-only"],"value":[1025],"flipPlacements":[16],"headingLevel":[514,"heading-level"],"valueAsDate":[1040],"messageOverrides":[1040],"messages":[1040],"minAsDate":[1040],"maxAsDate":[1040],"min":[1],"max":[1],"open":[1540],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"name":[513],"numberingSystem":[513,"numbering-system"],"scale":[513],"status":[513],"placement":[513],"range":[516],"required":[516],"overlayPositioning":[513,"overlay-positioning"],"proximitySelectionDisabled":[4,"proximity-selection-disabled"],"layout":[513],"datePickerActiveDate":[32],"defaultMessages":[32],"effectiveLocale":[32],"focusedInput":[32],"localeData":[32],"setFocus":[64],"reposition":[64]},[[0,"calciteDaySelect","calciteDaySelectHandler"]],{"focusTrapDisabled":["handleFocusTrapDisabled"],"disabled":["handleDisabledAndReadOnlyChange"],"readOnly":["handleDisabledAndReadOnlyChange"],"value":["valueWatcher"],"valueAsDate":["valueAsDateWatcher"],"flipPlacements":["flipPlacementsHandler"],"messageOverrides":["onMessagesChange"],"min":["onMinChanged"],"max":["onMaxChanged"],"open":["openHandler"],"overlayPositioning":["overlayPositioningHandler"],"layout":["setReferenceEl"],"focusedInput":["setReferenceEl"],"effectiveLocale":["loadLocaleData"]}],[1,"instant-apps-social-share",{"mode":[513],"shareUrl":[1025,"share-url"],"autoUpdateShareUrl":[1028,"auto-update-share-url"],"shareText":[513,"share-text"],"embed":[516],"shareButtonColor":[513,"share-button-color"],"shareButtonType":[513,"share-button-type"],"shareButtonScale":[513,"share-button-scale"],"iframeInnerText":[513,"iframe-inner-text"],"popoverButtonIconScale":[513,"popover-button-icon-scale"],"view":[16],"displayTipText":[516,"display-tip-text"],"shortenShareUrl":[516,"shorten-share-url"],"socialMedia":[516,"social-media"],"shareIconsLayout":[513,"share-icons-layout"],"scale":[513],"successMessage":[513,"success-message"],"defaultUrlParams":[16],"inlineSuccessPopoverPlacement":[513,"inline-success-popover-placement"],"messages":[32],"opened":[32],"copied":[32],"inlineCopyLinkOpened":[32],"inlineCopyEmbedOpened":[32],"embedWidth":[32],"embedHeight":[32]}]]],["p-aecf92f4",[[0,"layer-table",{"defaultFilter":[16],"defaultGlobalId":[16],"defaultLayerId":[1,"default-layer-id"],"defaultOid":[16],"enableAutoRefresh":[4,"enable-auto-refresh"],"enableColumnReorder":[4,"enable-column-reorder"],"enableCSV":[4,"enable-c-s-v"],"enableInlineEdit":[4,"enable-inline-edit"],"enableShare":[4,"enable-share"],"isMobile":[4,"is-mobile"],"mapInfo":[16],"mapView":[16],"onlyShowUpdatableLayers":[4,"only-show-updatable-layers"],"selectedIds":[16],"shareIncludeEmbed":[4,"share-include-embed"],"shareIncludeSocial":[4,"share-include-social"],"showNewestFirst":[4,"show-newest-first"],"zoomAndScrollToSelected":[4,"zoom-and-scroll-to-selected"],"_controlsThatFit":[32],"_csvExporting":[32],"_fetchingData":[32],"_filterActive":[32],"_filterOpen":[32],"_layer":[32],"_selectAllActive":[32],"_showHideOpen":[32],"_showOnlySelected":[32],"_sortActive":[32],"_translations":[32]},[[8,"selectionChanged","selectionChanged"],[8,"editsComplete","editsComplete"],[8,"levelChanged","levelChanged"],[8,"noLayersFound","noLayersFound"]],{"enableCSV":["enableCSVWatchHandler"],"enableInlineEdit":["enableInlineEditWatchHandler"],"_controlsThatFit":["_controlsThatFitWatchHandler"],"isMobile":["isMobileWatchHandler"],"mapInfo":["mapInfoWatchHandler"],"mapView":["mapViewWatchHandler"],"_layer":["_layerWatchHandler"],"selectedIds":["selectedIdsWatchHandler"],"_sortActive":["_sortActiveWatchHandler"]}],[0,"map-card",{"defaultWebmapId":[1,"default-webmap-id"],"enableHome":[4,"enable-home"],"enableLegend":[4,"enable-legend"],"enableFloorFilter":[4,"enable-floor-filter"],"enableFullscreen":[4,"enable-fullscreen"],"enableSingleExpand":[4,"enable-single-expand"],"enableSearch":[4,"enable-search"],"enableBasemap":[4,"enable-basemap"],"basemapConfig":[16],"hidden":[4],"homeZoomIndex":[2,"home-zoom-index"],"homeZoomPosition":[1,"home-zoom-position"],"homeZoomToolsSize":[1,"home-zoom-tools-size"],"mapInfos":[16],"mapWidgetsIndex":[2,"map-widgets-index"],"mapWidgetsPosition":[1,"map-widgets-position"],"mapWidgetsSize":[1,"map-widgets-size"],"mapView":[16],"stackTools":[4,"stack-tools"],"theme":[1],"toolOrder":[16],"_searchConfiguration":[32],"_webMapInfo":[32]},[[8,"mapInfoChange","mapInfoChange"]],{"enableHome":["enableHomeWatchHandler"]}],[0,"card-manager",{"isMobile":[4,"is-mobile"],"layer":[16],"mapView":[16],"zoomAndScrollToSelected":[4,"zoom-and-scroll-to-selected"],"_cardLoading":[32],"_graphics":[32],"_translations":[32]},[[8,"featureSelectionChange","featureSelectionChange"],[8,"layerSelectionChange","layerSelectionChange"]]]]],["p-2283ae14",[[0,"refine-selection",{"addresseeLayer":[16],"enabledLayerIds":[16],"mapView":[16],"selectionSets":[1040],"sketchLineSymbol":[16],"sketchPointSymbol":[16],"sketchPolygonSymbol":[16],"_translations":[32],"_selectionMode":[32],"_refineLayer":[32]}],[0,"map-select-tools",{"bufferColor":[8,"buffer-color"],"bufferOutlineColor":[8,"buffer-outline-color"],"customLabelEnabled":[4,"custom-label-enabled"],"enabledLayerIds":[16],"defaultBufferDistance":[2,"default-buffer-distance"],"defaultBufferUnit":[1,"default-buffer-unit"],"geometries":[16],"isUpdate":[4,"is-update"],"layerViews":[16],"mapView":[16],"noResultText":[1,"no-result-text"],"searchConfiguration":[1040],"selectionSet":[16],"selectionLayerIds":[16],"selectLayerView":[16],"sketchLineSymbol":[16],"sketchPointSymbol":[16],"sketchPolygonSymbol":[16],"_numSelected":[32],"_searchDistanceEnabled":[32],"_searchTerm":[32],"_selectionLoading":[32],"_translations":[32],"_useLayerFeaturesEnabled":[32],"clearSelection":[64],"getSelection":[64]},[[8,"searchConfigurationChange","searchConfigurationChangeChanged"],[8,"distanceChanged","distanceChanged"],[8,"unitChanged","unitChanged"]],{"geometries":["watchGeometriesHandler"],"searchConfiguration":["watchSearchConfigurationHandler"]}],[1,"pdf-download",{"defaultNumLabelsPerPage":[2,"default-num-labels-per-page"],"disabled":[4],"_translations":[32],"downloadCSV":[64],"downloadPDF":[64]}]]],["p-565e0f0d",[[1,"calcite-pick-list-item",{"description":[513],"disabled":[516],"deselectDisabled":[516,"deselect-disabled"],"nonInteractive":[516,"non-interactive"],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"label":[513],"messageOverrides":[1040],"messages":[1040],"metadata":[16],"removable":[516],"selected":[1540],"value":[8],"defaultMessages":[32],"effectiveLocale":[32],"toggleSelected":[64],"setFocus":[64]},null,{"description":["descriptionWatchHandler"],"label":["labelWatchHandler"],"defaultMessages":["onMessagesChange"],"messageOverrides":["onMessagesChange"],"metadata":["metadataWatchHandler"],"selected":["selectedWatchHandler"],"value":["valueWatchHandler"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-e05b02c5",[[0,"solution-template-data",{"instanceid":[1537],"itemId":[1537,"item-id"],"organizationVariables":[1537,"organization-variables"],"solutionVariables":[1537,"solution-variables"],"varsOpen":[1540,"vars-open"],"_translations":[32],"value":[32]},null,{"itemId":["itemIdWatchHandler"]}],[1,"solution-resource-item",{"authentication":[1040],"itemId":[1537,"item-id"],"resourceFilePaths":[32],"resources":[32],"_translations":[32]},null,{"itemId":["itemIdWatchHandler"]}],[0,"solution-item-details",{"itemId":[1537,"item-id"],"itemDetails":[32],"itemEdit":[32],"_translations":[32],"thumbnail":[32],"thumbnailContainer":[32]},[[0,"calciteInputInput","inputReceivedHandler"]]],[1,"solution-item-sharing",{"groupId":[1537,"group-id"],"_translations":[32],"sharing":[32],"getShareInfo":[64]},null,{"groupId":["itemIdWatchHandler"]}],[1,"solution-variables",{"value":[1537],"_solutionVariables":[32],"_translations":[32]},null,{"value":["valueWatchHandler"]}],[1,"calcite-value-list-item",{"description":[513],"disabled":[516],"deselectDisabled":[4,"deselect-disabled"],"nonInteractive":[516,"non-interactive"],"handleActivated":[1028,"handle-activated"],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"label":[513],"metadata":[16],"removable":[516],"selected":[1540],"value":[8],"toggleSelected":[64],"setFocus":[64]},[[0,"calciteListItemChange","calciteListItemChangeHandler"]]],[1,"solution-organization-variables",{"value":[1537],"_organizationVariables":[32],"_translations":[32]},null,{"value":["valueWatchHandler"]}],[0,"json-editor",{"hasChanges":[1540,"has-changes"],"hasErrors":[1540,"has-errors"],"instanceid":[1544],"value":[1544],"getEditorContents":[64],"prepareForDeletion":[64],"replaceCurrentSelection":[64],"reset":[64]}],[1,"calcite-tab-title",{"selected":[1540],"closable":[516],"closed":[1540],"disabled":[516],"iconEnd":[513,"icon-end"],"iconFlipRtl":[513,"icon-flip-rtl"],"iconStart":[513,"icon-start"],"layout":[1537],"position":[1],"scale":[1],"bordered":[1540],"tab":[513],"messages":[1040],"messageOverrides":[1040],"controls":[32],"defaultMessages":[32],"effectiveLocale":[32],"hasText":[32],"getTabIndex":[64],"getTabIdentifier":[64],"updateAriaInfo":[64],"activateTab":[64]},[[16,"calciteInternalTabChange","internalTabChangeHandler"],[0,"click","onClick"],[0,"keydown","keyDownHandler"]],{"selected":["selectedHandler"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[1,"calcite-shell-panel",{"collapsed":[516],"detached":[516],"displayMode":[513,"display-mode"],"detachedHeightScale":[513,"detached-height-scale"],"heightScale":[513,"height-scale"],"widthScale":[513,"width-scale"],"layout":[513],"position":[513],"resizable":[516],"messages":[1040],"messageOverrides":[1040],"contentWidth":[32],"contentHeight":[32],"defaultMessages":[32],"effectiveLocale":[32],"hasHeader":[32]},null,{"detached":["handleDetached"],"displayMode":["handleDisplayMode"],"detachedHeightScale":["handleDetachedHeightScale"],"heightScale":["handleHeightScale"],"layout":["layoutHandler"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[1,"calcite-tab",{"tab":[513],"selected":[1540],"scale":[1],"labeledBy":[32],"getTabIndex":[64],"updateAriaInfo":[64]},[[16,"calciteInternalTabChange","internalTabChangeHandler"]]],[1,"calcite-tab-nav",{"storageId":[513,"storage-id"],"syncId":[513,"sync-id"],"selectedTitle":[1040],"scale":[1],"layout":[1537],"position":[1],"bordered":[1540],"indicatorOffset":[1026,"indicator-offset"],"indicatorWidth":[1026,"indicator-width"],"selectedTabId":[32]},[[0,"calciteInternalTabsFocusPrevious","focusPreviousTabHandler"],[0,"calciteInternalTabsFocusNext","focusNextTabHandler"],[0,"calciteInternalTabsFocusFirst","focusFirstTabHandler"],[0,"calciteInternalTabsFocusLast","focusLastTabHandler"],[0,"calciteInternalTabsActivate","internalActivateTabHandler"],[0,"calciteTabsActivate","activateTabHandler"],[0,"calciteInternalTabsClose","internalCloseTabHandler"],[0,"calciteInternalTabTitleRegister","updateTabTitles"],[16,"calciteInternalTabChange","globalInternalTabChangeHandler"],[0,"calciteInternalTabIconChanged","iconStartChangeHandler"]],{"selectedTabId":["selectedTabIdChanged"],"selectedTitle":["selectedTitleChanged"]}],[1,"calcite-tabs",{"layout":[513],"position":[513],"scale":[513],"bordered":[4],"titles":[32],"tabs":[32]},[[0,"calciteInternalTabTitleRegister","calciteInternalTabTitleRegister"],[16,"calciteTabTitleUnregister","calciteTabTitleUnregister"],[0,"calciteInternalTabRegister","calciteInternalTabRegister"],[16,"calciteTabUnregister","calciteTabUnregister"]],{"position":["handleInheritableProps"],"scale":["handleInheritableProps"]}],[1,"calcite-value-list",{"disabled":[516],"canPull":[16],"canPut":[16],"dragEnabled":[516,"drag-enabled"],"filteredItems":[1040],"filteredData":[1040],"filterEnabled":[516,"filter-enabled"],"filterPlaceholder":[513,"filter-placeholder"],"filterText":[1537,"filter-text"],"group":[513],"loading":[516],"multiple":[516],"selectionFollowsFocus":[516,"selection-follows-focus"],"messageOverrides":[1040],"messages":[1040],"dataForFilter":[32],"defaultMessages":[32],"effectiveLocale":[32],"selectedValues":[32],"getSelectedItems":[64],"setFocus":[64]},[[0,"focusout","calciteListFocusOutHandler"],[0,"calciteListItemRemove","calciteListItemRemoveHandler"],[0,"calciteListItemChange","calciteListItemChangeHandler"],[0,"calciteInternalListItemPropsChange","calciteInternalListItemPropsChangeHandler"],[0,"calciteInternalListItemValueChange","calciteInternalListItemValueChangeHandler"],[0,"calciteValueListItemDragHandleBlur","handleValueListItemBlur"]],{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-531ccf84",[[0,"solution-item",{"authentication":[1040],"itemId":[1537,"item-id"],"solutionVariables":[1537,"solution-variables"],"organizationVariables":[1537,"organization-variables"],"itemType":[32],"_translations":[32]},null,{"itemId":["itemIdWatchHandler"]}],[0,"solution-spatial-ref",{"defaultWkid":[1538,"default-wkid"],"locked":[1540],"services":[1040],"value":[1537],"loaded":[32],"_srSearchText":[32],"_translations":[32]},[[8,"spatialReferenceChange","spatialReferenceChange"]],{"locked":["lockedChanged"]}],[0,"solution-contents",{"selectedItemId":[1537,"selected-item-id"],"templateHierarchy":[1040]},null,{"templateHierarchy":["valueWatchHandler"]}]]],["p-bd06bae0",[[17,"calcite-pagination",{"groupSeparator":[516,"group-separator"],"messages":[1040],"messageOverrides":[1040],"numberingSystem":[1,"numbering-system"],"pageSize":[1538,"page-size"],"scale":[513],"startItem":[1538,"start-item"],"totalItems":[514,"total-items"],"defaultMessages":[32],"effectiveLocale":[32],"maxItems":[32],"totalPages":[32],"lastStartItem":[32],"isXXSmall":[32],"setFocus":[64],"nextPage":[64],"previousPage":[64]},null,{"messageOverrides":["onMessagesChange"],"totalItems":["handleTotalPages","handleLastStartItemChange"],"pageSize":["handleTotalPages","handleLastStartItemChange"],"effectiveLocale":["effectiveLocaleChange","effectiveLocaleWatcher"],"totalPages":["handleLastStartItemChange"],"maxItems":["handleIsXXSmall"]}]]],["p-04923112",[[1,"calcite-segmented-control-item",{"checked":[1540],"iconFlipRtl":[516,"icon-flip-rtl"],"iconStart":[513,"icon-start"],"iconEnd":[513,"icon-end"],"value":[1032],"appearance":[1],"layout":[1],"scale":[1]},null,{"checked":["handleCheckedChange"]}],[1,"calcite-segmented-control",{"appearance":[513],"disabled":[516],"form":[513],"required":[516],"name":[513],"layout":[513],"scale":[513],"value":[1025],"selectedItem":[1040],"status":[513],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"width":[513],"setFocus":[64]},[[0,"calciteInternalSegmentedControlItemChange","handleSelected"],[0,"keydown","handleKeyDown"]],{"appearance":["handlePropsChange"],"layout":["handlePropsChange"],"scale":["handlePropsChange"],"value":["valueHandler"],"selectedItem":["handleSelectedItemChange"]}]]],["p-ebd6afea",[[1,"calcite-input",{"alignment":[513],"autofocus":[516],"clearable":[516],"disabled":[516],"form":[513],"groupSeparator":[516,"group-separator"],"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"label":[1],"loading":[516],"numberingSystem":[513,"numbering-system"],"localeFormat":[4,"locale-format"],"max":[514],"min":[514],"maxLength":[514,"max-length"],"minLength":[514,"min-length"],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"name":[513],"numberButtonType":[513,"number-button-type"],"placeholder":[1],"prefixText":[1,"prefix-text"],"readOnly":[516,"read-only"],"required":[516],"scale":[513],"status":[513],"step":[520],"autocomplete":[1],"pattern":[1],"accept":[1],"multiple":[4],"inputMode":[1,"input-mode"],"enterKeyHint":[1,"enter-key-hint"],"suffixText":[1,"suffix-text"],"editingEnabled":[1540,"editing-enabled"],"type":[513],"value":[1025],"files":[16],"messages":[1040],"messageOverrides":[1040],"defaultMessages":[32],"effectiveLocale":[32],"displayedValue":[32],"slottedActionElDisabledInternally":[32],"setFocus":[64],"selectText":[64]},null,{"disabled":["disabledWatcher"],"max":["maxWatcher"],"min":["minWatcher"],"messageOverrides":["onMessagesChange"],"value":["valueWatcher"],"icon":["updateRequestedIcon"],"type":["updateRequestedIcon"],"effectiveLocale":["effectiveLocaleChange"]}],[1,"calcite-progress",{"type":[513],"value":[2],"label":[1],"text":[1],"reversed":[516]}]]],["p-32dc5007",[[1,"calcite-list",{"disabled":[516],"canPull":[16],"canPut":[16],"dragEnabled":[516,"drag-enabled"],"group":[513],"filterEnabled":[516,"filter-enabled"],"filteredItems":[1040],"filteredData":[1040],"filterPlaceholder":[513,"filter-placeholder"],"filterText":[1537,"filter-text"],"label":[1],"loading":[516],"messageOverrides":[1040],"messages":[1040],"numberingSystem":[1,"numbering-system"],"openable":[4],"selectedItems":[1040],"selectionMode":[513,"selection-mode"],"selectionAppearance":[513,"selection-appearance"],"effectiveLocale":[32],"defaultMessages":[32],"assistiveText":[32],"dataForFilter":[32],"hasFilterActionsEnd":[32],"hasFilterActionsStart":[32],"hasFilterNoResults":[32],"setFocus":[64]},[[0,"calciteInternalFocusPreviousItem","handleCalciteInternalFocusPreviousItem"],[0,"calciteInternalListItemActive","handleCalciteInternalListItemActive"],[0,"calciteListItemSelect","handleCalciteListItemSelect"],[0,"calciteInternalAssistiveTextChange","handleCalciteInternalAssistiveTextChange"],[0,"calciteHandleNudge","handleCalciteHandleNudge"],[0,"calciteInternalListItemSelect","handleCalciteInternalListItemSelect"],[0,"calciteInternalListItemSelectMultiple","handleCalciteInternalListItemSelectMultiple"],[0,"calciteInternalListItemChange","handleCalciteInternalListItemChange"],[0,"calciteInternalListItemGroupDefaultSlotChange","handleCalciteInternalListItemGroupDefaultSlotChange"]],{"filterText":["handleFilterTextChange"],"messageOverrides":["onMessagesChange"],"filterEnabled":["handleListItemChange"],"group":["handleListItemChange"],"dragEnabled":["handleListItemChange"],"selectionMode":["handleListItemChange"],"selectionAppearance":["handleListItemChange"],"effectiveLocale":["effectiveLocaleChange"]}],[1,"calcite-list-item",{"active":[4],"closable":[516],"closed":[1540],"description":[1],"disabled":[516],"dragDisabled":[516,"drag-disabled"],"dragHandle":[4,"drag-handle"],"dragSelected":[1540,"drag-selected"],"filterHidden":[516,"filter-hidden"],"label":[1],"metadata":[16],"open":[1540],"setSize":[2,"set-size"],"setPosition":[2,"set-position"],"selected":[1540],"value":[8],"selectionMode":[1025,"selection-mode"],"selectionAppearance":[1025,"selection-appearance"],"messageOverrides":[1040],"messages":[1040],"effectiveLocale":[32],"defaultMessages":[32],"level":[32],"visualLevel":[32],"parentListEl":[32],"openable":[32],"hasActionsStart":[32],"hasActionsEnd":[32],"hasCustomContent":[32],"hasContentStart":[32],"hasContentEnd":[32],"hasContentBottom":[32],"setFocus":[64]},[[0,"calciteInternalListItemGroupDefaultSlotChange","handleCalciteInternalListDefaultSlotChanges"],[0,"calciteInternalListDefaultSlotChange","handleCalciteInternalListDefaultSlotChanges"]],{"active":["activeHandler"],"closed":["handleClosedChange"],"disabled":["handleDisabledChange"],"selected":["handleSelectedChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[17,"calcite-filter",{"items":[16],"disabled":[516],"filteredItems":[1040],"placeholder":[1],"scale":[513],"value":[1025],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"filter":[64],"setFocus":[64]},null,{"items":["watchItemsHandler"],"messageOverrides":["onMessagesChange"],"value":["valueHandler"],"effectiveLocale":["effectiveLocaleChange"]}],[1,"calcite-stack",{"disabled":[516],"hasActionsStart":[32],"hasActionsEnd":[32],"hasContentStart":[32],"hasContentEnd":[32]}],[1,"calcite-handle",{"selected":[1540],"disabled":[516],"dragHandle":[513,"drag-handle"],"messages":[16],"setPosition":[2,"set-position"],"setSize":[2,"set-size"],"label":[1],"blurUnselectDisabled":[4,"blur-unselect-disabled"],"messageOverrides":[16],"effectiveLocale":[32],"defaultMessages":[32],"setFocus":[64]},null,{"messages":["handleAriaTextChange"],"label":["handleAriaTextChange"],"selected":["handleAriaTextChange"],"setPosition":["handleAriaTextChange"],"setSize":["handleAriaTextChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-aec06ce4",[[1,"calcite-action-menu",{"appearance":[513],"expanded":[516],"flipPlacements":[16],"label":[1],"open":[1540],"overlayPositioning":[513,"overlay-positioning"],"placement":[513],"scale":[513],"menuButtonEl":[32],"activeMenuItemIndex":[32],"setFocus":[64]},null,{"expanded":["expandedHandler"],"open":["openHandler"],"activeMenuItemIndex":["activeMenuItemIndexHandler"]}],[1,"calcite-popover",{"autoClose":[516,"auto-close"],"closable":[516],"flipDisabled":[516,"flip-disabled"],"focusTrapDisabled":[516,"focus-trap-disabled"],"pointerDisabled":[516,"pointer-disabled"],"flipPlacements":[16],"heading":[1],"headingLevel":[514,"heading-level"],"label":[1],"messageOverrides":[1040],"messages":[1040],"offsetDistance":[514,"offset-distance"],"offsetSkidding":[514,"offset-skidding"],"open":[1540],"overlayPositioning":[513,"overlay-positioning"],"placement":[513],"referenceElement":[1,"reference-element"],"scale":[513],"triggerDisabled":[516,"trigger-disabled"],"effectiveLocale":[32],"floatingLayout":[32],"effectiveReferenceElement":[32],"defaultMessages":[32],"reposition":[64],"setFocus":[64],"updateFocusTrapElements":[64]},null,{"focusTrapDisabled":["handleFocusTrapDisabled"],"flipPlacements":["flipPlacementsHandler"],"messageOverrides":["onMessagesChange"],"offsetDistance":["offsetDistanceOffsetHandler"],"offsetSkidding":["offsetSkiddingHandler"],"open":["openHandler"],"overlayPositioning":["overlayPositioningHandler"],"placement":["placementHandler"],"referenceElement":["referenceElementHandler"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-6c86a392",[[0,"feature-list",{"selectedLayerId":[1,"selected-layer-id"],"mapView":[16],"noFeaturesFoundMsg":[1,"no-features-found-msg"],"pageSize":[2,"page-size"],"highlightOnMap":[4,"highlight-on-map"],"_featureItems":[32],"_featuresCount":[32],"_isLoading":[32],"_translations":[32]},null,{"selectedLayerId":["selectedLayerWatchHandler"]}],[0,"layer-list",{"mapView":[16],"layers":[16],"noLayerErrorMsg":[1,"no-layer-error-msg"],"showFeatureCount":[4,"show-feature-count"],"showNextIcon":[4,"show-next-icon"],"_noLayersToDisplay":[32],"_mapLayerIds":[32],"_isLoading":[32],"_translations":[32],"refresh":[64]}],[1,"calcite-flow-item",{"closable":[516],"closed":[516],"collapsed":[516],"collapseDirection":[1,"collapse-direction"],"collapsible":[516],"beforeBack":[16],"description":[1],"disabled":[516],"heading":[1],"headingLevel":[514,"heading-level"],"loading":[516],"menuOpen":[516,"menu-open"],"messageOverrides":[1040],"messages":[1040],"overlayPositioning":[513,"overlay-positioning"],"showBackButton":[4,"show-back-button"],"defaultMessages":[32],"effectiveLocale":[32],"setFocus":[64],"scrollContentTo":[64]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[1,"calcite-flow",{"customItemSelectors":[1,"custom-item-selectors"],"flowDirection":[32],"itemCount":[32],"items":[32],"back":[64],"setFocus":[64]},[[0,"calciteFlowItemBack","handleItemBackClick"]]],[0,"create-feature",{"mapView":[16],"selectedLayerId":[1,"selected-layer-id"],"customizeSubmit":[4,"customize-submit"],"close":[64],"submit":[64]},null,{"mapView":["mapViewWatchHandler"]}]]],["p-4a030771",[[1,"calcite-action-bar",{"actionsEndGroupLabel":[1,"actions-end-group-label"],"expandDisabled":[516,"expand-disabled"],"expanded":[1540],"layout":[513],"overflowActionsDisabled":[516,"overflow-actions-disabled"],"overlayPositioning":[513,"overlay-positioning"],"position":[513],"scale":[513],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"hasActionsEnd":[32],"hasBottomActions":[32],"expandTooltip":[32],"defaultMessages":[32],"overflowActions":[64],"setFocus":[64]},null,{"expandDisabled":["expandHandler"],"expanded":["expandedHandler"],"layout":["layoutHandler"],"overflowActionsDisabled":["overflowDisabledHandler"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-df468e80",[[1,"buffer-tools",{"appearance":[1025],"distance":[1026],"geometries":[1040],"max":[1026],"min":[1026],"sliderTicks":[1026,"slider-ticks"],"unionResults":[1028,"union-results"],"unit":[1025],"disabled":[4],"_translations":[32],"getTranslatedUnit":[64]},null,{"geometries":["geometriesWatchHandler"],"disabled":["disabledWatchHandler"]}],[1,"calcite-input-message",{"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"scale":[513],"status":[513]},null,{"status":["handleIconEl"],"icon":["handleIconEl"]}],[0,"map-draw-tools",{"active":[4],"drawMode":[1,"draw-mode"],"editGraphicsEnabled":[4,"edit-graphics-enabled"],"graphics":[1040],"mapView":[1040],"pointSymbol":[1040],"polylineSymbol":[1040],"polygonSymbol":[1040],"redoEnabled":[4,"redo-enabled"],"undoEnabled":[4,"undo-enabled"],"_translations":[32],"_selectionMode":[32],"clear":[64],"updateGraphics":[64]},null,{"graphics":["graphicsWatchHandler"],"mapView":["mapViewWatchHandler"]}]]],["p-4742efa8",[[2,"instant-apps-language-translator-item",{"fieldName":[1,"field-name"],"translatedLanguageLabels":[16],"setting":[16],"userLocaleInputOnChangeCallback":[16],"translatedLocaleInputOnChangeCallback":[16]}],[2,"instant-apps-language-translator-search",{"t9nPlaceholder":[1,"t-9n-placeholder"],"results":[32]}],[0,"instant-apps-ckeditor-wrapper",{"value":[1025],"editorInstance":[1040],"config":[16]},null,{"value":["updateValue"]}]]],["p-ced067bd",[[1,"calcite-block",{"collapsible":[516],"disabled":[516],"dragHandle":[516,"drag-handle"],"heading":[1],"headingLevel":[514,"heading-level"],"loading":[516],"open":[1540],"status":[513],"description":[1],"messages":[1040],"messageOverrides":[1040],"overlayPositioning":[513,"overlay-positioning"],"effectiveLocale":[32],"defaultMessages":[32],"setFocus":[64]},null,{"open":["openHandler"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[17,"calcite-date-picker",{"activeDate":[1040],"activeRange":[513,"active-range"],"value":[1025],"headingLevel":[514,"heading-level"],"valueAsDate":[1040],"minAsDate":[1040],"maxAsDate":[1040],"min":[513],"max":[513],"numberingSystem":[513,"numbering-system"],"scale":[513],"range":[516],"proximitySelectionDisabled":[516,"proximity-selection-disabled"],"messageOverrides":[1040],"messages":[1040],"activeEndDate":[32],"activeStartDate":[32],"dateTimeFormat":[32],"defaultMessages":[32],"effectiveLocale":[32],"endAsDate":[32],"hoverRange":[32],"localeData":[32],"mostRecentRangeValue":[32],"startAsDate":[32],"setFocus":[64],"reset":[64]},null,{"activeDate":["activeDateWatcher"],"valueAsDate":["valueAsDateWatcher"],"min":["onMinChanged"],"max":["onMaxChanged"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange","loadLocaleData"],"value":["valueHandler"]}]]],["p-62f2cea7",[[2,"instant-apps-interactive-legend-layer-element-caption",{"legendvm":[16],"featureCount":[4,"feature-count"],"activeLayerInfo":[16],"messages":[8],"isChild":[4,"is-child"],"expanded":[1028]}],[2,"instant-apps-interactive-legend-count",{"showTotal":[4,"show-total"],"legendvm":[16],"activeLayerInfo":[16],"categoryId":[1,"category-id"],"infoIndex":[2,"info-index"],"messages":[8],"selected":[4],"legendElement":[16]}]]],["p-732ae6e8",[[6,"instant-apps-interactive-legend-legend-element",{"activeLayerInfo":[16],"isSizeRamp":[4,"is-size-ramp"],"isChild":[4,"is-child"],"isColorRamp":[4,"is-color-ramp"],"isRelationshipRamp":[4,"is-relationship-ramp"],"isInteractive":[4,"is-interactive"],"zoomTo":[4,"zoom-to"],"legendElement":[16],"titleText":[1,"title-text"],"legendvm":[16],"legendElementIndex":[2,"legend-element-index"],"messages":[8],"expanded":[32]},[[8,"legendLayerExpandUpdated","legendLayerExpandUpdatedEmitted"]]],[6,"instant-apps-interactive-legend-group-legend-element",{"legendvm":[16],"featureCount":[4,"feature-count"],"activeLayerInfo":[16],"messages":[8],"isChild":[4,"is-child"],"expanded":[32]},[[8,"layerCaptionElementExpandUpdated","layerCaptionElementExpandUpdatedEmitted"]]],[6,"instant-apps-interactive-legend-layer-element",{"legendvm":[16],"featureCount":[4,"feature-count"],"activeLayerInfo":[16],"messages":[8],"isChild":[4,"is-child"],"expanded":[32]},[[8,"layerCaptionElementExpandUpdated","layerCaptionElementExpandUpdatedEmitted"]]],[2,"instant-apps-interactive-legend-relationship",{"filterMode":[16],"activeLayerInfo":[16],"legendElement":[16],"messages":[8]},[[8,"showAllSelected","showAllSelectedEmitted"]]],[2,"instant-apps-interactive-legend-legend-element-caption",{"legendvm":[16],"activeLayerInfo":[16],"layer":[16],"titleText":[1,"title-text"],"legendElementIndex":[2,"legend-element-index"],"zoomTo":[4,"zoom-to"],"isInteractive":[4,"is-interactive"],"legendElement":[16],"expanded":[1028],"messages":[8]}]]],["p-5fbfa5e4",[[1,"calcite-shell",{"contentBehind":[516,"content-behind"],"hasHeader":[32],"hasFooter":[32],"hasAlerts":[32],"hasModals":[32],"hasSheets":[32],"panelIsResizing":[32]},[[0,"calciteInternalShellPanelResizeStart","handleCalciteInternalShellPanelResizeStart"],[0,"calciteInternalShellPanelResizeEnd","handleCalciteInternalShellPanelResizeEnd"]]],[1,"calcite-panel",{"closed":[1540],"disabled":[516],"closable":[516],"collapsed":[516],"collapseDirection":[1,"collapse-direction"],"collapsible":[516],"headingLevel":[514,"heading-level"],"loading":[516],"heading":[1],"description":[1],"menuOpen":[516,"menu-open"],"messageOverrides":[1040],"messages":[1040],"overlayPositioning":[513,"overlay-positioning"],"hasStartActions":[32],"hasEndActions":[32],"hasMenuItems":[32],"hasHeaderContent":[32],"hasActionBar":[32],"hasFooterContent":[32],"hasFooterActions":[32],"hasFab":[32],"defaultMessages":[32],"effectiveLocale":[32],"showHeaderContent":[32],"setFocus":[64],"scrollContentTo":[64]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-6fe5e1d5",[[0,"info-card",{"graphics":[16],"isLoading":[4,"is-loading"],"isMobile":[4,"is-mobile"],"mapView":[16],"zoomAndScrollToSelected":[4,"zoom-and-scroll-to-selected"],"allowEditing":[4,"allow-editing"],"highlightEnabled":[4,"highlight-enabled"],"_alertOpen":[32],"_count":[32],"_editRecordOpen":[32],"_mobileTitle":[32],"_showListView":[32],"_translations":[32],"getSelectedFeature":[64]},[[8,"closeEdit","closeEdit"],[8,"layerSelectionChange","layerSelectionChange"],[8,"refreshGraphics","refreshGraphics"]],{"graphics":["graphicsWatchHandler"],"isMobile":["isMobileWatchHandler"],"mapView":["mapViewWatchHandler"]}],[0,"edit-card",{"graphics":[1040],"mapView":[16],"open":[1028],"graphicIndex":[2,"graphic-index"],"_editorLoading":[32],"_translations":[32]},[[8,"featureSelectionChange","featureSelectionChange"]],{"graphics":["graphicsWatchHandler"],"open":["openWatchHandler"]}],[1,"calcite-alert",{"open":[1540],"autoClose":[516,"auto-close"],"autoCloseDuration":[513,"auto-close-duration"],"kind":[513],"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"label":[1],"numberingSystem":[513,"numbering-system"],"placement":[513],"scale":[513],"messages":[1040],"messageOverrides":[1040],"slottedInShell":[1028,"slotted-in-shell"],"defaultMessages":[32],"effectiveLocale":[32],"numberStringFormatter":[32],"hasEndActions":[32],"queue":[32],"queueLength":[32],"queued":[32],"setFocus":[64]},[[8,"calciteInternalAlertSync","alertSync"],[8,"calciteInternalAlertRegister","alertRegister"],[8,"calciteInternalAlertUnregister","alertUnregister"]],{"open":["openHandler"],"messageOverrides":["onMessagesChange"],"autoCloseDuration":["updateDuration"],"effectiveLocale":["effectiveLocaleChange"],"numberingSystem":["numberingSystemChange"]}],[1,"delete-button",{"buttonType":[1,"button-type"],"disabled":[4],"icon":[1],"ids":[16],"layer":[16],"_confirmDelete":[32],"_deleteEndabled":[32],"_isDeleting":[32],"_supportsDelete":[32],"_translations":[32]},null,{"ids":["idsWatchHandler"],"layer":["layerWatchHandler"]}]]],["p-038fcd93",[[1,"calcite-date-picker-month",{"dateTimeFormat":[16],"selectedDate":[16],"activeDate":[16],"startDate":[16],"endDate":[16],"min":[16],"max":[16],"scale":[513],"localeData":[16],"hoverRange":[16]},[[1,"pointerout","pointerOutHandler"]]],[1,"calcite-date-picker-month-header",{"selectedDate":[16],"activeDate":[16],"headingLevel":[2,"heading-level"],"min":[16],"max":[16],"scale":[513],"localeData":[16],"messages":[1040],"nextMonthDate":[32],"prevMonthDate":[32]},null,{"min":["setNextPrevMonthDates"],"max":["setNextPrevMonthDates"],"activeDate":["setNextPrevMonthDates"]}],[1,"calcite-date-picker-day",{"day":[2],"dateTimeFormat":[16],"disabled":[516],"currentMonth":[516,"current-month"],"selected":[516],"highlighted":[516],"range":[516],"rangeEdge":[513,"range-edge"],"startOfRange":[516,"start-of-range"],"endOfRange":[516,"end-of-range"],"rangeHover":[516,"range-hover"],"active":[516],"scale":[513],"value":[16]},[[1,"pointerover","pointerOverHandler"]]]]],["p-928c0b29",[[1,"calcite-checkbox",{"checked":[1540],"disabled":[516],"form":[513],"guid":[1537],"hovered":[516],"indeterminate":[1540],"label":[1],"name":[513],"required":[516],"scale":[513],"status":[513],"value":[8],"setFocus":[64]}]]],["p-45263007",[[1,"calcite-tree-item",{"disabled":[516],"expanded":[1540],"iconFlipRtl":[513,"icon-flip-rtl"],"iconStart":[513,"icon-start"],"selected":[1540],"parentExpanded":[4,"parent-expanded"],"depth":[1538],"hasChildren":[1540,"has-children"],"lines":[1540],"scale":[1537],"indeterminate":[516],"selectionMode":[1537,"selection-mode"],"hasEndActions":[32],"updateAfterInitialRender":[32]},[[0,"click","onClick"],[0,"keydown","keyDownHandler"]],{"expanded":["expandedHandler"],"selected":["handleSelectedChange"],"selectionMode":["getSelectionMode"]}],[1,"calcite-tree",{"lines":[1540],"child":[1540],"scale":[1537],"selectionMode":[1537,"selection-mode"],"selectedItems":[1040]},[[0,"focus","onFocus"],[0,"focusin","onFocusIn"],[0,"focusout","onFocusOut"],[0,"calciteInternalTreeItemSelect","onInternalTreeItemSelect"]]]]],["p-fc4df904",[[1,"map-picker",{"mapInfos":[16],"_mapListExpanded":[32],"_translations":[32],"_webMapInfo":[32],"setMapByID":[64]},null,{"_webMapInfo":["_webMapInfoWatchHandler"],"mapInfos":["mapInfosWatchHandler"]}],[1,"map-tools",{"basemapConfig":[16],"enableLegend":[4,"enable-legend"],"enableFloorFilter":[4,"enable-floor-filter"],"enableFullscreen":[4,"enable-fullscreen"],"enableSearch":[4,"enable-search"],"enableBasemap":[4,"enable-basemap"],"enableHome":[4,"enable-home"],"enableSingleExpand":[4,"enable-single-expand"],"homeZoomToolsSize":[1,"home-zoom-tools-size"],"layout":[1],"mapView":[16],"mapWidgetsSize":[1,"map-widgets-size"],"position":[1],"searchConfiguration":[16],"stackTools":[4,"stack-tools"],"toolOrder":[16],"_hasFloorInfo":[32],"_translations":[32],"_showTools":[32],"_showBasemapWidget":[32],"_showFloorFilter":[32],"_showFullscreen":[32],"_showLegendWidget":[32],"_showSearchWidget":[32]},null,{"mapView":["mapViewWatchHandler"],"_showBasemapWidget":["_showBasemapWidgetWatchHandler"],"_showFloorFilter":["_showFloorFilterWatchHandler"],"_showFullscreen":["_showFullscreenWatchHandler"],"_showLegendWidget":["_showLegendWidgetWatchHandler"],"_showSearchWidget":["_showSearchWidgetWatchHandler"]}],[1,"basemap-gallery",{"mapView":[16],"basemapConfig":[16],"basemapWidget":[16]},null,{"mapView":["mapViewWatchHandler"]}],[1,"floor-filter",{"enabled":[4],"floorFilterWidget":[16],"mapView":[16]},null,{"mapView":["mapViewWatchHandler"]}],[1,"map-fullscreen",{"mapView":[16],"fullscreenWidget":[16]},null,{"mapView":["mapViewWatchHandler"]}],[1,"map-legend",{"mapView":[16],"legendWidget":[16]},null,{"mapView":["mapViewWatchHandler"]}],[1,"map-search",{"mapView":[16],"popupEnabled":[4,"popup-enabled"],"resultGraphicEnabled":[4,"result-graphic-enabled"],"searchConfiguration":[16],"searchTerm":[1,"search-term"],"searchWidget":[16]},null,{"searchConfiguration":["watchSearchConfigurationHandler"],"mapView":["mapViewWatchHandler"]}]]],["p-e9788173",[[1,"calcite-label",{"alignment":[513],"for":[513],"scale":[513],"layout":[513]},null,{"for":["handleForChange"]}]]],["p-070d486d",[[1,"calcite-combobox-item",{"disabled":[516],"selected":[1540],"active":[516],"ancestors":[1040],"guid":[513],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"textLabel":[513,"text-label"],"value":[8],"filterDisabled":[516,"filter-disabled"],"selectionMode":[513,"selection-mode"],"scale":[1]},null,{"selected":["selectedWatchHandler"]}],[1,"calcite-chip",{"disabled":[516],"appearance":[513],"kind":[513],"closable":[516],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"scale":[513],"label":[1],"value":[8],"closed":[1540],"selectionMode":[1,"selection-mode"],"selected":[1540],"messageOverrides":[1040],"messages":[1040],"interactive":[4],"defaultMessages":[32],"effectiveLocale":[32],"hasText":[32],"hasImage":[32],"setFocus":[64]},[[0,"keydown","keyDownHandler"],[0,"click","clickHandler"]],{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-b3ad3ac1",[[1,"calcite-select",{"disabled":[516],"form":[513],"label":[1],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"name":[513],"required":[516],"scale":[513],"status":[513],"value":[1025],"selectedOption":[1040],"width":[513],"setFocus":[64]},[[0,"calciteInternalOptionChange","handleOptionOrGroupChange"],[0,"calciteInternalOptionGroupChange","handleOptionOrGroupChange"]],{"value":["valueHandler"],"selectedOption":["selectedOptionHandler"]}],[1,"calcite-option",{"disabled":[516],"label":[1025],"selected":[516],"value":[1032]},null,{"disabled":["handlePropChange"],"label":["handlePropChange"],"selected":["handlePropChange"],"value":["handlePropChange"]}]]]]'),e))));
|
@@ -212,6 +212,7 @@ export declare class CrowdsourceReporter {
|
|
212
212
|
* __esri.Handle: Highlight handles of the selections
|
213
213
|
*/
|
214
214
|
protected _highlightHandle: __esri.Handle;
|
215
|
+
protected _noLayerToDisplayErrorMsg: string;
|
215
216
|
/**
|
216
217
|
* Called each time the mapView prop is changed.
|
217
218
|
*/
|
@@ -67,6 +67,7 @@ export declare class LayerList {
|
|
67
67
|
* ILayerItemHash: id/name lookup
|
68
68
|
*/
|
69
69
|
protected _layerItemsHash: ILayerItemsHash;
|
70
|
+
protected _noLayerToDisplayErrorMsg: string;
|
70
71
|
/**
|
71
72
|
* Refresh the layer list which will fetch the latest layer count and update the list
|
72
73
|
* @returns Promise that resolves when the operation is complete
|
package/package.json
CHANGED
@@ -1,6 +0,0 @@
|
|
1
|
-
/*!
|
2
|
-
* Copyright 2022 Esri
|
3
|
-
* Licensed under the Apache License, Version 2.0
|
4
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
5
|
-
*/
|
6
|
-
import{r as t,c as i,h as s,H as e,g as h}from"./p-7d280d8a.js";import{l as a,g as o}from"./p-b04c9dc3.js";import{a as l,b as c,h as n,g as r,q as d}from"./p-3eedaead.js";import"./p-d918ec36.js";import"./p-e1a4994d.js";import"./p-c1cf3ebc.js";const u=class{constructor(s){t(this,s),this.togglePanel=i(this,"togglePanel",7),this.description=void 0,this.isMobile=void 0,this.enableAnonymousAccess=void 0,this.enableAnonymousComments=void 0,this.enableComments=void 0,this.enableLogin=void 0,this.enableNewReports=void 0,this.layers=void 0,this.loginTitle=void 0,this.mapView=void 0,this.layerId=void 0,this.objectId=void 0,this.center=void 0,this.level=void 0,this.reportButtonText=void 0,this.reportsHeader=void 0,this.reportSubmittedMessage=void 0,this.searchConfiguration=void 0,this.showComments=void 0,this.defaultWebmap="",this.enableSearch=!0,this.enableHome=!0,this.mapInfos=[],this.theme="light",this.enableZoom=!0,this._mapInfo=void 0,this._flowItems=["layer-list"],this._sidePanelCollapsed=!1,this._translations=void 0,this._hasValidLayers=!1,this._selectedLayerName=void 0,this._reportSubmitted=!1,this._showSubmitCancelButton=!1,this._featureCreationFailedErrorMsg=void 0}async isMobileWatchHandler(){this._sidePanelCollapsed=!1}async mapViewWatchHandler(){await this.mapView.when((async()=>{await this.setMapView()}))}async componentWillLoad(){this._urlParamsLoaded=!1,await this._initModules(),await this._getTranslations()}render(){const t="dark"===this.theme?"calcite-mode-dark":"calcite-mode-light";return s(e,null,this._reportSubmitted&&s("calcite-alert",{"auto-close":!0,class:t,icon:"check-circle",kind:"success",label:"",onCalciteAlertClose:()=>{this._reportSubmitted=!1},open:!0,placement:"top"},s("div",{slot:"title"},this._translations.reportSubmit),s("div",{slot:"message"},this.reportSubmittedMessage?this.reportSubmittedMessage:this._translations.submitMsg)),this._featureCreationFailedErrorMsg&&s("calcite-alert",{"auto-close":!0,class:t,icon:"x-octagon",kind:"danger",label:"",onCalciteAlertClose:()=>{this._featureCreationFailedErrorMsg=""},open:!0,placement:"top"},s("div",{slot:"title"},this._translations.error),s("div",{slot:"message"},this._featureCreationFailedErrorMsg)),s("div",null,s("calcite-shell",{"content-behind":!0},this._getReporter())))}async _initModules(){const[t]=await a(["esri/core/reactiveUtils"]);this.reactiveUtils=t}setSelectedLayer(t,i){this._selectedLayerId=t,this._selectedLayerName=i,this._validLayers.forEach((i=>{i.set("visible",!t||i.id===t)}))}_getReporter(){const t=[];return this._flowItems.forEach((i=>{switch(i){case"layer-list":t.push(this.getLayerListFlowItem());break;case"feature-list":t.push(this.getFeatureListFlowItem(this._selectedLayerId,this._selectedLayerName));break;case"feature-details":t.push(this.getFeatureDetailsFlowItem());break;case"reporting-layer-list":t.push(this.getChooseCategoryFlowItem());break;case"feature-create":t.push(this.getFeatureCreateFlowItem())}})),s("calcite-panel",{class:"width-full "+("dark"===this.theme?"calcite-mode-dark":"calcite-mode-light")},this.mapView?s("calcite-flow",null,(null==t?void 0:t.length)>0&&t):s("calcite-loader",{label:"",scale:"m"}))}getLayerListFlowItem(){return s("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this.reportsHeader},this.isMobile&&this.getActionToExpandCollapsePanel(),this._hasValidLayers&&this.enableNewReports&&s("calcite-button",{appearance:"solid",onClick:this.navigateToChooseCategory.bind(this),slot:"footer",width:"full"},this.reportButtonText),s("calcite-panel",{"full-height":!0,"full-width":!0},s("layer-list",{class:"height-full",layers:this.layers,mapView:this.mapView,noLayerErrorMsg:this._translations.noLayerToDisplayErrorMsg,onLayerSelect:this.displayFeaturesList.bind(this),onLayersListLoaded:this.layerListLoaded.bind(this),ref:t=>this._layerList=t,showFeatureCount:!0,showNextIcon:!0})))}getChooseCategoryFlowItem(){return s("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this._translations.createReportHeader,onCalciteFlowItemBack:this.backFromSelectedPanel.bind(this)},this.isMobile&&this.getActionToExpandCollapsePanel(),s("div",{class:"width-full",slot:"footer"},s("calcite-button",{appearance:"solid",class:"footer-top-button footer-button",disabled:!this._selectedLayerId,onClick:this.navigateToCreateFeature.bind(this),width:"full"},this._translations.next),s("calcite-button",{appearance:"outline",class:"footer-button",onClick:this.backFromSelectedPanel.bind(this),width:"full"},this._translations.cancel)),s("calcite-panel",{"full-height":!0,"full-width":!0},s("calcite-notice",{class:"notice-msg",icon:"lightbulb",kind:"success",open:!0},s("div",{slot:"message"},this._translations.chooseCategoryMsg)),s("layer-list",{class:"height-full",layers:this.layers,mapView:this.mapView,noLayerErrorMsg:this._translations.noLayerToDisplayErrorMsg,onLayerSelect:this.highlightSelectedLayer.bind(this),showFeatureCount:!1,showNextIcon:!1})))}getFeatureCreateFlowItem(){return s("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this._selectedLayerName,onCalciteFlowItemBack:this.backFromCreateFeaturePanel.bind(this)},this.isMobile&&this.getActionToExpandCollapsePanel(),this._showSubmitCancelButton&&s("div",{class:"width-full",slot:"footer"},s("calcite-button",{appearance:"solid",class:"footer-top-button footer-button",onClick:this.onSubmitButtonClick.bind(this),width:"full"},this._translations.submit),s("calcite-button",{appearance:"outline",class:"footer-button",onClick:this.backFromCreateFeaturePanel.bind(this),width:"full"},this._translations.cancel)),s("calcite-panel",{"full-height":!0,"full-width":!0},s("calcite-notice",{class:"notice-msg",icon:"lightbulb",kind:"success",open:!0},s("div",{slot:"message"},this._translations.featureEditFormInfoMsg)),s("create-feature",{customizeSubmit:!0,mapView:this.mapView,onDrawComplete:this.onDrawComplete.bind(this),onEditingAttachment:this.showSubmitCancelButton.bind(this),onFail:this.createFeatureFailed.bind(this),onSuccess:this.onReportSubmitted.bind(this),ref:t=>this._createFeature=t,selectedLayerId:this._selectedLayerId})))}onDrawComplete(){this._showSubmitCancelButton=!0}showSubmitCancelButton(t){this._showSubmitCancelButton=!t.detail}onSubmitButtonClick(){this._createFeature&&this._createFeature.submit()}backFromCreateFeaturePanel(){this._createFeature&&this._createFeature.close(),this.backFromSelectedPanel()}createFeatureFailed(t){console.error(t.detail),this._featureCreationFailedErrorMsg=t.detail.message}onReportSubmitted(){this._reportSubmitted=!0,this.navigateToHomePage()}navigateToHomePage(){this._createFeature&&this._createFeature.close(),this._layerList&&this._layerList.refresh(),this.setSelectedFeatures([]),this._flowItems=["layer-list"]}highlightSelectedLayer(t){this.setSelectedLayer(t.detail.layerId,t.detail.layerName)}async navigateToCreateFeature(){this._showSubmitCancelButton=!1,this._flowItems=[...this._flowItems,"feature-create"]}navigateToChooseCategory(){this._flowItems=[...this._flowItems,"reporting-layer-list"]}async layerListLoaded(t){const i=t.detail,s=await l(this.mapView);this._validLayers=[],s.forEach((t=>{i.includes(t.id)&&this._validLayers.push(t)})),this.handleMapClick(),this._hasValidLayers=i.length>0,this._urlParamsLoaded||(this._urlParamsLoaded=!0,await this.loadFeatureFromURLParams())}displayFeaturesList(t){this.setSelectedLayer(t.detail.layerId,t.detail.layerName),this._flowItems=[...this._flowItems,"feature-list"]}backFromSelectedPanel(){const t=[...this._flowItems];t.pop(),this.clearHighlights(),1!==t.length?this._flowItems=[...t]:this.navigateToHomePage()}toggleSidePanel(){this._sidePanelCollapsed=!this._sidePanelCollapsed,this.togglePanel.emit(this._sidePanelCollapsed)}async onFeatureSelectFromList(t){this.setSelectedFeatures([t.detail]),this._flowItems=[...this._flowItems,"feature-details"]}getFeatureListFlowItem(t,i){return s("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:i,onCalciteFlowItemBack:this.backFromSelectedPanel.bind(this)},this.isMobile&&this.getActionToExpandCollapsePanel(),this.enableNewReports&&s("calcite-button",{appearance:"solid",onClick:this.navigateToCreateFeature.bind(this),slot:"footer",width:"full"},this.reportButtonText),s("calcite-panel",{"full-height":!0},s("feature-list",{class:"height-full",mapView:this.mapView,noFeaturesFoundMsg:this._translations.featureErrorMsg,onFeatureSelect:this.onFeatureSelectFromList.bind(this),pageSize:30,selectedLayerId:t})))}getFeatureDetailsFlowItem(){return s("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this._selectedLayerName,onCalciteFlowItemBack:this.backFromSelectedPanel.bind(this)},this.isMobile&&this.getActionToExpandCollapsePanel(),s("instant-apps-social-share",{autoUpdateShareUrl:!1,embed:!1,popoverButtonIconScale:"s",ref:t=>this._shareNode=t,scale:"m",shareButtonColor:"neutral",shareButtonType:"action",slot:"header-actions-end",socialMedia:!0,view:this.mapView}),s("calcite-panel",{"full-height":!0},s("info-card",{allowEditing:!1,graphics:this._selectedFeature,highlightEnabled:!1,isLoading:!1,isMobile:!1,mapView:this.mapView,onSelectionChanged:this.featureDetailsChanged.bind(this),zoomAndScrollToSelected:!0})))}setSelectedFeatures(t){this._selectedFeature=t,this.setCurrentFeature(this._selectedFeature.length?this._selectedFeature[0]:null)}setCurrentFeature(t){if(t&&t.layer){const i=t.layer;this.setSelectedLayer(i.id,i.title),this._currentFeatureId=t.attributes[i.objectIdField]}else this.setSelectedLayer("",""),this._currentFeatureId="";this._updateShareURL()}featureDetailsChanged(t){this.setCurrentFeature(t.detail[0]),this.highlightOnMap(t.detail[0])}async highlightOnMap(t){if(this.clearHighlights(),t&&t.geometry&&t.layer){const i=await c(this.mapView,t.layer.id);this._highlightHandle=await n([t.getObjectId()],i,this.mapView,!0)}}clearHighlights(){this._highlightHandle&&this._highlightHandle.remove()}getActionToExpandCollapsePanel(){return s("calcite-action",{icon:this._sidePanelCollapsed?"chevrons-up":"chevrons-down",onClick:this.toggleSidePanel.bind(this),slot:"header-actions-end",text:this._sidePanelCollapsed?this._translations.expand:this._translations.collapse})}async setMapView(){this.mapView.popupEnabled=!1,this._defaultCenter&&this._defaultLevel&&(await this.mapView.goTo({center:this._defaultCenter,zoom:this._defaultLevel}),this._defaultCenter=void 0,this._defaultLevel=void 0)}handleMapClick(){this._mapClickHandle&&this._mapClickHandle.remove(),this._mapClickHandle=this.reactiveUtils.on((()=>this.mapView),"click",this.onMapClick.bind(this))}async onMapClick(t){this.mapView.popupEnabled=!1;const i={include:this._validLayers},s=await this.mapView.hitTest(t,i);if(s.results.length>0){const t=[];s.results.forEach((function(i){"graphic"===i.type&&t.push(i.graphic)})),this.setSelectedFeatures(t),this._flowItems.length&&"feature-details"!==this._flowItems[this._flowItems.length-1]?this._flowItems=[...this._flowItems,"feature-details"]:(this._flowItems=[...this._flowItems],this.highlightOnMap(t[0]))}}async _getTranslations(){const t=await o(this.el);this._translations=t[0]}_updateShareURL(){var t,i;const s=null===(t=this._shareNode)||void 0===t?void 0:t.shareUrl;if(!s)return;const e=new URL(s);this._selectedLayerId?e.searchParams.set("layerid",this._selectedLayerId):e.searchParams.delete("layerid"),(null===(i=this._selectedFeature)||void 0===i?void 0:i.length)?e.searchParams.set("oid",this._currentFeatureId):e.searchParams.delete("oid"),this._shareNode.shareUrl=e.href}async loadFeatureFromURLParams(){if(this.layerId&&this.objectId){const t=await r(this.mapView,this.layerId);if(t){const i=await d([Number(this.objectId)],t,[],!1,this.mapView.spatialReference);i.length&&(this._selectedFeature=i,this._flowItems=this._flowItems.length&&"feature-details"!==this._flowItems[this._flowItems.length-1]?[...this._flowItems,"feature-details"]:[...this._flowItems])}}}get el(){return h(this)}static get watchers(){return{isMobile:["isMobileWatchHandler"],mapView:["mapViewWatchHandler"]}}};u.style=":host{display:block;--calcite-label-margin-bottom:0px;--solutions-theme-foreground-color:var(--calcite-color-foreground-1)}.width-full{width:100% !important}.width-0{width:0}.height-full{height:100% !important}.height-0{height:0}.overflow-hidden{overflow:hidden}.border{border:1px solid var(--calcite-color-border-3)}.notice-msg{padding:10px;width:calc(100% - 20px)}.footer-top-button{padding-bottom:7px}.footer-button{height:35px}";export{u as crowdsource_reporter}
|