@esri/solutions-components 0.10.17 → 0.10.18

Sign up to get free protection for your applications and to get access to all the features.
@@ -880,11 +880,21 @@ const CrowdsourceReporter = class {
880
880
  getActionToExpandCollapsePanel() {
881
881
  return (index.h("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 }));
882
882
  }
883
+ _updatingHandle;
883
884
  /**
884
885
  * Set the current map info when maps change
885
886
  * @protected
886
887
  */
887
888
  async setMapView() {
889
+ console.log("setMapView see if we can find the floor filter widget from the app");
890
+ if (this._updatingHandle) {
891
+ this._updatingHandle.remove();
892
+ }
893
+ this._updatingHandle = this.reactiveUtils.watch(() => this.mapView.updating, () => {
894
+ console.log("mapView.updating");
895
+ console.log(this.mapView.ui.getComponents());
896
+ console.log(this.mapView.ui.find("esri-floor-filter"));
897
+ });
888
898
  await this.getLayersToShowInList();
889
899
  // filter/update the feature(s) if any filter/condition is already applied
890
900
  await this._updateFeatures();
@@ -889,11 +889,21 @@ export class CrowdsourceReporter {
889
889
  getActionToExpandCollapsePanel() {
890
890
  return (h("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 }));
891
891
  }
892
+ _updatingHandle;
892
893
  /**
893
894
  * Set the current map info when maps change
894
895
  * @protected
895
896
  */
896
897
  async setMapView() {
898
+ console.log("setMapView see if we can find the floor filter widget from the app");
899
+ if (this._updatingHandle) {
900
+ this._updatingHandle.remove();
901
+ }
902
+ this._updatingHandle = this.reactiveUtils.watch(() => this.mapView.updating, () => {
903
+ console.log("mapView.updating");
904
+ console.log(this.mapView.ui.getComponents());
905
+ console.log(this.mapView.ui.find("esri-floor-filter"));
906
+ });
897
907
  await this.getLayersToShowInList();
898
908
  // filter/update the feature(s) if any filter/condition is already applied
899
909
  await this._updateFeatures();
@@ -154,9 +154,10 @@
154
154
  //id: "dda88d905a6748a5ab46bea5be795f33" // screening layers
155
155
  //id: "b5bdcb1e5d684dd3b21a2d44b8e4f928" //Popup content + like dislike
156
156
  //id: "d399ec39959a4aac8617ae4f05dd6785" //Arcade
157
- id: "4bb6641b18e94cfb9d895ed37b13418a" //Attachments
157
+ //id: "4bb6641b18e94cfb9d895ed37b13418a" //Attachments
158
158
  //id: "ae6d5d1936e84ce7adde44c7a7908846" //like dislike
159
159
  // id: "ce3dec81bf714d3bb71da9691ab686d1" //Filter
160
+ id: "b422923b7a4c4958b9788118255f2f0a"
160
161
  }
161
162
  const webMap = new WebMap({
162
163
  portalItem: custom ?? portalItem
@@ -231,29 +232,29 @@
231
232
  // ];
232
233
  //Set the reporting layer options, layers from this object with reporting set to true will only be shown in layer list
233
234
  //if all the layers from map should be considered for reporting then pass true for each layer
234
- demo.reportingOptions = {
235
- "19055a4633a-layer-11": {
236
- "visible": true,
237
- "reporting": true,
238
- "comment": true,
239
- "like": false,
240
- "dislike": false
241
- },
242
- "19055a2a831-layer-7": {
243
- "visible": true,
244
- "reporting": true,
245
- "comment": false,
246
- "like": false,
247
- "dislike": false
248
- },
249
- "19055a2a735-layer-3": {
250
- "visible": true,
251
- "reporting": true,
252
- "comment": false,
253
- "like": false,
254
- "dislike": false
255
- }
256
- };
235
+ // demo.reportingOptions = {
236
+ // "19055a4633a-layer-11": {
237
+ // "visible": true,
238
+ // "reporting": true,
239
+ // "comment": true,
240
+ // "like": false,
241
+ // "dislike": false
242
+ // },
243
+ // "19055a2a831-layer-7": {
244
+ // "visible": true,
245
+ // "reporting": true,
246
+ // "comment": false,
247
+ // "like": false,
248
+ // "dislike": false
249
+ // },
250
+ // "19055a2a735-layer-3": {
251
+ // "visible": true,
252
+ // "reporting": true,
253
+ // "comment": false,
254
+ // "like": false,
255
+ // "dislike": false
256
+ // }
257
+ // };
257
258
  //Select reporting layers -
258
259
  //demo.layers = ['SE_field_mapping_9688', 'SE_field_mapping_5784', 'SE_field_mapping_1853']; //Se mapping
259
260
  //demo.layers = ['Three_Layers_nested_4042', 'SE_sort_2889', 'SE_sort_756']; //screening layers
@@ -923,11 +923,21 @@ const CrowdsourceReporter$1 = /*@__PURE__*/ proxyCustomElement(class Crowdsource
923
923
  getActionToExpandCollapsePanel() {
924
924
  return (h("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 }));
925
925
  }
926
+ _updatingHandle;
926
927
  /**
927
928
  * Set the current map info when maps change
928
929
  * @protected
929
930
  */
930
931
  async setMapView() {
932
+ console.log("setMapView see if we can find the floor filter widget from the app");
933
+ if (this._updatingHandle) {
934
+ this._updatingHandle.remove();
935
+ }
936
+ this._updatingHandle = this.reactiveUtils.watch(() => this.mapView.updating, () => {
937
+ console.log("mapView.updating");
938
+ console.log(this.mapView.ui.getComponents());
939
+ console.log(this.mapView.ui.find("esri-floor-filter"));
940
+ });
931
941
  await this.getLayersToShowInList();
932
942
  // filter/update the feature(s) if any filter/condition is already applied
933
943
  await this._updateFeatures();
@@ -876,11 +876,21 @@ const CrowdsourceReporter = class {
876
876
  getActionToExpandCollapsePanel() {
877
877
  return (h("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 }));
878
878
  }
879
+ _updatingHandle;
879
880
  /**
880
881
  * Set the current map info when maps change
881
882
  * @protected
882
883
  */
883
884
  async setMapView() {
885
+ console.log("setMapView see if we can find the floor filter widget from the app");
886
+ if (this._updatingHandle) {
887
+ this._updatingHandle.remove();
888
+ }
889
+ this._updatingHandle = this.reactiveUtils.watch(() => this.mapView.updating, () => {
890
+ console.log("mapView.updating");
891
+ console.log(this.mapView.ui.getComponents());
892
+ console.log(this.mapView.ui.find("esri-floor-filter"));
893
+ });
884
894
  await this.getLayersToShowInList();
885
895
  // filter/update the feature(s) if any filter/condition is already applied
886
896
  await this._updateFeatures();
@@ -154,9 +154,10 @@
154
154
  //id: "dda88d905a6748a5ab46bea5be795f33" // screening layers
155
155
  //id: "b5bdcb1e5d684dd3b21a2d44b8e4f928" //Popup content + like dislike
156
156
  //id: "d399ec39959a4aac8617ae4f05dd6785" //Arcade
157
- id: "4bb6641b18e94cfb9d895ed37b13418a" //Attachments
157
+ //id: "4bb6641b18e94cfb9d895ed37b13418a" //Attachments
158
158
  //id: "ae6d5d1936e84ce7adde44c7a7908846" //like dislike
159
159
  // id: "ce3dec81bf714d3bb71da9691ab686d1" //Filter
160
+ id: "b422923b7a4c4958b9788118255f2f0a"
160
161
  }
161
162
  const webMap = new WebMap({
162
163
  portalItem: custom ?? portalItem
@@ -231,29 +232,29 @@
231
232
  // ];
232
233
  //Set the reporting layer options, layers from this object with reporting set to true will only be shown in layer list
233
234
  //if all the layers from map should be considered for reporting then pass true for each layer
234
- demo.reportingOptions = {
235
- "19055a4633a-layer-11": {
236
- "visible": true,
237
- "reporting": true,
238
- "comment": true,
239
- "like": false,
240
- "dislike": false
241
- },
242
- "19055a2a831-layer-7": {
243
- "visible": true,
244
- "reporting": true,
245
- "comment": false,
246
- "like": false,
247
- "dislike": false
248
- },
249
- "19055a2a735-layer-3": {
250
- "visible": true,
251
- "reporting": true,
252
- "comment": false,
253
- "like": false,
254
- "dislike": false
255
- }
256
- };
235
+ // demo.reportingOptions = {
236
+ // "19055a4633a-layer-11": {
237
+ // "visible": true,
238
+ // "reporting": true,
239
+ // "comment": true,
240
+ // "like": false,
241
+ // "dislike": false
242
+ // },
243
+ // "19055a2a831-layer-7": {
244
+ // "visible": true,
245
+ // "reporting": true,
246
+ // "comment": false,
247
+ // "like": false,
248
+ // "dislike": false
249
+ // },
250
+ // "19055a2a735-layer-3": {
251
+ // "visible": true,
252
+ // "reporting": true,
253
+ // "comment": false,
254
+ // "like": false,
255
+ // "dislike": false
256
+ // }
257
+ // };
257
258
  //Select reporting layers -
258
259
  //demo.layers = ['SE_field_mapping_9688', 'SE_field_mapping_5784', 'SE_field_mapping_1853']; //Se mapping
259
260
  //demo.layers = ['Three_Layers_nested_4042', 'SE_sort_2889', 'SE_sort_756']; //screening layers
@@ -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,g as s,h as e,H as a,F as h}from"./p-6eb37ed2.js";import{l as o,g as l}from"./p-2058b5d9.js";import{g as c,a as n,b as r,c as d,h as u,d as p,q as f}from"./p-d572627c.js";import"./p-0a24ad5f.js";import"./p-d4056c1c.js";import"./p-80cb7c73.js";const m=class{constructor(s){t(this,s),this.togglePanel=i(this,"togglePanel",7),this.center=void 0,this.commentButtonText=void 0,this.commentSubmittedMessage=void 0,this.defaultWebmap="",this.description=void 0,this.enableAnonymousAccess=void 0,this.enableAnonymousComments=void 0,this.enableComments=void 0,this.enableHome=!0,this.enableLogin=void 0,this.enableNewReports=void 0,this.enableSearch=!0,this.enableZoom=!0,this.isMobile=void 0,this.layerExpressions=[],this.layerId=void 0,this.level=void 0,this.loginTitle=void 0,this.mapInfos=[],this.mapView=void 0,this.objectId=void 0,this.reportButtonText=void 0,this.reportingOptions=void 0,this.reportsHeader=void 0,this.reportSubmittedMessage=void 0,this.searchConfiguration=void 0,this.showComments=void 0,this.showUserImageInCommentsList=!1,this.showFeatureSymbol=!1,this.showMyReportsOnly=!1,this.theme="light",this.zoomToScale=void 0,this.floorLevel=void 0,this._featureCreationFailedErrorMsg=void 0,this._filterActive=!1,this._flowItems=[],this._hasValidLayers=!1,this._loadingFeatureDetails=void 0,this._mapInfo=void 0,this._reportSubmitted=!1,this._selectedLayerName=void 0,this._showSubmitCancelButton=!1,this._showLoadingIndicator=!1,this._sidePanelCollapsed=!1,this._translations=void 0,this._updatedProgressBarStatus=.25,this._updatedSorting=void 0,this._updatedSortOption="sortNewest",this._commentSubmitted=!1,this._addingCommentFailed=!1}get el(){return s(this)}_createFeature;_currentFeatureId;_defaultCenter;_defaultLevel;_editableLayerIds;_featureDetails;_featureList;_currentFeature;_selectedRelatedFeature;_relatedTable;_filterList;_highlightHandle;_layerList;_createRelatedFeature;_layers;_mapChange;_mapClickHandle;reactiveUtils;FeatureFilter;_selectedFeature;_selectedFeatureIndex;_selectedLayerId;_shareNode;_urlParamsLoaded;_validLayers;_selectedLayer;_layerItemsHash;_showFullPanel;_floorExpression;_formElements=[];_filterUrlParams;_filterInitState;async isMobileWatchHandler(){this.updatePanelState(!1,this._showFullPanel)}async mapViewWatchHandler(){await this.mapView.when((async()=>{await this.setMapView()}))}async floorLevelWatchHandler(){if(this._editableLayerIds)for(const t of this._editableLayerIds){const i=await c(this.mapView,t);i.floorInfo?.floorField&&this._updateFloorDefinitionExpression(i)}this._layerList&&await this._layerList.refresh(),this._featureList&&this._featureList.refresh(),this._createFeature&&this._createFeature.refresh(this.floorLevel)}togglePanel;async componentWillLoad(){this._urlParamsLoaded=!1,await this._initModules(),await this._getTranslations(),await(this.mapView?.when((async()=>{this._layers=this.reportingOptions?Object.keys(this.reportingOptions).filter((t=>this.reportingOptions[t].visible)):[],await this.setMapView()})))}render(){const t="dark"===this.theme?"calcite-mode-dark":"calcite-mode-light";return e(a,{key:"9e2fc7137b28852f7f22c47fda4693e5659db631"},this._reportSubmitted&&e("calcite-alert",{key:"ab818755ae126dad344cf7639d9b67048154447f","auto-close":!0,class:t+" report-submitted-msg",icon:"check-circle",kind:"success",label:"",onCalciteAlertClose:()=>{this._reportSubmitted=!1},open:!0,placement:"top"},e("div",{key:"d1d9b947bc0f1e91a07deb800b764fd6b81e2ab8",slot:"message"},this.reportSubmittedMessage?this.reportSubmittedMessage:this._translations.submitMsg)),this._featureCreationFailedErrorMsg&&e("calcite-alert",{key:"92fa0cb53cf5525e19c9308f3d3e68bf7af741ff","auto-close":!0,class:t,icon:"x-octagon",kind:"danger",label:"",onCalciteAlertClose:()=>{this._featureCreationFailedErrorMsg=""},open:!0,placement:"top"},e("div",{key:"ebe0683e73f6b7d9b3293c21b674fbfb67aedba5",slot:"title"},this._translations.error),e("div",{key:"06d8a126f285011d74f88807cc6c5d51b1ed8ac4",slot:"message"},this._featureCreationFailedErrorMsg)),this._commentSubmitted&&e("calcite-alert",{key:"ab2aa9d399570fb0897dccd2f5d16ac62c8e5529","auto-close":!0,class:"report-submitted "+t,icon:"check-circle",kind:"success",label:"",onCalciteAlertClose:()=>{this._commentSubmitted=!1},open:!0,placement:"top"},e("div",{key:"4cb649130c819cc9643b31c9e7533e1ef68fc626",slot:"message"},this.commentSubmittedMessage||this._translations.commentSubmittedMsg)),this._addingCommentFailed&&e("calcite-alert",{key:"0f960660c43e17b9e7d71d41e4f573f5aff9a6f8","auto-close":!0,class:t,icon:"x-octagon",kind:"danger",label:"",onCalciteAlertClose:()=>{this._addingCommentFailed=!1},open:!0,placement:"top"},e("div",{key:"b4777d4d0d1035d0b5abb51196854cda47bebb20",slot:"title"},this._translations.error),e("div",{key:"12ae974db56c10d5edf5e8cee3d55eb2c69979cf",slot:"message"},this._translations.addingCommentFailedMsg)),e("div",{key:"d1b53057f95b9eb734c7263dcb7334196e84fb30"},e("calcite-shell",{key:"62fb7d7fb784645334f99053f7453583e0f90fc0","content-behind":!0},this._getReporter())))}async _initModules(){const[t,i]=await o(["esri/core/reactiveUtils","esri/layers/support/FeatureFilter"]);this.reactiveUtils=t,this.FeatureFilter=i}async setSelectedLayer(t,i){this._selectedLayerId=t,this._selectedLayer=await c(this.mapView,t),this._selectedLayerName=i,this._validLayers.forEach((i=>{i.set("visible",!t||i.id===t)}))}_getLayersConfig(t){return this.reportingOptions&&this.reportingOptions[t]?this.reportingOptions[t]:null}_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"filter-panel":t.push(this.getFilterPanel()),this._restoreFilters();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());break;case"comment-details":t.push(this.getCommentDetailsFlowItem());break;case"add-comment":t.push(this.getAddCommentFlowItem())}})),e("calcite-panel",{class:"width-full "+("dark"===this.theme?"calcite-mode-dark":"calcite-mode-light")},this.mapView?e("calcite-flow",null,t?.length>0&&t):e("calcite-loader",{label:"",scale:"m"}))}async sortOptionClick(t,i,s){this._updatedSorting={field:t,order:i},this._updatedSortOption=s}_toggleSort(){const t=this.reportingOptions&&this.reportingOptions[this._selectedLayerId]&&this.reportingOptions[this._selectedLayerId].like&&this.reportingOptions[this._selectedLayerId].likeField;return e("calcite-popover",{autoClose:!0,label:"",offsetDistance:0,placement:this.isMobile?"leading-start":"auto",pointerDisabled:!0,referenceElement:"sort-popover"},e("calcite-list",{"selection-mode":"single"},e("calcite-list-item",{label:this._translations.sortNewest,onCalciteListItemSelect:()=>{this.sortOptionClick(this._selectedLayer.objectIdField,"desc","sortNewest")},selected:"sortNewest"===this._updatedSortOption,value:"sortNewest"}),e("calcite-list-item",{label:this._translations.sortOldest,onCalciteListItemSelect:()=>{this.sortOptionClick(this._selectedLayer.objectIdField,"asc","sortOldest")},selected:"sortOldest"===this._updatedSortOption,value:"sortOldest"}),t&&e(h,null,e("calcite-list-item",{label:this._translations.sortHighestVoted,onCalciteListItemSelect:()=>{this.sortOptionClick(this.reportingOptions[this._selectedLayerId].likeField,"desc","sortHighestVoted")},selected:"sortHighestVoted"===this._updatedSortOption,value:"sortHighestVoted"}),e("calcite-list-item",{label:this._translations.sortLowestVoted,onCalciteListItemSelect:()=>{this.sortOptionClick(this.reportingOptions[this._selectedLayerId].likeField,"asc","sortLowestVoted")},selected:"sortLowestVoted"===this._updatedSortOption,value:"sortLowestVoted"}))))}_restoreFilters(){setTimeout((()=>{this._filterList&&this._filterUrlParams&&this._filterInitState&&this._filterList.restoreFilters(this._filterUrlParams[0],this._filterInitState)}),200)}async _handleFilterListReset(){this._filterActive=!1,this._filterUrlParams=null,this._filterInitState=null}_handleFilterUpdate(){this._filterActive=this._filterList.urlParams.getAll("filter").length>0,this._filterUrlParams=this._filterList.urlParams.getAll("filter")}getLayerListFlowItem(){return e("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this.reportsHeader},this.isMobile&&this.getActionToExpandCollapsePanel(),this._hasValidLayers&&this.enableNewReports&&e("calcite-button",{appearance:"solid",onClick:this.navigateToChooseCategory.bind(this),slot:"footer",width:"full"},this.reportButtonText?this.reportButtonText:this._translations.createReportButtonText),e("calcite-panel",{"full-height":!0,"full-width":!0},e("layer-list",{applyLayerViewFilter:this.showMyReportsOnly,class:"height-full",layers:this._editableLayerIds?.length>0?this._editableLayerIds:this._layers,mapView:this.mapView,onLayerSelect:this.displayFeaturesList.bind(this),onLayersListLoaded:this.layerListLoaded.bind(this),ref:t=>this._layerList=t,showFeatureCount:!0,showNextIcon:!0})))}getChooseCategoryFlowItem(){const t=this.reportingOptions?Object.keys(this.reportingOptions).filter((t=>this.reportingOptions[t].visible&&this.reportingOptions[t].reporting&&this._layerItemsHash[t]&&this._layerItemsHash[t].supportsAdd)):[];return e("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this.reportButtonText?this.reportButtonText:this._translations.createReportButtonText,onCalciteFlowItemBack:this.backFromSelectedPanel.bind(this)},e("calcite-panel",{"full-height":!0,"full-width":!0},e("div",{class:"progress-bar"},e("calcite-progress",{type:"determinate",value:this._updatedProgressBarStatus})),e("calcite-notice",{class:"notice-msg",icon:"lightbulb",kind:"success",open:!0},e("div",{slot:"message"},this._translations.chooseCategoryMsg)),e("layer-list",{class:"height-full",layers:t,mapView:this.mapView,onLayerSelect:this.navigateToCreateFeature.bind(this),showFeatureCount:!1,showNextIcon:!1})))}getFeatureCreateFlowItem(){return e("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this._selectedLayerName,onCalciteFlowItemBack:this.backFromCreateFeaturePanel.bind(this)},this._showSubmitCancelButton&&e("div",{class:"width-full",slot:"footer"},e("calcite-button",{appearance:"solid",class:"footer-top-button footer-button",onClick:this.onCreateFeatureSubmitButtonClick.bind(this),width:"full"},this._translations.submit),e("calcite-button",{appearance:"outline",class:"footer-button",onClick:this.backFromCreateFeaturePanel.bind(this),width:"full"},this._translations.cancel)),e("calcite-panel",{"full-height":!0,"full-width":!0},e("div",{class:"progress-bar"},e("calcite-progress",{type:"determinate",value:this._updatedProgressBarStatus})),e("calcite-notice",{class:"notice-msg",icon:"lightbulb",kind:"success",open:!0},e("div",{slot:"message"},this._translations.featureEditFormInfoMsg)),e("create-feature",{customizeSubmit:!0,enableSearch:!0,floorLevel:this.floorLevel,formElements:this._formElements.find((t=>t.id===this._selectedLayerId)),isMobile:this.isMobile,mapView:this.mapView,onDrawComplete:this.onFormReady.bind(this),onEditingAttachment:this.showSubmitCancelButton.bind(this),onFail:this.createFeatureFailed.bind(this),onModeChanged:this.backFromCreateFeaturePanel.bind(this),onProgressStatus:this.updatedProgressStatus.bind(this),onSuccess:this.onReportSubmitted.bind(this),ref:t=>this._createFeature=t,searchConfiguration:this.searchConfiguration,selectedLayerId:this._selectedLayerId})))}updatedProgressStatus(t){this._updatedProgressBarStatus=t.detail}onFormReady(){this._showSubmitCancelButton=!0}showSubmitCancelButton(t){this._showSubmitCancelButton=!t.detail}onCreateFeatureSubmitButtonClick(){this._createFeature&&this._createFeature.submit()}backFromCreateFeaturePanel(){this._createFeature&&this._createFeature.close(),this.backFromSelectedPanel()}onCreateRelatedFeatureSubmitButtonClick(){this._createRelatedFeature&&this._createRelatedFeature.submit()}backFromCreateRelatedFeaturePanel(){this._createRelatedFeature&&(this._createRelatedFeature.close(),this._showSubmitCancelButton=!1),this.backFromSelectedPanel()}createFeatureFailed(t){console.error(t.detail),this._featureCreationFailedErrorMsg=t.detail.message}onReportSubmitted(){this._showFullPanel&&this.updatePanelState(this._sidePanelCollapsed,!1),this._reportSubmitted=!0,this._updatedProgressBarStatus=.25,this.navigateToHomePage()}addCommentFailed(t){console.error(t.detail),this._addingCommentFailed=!0}async onCommentSubmitted(){this._commentSubmitted=!0,this.backFromSelectedPanel(),this._showLoadingIndicator=!0,await this._featureDetails.refresh(this._currentFeature),setTimeout((()=>{this._showLoadingIndicator=!1}),300)}async navigateToHomePage(){this._createFeature&&this._createFeature.close(),this._layerList&&this._layerList.refresh(),await this.setSelectedFeatures([]),1===this._editableLayerIds.length?(await this._featureList.refresh(),this._flowItems=["feature-list"]):this._flowItems=["layer-list"]}async navigateToCreateFeature(t){t.detail.layerId&&t.detail.layerName&&await this.setSelectedLayer(t.detail.layerId,t.detail.layerName),this._getFormElements(),this._showSubmitCancelButton=!1,this.updatePanelState(!1,!0),this._flowItems=[...this._flowItems,"feature-create"]}navigateToChooseCategory(){this.updatePanelState(!1,!0),this._flowItems=[...this._flowItems,"reporting-layer-list"]}async layerListLoaded(t){const i=t.detail,s=await n(this.mapView),e=[];this._validLayers=[],s.forEach((t=>{i.includes(t.id)&&(this._validLayers.push(t),this._getLayersConfig(t.id)?.reporting&&this._layerItemsHash[t.id]&&this._layerItemsHash[t.id].supportsAdd&&e.push(t.id))})),this.handleMapClick(),this._hasValidLayers=e.length>0,this._urlParamsLoaded||(this._urlParamsLoaded=!0,await this.loadFeatureFromURLParams())}displayFeaturesList(t){this._updatedSorting={field:"",order:"desc"},this._filterActive=!1,this._updatedSortOption="sortNewest",this.setSelectedLayer(t.detail.layerId,t.detail.layerName),this._flowItems=[...this._flowItems,"feature-list"]}async backFromFilterPanel(){this._filterInitState=await this._filterList.getFilterInitState(),this._featureList.refresh(),this.backFromSelectedPanel()}backFromSelectedPanel(){this._updatedProgressBarStatus=.25;const t=[...this._flowItems];"comment-details"!==t[t.length-1]&&"add-comment"!==t[t.length-1]&&this.clearHighlights(),"reporting-layer-list"!==t[t.length-1]&&("feature-create"!==t[t.length-1]||"feature-list"!==t[0]&&"feature-list"!==t[t.length-2])||this.updatePanelState(this._sidePanelCollapsed,!1),this.reportingOptions&&this.reportingOptions[this._selectedLayerId]?.like&&"feature-details"===t[t.length-1]&&this._featureList.refresh(),t.pop(),1!==t.length||"layer-list"!==t[0]?this._flowItems=[...t]:this.navigateToHomePage()}toggleSidePanel(){this._sidePanelCollapsed=!this._sidePanelCollapsed,this.togglePanel.emit({panelState:this._sidePanelCollapsed,isFormOpen:this._showFullPanel})}updatePanelState(t,i){this._sidePanelCollapsed=t,this._showFullPanel=i,this.togglePanel.emit({panelState:this._sidePanelCollapsed,isFormOpen:this._showFullPanel})}async onFeatureSelectFromList(t){this._showLoadingIndicator=!0,await this.setSelectedFeatures([t.detail]),this._flowItems=[...this._flowItems,"feature-details"]}async getRelatedTable(){const t=this._currentFeature.layer,i=t.relationships[0].relatedTableId,s=(await r(this.mapView)).filter((s=>t.url===s.url&&i===s.layerId));this._relatedTable=s[0]}async updatingFeatureDetails(t){this._showLoadingIndicator=t}async selectionChanged(t){this.updatingFeatureDetails(!0),await this.setCurrentFeature(t.detail.selectedFeature[0]),this.highlightOnMap(t.detail.selectedFeature[0]),this._selectedFeatureIndex=t.detail.selectedFeatureIndex,await this._featureDetails.refresh(t.detail.selectedFeature[0])}async onCommentSelectFromList(t){this._selectedRelatedFeature=[t.detail],this._flowItems=[...this._flowItems,"comment-details"]}getFeatureListFlowItem(t,i){const s=this.layerExpressions?.filter((t=>t.id===this._selectedLayerId)),a=this._getLayersConfig(this._selectedLayerId)?.reporting&&this._layerItemsHash[this._selectedLayerId].supportsAdd,h=s?.length>0;return e("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:i,loading:this._showLoadingIndicator,onCalciteFlowItemBack:this.backFromSelectedPanel.bind(this)},this._toggleSort(),e("calcite-action",{icon:"sort-ascending-arrow",id:"sort-popover",slot:"header-actions-end",text:this._translations.sort,title:this._translations.sort}),h&&e("calcite-action",{icon:"filter",indicator:this._filterActive,onClick:()=>{this._flowItems=[...this._flowItems,"filter-panel"]},slot:"header-actions-end",text:this._translations.filter,title:this._translations.filter}),this.isMobile&&this.getActionToExpandCollapsePanel(),this.enableNewReports&&a&&e("calcite-button",{appearance:"solid",onClick:this.navigateToCreateFeature.bind(this),slot:"footer",width:"full"},this.reportButtonText?this.reportButtonText:this._translations.createReportButtonText),e("calcite-panel",{"full-height":!0},e("feature-list",{applyLayerViewFilter:this.showMyReportsOnly,class:"height-full",highlightOnHover:!0,mapView:this.mapView,noFeaturesFoundMsg:this._translations.featureErrorMsg,onFeatureSelect:this.onFeatureSelectFromList.bind(this),pageSize:30,ref:t=>this._featureList=t,reportingOptions:this.reportingOptions,selectedLayerId:t,showFeatureSymbol:this.showFeatureSymbol,sortingInfo:this._updatedSorting})))}getFilterPanel(){const t=this.layerExpressions?this.layerExpressions.filter((t=>t.id===this._selectedLayerId)):[];return e("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this._translations?.filterLayerTitle?.replace("{{title}}",this._selectedLayerName),loading:this._showLoadingIndicator,onCalciteFlowItemBack:this.backFromFilterPanel.bind(this)},this.isMobile&&this.getActionToExpandCollapsePanel(),e("div",{class:"width-full",slot:"footer"},e("div",{class:"width-full",slot:"footer"},e("calcite-button",{appearance:"solid",class:"footer-top-button footer-button",onClick:()=>{this._filterList?.forceReset()},width:"full"},this._translations.resetFilter),e("calcite-button",{appearance:"outline",class:"footer-button",onClick:this.backFromFilterPanel.bind(this),width:"full"},this._translations.close))),e("calcite-panel",{"full-height":!0},e("instant-apps-filter-list",{autoUpdateUrl:!1,closeBtnOnClick:()=>{},comboboxOverlayPositioning:"fixed",layerExpressions:t,onFilterListReset:()=>this._handleFilterListReset(),onFilterUpdate:()=>this._handleFilterUpdate(),ref:t=>this._filterList=t,resetFiltersOnDisconnect:!1,view:this.mapView,zoomBtn:!1})))}getFeatureDetailsFlowItem(){const t=this._getLayersConfig(this._selectedLayerId)?.comment&&this._selectedLayer.relationships.length>0;return e("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this._selectedLayerName,loading:this._showLoadingIndicator,onCalciteFlowItemBack:this.backFromSelectedPanel.bind(this)},this.isMobile&&this.getActionToExpandCollapsePanel(),e("instant-apps-social-share",{autoUpdateShareUrl:!1,class:"share-node",embed:!1,popoverButtonIconScale:"s",ref:t=>this._shareNode=t,removePopoverOffset:!0,scale:"m",shareButtonColor:"neutral",shareButtonType:"action",slot:"header-actions-end",socialMedia:!0,view:this.mapView}),this._selectedFeature.length>1&&this.getFeaturesPagination(),e("calcite-panel",null,e("feature-details",{class:"full-height",graphics:this._selectedFeature,layerItemsHash:this._layerItemsHash,mapView:this.mapView,onCommentSelect:this.onCommentSelectFromList.bind(this),onFeatureSelectionChange:this.selectionChanged.bind(this),onLoadingStatus:t=>{this.updatingFeatureDetails(t.detail)},ref:t=>this._featureDetails=t,reportingOptions:this.reportingOptions,showUserImageInCommentsList:this.showUserImageInCommentsList}),t&&e("calcite-button",{appearance:"solid",onClick:()=>this._flowItems=[...this._flowItems,"add-comment"],slot:"footer",width:"full"},this.commentButtonText||this._translations.comment)))}getFeaturesPagination(){return e("div",{class:"feature-pagination"},e("div",null,e("calcite-button",{appearance:"transparent",disabled:!1,iconStart:"chevron-left",id:"solutions-back",onClick:()=>{this._featureDetails.back()},scale:"s",width:"full"}),e("calcite-tooltip",{label:"",placement:"top","reference-element":"solutions-back"},e("span",null,this._translations.back))),e("calcite-button",{appearance:"transparent",onClick:()=>{this._featureDetails.toggleListView()},scale:"s"},e("span",{class:"pagination-count"},this._getCount())),e("div",null,e("calcite-button",{appearance:"transparent",disabled:!1,iconStart:"chevron-right",id:"solutions-next",onClick:()=>{this._featureDetails.next()},scale:"s",width:"full"}),e("calcite-tooltip",{placement:"top","reference-element":"solutions-next"},e("span",null,this._translations.next))))}getCommentDetailsFlowItem(){return e("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this._relatedTable.title,onCalciteFlowItemBack:this.backFromSelectedPanel.bind(this)},this.isMobile&&this.getActionToExpandCollapsePanel(),e("calcite-panel",{"full-height":!0},e("info-card",{allowEditing:!1,graphics:this._selectedRelatedFeature,highlightEnabled:!1,isLoading:!1,isMobile:!1,mapView:this.mapView,paginationEnabled:!1})))}getAddCommentFlowItem(){return e("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this._relatedTable.title,onCalciteFlowItemBack:this.backFromCreateRelatedFeaturePanel.bind(this)},this.isMobile&&this.getActionToExpandCollapsePanel(),e("div",{class:"width-full",slot:"footer"},this._showSubmitCancelButton&&e("div",{class:"width-full",slot:"footer"},e("calcite-button",{appearance:"solid",class:"footer-top-button footer-button",onClick:this.onCreateRelatedFeatureSubmitButtonClick.bind(this),width:"full"},this._translations.submit),e("calcite-button",{appearance:"outline",class:"footer-button",onClick:this.backFromCreateRelatedFeaturePanel.bind(this),width:"full"},this._translations.cancel))),e("calcite-panel",null,e("create-related-feature",{customizeSubmit:!0,mapView:this.mapView,onFail:this.addCommentFailed.bind(this),onFormReady:this.onFormReady.bind(this),onIsActionPending:this.showSubmitCancelButton.bind(this),onSuccess:this.onCommentSubmitted.bind(this),ref:t=>this._createRelatedFeature=t,selectedFeature:this._currentFeature,table:this._relatedTable})))}async setSelectedFeatures(t){this._selectedFeature=t,await this.setCurrentFeature(this._selectedFeature.length?this._selectedFeature[0]:null)}async setCurrentFeature(t){if(this._currentFeature=t,t&&t.layer){const i=t.layer;this.setSelectedLayer(i.id,i.title),this._currentFeatureId=t.attributes[i.objectIdField],this._getLayersConfig(i.id)?.comment&&i.relationships.length>0&&await this.getRelatedTable()}else this._editableLayerIds.length>1&&this.setSelectedLayer("",""),this._currentFeatureId="";this._updateShareURL()}async highlightOnMap(t){if(this.clearHighlights(),t&&t.geometry&&t.layer){const i=await d(this.mapView,t.layer.id);i.highlightOptions=null,this._highlightHandle=await u([t.getObjectId()],i,this.mapView,!0,this.zoomToScale)}this.updatingFeatureDetails(!1)}clearHighlights(){this._highlightHandle&&this._highlightHandle.remove()}getActionToExpandCollapsePanel(){return e("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})}_updatingHandle;async setMapView(){console.log("setMapView see if we can find the floor filter widget from the app"),this._updatingHandle&&this._updatingHandle.remove(),this._updatingHandle=this.reactiveUtils.watch((()=>this.mapView.updating),(()=>{console.log("mapView.updating"),console.log(this.mapView.ui.getComponents()),console.log(this.mapView.ui.find("esri-floor-filter"))})),await this.getLayersToShowInList(),await this._updateFeatures(),1===this._editableLayerIds?.length?await this.renderFeaturesList():this._flowItems=["layer-list"],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=await this.mapView.hitTest(t);if(i.results.length>0){const t=[];i.results.forEach((function(i){"graphic"===i.type&&t.push(i.graphic)}));const s=t.filter((t=>this._validLayers.includes(t.layer))),e=t.filter((t=>!this._validLayers.includes(t.layer)&&t?.layer?.id));if(s.length>0&&(await this.setSelectedFeatures(s),this._flowItems.length&&this._flowItems.includes("feature-details")?(this._flowItems=[...this._flowItems.slice(0,this._flowItems.indexOf("feature-details")+1)],await this.highlightOnMap(t[0])):this._flowItems=[...this._flowItems,"feature-details"]),e.length>0){this.mapView.popupEnabled=!0;const t={features:e,updateLocationEnabled:!0};await this.mapView.openPopup(t)}}}_getCount(){const t=(this._selectedFeatureIndex+1).toString(),i=this._selectedFeature.length.toString();return this._translations.indexOfTotal.replace("{{index}}",t).replace("{{total}}",i)}async _getTranslations(){const t=await l(this.el);this._translations=t[0]}_updateFloorDefinitionExpression(t){const i=`${t.floorInfo.floorField} = '${this.floorLevel}'`,s=t.definitionExpression;t.definitionExpression=s?.indexOf(this._floorExpression)>-1?s.replace(this._floorExpression,i):i,this._floorExpression=i}_getFormElements(){const t=this._selectedLayer,i=t?.floorInfo?.floorField;if(i&&this.floorLevel&&t?.formTemplate){const i=this._formElements.find((i=>i.id===t.id));0!==this._formElements.length&&i||this._formElements.push({id:t.id,orgElements:t.formTemplate.elements,orgExpressionInfos:t.formTemplate.expressionInfos})}}reduceToConfiguredLayers(t){return Object.keys(t).reduce(((i,s)=>((this.reportingOptions?this._getLayersConfig(s)?.visible:t[s].supportsAdd)&&i.push(s),i)),[])}async _updateFeatures(){for(const t of this._editableLayerIds){const i=await d(this.mapView,t);await this._showMyFeaturesOnly(i);const s=i.layer?.floorInfo?.floorField;s&&this.floorLevel&&this._updateFloorDefinitionExpression(i.layer)}}async _showMyFeaturesOnly(t){const i=this.mapView.map.portalItem.portal?.credential?.userId;if(i){const s=t.layer.editFieldsInfo?.creatorField.toLowerCase();t.filter=this.showMyReportsOnly&&s?new this.FeatureFilter({where:s+"='"+i+"'"}):null}}async getLayersToShowInList(){const t=await p(this.mapView,!0);(await n(this.mapView)).forEach((i=>{"feature"===i?.type&&i?.editingEnabled&&i?.capabilities?.operations?.supportsAdd&&(t[i.id].supportsAdd=!0)})),this._editableLayerIds=this.reduceToConfiguredLayers(t),this._layerItemsHash=t}async renderFeaturesList(){this._flowItems=["feature-list"];const t={detail:this._editableLayerIds};await this.layerListLoaded(t),this.setSelectedLayer(this._validLayers[0].id,this._validLayers[0].title)}_updateShareURL(){const t=this._shareNode?.shareUrl;if(!t)return;const i=new URL(t);this._selectedLayerId?i.searchParams.set("layerid",this._selectedLayerId):i.searchParams.delete("layerid"),this._selectedFeature?.length?i.searchParams.set("oid",this._currentFeatureId):i.searchParams.delete("oid"),this._shareNode.shareUrl=i.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 c(this.mapView,this.layerId);if(t){const i=await f([Number(this.objectId)],t,[],!0,this.mapView.spatialReference);i.length&&(await this.setSelectedFeatures(i),this._flowItems=this._flowItems.length&&"feature-details"!==this._flowItems[this._flowItems.length-1]?[...this._flowItems,"feature-details"]:[...this._flowItems])}}}static get watchers(){return{isMobile:["isMobileWatchHandler"],mapView:["mapViewWatchHandler"],floorLevel:["floorLevelWatchHandler"]}}};m.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)}.progress-bar{padding:12px}.footer-top-button{padding-bottom:7px}.footer-button{height:35px}.feature-pagination{background-color:var(--calcite-color-foreground-1) !important;border-block-end:1px solid var(--calcite-color-border-3);display:flex;justify-content:center;padding:5px 0}.pagination-count{color:var(--calcite-color-brand);border-bottom:1px solid var(--calcite-color-brand);font-weight:bold}.report-submitted-msg{position:absolute;z-index:1000}.share-node{display:flex}";export{m 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-6eb37ed2.js";export{s as setNonce}from"./p-6eb37ed2.js";import{g as t}from"./p-76c08334.js";import"./p-3edf491f.js";import"./p-a7ca67b9.js";import"./p-416c0818.js";(()=>{const a=import.meta.url,t={};return""!==a&&(t.resourcesUrl=new URL(".",a).href),e(t)})().then((async e=>(await t(),a(JSON.parse('[["p-941ec574",[[0,"crowdsource-manager",{"appLayout":[1025,"app-layout"],"appProxies":[8,"app-proxies"],"basemapConfig":[16],"coverPageEnabled":[4,"cover-page-enabled"],"customInfoText":[1,"custom-info-text"],"defaultCenter":[1,"default-center"],"defaultGlobalId":[1,"default-global-id"],"defaultLayer":[1,"default-layer"],"defaultLevel":[1,"default-level"],"defaultOid":[1,"default-oid"],"defaultWebmap":[1,"default-webmap"],"introductionWindowEnabled":[4,"introduction-window-enabled"],"enableAutoRefresh":[4,"enable-auto-refresh"],"enableBasemap":[4,"enable-basemap"],"enableColumnReorder":[4,"enable-column-reorder"],"enableCSV":[4,"enable-c-s-v"],"enableFloorFilter":[4,"enable-floor-filter"],"enableFullscreen":[4,"enable-fullscreen"],"enableHome":[4,"enable-home"],"enableLegend":[4,"enable-legend"],"enableSearch":[4,"enable-search"],"enableShare":[4,"enable-share"],"enableZoom":[4,"enable-zoom"],"mapInfos":[16],"onlyShowUpdatableLayers":[4,"only-show-updatable-layers"],"popupHeaderColor":[1,"popup-header-color"],"popupHeaderHoverColor":[1,"popup-header-hover-color"],"popupHeaderHoverTextColor":[1,"popup-header-hover-text-color"],"popupHeaderTextColor":[1,"popup-header-text-color"],"searchConfiguration":[16],"shareIncludeEmbed":[4,"share-include-embed"],"shareIncludeSocial":[4,"share-include-social"],"showNewestFirst":[4,"show-newest-first"],"theme":[1],"zoomAndScrollToSelected":[4,"zoom-and-scroll-to-selected"],"zoomToScale":[2,"zoom-to-scale"],"_enableCreateFeatures":[32],"_hideFooter":[32],"_hideTable":[32],"_isMobile":[32],"_translations":[32],"_layer":[32],"_layoutMode":[32],"_mapInfo":[32],"_mapView":[32],"_panelOpen":[32],"_numSelected":[32],"_filterOpen":[32],"_showInformationHeader":[32]},[[8,"featureSelectionChange","featureSelectionChange"],[8,"popupClosed","popupClosed"],[8,"layoutChanged","layoutChanged"],[8,"mapChanged","mapChanged"],[8,"layerSelectionChange","layerSelectionChange"]],{"enableZoom":["enableZoomWatchHandler"]}]]],["p-2d2386dd",[[0,"crowdsource-reporter",{"center":[1],"commentButtonText":[1,"comment-button-text"],"commentSubmittedMessage":[1,"comment-submitted-message"],"defaultWebmap":[1,"default-webmap"],"description":[1],"enableAnonymousAccess":[4,"enable-anonymous-access"],"enableAnonymousComments":[4,"enable-anonymous-comments"],"enableComments":[4,"enable-comments"],"enableHome":[4,"enable-home"],"enableLogin":[4,"enable-login"],"enableNewReports":[4,"enable-new-reports"],"enableSearch":[4,"enable-search"],"enableZoom":[4,"enable-zoom"],"isMobile":[4,"is-mobile"],"layerExpressions":[16],"layerId":[1,"layer-id"],"level":[1],"loginTitle":[1,"login-title"],"mapInfos":[16],"mapView":[16],"objectId":[1,"object-id"],"reportButtonText":[1,"report-button-text"],"reportingOptions":[16],"reportsHeader":[1,"reports-header"],"reportSubmittedMessage":[1,"report-submitted-message"],"searchConfiguration":[16],"showComments":[4,"show-comments"],"showUserImageInCommentsList":[4,"show-user-image-in-comments-list"],"showFeatureSymbol":[4,"show-feature-symbol"],"showMyReportsOnly":[4,"show-my-reports-only"],"theme":[1],"zoomToScale":[2,"zoom-to-scale"],"floorLevel":[1,"floor-level"],"_featureCreationFailedErrorMsg":[32],"_filterActive":[32],"_flowItems":[32],"_hasValidLayers":[32],"_loadingFeatureDetails":[32],"_mapInfo":[32],"_reportSubmitted":[32],"_selectedLayerName":[32],"_showSubmitCancelButton":[32],"_showLoadingIndicator":[32],"_sidePanelCollapsed":[32],"_translations":[32],"_updatedProgressBarStatus":[32],"_updatedSorting":[32],"_updatedSortOption":[32],"_commentSubmitted":[32],"_addingCommentFailed":[32]},null,{"isMobile":["isMobileWatchHandler"],"mapView":["mapViewWatchHandler"],"floorLevel":["floorLevelWatchHandler"]}]]],["p-17f35552",[[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"],"enableLayerFeatures":[4,"enable-layer-features"],"enableLayerFeaturesOnLoad":[4,"enable-layer-features-on-load"],"enableSearchDistance":[4,"enable-search-distance"],"enableSearchDistanceOnLoad":[4,"enable-search-distance-on-load"],"enableSketchTools":[4,"enable-sketch-tools"],"featureEffect":[16],"featureHighlightEnabled":[4,"feature-highlight-enabled"],"locale":[1],"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"],"_exportGraphics":[32],"_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-1803e66b",[[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-458a3f01",[[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-3a4fbcf6",[[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-871b9b39",[[1,"calcite-color-picker",{"allowEmpty":[516,"allow-empty"],"alphaChannel":[4,"alpha-channel"],"channelsDisabled":[4,"channels-disabled"],"clearable":[516],"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],"channelMode":[32],"channels":[32],"defaultMessages":[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"]],{"allowEmpty":["handleAllowEmptyOrClearableChange"],"clearable":["handleAllowEmptyOrClearableChange"],"alphaChannel":["handleAlphaChannelChange","handleAlphaChannelDimensionsChange","handleFormatOrAlphaChannelChange"],"dimensions":["handleAlphaChannelDimensionsChange"],"color":["handleColorChange"],"format":["handleFormatOrAlphaChannelChange"],"scale":["handleScaleChange"],"messageOverrides":["onMessagesChange"],"value":["handleValueChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-27a25ece",[[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-981ab7fc",[[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"],"view":["watchView"]}]]],["p-3a839252",[[1,"pci-calculator",{"showAddDeduct":[32]}]]],["p-7987d73b",[[1,"consent-manager",{"firstUseVar":[1,"first-use-var"],"measurementIds":[16],"portal":[16],"_shouldRender":[32],"_translations":[32],"getInstance":[64]}]]],["p-886fbbe3",[[1,"instant-apps-keyboard-shortcuts",{"view":[16],"messages":[32]}]]],["p-004d601f",[[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"],"enableSignIn":[4,"enable-sign-in"],"portal":[16],"oauthappid":[1]},null,{"open":["emitToggleEvent"]}]]],["p-32b1bb0a",[[1,"calcite-dialog",{"beforeClose":[16],"description":[1],"dragEnabled":[516,"drag-enabled"],"closeDisabled":[516,"close-disabled"],"embedded":[1028],"escapeDisabled":[516,"escape-disabled"],"heading":[1],"headingLevel":[514,"heading-level"],"kind":[513],"loading":[516],"menuOpen":[516,"menu-open"],"messages":[1040],"messageOverrides":[1040],"modal":[516],"open":[1540],"outsideCloseDisabled":[516,"outside-close-disabled"],"overlayPositioning":[513,"overlay-positioning"],"placement":[513],"resizable":[516],"scale":[513],"widthScale":[513,"width-scale"],"opened":[32],"hasFooter":[32],"hasContentTop":[32],"hasContentBottom":[32],"effectiveLocale":[32],"defaultMessages":[32],"assistiveText":[32],"setFocus":[64],"updateFocusTrapElements":[64],"scrollContentTo":[64]},[[8,"keydown","handleEscape"]],{"messageOverrides":["onMessagesChange"],"modal":["onModalChange"],"effectiveLocale":["effectiveLocaleChange"],"open":["handleInteractionChange","toggleDialog"],"placement":["handleInteractionChange"],"resizable":["handleInteractionChange","updateAssistiveText"],"dragEnabled":["handleInteractionChange","updateAssistiveText"],"messages":["updateAssistiveText"],"opened":["handleOpenedChange"]}]]],["p-30448906",[[17,"calcite-input-time-picker",{"open":[1540],"disabled":[516],"focusTrapDisabled":[516,"focus-trap-disabled"],"form":[513],"readOnly":[516,"read-only"],"max":[513],"min":[513],"messageOverrides":[1040],"messages":[1040],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"validity":[1040],"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-ae8ed06a",[[1,"instant-apps-export-views",{"output":[1040],"beforeExport":[16],"popoverIcon":[1,"popover-icon"],"includeLegend":[1028,"include-legend"],"includeMap":[1028,"include-map"],"includePopup":[1028,"include-popup"],"includeHeader":[1028,"include-header"],"mode":[513],"popoverPositioning":[1,"popover-positioning"],"popoverPlacement":[1,"popover-placement"],"scale":[1],"showIncludeLegend":[4,"show-include-legend"],"showIncludeMap":[4,"show-include-map"],"showIncludePopup":[4,"show-include-popup"],"showIncludeHeader":[4,"show-include-header"],"showScaleBar":[4,"show-scale-bar"],"exportViews":[16],"baseClass":[32],"exportIsLoading":[32],"messages":[32]},null,{"includeMap":["watchIncludeMap"],"exportViews":["watchView"]}]]],["p-c9193d36",[[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"],"outsideCloseDisabled":[4,"outside-close-disabled"],"secondaryButton":[4,"secondary-button"],"secondaryButtonText":[1,"secondary-button-text"],"secondaryButtonIcon":[1,"secondary-button-icon"],"secondaryButtonCallback":[16],"messages":[32]},null,{"content":["sanitizeContent"]}]]],["p-288599db",[[17,"calcite-input-time-zone",{"clearable":[516],"disabled":[516],"form":[513],"maxItems":[514,"max-items"],"messages":[1040],"messageOverrides":[1040],"mode":[513],"offsetStyle":[513,"offset-style"],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"validity":[1040],"name":[513],"open":[1540],"overlayPositioning":[513,"overlay-positioning"],"referenceDate":[1,"reference-date"],"required":[516],"scale":[513],"status":[513],"value":[1025],"readOnly":[516,"read-only"],"defaultMessages":[32],"effectiveLocale":[32],"setFocus":[64]},null,{"messageOverrides":["onMessagesChange"],"messages":["handleTimeZoneItemPropsChange"],"mode":["handleTimeZoneItemPropsChange"],"referenceDate":["handleTimeZoneItemPropsChange"],"value":["handleValueChange"],"effectiveLocale":["effectiveLocaleWatcher"]}]]],["p-b4f15b86",[[1,"calcite-table",{"bordered":[516],"caption":[1],"groupSeparator":[516,"group-separator"],"interactionMode":[513,"interaction-mode"],"layout":[513],"numbered":[516],"numberingSystem":[513,"numbering-system"],"pageSize":[514,"page-size"],"scale":[513],"selectionMode":[513,"selection-mode"],"selectionDisplay":[513,"selection-display"],"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"],"interactionMode":["handleNumberedChange"],"numbered":["handleNumberedChange"],"numberingSystem":["handleNumberedChange"],"pageSize":["handleNumberedChange"],"scale":["handleNumberedChange"],"selectionMode":["handleNumberedChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-b4d92441",[[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-4ebde78c",[[0,"instant-apps-time-filter",{"timeInfoConfigItems":[16],"filterMode":[16],"view":[16],"timeSliderConfig":[16],"autoPlay":[4,"auto-play"],"timeSliderRef":[32]},null,{"timeInfoConfigItems":["updateTimeInfoConfigItems"],"filterMode":["updateFilterMode"],"timeSliderConfig":["updateTimeSliderConfig"],"autoPlay":["updateAutoPlay"]}]]],["p-51f2cd4b",[[1,"layout-manager",{"_translations":[32]}]]],["p-d34db378",[[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-b6ac459a",[[1,"calcite-card",{"loading":[516],"thumbnailPosition":[513,"thumbnail-position"],"disabled":[516],"label":[1],"selectable":[516],"selected":[1540],"messages":[1040],"selectionMode":[1,"selection-mode"],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"hasContent":[32],"setFocus":[64]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-6eba7557",[[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-034291c9",[[17,"calcite-split-button",{"appearance":[513],"kind":[513],"disabled":[516],"active":[1540],"dropdownIconType":[513,"dropdown-icon-type"],"dropdownLabel":[513,"dropdown-label"],"flipPlacements":[16],"loading":[516],"overlayPositioning":[513,"overlay-positioning"],"placement":[513],"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-313fcf40",[[1,"instant-apps-create",{"popoverIcon":[1,"popover-icon"],"mode":[513],"popoverPositioning":[1,"popover-positioning"],"popoverPlacement":[1,"popover-placement"],"showHeader":[4,"show-header"],"content":[16],"options":[16],"portal":[16],"baseClass":[32],"messages":[32],"CreateOptionsLookup":[32]},null,{"content":["contentChanged"]}]]],["p-e5736093",[[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-5a76a4c8",[[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-6f98db75",[[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-b134cc53",[[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-e85ca9f5",[[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-9edd6de9",[[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],"nextStep":[64],"prevStep":[64],"goToStep":[64],"startStep":[64],"endStep":[64]},[[0,"calciteInternalStepperItemKeyEvent","calciteInternalStepperItemKeyEvent"],[0,"calciteInternalStepperItemRegister","registerItem"],[0,"calciteInternalStepperItemSelect","updateItem"],[0,"calciteStepperItemSelect","handleItemSelect"]],{"icon":["handleItemPropChange"],"layout":["handleItemPropChange"],"numbered":["handleItemPropChange"],"scale":["handleItemPropChange"],"numberingSystem":["numberingSystemChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"],"currentActivePosition":["handlePositionChange"]}]]],["p-461d72a9",[[1,"calcite-table-row",{"alignment":[513],"disabled":[516],"selected":[516],"cellCount":[1026,"cell-count"],"interactionMode":[1,"interaction-mode"],"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"],"interactionMode":["handleCellChanges"],"numbered":["handleDelayedCellChanges"],"selectionMode":["handleDelayedCellChanges"]}]]],["p-abd99f2b",[[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-432d7aac",[[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-a2613102",[[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-57729067",[[1,"calcite-block-section",{"iconEnd":[513,"icon-end"],"iconFlipRtl":[513,"icon-flip-rtl"],"iconStart":[513,"icon-start"],"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-2483d087",[[1,"calcite-carousel",{"autoplay":[520],"arrowType":[513,"arrow-type"],"autoplayDuration":[514,"autoplay-duration"],"controlOverlay":[516,"control-overlay"],"disabled":[516],"label":[1],"messages":[1040],"messageOverrides":[1040],"paused":[1028],"selectedItem":[1040],"selectedIndex":[32],"items":[32],"direction":[32],"defaultMessages":[32],"playing":[32],"suspendedDueToFocus":[32],"suspendedDueToHover":[32],"userPreventsSuspend":[32],"effectiveLocale":[32],"suspendedSlideDurationRemaining":[32],"slideDurationRemaining":[32],"setFocus":[64],"play":[64],"stop":[64]},null,{"autoplay":["autoplayWatcher"],"messageOverrides":["onMessagesChange"],"direction":["directionWatcher"],"playing":["playingWatcher"],"suspendedDueToFocus":["suspendWatcher"],"suspendedDueToHover":["suspendWatcher"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-abd443e4",[[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-d3b61974",[[1,"calcite-sheet",{"beforeClose":[16],"displayMode":[513,"display-mode"],"embedded":[4],"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],"widthScale":[513,"width-scale"],"setFocus":[64],"updateFocusTrapElements":[64]},[[8,"keydown","handleEscape"]],{"focusTrapDisabled":["handleFocusTrapDisabled"],"open":["toggleSheet"],"opened":["handleOpenedChange"]}]]],["p-e2263afa",[[1,"calcite-tile",{"active":[516],"alignment":[513],"description":[513],"disabled":[516],"embed":[516],"heading":[513],"href":[513],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"interactive":[4],"label":[1],"layout":[513],"scale":[513],"selected":[516],"selectionAppearance":[513,"selection-appearance"],"selectionMode":[513,"selection-mode"],"hasContentBottom":[32],"hasContentEnd":[32],"hasContentStart":[32],"hasContentTop":[32],"setFocus":[64]},[[0,"keydown","keyDownHandler"]]]]],["p-b1b88bb9",[[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],"setFocus":[64]},[[0,"keydown","keyDownHandler"],[16,"calciteInternalAccordionChange","updateActiveItemOnChange"],[4,"calciteInternalAccordionItemsSync","accordionItemSyncHandler"]]]]],["p-042c0134",[[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],"headingLevel":[514,"heading-level"],"setFocus":[64]}]]],["p-cde4f891",[[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],"messageOverrides":[1040],"defaultMessages":[32],"effectiveLocale":[32],"setFocus":[64]},[[16,"calciteInternalStepperItemChange","updateActiveItemOnChange"]],{"selected":["selectedHandler"],"disabled":["disabledWatcher"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleWatcher"]}]]],["p-7a641e36",[[1,"arcgis-login"]]],["p-8704c6df",[[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-26ccfcc6",[[1,"calcite-card-group",{"disabled":[516],"label":[1],"selectionMode":[513,"selection-mode"],"selectedItems":[1040],"setFocus":[64]},[[0,"calciteInternalCardKeyEvent","calciteInternalCardKeyEventListener"],[0,"calciteCardSelect","calciteCardSelectListener"]],{"selectionMode":["onSelectionModeChange"]}]]],["p-7090b8bc",[[1,"calcite-carousel-item",{"label":[1],"selected":[516]}]]],["p-4a8da1a3",[[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"],[0,"calciteInternalChipSelect","calciteInternalChipSelectListener"],[0,"calciteInternalSyncSelectedChips","calciteInternalSyncSelectedChips"]],{"selectionMode":["onSelectionModeChange"]}]]],["p-74bd8ced",[[1,"calcite-list-item-group",{"disabled":[516],"filterHidden":[516,"filter-hidden"],"heading":[513]}]]],["p-e6ac93e5",[[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-c7bfe120",[[1,"calcite-option-group",{"disabled":[516],"label":[1]},null,{"disabled":["handlePropChange"],"label":["handlePropChange"]}]]],["p-3ae3fb2d",[[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-ade4a0c0",[[1,"calcite-pick-list-group",{"groupTitle":[513,"group-title"],"headingLevel":[514,"heading-level"]}]]],["p-e7ce7ab5",[[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-f3cd6339",[[1,"calcite-shell-center-row",{"detached":[516],"heightScale":[513,"height-scale"],"position":[513]}]]],["p-cc5e8fec",[[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-949a8cb7",[[1,"calcite-text-area",{"columns":[514],"disabled":[516],"form":[513],"groupSeparator":[516,"group-separator"],"label":[1],"minLength":[514,"min-length"],"maxLength":[514,"max-length"],"messages":[1040],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"validity":[1040],"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,{"autofocus":["handleGlobalAttributesChanged"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-b24985b0",[[1,"calcite-tile-group",{"alignment":[513],"disabled":[516],"label":[1],"layout":[513],"scale":[513],"selectedItems":[1040],"selectionAppearance":[513,"selection-appearance"],"selectionMode":[513,"selection-mode"]},[[0,"calciteInternalTileKeyEvent","calciteInternalTileKeyEventListener"],[0,"calciteTileSelect","calciteTileSelectHandler"]],{"scale":["scaleWatcher"],"selectionMode":["handleSelectionModeOrAppearanceChange"],"selectionAppearance":["handleSelectionModeOrAppearanceChange"]}]]],["p-1c45b737",[[1,"calcite-tile-select-group",{"disabled":[516],"layout":[513]}]]],["p-7fa53f88",[[1,"calcite-tip-group",{"groupTitle":[1,"group-title"]}]]],["p-4e44d681",[[1,"feature-comments"]]],["p-fc62c04b",[[1,"feature-form-flow-item"]]],["p-10a4512a",[[1,"features-flow-item"]]],["p-976ad17d",[[1,"instant-apps-control-panel",{"components":[16],"view":[16]}]]],["p-8208ba6c",[[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-b1a053c7",[[1,"list-flow-item"]]],["p-19879c48",[[1,"location-flow-item"]]],["p-16af273f",[[1,"refine-results-flow-item"]]],["p-15cbdc2c",[[1,"share-item"]]],["p-960baebc",[[0,"store-manager",{"value":[1537],"templates":[1040],"authentication":[1040],"getStoreInfo":[64]}]]],["p-a0b62b46",[[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-93d8ef73",[[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-f123e913",[[1,"deduct-calculator"]]],["p-254f6e23",[[1,"instant-apps-sign-in",{"type":[1],"portal":[16],"oauthappid":[1],"openInPopup":[4,"open-in-popup"],"landingPage":[4,"landing-page"],"titleText":[1,"title-text"],"subtitleText":[1,"subtitle-text"],"descriptionText":[1,"description-text"],"closeLandingPage":[16],"signInDropdownItems":[16],"isSignedIn":[32],"user":[32],"ready":[32],"messages":[32]},null,{"portal":["watchPortal"],"oauthappid":["watchOauthappid"]}]]],["p-a6aba7d4",[[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],"toggleInfo":[64]},null,{"customHeaderHtml":["sanitizeCustomHeaderHtml"]}]]],["p-51eb6427",[[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-0b0d30a9",[[1,"calcite-combobox-item-group",{"afterEmptyGroup":[516,"after-empty-group"],"ancestors":[1040],"label":[1],"scale":[1]}]]],["p-29a24832",[[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-860452b5",[[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-89bd8016",[[1,"calcite-loader",{"inline":[516],"label":[1],"scale":[513],"type":[513],"value":[2],"text":[1],"effectiveLocale":[32]},null,{"effectiveLocale":["formatterPropsChange"],"type":["formatterPropsChange"]}],[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-e060bbf4",[[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"],"highlightOnHover":[4,"highlight-on-hover"],"sortingInfo":[16],"whereClause":[1,"where-clause"],"textSize":[1,"text-size"],"showInitialLoading":[4,"show-initial-loading"],"showErrorWhenNoFeatures":[4,"show-error-when-no-features"],"showUserImageInList":[4,"show-user-image-in-list"],"showFeatureSymbol":[4,"show-feature-symbol"],"applyLayerViewFilter":[4,"apply-layer-view-filter"],"reportingOptions":[16],"_featureItems":[32],"_featuresCount":[32],"_isLoading":[32],"_translations":[32],"refresh":[64]},null,{"selectedLayerId":["selectedLayerWatchHandler"],"sortingInfo":["sortingInfoWatchHandler"],"whereClause":["whereClauseHandler"]}]]],["p-d9110df1",[[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-9a4f0ae3",[[1,"calcite-input-number",{"alignment":[513],"autofocus":[4],"clearable":[516],"disabled":[516],"enterKeyHint":[1,"enter-key-hint"],"form":[513],"groupSeparator":[516,"group-separator"],"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"inputMode":[1,"input-mode"],"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"],"validity":[1040],"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],"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,{"autofocus":["handleGlobalAttributesChanged"],"enterkeyhint":["handleGlobalAttributesChanged"],"inputmode":["handleGlobalAttributesChanged"],"disabled":["disabledWatcher"],"max":["maxWatcher"],"min":["minWatcher"],"messageOverrides":["onMessagesChange"],"value":["valueWatcher"],"icon":["updateRequestedIcon"],"effectiveLocale":["effectiveLocaleWatcher"]}]]],["p-8feb21be",[[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-eec49294",[[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-8343f841",[[1,"calcite-table-header",{"alignment":[513],"colSpan":[514,"col-span"],"description":[513],"heading":[513],"rowSpan":[514,"row-span"],"interactionMode":[1,"interaction-mode"],"lastCell":[4,"last-cell"],"numberCell":[4,"number-cell"],"parentRowAlignment":[1,"parent-row-alignment"],"parentRowIsSelected":[4,"parent-row-is-selected"],"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],"focused":[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],"interactionMode":[1,"interaction-mode"],"lastCell":[4,"last-cell"],"numberCell":[4,"number-cell"],"parentRowIsSelected":[4,"parent-row-is-selected"],"parentRowAlignment":[1,"parent-row-alignment"],"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-88e391ab",[[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-1fcd444d",[[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-b715fe7e",[[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],"validity":[1040],"value":[8],"setFocus":[64]}]]],["p-e191b864",[[1,"calcite-input-text",{"alignment":[513],"autofocus":[4],"clearable":[516],"disabled":[516],"enterKeyHint":[1,"enter-key-hint"],"form":[513],"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"inputMode":[1,"input-mode"],"label":[1],"loading":[516],"maxLength":[514,"max-length"],"minLength":[514,"min-length"],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"validity":[1040],"name":[513],"placeholder":[1],"prefixText":[1,"prefix-text"],"readOnly":[516,"read-only"],"required":[516],"scale":[513],"status":[513],"autocomplete":[1],"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,{"autofocus":["handleGlobalAttributesChanged"],"enterkeyhint":["handleGlobalAttributesChanged"],"inputmode":["handleGlobalAttributesChanged"],"disabled":["disabledWatcher"],"messageOverrides":["onMessagesChange"],"value":["valueWatcher"],"icon":["updateRequestedIcon"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-6b2ea220",[[1,"calcite-switch",{"disabled":[516],"form":[513],"label":[1],"name":[513],"scale":[513],"checked":[1540],"value":[8],"setFocus":[64]}]]],["p-9bfb0a88",[[17,"calcite-slider",{"disabled":[516],"fillPlacement":[513,"fill-placement"],"form":[513],"groupSeparator":[516,"group-separator"],"hasHistogram":[1540,"has-histogram"],"histogram":[16],"histogramStops":[16],"labelHandles":[516,"label-handles"],"labelFormatter":[16],"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]},[[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-f2e30760",[[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-d7f00451",[[1,"calcite-scrim",{"loading":[516],"messages":[1040],"messageOverrides":[1040],"loaderScale":[32],"defaultMessages":[32],"effectiveLocale":[32],"hasContent":[32]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-0129abe8",[[1,"calcite-button",{"alignment":[513],"appearance":[513],"label":[1],"kind":[513],"disabled":[516],"form":[513],"download":[520],"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],"effectiveLocale":[32],"defaultMessages":[32],"tooltipText":[32],"setFocus":[64]},null,{"aria-expanded":["handleGlobalAttributesChanged"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-81012aaa",[[1,"map-picker",{"mapInfos":[16],"isMapLayout":[4,"is-map-layout"],"_mapListExpanded":[32],"_translations":[32],"_webMapInfo":[32],"setMapByID":[64],"close":[64],"toggle":[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"],"enabled":["enabledWatchHandler"]}],[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-fbd8a250",[[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],"setFocus":[64]},[[1,"pointerover","pointerOverHandler"]]]]],["p-a8638d44",[[1,"calcite-label",{"alignment":[513],"for":[513],"scale":[513],"layout":[513]},null,{"for":["handleForChange"]}]]],["p-6d369f32",[[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-8145011e",[[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":[513],"setFocus":[64]},[[0,"click","onClick"],[0,"keydown","keyDownHandler"],[16,"calciteInternalDropdownItemChange","updateActiveItemOnChange"]]],[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]},[[8,"click","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-ac40d2a6",[[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":[513],"selectionMode":[513,"selection-mode"]},[[0,"calciteInternalDropdownItemSelect","updateActiveItemOnChange"]],{"selectionMode":["handlePropsChange"]}],[1,"calcite-combobox",{"clearDisabled":[516,"clear-disabled"],"filterText":[1537,"filter-text"],"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"],"validity":[1040],"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],"readOnly":[516,"read-only"],"items":[32],"groupItems":[32],"needsIcon":[32],"activeItemIndex":[32],"activeChipIndex":[32],"activeDescendant":[32],"compactSelectionDisplay":[32],"selectedHiddenChipsCount":[32],"selectedVisibleChipsCount":[32],"effectiveLocale":[32],"defaultMessages":[32],"reposition":[64],"setFocus":[64]},[[4,"click","documentClickHandler"],[0,"calciteComboboxItemChange","calciteComboboxItemChangeHandler"],[0,"calciteInternalComboboxItemChange","calciteInternalComboboxItemChangeHandler"]],{"filterText":["filterTextChange"],"open":["openHandler"],"disabled":["handleDisabledChange"],"maxItems":["maxItemsHandler"],"overlayPositioning":["overlayPositioningHandler"],"selectionMode":["handlePropsChange"],"scale":["handlePropsChange"],"value":["valueHandler"],"messageOverrides":["onMessagesChange"],"flipPlacements":["flipPlacementsHandler"],"selectedItems":["selectedItemsHandler"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-c62bd2a0",[[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"]}],[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],"embedded":[1028],"escapeDisabled":[516,"escape-disabled"],"scale":[513],"widthScale":[513,"width-scale"],"fullscreen":[516],"kind":[513],"messages":[1040],"messageOverrides":[1040],"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"]}],[1,"calcite-shell",{"contentBehind":[516,"content-behind"],"hasHeader":[32],"hasFooter":[32],"hasAlerts":[32],"hasModals":[32],"hasDialogs":[32],"hasSheets":[32],"hasPanelTop":[32],"hasPanelBottom":[32],"hasOnlyPanelBottom":[32],"panelIsResizing":[32]},[[0,"calciteInternalShellPanelResizeStart","handleCalciteInternalShellPanelResizeStart"],[0,"calciteInternalShellPanelResizeEnd","handleCalciteInternalShellPanelResizeEnd"]],{"hasPanelTop":["updateHasOnlyPanelBottom"],"hasPanelBottom":["updateHasOnlyPanelBottom"]}]]],["p-e2d9c1e4",[[1,"calcite-select",{"disabled":[516],"form":[513],"label":[1],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"validity":[1040],"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"]}]]],["p-5501cb25",[[1,"calcite-combobox-item",{"active":[516],"ancestors":[1040],"description":[1],"disabled":[516],"filterDisabled":[516,"filter-disabled"],"filterTextMatchPattern":[16],"guid":[513],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"metadata":[16],"scale":[1],"selected":[1540],"selectionMode":[513,"selection-mode"],"shortHeading":[1,"short-heading"],"heading":[1],"textLabel":[513,"text-label"],"value":[8],"label":[8]},null,{"disabled":["handleComboboxItemPropsChange"],"textLabel":["handleComboboxItemPropsChange"],"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],"parentChipGroup":[16],"defaultMessages":[32],"effectiveLocale":[32],"hasText":[32],"hasImage":[32],"setFocus":[64]},[[0,"keydown","keyDownHandler"],[0,"click","clickHandler"]],{"selected":["watchSelected"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-fde2ea30",[[0,"layer-table",{"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"],"mapHidden":[4,"map-hidden"],"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"],"zoomToScale":[2,"zoom-to-scale"],"createFilterModal":[4,"create-filter-modal"],"_allIds":[32],"_controlsThatFit":[32],"_csvExporting":[32],"_fetchingData":[32],"_filterActive":[32],"_filterOpen":[32],"_layer":[32],"_selectAllActive":[32],"_showHideOpen":[32],"_showOnlySelected":[32],"_toolInfos":[32],"_translations":[32],"_fullTextSearchInfo":[32],"_searchPlaceHolder":[32],"filterReset":[64],"filterUpdate":[64],"closeFilter":[64],"refresh":[64]},[[8,"selectionChanged","selectionChanged"],[8,"layerSelectionChange","layerSelectionChange"],[8,"editsComplete","editsComplete"],[8,"facilityChanged","facilityChanged"],[8,"levelChanged","levelChanged"],[8,"siteChanged","siteChanged"],[8,"noLayersFound","noLayersFound"]],{"defaultOid":["defaultOidWatchHandler"],"defaultGlobalId":["defaultGlobalIdWatchHandler"],"enableCSV":["enableCSVWatchHandler"],"enableInlineEdit":["enableInlineEditWatchHandler"],"enableShare":["enableShareWatchHandler"],"_controlsThatFit":["_controlsThatFitWatchHandler"],"mapHidden":["mapHiddenWatchHandler"],"isMobile":["isMobileWatchHandler"],"mapInfo":["mapInfoWatchHandler"],"mapView":["mapViewWatchHandler"],"_layer":["_layerWatchHandler"],"selectedIds":["selectedIdsWatchHandler"]}],[0,"map-card",{"appProxies":[8,"app-proxies"],"defaultWebmapId":[1,"default-webmap-id"],"defaultLayerId":[1,"default-layer-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],"isMapLayout":[4,"is-map-layout"],"selectedFeaturesIds":[16],"selectedLayer":[16],"zoomToScale":[2,"zoom-to-scale"],"onlyShowUpdatableLayers":[4,"only-show-updatable-layers"],"isMobile":[4,"is-mobile"],"mapInfo":[16],"_translations":[32],"_searchConfiguration":[32],"_webMapInfo":[32],"_showHideOpen":[32],"filterReset":[64],"updateFilter":[64]},[[8,"mapInfoChange","mapInfoChange"],[8,"noLayersFound","noLayersFound"]],{"enableHome":["enableHomeWatchHandler"],"selectedLayer":["selectedLayerWatchHandler"]}],[0,"card-manager",{"customInfoText":[1,"custom-info-text"],"enableEditGeometry":[4,"enable-edit-geometry"],"isMobile":[4,"is-mobile"],"layer":[1040],"mapView":[16],"zoomAndScrollToSelected":[4,"zoom-and-scroll-to-selected"],"selectedFeaturesIds":[16],"enableCreateFeatures":[4,"enable-create-features"],"_cardLoading":[32],"_graphics":[32],"_showCreateFeatureComponent":[32],"_showSubmitBtn":[32],"_translations":[32]},[[8,"featureSelectionChange","featureSelectionChange"],[8,"layerSelectionChange","layerSelectionChange"]]]]],["p-23c70a46",[[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],"hasSlottedContent":[32]},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"],"validity":[1040],"width":[513],"setFocus":[64]},[[0,"calciteInternalSegmentedControlItemChange","handleSelected"],[0,"keydown","handleKeyDown"]],{"appearance":["handlePropsChange"],"layout":["handlePropsChange"],"scale":["handlePropsChange"],"value":["valueHandler"],"selectedItem":["handleSelectedItemChange"]}]]],["p-18103eee",[[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],"goTo":[64]},null,{"messageOverrides":["onMessagesChange"],"totalItems":["handleTotalPages","handleLastStartItemChange"],"pageSize":["handleTotalPages","handleLastStartItemChange"],"effectiveLocale":["effectiveLocaleChange","effectiveLocaleWatcher"],"totalPages":["handleLastStartItemChange"],"maxItems":["handleIsXXSmall"]}]]],["p-42903dc4",[[1,"calcite-input",{"alignment":[513],"autofocus":[4],"clearable":[516],"disabled":[516],"enterKeyHint":[1,"enter-key-hint"],"form":[513],"groupSeparator":[516,"group-separator"],"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"inputMode":[1,"input-mode"],"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"],"validity":[1040],"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],"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,{"autofocus":["handleGlobalAttributesChanged"],"enterkeyhint":["handleGlobalAttributesChanged"],"inputmode":["handleGlobalAttributesChanged"],"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-72b4bf7a",[[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"]}],[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"]}]]],["p-5fcdc5af",[[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-111ff298",[[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],"filterProps":[16],"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,"calciteInternalListItemToggle","handleCalciteListItemToggle"],[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"],"filterProps":["handlefilterPropsChange"],"messageOverrides":["onMessagesChange"],"filterEnabled":["handleListItemChange"],"group":["handleListItemChange"],"dragEnabled":["handleListItemChange"],"selectionMode":["handleListItemChange"],"selectionAppearance":["handleListItemChange"],"effectiveLocale":["effectiveLocaleChange"]}],[1,"calcite-list-item",{"active":[4],"bordered":[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],"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"],"open":["handleOpenChange"],"selected":["handleSelectedChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[17,"calcite-filter",{"items":[16],"disabled":[516],"filteredItems":[1040],"filterProps":[16],"placeholder":[1],"scale":[513],"value":[1025],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"filter":[64],"setFocus":[64]},null,{"items":["watchItemsHandler"],"filterProps":["filterPropsHandler"],"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":[1040],"setPosition":[2,"set-position"],"setSize":[2,"set-size"],"label":[1],"blurUnselectDisabled":[4,"blur-unselect-disabled"],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"setFocus":[64]},null,{"messages":["handleAriaTextChange"],"label":["handleAriaTextChange"],"selected":["handleAriaTextChange"],"setPosition":["handleAriaTextChange"],"setSize":["handleAriaTextChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-fc9301a3",[[0,"refine-selection",{"addresseeLayer":[16],"enabledLayerIds":[16],"locale":[1],"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],"enableLayerFeatures":[4,"enable-layer-features"],"enableLayerFeaturesOnLoad":[4,"enable-layer-features-on-load"],"enableSearchDistance":[4,"enable-search-distance"],"enableSearchDistanceOnLoad":[4,"enable-search-distance-on-load"],"enableSketchTools":[4,"enable-sketch-tools"],"defaultBufferDistance":[2,"default-buffer-distance"],"defaultBufferUnit":[1,"default-buffer-unit"],"geometries":[16],"isUpdate":[4,"is-update"],"layerViews":[16],"locale":[1],"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"],"mapView":["mapViewWatchHandler"],"searchConfiguration":["watchSearchConfigurationHandler"]}],[1,"pdf-download",{"defaultNumLabelsPerPage":[2,"default-num-labels-per-page"],"disabled":[4],"_translations":[32],"downloadCSV":[64],"downloadPDF":[64]}]]],["p-abafd987",[[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,"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-variables",{"value":[1537],"_solutionVariables":[32],"_translations":[32]},null,{"value":["valueWatchHandler"]}],[1,"calcite-tab-nav",{"storageId":[513,"storage-id"],"syncId":[513,"sync-id"],"selectedTitle":[1040],"scale":[1],"layout":[1537],"position":[1],"bordered":[1540],"messages":[1040],"messageOverrides":[1040],"defaultMessages":[32],"effectiveLocale":[32],"hasOverflowingStartTabTitle":[32],"hasOverflowingEndTabTitle":[32],"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"]],{"selectedTitle":["selectedTitleChanged"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"],"selectedTabId":["selectedTabIdChanged"]}],[0,"json-editor",{"hasChanges":[1540,"has-changes"],"hasErrors":[1540,"has-errors"],"instanceid":[1544],"value":[1544],"getEditorContents":[64],"prepareForDeletion":[64],"replaceCurrentSelection":[64],"reset":[64]}],[1,"solution-organization-variables",{"value":[1537],"_organizationVariables":[32],"_translations":[32]},null,{"value":["valueWatchHandler"]}],[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-tabs",{"layout":[513],"position":[513],"scale":[513],"bordered":[4],"titles":[32],"tabs":[32]},[[0,"calciteInternalTabNavSlotChange","calciteInternalTabNavSlotChangeHandler"]],{"position":["handleInheritableProps"],"scale":["handleInheritableProps"],"titles":["titlesWatcher"],"tabs":["tabsWatcher"]}],[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-ccc3f0c4",[[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-contents",{"selectedItemId":[1537,"selected-item-id"],"templateHierarchy":[1040]},null,{"templateHierarchy":["valueWatchHandler"]}],[0,"solution-spatial-ref",{"enabled":[1540],"enableDefault":[1540,"enable-default"],"featureServices":[1040],"_translations":[32],"_testAccess":[64]},[[8,"solutionStoreHasChanges","solutionStoreHasChanges"]],{"enabled":["enabledChanged"],"enableDefault":["enableDefaultChanged"]}]]],["p-792a8e91",[[1,"calcite-avatar",{"scale":[513],"thumbnail":[513],"fullName":[513,"full-name"],"username":[513],"userId":[513,"user-id"],"label":[1],"thumbnailFailedToLoad":[32]}]]],["p-c58a3ade",[[0,"feature-details",{"mapView":[16],"graphics":[16],"reportingOptions":[16],"layerItemsHash":[16],"showUserImageInCommentsList":[4,"show-user-image-in-comments-list"],"_likeFieldAvailable":[32],"_likeCount":[32],"_disLikeCount":[32],"_dislikeFieldAvailable":[32],"_commentsAvailable":[32],"_isLikeBtnClicked":[32],"_isDislikeBtnClicked":[32],"_relatedFeaturesOIDs":[32],"_updating":[32],"refresh":[64],"back":[64],"next":[64],"toggleListView":[64]},null,{"graphics":["graphicsWatchHandler"]}],[0,"layer-list",{"mapView":[16],"layers":[16],"showFeatureCount":[4,"show-feature-count"],"showNextIcon":[4,"show-next-icon"],"applyLayerViewFilter":[4,"apply-layer-view-filter"],"_noLayersToDisplay":[32],"_mapLayerIds":[32],"_isLoading":[32],"_translations":[32],"refresh":[64]}],[0,"create-related-feature",{"mapView":[16],"table":[16],"selectedFeature":[16],"customizeSubmit":[4,"customize-submit"],"_editorLoading":[32],"close":[64],"submit":[64]},null,{"mapView":["mapViewWatchHandler"],"_editorLoading":["_editorLoadingWatchHandler"]}],[1,"calcite-flow",{"customItemSelectors":[1,"custom-item-selectors"],"flowDirection":[32],"itemCount":[32],"items":[32],"back":[64],"setFocus":[64]},[[0,"calciteFlowItemBack","handleItemBackClick"]]]]],["p-c897ea6a",[[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-960a4993",[[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":[1032,"editor-instance"],"config":[16]},null,{"value":["updateValue"]}]]],["p-26a3ba5e",[[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-30903105",[[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-517bc39b",[[1,"calcite-panel",{"beforeClose":[16],"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"],"scale":[513],"isClosed":[32],"hasStartActions":[32],"hasEndActions":[32],"hasMenuItems":[32],"hasHeaderContent":[32],"hasActionBar":[32],"hasContentBottom":[32],"hasContentTop":[32],"hasFab":[32],"hasFooterActions":[32],"hasFooterContent":[32],"hasFooterEndContent":[32],"hasFooterStartContent":[32],"defaultMessages":[32],"effectiveLocale":[32],"showHeaderContent":[32],"setFocus":[64],"scrollContentTo":[64]},null,{"closed":["toggleDialog"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[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"]}]]],["p-f42cdeb6",[[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-873a5fd1",[[1,"instant-apps-filter-list",{"layerExpressions":[1040],"autoUpdateUrl":[4,"auto-update-url"],"closeBtn":[4,"close-btn"],"closeBtnOnClick":[16],"comboboxOverlayPositioning":[1,"combobox-overlay-positioning"],"closeBtnText":[1,"close-btn-text"],"openFilters":[4,"open-filters"],"extentSelector":[4,"extent-selector"],"extentSelectorConfig":[16],"urlParams":[1040],"filterCount":[1026,"filter-count"],"view":[16],"zoomBtn":[4,"zoom-btn"],"resetBtn":[4,"reset-btn"],"resetFiltersOnDisconnect":[4,"reset-filters-on-disconnect"],"loading":[32],"filterLayerExpressions":[32],"messages":[32],"baseClass":[32],"disabled":[32],"hasLayerExpression":[32],"initDefExpressions":[32],"initMapImageExpressions":[32],"initPointCloudFilters":[32],"getFilterInitState":[64],"forceReset":[64],"restoreFilters":[64]},null,{"view":["watchViewHandler"],"layerExpressions":["watchLayerExpressions"]}],[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"],"popoverPositioning":[513,"popover-positioning"],"removePopoverOffset":[516,"remove-popover-offset"],"messages":[32],"opened":[32],"copied":[32],"inlineCopyLinkOpened":[32],"inlineCopyEmbedOpened":[32],"embedWidth":[32],"embedHeight":[32]}],[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":[513],"max":[513],"open":[1540],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"validity":[1040],"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"],"effectiveLocale":["effectiveLocaleChange","handleDateTimeFormatChange"],"numberingSystem":["handleDateTimeFormatChange"],"layout":["setReferenceEl"],"focusedInput":["setReferenceEl"]}],[1,"calcite-block",{"collapsible":[516],"disabled":[516],"dragHandle":[516,"drag-handle"],"heading":[1],"headingLevel":[514,"heading-level"],"iconEnd":[513,"icon-end"],"iconFlipRtl":[513,"icon-flip-rtl"],"iconStart":[513,"icon-start"],"loading":[516],"open":[1540],"status":[513],"description":[1],"messages":[1040],"messageOverrides":[1040],"overlayPositioning":[513,"overlay-positioning"],"defaultMessages":[32],"effectiveLocale":[32],"hasContentStart":[32],"hasEndActions":[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-9ab5fbed",[[1,"calcite-flow-item",{"closable":[516],"closed":[516],"collapsed":[516],"collapseDirection":[1,"collapse-direction"],"collapsible":[516],"beforeBack":[16],"beforeClose":[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"],"scale":[513],"showBackButton":[4,"show-back-button"],"defaultMessages":[32],"effectiveLocale":[32],"setFocus":[64],"scrollContentTo":[64]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[0,"create-feature",{"mapView":[16],"selectedLayerId":[1,"selected-layer-id"],"customizeSubmit":[4,"customize-submit"],"searchConfiguration":[16],"isMobile":[4,"is-mobile"],"floorLevel":[1,"floor-level"],"formElements":[8,"form-elements"],"enableSearch":[4,"enable-search"],"_editorLoading":[32],"_showSearchWidget":[32],"close":[64],"submit":[64],"refresh":[64]},null,{"mapView":["mapViewWatchHandler"],"isMobile":["isMobileHandler"],"_editorLoading":["_editorLoadingWatchHandler"]}],[0,"info-card",{"enableEditGeometry":[4,"enable-edit-geometry"],"graphics":[16],"isLoading":[4,"is-loading"],"isMobile":[4,"is-mobile"],"mapView":[16],"allowEditing":[4,"allow-editing"],"highlightEnabled":[4,"highlight-enabled"],"paginationEnabled":[4,"pagination-enabled"],"position":[1],"_alertOpen":[32],"_count":[32],"_editRecordOpen":[32],"_mobileTitle":[32],"_showListView":[32],"_translations":[32],"getSelectedFeature":[64],"refresh":[64],"back":[64],"next":[64],"toggleListView":[64],"updateCurrentGraphic":[64]},[[8,"closeEdit","closeEdit"],[8,"layerSelectionChange","layerSelectionChange"],[8,"refreshGraphics","refreshGraphics"]],{"graphics":["graphicsWatchHandler"],"isMobile":["isMobileWatchHandler"],"mapView":["mapViewWatchHandler"]}],[0,"edit-card",{"enableEditGeometry":[4,"enable-edit-geometry"],"graphics":[1040],"mapView":[16],"open":[1028],"graphicIndex":[2,"graphic-index"],"_editorLoading":[32],"_translations":[32]},[[8,"featureSelectionChange","featureSelectionChange"]],{"graphics":["graphicsWatchHandler"],"open":["openWatchHandler"]}],[1,"calcite-alert",{"active":[4],"openAlertCount":[2,"open-alert-count"],"open":[1540],"autoClose":[516,"auto-close"],"autoCloseDuration":[513,"auto-close-duration"],"embedded":[1028],"kind":[513],"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"label":[1],"numberingSystem":[513,"numbering-system"],"placement":[513],"scale":[513],"messages":[1040],"messageOverrides":[1040],"queue":[513],"defaultMessages":[32],"effectiveLocale":[32],"numberStringFormatter":[32],"hasEndActions":[32],"isFocused":[32],"setFocus":[64]},null,{"active":["handleActiveChange"],"open":["openHandler"],"autoCloseDuration":["updateDuration"],"messageOverrides":["onMessagesChange"],"queue":["handleQueueChange"],"effectiveLocale":["effectiveLocaleChange"],"numberingSystem":["numberingSystemChange"]}]]],["p-93c9be09",[[0,"solution-item-icon",{"isPortal":[4,"is-portal"],"type":[1],"typeKeywords":[16]}],[1,"calcite-tree-item",{"disabled":[516],"label":[1],"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":[1540],"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"]]]]]]'),e))));
6
+ import{p as e,b as a}from"./p-6eb37ed2.js";export{s as setNonce}from"./p-6eb37ed2.js";import{g as t}from"./p-76c08334.js";import"./p-3edf491f.js";import"./p-a7ca67b9.js";import"./p-416c0818.js";(()=>{const a=import.meta.url,t={};return""!==a&&(t.resourcesUrl=new URL(".",a).href),e(t)})().then((async e=>(await t(),a(JSON.parse('[["p-941ec574",[[0,"crowdsource-manager",{"appLayout":[1025,"app-layout"],"appProxies":[8,"app-proxies"],"basemapConfig":[16],"coverPageEnabled":[4,"cover-page-enabled"],"customInfoText":[1,"custom-info-text"],"defaultCenter":[1,"default-center"],"defaultGlobalId":[1,"default-global-id"],"defaultLayer":[1,"default-layer"],"defaultLevel":[1,"default-level"],"defaultOid":[1,"default-oid"],"defaultWebmap":[1,"default-webmap"],"introductionWindowEnabled":[4,"introduction-window-enabled"],"enableAutoRefresh":[4,"enable-auto-refresh"],"enableBasemap":[4,"enable-basemap"],"enableColumnReorder":[4,"enable-column-reorder"],"enableCSV":[4,"enable-c-s-v"],"enableFloorFilter":[4,"enable-floor-filter"],"enableFullscreen":[4,"enable-fullscreen"],"enableHome":[4,"enable-home"],"enableLegend":[4,"enable-legend"],"enableSearch":[4,"enable-search"],"enableShare":[4,"enable-share"],"enableZoom":[4,"enable-zoom"],"mapInfos":[16],"onlyShowUpdatableLayers":[4,"only-show-updatable-layers"],"popupHeaderColor":[1,"popup-header-color"],"popupHeaderHoverColor":[1,"popup-header-hover-color"],"popupHeaderHoverTextColor":[1,"popup-header-hover-text-color"],"popupHeaderTextColor":[1,"popup-header-text-color"],"searchConfiguration":[16],"shareIncludeEmbed":[4,"share-include-embed"],"shareIncludeSocial":[4,"share-include-social"],"showNewestFirst":[4,"show-newest-first"],"theme":[1],"zoomAndScrollToSelected":[4,"zoom-and-scroll-to-selected"],"zoomToScale":[2,"zoom-to-scale"],"_enableCreateFeatures":[32],"_hideFooter":[32],"_hideTable":[32],"_isMobile":[32],"_translations":[32],"_layer":[32],"_layoutMode":[32],"_mapInfo":[32],"_mapView":[32],"_panelOpen":[32],"_numSelected":[32],"_filterOpen":[32],"_showInformationHeader":[32]},[[8,"featureSelectionChange","featureSelectionChange"],[8,"popupClosed","popupClosed"],[8,"layoutChanged","layoutChanged"],[8,"mapChanged","mapChanged"],[8,"layerSelectionChange","layerSelectionChange"]],{"enableZoom":["enableZoomWatchHandler"]}]]],["p-4115fcd2",[[0,"crowdsource-reporter",{"center":[1],"commentButtonText":[1,"comment-button-text"],"commentSubmittedMessage":[1,"comment-submitted-message"],"defaultWebmap":[1,"default-webmap"],"description":[1],"enableAnonymousAccess":[4,"enable-anonymous-access"],"enableAnonymousComments":[4,"enable-anonymous-comments"],"enableComments":[4,"enable-comments"],"enableHome":[4,"enable-home"],"enableLogin":[4,"enable-login"],"enableNewReports":[4,"enable-new-reports"],"enableSearch":[4,"enable-search"],"enableZoom":[4,"enable-zoom"],"isMobile":[4,"is-mobile"],"layerExpressions":[16],"layerId":[1,"layer-id"],"level":[1],"loginTitle":[1,"login-title"],"mapInfos":[16],"mapView":[16],"objectId":[1,"object-id"],"reportButtonText":[1,"report-button-text"],"reportingOptions":[16],"reportsHeader":[1,"reports-header"],"reportSubmittedMessage":[1,"report-submitted-message"],"searchConfiguration":[16],"showComments":[4,"show-comments"],"showUserImageInCommentsList":[4,"show-user-image-in-comments-list"],"showFeatureSymbol":[4,"show-feature-symbol"],"showMyReportsOnly":[4,"show-my-reports-only"],"theme":[1],"zoomToScale":[2,"zoom-to-scale"],"floorLevel":[1,"floor-level"],"_featureCreationFailedErrorMsg":[32],"_filterActive":[32],"_flowItems":[32],"_hasValidLayers":[32],"_loadingFeatureDetails":[32],"_mapInfo":[32],"_reportSubmitted":[32],"_selectedLayerName":[32],"_showSubmitCancelButton":[32],"_showLoadingIndicator":[32],"_sidePanelCollapsed":[32],"_translations":[32],"_updatedProgressBarStatus":[32],"_updatedSorting":[32],"_updatedSortOption":[32],"_commentSubmitted":[32],"_addingCommentFailed":[32]},null,{"isMobile":["isMobileWatchHandler"],"mapView":["mapViewWatchHandler"],"floorLevel":["floorLevelWatchHandler"]}]]],["p-17f35552",[[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"],"enableLayerFeatures":[4,"enable-layer-features"],"enableLayerFeaturesOnLoad":[4,"enable-layer-features-on-load"],"enableSearchDistance":[4,"enable-search-distance"],"enableSearchDistanceOnLoad":[4,"enable-search-distance-on-load"],"enableSketchTools":[4,"enable-sketch-tools"],"featureEffect":[16],"featureHighlightEnabled":[4,"feature-highlight-enabled"],"locale":[1],"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"],"_exportGraphics":[32],"_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-1803e66b",[[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-458a3f01",[[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-3a4fbcf6",[[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-871b9b39",[[1,"calcite-color-picker",{"allowEmpty":[516,"allow-empty"],"alphaChannel":[4,"alpha-channel"],"channelsDisabled":[4,"channels-disabled"],"clearable":[516],"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],"channelMode":[32],"channels":[32],"defaultMessages":[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"]],{"allowEmpty":["handleAllowEmptyOrClearableChange"],"clearable":["handleAllowEmptyOrClearableChange"],"alphaChannel":["handleAlphaChannelChange","handleAlphaChannelDimensionsChange","handleFormatOrAlphaChannelChange"],"dimensions":["handleAlphaChannelDimensionsChange"],"color":["handleColorChange"],"format":["handleFormatOrAlphaChannelChange"],"scale":["handleScaleChange"],"messageOverrides":["onMessagesChange"],"value":["handleValueChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-27a25ece",[[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-981ab7fc",[[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"],"view":["watchView"]}]]],["p-3a839252",[[1,"pci-calculator",{"showAddDeduct":[32]}]]],["p-7987d73b",[[1,"consent-manager",{"firstUseVar":[1,"first-use-var"],"measurementIds":[16],"portal":[16],"_shouldRender":[32],"_translations":[32],"getInstance":[64]}]]],["p-886fbbe3",[[1,"instant-apps-keyboard-shortcuts",{"view":[16],"messages":[32]}]]],["p-004d601f",[[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"],"enableSignIn":[4,"enable-sign-in"],"portal":[16],"oauthappid":[1]},null,{"open":["emitToggleEvent"]}]]],["p-32b1bb0a",[[1,"calcite-dialog",{"beforeClose":[16],"description":[1],"dragEnabled":[516,"drag-enabled"],"closeDisabled":[516,"close-disabled"],"embedded":[1028],"escapeDisabled":[516,"escape-disabled"],"heading":[1],"headingLevel":[514,"heading-level"],"kind":[513],"loading":[516],"menuOpen":[516,"menu-open"],"messages":[1040],"messageOverrides":[1040],"modal":[516],"open":[1540],"outsideCloseDisabled":[516,"outside-close-disabled"],"overlayPositioning":[513,"overlay-positioning"],"placement":[513],"resizable":[516],"scale":[513],"widthScale":[513,"width-scale"],"opened":[32],"hasFooter":[32],"hasContentTop":[32],"hasContentBottom":[32],"effectiveLocale":[32],"defaultMessages":[32],"assistiveText":[32],"setFocus":[64],"updateFocusTrapElements":[64],"scrollContentTo":[64]},[[8,"keydown","handleEscape"]],{"messageOverrides":["onMessagesChange"],"modal":["onModalChange"],"effectiveLocale":["effectiveLocaleChange"],"open":["handleInteractionChange","toggleDialog"],"placement":["handleInteractionChange"],"resizable":["handleInteractionChange","updateAssistiveText"],"dragEnabled":["handleInteractionChange","updateAssistiveText"],"messages":["updateAssistiveText"],"opened":["handleOpenedChange"]}]]],["p-30448906",[[17,"calcite-input-time-picker",{"open":[1540],"disabled":[516],"focusTrapDisabled":[516,"focus-trap-disabled"],"form":[513],"readOnly":[516,"read-only"],"max":[513],"min":[513],"messageOverrides":[1040],"messages":[1040],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"validity":[1040],"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-ae8ed06a",[[1,"instant-apps-export-views",{"output":[1040],"beforeExport":[16],"popoverIcon":[1,"popover-icon"],"includeLegend":[1028,"include-legend"],"includeMap":[1028,"include-map"],"includePopup":[1028,"include-popup"],"includeHeader":[1028,"include-header"],"mode":[513],"popoverPositioning":[1,"popover-positioning"],"popoverPlacement":[1,"popover-placement"],"scale":[1],"showIncludeLegend":[4,"show-include-legend"],"showIncludeMap":[4,"show-include-map"],"showIncludePopup":[4,"show-include-popup"],"showIncludeHeader":[4,"show-include-header"],"showScaleBar":[4,"show-scale-bar"],"exportViews":[16],"baseClass":[32],"exportIsLoading":[32],"messages":[32]},null,{"includeMap":["watchIncludeMap"],"exportViews":["watchView"]}]]],["p-c9193d36",[[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"],"outsideCloseDisabled":[4,"outside-close-disabled"],"secondaryButton":[4,"secondary-button"],"secondaryButtonText":[1,"secondary-button-text"],"secondaryButtonIcon":[1,"secondary-button-icon"],"secondaryButtonCallback":[16],"messages":[32]},null,{"content":["sanitizeContent"]}]]],["p-288599db",[[17,"calcite-input-time-zone",{"clearable":[516],"disabled":[516],"form":[513],"maxItems":[514,"max-items"],"messages":[1040],"messageOverrides":[1040],"mode":[513],"offsetStyle":[513,"offset-style"],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"validity":[1040],"name":[513],"open":[1540],"overlayPositioning":[513,"overlay-positioning"],"referenceDate":[1,"reference-date"],"required":[516],"scale":[513],"status":[513],"value":[1025],"readOnly":[516,"read-only"],"defaultMessages":[32],"effectiveLocale":[32],"setFocus":[64]},null,{"messageOverrides":["onMessagesChange"],"messages":["handleTimeZoneItemPropsChange"],"mode":["handleTimeZoneItemPropsChange"],"referenceDate":["handleTimeZoneItemPropsChange"],"value":["handleValueChange"],"effectiveLocale":["effectiveLocaleWatcher"]}]]],["p-b4f15b86",[[1,"calcite-table",{"bordered":[516],"caption":[1],"groupSeparator":[516,"group-separator"],"interactionMode":[513,"interaction-mode"],"layout":[513],"numbered":[516],"numberingSystem":[513,"numbering-system"],"pageSize":[514,"page-size"],"scale":[513],"selectionMode":[513,"selection-mode"],"selectionDisplay":[513,"selection-display"],"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"],"interactionMode":["handleNumberedChange"],"numbered":["handleNumberedChange"],"numberingSystem":["handleNumberedChange"],"pageSize":["handleNumberedChange"],"scale":["handleNumberedChange"],"selectionMode":["handleNumberedChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-b4d92441",[[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-4ebde78c",[[0,"instant-apps-time-filter",{"timeInfoConfigItems":[16],"filterMode":[16],"view":[16],"timeSliderConfig":[16],"autoPlay":[4,"auto-play"],"timeSliderRef":[32]},null,{"timeInfoConfigItems":["updateTimeInfoConfigItems"],"filterMode":["updateFilterMode"],"timeSliderConfig":["updateTimeSliderConfig"],"autoPlay":["updateAutoPlay"]}]]],["p-51f2cd4b",[[1,"layout-manager",{"_translations":[32]}]]],["p-d34db378",[[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-b6ac459a",[[1,"calcite-card",{"loading":[516],"thumbnailPosition":[513,"thumbnail-position"],"disabled":[516],"label":[1],"selectable":[516],"selected":[1540],"messages":[1040],"selectionMode":[1,"selection-mode"],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"hasContent":[32],"setFocus":[64]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-6eba7557",[[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-034291c9",[[17,"calcite-split-button",{"appearance":[513],"kind":[513],"disabled":[516],"active":[1540],"dropdownIconType":[513,"dropdown-icon-type"],"dropdownLabel":[513,"dropdown-label"],"flipPlacements":[16],"loading":[516],"overlayPositioning":[513,"overlay-positioning"],"placement":[513],"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-313fcf40",[[1,"instant-apps-create",{"popoverIcon":[1,"popover-icon"],"mode":[513],"popoverPositioning":[1,"popover-positioning"],"popoverPlacement":[1,"popover-placement"],"showHeader":[4,"show-header"],"content":[16],"options":[16],"portal":[16],"baseClass":[32],"messages":[32],"CreateOptionsLookup":[32]},null,{"content":["contentChanged"]}]]],["p-e5736093",[[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-5a76a4c8",[[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-6f98db75",[[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-b134cc53",[[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-e85ca9f5",[[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-9edd6de9",[[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],"nextStep":[64],"prevStep":[64],"goToStep":[64],"startStep":[64],"endStep":[64]},[[0,"calciteInternalStepperItemKeyEvent","calciteInternalStepperItemKeyEvent"],[0,"calciteInternalStepperItemRegister","registerItem"],[0,"calciteInternalStepperItemSelect","updateItem"],[0,"calciteStepperItemSelect","handleItemSelect"]],{"icon":["handleItemPropChange"],"layout":["handleItemPropChange"],"numbered":["handleItemPropChange"],"scale":["handleItemPropChange"],"numberingSystem":["numberingSystemChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"],"currentActivePosition":["handlePositionChange"]}]]],["p-461d72a9",[[1,"calcite-table-row",{"alignment":[513],"disabled":[516],"selected":[516],"cellCount":[1026,"cell-count"],"interactionMode":[1,"interaction-mode"],"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"],"interactionMode":["handleCellChanges"],"numbered":["handleDelayedCellChanges"],"selectionMode":["handleDelayedCellChanges"]}]]],["p-abd99f2b",[[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-432d7aac",[[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-a2613102",[[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-57729067",[[1,"calcite-block-section",{"iconEnd":[513,"icon-end"],"iconFlipRtl":[513,"icon-flip-rtl"],"iconStart":[513,"icon-start"],"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-2483d087",[[1,"calcite-carousel",{"autoplay":[520],"arrowType":[513,"arrow-type"],"autoplayDuration":[514,"autoplay-duration"],"controlOverlay":[516,"control-overlay"],"disabled":[516],"label":[1],"messages":[1040],"messageOverrides":[1040],"paused":[1028],"selectedItem":[1040],"selectedIndex":[32],"items":[32],"direction":[32],"defaultMessages":[32],"playing":[32],"suspendedDueToFocus":[32],"suspendedDueToHover":[32],"userPreventsSuspend":[32],"effectiveLocale":[32],"suspendedSlideDurationRemaining":[32],"slideDurationRemaining":[32],"setFocus":[64],"play":[64],"stop":[64]},null,{"autoplay":["autoplayWatcher"],"messageOverrides":["onMessagesChange"],"direction":["directionWatcher"],"playing":["playingWatcher"],"suspendedDueToFocus":["suspendWatcher"],"suspendedDueToHover":["suspendWatcher"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-abd443e4",[[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-d3b61974",[[1,"calcite-sheet",{"beforeClose":[16],"displayMode":[513,"display-mode"],"embedded":[4],"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],"widthScale":[513,"width-scale"],"setFocus":[64],"updateFocusTrapElements":[64]},[[8,"keydown","handleEscape"]],{"focusTrapDisabled":["handleFocusTrapDisabled"],"open":["toggleSheet"],"opened":["handleOpenedChange"]}]]],["p-e2263afa",[[1,"calcite-tile",{"active":[516],"alignment":[513],"description":[513],"disabled":[516],"embed":[516],"heading":[513],"href":[513],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"interactive":[4],"label":[1],"layout":[513],"scale":[513],"selected":[516],"selectionAppearance":[513,"selection-appearance"],"selectionMode":[513,"selection-mode"],"hasContentBottom":[32],"hasContentEnd":[32],"hasContentStart":[32],"hasContentTop":[32],"setFocus":[64]},[[0,"keydown","keyDownHandler"]]]]],["p-b1b88bb9",[[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],"setFocus":[64]},[[0,"keydown","keyDownHandler"],[16,"calciteInternalAccordionChange","updateActiveItemOnChange"],[4,"calciteInternalAccordionItemsSync","accordionItemSyncHandler"]]]]],["p-042c0134",[[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],"headingLevel":[514,"heading-level"],"setFocus":[64]}]]],["p-cde4f891",[[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],"messageOverrides":[1040],"defaultMessages":[32],"effectiveLocale":[32],"setFocus":[64]},[[16,"calciteInternalStepperItemChange","updateActiveItemOnChange"]],{"selected":["selectedHandler"],"disabled":["disabledWatcher"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleWatcher"]}]]],["p-7a641e36",[[1,"arcgis-login"]]],["p-8704c6df",[[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-26ccfcc6",[[1,"calcite-card-group",{"disabled":[516],"label":[1],"selectionMode":[513,"selection-mode"],"selectedItems":[1040],"setFocus":[64]},[[0,"calciteInternalCardKeyEvent","calciteInternalCardKeyEventListener"],[0,"calciteCardSelect","calciteCardSelectListener"]],{"selectionMode":["onSelectionModeChange"]}]]],["p-7090b8bc",[[1,"calcite-carousel-item",{"label":[1],"selected":[516]}]]],["p-4a8da1a3",[[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"],[0,"calciteInternalChipSelect","calciteInternalChipSelectListener"],[0,"calciteInternalSyncSelectedChips","calciteInternalSyncSelectedChips"]],{"selectionMode":["onSelectionModeChange"]}]]],["p-74bd8ced",[[1,"calcite-list-item-group",{"disabled":[516],"filterHidden":[516,"filter-hidden"],"heading":[513]}]]],["p-e6ac93e5",[[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-c7bfe120",[[1,"calcite-option-group",{"disabled":[516],"label":[1]},null,{"disabled":["handlePropChange"],"label":["handlePropChange"]}]]],["p-3ae3fb2d",[[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-ade4a0c0",[[1,"calcite-pick-list-group",{"groupTitle":[513,"group-title"],"headingLevel":[514,"heading-level"]}]]],["p-e7ce7ab5",[[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-f3cd6339",[[1,"calcite-shell-center-row",{"detached":[516],"heightScale":[513,"height-scale"],"position":[513]}]]],["p-cc5e8fec",[[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-949a8cb7",[[1,"calcite-text-area",{"columns":[514],"disabled":[516],"form":[513],"groupSeparator":[516,"group-separator"],"label":[1],"minLength":[514,"min-length"],"maxLength":[514,"max-length"],"messages":[1040],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"validity":[1040],"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,{"autofocus":["handleGlobalAttributesChanged"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-b24985b0",[[1,"calcite-tile-group",{"alignment":[513],"disabled":[516],"label":[1],"layout":[513],"scale":[513],"selectedItems":[1040],"selectionAppearance":[513,"selection-appearance"],"selectionMode":[513,"selection-mode"]},[[0,"calciteInternalTileKeyEvent","calciteInternalTileKeyEventListener"],[0,"calciteTileSelect","calciteTileSelectHandler"]],{"scale":["scaleWatcher"],"selectionMode":["handleSelectionModeOrAppearanceChange"],"selectionAppearance":["handleSelectionModeOrAppearanceChange"]}]]],["p-1c45b737",[[1,"calcite-tile-select-group",{"disabled":[516],"layout":[513]}]]],["p-7fa53f88",[[1,"calcite-tip-group",{"groupTitle":[1,"group-title"]}]]],["p-4e44d681",[[1,"feature-comments"]]],["p-fc62c04b",[[1,"feature-form-flow-item"]]],["p-10a4512a",[[1,"features-flow-item"]]],["p-976ad17d",[[1,"instant-apps-control-panel",{"components":[16],"view":[16]}]]],["p-8208ba6c",[[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-b1a053c7",[[1,"list-flow-item"]]],["p-19879c48",[[1,"location-flow-item"]]],["p-16af273f",[[1,"refine-results-flow-item"]]],["p-15cbdc2c",[[1,"share-item"]]],["p-960baebc",[[0,"store-manager",{"value":[1537],"templates":[1040],"authentication":[1040],"getStoreInfo":[64]}]]],["p-a0b62b46",[[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-93d8ef73",[[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-f123e913",[[1,"deduct-calculator"]]],["p-254f6e23",[[1,"instant-apps-sign-in",{"type":[1],"portal":[16],"oauthappid":[1],"openInPopup":[4,"open-in-popup"],"landingPage":[4,"landing-page"],"titleText":[1,"title-text"],"subtitleText":[1,"subtitle-text"],"descriptionText":[1,"description-text"],"closeLandingPage":[16],"signInDropdownItems":[16],"isSignedIn":[32],"user":[32],"ready":[32],"messages":[32]},null,{"portal":["watchPortal"],"oauthappid":["watchOauthappid"]}]]],["p-a6aba7d4",[[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],"toggleInfo":[64]},null,{"customHeaderHtml":["sanitizeCustomHeaderHtml"]}]]],["p-51eb6427",[[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-0b0d30a9",[[1,"calcite-combobox-item-group",{"afterEmptyGroup":[516,"after-empty-group"],"ancestors":[1040],"label":[1],"scale":[1]}]]],["p-29a24832",[[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-860452b5",[[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-89bd8016",[[1,"calcite-loader",{"inline":[516],"label":[1],"scale":[513],"type":[513],"value":[2],"text":[1],"effectiveLocale":[32]},null,{"effectiveLocale":["formatterPropsChange"],"type":["formatterPropsChange"]}],[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-e060bbf4",[[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"],"highlightOnHover":[4,"highlight-on-hover"],"sortingInfo":[16],"whereClause":[1,"where-clause"],"textSize":[1,"text-size"],"showInitialLoading":[4,"show-initial-loading"],"showErrorWhenNoFeatures":[4,"show-error-when-no-features"],"showUserImageInList":[4,"show-user-image-in-list"],"showFeatureSymbol":[4,"show-feature-symbol"],"applyLayerViewFilter":[4,"apply-layer-view-filter"],"reportingOptions":[16],"_featureItems":[32],"_featuresCount":[32],"_isLoading":[32],"_translations":[32],"refresh":[64]},null,{"selectedLayerId":["selectedLayerWatchHandler"],"sortingInfo":["sortingInfoWatchHandler"],"whereClause":["whereClauseHandler"]}]]],["p-d9110df1",[[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-9a4f0ae3",[[1,"calcite-input-number",{"alignment":[513],"autofocus":[4],"clearable":[516],"disabled":[516],"enterKeyHint":[1,"enter-key-hint"],"form":[513],"groupSeparator":[516,"group-separator"],"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"inputMode":[1,"input-mode"],"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"],"validity":[1040],"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],"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,{"autofocus":["handleGlobalAttributesChanged"],"enterkeyhint":["handleGlobalAttributesChanged"],"inputmode":["handleGlobalAttributesChanged"],"disabled":["disabledWatcher"],"max":["maxWatcher"],"min":["minWatcher"],"messageOverrides":["onMessagesChange"],"value":["valueWatcher"],"icon":["updateRequestedIcon"],"effectiveLocale":["effectiveLocaleWatcher"]}]]],["p-8feb21be",[[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-eec49294",[[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-8343f841",[[1,"calcite-table-header",{"alignment":[513],"colSpan":[514,"col-span"],"description":[513],"heading":[513],"rowSpan":[514,"row-span"],"interactionMode":[1,"interaction-mode"],"lastCell":[4,"last-cell"],"numberCell":[4,"number-cell"],"parentRowAlignment":[1,"parent-row-alignment"],"parentRowIsSelected":[4,"parent-row-is-selected"],"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],"focused":[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],"interactionMode":[1,"interaction-mode"],"lastCell":[4,"last-cell"],"numberCell":[4,"number-cell"],"parentRowIsSelected":[4,"parent-row-is-selected"],"parentRowAlignment":[1,"parent-row-alignment"],"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-88e391ab",[[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-1fcd444d",[[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-b715fe7e",[[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],"validity":[1040],"value":[8],"setFocus":[64]}]]],["p-e191b864",[[1,"calcite-input-text",{"alignment":[513],"autofocus":[4],"clearable":[516],"disabled":[516],"enterKeyHint":[1,"enter-key-hint"],"form":[513],"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"inputMode":[1,"input-mode"],"label":[1],"loading":[516],"maxLength":[514,"max-length"],"minLength":[514,"min-length"],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"validity":[1040],"name":[513],"placeholder":[1],"prefixText":[1,"prefix-text"],"readOnly":[516,"read-only"],"required":[516],"scale":[513],"status":[513],"autocomplete":[1],"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,{"autofocus":["handleGlobalAttributesChanged"],"enterkeyhint":["handleGlobalAttributesChanged"],"inputmode":["handleGlobalAttributesChanged"],"disabled":["disabledWatcher"],"messageOverrides":["onMessagesChange"],"value":["valueWatcher"],"icon":["updateRequestedIcon"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-6b2ea220",[[1,"calcite-switch",{"disabled":[516],"form":[513],"label":[1],"name":[513],"scale":[513],"checked":[1540],"value":[8],"setFocus":[64]}]]],["p-9bfb0a88",[[17,"calcite-slider",{"disabled":[516],"fillPlacement":[513,"fill-placement"],"form":[513],"groupSeparator":[516,"group-separator"],"hasHistogram":[1540,"has-histogram"],"histogram":[16],"histogramStops":[16],"labelHandles":[516,"label-handles"],"labelFormatter":[16],"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]},[[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-f2e30760",[[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-d7f00451",[[1,"calcite-scrim",{"loading":[516],"messages":[1040],"messageOverrides":[1040],"loaderScale":[32],"defaultMessages":[32],"effectiveLocale":[32],"hasContent":[32]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-0129abe8",[[1,"calcite-button",{"alignment":[513],"appearance":[513],"label":[1],"kind":[513],"disabled":[516],"form":[513],"download":[520],"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],"effectiveLocale":[32],"defaultMessages":[32],"tooltipText":[32],"setFocus":[64]},null,{"aria-expanded":["handleGlobalAttributesChanged"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-81012aaa",[[1,"map-picker",{"mapInfos":[16],"isMapLayout":[4,"is-map-layout"],"_mapListExpanded":[32],"_translations":[32],"_webMapInfo":[32],"setMapByID":[64],"close":[64],"toggle":[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"],"enabled":["enabledWatchHandler"]}],[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-fbd8a250",[[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],"setFocus":[64]},[[1,"pointerover","pointerOverHandler"]]]]],["p-a8638d44",[[1,"calcite-label",{"alignment":[513],"for":[513],"scale":[513],"layout":[513]},null,{"for":["handleForChange"]}]]],["p-6d369f32",[[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-8145011e",[[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":[513],"setFocus":[64]},[[0,"click","onClick"],[0,"keydown","keyDownHandler"],[16,"calciteInternalDropdownItemChange","updateActiveItemOnChange"]]],[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]},[[8,"click","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-ac40d2a6",[[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":[513],"selectionMode":[513,"selection-mode"]},[[0,"calciteInternalDropdownItemSelect","updateActiveItemOnChange"]],{"selectionMode":["handlePropsChange"]}],[1,"calcite-combobox",{"clearDisabled":[516,"clear-disabled"],"filterText":[1537,"filter-text"],"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"],"validity":[1040],"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],"readOnly":[516,"read-only"],"items":[32],"groupItems":[32],"needsIcon":[32],"activeItemIndex":[32],"activeChipIndex":[32],"activeDescendant":[32],"compactSelectionDisplay":[32],"selectedHiddenChipsCount":[32],"selectedVisibleChipsCount":[32],"effectiveLocale":[32],"defaultMessages":[32],"reposition":[64],"setFocus":[64]},[[4,"click","documentClickHandler"],[0,"calciteComboboxItemChange","calciteComboboxItemChangeHandler"],[0,"calciteInternalComboboxItemChange","calciteInternalComboboxItemChangeHandler"]],{"filterText":["filterTextChange"],"open":["openHandler"],"disabled":["handleDisabledChange"],"maxItems":["maxItemsHandler"],"overlayPositioning":["overlayPositioningHandler"],"selectionMode":["handlePropsChange"],"scale":["handlePropsChange"],"value":["valueHandler"],"messageOverrides":["onMessagesChange"],"flipPlacements":["flipPlacementsHandler"],"selectedItems":["selectedItemsHandler"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-c62bd2a0",[[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"]}],[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],"embedded":[1028],"escapeDisabled":[516,"escape-disabled"],"scale":[513],"widthScale":[513,"width-scale"],"fullscreen":[516],"kind":[513],"messages":[1040],"messageOverrides":[1040],"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"]}],[1,"calcite-shell",{"contentBehind":[516,"content-behind"],"hasHeader":[32],"hasFooter":[32],"hasAlerts":[32],"hasModals":[32],"hasDialogs":[32],"hasSheets":[32],"hasPanelTop":[32],"hasPanelBottom":[32],"hasOnlyPanelBottom":[32],"panelIsResizing":[32]},[[0,"calciteInternalShellPanelResizeStart","handleCalciteInternalShellPanelResizeStart"],[0,"calciteInternalShellPanelResizeEnd","handleCalciteInternalShellPanelResizeEnd"]],{"hasPanelTop":["updateHasOnlyPanelBottom"],"hasPanelBottom":["updateHasOnlyPanelBottom"]}]]],["p-e2d9c1e4",[[1,"calcite-select",{"disabled":[516],"form":[513],"label":[1],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"validity":[1040],"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"]}]]],["p-5501cb25",[[1,"calcite-combobox-item",{"active":[516],"ancestors":[1040],"description":[1],"disabled":[516],"filterDisabled":[516,"filter-disabled"],"filterTextMatchPattern":[16],"guid":[513],"icon":[513],"iconFlipRtl":[516,"icon-flip-rtl"],"metadata":[16],"scale":[1],"selected":[1540],"selectionMode":[513,"selection-mode"],"shortHeading":[1,"short-heading"],"heading":[1],"textLabel":[513,"text-label"],"value":[8],"label":[8]},null,{"disabled":["handleComboboxItemPropsChange"],"textLabel":["handleComboboxItemPropsChange"],"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],"parentChipGroup":[16],"defaultMessages":[32],"effectiveLocale":[32],"hasText":[32],"hasImage":[32],"setFocus":[64]},[[0,"keydown","keyDownHandler"],[0,"click","clickHandler"]],{"selected":["watchSelected"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-fde2ea30",[[0,"layer-table",{"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"],"mapHidden":[4,"map-hidden"],"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"],"zoomToScale":[2,"zoom-to-scale"],"createFilterModal":[4,"create-filter-modal"],"_allIds":[32],"_controlsThatFit":[32],"_csvExporting":[32],"_fetchingData":[32],"_filterActive":[32],"_filterOpen":[32],"_layer":[32],"_selectAllActive":[32],"_showHideOpen":[32],"_showOnlySelected":[32],"_toolInfos":[32],"_translations":[32],"_fullTextSearchInfo":[32],"_searchPlaceHolder":[32],"filterReset":[64],"filterUpdate":[64],"closeFilter":[64],"refresh":[64]},[[8,"selectionChanged","selectionChanged"],[8,"layerSelectionChange","layerSelectionChange"],[8,"editsComplete","editsComplete"],[8,"facilityChanged","facilityChanged"],[8,"levelChanged","levelChanged"],[8,"siteChanged","siteChanged"],[8,"noLayersFound","noLayersFound"]],{"defaultOid":["defaultOidWatchHandler"],"defaultGlobalId":["defaultGlobalIdWatchHandler"],"enableCSV":["enableCSVWatchHandler"],"enableInlineEdit":["enableInlineEditWatchHandler"],"enableShare":["enableShareWatchHandler"],"_controlsThatFit":["_controlsThatFitWatchHandler"],"mapHidden":["mapHiddenWatchHandler"],"isMobile":["isMobileWatchHandler"],"mapInfo":["mapInfoWatchHandler"],"mapView":["mapViewWatchHandler"],"_layer":["_layerWatchHandler"],"selectedIds":["selectedIdsWatchHandler"]}],[0,"map-card",{"appProxies":[8,"app-proxies"],"defaultWebmapId":[1,"default-webmap-id"],"defaultLayerId":[1,"default-layer-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],"isMapLayout":[4,"is-map-layout"],"selectedFeaturesIds":[16],"selectedLayer":[16],"zoomToScale":[2,"zoom-to-scale"],"onlyShowUpdatableLayers":[4,"only-show-updatable-layers"],"isMobile":[4,"is-mobile"],"mapInfo":[16],"_translations":[32],"_searchConfiguration":[32],"_webMapInfo":[32],"_showHideOpen":[32],"filterReset":[64],"updateFilter":[64]},[[8,"mapInfoChange","mapInfoChange"],[8,"noLayersFound","noLayersFound"]],{"enableHome":["enableHomeWatchHandler"],"selectedLayer":["selectedLayerWatchHandler"]}],[0,"card-manager",{"customInfoText":[1,"custom-info-text"],"enableEditGeometry":[4,"enable-edit-geometry"],"isMobile":[4,"is-mobile"],"layer":[1040],"mapView":[16],"zoomAndScrollToSelected":[4,"zoom-and-scroll-to-selected"],"selectedFeaturesIds":[16],"enableCreateFeatures":[4,"enable-create-features"],"_cardLoading":[32],"_graphics":[32],"_showCreateFeatureComponent":[32],"_showSubmitBtn":[32],"_translations":[32]},[[8,"featureSelectionChange","featureSelectionChange"],[8,"layerSelectionChange","layerSelectionChange"]]]]],["p-23c70a46",[[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],"hasSlottedContent":[32]},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"],"validity":[1040],"width":[513],"setFocus":[64]},[[0,"calciteInternalSegmentedControlItemChange","handleSelected"],[0,"keydown","handleKeyDown"]],{"appearance":["handlePropsChange"],"layout":["handlePropsChange"],"scale":["handlePropsChange"],"value":["valueHandler"],"selectedItem":["handleSelectedItemChange"]}]]],["p-18103eee",[[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],"goTo":[64]},null,{"messageOverrides":["onMessagesChange"],"totalItems":["handleTotalPages","handleLastStartItemChange"],"pageSize":["handleTotalPages","handleLastStartItemChange"],"effectiveLocale":["effectiveLocaleChange","effectiveLocaleWatcher"],"totalPages":["handleLastStartItemChange"],"maxItems":["handleIsXXSmall"]}]]],["p-42903dc4",[[1,"calcite-input",{"alignment":[513],"autofocus":[4],"clearable":[516],"disabled":[516],"enterKeyHint":[1,"enter-key-hint"],"form":[513],"groupSeparator":[516,"group-separator"],"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"inputMode":[1,"input-mode"],"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"],"validity":[1040],"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],"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,{"autofocus":["handleGlobalAttributesChanged"],"enterkeyhint":["handleGlobalAttributesChanged"],"inputmode":["handleGlobalAttributesChanged"],"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-72b4bf7a",[[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"]}],[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"]}]]],["p-5fcdc5af",[[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-111ff298",[[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],"filterProps":[16],"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,"calciteInternalListItemToggle","handleCalciteListItemToggle"],[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"],"filterProps":["handlefilterPropsChange"],"messageOverrides":["onMessagesChange"],"filterEnabled":["handleListItemChange"],"group":["handleListItemChange"],"dragEnabled":["handleListItemChange"],"selectionMode":["handleListItemChange"],"selectionAppearance":["handleListItemChange"],"effectiveLocale":["effectiveLocaleChange"]}],[1,"calcite-list-item",{"active":[4],"bordered":[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],"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"],"open":["handleOpenChange"],"selected":["handleSelectedChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[17,"calcite-filter",{"items":[16],"disabled":[516],"filteredItems":[1040],"filterProps":[16],"placeholder":[1],"scale":[513],"value":[1025],"messages":[1040],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"filter":[64],"setFocus":[64]},null,{"items":["watchItemsHandler"],"filterProps":["filterPropsHandler"],"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":[1040],"setPosition":[2,"set-position"],"setSize":[2,"set-size"],"label":[1],"blurUnselectDisabled":[4,"blur-unselect-disabled"],"messageOverrides":[1040],"effectiveLocale":[32],"defaultMessages":[32],"setFocus":[64]},null,{"messages":["handleAriaTextChange"],"label":["handleAriaTextChange"],"selected":["handleAriaTextChange"],"setPosition":["handleAriaTextChange"],"setSize":["handleAriaTextChange"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}]]],["p-fc9301a3",[[0,"refine-selection",{"addresseeLayer":[16],"enabledLayerIds":[16],"locale":[1],"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],"enableLayerFeatures":[4,"enable-layer-features"],"enableLayerFeaturesOnLoad":[4,"enable-layer-features-on-load"],"enableSearchDistance":[4,"enable-search-distance"],"enableSearchDistanceOnLoad":[4,"enable-search-distance-on-load"],"enableSketchTools":[4,"enable-sketch-tools"],"defaultBufferDistance":[2,"default-buffer-distance"],"defaultBufferUnit":[1,"default-buffer-unit"],"geometries":[16],"isUpdate":[4,"is-update"],"layerViews":[16],"locale":[1],"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"],"mapView":["mapViewWatchHandler"],"searchConfiguration":["watchSearchConfigurationHandler"]}],[1,"pdf-download",{"defaultNumLabelsPerPage":[2,"default-num-labels-per-page"],"disabled":[4],"_translations":[32],"downloadCSV":[64],"downloadPDF":[64]}]]],["p-abafd987",[[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,"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-variables",{"value":[1537],"_solutionVariables":[32],"_translations":[32]},null,{"value":["valueWatchHandler"]}],[1,"calcite-tab-nav",{"storageId":[513,"storage-id"],"syncId":[513,"sync-id"],"selectedTitle":[1040],"scale":[1],"layout":[1537],"position":[1],"bordered":[1540],"messages":[1040],"messageOverrides":[1040],"defaultMessages":[32],"effectiveLocale":[32],"hasOverflowingStartTabTitle":[32],"hasOverflowingEndTabTitle":[32],"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"]],{"selectedTitle":["selectedTitleChanged"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"],"selectedTabId":["selectedTabIdChanged"]}],[0,"json-editor",{"hasChanges":[1540,"has-changes"],"hasErrors":[1540,"has-errors"],"instanceid":[1544],"value":[1544],"getEditorContents":[64],"prepareForDeletion":[64],"replaceCurrentSelection":[64],"reset":[64]}],[1,"solution-organization-variables",{"value":[1537],"_organizationVariables":[32],"_translations":[32]},null,{"value":["valueWatchHandler"]}],[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-tabs",{"layout":[513],"position":[513],"scale":[513],"bordered":[4],"titles":[32],"tabs":[32]},[[0,"calciteInternalTabNavSlotChange","calciteInternalTabNavSlotChangeHandler"]],{"position":["handleInheritableProps"],"scale":["handleInheritableProps"],"titles":["titlesWatcher"],"tabs":["tabsWatcher"]}],[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-ccc3f0c4",[[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-contents",{"selectedItemId":[1537,"selected-item-id"],"templateHierarchy":[1040]},null,{"templateHierarchy":["valueWatchHandler"]}],[0,"solution-spatial-ref",{"enabled":[1540],"enableDefault":[1540,"enable-default"],"featureServices":[1040],"_translations":[32],"_testAccess":[64]},[[8,"solutionStoreHasChanges","solutionStoreHasChanges"]],{"enabled":["enabledChanged"],"enableDefault":["enableDefaultChanged"]}]]],["p-792a8e91",[[1,"calcite-avatar",{"scale":[513],"thumbnail":[513],"fullName":[513,"full-name"],"username":[513],"userId":[513,"user-id"],"label":[1],"thumbnailFailedToLoad":[32]}]]],["p-c58a3ade",[[0,"feature-details",{"mapView":[16],"graphics":[16],"reportingOptions":[16],"layerItemsHash":[16],"showUserImageInCommentsList":[4,"show-user-image-in-comments-list"],"_likeFieldAvailable":[32],"_likeCount":[32],"_disLikeCount":[32],"_dislikeFieldAvailable":[32],"_commentsAvailable":[32],"_isLikeBtnClicked":[32],"_isDislikeBtnClicked":[32],"_relatedFeaturesOIDs":[32],"_updating":[32],"refresh":[64],"back":[64],"next":[64],"toggleListView":[64]},null,{"graphics":["graphicsWatchHandler"]}],[0,"layer-list",{"mapView":[16],"layers":[16],"showFeatureCount":[4,"show-feature-count"],"showNextIcon":[4,"show-next-icon"],"applyLayerViewFilter":[4,"apply-layer-view-filter"],"_noLayersToDisplay":[32],"_mapLayerIds":[32],"_isLoading":[32],"_translations":[32],"refresh":[64]}],[0,"create-related-feature",{"mapView":[16],"table":[16],"selectedFeature":[16],"customizeSubmit":[4,"customize-submit"],"_editorLoading":[32],"close":[64],"submit":[64]},null,{"mapView":["mapViewWatchHandler"],"_editorLoading":["_editorLoadingWatchHandler"]}],[1,"calcite-flow",{"customItemSelectors":[1,"custom-item-selectors"],"flowDirection":[32],"itemCount":[32],"items":[32],"back":[64],"setFocus":[64]},[[0,"calciteFlowItemBack","handleItemBackClick"]]]]],["p-c897ea6a",[[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-960a4993",[[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":[1032,"editor-instance"],"config":[16]},null,{"value":["updateValue"]}]]],["p-26a3ba5e",[[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-30903105",[[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-517bc39b",[[1,"calcite-panel",{"beforeClose":[16],"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"],"scale":[513],"isClosed":[32],"hasStartActions":[32],"hasEndActions":[32],"hasMenuItems":[32],"hasHeaderContent":[32],"hasActionBar":[32],"hasContentBottom":[32],"hasContentTop":[32],"hasFab":[32],"hasFooterActions":[32],"hasFooterContent":[32],"hasFooterEndContent":[32],"hasFooterStartContent":[32],"defaultMessages":[32],"effectiveLocale":[32],"showHeaderContent":[32],"setFocus":[64],"scrollContentTo":[64]},null,{"closed":["toggleDialog"],"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[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"]}]]],["p-f42cdeb6",[[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-873a5fd1",[[1,"instant-apps-filter-list",{"layerExpressions":[1040],"autoUpdateUrl":[4,"auto-update-url"],"closeBtn":[4,"close-btn"],"closeBtnOnClick":[16],"comboboxOverlayPositioning":[1,"combobox-overlay-positioning"],"closeBtnText":[1,"close-btn-text"],"openFilters":[4,"open-filters"],"extentSelector":[4,"extent-selector"],"extentSelectorConfig":[16],"urlParams":[1040],"filterCount":[1026,"filter-count"],"view":[16],"zoomBtn":[4,"zoom-btn"],"resetBtn":[4,"reset-btn"],"resetFiltersOnDisconnect":[4,"reset-filters-on-disconnect"],"loading":[32],"filterLayerExpressions":[32],"messages":[32],"baseClass":[32],"disabled":[32],"hasLayerExpression":[32],"initDefExpressions":[32],"initMapImageExpressions":[32],"initPointCloudFilters":[32],"getFilterInitState":[64],"forceReset":[64],"restoreFilters":[64]},null,{"view":["watchViewHandler"],"layerExpressions":["watchLayerExpressions"]}],[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"],"popoverPositioning":[513,"popover-positioning"],"removePopoverOffset":[516,"remove-popover-offset"],"messages":[32],"opened":[32],"copied":[32],"inlineCopyLinkOpened":[32],"inlineCopyEmbedOpened":[32],"embedWidth":[32],"embedHeight":[32]}],[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":[513],"max":[513],"open":[1540],"validationMessage":[1,"validation-message"],"validationIcon":[520,"validation-icon"],"validity":[1040],"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"],"effectiveLocale":["effectiveLocaleChange","handleDateTimeFormatChange"],"numberingSystem":["handleDateTimeFormatChange"],"layout":["setReferenceEl"],"focusedInput":["setReferenceEl"]}],[1,"calcite-block",{"collapsible":[516],"disabled":[516],"dragHandle":[516,"drag-handle"],"heading":[1],"headingLevel":[514,"heading-level"],"iconEnd":[513,"icon-end"],"iconFlipRtl":[513,"icon-flip-rtl"],"iconStart":[513,"icon-start"],"loading":[516],"open":[1540],"status":[513],"description":[1],"messages":[1040],"messageOverrides":[1040],"overlayPositioning":[513,"overlay-positioning"],"defaultMessages":[32],"effectiveLocale":[32],"hasContentStart":[32],"hasEndActions":[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-9ab5fbed",[[1,"calcite-flow-item",{"closable":[516],"closed":[516],"collapsed":[516],"collapseDirection":[1,"collapse-direction"],"collapsible":[516],"beforeBack":[16],"beforeClose":[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"],"scale":[513],"showBackButton":[4,"show-back-button"],"defaultMessages":[32],"effectiveLocale":[32],"setFocus":[64],"scrollContentTo":[64]},null,{"messageOverrides":["onMessagesChange"],"effectiveLocale":["effectiveLocaleChange"]}],[0,"create-feature",{"mapView":[16],"selectedLayerId":[1,"selected-layer-id"],"customizeSubmit":[4,"customize-submit"],"searchConfiguration":[16],"isMobile":[4,"is-mobile"],"floorLevel":[1,"floor-level"],"formElements":[8,"form-elements"],"enableSearch":[4,"enable-search"],"_editorLoading":[32],"_showSearchWidget":[32],"close":[64],"submit":[64],"refresh":[64]},null,{"mapView":["mapViewWatchHandler"],"isMobile":["isMobileHandler"],"_editorLoading":["_editorLoadingWatchHandler"]}],[0,"info-card",{"enableEditGeometry":[4,"enable-edit-geometry"],"graphics":[16],"isLoading":[4,"is-loading"],"isMobile":[4,"is-mobile"],"mapView":[16],"allowEditing":[4,"allow-editing"],"highlightEnabled":[4,"highlight-enabled"],"paginationEnabled":[4,"pagination-enabled"],"position":[1],"_alertOpen":[32],"_count":[32],"_editRecordOpen":[32],"_mobileTitle":[32],"_showListView":[32],"_translations":[32],"getSelectedFeature":[64],"refresh":[64],"back":[64],"next":[64],"toggleListView":[64],"updateCurrentGraphic":[64]},[[8,"closeEdit","closeEdit"],[8,"layerSelectionChange","layerSelectionChange"],[8,"refreshGraphics","refreshGraphics"]],{"graphics":["graphicsWatchHandler"],"isMobile":["isMobileWatchHandler"],"mapView":["mapViewWatchHandler"]}],[0,"edit-card",{"enableEditGeometry":[4,"enable-edit-geometry"],"graphics":[1040],"mapView":[16],"open":[1028],"graphicIndex":[2,"graphic-index"],"_editorLoading":[32],"_translations":[32]},[[8,"featureSelectionChange","featureSelectionChange"]],{"graphics":["graphicsWatchHandler"],"open":["openWatchHandler"]}],[1,"calcite-alert",{"active":[4],"openAlertCount":[2,"open-alert-count"],"open":[1540],"autoClose":[516,"auto-close"],"autoCloseDuration":[513,"auto-close-duration"],"embedded":[1028],"kind":[513],"icon":[520],"iconFlipRtl":[516,"icon-flip-rtl"],"label":[1],"numberingSystem":[513,"numbering-system"],"placement":[513],"scale":[513],"messages":[1040],"messageOverrides":[1040],"queue":[513],"defaultMessages":[32],"effectiveLocale":[32],"numberStringFormatter":[32],"hasEndActions":[32],"isFocused":[32],"setFocus":[64]},null,{"active":["handleActiveChange"],"open":["openHandler"],"autoCloseDuration":["updateDuration"],"messageOverrides":["onMessagesChange"],"queue":["handleQueueChange"],"effectiveLocale":["effectiveLocaleChange"],"numberingSystem":["numberingSystemChange"]}]]],["p-93c9be09",[[0,"solution-item-icon",{"isPortal":[4,"is-portal"],"type":[1],"typeKeywords":[16]}],[1,"calcite-tree-item",{"disabled":[516],"label":[1],"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":[1540],"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"]]]]]]'),e))));
@@ -643,6 +643,7 @@ export declare class CrowdsourceReporter {
643
643
  * @protected
644
644
  */
645
645
  protected getActionToExpandCollapsePanel(): Node;
646
+ protected _updatingHandle: any;
646
647
  /**
647
648
  * Set the current map info when maps change
648
649
  * @protected
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esri/solutions-components",
3
- "version": "0.10.17",
3
+ "version": "0.10.18",
4
4
  "description": "Web Components for Esri's Solutions Applications",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",
@@ -51,7 +51,7 @@
51
51
  "@stencil/sass": "^3.0.12",
52
52
  "@stencil/store": "^2.0.16",
53
53
  "@types/jest": "^29.5.12",
54
- "@types/node": "^22.1.0",
54
+ "@types/node": "^22.5.5",
55
55
  "@typescript-eslint/eslint-plugin": "^7.17.0",
56
56
  "@typescript-eslint/parser": "^7.18.0",
57
57
  "autoprefixer": "^10.4.19",
@@ -62,7 +62,7 @@
62
62
  "eslint-config-prettier": "9.1.0",
63
63
  "eslint-plugin-jest": "^28.8.2",
64
64
  "eslint-plugin-prettier": "5.2.1",
65
- "eslint-plugin-react": "7.35.0",
65
+ "eslint-plugin-react": "7.36.1",
66
66
  "eslint-plugin-unicorn": "^55.0.0",
67
67
  "esri-loader": "^3.7.0",
68
68
  "form-request-submit-polyfill": "^2.0.0",
@@ -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,g as s,h as e,H as a,F as h}from"./p-6eb37ed2.js";import{l,g as o}from"./p-2058b5d9.js";import{g as c,a as n,b as r,c as d,h as u,d as p,q as f}from"./p-d572627c.js";import"./p-0a24ad5f.js";import"./p-d4056c1c.js";import"./p-80cb7c73.js";const m=class{constructor(s){t(this,s),this.togglePanel=i(this,"togglePanel",7),this.center=void 0,this.commentButtonText=void 0,this.commentSubmittedMessage=void 0,this.defaultWebmap="",this.description=void 0,this.enableAnonymousAccess=void 0,this.enableAnonymousComments=void 0,this.enableComments=void 0,this.enableHome=!0,this.enableLogin=void 0,this.enableNewReports=void 0,this.enableSearch=!0,this.enableZoom=!0,this.isMobile=void 0,this.layerExpressions=[],this.layerId=void 0,this.level=void 0,this.loginTitle=void 0,this.mapInfos=[],this.mapView=void 0,this.objectId=void 0,this.reportButtonText=void 0,this.reportingOptions=void 0,this.reportsHeader=void 0,this.reportSubmittedMessage=void 0,this.searchConfiguration=void 0,this.showComments=void 0,this.showUserImageInCommentsList=!1,this.showFeatureSymbol=!1,this.showMyReportsOnly=!1,this.theme="light",this.zoomToScale=void 0,this.floorLevel=void 0,this._featureCreationFailedErrorMsg=void 0,this._filterActive=!1,this._flowItems=[],this._hasValidLayers=!1,this._loadingFeatureDetails=void 0,this._mapInfo=void 0,this._reportSubmitted=!1,this._selectedLayerName=void 0,this._showSubmitCancelButton=!1,this._showLoadingIndicator=!1,this._sidePanelCollapsed=!1,this._translations=void 0,this._updatedProgressBarStatus=.25,this._updatedSorting=void 0,this._updatedSortOption="sortNewest",this._commentSubmitted=!1,this._addingCommentFailed=!1}get el(){return s(this)}_createFeature;_currentFeatureId;_defaultCenter;_defaultLevel;_editableLayerIds;_featureDetails;_featureList;_currentFeature;_selectedRelatedFeature;_relatedTable;_filterList;_highlightHandle;_layerList;_createRelatedFeature;_layers;_mapChange;_mapClickHandle;reactiveUtils;FeatureFilter;_selectedFeature;_selectedFeatureIndex;_selectedLayerId;_shareNode;_urlParamsLoaded;_validLayers;_selectedLayer;_layerItemsHash;_showFullPanel;_floorExpression;_formElements=[];_filterUrlParams;_filterInitState;async isMobileWatchHandler(){this.updatePanelState(!1,this._showFullPanel)}async mapViewWatchHandler(){await this.mapView.when((async()=>{await this.setMapView()}))}async floorLevelWatchHandler(){if(this._editableLayerIds)for(const t of this._editableLayerIds){const i=await c(this.mapView,t);i.floorInfo?.floorField&&this._updateFloorDefinitionExpression(i)}this._layerList&&await this._layerList.refresh(),this._featureList&&this._featureList.refresh(),this._createFeature&&this._createFeature.refresh(this.floorLevel)}togglePanel;async componentWillLoad(){this._urlParamsLoaded=!1,await this._initModules(),await this._getTranslations(),await(this.mapView?.when((async()=>{this._layers=this.reportingOptions?Object.keys(this.reportingOptions).filter((t=>this.reportingOptions[t].visible)):[],await this.setMapView()})))}render(){const t="dark"===this.theme?"calcite-mode-dark":"calcite-mode-light";return e(a,{key:"9e2fc7137b28852f7f22c47fda4693e5659db631"},this._reportSubmitted&&e("calcite-alert",{key:"ab818755ae126dad344cf7639d9b67048154447f","auto-close":!0,class:t+" report-submitted-msg",icon:"check-circle",kind:"success",label:"",onCalciteAlertClose:()=>{this._reportSubmitted=!1},open:!0,placement:"top"},e("div",{key:"d1d9b947bc0f1e91a07deb800b764fd6b81e2ab8",slot:"message"},this.reportSubmittedMessage?this.reportSubmittedMessage:this._translations.submitMsg)),this._featureCreationFailedErrorMsg&&e("calcite-alert",{key:"92fa0cb53cf5525e19c9308f3d3e68bf7af741ff","auto-close":!0,class:t,icon:"x-octagon",kind:"danger",label:"",onCalciteAlertClose:()=>{this._featureCreationFailedErrorMsg=""},open:!0,placement:"top"},e("div",{key:"ebe0683e73f6b7d9b3293c21b674fbfb67aedba5",slot:"title"},this._translations.error),e("div",{key:"06d8a126f285011d74f88807cc6c5d51b1ed8ac4",slot:"message"},this._featureCreationFailedErrorMsg)),this._commentSubmitted&&e("calcite-alert",{key:"ab2aa9d399570fb0897dccd2f5d16ac62c8e5529","auto-close":!0,class:"report-submitted "+t,icon:"check-circle",kind:"success",label:"",onCalciteAlertClose:()=>{this._commentSubmitted=!1},open:!0,placement:"top"},e("div",{key:"4cb649130c819cc9643b31c9e7533e1ef68fc626",slot:"message"},this.commentSubmittedMessage||this._translations.commentSubmittedMsg)),this._addingCommentFailed&&e("calcite-alert",{key:"0f960660c43e17b9e7d71d41e4f573f5aff9a6f8","auto-close":!0,class:t,icon:"x-octagon",kind:"danger",label:"",onCalciteAlertClose:()=>{this._addingCommentFailed=!1},open:!0,placement:"top"},e("div",{key:"b4777d4d0d1035d0b5abb51196854cda47bebb20",slot:"title"},this._translations.error),e("div",{key:"12ae974db56c10d5edf5e8cee3d55eb2c69979cf",slot:"message"},this._translations.addingCommentFailedMsg)),e("div",{key:"d1b53057f95b9eb734c7263dcb7334196e84fb30"},e("calcite-shell",{key:"62fb7d7fb784645334f99053f7453583e0f90fc0","content-behind":!0},this._getReporter())))}async _initModules(){const[t,i]=await l(["esri/core/reactiveUtils","esri/layers/support/FeatureFilter"]);this.reactiveUtils=t,this.FeatureFilter=i}async setSelectedLayer(t,i){this._selectedLayerId=t,this._selectedLayer=await c(this.mapView,t),this._selectedLayerName=i,this._validLayers.forEach((i=>{i.set("visible",!t||i.id===t)}))}_getLayersConfig(t){return this.reportingOptions&&this.reportingOptions[t]?this.reportingOptions[t]:null}_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"filter-panel":t.push(this.getFilterPanel()),this._restoreFilters();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());break;case"comment-details":t.push(this.getCommentDetailsFlowItem());break;case"add-comment":t.push(this.getAddCommentFlowItem())}})),e("calcite-panel",{class:"width-full "+("dark"===this.theme?"calcite-mode-dark":"calcite-mode-light")},this.mapView?e("calcite-flow",null,t?.length>0&&t):e("calcite-loader",{label:"",scale:"m"}))}async sortOptionClick(t,i,s){this._updatedSorting={field:t,order:i},this._updatedSortOption=s}_toggleSort(){const t=this.reportingOptions&&this.reportingOptions[this._selectedLayerId]&&this.reportingOptions[this._selectedLayerId].like&&this.reportingOptions[this._selectedLayerId].likeField;return e("calcite-popover",{autoClose:!0,label:"",offsetDistance:0,placement:this.isMobile?"leading-start":"auto",pointerDisabled:!0,referenceElement:"sort-popover"},e("calcite-list",{"selection-mode":"single"},e("calcite-list-item",{label:this._translations.sortNewest,onCalciteListItemSelect:()=>{this.sortOptionClick(this._selectedLayer.objectIdField,"desc","sortNewest")},selected:"sortNewest"===this._updatedSortOption,value:"sortNewest"}),e("calcite-list-item",{label:this._translations.sortOldest,onCalciteListItemSelect:()=>{this.sortOptionClick(this._selectedLayer.objectIdField,"asc","sortOldest")},selected:"sortOldest"===this._updatedSortOption,value:"sortOldest"}),t&&e(h,null,e("calcite-list-item",{label:this._translations.sortHighestVoted,onCalciteListItemSelect:()=>{this.sortOptionClick(this.reportingOptions[this._selectedLayerId].likeField,"desc","sortHighestVoted")},selected:"sortHighestVoted"===this._updatedSortOption,value:"sortHighestVoted"}),e("calcite-list-item",{label:this._translations.sortLowestVoted,onCalciteListItemSelect:()=>{this.sortOptionClick(this.reportingOptions[this._selectedLayerId].likeField,"asc","sortLowestVoted")},selected:"sortLowestVoted"===this._updatedSortOption,value:"sortLowestVoted"}))))}_restoreFilters(){setTimeout((()=>{this._filterList&&this._filterUrlParams&&this._filterInitState&&this._filterList.restoreFilters(this._filterUrlParams[0],this._filterInitState)}),200)}async _handleFilterListReset(){this._filterActive=!1,this._filterUrlParams=null,this._filterInitState=null}_handleFilterUpdate(){this._filterActive=this._filterList.urlParams.getAll("filter").length>0,this._filterUrlParams=this._filterList.urlParams.getAll("filter")}getLayerListFlowItem(){return e("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this.reportsHeader},this.isMobile&&this.getActionToExpandCollapsePanel(),this._hasValidLayers&&this.enableNewReports&&e("calcite-button",{appearance:"solid",onClick:this.navigateToChooseCategory.bind(this),slot:"footer",width:"full"},this.reportButtonText?this.reportButtonText:this._translations.createReportButtonText),e("calcite-panel",{"full-height":!0,"full-width":!0},e("layer-list",{applyLayerViewFilter:this.showMyReportsOnly,class:"height-full",layers:this._editableLayerIds?.length>0?this._editableLayerIds:this._layers,mapView:this.mapView,onLayerSelect:this.displayFeaturesList.bind(this),onLayersListLoaded:this.layerListLoaded.bind(this),ref:t=>this._layerList=t,showFeatureCount:!0,showNextIcon:!0})))}getChooseCategoryFlowItem(){const t=this.reportingOptions?Object.keys(this.reportingOptions).filter((t=>this.reportingOptions[t].visible&&this.reportingOptions[t].reporting&&this._layerItemsHash[t]&&this._layerItemsHash[t].supportsAdd)):[];return e("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this.reportButtonText?this.reportButtonText:this._translations.createReportButtonText,onCalciteFlowItemBack:this.backFromSelectedPanel.bind(this)},e("calcite-panel",{"full-height":!0,"full-width":!0},e("div",{class:"progress-bar"},e("calcite-progress",{type:"determinate",value:this._updatedProgressBarStatus})),e("calcite-notice",{class:"notice-msg",icon:"lightbulb",kind:"success",open:!0},e("div",{slot:"message"},this._translations.chooseCategoryMsg)),e("layer-list",{class:"height-full",layers:t,mapView:this.mapView,onLayerSelect:this.navigateToCreateFeature.bind(this),showFeatureCount:!1,showNextIcon:!1})))}getFeatureCreateFlowItem(){return e("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this._selectedLayerName,onCalciteFlowItemBack:this.backFromCreateFeaturePanel.bind(this)},this._showSubmitCancelButton&&e("div",{class:"width-full",slot:"footer"},e("calcite-button",{appearance:"solid",class:"footer-top-button footer-button",onClick:this.onCreateFeatureSubmitButtonClick.bind(this),width:"full"},this._translations.submit),e("calcite-button",{appearance:"outline",class:"footer-button",onClick:this.backFromCreateFeaturePanel.bind(this),width:"full"},this._translations.cancel)),e("calcite-panel",{"full-height":!0,"full-width":!0},e("div",{class:"progress-bar"},e("calcite-progress",{type:"determinate",value:this._updatedProgressBarStatus})),e("calcite-notice",{class:"notice-msg",icon:"lightbulb",kind:"success",open:!0},e("div",{slot:"message"},this._translations.featureEditFormInfoMsg)),e("create-feature",{customizeSubmit:!0,enableSearch:!0,floorLevel:this.floorLevel,formElements:this._formElements.find((t=>t.id===this._selectedLayerId)),isMobile:this.isMobile,mapView:this.mapView,onDrawComplete:this.onFormReady.bind(this),onEditingAttachment:this.showSubmitCancelButton.bind(this),onFail:this.createFeatureFailed.bind(this),onModeChanged:this.backFromCreateFeaturePanel.bind(this),onProgressStatus:this.updatedProgressStatus.bind(this),onSuccess:this.onReportSubmitted.bind(this),ref:t=>this._createFeature=t,searchConfiguration:this.searchConfiguration,selectedLayerId:this._selectedLayerId})))}updatedProgressStatus(t){this._updatedProgressBarStatus=t.detail}onFormReady(){this._showSubmitCancelButton=!0}showSubmitCancelButton(t){this._showSubmitCancelButton=!t.detail}onCreateFeatureSubmitButtonClick(){this._createFeature&&this._createFeature.submit()}backFromCreateFeaturePanel(){this._createFeature&&this._createFeature.close(),this.backFromSelectedPanel()}onCreateRelatedFeatureSubmitButtonClick(){this._createRelatedFeature&&this._createRelatedFeature.submit()}backFromCreateRelatedFeaturePanel(){this._createRelatedFeature&&(this._createRelatedFeature.close(),this._showSubmitCancelButton=!1),this.backFromSelectedPanel()}createFeatureFailed(t){console.error(t.detail),this._featureCreationFailedErrorMsg=t.detail.message}onReportSubmitted(){this._showFullPanel&&this.updatePanelState(this._sidePanelCollapsed,!1),this._reportSubmitted=!0,this._updatedProgressBarStatus=.25,this.navigateToHomePage()}addCommentFailed(t){console.error(t.detail),this._addingCommentFailed=!0}async onCommentSubmitted(){this._commentSubmitted=!0,this.backFromSelectedPanel(),this._showLoadingIndicator=!0,await this._featureDetails.refresh(this._currentFeature),setTimeout((()=>{this._showLoadingIndicator=!1}),300)}async navigateToHomePage(){this._createFeature&&this._createFeature.close(),this._layerList&&this._layerList.refresh(),await this.setSelectedFeatures([]),1===this._editableLayerIds.length?(await this._featureList.refresh(),this._flowItems=["feature-list"]):this._flowItems=["layer-list"]}async navigateToCreateFeature(t){t.detail.layerId&&t.detail.layerName&&await this.setSelectedLayer(t.detail.layerId,t.detail.layerName),this._getFormElements(),this._showSubmitCancelButton=!1,this.updatePanelState(!1,!0),this._flowItems=[...this._flowItems,"feature-create"]}navigateToChooseCategory(){this.updatePanelState(!1,!0),this._flowItems=[...this._flowItems,"reporting-layer-list"]}async layerListLoaded(t){const i=t.detail,s=await n(this.mapView),e=[];this._validLayers=[],s.forEach((t=>{i.includes(t.id)&&(this._validLayers.push(t),this._getLayersConfig(t.id)?.reporting&&this._layerItemsHash[t.id]&&this._layerItemsHash[t.id].supportsAdd&&e.push(t.id))})),this.handleMapClick(),this._hasValidLayers=e.length>0,this._urlParamsLoaded||(this._urlParamsLoaded=!0,await this.loadFeatureFromURLParams())}displayFeaturesList(t){this._updatedSorting={field:"",order:"desc"},this._filterActive=!1,this._updatedSortOption="sortNewest",this.setSelectedLayer(t.detail.layerId,t.detail.layerName),this._flowItems=[...this._flowItems,"feature-list"]}async backFromFilterPanel(){this._filterInitState=await this._filterList.getFilterInitState(),this._featureList.refresh(),this.backFromSelectedPanel()}backFromSelectedPanel(){this._updatedProgressBarStatus=.25;const t=[...this._flowItems];"comment-details"!==t[t.length-1]&&"add-comment"!==t[t.length-1]&&this.clearHighlights(),"reporting-layer-list"!==t[t.length-1]&&("feature-create"!==t[t.length-1]||"feature-list"!==t[0]&&"feature-list"!==t[t.length-2])||this.updatePanelState(this._sidePanelCollapsed,!1),this.reportingOptions&&this.reportingOptions[this._selectedLayerId]?.like&&"feature-details"===t[t.length-1]&&this._featureList.refresh(),t.pop(),1!==t.length||"layer-list"!==t[0]?this._flowItems=[...t]:this.navigateToHomePage()}toggleSidePanel(){this._sidePanelCollapsed=!this._sidePanelCollapsed,this.togglePanel.emit({panelState:this._sidePanelCollapsed,isFormOpen:this._showFullPanel})}updatePanelState(t,i){this._sidePanelCollapsed=t,this._showFullPanel=i,this.togglePanel.emit({panelState:this._sidePanelCollapsed,isFormOpen:this._showFullPanel})}async onFeatureSelectFromList(t){this._showLoadingIndicator=!0,await this.setSelectedFeatures([t.detail]),this._flowItems=[...this._flowItems,"feature-details"]}async getRelatedTable(){const t=this._currentFeature.layer,i=t.relationships[0].relatedTableId,s=(await r(this.mapView)).filter((s=>t.url===s.url&&i===s.layerId));this._relatedTable=s[0]}async updatingFeatureDetails(t){this._showLoadingIndicator=t}async selectionChanged(t){this.updatingFeatureDetails(!0),await this.setCurrentFeature(t.detail.selectedFeature[0]),this.highlightOnMap(t.detail.selectedFeature[0]),this._selectedFeatureIndex=t.detail.selectedFeatureIndex,await this._featureDetails.refresh(t.detail.selectedFeature[0])}async onCommentSelectFromList(t){this._selectedRelatedFeature=[t.detail],this._flowItems=[...this._flowItems,"comment-details"]}getFeatureListFlowItem(t,i){const s=this.layerExpressions?.filter((t=>t.id===this._selectedLayerId)),a=this._getLayersConfig(this._selectedLayerId)?.reporting&&this._layerItemsHash[this._selectedLayerId].supportsAdd,h=s?.length>0;return e("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:i,loading:this._showLoadingIndicator,onCalciteFlowItemBack:this.backFromSelectedPanel.bind(this)},this._toggleSort(),e("calcite-action",{icon:"sort-ascending-arrow",id:"sort-popover",slot:"header-actions-end",text:this._translations.sort,title:this._translations.sort}),h&&e("calcite-action",{icon:"filter",indicator:this._filterActive,onClick:()=>{this._flowItems=[...this._flowItems,"filter-panel"]},slot:"header-actions-end",text:this._translations.filter,title:this._translations.filter}),this.isMobile&&this.getActionToExpandCollapsePanel(),this.enableNewReports&&a&&e("calcite-button",{appearance:"solid",onClick:this.navigateToCreateFeature.bind(this),slot:"footer",width:"full"},this.reportButtonText?this.reportButtonText:this._translations.createReportButtonText),e("calcite-panel",{"full-height":!0},e("feature-list",{applyLayerViewFilter:this.showMyReportsOnly,class:"height-full",highlightOnHover:!0,mapView:this.mapView,noFeaturesFoundMsg:this._translations.featureErrorMsg,onFeatureSelect:this.onFeatureSelectFromList.bind(this),pageSize:30,ref:t=>this._featureList=t,reportingOptions:this.reportingOptions,selectedLayerId:t,showFeatureSymbol:this.showFeatureSymbol,sortingInfo:this._updatedSorting})))}getFilterPanel(){const t=this.layerExpressions?this.layerExpressions.filter((t=>t.id===this._selectedLayerId)):[];return e("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this._translations?.filterLayerTitle?.replace("{{title}}",this._selectedLayerName),loading:this._showLoadingIndicator,onCalciteFlowItemBack:this.backFromFilterPanel.bind(this)},this.isMobile&&this.getActionToExpandCollapsePanel(),e("div",{class:"width-full",slot:"footer"},e("div",{class:"width-full",slot:"footer"},e("calcite-button",{appearance:"solid",class:"footer-top-button footer-button",onClick:()=>{this._filterList?.forceReset()},width:"full"},this._translations.resetFilter),e("calcite-button",{appearance:"outline",class:"footer-button",onClick:this.backFromFilterPanel.bind(this),width:"full"},this._translations.close))),e("calcite-panel",{"full-height":!0},e("instant-apps-filter-list",{autoUpdateUrl:!1,closeBtnOnClick:()=>{},comboboxOverlayPositioning:"fixed",layerExpressions:t,onFilterListReset:()=>this._handleFilterListReset(),onFilterUpdate:()=>this._handleFilterUpdate(),ref:t=>this._filterList=t,resetFiltersOnDisconnect:!1,view:this.mapView,zoomBtn:!1})))}getFeatureDetailsFlowItem(){const t=this._getLayersConfig(this._selectedLayerId)?.comment&&this._selectedLayer.relationships.length>0;return e("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this._selectedLayerName,loading:this._showLoadingIndicator,onCalciteFlowItemBack:this.backFromSelectedPanel.bind(this)},this.isMobile&&this.getActionToExpandCollapsePanel(),e("instant-apps-social-share",{autoUpdateShareUrl:!1,class:"share-node",embed:!1,popoverButtonIconScale:"s",ref:t=>this._shareNode=t,removePopoverOffset:!0,scale:"m",shareButtonColor:"neutral",shareButtonType:"action",slot:"header-actions-end",socialMedia:!0,view:this.mapView}),this._selectedFeature.length>1&&this.getFeaturesPagination(),e("calcite-panel",null,e("feature-details",{class:"full-height",graphics:this._selectedFeature,layerItemsHash:this._layerItemsHash,mapView:this.mapView,onCommentSelect:this.onCommentSelectFromList.bind(this),onFeatureSelectionChange:this.selectionChanged.bind(this),onLoadingStatus:t=>{this.updatingFeatureDetails(t.detail)},ref:t=>this._featureDetails=t,reportingOptions:this.reportingOptions,showUserImageInCommentsList:this.showUserImageInCommentsList}),t&&e("calcite-button",{appearance:"solid",onClick:()=>this._flowItems=[...this._flowItems,"add-comment"],slot:"footer",width:"full"},this.commentButtonText||this._translations.comment)))}getFeaturesPagination(){return e("div",{class:"feature-pagination"},e("div",null,e("calcite-button",{appearance:"transparent",disabled:!1,iconStart:"chevron-left",id:"solutions-back",onClick:()=>{this._featureDetails.back()},scale:"s",width:"full"}),e("calcite-tooltip",{label:"",placement:"top","reference-element":"solutions-back"},e("span",null,this._translations.back))),e("calcite-button",{appearance:"transparent",onClick:()=>{this._featureDetails.toggleListView()},scale:"s"},e("span",{class:"pagination-count"},this._getCount())),e("div",null,e("calcite-button",{appearance:"transparent",disabled:!1,iconStart:"chevron-right",id:"solutions-next",onClick:()=>{this._featureDetails.next()},scale:"s",width:"full"}),e("calcite-tooltip",{placement:"top","reference-element":"solutions-next"},e("span",null,this._translations.next))))}getCommentDetailsFlowItem(){return e("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this._relatedTable.title,onCalciteFlowItemBack:this.backFromSelectedPanel.bind(this)},this.isMobile&&this.getActionToExpandCollapsePanel(),e("calcite-panel",{"full-height":!0},e("info-card",{allowEditing:!1,graphics:this._selectedRelatedFeature,highlightEnabled:!1,isLoading:!1,isMobile:!1,mapView:this.mapView,paginationEnabled:!1})))}getAddCommentFlowItem(){return e("calcite-flow-item",{collapsed:this.isMobile&&this._sidePanelCollapsed,heading:this._relatedTable.title,onCalciteFlowItemBack:this.backFromCreateRelatedFeaturePanel.bind(this)},this.isMobile&&this.getActionToExpandCollapsePanel(),e("div",{class:"width-full",slot:"footer"},this._showSubmitCancelButton&&e("div",{class:"width-full",slot:"footer"},e("calcite-button",{appearance:"solid",class:"footer-top-button footer-button",onClick:this.onCreateRelatedFeatureSubmitButtonClick.bind(this),width:"full"},this._translations.submit),e("calcite-button",{appearance:"outline",class:"footer-button",onClick:this.backFromCreateRelatedFeaturePanel.bind(this),width:"full"},this._translations.cancel))),e("calcite-panel",null,e("create-related-feature",{customizeSubmit:!0,mapView:this.mapView,onFail:this.addCommentFailed.bind(this),onFormReady:this.onFormReady.bind(this),onIsActionPending:this.showSubmitCancelButton.bind(this),onSuccess:this.onCommentSubmitted.bind(this),ref:t=>this._createRelatedFeature=t,selectedFeature:this._currentFeature,table:this._relatedTable})))}async setSelectedFeatures(t){this._selectedFeature=t,await this.setCurrentFeature(this._selectedFeature.length?this._selectedFeature[0]:null)}async setCurrentFeature(t){if(this._currentFeature=t,t&&t.layer){const i=t.layer;this.setSelectedLayer(i.id,i.title),this._currentFeatureId=t.attributes[i.objectIdField],this._getLayersConfig(i.id)?.comment&&i.relationships.length>0&&await this.getRelatedTable()}else this._editableLayerIds.length>1&&this.setSelectedLayer("",""),this._currentFeatureId="";this._updateShareURL()}async highlightOnMap(t){if(this.clearHighlights(),t&&t.geometry&&t.layer){const i=await d(this.mapView,t.layer.id);i.highlightOptions=null,this._highlightHandle=await u([t.getObjectId()],i,this.mapView,!0,this.zoomToScale)}this.updatingFeatureDetails(!1)}clearHighlights(){this._highlightHandle&&this._highlightHandle.remove()}getActionToExpandCollapsePanel(){return e("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(){await this.getLayersToShowInList(),await this._updateFeatures(),1===this._editableLayerIds?.length?await this.renderFeaturesList():this._flowItems=["layer-list"],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=await this.mapView.hitTest(t);if(i.results.length>0){const t=[];i.results.forEach((function(i){"graphic"===i.type&&t.push(i.graphic)}));const s=t.filter((t=>this._validLayers.includes(t.layer))),e=t.filter((t=>!this._validLayers.includes(t.layer)&&t?.layer?.id));if(s.length>0&&(await this.setSelectedFeatures(s),this._flowItems.length&&this._flowItems.includes("feature-details")?(this._flowItems=[...this._flowItems.slice(0,this._flowItems.indexOf("feature-details")+1)],await this.highlightOnMap(t[0])):this._flowItems=[...this._flowItems,"feature-details"]),e.length>0){this.mapView.popupEnabled=!0;const t={features:e,updateLocationEnabled:!0};await this.mapView.openPopup(t)}}}_getCount(){const t=(this._selectedFeatureIndex+1).toString(),i=this._selectedFeature.length.toString();return this._translations.indexOfTotal.replace("{{index}}",t).replace("{{total}}",i)}async _getTranslations(){const t=await o(this.el);this._translations=t[0]}_updateFloorDefinitionExpression(t){const i=`${t.floorInfo.floorField} = '${this.floorLevel}'`,s=t.definitionExpression;t.definitionExpression=s?.indexOf(this._floorExpression)>-1?s.replace(this._floorExpression,i):i,this._floorExpression=i}_getFormElements(){const t=this._selectedLayer,i=t?.floorInfo?.floorField;if(i&&this.floorLevel&&t?.formTemplate){const i=this._formElements.find((i=>i.id===t.id));0!==this._formElements.length&&i||this._formElements.push({id:t.id,orgElements:t.formTemplate.elements,orgExpressionInfos:t.formTemplate.expressionInfos})}}reduceToConfiguredLayers(t){return Object.keys(t).reduce(((i,s)=>((this.reportingOptions?this._getLayersConfig(s)?.visible:t[s].supportsAdd)&&i.push(s),i)),[])}async _updateFeatures(){for(const t of this._editableLayerIds){const i=await d(this.mapView,t);await this._showMyFeaturesOnly(i);const s=i.layer?.floorInfo?.floorField;s&&this.floorLevel&&this._updateFloorDefinitionExpression(i.layer)}}async _showMyFeaturesOnly(t){const i=this.mapView.map.portalItem.portal?.credential?.userId;if(i){const s=t.layer.editFieldsInfo?.creatorField.toLowerCase();t.filter=this.showMyReportsOnly&&s?new this.FeatureFilter({where:s+"='"+i+"'"}):null}}async getLayersToShowInList(){const t=await p(this.mapView,!0);(await n(this.mapView)).forEach((i=>{"feature"===i?.type&&i?.editingEnabled&&i?.capabilities?.operations?.supportsAdd&&(t[i.id].supportsAdd=!0)})),this._editableLayerIds=this.reduceToConfiguredLayers(t),this._layerItemsHash=t}async renderFeaturesList(){this._flowItems=["feature-list"];const t={detail:this._editableLayerIds};await this.layerListLoaded(t),this.setSelectedLayer(this._validLayers[0].id,this._validLayers[0].title)}_updateShareURL(){const t=this._shareNode?.shareUrl;if(!t)return;const i=new URL(t);this._selectedLayerId?i.searchParams.set("layerid",this._selectedLayerId):i.searchParams.delete("layerid"),this._selectedFeature?.length?i.searchParams.set("oid",this._currentFeatureId):i.searchParams.delete("oid"),this._shareNode.shareUrl=i.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 c(this.mapView,this.layerId);if(t){const i=await f([Number(this.objectId)],t,[],!0,this.mapView.spatialReference);i.length&&(await this.setSelectedFeatures(i),this._flowItems=this._flowItems.length&&"feature-details"!==this._flowItems[this._flowItems.length-1]?[...this._flowItems,"feature-details"]:[...this._flowItems])}}}static get watchers(){return{isMobile:["isMobileWatchHandler"],mapView:["mapViewWatchHandler"],floorLevel:["floorLevelWatchHandler"]}}};m.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)}.progress-bar{padding:12px}.footer-top-button{padding-bottom:7px}.footer-button{height:35px}.feature-pagination{background-color:var(--calcite-color-foreground-1) !important;border-block-end:1px solid var(--calcite-color-border-3);display:flex;justify-content:center;padding:5px 0}.pagination-count{color:var(--calcite-color-brand);border-bottom:1px solid var(--calcite-color-brand);font-weight:bold}.report-submitted-msg{position:absolute;z-index:1000}.share-node{display:flex}";export{m as crowdsource_reporter}