@esri/solutions-components 5.1.0-next.2 → 5.1.0-next.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"timestamp":"2026-02-20T22:39:59","compiler":{"name":"@arcgis/lumina-compiler","version":"5.0.0","typescriptVersion":"5.9.3"},"schemaVersion":"2.1.0","modules":[{"kind":"javascript-module","path":"index","sourcePath":"src/index.ts","declarations":[{"kind":"function","name":"getAssetPath","description":"Get a resolved path from where an asset can be loaded.","parameters":[{"name":"suffix","description":"The relative path for the asset.","type":{"text":"string"}}],"return":{"type":{"text":"string"}}},{"kind":"function","name":"setAssetPath","description":"Used to manually set the base path where package assets (like localization\nand icons) can be found.\n\nBy default, the package assets are loaded from\n`https://js.arcgis.com/<version>/<simplified-package-name>/`. We are hosting\nour assets on a CDN (Content Delivery Network) to ensure fast and reliable\naccess. It is CORS-enabled, so you can load the assets from any domain. This\nis the recommended way to load the assets and avoid bundling them with your\napplication.\n\nHowever, if you need to host the assets locally, you can copy them manually\nas part of your build process and use `setAssetPath` to customize where the\nbrowser will load the assets from.","parameters":[{"name":"path","description":"Relative or absolute path to the assets folder.","type":{"text":"URL | string","references":[{"name":"URL","package":"global:","viewUrl":"https://developer.mozilla.org/docs/Web/API/URL","start":0,"end":3}]}}],"return":{"type":{"text":"void"}}}]},{"kind":"javascript-module","path":"components/arcgis-solutions-assistant","sourcePath":"src/components/arcgis-solutions-assistant/arcgis-solutions-assistant.tsx","declarations":[{"kind":"class","name":"ArcgisSolutionsAssistant","customElement":true,"tagName":"arcgis-solutions-assistant","pascalCaseName":"ArcgisSolutionsAssistant","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"open","description":"Flag to open or close panel","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"open"},{"kind":"field","name":"serverRoot","description":"Define the AI server to access","type":{"text":"string","values":[{"type":"string"}]},"default":"'https://aiservices-beta.arcgis.com'","attribute":"server-root"},{"kind":"field","name":"userFirstName","description":"First name of user for personal approach","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"user-first-name"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst arcgisSolutionsAssistant = document.querySelector(\"arcgis-solutions-assistant\");\ndocument.body.append(arcgisSolutionsAssistant);\nawait arcgisSolutionsAssistant.componentOnReady();\nconsole.log(\"arcgis-solutions-assistant is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"handleSendMessage","description":"Submits a query to the AI Assitant based on what is in the input textarea.\nIf there is an exisitng conversation, the conversation id is also sent along.","parameters":[{"name":"inputValue","description":"The request to send to the assistant","type":{"text":"string"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(inputValue: string): Promise<void>"},{"kind":"method","name":"loopRequest","description":"Calls the AI (polling) until there is no additional requests.\nAlong the way id there is a message or context, process and show.\nIf it is solution question, start off a new request to Doc Assistant.","parameters":[{"name":"response","description":"stores the conversation and inquiry id","type":{"text":"ConversationResponse","references":[{"name":"ConversationResponse","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/arcgis-solutions-assistant/#ConversationResponse","start":0,"end":20}]}},{"name":"requestURL","description":"AI server to request","type":{"text":"string"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(response: ConversationResponse, requestURL: string): Promise<void>"},{"kind":"method","name":"requestAIServer","description":"Request sent to the AI server via fetch.\nALong the way id there is a message or context, process and show.","parameters":[{"name":"requestInfo","description":"the request object to send to the server","type":{"text":"unknown"}},{"name":"requestURL","description":"AI server to request","type":{"text":"string"}}],"return":{"type":{"text":"Promise<ConversationResponse>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7},{"name":"ConversationResponse","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/arcgis-solutions-assistant/#ConversationResponse","start":8,"end":28}]}},"signature":"(requestInfo: unknown, requestURL: string): Promise<ConversationResponse>"},{"kind":"method","name":"resetChat","description":"Resets the message history and clears the chat window.","return":{"type":{"text":"void"}},"signature":"(): void"}],"attributes":[{"name":"open","description":"Flag to open or close panel","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"open"},{"name":"server-root","description":"Define the AI server to access","type":{"text":"string","values":[{"type":"string"}]},"default":"'https://aiservices-beta.arcgis.com'","fieldName":"serverRoot"},{"name":"user-first-name","description":"First name of user for personal approach","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"userFirstName"}],"events":[{"name":"closeAssistant","description":"Emitted on demand when cards are fetched","type":{"text":"boolean"}}],"importPath":"components/arcgis-solutions-assistant"},{"kind":"interface","name":"ConversationResponse","members":[{"kind":"field","name":"conversationId","type":{"text":"string"}},{"kind":"field","name":"inquiryId","type":{"text":"string"}},{"kind":"field","name":"sequenceNumber","type":{"text":"number"}},{"kind":"field","name":"message","type":{"text":"string | null | undefined"}},{"kind":"field","name":"context","type":{"text":"ConversationContext | undefined","references":[{"name":"ConversationContext","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/arcgis-solutions-assistant/#ConversationContext","start":0,"end":19}]}},{"kind":"field","name":"hasMore","type":{"text":"boolean"}}]},{"kind":"interface","name":"ConversationContext","members":[{"kind":"field","name":"kind","type":{"text":"string"}},{"kind":"field","name":"author","type":{"text":"AuthorType | undefined","references":[{"name":"AuthorType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/arcgis-solutions-assistant/#AuthorType","start":0,"end":10}]}},{"kind":"field","name":"intent","type":{"text":"IntentType | undefined","references":[{"name":"IntentType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/arcgis-solutions-assistant/#IntentType","start":0,"end":10}]}},{"kind":"field","name":"results","type":{"text":"SuggestedSolutions[] | DocAssistantResultContext[] | unknown[] | undefined","references":[{"name":"SuggestedSolutions","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/arcgis-solutions-assistant/#SuggestedSolutions","start":0,"end":18},{"name":"DocAssistantResultContext","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/arcgis-solutions-assistant/#DocAssistantResultContext","start":23,"end":48}]}}]},{"kind":"interface","name":"SuggestedSolutions","members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"title","type":{"text":"string"}},{"kind":"field","name":"snippet","type":{"text":"string"}},{"kind":"field","name":"thumbnail","type":{"text":"string"}}]},{"kind":"interface","name":"DocAssistantResultContext","members":[{"kind":"field","name":"reply","type":{"text":"string"}},{"kind":"field","name":"ref","type":{"text":"DocAssistantResultRef[]","references":[{"name":"DocAssistantResultRef","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/arcgis-solutions-assistant/#DocAssistantResultRef","start":0,"end":21}]}},{"kind":"field","name":"followupQuestions","type":{"text":"string[]"}},{"kind":"field","name":"status","type":{"text":"DocAssistantResultStatus","references":[{"name":"DocAssistantResultStatus","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/arcgis-solutions-assistant/#DocAssistantResultStatus","start":0,"end":24}]}}]},{"kind":"interface","name":"DocAssistantResultRef","members":[{"kind":"field","name":"url","type":{"text":"string"}},{"kind":"field","name":"title","type":{"text":"string"}},{"kind":"field","name":"score","type":{"text":"number"}},{"kind":"field","name":"product","type":{"text":"string"}},{"kind":"field","name":"productMatch","type":{"text":"boolean"}}]},{"kind":"interface","name":"DocAssistantResultStatus","members":[{"kind":"field","name":"currentStatusMessage","type":{"text":"string"}},{"kind":"field","name":"currentStatusStep","type":{"text":"number"}}]},{"kind":"interface","name":"IntentType","type":{"text":"\"Recommend solution\" | \"Solution question\" | \"Other\" | \"Error\""}},{"kind":"interface","name":"AuthorType","type":{"text":"\"human\" | \"ai\" | \"system\""}}],"exports":[{"kind":"custom-element-definition","name":"arcgis-solutions-assistant","declaration":{"name":"ArcgisSolutionsAssistant"}}]},{"kind":"javascript-module","path":"components/buffer-tools","sourcePath":"src/components/buffer-tools/buffer-tools.tsx","declarations":[{"kind":"class","name":"BufferTools","customElement":true,"tagName":"buffer-tools","pascalCaseName":"BufferTools","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"appearance","description":"string: The appearance of display. Can be a 'slider' or 'text' inputs for distance/value","type":{"text":"\"slider\" | \"text\"","values":[{"type":"string","value":"slider"},{"type":"string","value":"text"}]},"default":"'text'","attribute":"appearance"},{"kind":"field","name":"disabled","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"disabled"},{"kind":"field","name":"distance","description":"number: The distance used for buffer","type":{"text":"number","values":[{"type":"number"}]},"default":"0","attribute":"distance"},{"kind":"field","name":"geometries","description":"esri/geometry/Geometry: https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Geometry.html","type":{"text":"__esri.Geometry[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"max","description":"number: The component's maximum selectable value.","type":{"text":"number","values":[{"type":"number"}]},"default":"0","attribute":"max"},{"kind":"field","name":"min","description":"number: The component's minimum selectable value.","type":{"text":"number","values":[{"type":"number"}]},"default":"0","attribute":"min"},{"kind":"field","name":"sliderTicks","description":"number: Displays tick marks on the number line at a specified interval.","type":{"text":"number","values":[{"type":"number"}]},"default":"10","attribute":"slider-ticks"},{"kind":"field","name":"unionResults","description":"boolean: option to control if buffer results should be unioned","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"union-results"},{"kind":"field","name":"unit","description":"DistanceUnit: 'feet'|'meters'|'miles'|'kilometers'","type":{"text":"DistanceUnit","references":[{"name":"DistanceUnit","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DistanceUnit","start":0,"end":12}],"values":[{"type":"string","value":"meters"},{"type":"string","value":"feet"},{"type":"string","value":"miles"},{"type":"string","value":"kilometers"}]},"default":"'meters'","attribute":"unit"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst bufferTools = document.querySelector(\"buffer-tools\");\ndocument.body.append(bufferTools);\nawait bufferTools.componentOnReady();\nconsole.log(\"buffer-tools is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"getTranslatedUnit","description":"Get the translated unit for display","parameters":[{"name":"unit","type":{"text":"string"}}],"return":{"description":"Promise resolving with the translated unit","type":{"text":"Promise<string>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(unit: string): Promise<string>"}],"attributes":[{"name":"appearance","description":"string: The appearance of display. Can be a 'slider' or 'text' inputs for distance/value","type":{"text":"\"slider\" | \"text\"","values":[{"type":"string","value":"slider"},{"type":"string","value":"text"}]},"default":"'text'","fieldName":"appearance"},{"name":"disabled","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"disabled"},{"name":"distance","description":"number: The distance used for buffer","type":{"text":"number","values":[{"type":"number"}]},"default":"0","fieldName":"distance"},{"name":"max","description":"number: The component's maximum selectable value.","type":{"text":"number","values":[{"type":"number"}]},"default":"0","fieldName":"max"},{"name":"min","description":"number: The component's minimum selectable value.","type":{"text":"number","values":[{"type":"number"}]},"default":"0","fieldName":"min"},{"name":"slider-ticks","description":"number: Displays tick marks on the number line at a specified interval.","type":{"text":"number","values":[{"type":"number"}]},"default":"10","fieldName":"sliderTicks"},{"name":"union-results","description":"boolean: option to control if buffer results should be unioned","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"unionResults"},{"name":"unit","description":"DistanceUnit: 'feet'|'meters'|'miles'|'kilometers'","type":{"text":"\"meters\" | \"feet\" | \"miles\" | \"kilometers\"","values":[{"type":"string","value":"meters"},{"type":"string","value":"feet"},{"type":"string","value":"miles"},{"type":"string","value":"kilometers"}]},"default":"'meters'","fieldName":"unit"}],"events":[{"name":"bufferComplete","description":"Emitted on demand when a buffer is generated.","type":{"text":"__esri.Polygon | __esri.Polygon[] | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7},{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":17,"end":24}]}},{"name":"distanceChanged","description":"Emitted on demand when the distance value changes","type":{"text":"IValueChange","references":[{"name":"IValueChange","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IValueChange","start":0,"end":12}]}},{"name":"unitChanged","description":"Emitted on demand when the unit changes","type":{"text":"IValueChange","references":[{"name":"IValueChange","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IValueChange","start":0,"end":12}]}}],"importPath":"components/buffer-tools"}],"exports":[{"kind":"custom-element-definition","name":"buffer-tools","declaration":{"name":"BufferTools"}}]},{"kind":"javascript-module","path":"components/card-manager","sourcePath":"src/components/card-manager/card-manager.tsx","declarations":[{"kind":"class","name":"CardManager","customElement":true,"tagName":"card-manager","pascalCaseName":"CardManager","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"createBtnLabel","description":"string: Label to show for create button","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"create-btn-label"},{"kind":"field","name":"customInfoText","description":"string: custom notice text to display","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"custom-info-text"},{"kind":"field","name":"enableCreateFeatures","description":"boolean: when true the users can have the option to create features","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-create-features"},{"kind":"field","name":"enableEditGeometry","description":"When true the geometry of the current feature will be editable","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-edit-geometry"},{"kind":"field","name":"enableSnapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-snapping"},{"kind":"field","name":"isMobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-mobile"},{"kind":"field","name":"layerOrTable","description":"esri/views/layers/FeatureLayer: https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html\nShould be a layer or table","type":{"text":"__esri.FeatureLayer | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"selectedFeaturesIds","description":"A list of ids that are currently selected","type":{"text":"(number | string)[]"}},{"kind":"field","name":"selectingFeatureFromMap","description":"boolean: When select feature from map message will shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"selecting-feature-from-map"},{"kind":"field","name":"showSketchWidgets","description":"boolean: When true the sketch widgets will be shown in the create feature component","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-sketch-widgets"},{"kind":"field","name":"zoomAndScrollToSelected","description":"boolean: When true the selected feature will zoomed to in the map and the row will be scrolled to within the table","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"zoom-and-scroll-to-selected"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst cardManager = document.querySelector(\"card-manager\");\ndocument.body.append(cardManager);\nawait cardManager.componentOnReady();\nconsole.log(\"card-manager is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"create-btn-label","description":"string: Label to show for create button","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"createBtnLabel"},{"name":"custom-info-text","description":"string: custom notice text to display","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"customInfoText"},{"name":"enable-create-features","description":"boolean: when true the users can have the option to create features","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableCreateFeatures"},{"name":"enable-edit-geometry","description":"When true the geometry of the current feature will be editable","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableEditGeometry"},{"name":"enable-snapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSnapping"},{"name":"is-mobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMobile"},{"name":"selecting-feature-from-map","description":"boolean: When select feature from map message will shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"selectingFeatureFromMap"},{"name":"show-sketch-widgets","description":"boolean: When true the sketch widgets will be shown in the create feature component","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showSketchWidgets"},{"name":"zoom-and-scroll-to-selected","description":"boolean: When true the selected feature will zoomed to in the map and the row will be scrolled to within the table","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"zoomAndScrollToSelected"}],"events":[{"name":"backFromCreateWorkFlow","description":"Emits when back from create work flow","type":{"text":"void"}},{"name":"createWorkFlowStarted","description":"Emits when create work flow started","type":{"text":"void"}},{"name":"featureOrRecordSubmitted","description":"Emits when feature/record is submitted","type":{"text":"void"}}],"importPath":"components/card-manager"}],"exports":[{"kind":"custom-element-definition","name":"card-manager","declaration":{"name":"CardManager"}}]},{"kind":"javascript-module","path":"components/consent-manager","sourcePath":"src/components/consent-manager/consent-manager.tsx","declarations":[{"kind":"class","name":"ConsentManager","customElement":true,"tagName":"consent-manager","pascalCaseName":"ConsentManager","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"amazonAppId","description":"string: The app id for the amazon tracking instance","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"amazon-app-id"},{"kind":"field","name":"amazonAppName","description":"string: The app name for the amazon tracking instance","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"amazon-app-name"},{"kind":"field","name":"amazonUserPoolID","description":"string: The user pool id for the amazon tracking instance","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"amazon-user-pool-id"},{"kind":"field","name":"amazonVersion","description":"string: The version for the amazon tracking instance","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"amazon-version"},{"kind":"field","name":"firstUseVar","description":"string: The name to use for the variable stored in the browsers local storge that\nwill keep track of the users choice for consent\nTODO: [MIGRATION] This property was marked as required in your Stencil component. If you didn't mean it to be required, feel free to remove `@required` tag.\nOtherwise, read the documentation about required properties: https://qawebgis.esri.com/components/lumina/properties#string-properties","docsTags":[{"name":"required"}],"type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"first-use-var"},{"kind":"field","name":"measurementIds","description":"string[]: Any ids for the analytics configured to receive events from the telemety instance","type":{"text":"string[]"}},{"kind":"field","name":"portal","description":"esri/portal/Portal: https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html","type":{"text":"__esri.Portal | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst consentManager = document.querySelector(\"consent-manager\");\ndocument.body.append(consentManager);\nawait consentManager.componentOnReady();\nconsole.log(\"consent-manager is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"getInstance","description":"Initialize and return the telemetry instance if consent has been granted","return":{"type":{"text":"Promise<Telemetry | undefined>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7},{"name":"Telemetry","package":"@esri/telemetry","start":8,"end":17}]}},"signature":"(): Promise<Telemetry | undefined>"}],"attributes":[{"name":"amazon-app-id","description":"string: The app id for the amazon tracking instance","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"amazonAppId"},{"name":"amazon-app-name","description":"string: The app name for the amazon tracking instance","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"amazonAppName"},{"name":"amazon-user-pool-id","description":"string: The user pool id for the amazon tracking instance","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"amazonUserPoolID"},{"name":"amazon-version","description":"string: The version for the amazon tracking instance","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"amazonVersion"},{"name":"first-use-var","description":"string: The name to use for the variable stored in the browsers local storge that\nwill keep track of the users choice for consent\nTODO: [MIGRATION] This property was marked as required in your Stencil component. If you didn't mean it to be required, feel free to remove `@required` tag.\nOtherwise, read the documentation about required properties: https://qawebgis.esri.com/components/lumina/properties#string-properties","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"firstUseVar"}],"events":[{"name":"consentGranted","description":"Emitted on demand when the user accepts or denies consent","type":{"text":"IConsentResponse","references":[{"name":"IConsentResponse","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IConsentResponse","start":0,"end":16}]}}],"importPath":"components/consent-manager"}],"exports":[{"kind":"custom-element-definition","name":"consent-manager","declaration":{"name":"ConsentManager"}}]},{"kind":"javascript-module","path":"components/create-feature","sourcePath":"src/components/create-feature/create-feature.tsx","declarations":[{"kind":"class","name":"CreateFeature","customElement":true,"tagName":"create-feature","pascalCaseName":"CreateFeature","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"aiImageExtraction","description":"array: Configured AI image extraction field and prompt for the selected LayerId","type":{"text":"IImageExtraction[] | undefined","references":[{"name":"IImageExtraction","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IImageExtraction","start":0,"end":16}]}},{"kind":"field","name":"allowMultipleCreation","description":"boolean: When true user can create multiple features","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"allow-multiple-creation"},{"kind":"field","name":"appName","description":"string: The name of Instant Apps application (e.g., \"reporter\", \"manager\") used in the request source header","type":{"text":"string | undefined","values":[{"type":"string"}]},"attribute":"app-name"},{"kind":"field","name":"customizeSubmit","description":"boolean: Set this to true when have a custom submit button in the app.\nThis will hide the header and footer elements of the editor and user needs to execute the submit method manually.","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"customize-submit"},{"kind":"field","name":"enablePhotoLocation","description":"boolean: When true photo get location from the photo selected for AI image Extraction","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-photo-location"},{"kind":"field","name":"enableSearch","description":"boolean: When true the Search box will be displayed","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-search"},{"kind":"field","name":"enableSnapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-snapping"},{"kind":"field","name":"floorLevel","description":"string: selected floor level","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"floor-level"},{"kind":"field","name":"formElements","description":"string: selected floor level","type":{"text":"any","values":[{"type":"any"}]},"attribute":"form-elements"},{"kind":"field","name":"isMobile","description":"boolean: When true the application will be in mobile mode, controls the mobile or desktop view","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-mobile"},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"popupEnabled","description":"boolean: When true clicking on a feature on the map will display a popup","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"popup-enabled"},{"kind":"field","name":"reportingArea","description":"boolean: When true reporting area layer should be honored if it exists","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"reporting-area"},{"kind":"field","name":"reportingAreaLayer","description":"string: polygon layer for the reporting feature","type":{"text":"string | undefined","values":[{"type":"string"}]},"default":"''","attribute":"reporting-area-layer"},{"kind":"field","name":"reportingAreaMessage","description":"string: Message to be displayed when feature is outside the reportingAreaLayer","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"reporting-area-message"},{"kind":"field","name":"searchConfiguration","description":"ISearchConfiguration: Configuration details for the Search widget","type":{"text":"ISearchConfiguration | undefined","references":[{"name":"ISearchConfiguration","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchConfiguration","start":0,"end":20}]}},{"kind":"field","name":"selectedLayerId","description":"string: Layer id of the feature layer in which the new feature is to be created","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"selected-layer-id"},{"kind":"field","name":"showGuidingMsg","description":"boolean: When true the notice message with the current state should be shown","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"true","attribute":"show-guiding-msg"},{"kind":"field","name":"showLayerVisibilityMsg","description":"boolean: When true the layer visibility message will be shown","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"show-layer-visibility-msg"},{"kind":"field","name":"showSketchWidgets","description":"boolean: When true Editor's sketch widgets will be displayed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-sketch-widgets"},{"kind":"field","name":"submitNewReportsMessage","description":"string: Text to be displayed that will allow user to know they can submit new reports","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"submit-new-reports-message"},{"kind":"field","name":"updateMapPosition","description":"boolean: When true the map should shown in the editor component in mobile mode (while drawing graphic)","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"update-map-position"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst createFeature = document.querySelector(\"create-feature\");\ndocument.body.append(createFeature);\nawait createFeature.componentOnReady();\nconsole.log(\"create-feature is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"refresh","description":"Refreshes the editor state, optionally updating the floor level.","parameters":[{"name":"floorLevel","description":"(Optional) The floor level to set. If provided, the editor updates to this floor level.","optional":true,"type":{"text":"string"}}],"return":{"description":"A promise that resolves when the refresh operation is complete.","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(floorLevel?: string): Promise<void>"},{"kind":"method","name":"showForm","description":"Shows feature form","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"submit","description":"Submit the created feature","return":{"description":"Promise that resolves when the operation is complete","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"}],"attributes":[{"name":"allow-multiple-creation","description":"boolean: When true user can create multiple features","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"allowMultipleCreation"},{"name":"app-name","description":"string: The name of Instant Apps application (e.g., \"reporter\", \"manager\") used in the request source header","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"appName"},{"name":"customize-submit","description":"boolean: Set this to true when have a custom submit button in the app.\nThis will hide the header and footer elements of the editor and user needs to execute the submit method manually.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"customizeSubmit"},{"name":"enable-photo-location","description":"boolean: When true photo get location from the photo selected for AI image Extraction","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enablePhotoLocation"},{"name":"enable-search","description":"boolean: When true the Search box will be displayed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSearch"},{"name":"enable-snapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSnapping"},{"name":"floor-level","description":"string: selected floor level","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"floorLevel"},{"name":"form-elements","description":"string: selected floor level","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"formElements"},{"name":"is-mobile","description":"boolean: When true the application will be in mobile mode, controls the mobile or desktop view","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMobile"},{"name":"popup-enabled","description":"boolean: When true clicking on a feature on the map will display a popup","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"popupEnabled"},{"name":"reporting-area","description":"boolean: When true reporting area layer should be honored if it exists","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"reportingArea"},{"name":"reporting-area-layer","description":"string: polygon layer for the reporting feature","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"reportingAreaLayer"},{"name":"reporting-area-message","description":"string: Message to be displayed when feature is outside the reportingAreaLayer","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"reportingAreaMessage"},{"name":"selected-layer-id","description":"string: Layer id of the feature layer in which the new feature is to be created","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"selectedLayerId"},{"name":"show-guiding-msg","description":"boolean: When true the notice message with the current state should be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showGuidingMsg"},{"name":"show-layer-visibility-msg","description":"boolean: When true the layer visibility message will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showLayerVisibilityMsg"},{"name":"show-sketch-widgets","description":"boolean: When true Editor's sketch widgets will be displayed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showSketchWidgets"},{"name":"submit-new-reports-message","description":"string: Text to be displayed that will allow user to know they can submit new reports","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"submitNewReportsMessage"},{"name":"update-map-position","description":"boolean: When true the map should shown in the editor component in mobile mode (while drawing graphic)","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"updateMapPosition"}],"events":[{"name":"drawComplete","description":"Emitted on demand when drawing is completed","type":{"text":"boolean"}},{"name":"editingAttachment","description":"Emitted on demand when editing attachments","type":{"text":"boolean"}},{"name":"editingLocation","description":"Emitted on demand when in editing mode","type":{"text":"void"}},{"name":"fail","description":"Emitted on demand when the feature creation is failed","type":{"text":"Error","references":[{"name":"Error","package":"global:","viewUrl":"https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error","start":0,"end":5}]}},{"name":"modeChanged","description":"Emitted on switched form mobile to desktop or vice versa","type":{"text":"void"}},{"name":"progressStatus","description":"Emitted on demand when editor panel changes","type":{"text":"number"}},{"name":"success","description":"Emitted on demand when the feature is created successfully","type":{"text":"void"}}],"importPath":"components/create-feature"}],"exports":[{"kind":"custom-element-definition","name":"create-feature","declaration":{"name":"CreateFeature"}}]},{"kind":"javascript-module","path":"components/create-related-feature","sourcePath":"src/components/create-related-feature/create-related-feature.tsx","declarations":[{"kind":"class","name":"CreateRelatedFeature","customElement":true,"tagName":"create-related-feature","pascalCaseName":"CreateRelatedFeature","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"customizeSubmit","description":"boolean: Set this to true when have a custom submit button in the app.\nThis will hide the header and footer elements of the editor and user needs to execute the submit method manually.","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"customize-submit"},{"kind":"field","name":"enableSnapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-snapping"},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"selectedFeature","description":"__esri.Graphic: https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html","type":{"text":"__esri.Graphic | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"showGuidingMsg","description":"boolean: When true the notice message should be shown","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"true","attribute":"show-guiding-msg"},{"kind":"field","name":"table","description":"__esri.FeatureLayer: https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html","type":{"text":"__esri.FeatureLayer | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst createRelatedFeature = document.querySelector(\"create-related-feature\");\ndocument.body.append(createRelatedFeature);\nawait createRelatedFeature.componentOnReady();\nconsole.log(\"create-related-feature is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"submit","description":"Submit the comment","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"}],"attributes":[{"name":"customize-submit","description":"boolean: Set this to true when have a custom submit button in the app.\nThis will hide the header and footer elements of the editor and user needs to execute the submit method manually.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"customizeSubmit"},{"name":"enable-snapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSnapping"},{"name":"show-guiding-msg","description":"boolean: When true the notice message should be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showGuidingMsg"}],"events":[{"name":"fail","description":"Emitted on demand when the comment submission is failed","type":{"text":"Error","references":[{"name":"Error","package":"global:","viewUrl":"https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error","start":0,"end":5}]}},{"name":"formReady","description":"Emitted on demand when form is ready","type":{"text":"void"}},{"name":"isActionPending","description":"Emitted on demand when any action is pending or completed","type":{"text":"boolean"}},{"name":"success","description":"Emitted on demand when the comment is submitted successfully","type":{"text":"void"}}],"importPath":"components/create-related-feature"}],"exports":[{"kind":"custom-element-definition","name":"create-related-feature","declaration":{"name":"CreateRelatedFeature"}}]},{"kind":"javascript-module","path":"components/crowdsource-manager","sourcePath":"src/components/crowdsource-manager/crowdsource-manager.tsx","declarations":[{"kind":"class","name":"CrowdsourceManager","customElement":true,"tagName":"crowdsource-manager","pascalCaseName":"CrowdsourceManager","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"appLayout","description":"AppLayout: The type of layout the application should use.\nValid values: 'mapView' or 'tableView' or 'splitView'","type":{"text":"AppLayout | undefined","references":[{"name":"AppLayout","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#AppLayout","start":0,"end":9}],"values":[{"type":"string","value":"mapView"},{"type":"string","value":"tableView"},{"type":"string","value":"splitView"}]},"attribute":"app-layout"},{"kind":"field","name":"appProxies","description":"Array of objects containing proxy information for premium platform services.","type":{"text":"any","values":[{"type":"any"}]},"attribute":"app-proxies"},{"kind":"field","name":"basemapConfig","description":"IBasemapConfig: List of any basemaps to filter out from the basemap widget","type":{"text":"IBasemapConfig | undefined","references":[{"name":"IBasemapConfig","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IBasemapConfig","start":0,"end":14}]}},{"kind":"field","name":"coverPageEnabled","description":"boolean: When true a cover page has been enabled in the consuming application.\nAlso when true a floating button will be shown in the lower right of the window that\nwill emit an event when clicked that the consuming application can respond to that will open the cover page.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"cover-page-enabled"},{"kind":"field","name":"customInfoText","description":"string: custom notification text to display in the card manager","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"custom-info-text"},{"kind":"field","name":"defaultAppLayout","description":"string: default layout the application should use","type":{"text":"AppLayout | undefined","references":[{"name":"AppLayout","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#AppLayout","start":0,"end":9}],"values":[{"type":"string","value":"mapView"},{"type":"string","value":"tableView"},{"type":"string","value":"splitView"}]},"attribute":"default-app-layout"},{"kind":"field","name":"defaultCenter","description":"string: default center point values for the map\n; delimited x;y pair","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-center"},{"kind":"field","name":"defaultGlobalId","description":"string: Global ID of the feature to select","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-global-id"},{"kind":"field","name":"defaultLayer","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-layer"},{"kind":"field","name":"defaultLevel","description":"string: default zoom level","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-level"},{"kind":"field","name":"defaultOid","description":"string: Object ID of feature to select","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-oid"},{"kind":"field","name":"defaultWebmap","description":"string: Item ID of the web map that should be selected by default","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-webmap"},{"kind":"field","name":"enableAutoRefresh","description":"boolean: when true the layer table will auto refresh the data","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-auto-refresh"},{"kind":"field","name":"enableBasemap","description":"boolean: when true the basemap widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-basemap"},{"kind":"field","name":"enableColumnReorder","description":"boolean: when true the layer table will support drag/drop of columns to adjust order","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-column-reorder"},{"kind":"field","name":"enableCSV","description":"boolean: when true the export to csv button will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-csv"},{"kind":"field","name":"enableFloorFilter","description":"boolean: when true the fullscreen widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-floor-filter"},{"kind":"field","name":"enableFullscreen","description":"boolean: when true the fullscreen widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-fullscreen"},{"kind":"field","name":"enableHome","description":"boolean: when true the home widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-home"},{"kind":"field","name":"enableLayerList","description":"boolean: when true the layer list widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-layer-list"},{"kind":"field","name":"enableLegend","description":"boolean: when true the legend widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-legend"},{"kind":"field","name":"enableMapList","description":"boolean: when true the map list will be shown and usable","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-map-list"},{"kind":"field","name":"enableSearch","description":"boolean: when true the search widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-search"},{"kind":"field","name":"enableSelectionTool","description":"boolean: when true the selection tool will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-selection-tool"},{"kind":"field","name":"enableShare","description":"boolean: when true the share widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-share"},{"kind":"field","name":"enableSnapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-snapping"},{"kind":"field","name":"enableZoom","description":"boolean: when true the zoom widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-zoom"},{"kind":"field","name":"featureSelectionMode","description":"string: selection mode for the feature selection","type":{"text":"string","values":[{"type":"string"}]},"default":"'multiple'","attribute":"feature-selection-mode"},{"kind":"field","name":"honorMapFieldSettings","description":"boolean: when true we will honor field order and visibility that may have been defined\nin the map viewer if no field order is defined in the mapInfo.\n\nField order defined in the mapInfo as would be the case for Instant App configurations\nwill always override this map level setting.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"honor-map-field-settings"},{"kind":"field","name":"introductionWindowEnabled","description":"boolean: When true a introduction window has been enabled in the consuming application.\nAlso when true a floating button will be shown in the lower right of the window that\nwill emit an event when clicked that the consuming application can respond to that will open the introduction window.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"introduction-window-enabled"},{"kind":"field","name":"mapInfos","description":"IMapInfo[]: array of map infos (name and id)","type":{"text":"IMapInfo[]","references":[{"name":"IMapInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}},{"kind":"field","name":"onlyShowUpdatableLayers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"only-show-updatable-layers"},{"kind":"field","name":"popupHeaderColor","description":"string: The background color to apply to the popup header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"popup-header-color"},{"kind":"field","name":"popupHeaderHoverColor","description":"string: The color that will be displayed on hover when expanding the popup header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"popup-header-hover-color"},{"kind":"field","name":"popupHeaderHoverTextColor","description":"string: The font color that will be displayed on hover when expanding the popup header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"popup-header-hover-text-color"},{"kind":"field","name":"popupHeaderTextColor","description":"string: The font color to apply to the popup header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"popup-header-text-color"},{"kind":"field","name":"searchConfiguration","description":"ISearchConfiguration: Configuration details for the Search widget","type":{"text":"ISearchConfiguration | undefined","references":[{"name":"ISearchConfiguration","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchConfiguration","start":0,"end":20}]}},{"kind":"field","name":"shareIncludeEmbed","description":"boolean: When true the share options will include embed option","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"share-include-embed"},{"kind":"field","name":"shareIncludeSocial","description":"boolean: When true the share options will include social media sharing","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"share-include-social"},{"kind":"field","name":"showNewestFirst","description":"boolean: when true the table will be sorted by objectid in descending order by default","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"show-newest-first"},{"kind":"field","name":"theme","description":"theme: 'light' | 'dark' theme to be used","type":{"text":"theme","references":[{"name":"theme","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#theme","start":0,"end":5}],"values":[{"type":"string","value":"light"},{"type":"string","value":"dark"}]},"default":"'light'","attribute":"theme"},{"kind":"field","name":"visibilityIcon","description":"VisibilityIconType: visibility icon for the layer list widget","type":{"text":"VisibilityIconType","references":[{"name":"VisibilityIconType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#VisibilityIconType","start":0,"end":18}],"values":[{"type":"string","value":"checkbox"},{"type":"string","value":"eyeball"}]},"default":"'eyeball'","attribute":"visibility-icon"},{"kind":"field","name":"zoomAndScrollToSelected","description":"boolean: When true the selected feature will zoomed to in the map and the row will be scrolled to within the table","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"zoom-and-scroll-to-selected"},{"kind":"field","name":"zoomToScale","description":"number: default scale to zoom to when zooming to a single point feature","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"zoom-to-scale"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst crowdsourceManager = document.querySelector(\"crowdsource-manager\");\ndocument.body.append(crowdsourceManager);\nawait crowdsourceManager.componentOnReady();\nconsole.log(\"crowdsource-manager is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"app-layout","description":"AppLayout: The type of layout the application should use.\nValid values: 'mapView' or 'tableView' or 'splitView'","type":{"text":"\"mapView\" | \"tableView\" | \"splitView\"","values":[{"type":"string","value":"mapView"},{"type":"string","value":"tableView"},{"type":"string","value":"splitView"}]},"fieldName":"appLayout"},{"name":"app-proxies","description":"Array of objects containing proxy information for premium platform services.","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"appProxies"},{"name":"cover-page-enabled","description":"boolean: When true a cover page has been enabled in the consuming application.\nAlso when true a floating button will be shown in the lower right of the window that\nwill emit an event when clicked that the consuming application can respond to that will open the cover page.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"coverPageEnabled"},{"name":"custom-info-text","description":"string: custom notification text to display in the card manager","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"customInfoText"},{"name":"default-app-layout","description":"string: default layout the application should use","type":{"text":"\"mapView\" | \"tableView\" | \"splitView\"","values":[{"type":"string","value":"mapView"},{"type":"string","value":"tableView"},{"type":"string","value":"splitView"}]},"fieldName":"defaultAppLayout"},{"name":"default-center","description":"string: default center point values for the map\n; delimited x;y pair","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultCenter"},{"name":"default-global-id","description":"string: Global ID of the feature to select","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultGlobalId"},{"name":"default-layer","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultLayer"},{"name":"default-level","description":"string: default zoom level","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultLevel"},{"name":"default-oid","description":"string: Object ID of feature to select","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultOid"},{"name":"default-webmap","description":"string: Item ID of the web map that should be selected by default","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultWebmap"},{"name":"enable-auto-refresh","description":"boolean: when true the layer table will auto refresh the data","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableAutoRefresh"},{"name":"enable-basemap","description":"boolean: when true the basemap widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableBasemap"},{"name":"enable-column-reorder","description":"boolean: when true the layer table will support drag/drop of columns to adjust order","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableColumnReorder"},{"name":"enable-csv","description":"boolean: when true the export to csv button will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableCSV"},{"name":"enable-floor-filter","description":"boolean: when true the fullscreen widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableFloorFilter"},{"name":"enable-fullscreen","description":"boolean: when true the fullscreen widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableFullscreen"},{"name":"enable-home","description":"boolean: when true the home widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableHome"},{"name":"enable-layer-list","description":"boolean: when true the layer list widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableLayerList"},{"name":"enable-legend","description":"boolean: when true the legend widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableLegend"},{"name":"enable-map-list","description":"boolean: when true the map list will be shown and usable","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableMapList"},{"name":"enable-search","description":"boolean: when true the search widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableSearch"},{"name":"enable-selection-tool","description":"boolean: when true the selection tool will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableSelectionTool"},{"name":"enable-share","description":"boolean: when true the share widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableShare"},{"name":"enable-snapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableSnapping"},{"name":"enable-zoom","description":"boolean: when true the zoom widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableZoom"},{"name":"feature-selection-mode","description":"string: selection mode for the feature selection","type":{"text":"string","values":[{"type":"string"}]},"default":"'multiple'","fieldName":"featureSelectionMode"},{"name":"honor-map-field-settings","description":"boolean: when true we will honor field order and visibility that may have been defined\nin the map viewer if no field order is defined in the mapInfo.\n\nField order defined in the mapInfo as would be the case for Instant App configurations\nwill always override this map level setting.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"honorMapFieldSettings"},{"name":"introduction-window-enabled","description":"boolean: When true a introduction window has been enabled in the consuming application.\nAlso when true a floating button will be shown in the lower right of the window that\nwill emit an event when clicked that the consuming application can respond to that will open the introduction window.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"introductionWindowEnabled"},{"name":"only-show-updatable-layers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"onlyShowUpdatableLayers"},{"name":"popup-header-color","description":"string: The background color to apply to the popup header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"popupHeaderColor"},{"name":"popup-header-hover-color","description":"string: The color that will be displayed on hover when expanding the popup header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"popupHeaderHoverColor"},{"name":"popup-header-hover-text-color","description":"string: The font color that will be displayed on hover when expanding the popup header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"popupHeaderHoverTextColor"},{"name":"popup-header-text-color","description":"string: The font color to apply to the popup header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"popupHeaderTextColor"},{"name":"share-include-embed","description":"boolean: When true the share options will include embed option","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"shareIncludeEmbed"},{"name":"share-include-social","description":"boolean: When true the share options will include social media sharing","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"shareIncludeSocial"},{"name":"show-newest-first","description":"boolean: when true the table will be sorted by objectid in descending order by default","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showNewestFirst"},{"name":"theme","description":"theme: 'light' | 'dark' theme to be used","type":{"text":"\"light\" | \"dark\"","values":[{"type":"string","value":"light"},{"type":"string","value":"dark"}]},"default":"'light'","fieldName":"theme"},{"name":"visibility-icon","description":"VisibilityIconType: visibility icon for the layer list widget","type":{"text":"\"checkbox\" | \"eyeball\"","values":[{"type":"string","value":"checkbox"},{"type":"string","value":"eyeball"}]},"default":"'eyeball'","fieldName":"visibilityIcon"},{"name":"zoom-and-scroll-to-selected","description":"boolean: When true the selected feature will zoomed to in the map and the row will be scrolled to within the table","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"zoomAndScrollToSelected"},{"name":"zoom-to-scale","description":"number: default scale to zoom to when zooming to a single point feature","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"zoomToScale"}],"events":[{"name":"showCoverPage","description":"Emitted on demand when a cover page button is clicked","type":{"text":"void"}},{"name":"showIntroductionWindow","description":"Emitted on demand when a info button is clicked","type":{"text":"void"}}],"importPath":"components/crowdsource-manager"}],"exports":[{"kind":"custom-element-definition","name":"crowdsource-manager","declaration":{"name":"CrowdsourceManager"}}]},{"kind":"javascript-module","path":"components/crowdsource-reporter","sourcePath":"src/components/crowdsource-reporter/crowdsource-reporter.tsx","declarations":[{"kind":"class","name":"CrowdsourceReporter","customElement":true,"tagName":"crowdsource-reporter","pascalCaseName":"CrowdsourceReporter","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"aiImageExtraction","description":"array: Configured AI image extraction field and prompt for the selected LayerId","type":{"text":"IImageExtraction[]","references":[{"name":"IImageExtraction","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IImageExtraction","start":0,"end":16}]}},{"kind":"field","name":"center","description":"string: Semicolon delimited numbers that will be used as the maps center point from URL params","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"center"},{"kind":"field","name":"commentButtonText","description":"string: User configurable text to display for the comment button","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"comment-button-text"},{"kind":"field","name":"commentSubmittedMessage","description":"string: User configurable nessage to display when a comment is submitted","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"comment-submitted-message"},{"kind":"field","name":"defaultWebmap","description":"string: Item ID of the web map that should be selected by default","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-webmap"},{"kind":"field","name":"description","description":"string: The text that will display under the title on the landing page","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"description"},{"kind":"field","name":"enableAnonymousAccess","description":"boolean: When true the anonymous users will be allowed to submit reports and comments","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-anonymous-access"},{"kind":"field","name":"enableAnonymousComments","description":"boolean: When true the anonymous users will be allowed to submit comments","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-anonymous-comments"},{"kind":"field","name":"enableComments","description":"boolean: When true the user will be allowed to submit comments","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-comments"},{"kind":"field","name":"enableHome","description":"boolean: when true the home widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-home"},{"kind":"field","name":"enableLogin","description":"boolean: When true the user will be provided a login page","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-login"},{"kind":"field","name":"enableNewReports","description":"boolean: When true the user will be allowed to submit new reports","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-new-reports"},{"kind":"field","name":"enablePhotoLocation","description":"boolean: When true photo get location from the photo selected for AI image Extraction","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-photo-location"},{"kind":"field","name":"enableSearch","description":"boolean: when true the search widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-search"},{"kind":"field","name":"enableSnapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-snapping"},{"kind":"field","name":"enableZoom","description":"boolean: when true the zoom widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-zoom"},{"kind":"field","name":"filterByMapExtent","description":"boolean: When true only the features from current extent will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"filter-by-map-extent"},{"kind":"field","name":"floorLevel","description":"string: selected floor level","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"floor-level"},{"kind":"field","name":"isMobile","description":"boolean: When true the application will be in mobile mode, controls the mobile or desktop view","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-mobile"},{"kind":"field","name":"layerExpressions","description":"ILayerExpression[]: Array of layer expressions for layers (filter configuration)","type":{"text":"ILayerExpression[]","references":[{"name":"ILayerExpression","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILayerExpression","start":0,"end":16}]}},{"kind":"field","name":"layerId","description":"string: Layer id of the feature from URL params","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"layer-id"},{"kind":"field","name":"level","description":"string: Id of the zoom level from URL params","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"level"},{"kind":"field","name":"loginTitle","description":"string: The text that will display at the top of the landing page","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"login-title"},{"kind":"field","name":"mapInfos","description":"IMapInfo[]: array of map infos (name and id)","type":{"text":"IMapInfo[]","references":[{"name":"IMapInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"objectId","description":"string: Object id of the feature from URL params","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"object-id"},{"kind":"field","name":"reportButtonText","description":"string: The word(s) to display in the reports submit button","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"report-button-text"},{"kind":"field","name":"reportingArea","description":"boolean: When true reporting area layer should be honored if it exists","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"reporting-area"},{"kind":"field","name":"reportingAreaLayer","description":"string: Reporting polyon layer for creating feature","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"reporting-area-layer"},{"kind":"field","name":"reportingAreaMessage","description":"string: Message to be displayed when feature is outside the reportingAreaLayer","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"reporting-area-message"},{"kind":"field","name":"reportingOptions","description":"IReportingOptions: Key options for reporting","type":{"text":"IReportingOptions | undefined","references":[{"name":"IReportingOptions","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IReportingOptions","start":0,"end":17}]}},{"kind":"field","name":"reportsHeader","description":"string: The word(s) to display in the reports header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"reports-header"},{"kind":"field","name":"reportSubmittedMessage","description":"string: The message to display when the report has been submitted","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"report-submitted-message"},{"kind":"field","name":"searchConfiguration","description":"ISearchConfiguration: Configuration details for the Search widget","type":{"text":"ISearchConfiguration | undefined","references":[{"name":"ISearchConfiguration","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchConfiguration","start":0,"end":20}]}},{"kind":"field","name":"showComments","description":"boolean: When true the comments from all users will be visible","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-comments"},{"kind":"field","name":"showFeatureSymbol","description":"boolean: When true the feature symbology of the feature will shown in the features list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-feature-symbol"},{"kind":"field","name":"showFullCommentTitle","description":"boolean: When false comment will shown in single line in the comments list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"show-full-comment-title"},{"kind":"field","name":"showMyReportsOnly","description":"boolean: To show only those features which are created by the logged in user","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"show-my-reports-only"},{"kind":"field","name":"showUserImageInCommentsList","description":"boolean: When true the profile image of the comment creator will be shown in the comments list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-user-image-in-comments-list"},{"kind":"field","name":"sortOption","description":"string: sorting option to show the feature list","type":{"text":"string","values":[{"type":"string"}]},"default":"'newest'","attribute":"sort-option"},{"kind":"field","name":"submitNewReportsMessage","description":"string: Text to be displayed that will allow user to know they can submit new reports","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"submit-new-reports-message"},{"kind":"field","name":"theme","description":"theme: light | dark theme to be used","type":{"text":"theme","references":[{"name":"theme","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#theme","start":0,"end":5}],"values":[{"type":"string","value":"light"},{"type":"string","value":"dark"}]},"default":"'light'","attribute":"theme"},{"kind":"field","name":"zoomToScale","description":"number: default scale to zoom to when zooming to a single point feature","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"zoom-to-scale"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst crowdsourceReporter = document.querySelector(\"crowdsource-reporter\");\ndocument.body.append(crowdsourceReporter);\nawait crowdsourceReporter.componentOnReady();\nconsole.log(\"crowdsource-reporter is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"updateLayerExpressionsT9n","description":"Method to update layerExpressions with the translated values","parameters":[{"name":"t9nLayerExpressions","type":{"text":"ILayerExpression[]","references":[{"name":"ILayerExpression","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILayerExpression","start":0,"end":16}]}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(t9nLayerExpressions: ILayerExpression[]): Promise<void>"}],"attributes":[{"name":"center","description":"string: Semicolon delimited numbers that will be used as the maps center point from URL params","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"center"},{"name":"comment-button-text","description":"string: User configurable text to display for the comment button","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"commentButtonText"},{"name":"comment-submitted-message","description":"string: User configurable nessage to display when a comment is submitted","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"commentSubmittedMessage"},{"name":"default-webmap","description":"string: Item ID of the web map that should be selected by default","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultWebmap"},{"name":"description","description":"string: The text that will display under the title on the landing page","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"description"},{"name":"enable-anonymous-access","description":"boolean: When true the anonymous users will be allowed to submit reports and comments","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableAnonymousAccess"},{"name":"enable-anonymous-comments","description":"boolean: When true the anonymous users will be allowed to submit comments","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableAnonymousComments"},{"name":"enable-comments","description":"boolean: When true the user will be allowed to submit comments","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableComments"},{"name":"enable-home","description":"boolean: when true the home widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableHome"},{"name":"enable-login","description":"boolean: When true the user will be provided a login page","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableLogin"},{"name":"enable-new-reports","description":"boolean: When true the user will be allowed to submit new reports","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableNewReports"},{"name":"enable-photo-location","description":"boolean: When true photo get location from the photo selected for AI image Extraction","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enablePhotoLocation"},{"name":"enable-search","description":"boolean: when true the search widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableSearch"},{"name":"enable-snapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSnapping"},{"name":"enable-zoom","description":"boolean: when true the zoom widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableZoom"},{"name":"filter-by-map-extent","description":"boolean: When true only the features from current extent will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"filterByMapExtent"},{"name":"floor-level","description":"string: selected floor level","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"floorLevel"},{"name":"is-mobile","description":"boolean: When true the application will be in mobile mode, controls the mobile or desktop view","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMobile"},{"name":"layer-id","description":"string: Layer id of the feature from URL params","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"layerId"},{"name":"level","description":"string: Id of the zoom level from URL params","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"level"},{"name":"login-title","description":"string: The text that will display at the top of the landing page","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"loginTitle"},{"name":"object-id","description":"string: Object id of the feature from URL params","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"objectId"},{"name":"report-button-text","description":"string: The word(s) to display in the reports submit button","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"reportButtonText"},{"name":"reporting-area","description":"boolean: When true reporting area layer should be honored if it exists","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"reportingArea"},{"name":"reporting-area-layer","description":"string: Reporting polyon layer for creating feature","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"reportingAreaLayer"},{"name":"reporting-area-message","description":"string: Message to be displayed when feature is outside the reportingAreaLayer","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"reportingAreaMessage"},{"name":"reports-header","description":"string: The word(s) to display in the reports header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"reportsHeader"},{"name":"report-submitted-message","description":"string: The message to display when the report has been submitted","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"reportSubmittedMessage"},{"name":"show-comments","description":"boolean: When true the comments from all users will be visible","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showComments"},{"name":"show-feature-symbol","description":"boolean: When true the feature symbology of the feature will shown in the features list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showFeatureSymbol"},{"name":"show-full-comment-title","description":"boolean: When false comment will shown in single line in the comments list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showFullCommentTitle"},{"name":"show-my-reports-only","description":"boolean: To show only those features which are created by the logged in user","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showMyReportsOnly"},{"name":"show-user-image-in-comments-list","description":"boolean: When true the profile image of the comment creator will be shown in the comments list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showUserImageInCommentsList"},{"name":"sort-option","description":"string: sorting option to show the feature list","type":{"text":"string","values":[{"type":"string"}]},"default":"'newest'","fieldName":"sortOption"},{"name":"submit-new-reports-message","description":"string: Text to be displayed that will allow user to know they can submit new reports","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"submitNewReportsMessage"},{"name":"theme","description":"theme: light | dark theme to be used","type":{"text":"\"light\" | \"dark\"","values":[{"type":"string","value":"light"},{"type":"string","value":"dark"}]},"default":"'light'","fieldName":"theme"},{"name":"zoom-to-scale","description":"number: default scale to zoom to when zooming to a single point feature","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"zoomToScale"}],"events":[{"name":"togglePanel","description":"Emitted when toggle panel button is clicked in reporter","type":{"text":"{\n panelState: boolean;\n isFormOpen: boolean;\n}"}}],"importPath":"components/crowdsource-reporter"}],"exports":[{"kind":"custom-element-definition","name":"crowdsource-reporter","declaration":{"name":"CrowdsourceReporter"}}]},{"kind":"javascript-module","path":"components/deduct-calculator","sourcePath":"src/components/deduct-calculator/deduct-calculator.tsx","declarations":[{"kind":"class","name":"DeductCalculator","customElement":true,"tagName":"deduct-calculator","pascalCaseName":"DeductCalculator","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst deductCalculator = document.querySelector(\"deduct-calculator\");\ndocument.body.append(deductCalculator);\nawait deductCalculator.componentOnReady();\nconsole.log(\"deduct-calculator is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"events":[{"name":"deductValueComplete","description":"Emitted on demand when the user clicks to calculate the deduct value","type":{"text":"string"}}],"importPath":"components/deduct-calculator"}],"exports":[{"kind":"custom-element-definition","name":"deduct-calculator","declaration":{"name":"DeductCalculator"}}]},{"kind":"javascript-module","path":"components/delete-button","sourcePath":"src/components/delete-button/delete-button.tsx","declarations":[{"kind":"class","name":"DeleteButton","customElement":true,"tagName":"delete-button","pascalCaseName":"DeleteButton","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"buttonType","description":"ButtonType (button | action): Support usage as action or button","type":{"text":"ButtonType","references":[{"name":"ButtonType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ButtonType","start":0,"end":10}],"values":[{"type":"string","value":"button"},{"type":"string","value":"action"}]},"default":"'button'","attribute":"button-type"},{"kind":"field","name":"deleteDialog","description":"calcite-dialog: Use this prop when using the button within a parent like a dropdown that would constrain the dialog and that is not desired","type":{"text":"any","values":[{"type":"any"}]},"attribute":"delete-dialog"},{"kind":"field","name":"disabled","description":"boolean: This overrides internal enable/disable logic that is based on checks if the layer supports delete","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"disabled"},{"kind":"field","name":"icon","description":"string: The icon to display in the component","type":{"text":"Icon[\"icon\"] | undefined","references":[{"name":"Icon","module":"components/calcite-icon","package":"@esri/calcite-components","start":0,"end":4}],"values":[{"type":"string"}]},"attribute":"icon"},{"kind":"field","name":"ids","description":"number[]: The ids that would be deleted","type":{"text":"(number | string)[]"}},{"kind":"field","name":"layer","description":"esri/views/layers/FeatureLayer: https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html","type":{"text":"__esri.FeatureLayer | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"showDeleteCount","description":"boolean: When true the delete button will show the number of features that will be deleted","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"show-delete-count"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst deleteButton = document.querySelector(\"delete-button\");\ndocument.body.append(deleteButton);\nawait deleteButton.componentOnReady();\nconsole.log(\"delete-button is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"button-type","description":"ButtonType (button | action): Support usage as action or button","type":{"text":"\"button\" | \"action\"","values":[{"type":"string","value":"button"},{"type":"string","value":"action"}]},"default":"'button'","fieldName":"buttonType"},{"name":"delete-dialog","description":"calcite-dialog: Use this prop when using the button within a parent like a dropdown that would constrain the dialog and that is not desired","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"deleteDialog"},{"name":"disabled","description":"boolean: This overrides internal enable/disable logic that is based on checks if the layer supports delete","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"disabled"},{"name":"icon","description":"string: The icon to display in the component","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"icon"},{"name":"show-delete-count","description":"boolean: When true the delete button will show the number of features that will be deleted","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showDeleteCount"}],"events":[{"name":"deleteClicked","description":"Emitted on demand when the delete button is clicked","type":{"text":"void"}},{"name":"editsComplete","description":"Emitted on demand when features have been deleted","type":{"text":"EditType","references":[{"name":"EditType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#EditType","start":0,"end":8}]}}],"importPath":"components/delete-button"}],"exports":[{"kind":"custom-element-definition","name":"delete-button","declaration":{"name":"DeleteButton"}}]},{"kind":"javascript-module","path":"components/delete-dialog","sourcePath":"src/components/delete-dialog/delete-dialog.tsx","declarations":[{"kind":"class","name":"DeleteDialog","customElement":true,"tagName":"delete-dialog","pascalCaseName":"DeleteDialog","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"ids","description":"number[]: The ids that would be deleted","type":{"text":"(number | string)[]"}},{"kind":"field","name":"layer","description":"esri/views/layers/FeatureLayer: https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html","type":{"text":"__esri.FeatureLayer | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"open","description":"boolean: When true the delete dialog will be displayed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"open"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst deleteDialog = document.querySelector(\"delete-dialog\");\ndocument.body.append(deleteDialog);\nawait deleteDialog.componentOnReady();\nconsole.log(\"delete-dialog is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"open","description":"boolean: When true the delete dialog will be displayed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"open"}],"events":[{"name":"deleteDialogClose","description":"Emitted on demand when features have been deleted","type":{"text":"void"}},{"name":"editsComplete","description":"Emitted on demand when features have been deleted","type":{"text":"EditType","references":[{"name":"EditType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#EditType","start":0,"end":8}]}}],"importPath":"components/delete-dialog"}],"exports":[{"kind":"custom-element-definition","name":"delete-dialog","declaration":{"name":"DeleteDialog"}}]},{"kind":"javascript-module","path":"components/edit-card","sourcePath":"src/components/edit-card/edit-card.tsx","declarations":[{"kind":"class","name":"EditCard","customElement":true,"tagName":"edit-card","pascalCaseName":"EditCard","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"allowMultipleEditing","description":"When true allow multiple editing","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"allow-multiple-editing"},{"kind":"field","name":"enableEditGeometry","description":"When true the geometry of the current feature will be editable","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-edit-geometry"},{"kind":"field","name":"enableSnapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-snapping"},{"kind":"field","name":"graphicIndex","description":"The index of the current graphic","type":{"text":"number","values":[{"type":"number"}]},"default":"0","attribute":"graphic-index"},{"kind":"field","name":"graphics","description":"esri/Graphic[]: https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html","type":{"text":"__esri.Graphic[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"open","description":"When true the component is displayed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"open"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst editCard = document.querySelector(\"edit-card\");\ndocument.body.append(editCard);\nawait editCard.componentOnReady();\nconsole.log(\"edit-card is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"allow-multiple-editing","description":"When true allow multiple editing","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"allowMultipleEditing"},{"name":"enable-edit-geometry","description":"When true the geometry of the current feature will be editable","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableEditGeometry"},{"name":"enable-snapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSnapping"},{"name":"graphic-index","description":"The index of the current graphic","type":{"text":"number","values":[{"type":"number"}]},"default":"0","fieldName":"graphicIndex"},{"name":"open","description":"When true the component is displayed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"open"}],"events":[{"name":"closeEdit","description":"Emitted on demand when the Editor widget should be closed","type":{"text":"void"}},{"name":"creatingFeature","description":"Event emitted upon selection of a table and invocation of feature addition from the related layer during an active edit workflow.","type":{"text":"void"}},{"name":"editorInitialized","description":"Emit the Editor when it is initialized","type":{"text":"__esri.Editor","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"name":"editsComplete","description":"Emitted on demand when edits are completed on current edit layer","type":{"text":"void"}},{"name":"refreshGraphics","description":"Emitted on demand when the editor is closed to handle\nthings like attachment updates that don't fire the standard edit update event when complete","type":{"text":"__esri.Graphic[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}}],"importPath":"components/edit-card"}],"exports":[{"kind":"custom-element-definition","name":"edit-card","declaration":{"name":"EditCard"}}]},{"kind":"javascript-module","path":"components/feature-details","sourcePath":"src/components/feature-details/feature-details.tsx","declarations":[{"kind":"class","name":"FeatureDetails","customElement":true,"tagName":"feature-details","pascalCaseName":"FeatureDetails","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"enableSnapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-snapping"},{"kind":"field","name":"graphics","description":"esri/Graphic: https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html","type":{"text":"__esri.Graphic[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"layerItemsHash","description":"ILayerItemsHash: LayerDetailsHash for each layer in the map","type":{"text":"ILayerItemsHash | undefined","references":[{"name":"ILayerItemsHash","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILayerItemsHash","start":0,"end":15}]}},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"reportingOptions","description":"IReportingOptions: Key options for reporting","type":{"text":"IReportingOptions | undefined","references":[{"name":"IReportingOptions","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IReportingOptions","start":0,"end":17}]}},{"kind":"field","name":"showFullCommentTitle","description":"boolean: When false comment will shown in single line in the comments list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"show-full-comment-title"},{"kind":"field","name":"showUserImageInCommentsList","description":"boolean: When true the profile image of the comment creator will be shown in the comments list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-user-image-in-comments-list"},{"kind":"method","name":"back","description":"Go to the previous feature in the features widget","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst featureDetails = document.querySelector(\"feature-details\");\ndocument.body.append(featureDetails);\nawait featureDetails.componentOnReady();\nconsole.log(\"feature-details is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"next","description":"Go to the next feature in the features widget","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"refresh","description":"Refresh the features comments which will fetch like, dislike and update the component","parameters":[{"name":"graphic","optional":true,"type":{"text":"__esri.Graphic","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}}],"return":{"description":"Promise that resolves when the operation is complete","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(graphic?: __esri.Graphic): Promise<void>"},{"kind":"method","name":"toggleListView","description":"Toggle the visibility of the features list view","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"}],"attributes":[{"name":"enable-snapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSnapping"},{"name":"show-full-comment-title","description":"boolean: When false comment will shown in single line in the comments list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showFullCommentTitle"},{"name":"show-user-image-in-comments-list","description":"boolean: When true the profile image of the comment creator will be shown in the comments list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showUserImageInCommentsList"}],"events":[{"name":"addComment","description":"Emitted on demand when comment icon is clicked","type":{"text":"void"}},{"name":"commentClick","description":"Emitted on demand when comment is clicked using the feature-list","type":{"text":"void"}},{"name":"commentSelect","description":"Emitted on demand when comment is selected using the feature-list","type":{"text":"__esri.Graphic","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"name":"featureSelectionChange","description":"Emitted on demand when the selected index changes","type":{"text":"{\n selectedFeature: __esri.Graphic[];\n selectedFeatureIndex: number;\n}","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":23,"end":30}]}},{"name":"likeOrDislikeClicked","description":"Emitted on demand when like or dislike button is clicked","type":{"text":"void"}},{"name":"loadingStatus","description":"Emitted on demand when like or dislike button is clicked","type":{"text":"boolean"}}],"importPath":"components/feature-details"}],"exports":[{"kind":"custom-element-definition","name":"feature-details","declaration":{"name":"FeatureDetails"}}]},{"kind":"javascript-module","path":"components/feature-list","sourcePath":"src/components/feature-list/feature-list.tsx","declarations":[{"kind":"class","name":"FeatureList","customElement":true,"tagName":"feature-list","pascalCaseName":"FeatureList","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"applyLayerViewFilter","description":"boolean: If true will consider the FeatureFilter applied on the layerview","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"apply-layer-view-filter"},{"kind":"field","name":"filterByMapExtent","description":"boolean: when true the feature from map view extent will shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"filter-by-map-extent"},{"kind":"field","name":"highlightOnHover","description":"boolean: Highlight feature on map optional (default false) boolean to indicate if we should highlight when hover on Feature in list","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"highlight-on-hover"},{"kind":"field","name":"highlightOnMap","description":"boolean: Highlight feature on map optional (default false) boolean to indicate if we should highlight and zoom to the extent of the feature geometry","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"highlight-on-map"},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"noFeaturesFoundMsg","description":"string: Message to be displayed when features are not found","type":{"text":"string | undefined","values":[{"type":"string"}]},"default":"''","attribute":"no-features-found-msg"},{"kind":"field","name":"pageSize","description":"number: Number features to be fetched per page, by default 100 features will be fetched","type":{"text":"number | undefined","values":[{"type":"number"}]},"default":"100","attribute":"page-size"},{"kind":"field","name":"reportingOptions","description":"IReportingOptions: Key options for reporting","type":{"text":"IReportingOptions | undefined","references":[{"name":"IReportingOptions","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IReportingOptions","start":0,"end":17}]}},{"kind":"field","name":"selectedLayerId","description":"string: Layer id of the feature layer to show the list","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"selected-layer-id"},{"kind":"field","name":"showErrorWhenNoFeatures","description":"boolean: If true will show error msg when features are not present","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"show-error-when-no-features"},{"kind":"field","name":"showFeatureSymbol","description":"boolean: If true display's feature symbol on each feature item","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"show-feature-symbol"},{"kind":"field","name":"showFullTitle","description":"boolean: When false popup title will shown in single line","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"show-full-title"},{"kind":"field","name":"showInitialLoading","description":"boolean: Show initial loading indicator when creating list","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"true","attribute":"show-initial-loading"},{"kind":"field","name":"showUserImageInList","description":"boolean: If true display's profile img on each feature item","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"show-user-image-in-list"},{"kind":"field","name":"sortingInfo","description":"ISortingInfo: Sorting field and order using which features list will be sorted","type":{"text":"ISortingInfo | undefined","references":[{"name":"ISortingInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortingInfo","start":0,"end":12}]}},{"kind":"field","name":"textSize","description":"string(small/large): Controls the font size of the title","type":{"text":"\"large\" | \"small\" | undefined","values":[{"type":"string","value":"large"},{"type":"string","value":"small"}]},"default":"'large'","attribute":"text-size"},{"kind":"field","name":"whereClause","description":"string: where clause to filter the features list","type":{"text":"string | undefined","values":[{"type":"string"}]},"attribute":"where-clause"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst featureList = document.querySelector(\"feature-list\");\ndocument.body.append(featureList);\nawait featureList.componentOnReady();\nconsole.log(\"feature-list is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"refresh","description":"Refresh the feature list which will fetch the latest features and update the features list","parameters":[{"name":"maintainPageState","description":"If true feature list page state will be maintained","optional":true,"type":{"text":"boolean"}}],"return":{"description":"Promise that resolves when the operation is complete","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(maintainPageState?: boolean): Promise<void>"}],"attributes":[{"name":"apply-layer-view-filter","description":"boolean: If true will consider the FeatureFilter applied on the layerview","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"applyLayerViewFilter"},{"name":"filter-by-map-extent","description":"boolean: when true the feature from map view extent will shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"filterByMapExtent"},{"name":"highlight-on-hover","description":"boolean: Highlight feature on map optional (default false) boolean to indicate if we should highlight when hover on Feature in list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"highlightOnHover"},{"name":"highlight-on-map","description":"boolean: Highlight feature on map optional (default false) boolean to indicate if we should highlight and zoom to the extent of the feature geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"highlightOnMap"},{"name":"no-features-found-msg","description":"string: Message to be displayed when features are not found","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"noFeaturesFoundMsg"},{"name":"page-size","description":"number: Number features to be fetched per page, by default 100 features will be fetched","type":{"text":"number","values":[{"type":"number"}]},"default":"100","fieldName":"pageSize"},{"name":"selected-layer-id","description":"string: Layer id of the feature layer to show the list","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"selectedLayerId"},{"name":"show-error-when-no-features","description":"boolean: If true will show error msg when features are not present","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showErrorWhenNoFeatures"},{"name":"show-feature-symbol","description":"boolean: If true display's feature symbol on each feature item","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showFeatureSymbol"},{"name":"show-full-title","description":"boolean: When false popup title will shown in single line","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showFullTitle"},{"name":"show-initial-loading","description":"boolean: Show initial loading indicator when creating list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showInitialLoading"},{"name":"show-user-image-in-list","description":"boolean: If true display's profile img on each feature item","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showUserImageInList"},{"name":"text-size","description":"string(small/large): Controls the font size of the title","type":{"text":"\"large\" | \"small\"","values":[{"type":"string","value":"large"},{"type":"string","value":"small"}]},"default":"'large'","fieldName":"textSize"},{"name":"where-clause","description":"string: where clause to filter the features list","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"whereClause"}],"events":[{"name":"featureClick","description":"Emitted on demand when feature is clicked using the list","type":{"text":"void"}},{"name":"featureSelect","description":"Emitted on demand when feature is selected using the list","type":{"text":"__esri.Graphic","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}}],"importPath":"components/feature-list"}],"exports":[{"kind":"custom-element-definition","name":"feature-list","declaration":{"name":"FeatureList"}}]},{"kind":"javascript-module","path":"components/field-selection","sourcePath":"src/components/field-selection/field-selection.tsx","declarations":[{"kind":"class","name":"FieldSelection","customElement":true,"tagName":"field-selection","pascalCaseName":"FieldSelection","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"configExtraFields","description":"Extra fields such as attachments and related fields from IA config","type":{"text":"any","values":[{"type":"any"}]},"attribute":"config-extra-fields"},{"kind":"field","name":"layer","description":"esri/views/layers/FeatureLayer: https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html","type":{"text":"__esri.FeatureLayer | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"table","description":"esri/widgets/FeatureTable: https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html","type":{"text":"__esri.FeatureTable | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"tableRef","description":"LayerTable reference to support column reorder","type":{"text":"LayerTable","references":[{"name":"LayerTable","module":"components/layer-table","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/layer-table/#LayerTable","start":0,"end":10}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst fieldSelection = document.querySelector(\"field-selection\");\ndocument.body.append(fieldSelection);\nawait fieldSelection.componentOnReady();\nconsole.log(\"field-selection is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"config-extra-fields","description":"Extra fields such as attachments and related fields from IA config","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"configExtraFields"}],"importPath":"components/field-selection"}],"exports":[{"kind":"custom-element-definition","name":"field-selection","declaration":{"name":"FieldSelection"}}]},{"kind":"javascript-module","path":"components/info-card","sourcePath":"src/components/info-card/info-card.tsx","declarations":[{"kind":"class","name":"InfoCard","customElement":true,"tagName":"info-card","pascalCaseName":"InfoCard","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"allowEditing","description":"boolean: If true will show edit button","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"allow-editing"},{"kind":"field","name":"enableEditGeometry","description":"When true the geometry of the current feature will be editable","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-edit-geometry"},{"kind":"field","name":"enableSnapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-snapping"},{"kind":"field","name":"graphics","description":"esri/Graphic: https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html","type":{"text":"__esri.Graphic[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"highlightEnabled","description":"boolean: If true will highlights the features on map using Features Widget","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"true","attribute":"highlight-enabled"},{"kind":"field","name":"isLoading","description":"boolean: when true a loading indicator will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-loading"},{"kind":"field","name":"isMobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-mobile"},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"paginationEnabled","description":"boolean: If true will show the pagination for multiple features","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"true","attribute":"pagination-enabled"},{"kind":"field","name":"position","description":"string: Set the position of the feature info","type":{"text":"string | undefined","values":[{"type":"string"}]},"default":"'absolute'","attribute":"position"},{"kind":"field","name":"showCloseBtn","description":"boolean: If true show close button on the feature info","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"show-close-btn"},{"kind":"method","name":"back","description":"Go to the previous feature in the features widget","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst infoCard = document.querySelector(\"info-card\");\ndocument.body.append(infoCard);\nawait infoCard.componentOnReady();\nconsole.log(\"info-card is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"getSelectedFeature","description":"Get the current selected feature from the Features widget","return":{"description":"Promise resolving with the current feature","type":{"text":"Promise<any>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<any>"},{"kind":"method","name":"next","description":"Go to the next feature in the features widget","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"refresh","description":"Refresh the feature info","return":{"description":"Promise when complete","type":{"text":"Promise<any>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<any>"},{"kind":"method","name":"toggleListView","description":"Toggle the visibility of the features list view","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"updateCurrentGraphic","description":"update the current graphics to the features widget","parameters":[{"name":"selectedGraphic","type":{"text":"__esri.Graphic","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(selectedGraphic: __esri.Graphic): Promise<void>"}],"attributes":[{"name":"allow-editing","description":"boolean: If true will show edit button","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"allowEditing"},{"name":"enable-edit-geometry","description":"When true the geometry of the current feature will be editable","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableEditGeometry"},{"name":"enable-snapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSnapping"},{"name":"highlight-enabled","description":"boolean: If true will highlights the features on map using Features Widget","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"highlightEnabled"},{"name":"is-loading","description":"boolean: when true a loading indicator will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isLoading"},{"name":"is-mobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMobile"},{"name":"pagination-enabled","description":"boolean: If true will show the pagination for multiple features","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"paginationEnabled"},{"name":"position","description":"string: Set the position of the feature info","type":{"text":"string","values":[{"type":"string"}]},"default":"'absolute'","fieldName":"position"},{"name":"show-close-btn","description":"boolean: If true show close button on the feature info","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showCloseBtn"}],"events":[{"name":"clearSelection","description":"Emitted on demand when close button is clicked","type":{"text":"void"}},{"name":"popupClosed","description":"Emitted on demand when the popup is closed","type":{"text":"void"}},{"name":"selectionChanged","description":"Emitted on demand when the selected index changes","type":{"text":"{\n selectedFeature: __esri.Graphic[];\n selectedFeatureIndex: number;\n}","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":23,"end":30}]}}],"importPath":"components/info-card"}],"exports":[{"kind":"custom-element-definition","name":"info-card","declaration":{"name":"InfoCard"}}]},{"kind":"javascript-module","path":"components/layer-list","sourcePath":"src/components/layer-list/layer-list.tsx","declarations":[{"kind":"class","name":"LayerList","customElement":true,"tagName":"layer-list","pascalCaseName":"LayerList","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"applyLayerViewFilter","description":"boolean: If true will consider the FeatureFilter applied on the layerview","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"apply-layer-view-filter"},{"kind":"field","name":"filterByMapExtent","description":"boolean: when true the features count from map view extent will shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"filter-by-map-extent"},{"kind":"field","name":"layers","description":"string[]: If passed will show only these layers in the list if they are present in map and are editable","type":{"text":"string[]"}},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"showFeatureCount","description":"boolean: if true display's feature count for each layer","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"true","attribute":"show-feature-count"},{"kind":"field","name":"showNextIcon","description":"boolean: If true display's arrow icon on each layer item","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"show-next-icon"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst layerList = document.querySelector(\"layer-list\");\ndocument.body.append(layerList);\nawait layerList.componentOnReady();\nconsole.log(\"layer-list is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"refresh","description":"Refresh the layer list which will fetch the latest layer count and update the list","return":{"description":"Promise that resolves when the operation is complete","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"}],"attributes":[{"name":"apply-layer-view-filter","description":"boolean: If true will consider the FeatureFilter applied on the layerview","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"applyLayerViewFilter"},{"name":"filter-by-map-extent","description":"boolean: when true the features count from map view extent will shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"filterByMapExtent"},{"name":"show-feature-count","description":"boolean: if true display's feature count for each layer","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showFeatureCount"},{"name":"show-next-icon","description":"boolean: If true display's arrow icon on each layer item","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showNextIcon"}],"events":[{"name":"layerSelect","description":"Emitted on demand when feature layer clicked with details layerId and layerName","type":{"text":"{\n layerId: string;\n layerName: string;\n}"}},{"name":"layersListLoaded","description":"Emitted on demand when list of layers to be listed are created.\nWhen empty array received in this event means no valid layers are found to be listed","type":{"text":"string[]"}}],"importPath":"components/layer-list"}],"exports":[{"kind":"custom-element-definition","name":"layer-list","declaration":{"name":"LayerList"}}]},{"kind":"javascript-module","path":"components/layer-list-widget","sourcePath":"src/components/layer-list-widget/layer-list-widget.tsx","declarations":[{"kind":"class","name":"LayerListWidget","customElement":true,"tagName":"layer-list-widget","pascalCaseName":"LayerListWidget","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"layerListWidget","description":"arcgis/core/widgets/LayerList: https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html","type":{"text":"__esri.LayerList | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"visibilityIcon","description":"VisibilityIconType: visibility icon for the layer list widget","type":{"text":"VisibilityIconType","references":[{"name":"VisibilityIconType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#VisibilityIconType","start":0,"end":18}],"values":[{"type":"string","value":"checkbox"},{"type":"string","value":"eyeball"}]},"default":"'eyeball'","attribute":"visibility-icon"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst layerListWidget = document.querySelector(\"layer-list-widget\");\ndocument.body.append(layerListWidget);\nawait layerListWidget.componentOnReady();\nconsole.log(\"layer-list-widget is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"visibility-icon","description":"VisibilityIconType: visibility icon for the layer list widget","type":{"text":"\"checkbox\" | \"eyeball\"","values":[{"type":"string","value":"checkbox"},{"type":"string","value":"eyeball"}]},"default":"'eyeball'","fieldName":"visibilityIcon"}],"events":[{"name":"fullscreenStateChange","description":"Emitted on demand when the fullscreen widget state has changed","type":{"text":"string"}}],"importPath":"components/layer-list-widget"}],"exports":[{"kind":"custom-element-definition","name":"layer-list-widget","declaration":{"name":"LayerListWidget"}}]},{"kind":"javascript-module","path":"components/layer-table","sourcePath":"src/components/layer-table/layer-table.tsx","declarations":[{"kind":"class","name":"LayerTable","customElement":true,"tagName":"layer-table","pascalCaseName":"LayerTable","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"appLayout","description":"AppLayout: the current app layout","type":{"text":"AppLayout | undefined","references":[{"name":"AppLayout","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#AppLayout","start":0,"end":9}],"values":[{"type":"string","value":"mapView"},{"type":"string","value":"tableView"},{"type":"string","value":"splitView"}]},"attribute":"app-layout"},{"kind":"field","name":"defaultGlobalId","description":"string: Global ID of the feature to select","type":{"text":"string[]"}},{"kind":"field","name":"defaultLayerId","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-layer-id"},{"kind":"field","name":"defaultOid","description":"number: when provided this will be used to select a feature in the table by default","type":{"text":"number[]"}},{"kind":"field","name":"enableAutoRefresh","description":"boolean: when true the layer table will auto refresh the data","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-auto-refresh"},{"kind":"field","name":"enableColumnReorder","description":"boolean: when true the layer table will support drag/drop of columns to adjust order","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-column-reorder"},{"kind":"field","name":"enableCSV","description":"boolean: when true the export to csv button will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-csv"},{"kind":"field","name":"enableInlineEdit","description":"boolean: when true edits can be applied directly within the table","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-inline-edit"},{"kind":"field","name":"enableShare","description":"boolean: when true the share widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-share"},{"kind":"field","name":"enableTableAutosave","description":"boolean: when true the inline editing will be auto saved","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-table-autosave"},{"kind":"field","name":"featureSelectionMode","description":"string: Selection mode for the feature selection","type":{"text":"string","values":[{"type":"string"}]},"default":"'multiple'","attribute":"feature-selection-mode"},{"kind":"field","name":"honorMapFieldSettings","description":"boolean: when true we will honor field order and visibility that may have been defined\nin the map viewer if no field order is defined in the mapInfo.\n\nField order defined in the mapInfo as would be the case for Instant App configurations\nwill always override this map level setting.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"honor-map-field-settings"},{"kind":"field","name":"isMobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-mobile"},{"kind":"field","name":"mapHidden","description":"boolean: when true the map is hidden and map specific controls should be hidden","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"map-hidden"},{"kind":"field","name":"mapInfo","description":"IMapInfo: key configuration details about the current map","type":{"text":"IMapInfo | undefined","references":[{"name":"IMapInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"selectedIds","description":"number[]: A list of ids that are currently selected","type":{"text":"(number | string)[]"}},{"kind":"field","name":"selectedRelatedIds","description":"number[]: A list of ids selected ids from related records","type":{"text":"number[]"}},{"kind":"field","name":"shareIncludeEmbed","description":"boolean: When true the share options will include embed option","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"share-include-embed"},{"kind":"field","name":"shareIncludeSocial","description":"boolean: When true the share options will include social media sharing","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"share-include-social"},{"kind":"field","name":"showNewestFirst","description":"boolean: when true the table will be sorted by objectid in descending order by default","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-newest-first"},{"kind":"field","name":"showOnlyUpdatableLayers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-only-updatable-layers"},{"kind":"field","name":"zoomAndScrollToSelected","description":"boolean: When true the selected feature will zoomed to in the map and the row will be scrolled to within the table","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"zoom-and-scroll-to-selected"},{"kind":"field","name":"zoomToScale","description":"number: default scale to zoom to when zooming to a single point feature","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"zoom-to-scale"},{"kind":"method","name":"closeFilter","description":"Closes the filter","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst layerTable = document.querySelector(\"layer-table\");\ndocument.body.append(layerTable);\nawait layerTable.componentOnReady();\nconsole.log(\"layer-table is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"filterReset","description":"Reset the filter","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"filterUpdate","description":"Updates the filter","parameters":[{"name":"filterActive","type":{"text":"boolean"}},{"name":"keepTableUpdatingOnMapExtentChange","optional":true,"type":{"text":"boolean"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(filterActive: boolean, keepTableUpdatingOnMapExtentChange?: boolean): Promise<void>"},{"kind":"method","name":"refresh","description":"refresh the feature table","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"setColumnOrder","description":"Set column templates with an ordered collection","parameters":[{"name":"columnTemplates","type":{"text":"any"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(columnTemplates: any): Promise<void>"},{"kind":"method","name":"validateActiveEdits","description":"Validate if the editor has any pending edits","return":{"type":{"text":"Promise<boolean>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<boolean>"},{"kind":"method","name":"validateTableUpdate","description":"Validate if the table should update","parameters":[{"name":"shouldUpdateTableOnExtentChange","type":{"text":"boolean"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(shouldUpdateTableOnExtentChange: boolean): Promise<void>"}],"attributes":[{"name":"app-layout","description":"AppLayout: the current app layout","type":{"text":"\"mapView\" | \"tableView\" | \"splitView\"","values":[{"type":"string","value":"mapView"},{"type":"string","value":"tableView"},{"type":"string","value":"splitView"}]},"fieldName":"appLayout"},{"name":"default-layer-id","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultLayerId"},{"name":"enable-auto-refresh","description":"boolean: when true the layer table will auto refresh the data","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableAutoRefresh"},{"name":"enable-column-reorder","description":"boolean: when true the layer table will support drag/drop of columns to adjust order","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableColumnReorder"},{"name":"enable-csv","description":"boolean: when true the export to csv button will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableCSV"},{"name":"enable-inline-edit","description":"boolean: when true edits can be applied directly within the table","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableInlineEdit"},{"name":"enable-share","description":"boolean: when true the share widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableShare"},{"name":"enable-table-autosave","description":"boolean: when true the inline editing will be auto saved","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableTableAutosave"},{"name":"feature-selection-mode","description":"string: Selection mode for the feature selection","type":{"text":"string","values":[{"type":"string"}]},"default":"'multiple'","fieldName":"featureSelectionMode"},{"name":"honor-map-field-settings","description":"boolean: when true we will honor field order and visibility that may have been defined\nin the map viewer if no field order is defined in the mapInfo.\n\nField order defined in the mapInfo as would be the case for Instant App configurations\nwill always override this map level setting.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"honorMapFieldSettings"},{"name":"is-mobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMobile"},{"name":"map-hidden","description":"boolean: when true the map is hidden and map specific controls should be hidden","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"mapHidden"},{"name":"share-include-embed","description":"boolean: When true the share options will include embed option","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"shareIncludeEmbed"},{"name":"share-include-social","description":"boolean: When true the share options will include social media sharing","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"shareIncludeSocial"},{"name":"show-newest-first","description":"boolean: when true the table will be sorted by objectid in descending order by default","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showNewestFirst"},{"name":"show-only-updatable-layers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showOnlyUpdatableLayers"},{"name":"zoom-and-scroll-to-selected","description":"boolean: When true the selected feature will zoomed to in the map and the row will be scrolled to within the table","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"zoomAndScrollToSelected"},{"name":"zoom-to-scale","description":"number: default scale to zoom to when zooming to a single point feature","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"zoomToScale"}],"events":[{"name":"columnReorder","description":"Emitted when the user click/drags a column","type":{"text":"void"}},{"name":"editMultipleFeatures","description":"Emitted on demand when edit multiple action is clicked","type":{"text":"(number | string)[]"}},{"name":"featureSelectionChange","description":"Emitted on demand when a layer is selected","type":{"text":"(number | string)[]"}},{"name":"relatedRecordToggled","description":"Emitted when related record toggled from related table","type":{"text":"__esri.FeatureLayer","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"name":"showDelete","description":"Emitted on demand when when the delete dialog should be shown","type":{"text":"IDeleteIds","references":[{"name":"IDeleteIds","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IDeleteIds","start":0,"end":10}]}},{"name":"toggleFilter","description":"Emitted on demand when filter action is clicked","type":{"text":"void"}}],"importPath":"components/layer-table"}],"exports":[{"kind":"custom-element-definition","name":"layer-table","declaration":{"name":"LayerTable"}}]},{"kind":"javascript-module","path":"components/map-basemap-gallery","sourcePath":"src/components/map-basemap-gallery/map-basemap-gallery.tsx","declarations":[{"kind":"class","name":"MapBasemapGallery","customElement":true,"tagName":"map-basemap-gallery","pascalCaseName":"MapBasemapGallery","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"basemapConfig","description":"IBasemapConfig: List of any basemaps to filter out from the basemap widget","type":{"text":"IBasemapConfig | undefined","references":[{"name":"IBasemapConfig","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IBasemapConfig","start":0,"end":14}]}},{"kind":"field","name":"basemapWidget","description":"esri/widgets/BasemapGallery: https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapGallery.html\n\nBasemapGallery instance","type":{"text":"__esri.BasemapGallery | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapBasemapGallery = document.querySelector(\"map-basemap-gallery\");\ndocument.body.append(mapBasemapGallery);\nawait mapBasemapGallery.componentOnReady();\nconsole.log(\"map-basemap-gallery is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"importPath":"components/map-basemap-gallery"}],"exports":[{"kind":"custom-element-definition","name":"map-basemap-gallery","declaration":{"name":"MapBasemapGallery"}}]},{"kind":"javascript-module","path":"components/map-card","sourcePath":"src/components/map-card/map-card.tsx","declarations":[{"kind":"class","name":"MapCard","customElement":true,"tagName":"map-card","pascalCaseName":"MapCard","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"appLayout","description":"AppLayout: the current app layout","type":{"text":"AppLayout | undefined","references":[{"name":"AppLayout","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#AppLayout","start":0,"end":9}],"values":[{"type":"string","value":"mapView"},{"type":"string","value":"tableView"},{"type":"string","value":"splitView"}]},"attribute":"app-layout"},{"kind":"field","name":"appProxies","description":"Array of objects containing proxy information for premium platform services.","type":{"text":"any","values":[{"type":"any"}]},"attribute":"app-proxies"},{"kind":"field","name":"basemapConfig","description":"IBasemapConfig: List of any basemaps to filter out from the basemap widget","type":{"text":"IBasemapConfig | undefined","references":[{"name":"IBasemapConfig","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IBasemapConfig","start":0,"end":14}]}},{"kind":"field","name":"defaultLayerId","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-layer-id"},{"kind":"field","name":"defaultWebmapId","description":"string: Item ID of the web map that should be selected by default when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-webmap-id"},{"kind":"field","name":"enableBasemap","description":"boolean: when true the basemap widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-basemap"},{"kind":"field","name":"enableFloorFilter","description":"boolean: when true the floor filter widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-floor-filter"},{"kind":"field","name":"enableFullscreen","description":"boolean: when true the fullscreen widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-fullscreen"},{"kind":"field","name":"enableHome","description":"boolean: when true the home widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-home"},{"kind":"field","name":"enableLayerList","description":"boolean: when true the layer list widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-layer-list"},{"kind":"field","name":"enableLegend","description":"boolean: when true the legend widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-legend"},{"kind":"field","name":"enableMapLayerPicker","description":"boolean: when true the map layer picker tool will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-map-layer-picker"},{"kind":"field","name":"enableMapPicker","description":"boolean: when true the map picker tool will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-map-picker"},{"kind":"field","name":"enableSearch","description":"boolean: when true the search widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-search"},{"kind":"field","name":"enableSelectionTool","description":"boolean: when true the selectionTool tool will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-selection-tool"},{"kind":"field","name":"enableShare","description":"boolean: when true the share widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-share"},{"kind":"field","name":"enableSingleExpand","description":"boolean: when true map tools will be displayed within a single expand/collapse widget\nwhen false widgets will be loaded individually into expand widgets","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-single-expand"},{"kind":"field","name":"featureSelectionMode","description":"string: Selection mode for the feature selection","type":{"text":"string","values":[{"type":"string"}]},"default":"'multiple'","attribute":"feature-selection-mode"},{"kind":"field","name":"hide","description":"boolean: When true the map display will be hidden","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"hide"},{"kind":"field","name":"isMapLayout","description":"boolean: When true map will shown is full screen","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-map-layout"},{"kind":"field","name":"isMobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-mobile"},{"kind":"field","name":"mapInfo","description":"IMapInfo: key configuration details about the current map","type":{"text":"IMapInfo | undefined","references":[{"name":"IMapInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}},{"kind":"field","name":"mapInfos","description":"IMapInfo[]: array of map infos (name and id)","type":{"text":"IMapInfo[]","references":[{"name":"IMapInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}},{"kind":"field","name":"mapToolsOrder","description":"Valid tools: 'legend', 'search', 'fullscreen', 'basemap', 'floorfilter', 'selectiontool'","type":{"text":"string[]"}},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapWidgetsIndex","description":"number: The placement index of the map widgets (legend, basemap, fullscreen etc). This index shows where to place the component relative to other components.\nFor example a value of 0 would place it topmost when position is top-*, leftmost for bottom-left and right most for bottom-right.","type":{"text":"number","values":[{"type":"number"}]},"default":"0","attribute":"map-widgets-index"},{"kind":"field","name":"mapWidgetsPosition","description":"__esri.UIPosition: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-ui-UI.html#UIPosition\nThe position details for the map tools","type":{"text":"__esri.UIPosition","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}],"values":[{"type":"string","value":"top-left"},{"type":"string","value":"top-right"},{"type":"string","value":"bottom-left"},{"type":"string","value":"bottom-right"},{"type":"string","value":"top-leading"},{"type":"string","value":"top-trailing"},{"type":"string","value":"bottom-leading"},{"type":"string","value":"bottom-trailing"},{"type":"string","value":"manual"}]},"default":"'top-leading'","attribute":"map-widgets-position"},{"kind":"field","name":"mapWidgetsSize","description":"'s' | 'm' | 'l': Used for optional map tool widget","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","attribute":"map-widgets-size"},{"kind":"field","name":"mobileMapWidgetsPosition","description":"__esri.UIPosition: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-ui-UI.html#UIPosition\nThe position details for the mobile map tools","type":{"text":"__esri.UIPosition","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}],"values":[{"type":"string","value":"top-left"},{"type":"string","value":"top-right"},{"type":"string","value":"bottom-left"},{"type":"string","value":"bottom-right"},{"type":"string","value":"top-leading"},{"type":"string","value":"top-trailing"},{"type":"string","value":"bottom-leading"},{"type":"string","value":"bottom-trailing"},{"type":"string","value":"manual"}]},"default":"'top-right'","attribute":"mobile-map-widgets-position"},{"kind":"field","name":"mobileToolsOrder","description":"Valid tools: 'map-picker', 'map-layer-picker'","type":{"text":"string[]"}},{"kind":"field","name":"selectedFeaturesIds","description":"number[]: A list of ids that are currently selected","type":{"text":"(number | string)[]"}},{"kind":"field","name":"selectedLayer","description":"__esri.FeatureLayer: Selected layer","type":{"text":"__esri.FeatureLayer | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"shareIncludeEmbed","description":"boolean: When true the share options will include embed option","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"share-include-embed"},{"kind":"field","name":"shareIncludeSocial","description":"boolean: When true the share options will include social media sharing","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"share-include-social"},{"kind":"field","name":"showOnlyUpdatableLayers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-only-updatable-layers"},{"kind":"field","name":"stackTools","description":"boolean: When true the map widget tools will have no margin between them.\nWhen false the map widget tools will have a margin between them.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"stack-tools"},{"kind":"field","name":"theme","description":"theme: 'light' | 'dark' theme to be used","type":{"text":"theme | undefined","references":[{"name":"theme","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#theme","start":0,"end":5}],"values":[{"type":"string","value":"light"},{"type":"string","value":"dark"}]},"attribute":"theme"},{"kind":"field","name":"visibilityIcon","description":"VisibilityIconType: visibility icon for the layer list widget","type":{"text":"VisibilityIconType","references":[{"name":"VisibilityIconType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#VisibilityIconType","start":0,"end":18}],"values":[{"type":"string","value":"checkbox"},{"type":"string","value":"eyeball"}]},"default":"'eyeball'","attribute":"visibility-icon"},{"kind":"field","name":"zoomToolsSize","description":"'s' | 'm' | 'l': Used for Zoom and Home tools","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","attribute":"zoom-tools-size"},{"kind":"field","name":"zoomToScale","description":"number: default scale to zoom to when zooming to a single point feature","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"zoom-to-scale"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapCard = document.querySelector(\"map-card\");\ndocument.body.append(mapCard);\nawait mapCard.componentOnReady();\nconsole.log(\"map-card is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"resetFilter","description":"Reset the filter","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"updateFilterState","description":"updates the filter","parameters":[{"name":"active","type":{"text":"boolean"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(active: boolean): Promise<void>"},{"kind":"method","name":"updateLayer","description":"updates the layer in map layer picker","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"}],"attributes":[{"name":"app-layout","description":"AppLayout: the current app layout","type":{"text":"\"mapView\" | \"tableView\" | \"splitView\"","values":[{"type":"string","value":"mapView"},{"type":"string","value":"tableView"},{"type":"string","value":"splitView"}]},"fieldName":"appLayout"},{"name":"app-proxies","description":"Array of objects containing proxy information for premium platform services.","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"appProxies"},{"name":"default-layer-id","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultLayerId"},{"name":"default-webmap-id","description":"string: Item ID of the web map that should be selected by default when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultWebmapId"},{"name":"enable-basemap","description":"boolean: when true the basemap widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableBasemap"},{"name":"enable-floor-filter","description":"boolean: when true the floor filter widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableFloorFilter"},{"name":"enable-fullscreen","description":"boolean: when true the fullscreen widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableFullscreen"},{"name":"enable-home","description":"boolean: when true the home widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableHome"},{"name":"enable-layer-list","description":"boolean: when true the layer list widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableLayerList"},{"name":"enable-legend","description":"boolean: when true the legend widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableLegend"},{"name":"enable-map-layer-picker","description":"boolean: when true the map layer picker tool will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableMapLayerPicker"},{"name":"enable-map-picker","description":"boolean: when true the map picker tool will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableMapPicker"},{"name":"enable-search","description":"boolean: when true the search widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSearch"},{"name":"enable-selection-tool","description":"boolean: when true the selectionTool tool will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSelectionTool"},{"name":"enable-share","description":"boolean: when true the share widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableShare"},{"name":"enable-single-expand","description":"boolean: when true map tools will be displayed within a single expand/collapse widget\nwhen false widgets will be loaded individually into expand widgets","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSingleExpand"},{"name":"feature-selection-mode","description":"string: Selection mode for the feature selection","type":{"text":"string","values":[{"type":"string"}]},"default":"'multiple'","fieldName":"featureSelectionMode"},{"name":"hide","description":"boolean: When true the map display will be hidden","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"hide"},{"name":"is-map-layout","description":"boolean: When true map will shown is full screen","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMapLayout"},{"name":"is-mobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMobile"},{"name":"map-widgets-index","description":"number: The placement index of the map widgets (legend, basemap, fullscreen etc). This index shows where to place the component relative to other components.\nFor example a value of 0 would place it topmost when position is top-*, leftmost for bottom-left and right most for bottom-right.","type":{"text":"number","values":[{"type":"number"}]},"default":"0","fieldName":"mapWidgetsIndex"},{"name":"map-widgets-position","description":"__esri.UIPosition: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-ui-UI.html#UIPosition\nThe position details for the map tools","type":{"text":"\"top-left\" | \"top-right\" | \"bottom-left\" | \"bottom-right\" | \"top-leading\" | \"top-trailing\" | \"bottom-leading\" | \"bottom-trailing\" | \"manual\"","values":[{"type":"string","value":"top-left"},{"type":"string","value":"top-right"},{"type":"string","value":"bottom-left"},{"type":"string","value":"bottom-right"},{"type":"string","value":"top-leading"},{"type":"string","value":"top-trailing"},{"type":"string","value":"bottom-leading"},{"type":"string","value":"bottom-trailing"},{"type":"string","value":"manual"}]},"default":"'top-leading'","fieldName":"mapWidgetsPosition"},{"name":"map-widgets-size","description":"'s' | 'm' | 'l': Used for optional map tool widget","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","fieldName":"mapWidgetsSize"},{"name":"mobile-map-widgets-position","description":"__esri.UIPosition: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-ui-UI.html#UIPosition\nThe position details for the mobile map tools","type":{"text":"\"top-left\" | \"top-right\" | \"bottom-left\" | \"bottom-right\" | \"top-leading\" | \"top-trailing\" | \"bottom-leading\" | \"bottom-trailing\" | \"manual\"","values":[{"type":"string","value":"top-left"},{"type":"string","value":"top-right"},{"type":"string","value":"bottom-left"},{"type":"string","value":"bottom-right"},{"type":"string","value":"top-leading"},{"type":"string","value":"top-trailing"},{"type":"string","value":"bottom-leading"},{"type":"string","value":"bottom-trailing"},{"type":"string","value":"manual"}]},"default":"'top-right'","fieldName":"mobileMapWidgetsPosition"},{"name":"share-include-embed","description":"boolean: When true the share options will include embed option","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"shareIncludeEmbed"},{"name":"share-include-social","description":"boolean: When true the share options will include social media sharing","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"shareIncludeSocial"},{"name":"show-only-updatable-layers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showOnlyUpdatableLayers"},{"name":"stack-tools","description":"boolean: When true the map widget tools will have no margin between them.\nWhen false the map widget tools will have a margin between them.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"stackTools"},{"name":"theme","description":"theme: 'light' | 'dark' theme to be used","type":{"text":"\"light\" | \"dark\"","values":[{"type":"string","value":"light"},{"type":"string","value":"dark"}]},"fieldName":"theme"},{"name":"visibility-icon","description":"VisibilityIconType: visibility icon for the layer list widget","type":{"text":"\"checkbox\" | \"eyeball\"","values":[{"type":"string","value":"checkbox"},{"type":"string","value":"eyeball"}]},"default":"'eyeball'","fieldName":"visibilityIcon"},{"name":"zoom-tools-size","description":"'s' | 'm' | 'l': Used for Zoom and Home tools","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","fieldName":"zoomToolsSize"},{"name":"zoom-to-scale","description":"number: default scale to zoom to when zooming to a single point feature","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"zoomToScale"}],"events":[{"name":"beforeMapChanged","description":"Emitted before a new map is loaded","type":{"text":"void"}},{"name":"clearSelection","description":"Emitted on demand when clear selection button is clicked","type":{"text":"void"}},{"name":"editMultipleFeatures","description":"Emitted on demand when edit multiple action is clicked","type":{"text":"(number | string)[]"}},{"name":"mapChanged","description":"Emitted when a new map is loaded","type":{"text":"IMapChange","references":[{"name":"IMapChange","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapChange","start":0,"end":10}]}},{"name":"toggleFilter","description":"Emitted on demand when filter action is clicked","type":{"text":"void"}}],"importPath":"components/map-card"}],"exports":[{"kind":"custom-element-definition","name":"map-card","declaration":{"name":"MapCard"}}]},{"kind":"javascript-module","path":"components/map-draw-tools","sourcePath":"src/components/map-draw-tools/map-draw-tools.tsx","declarations":[{"kind":"class","name":"MapDrawTools","customElement":true,"tagName":"map-draw-tools","pascalCaseName":"MapDrawTools","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"active","description":"boolean: sketch is used by multiple components...need a way to know who should respond...","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"active"},{"kind":"field","name":"drawMode","description":"utils/interfaces: Controls how the draw tools are rendered\n\nSKETCH mode supports snapping\nREFINE mode supports undo/redo","type":{"text":"EDrawMode","references":[{"name":"EDrawMode","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#EDrawMode","start":0,"end":9}],"values":[{"type":"string","value":"SKETCH"},{"type":"string","value":"REFINE"}]},"default":"'SKETCH'","attribute":"draw-mode"},{"kind":"field","name":"editGraphicsEnabled","description":"boolean: when true you will be able to make additional modifications to the sketched geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"edit-graphics-enabled"},{"kind":"field","name":"graphics","description":"esri/Graphic: https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html","type":{"text":"__esri.Graphic[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"pointSymbol","description":"esri/symbols/SimpleMarkerSymbol: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleMarkerSymbol.html","type":{"text":"__esri.SimpleMarkerSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"polygonSymbol","description":"esri/symbols/SimpleFillSymbol: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleFillSymbol.html","type":{"text":"__esri.SimpleFillSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"polylineSymbol","description":"esri/symbols/SimpleLineSymbol: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html","type":{"text":"__esri.SimpleLineSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"redoEnabled","description":"boolean: when eanbled the user can redo the previous operation","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"redo-enabled"},{"kind":"field","name":"undoEnabled","description":"boolean: when eanbled the user can undo the previous operation","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"undo-enabled"},{"kind":"method","name":"clear","description":"Clears the user drawn graphics","return":{"description":"Promise that resolves when the operation is complete","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapDrawTools = document.querySelector(\"map-draw-tools\");\ndocument.body.append(mapDrawTools);\nawait mapDrawTools.componentOnReady();\nconsole.log(\"map-draw-tools is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"updateGraphics","description":"Set the sketch widget to update mode with the current graphic","return":{"description":"Promise that resolves when the operation is complete","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"}],"attributes":[{"name":"active","description":"boolean: sketch is used by multiple components...need a way to know who should respond...","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"active"},{"name":"draw-mode","description":"utils/interfaces: Controls how the draw tools are rendered\n\nSKETCH mode supports snapping\nREFINE mode supports undo/redo","type":{"text":"\"SKETCH\" | \"REFINE\"","values":[{"type":"string","value":"SKETCH"},{"type":"string","value":"REFINE"}]},"default":"'SKETCH'","fieldName":"drawMode"},{"name":"edit-graphics-enabled","description":"boolean: when true you will be able to make additional modifications to the sketched geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"editGraphicsEnabled"},{"name":"redo-enabled","description":"boolean: when eanbled the user can redo the previous operation","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"redoEnabled"},{"name":"undo-enabled","description":"boolean: when eanbled the user can undo the previous operation","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"undoEnabled"}],"events":[{"name":"drawRedo","description":"Emitted on demand when the redo action is clicked.","type":{"text":"void"}},{"name":"drawUndo","description":"Emitted on demand when the undo action is clicked.","type":{"text":"void"}},{"name":"selectionLoadingChange","description":"Emitted on demand when selection starts or ends.","type":{"text":"boolean"}},{"name":"sketchGraphicsChange","description":"Emitted on demand when the sketch graphics change.","type":{"text":"ISketchGraphicsChange","references":[{"name":"ISketchGraphicsChange","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISketchGraphicsChange","start":0,"end":21}]}}],"importPath":"components/map-draw-tools"}],"exports":[{"kind":"custom-element-definition","name":"map-draw-tools","declaration":{"name":"MapDrawTools"}}]},{"kind":"javascript-module","path":"components/map-floor-filter","sourcePath":"src/components/map-floor-filter/map-floor-filter.tsx","declarations":[{"kind":"class","name":"MapFloorFilter","customElement":true,"tagName":"map-floor-filter","pascalCaseName":"MapFloorFilter","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"enabled","description":"boolean: when true the Floor Filter widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enabled"},{"kind":"field","name":"floorFilterWidget","description":"esri/widgets/FloorFilter: https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FloorFilter.html\n\nFloorFilter instance","type":{"text":"__esri.FloorFilter | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapFloorFilter = document.querySelector(\"map-floor-filter\");\ndocument.body.append(mapFloorFilter);\nawait mapFloorFilter.componentOnReady();\nconsole.log(\"map-floor-filter is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"enabled","description":"boolean: when true the Floor Filter widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enabled"}],"events":[{"name":"facilityChanged","description":"Emitted on demand when the Facility is changed","type":{"text":"string"}},{"name":"levelChanged","description":"Emitted on demand when the Level is changed","type":{"text":"string"}},{"name":"siteChanged","description":"Emitted on demand when the Site is changed","type":{"text":"string"}}],"importPath":"components/map-floor-filter"}],"exports":[{"kind":"custom-element-definition","name":"map-floor-filter","declaration":{"name":"MapFloorFilter"}}]},{"kind":"javascript-module","path":"components/map-fullscreen","sourcePath":"src/components/map-fullscreen/map-fullscreen.tsx","declarations":[{"kind":"class","name":"MapFullscreen","customElement":true,"tagName":"map-fullscreen","pascalCaseName":"MapFullscreen","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"fullscreenWidget","description":"esri/widgets/Fullscreen: https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Fullscreen.html","type":{"text":"__esri.Fullscreen | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapFullscreen = document.querySelector(\"map-fullscreen\");\ndocument.body.append(mapFullscreen);\nawait mapFullscreen.componentOnReady();\nconsole.log(\"map-fullscreen is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"events":[{"name":"fullscreenStateChange","description":"Emitted on demand when the fullscreen widget state has changed","type":{"text":"string"}}],"importPath":"components/map-fullscreen"}],"exports":[{"kind":"custom-element-definition","name":"map-fullscreen","declaration":{"name":"MapFullscreen"}}]},{"kind":"javascript-module","path":"components/map-layer-picker","sourcePath":"src/components/map-layer-picker/map-layer-picker.tsx","declarations":[{"kind":"class","name":"MapLayerPicker","customElement":true,"tagName":"map-layer-picker","pascalCaseName":"MapLayerPicker","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"appearance","description":"'transparent' | 'solid': controls the button appearance when using the 'dropdown' type","type":{"text":"\"solid\" | \"transparent\"","values":[{"type":"string","value":"solid"},{"type":"string","value":"transparent"}]},"default":"'transparent'","attribute":"appearance"},{"kind":"field","name":"configLayerOrderDefined","description":"boolean: when true the layer order should be defined in the enabledLayerIds, when false we will use the older logic of layers first then tables","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"config-layer-order-defined"},{"kind":"field","name":"defaultLayerId","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-layer-id"},{"kind":"field","name":"disabled","description":"boolean: When true the layer picker should be disabled","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"disabled"},{"kind":"field","name":"display","description":"'inline-flex' | 'inline-block': controls the display style of the dropdown","type":{"text":"\"inline-block\" | \"inline-flex\"","values":[{"type":"string","value":"inline-block"},{"type":"string","value":"inline-flex"}]},"default":"'inline-block'","attribute":"display"},{"kind":"field","name":"enabledLayerIds","description":"string[]: Optional list of enabled layer ids\n If empty all layers will be available","type":{"text":"string[]"}},{"kind":"field","name":"height","description":"number: optional fixed height value for the control.\nSpecified as pixel height.","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"height"},{"kind":"field","name":"isMobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-mobile"},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"placeholderIcon","description":"string: optional placeholder icon used with 'combobox' type","type":{"text":"Icon[\"icon\"] | undefined","references":[{"name":"Icon","module":"components/calcite-icon","package":"@esri/calcite-components","start":0,"end":4}],"values":[{"type":"string"}]},"attribute":"placeholder-icon"},{"kind":"field","name":"referenceElement","description":"string: Refrence element for the calcite popover to show the layer list","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"reference-element"},{"kind":"field","name":"scale","description":"'s' | 'm' | 'l': scale to render the component","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","attribute":"scale"},{"kind":"field","name":"selectedIds","description":"string[]: list of layer ids that have been selected by the end user","type":{"text":"string[]"}},{"kind":"field","name":"showLayersListInPopover","description":"boolean: When true all layers list should shown in a popover (reference element prop required)\nIn this case the selected layer will not shown as label","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-layers-list-in-popover"},{"kind":"field","name":"showOnlyUpdatableLayers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-only-updatable-layers"},{"kind":"field","name":"showSingleLayerAsLabel","description":"boolean: when true a map with a single layer will show a label rather than a dropdown\nUsed in conjunction with _hasMultipleLayers","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-single-layer-as-label"},{"kind":"field","name":"showTables","description":"boolean: when true standalone tables will also be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-tables"},{"kind":"field","name":"showTablesDisabled","description":"boolean: when true table will shown as disabled","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-tables-disabled"},{"kind":"field","name":"type","description":"'select' | 'combobox' | 'dropdown': type of component to leverage","type":{"text":"\"combobox\" | \"dropdown\" | \"select\"","values":[{"type":"string","value":"combobox"},{"type":"string","value":"dropdown"},{"type":"string","value":"select"}]},"default":"'select'","attribute":"type"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapLayerPicker = document.querySelector(\"map-layer-picker\");\ndocument.body.append(mapLayerPicker);\nawait mapLayerPicker.componentOnReady();\nconsole.log(\"map-layer-picker is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"setLayerById","description":"Set the layer by id","parameters":[{"name":"id","type":{"text":"string"}},{"name":"skipEditCheck","type":{"text":"boolean"},"default":"false"}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(id: string, skipEditCheck?: boolean): Promise<void>"},{"kind":"method","name":"setLayerByIds","description":"Set the layers by ids","parameters":[{"name":"ids","type":{"text":"string[]"}},{"name":"skipEditCheck","type":{"text":"boolean"},"default":"false"}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(ids: string[], skipEditCheck?: boolean): Promise<void>"},{"kind":"method","name":"updateLayer","description":"updates the layers","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"}],"attributes":[{"name":"appearance","description":"'transparent' | 'solid': controls the button appearance when using the 'dropdown' type","type":{"text":"\"solid\" | \"transparent\"","values":[{"type":"string","value":"solid"},{"type":"string","value":"transparent"}]},"default":"'transparent'","fieldName":"appearance"},{"name":"config-layer-order-defined","description":"boolean: when true the layer order should be defined in the enabledLayerIds, when false we will use the older logic of layers first then tables","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"configLayerOrderDefined"},{"name":"default-layer-id","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultLayerId"},{"name":"disabled","description":"boolean: When true the layer picker should be disabled","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"disabled"},{"name":"display","description":"'inline-flex' | 'inline-block': controls the display style of the dropdown","type":{"text":"\"inline-block\" | \"inline-flex\"","values":[{"type":"string","value":"inline-block"},{"type":"string","value":"inline-flex"}]},"default":"'inline-block'","fieldName":"display"},{"name":"height","description":"number: optional fixed height value for the control.\nSpecified as pixel height.","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"height"},{"name":"is-mobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMobile"},{"name":"placeholder-icon","description":"string: optional placeholder icon used with 'combobox' type","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"placeholderIcon"},{"name":"reference-element","description":"string: Refrence element for the calcite popover to show the layer list","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"referenceElement"},{"name":"scale","description":"'s' | 'm' | 'l': scale to render the component","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","fieldName":"scale"},{"name":"show-layers-list-in-popover","description":"boolean: When true all layers list should shown in a popover (reference element prop required)\nIn this case the selected layer will not shown as label","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showLayersListInPopover"},{"name":"show-only-updatable-layers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showOnlyUpdatableLayers"},{"name":"show-single-layer-as-label","description":"boolean: when true a map with a single layer will show a label rather than a dropdown\nUsed in conjunction with _hasMultipleLayers","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showSingleLayerAsLabel"},{"name":"show-tables","description":"boolean: when true standalone tables will also be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showTables"},{"name":"show-tables-disabled","description":"boolean: when true table will shown as disabled","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showTablesDisabled"},{"name":"type","description":"'select' | 'combobox' | 'dropdown': type of component to leverage","type":{"text":"\"combobox\" | \"dropdown\" | \"select\"","values":[{"type":"string","value":"combobox"},{"type":"string","value":"dropdown"},{"type":"string","value":"select"}]},"default":"'select'","fieldName":"type"}],"events":[{"name":"beforeLayerSelectionChange","description":"Emitted before a new map is loaded","type":{"text":"IBeforeLayerSelectionChange","references":[{"name":"IBeforeLayerSelectionChange","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IBeforeLayerSelectionChange","start":0,"end":27}]}},{"name":"idsFound","description":"Emitted on demand when valid layers/tables are found","type":{"text":"string[]"}},{"name":"layerSelectionChange","description":"Emitted on demand when a layer is selected","type":{"text":"string[]"}},{"name":"noLayersFound","description":"Emitted on demand when no valid layers are found","type":{"text":"void"}}],"importPath":"components/map-layer-picker"}],"exports":[{"kind":"custom-element-definition","name":"map-layer-picker","declaration":{"name":"MapLayerPicker"}}]},{"kind":"javascript-module","path":"components/map-legend","sourcePath":"src/components/map-legend/map-legend.tsx","declarations":[{"kind":"class","name":"MapLegend","customElement":true,"tagName":"map-legend","pascalCaseName":"MapLegend","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"legendWidget","description":"esri/widgets/Legend: https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend.html\n\nLegend instance","type":{"text":"__esri.Legend | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapLegend = document.querySelector(\"map-legend\");\ndocument.body.append(mapLegend);\nawait mapLegend.componentOnReady();\nconsole.log(\"map-legend is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"importPath":"components/map-legend"}],"exports":[{"kind":"custom-element-definition","name":"map-legend","declaration":{"name":"MapLegend"}}]},{"kind":"javascript-module","path":"components/map-picker","sourcePath":"src/components/map-picker/map-picker.tsx","declarations":[{"kind":"class","name":"MapPicker","customElement":true,"tagName":"map-picker","pascalCaseName":"MapPicker","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"height","description":"number: optional fixed height value for the control.\nSpecified as pixel height.","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"height"},{"kind":"field","name":"isMapLayout","description":"boolean: when true map list will shown in half width.","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"is-map-layout"},{"kind":"field","name":"mapInfos","description":"IMapInfo[]: array of map infos (name and id)","type":{"text":"IMapInfo[]","references":[{"name":"IMapInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}},{"kind":"field","name":"referenceElement","description":"string: Refrence element for the calcite popover to show the map list","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"reference-element"},{"kind":"field","name":"selectedWebMapId","description":"string: The id of the map currently selected","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"selected-web-map-id"},{"kind":"field","name":"showMapListInPopover","description":"boolean: When true the map list will shown inside a popover\nIn this case the selected map will not shown as label","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-map-list-in-popover"},{"kind":"method","name":"close","description":"Closes the list","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapPicker = document.querySelector(\"map-picker\");\ndocument.body.append(mapPicker);\nawait mapPicker.componentOnReady();\nconsole.log(\"map-picker is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"setMapByID","parameters":[{"name":"id","type":{"text":"string"}},{"name":"skipEditCheck","type":{"text":"boolean"},"default":"false"}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(id: string, skipEditCheck?: boolean): Promise<void>"},{"kind":"method","name":"toggle","description":"Expands the list","parameters":[{"name":"mapListExpanded","type":{"text":"boolean"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(mapListExpanded: boolean): Promise<void>"}],"attributes":[{"name":"height","description":"number: optional fixed height value for the control.\nSpecified as pixel height.","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"height"},{"name":"is-map-layout","description":"boolean: when true map list will shown in half width.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMapLayout"},{"name":"reference-element","description":"string: Refrence element for the calcite popover to show the map list","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"referenceElement"},{"name":"selected-web-map-id","description":"string: The id of the map currently selected","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"selectedWebMapId"},{"name":"show-map-list-in-popover","description":"boolean: When true the map list will shown inside a popover\nIn this case the selected map will not shown as label","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showMapListInPopover"}],"events":[{"name":"beforeMapInfoChange","description":"Emitted before a new map is loaded","type":{"text":"IBeforeMapChange","references":[{"name":"IBeforeMapChange","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IBeforeMapChange","start":0,"end":16}]}},{"name":"mapInfoChange","description":"Emitted when a new map is loaded","type":{"text":"IMapInfo","references":[{"name":"IMapInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}}],"importPath":"components/map-picker"}],"exports":[{"kind":"custom-element-definition","name":"map-picker","declaration":{"name":"MapPicker"}}]},{"kind":"javascript-module","path":"components/map-search","sourcePath":"src/components/map-search/map-search.tsx","declarations":[{"kind":"class","name":"MapSearch","customElement":true,"tagName":"map-search","pascalCaseName":"MapSearch","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"popupEnabled","description":"boolean: When true the selected feature popup will be shown when serach result is found","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"popup-enabled"},{"kind":"field","name":"resultGraphicEnabled","description":"boolean: When true a graphic will be added for the search result","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"result-graphic-enabled"},{"kind":"field","name":"searchConfiguration","description":"ISearchConfiguration: Configuration details for the Search widget","type":{"text":"ISearchConfiguration | undefined","references":[{"name":"ISearchConfiguration","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchConfiguration","start":0,"end":20}]}},{"kind":"field","name":"searchTerm","description":"string: Text entered by the end user.\nUsed to search against the locator.","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"search-term"},{"kind":"field","name":"searchWidget","description":"esri/widgets/Search: https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Search.html","type":{"text":"__esri.widgetsSearch | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapSearch = document.querySelector(\"map-search\");\ndocument.body.append(mapSearch);\nawait mapSearch.componentOnReady();\nconsole.log(\"map-search is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"popup-enabled","description":"boolean: When true the selected feature popup will be shown when serach result is found","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"popupEnabled"},{"name":"result-graphic-enabled","description":"boolean: When true a graphic will be added for the search result","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"resultGraphicEnabled"},{"name":"search-term","description":"string: Text entered by the end user.\nUsed to search against the locator.","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"searchTerm"}],"importPath":"components/map-search"}],"exports":[{"kind":"custom-element-definition","name":"map-search","declaration":{"name":"MapSearch"}}]},{"kind":"javascript-module","path":"components/map-select-tools","sourcePath":"src/components/map-select-tools/map-select-tools.tsx","declarations":[{"kind":"class","name":"MapSelectTools","customElement":true,"tagName":"map-select-tools","pascalCaseName":"MapSelectTools","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"bufferColor","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"attribute":"buffer-color"},{"kind":"field","name":"bufferOutlineColor","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"attribute":"buffer-outline-color"},{"kind":"field","name":"customLabelEnabled","description":"boolean: When true the user can define a name for each notification list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"custom-label-enabled"},{"kind":"field","name":"defaultBufferDistance","description":"number: The default value to show for the buffer distance","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"default-buffer-distance"},{"kind":"field","name":"defaultBufferUnit","description":"number: The default value to show for the buffer unit","type":{"text":"DistanceUnit | undefined","references":[{"name":"DistanceUnit","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DistanceUnit","start":0,"end":12}],"values":[{"type":"string","value":"meters"},{"type":"string","value":"feet"},{"type":"string","value":"miles"},{"type":"string","value":"kilometers"}]},"attribute":"default-buffer-unit"},{"kind":"field","name":"enabledLayerIds","description":"string[]: Optional list of enabled layer ids\n If empty all layers will be available","type":{"text":"string[]"}},{"kind":"field","name":"enableLayerFeatures","description":"boolean: When true users will be allowed to optionally use features from a layer as the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-layer-features"},{"kind":"field","name":"enableLayerFeaturesOnLoad","description":"boolean: When true the use features from a layer options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-layer-features-on-load"},{"kind":"field","name":"enableSearchDistance","description":"boolean: When true users will be allowed to optionally create a buffer around the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-search-distance"},{"kind":"field","name":"enableSearchDistanceOnLoad","description":"boolean: When true the serach distance options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-search-distance-on-load"},{"kind":"field","name":"enableSketchTools","description":"boolean: When true sketch tools will be provided to allow users to draw a selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-sketch-tools"},{"kind":"field","name":"geometries","description":"esri/geometry: https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry.html","type":{"text":"__esri.Geometry[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"headerLabelClass","description":"string: Header label class","type":{"text":"string","values":[{"type":"string"}]},"default":"'font-bold'","attribute":"header-label-class"},{"kind":"field","name":"isUpdate","description":"boolean: When true a new label is not generated for the stored selection set","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-update"},{"kind":"field","name":"layerViews","description":"esri/views/layers/FeatureLayerView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerView.html","type":{"text":"__esri.FeatureLayerView[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"noResultText","description":"string: The value to show for no results\nwhen left empty the default text '0 selected features from {layerTitle}' will be shown","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"no-result-text"},{"kind":"field","name":"searchConfiguration","description":"ISearchConfiguration: Configuration details for the Search widget","type":{"text":"ISearchConfiguration | undefined","references":[{"name":"ISearchConfiguration","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchConfiguration","start":0,"end":20}]}},{"kind":"field","name":"searchDistanceEnabled","description":"boolean: when true buffer tools controls are enabled","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"search-distance-enabled"},{"kind":"field","name":"selectionLayerIds","description":"string[]: List of layer ids that should be shown as potential selection layers\nwhen skectching with 'Use layer features' option","type":{"text":"string[]"}},{"kind":"field","name":"selectionSet","description":"utils/interfaces/ISelectionSet: Used to store key details about any selections that have been made.","type":{"text":"ISelectionSet | undefined","references":[{"name":"ISelectionSet","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISelectionSet","start":0,"end":13}]}},{"kind":"field","name":"selectLayerView","description":"esri/views/layers/FeatureLayerView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerView.html","type":{"text":"__esri.FeatureLayerView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"sketchLineSymbol","description":"esri/symbols/SimpleLineSymbol | JSON representation : https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html","type":{"text":"__esri.SimpleLineSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"sketchPointSymbol","description":"esri/symbols/SimpleMarkerSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleMarkerSymbol.html","type":{"text":"__esri.SimpleMarkerSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"sketchPolygonSymbol","description":"esri/symbols/SimpleFillSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleFillSymbol.html","type":{"text":"__esri.SimpleFillSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"useLayerFeaturesEnabled","description":"boolean: when true drawn graphics will be used to select features","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"use-layer-features-enabled"},{"kind":"method","name":"clearSelection","description":"Clear any selection results","return":{"description":"Promise when the results have been cleared","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapSelectTools = document.querySelector(\"map-select-tools\");\ndocument.body.append(mapSelectTools);\nawait mapSelectTools.componentOnReady();\nconsole.log(\"map-select-tools is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"getSelection","description":"Get the new selection set","return":{"description":"Promise with the new selection set","type":{"text":"Promise<ISelectionSet>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7},{"name":"ISelectionSet","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISelectionSet","start":8,"end":21}]}},"signature":"(): Promise<ISelectionSet>"}],"attributes":[{"name":"buffer-color","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"bufferColor"},{"name":"buffer-outline-color","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"bufferOutlineColor"},{"name":"custom-label-enabled","description":"boolean: When true the user can define a name for each notification list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"customLabelEnabled"},{"name":"default-buffer-distance","description":"number: The default value to show for the buffer distance","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"defaultBufferDistance"},{"name":"default-buffer-unit","description":"number: The default value to show for the buffer unit","type":{"text":"\"meters\" | \"feet\" | \"miles\" | \"kilometers\"","values":[{"type":"string","value":"meters"},{"type":"string","value":"feet"},{"type":"string","value":"miles"},{"type":"string","value":"kilometers"}]},"fieldName":"defaultBufferUnit"},{"name":"enable-layer-features","description":"boolean: When true users will be allowed to optionally use features from a layer as the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableLayerFeatures"},{"name":"enable-layer-features-on-load","description":"boolean: When true the use features from a layer options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableLayerFeaturesOnLoad"},{"name":"enable-search-distance","description":"boolean: When true users will be allowed to optionally create a buffer around the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableSearchDistance"},{"name":"enable-search-distance-on-load","description":"boolean: When true the serach distance options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSearchDistanceOnLoad"},{"name":"enable-sketch-tools","description":"boolean: When true sketch tools will be provided to allow users to draw a selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableSketchTools"},{"name":"header-label-class","description":"string: Header label class","type":{"text":"string","values":[{"type":"string"}]},"default":"'font-bold'","fieldName":"headerLabelClass"},{"name":"is-update","description":"boolean: When true a new label is not generated for the stored selection set","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isUpdate"},{"name":"no-result-text","description":"string: The value to show for no results\nwhen left empty the default text '0 selected features from {layerTitle}' will be shown","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"noResultText"},{"name":"search-distance-enabled","description":"boolean: when true buffer tools controls are enabled","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"searchDistanceEnabled"},{"name":"use-layer-features-enabled","description":"boolean: when true drawn graphics will be used to select features","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"useLayerFeaturesEnabled"}],"events":[{"name":"selectionSetChange","description":"Emitted on demand when the selection set changes.","type":{"text":"number"}}],"importPath":"components/map-select-tools"}],"exports":[{"kind":"custom-element-definition","name":"map-select-tools","declaration":{"name":"MapSelectTools"}}]},{"kind":"javascript-module","path":"components/map-tools","sourcePath":"src/components/map-tools/map-tools.tsx","declarations":[{"kind":"class","name":"MapTools","customElement":true,"tagName":"map-tools","pascalCaseName":"MapTools","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"basemapConfig","description":"IBasemapConfig: List of any basemaps to filter out from the basemap widget","type":{"text":"IBasemapConfig | undefined","references":[{"name":"IBasemapConfig","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IBasemapConfig","start":0,"end":14}]}},{"kind":"field","name":"defaultLayerId","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-layer-id"},{"kind":"field","name":"enableBasemap","description":"boolean: when true the basemap widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-basemap"},{"kind":"field","name":"enabledLayerIds","description":"string[]: Optional list of enabled layer ids\n If empty all layers will be available","type":{"text":"string[]"}},{"kind":"field","name":"enableFloorFilter","description":"boolean: when true the floor filter widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-floor-filter"},{"kind":"field","name":"enableFullscreen","description":"boolean: when true the fullscreen widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-fullscreen"},{"kind":"field","name":"enableHome","description":"boolean: when true the home widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-home"},{"kind":"field","name":"enableLayerList","description":"boolean: when true the layer list widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-layer-list"},{"kind":"field","name":"enableLegend","description":"boolean: when true the legend widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-legend"},{"kind":"field","name":"enableMapLayerPicker","description":"boolean: when true the map layer picker will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-map-layer-picker"},{"kind":"field","name":"enableMapPicker","description":"boolean: when true the map picker will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-map-picker"},{"kind":"field","name":"enableSearch","description":"boolean: when true the search widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-search"},{"kind":"field","name":"enableSelectionTool","description":"boolean: when true the selection tools will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-selection-tool"},{"kind":"field","name":"enableSingleExpand","description":"boolean: when true map tools will be displayed within a single expand/collapse widget\nwhen false widgets will be loaded individually into expand widgets","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-single-expand"},{"kind":"field","name":"isMobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-mobile"},{"kind":"field","name":"layout","description":"'horizontal' | 'vertical': used to control the orientation of the tools","type":{"text":"\"horizontal\" | \"vertical\"","values":[{"type":"string","value":"horizontal"},{"type":"string","value":"vertical"}]},"default":"'vertical'","attribute":"layout"},{"kind":"field","name":"mapInfo","description":"IMapInfo: key configuration details about the current map","type":{"text":"IMapInfo | undefined","references":[{"name":"IMapInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}},{"kind":"field","name":"mapInfos","description":"IMapInfo[]: array of map infos (name and id)","type":{"text":"IMapInfo[]","references":[{"name":"IMapInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapWidgetsSize","description":"'s' | 'm' | 'l': Used for optional map tool widget","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","attribute":"map-widgets-size"},{"kind":"field","name":"parentComponentHeight","description":"component height","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"parent-component-height"},{"kind":"field","name":"parentComponentWidth","description":"Parent component width","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"parent-component-width"},{"kind":"field","name":"position","description":"__esri.UIPosition: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-ui-UI.html#UIPosition\nThe position details for the tools","type":{"text":"__esri.UIPosition","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}],"values":[{"type":"string","value":"top-left"},{"type":"string","value":"top-right"},{"type":"string","value":"bottom-left"},{"type":"string","value":"bottom-right"},{"type":"string","value":"top-leading"},{"type":"string","value":"top-trailing"},{"type":"string","value":"bottom-leading"},{"type":"string","value":"bottom-trailing"},{"type":"string","value":"manual"}]},"default":"'top-leading'","attribute":"position"},{"kind":"field","name":"searchConfiguration","description":"ISearchConfiguration: Configuration details for the Search widget","type":{"text":"ISearchConfiguration | undefined","references":[{"name":"ISearchConfiguration","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchConfiguration","start":0,"end":20}]}},{"kind":"field","name":"selectedFeaturesIds","description":"number[]: A list of ids that are currently selected","type":{"text":"(number | string)[]"}},{"kind":"field","name":"selectedLayer","description":"__esri.FeatureLayer: Selected feature layer","type":{"text":"__esri.FeatureLayer | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"selectedWebMapId","description":"string: selected web map","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"selected-web-map-id"},{"kind":"field","name":"selectionTools","description":"string[]: Selection tools to show","type":{"text":"string[]"}},{"kind":"field","name":"showOnlyUpdatableLayers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-only-updatable-layers"},{"kind":"field","name":"stackTools","description":"boolean: When true the map widget tools will have no margin between them.\nWhen false the map widget tools will have a margin between them.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"stack-tools"},{"kind":"field","name":"toolOrder","description":"Tools to show and its order\nValid tools: 'home', 'legend', 'search', 'fullscreen', 'basemap', 'floorfilter', 'selectiontool', 'layers-list', 'map-picker', 'map-layer-picker'","type":{"text":"string[]"}},{"kind":"field","name":"visibilityIcon","description":"VisibilityIconType: visibility icon for the layer list widget","type":{"text":"VisibilityIconType","references":[{"name":"VisibilityIconType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#VisibilityIconType","start":0,"end":18}],"values":[{"type":"string","value":"checkbox"},{"type":"string","value":"eyeball"}]},"default":"'eyeball'","attribute":"visibility-icon"},{"kind":"field","name":"zoomToolsSize","description":"'s' | 'm' | 'l': Used for Zoom tools","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","attribute":"zoom-tools-size"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapTools = document.querySelector(\"map-tools\");\ndocument.body.append(mapTools);\nawait mapTools.componentOnReady();\nconsole.log(\"map-tools is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"default-layer-id","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultLayerId"},{"name":"enable-basemap","description":"boolean: when true the basemap widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableBasemap"},{"name":"enable-floor-filter","description":"boolean: when true the floor filter widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableFloorFilter"},{"name":"enable-fullscreen","description":"boolean: when true the fullscreen widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableFullscreen"},{"name":"enable-home","description":"boolean: when true the home widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableHome"},{"name":"enable-layer-list","description":"boolean: when true the layer list widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableLayerList"},{"name":"enable-legend","description":"boolean: when true the legend widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableLegend"},{"name":"enable-map-layer-picker","description":"boolean: when true the map layer picker will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableMapLayerPicker"},{"name":"enable-map-picker","description":"boolean: when true the map picker will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableMapPicker"},{"name":"enable-search","description":"boolean: when true the search widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSearch"},{"name":"enable-selection-tool","description":"boolean: when true the selection tools will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSelectionTool"},{"name":"enable-single-expand","description":"boolean: when true map tools will be displayed within a single expand/collapse widget\nwhen false widgets will be loaded individually into expand widgets","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSingleExpand"},{"name":"is-mobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMobile"},{"name":"layout","description":"'horizontal' | 'vertical': used to control the orientation of the tools","type":{"text":"\"horizontal\" | \"vertical\"","values":[{"type":"string","value":"horizontal"},{"type":"string","value":"vertical"}]},"default":"'vertical'","fieldName":"layout"},{"name":"map-widgets-size","description":"'s' | 'm' | 'l': Used for optional map tool widget","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","fieldName":"mapWidgetsSize"},{"name":"parent-component-height","description":"component height","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"parentComponentHeight"},{"name":"parent-component-width","description":"Parent component width","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"parentComponentWidth"},{"name":"position","description":"__esri.UIPosition: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-ui-UI.html#UIPosition\nThe position details for the tools","type":{"text":"\"top-left\" | \"top-right\" | \"bottom-left\" | \"bottom-right\" | \"top-leading\" | \"top-trailing\" | \"bottom-leading\" | \"bottom-trailing\" | \"manual\"","values":[{"type":"string","value":"top-left"},{"type":"string","value":"top-right"},{"type":"string","value":"bottom-left"},{"type":"string","value":"bottom-right"},{"type":"string","value":"top-leading"},{"type":"string","value":"top-trailing"},{"type":"string","value":"bottom-leading"},{"type":"string","value":"bottom-trailing"},{"type":"string","value":"manual"}]},"default":"'top-leading'","fieldName":"position"},{"name":"selected-web-map-id","description":"string: selected web map","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"selectedWebMapId"},{"name":"show-only-updatable-layers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showOnlyUpdatableLayers"},{"name":"stack-tools","description":"boolean: When true the map widget tools will have no margin between them.\nWhen false the map widget tools will have a margin between them.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"stackTools"},{"name":"visibility-icon","description":"VisibilityIconType: visibility icon for the layer list widget","type":{"text":"\"checkbox\" | \"eyeball\"","values":[{"type":"string","value":"checkbox"},{"type":"string","value":"eyeball"}]},"default":"'eyeball'","fieldName":"visibilityIcon"},{"name":"zoom-tools-size","description":"'s' | 'm' | 'l': Used for Zoom tools","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","fieldName":"zoomToolsSize"}],"events":[{"name":"clearSelection","description":"Emitted on demand when clear selection button is clicked","type":{"text":"void"}}],"importPath":"components/map-tools"}],"exports":[{"kind":"custom-element-definition","name":"map-tools","declaration":{"name":"MapTools"}}]},{"kind":"javascript-module","path":"components/pci-calculator","sourcePath":"src/components/pci-calculator/pci-calculator.tsx","declarations":[{"kind":"class","name":"PciCalculator","customElement":true,"tagName":"pci-calculator","pascalCaseName":"PciCalculator","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst pciCalculator = document.querySelector(\"pci-calculator\");\ndocument.body.append(pciCalculator);\nawait pciCalculator.componentOnReady();\nconsole.log(\"pci-calculator is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"importPath":"components/pci-calculator"}],"exports":[{"kind":"custom-element-definition","name":"pci-calculator","declaration":{"name":"PciCalculator"}}]},{"kind":"javascript-module","path":"components/pdf-download","sourcePath":"src/components/pdf-download/pdf-download.tsx","declarations":[{"kind":"class","name":"PdfDownload","customElement":true,"tagName":"pdf-download","pascalCaseName":"PdfDownload","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"defaultNumLabelsPerPage","description":"number: The default number of labels per page to export","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"default-num-labels-per-page"},{"kind":"field","name":"disabled","description":"boolean: Controls the enabled/disabled state of download","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"disabled"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst pdfDownload = document.querySelector(\"pdf-download\");\ndocument.body.append(pdfDownload);\nawait pdfDownload.componentOnReady();\nconsole.log(\"pdf-download is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"downloadCSV","description":"Downloads csv of mailing labels for the provided list of ids","parameters":[{"name":"webmap","description":"Webmap containing layer","type":{"text":"__esri.Map","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"name":"exportInfos","description":"Information about items to be exported","type":{"text":"IExportInfos","references":[{"name":"IExportInfos","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IExportInfos","start":0,"end":12}]}},{"name":"removeDuplicates","description":"When true a single label is generated when multiple featues have a shared address value","type":{"text":"boolean"}},{"name":"addColumnTitle","description":"Indicates if column headings should be included in output","type":{"text":"boolean"},"default":"true"}],"return":{"description":"Promise resolving when function is done","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(webmap: __esri.Map, exportInfos: IExportInfos, removeDuplicates: boolean, addColumnTitle?: boolean): Promise<void>"},{"kind":"method","name":"downloadPDF","description":"Downloads pdf of mailing labels for the provided list of ids","parameters":[{"name":"webmap","description":"Webmap containing layer","type":{"text":"__esri.Map","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"name":"exportInfos","description":"Information about items to be exported","type":{"text":"IExportInfos","references":[{"name":"IExportInfos","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IExportInfos","start":0,"end":12}]}},{"name":"removeDuplicates","description":"When true a single label is generated when multiple featues have a shared address value","type":{"text":"boolean"},"default":"false"},{"name":"title","description":"Title for each page","type":{"text":"string"},"default":"''"},{"name":"initialImageDataUrl","description":"Data URL of image for first page","type":{"text":"string"},"default":"''"}],"return":{"description":"Promise resolving when function is done","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(webmap: __esri.Map, exportInfos: IExportInfos, removeDuplicates?: boolean, title?: string, initialImageDataUrl?: string): Promise<void>"}],"attributes":[{"name":"default-num-labels-per-page","description":"number: The default number of labels per page to export","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"defaultNumLabelsPerPage"},{"name":"disabled","description":"boolean: Controls the enabled/disabled state of download","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"disabled"}],"importPath":"components/pdf-download"}],"exports":[{"kind":"custom-element-definition","name":"pdf-download","declaration":{"name":"PdfDownload"}}]},{"kind":"javascript-module","path":"components/public-notification","sourcePath":"src/components/public-notification/public-notification.tsx","declarations":[{"kind":"class","name":"PublicNotification","customElement":true,"tagName":"public-notification","pascalCaseName":"PublicNotification","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"addresseeLayerIds","description":"string[]: List of layer ids that should be shown as potential addressee layers","type":{"text":"string[]"}},{"kind":"field","name":"bufferColor","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"attribute":"buffer-color"},{"kind":"field","name":"bufferOutlineColor","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"attribute":"buffer-outline-color"},{"kind":"field","name":"customExport","description":"boolean: When true the custom export functionality should be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"custom-export"},{"kind":"field","name":"customExportURL","description":"string: The custom print service URL","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"custom-export-url"},{"kind":"field","name":"customLabelEnabled","description":"boolean: When true the user can define a name for each notification list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"custom-label-enabled"},{"kind":"field","name":"defaultBufferDistance","description":"number: The default value to show for the buffer distance","type":{"text":"number","values":[{"type":"number"}]},"default":"0","attribute":"default-buffer-distance"},{"kind":"field","name":"defaultBufferUnit","description":"number: The default value to show for the buffer unit ('feet'|'meters'|'miles'|'kilometers')","type":{"text":"DistanceUnit","references":[{"name":"DistanceUnit","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DistanceUnit","start":0,"end":12}],"values":[{"type":"string","value":"meters"},{"type":"string","value":"feet"},{"type":"string","value":"miles"},{"type":"string","value":"kilometers"}]},"default":"'feet'","attribute":"default-buffer-unit"},{"kind":"field","name":"defaultExportTitle","description":"string: The default value to use for the export title","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-export-title"},{"kind":"field","name":"defaultNumLabelsPerPage","description":"number: The default number of labels per page to export","type":{"text":"number","values":[{"type":"number"}]},"default":"6","attribute":"default-num-labels-per-page"},{"kind":"field","name":"enableLayerFeatures","description":"boolean: When true users will be allowed to optionally use features from a layer as the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-layer-features"},{"kind":"field","name":"enableLayerFeaturesOnLoad","description":"boolean: When true the use features from a layer options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-layer-features-on-load"},{"kind":"field","name":"enableSearchDistance","description":"boolean: When true users will be allowed to optionally create a buffer around the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-search-distance"},{"kind":"field","name":"enableSearchDistanceOnLoad","description":"boolean: When true the serach distance options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-search-distance-on-load"},{"kind":"field","name":"enableSketchTools","description":"boolean: When true sketch tools will be provided to allow users to draw a selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-sketch-tools"},{"kind":"field","name":"featureEffect","description":"The effect that will be applied when featureHighlightEnabled is true\n\nesri/layers/support/FeatureEffect: https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureEffect.html","type":{"text":"__esri.FeatureEffect | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"featureHighlightEnabled","description":"boolean: When enabled features will be highlighted when their notification list item is clicked.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"feature-highlight-enabled"},{"kind":"field","name":"initialNotice","description":"string: The value to show in the initial notice to help with on boarding the user.\nWhen left empty the selectLayerAndAdd text from the nls will be used.","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"initial-notice"},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"noResultText","description":"string: The value to show for no results\nwhen left empty the default text '0 selected features from {layerTitle}' will be shown","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"no-result-text"},{"kind":"field","name":"searchConfiguration","description":"ISearchConfiguration: Configuration details for the Search widget","type":{"text":"ISearchConfiguration | undefined","references":[{"name":"ISearchConfiguration","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchConfiguration","start":0,"end":20}]}},{"kind":"field","name":"selectionLayerIds","description":"string[]: List of layer ids that should be shown as potential selection layers\nwhen skectching with 'Use layer features' option","type":{"text":"string[]"}},{"kind":"field","name":"showRefineSelection","description":"boolean: When true the refine selection workflow will be included in the UI","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-refine-selection"},{"kind":"field","name":"showSearchSettings","description":"boolean: When false no buffer distance or unit controls will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"show-search-settings"},{"kind":"field","name":"sketchLineSymbol","description":"esri/symbols/SimpleLineSymbol | JSON representation : https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html\n\nA JSON representation of the instance in the ArcGIS format.\nSee the ArcGIS REST API documentation for examples of the structure of various input JSON objects.\nhttps://developers.arcgis.com/documentation/common-data-types/symbol-objects.htm","type":{"text":"__esri.SimpleLineSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"sketchPointSymbol","description":"esri/symbols/SimpleMarkerSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleMarkerSymbol.html\n\nA JSON representation of the instance in the ArcGIS format.\nSee the ArcGIS REST API documentation for examples of the structure of various input JSON objects.\nhttps://developers.arcgis.com/documentation/common-data-types/symbol-objects.htm","type":{"text":"__esri.SimpleMarkerSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"sketchPolygonSymbol","description":"esri/symbols/SimpleFillSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleFillSymbol.html\n\nA JSON representation of the instance in the ArcGIS format.\nSee the ArcGIS REST API documentation for examples of the structure of various input JSON objects.\nhttps://developers.arcgis.com/documentation/common-data-types/symbol-objects.htm","type":{"text":"__esri.SimpleFillSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst publicNotification = document.querySelector(\"public-notification\");\ndocument.body.append(publicNotification);\nawait publicNotification.componentOnReady();\nconsole.log(\"public-notification is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"buffer-color","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"bufferColor"},{"name":"buffer-outline-color","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"bufferOutlineColor"},{"name":"custom-export","description":"boolean: When true the custom export functionality should be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"customExport"},{"name":"custom-export-url","description":"string: The custom print service URL","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"customExportURL"},{"name":"custom-label-enabled","description":"boolean: When true the user can define a name for each notification list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"customLabelEnabled"},{"name":"default-buffer-distance","description":"number: The default value to show for the buffer distance","type":{"text":"number","values":[{"type":"number"}]},"default":"0","fieldName":"defaultBufferDistance"},{"name":"default-buffer-unit","description":"number: The default value to show for the buffer unit ('feet'|'meters'|'miles'|'kilometers')","type":{"text":"\"meters\" | \"feet\" | \"miles\" | \"kilometers\"","values":[{"type":"string","value":"meters"},{"type":"string","value":"feet"},{"type":"string","value":"miles"},{"type":"string","value":"kilometers"}]},"default":"'feet'","fieldName":"defaultBufferUnit"},{"name":"default-export-title","description":"string: The default value to use for the export title","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultExportTitle"},{"name":"default-num-labels-per-page","description":"number: The default number of labels per page to export","type":{"text":"number","values":[{"type":"number"}]},"default":"6","fieldName":"defaultNumLabelsPerPage"},{"name":"enable-layer-features","description":"boolean: When true users will be allowed to optionally use features from a layer as the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableLayerFeatures"},{"name":"enable-layer-features-on-load","description":"boolean: When true the use features from a layer options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableLayerFeaturesOnLoad"},{"name":"enable-search-distance","description":"boolean: When true users will be allowed to optionally create a buffer around the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableSearchDistance"},{"name":"enable-search-distance-on-load","description":"boolean: When true the serach distance options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSearchDistanceOnLoad"},{"name":"enable-sketch-tools","description":"boolean: When true sketch tools will be provided to allow users to draw a selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableSketchTools"},{"name":"feature-highlight-enabled","description":"boolean: When enabled features will be highlighted when their notification list item is clicked.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"featureHighlightEnabled"},{"name":"initial-notice","description":"string: The value to show in the initial notice to help with on boarding the user.\nWhen left empty the selectLayerAndAdd text from the nls will be used.","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"initialNotice"},{"name":"no-result-text","description":"string: The value to show for no results\nwhen left empty the default text '0 selected features from {layerTitle}' will be shown","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"noResultText"},{"name":"show-refine-selection","description":"boolean: When true the refine selection workflow will be included in the UI","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showRefineSelection"},{"name":"show-search-settings","description":"boolean: When false no buffer distance or unit controls will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showSearchSettings"}],"events":[{"name":"searchConfigurationChange","description":"Emitted on demand when searchConfiguration gets a new value","type":{"text":"ISearchConfiguration","references":[{"name":"ISearchConfiguration","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchConfiguration","start":0,"end":20}]}}],"importPath":"components/public-notification"}],"exports":[{"kind":"custom-element-definition","name":"public-notification","declaration":{"name":"PublicNotification"}}]},{"kind":"javascript-module","path":"components/refine-selection","sourcePath":"src/components/refine-selection/refine-selection.tsx","declarations":[{"kind":"class","name":"RefineSelection","customElement":true,"tagName":"refine-selection","pascalCaseName":"RefineSelection","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"addresseeLayer","description":"esri/views/layers/FeatureLayerView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerView.html","type":{"text":"__esri.FeatureLayerView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"bufferColor","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"attribute":"buffer-color"},{"kind":"field","name":"bufferOutlineColor","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"attribute":"buffer-outline-color"},{"kind":"field","name":"defaultBufferDistance","description":"number: The default value to show for the buffer distance","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"default-buffer-distance"},{"kind":"field","name":"defaultBufferUnit","description":"number: The default value to show for the buffer unit","type":{"text":"DistanceUnit | undefined","references":[{"name":"DistanceUnit","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DistanceUnit","start":0,"end":12}],"values":[{"type":"string","value":"meters"},{"type":"string","value":"feet"},{"type":"string","value":"miles"},{"type":"string","value":"kilometers"}]},"attribute":"default-buffer-unit"},{"kind":"field","name":"drawnGraphicsArr","description":"Array of drawn graphics for refine selection","type":{"text":"{\n drawnGraphic: __esri.Graphic | undefined;\n bufferGraphic: __esri.Graphic | undefined;\n}[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":20,"end":27},{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":67,"end":74}]}},{"kind":"field","name":"enabledLayerIds","description":"string[]: Optional list of enabled layer ids\n If empty all layers will be available","type":{"text":"string[]"}},{"kind":"field","name":"enableSearchDistance","description":"boolean: When true users will be allowed to optionally create a buffer around the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-search-distance"},{"kind":"field","name":"enableSearchDistanceOnLoad","description":"boolean: When true the serach distance options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-search-distance-on-load"},{"kind":"field","name":"geometries","description":"esri/geometry: https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry.html","type":{"text":"__esri.Geometry[] | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"searchDistanceEnabled","description":"boolean: when true buffer tools controls are enabled","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"search-distance-enabled"},{"kind":"field","name":"selectionSets","description":"utils/interfaces/ISelectionSet: An array of user defined selection sets","type":{"text":"ISelectionSet[]","references":[{"name":"ISelectionSet","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISelectionSet","start":0,"end":13}]}},{"kind":"field","name":"sketchLineSymbol","description":"esri/symbols/SimpleLineSymbol | JSON representation : https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html","type":{"text":"__esri.SimpleLineSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"sketchPointSymbol","description":"esri/symbols/SimpleMarkerSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleMarkerSymbol.html","type":{"text":"__esri.SimpleMarkerSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"sketchPolygonSymbol","description":"esri/symbols/SimpleFillSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleFillSymbol.html","type":{"text":"__esri.SimpleFillSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst refineSelection = document.querySelector(\"refine-selection\");\ndocument.body.append(refineSelection);\nawait refineSelection.componentOnReady();\nconsole.log(\"refine-selection is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"buffer-color","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"bufferColor"},{"name":"buffer-outline-color","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"bufferOutlineColor"},{"name":"default-buffer-distance","description":"number: The default value to show for the buffer distance","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"defaultBufferDistance"},{"name":"default-buffer-unit","description":"number: The default value to show for the buffer unit","type":{"text":"\"meters\" | \"feet\" | \"miles\" | \"kilometers\"","values":[{"type":"string","value":"meters"},{"type":"string","value":"feet"},{"type":"string","value":"miles"},{"type":"string","value":"kilometers"}]},"fieldName":"defaultBufferUnit"},{"name":"enable-search-distance","description":"boolean: When true users will be allowed to optionally create a buffer around the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableSearchDistance"},{"name":"enable-search-distance-on-load","description":"boolean: When true the serach distance options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSearchDistanceOnLoad"},{"name":"search-distance-enabled","description":"boolean: when true buffer tools controls are enabled","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"searchDistanceEnabled"}],"events":[{"name":"selectionLoadingChange","description":"Emitted on demand when selection starts or ends.","type":{"text":"boolean"}},{"name":"selectionSetsChanged","description":"Emitted on demand when selection sets change.","type":{"text":"ISelectionSet[]","references":[{"name":"ISelectionSet","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISelectionSet","start":0,"end":13}]}}],"importPath":"components/refine-selection"}],"exports":[{"kind":"custom-element-definition","name":"refine-selection","declaration":{"name":"RefineSelection"}}]},{"kind":"javascript-module","path":"components/selection-tool","sourcePath":"src/components/selection-tool/selection-tool.tsx","declarations":[{"kind":"class","name":"SelectionTool","customElement":true,"tagName":"selection-tool","pascalCaseName":"SelectionTool","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"selectedLayerId","description":"string: Selected layer id","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"selected-layer-id"},{"kind":"field","name":"tool","description":"string: Tool for selecting the features","type":{"text":"\"circle\" | \"freehandPolygon\" | \"polygon\" | \"rectangle\"","values":[{"type":"string","value":"circle"},{"type":"string","value":"freehandPolygon"},{"type":"string","value":"polygon"},{"type":"string","value":"rectangle"}]},"default":"'rectangle'","attribute":"tool"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst selectionTool = document.querySelector(\"selection-tool\");\ndocument.body.append(selectionTool);\nawait selectionTool.componentOnReady();\nconsole.log(\"selection-tool is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"toggleSelectionTool","description":"Toggles the selection tool state","parameters":[{"name":"tool","description":"Tool for selecting the features","type":{"text":"\"circle\" | \"freehandPolygon\" | \"polygon\" | \"rectangle\""}},{"name":"isActive","type":{"text":"boolean"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(tool: \"circle\" | \"freehandPolygon\" | \"polygon\" | \"rectangle\", isActive: boolean): Promise<void>"}],"attributes":[{"name":"selected-layer-id","description":"string: Selected layer id","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"selectedLayerId"},{"name":"tool","description":"string: Tool for selecting the features","type":{"text":"\"circle\" | \"freehandPolygon\" | \"polygon\" | \"rectangle\"","values":[{"type":"string","value":"circle"},{"type":"string","value":"freehandPolygon"},{"type":"string","value":"polygon"},{"type":"string","value":"rectangle"}]},"default":"'rectangle'","fieldName":"tool"}],"events":[{"name":"drawingComplete","description":"Emitted when drawing is completed","type":{"text":"void"}},{"name":"featuresSelected","description":"Emitted when feature are selected","type":{"text":"(number | string)[] | undefined"}}],"importPath":"components/selection-tool"}],"exports":[{"kind":"custom-element-definition","name":"selection-tool","declaration":{"name":"SelectionTool"}}]},{"kind":"javascript-module","path":"components/solution-configure-titles","sourcePath":"src/components/solution-configure-titles/solution-configure-titles.tsx","declarations":[{"kind":"class","name":"SolutionConfigureTitles","customElement":true,"tagName":"solution-configure-titles","pascalCaseName":"SolutionConfigureTitles","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"card","description":"Key details about the solution","type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"open","description":"boolean: when true the dialog is open","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"open"},{"kind":"field","name":"solutionData","description":"The solution items data used here to check for and store any user defined prefix or suffix values","type":{"text":"any","values":[{"type":"any"}]},"attribute":"solution-data"},{"kind":"field","name":"source","description":"Source from which the dialog was opened (\"Card Dropdown\" or \"Details Page\")","type":{"text":"\"Card Dropdown\" | \"Details Page\"","values":[{"type":"string","value":"Card Dropdown"},{"type":"string","value":"Details Page"}]},"default":"'Card Dropdown'","attribute":"source"},{"kind":"field","name":"templateInfos","description":"ITemplateInfo[]: Collection of template infos","type":{"text":"ITemplateInfo[]","references":[{"name":"ITemplateInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ITemplateInfo","start":0,"end":13}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionConfigureTitles = document.querySelector(\"solution-configure-titles\");\ndocument.body.append(solutionConfigureTitles);\nawait solutionConfigureTitles.componentOnReady();\nconsole.log(\"solution-configure-titles is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"open","description":"boolean: when true the dialog is open","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"open"},{"name":"solution-data","description":"The solution items data used here to check for and store any user defined prefix or suffix values","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"solutionData"},{"name":"source","description":"Source from which the dialog was opened (\"Card Dropdown\" or \"Details Page\")","type":{"text":"\"Card Dropdown\" | \"Details Page\"","values":[{"type":"string","value":"Card Dropdown"},{"type":"string","value":"Details Page"}]},"default":"'Card Dropdown'","fieldName":"source"}],"events":[{"name":"solutionConfigureTitlesBeforeClose","description":"This event will be emitted when this dialog is closed","type":{"text":"void"}},{"name":"solutionItemsTitlesChanged","description":"This event will be emitted when the titles have been updated","type":{"text":"void"}}],"importPath":"components/solution-configure-titles"}],"exports":[{"kind":"custom-element-definition","name":"solution-configure-titles","declaration":{"name":"SolutionConfigureTitles"}}]},{"kind":"javascript-module","path":"components/solution-delete-dialog","sourcePath":"src/components/solution-delete-dialog/solution-delete-dialog.tsx","declarations":[{"kind":"class","name":"SolutionDeleteDialog","customElement":true,"tagName":"solution-delete-dialog","pascalCaseName":"SolutionDeleteDialog","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"card","description":"Key details about the solution","docsTags":[{"name":"required"}],"type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"open","description":"When true the dialog will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"open"},{"kind":"field","name":"source","description":"Source from which the dialog was opened (\"Card Dropdown\" or \"Details Page\")","type":{"text":"\"Card Dropdown\" | \"Details Page\"","values":[{"type":"string","value":"Card Dropdown"},{"type":"string","value":"Details Page"}]},"default":"'Card Dropdown'","attribute":"source"},{"kind":"method","name":"close","description":"Closes the panel","return":{"type":{"text":"void"}},"signature":"(): void"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionDeleteDialog = document.querySelector(\"solution-delete-dialog\");\ndocument.body.append(solutionDeleteDialog);\nawait solutionDeleteDialog.componentOnReady();\nconsole.log(\"solution-delete-dialog is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"delete","description":"Deletes the solution provided in the card property.","return":{"type":{"text":"void"}},"signature":"(): void"}],"attributes":[{"name":"open","description":"When true the dialog will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"open"},{"name":"source","description":"Source from which the dialog was opened (\"Card Dropdown\" or \"Details Page\")","type":{"text":"\"Card Dropdown\" | \"Details Page\"","values":[{"type":"string","value":"Card Dropdown"},{"type":"string","value":"Details Page"}]},"default":"'Card Dropdown'","fieldName":"source"}],"events":[{"name":"solutionDeleted","description":"Emitted after delete process to refresh solutions list","type":{"text":"{\n showAlert: boolean;\n refreshSolutionsTimeout: boolean;\n solutionTitle?: string;\n}"}},{"name":"solutionDeleteDialogBeforeClose","description":"This event will be emitted on dialog before close","type":{"text":"void"}},{"name":"solutionDeleteDialogOpen","description":"Emitted when the dialog is closed.","type":{"text":"boolean"}}],"importPath":"components/solution-delete-dialog"}],"exports":[{"kind":"custom-element-definition","name":"solution-delete-dialog","declaration":{"name":"SolutionDeleteDialog"}}]},{"kind":"javascript-module","path":"components/solution-deploy-dialog","sourcePath":"src/components/solution-deploy-dialog/solution-deploy-dialog.tsx","declarations":[{"kind":"class","name":"SolutionDeployDialog","customElement":true,"tagName":"solution-deploy-dialog","pascalCaseName":"SolutionDeployDialog","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"card","description":"Key details about the solution","type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"debugFailDeployment","description":"Debug mode: when true, simulates a deployment failure instead of actually deploying","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"debug-fail-deployment"},{"kind":"field","name":"open","description":"When true the dialog will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"open"},{"kind":"field","name":"userOptions","description":"TODO...this will need to be thought through some more...\nmay be able to remove completely for v2 but need to look closer at other custom params that were supported to see","type":{"text":"IUserOption[]","references":[{"name":"IUserOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IUserOption","start":0,"end":11}]}},{"kind":"method","name":"close","description":"Closes the panel","return":{"type":{"text":"void"}},"signature":"(): void"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionDeployDialog = document.querySelector(\"solution-deploy-dialog\");\ndocument.body.append(solutionDeployDialog);\nawait solutionDeployDialog.componentOnReady();\nconsole.log(\"solution-deploy-dialog is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"deploy","description":"Deploys a solution","return":{"type":{"text":"void"}},"signature":"(): void"}],"attributes":[{"name":"debug-fail-deployment","description":"Debug mode: when true, simulates a deployment failure instead of actually deploying","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"debugFailDeployment"},{"name":"open","description":"When true the dialog will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"open"}],"events":[{"name":"deployCancelled","description":"Emitted when the deploy dialog is cancelled or closed before deployment","type":{"text":"void"}},{"name":"deployFailed","description":"Emitted on demand when deploy fails\nThe emitted IDeployFailed value provides access to the current card and job id","type":{"text":"IDeployFailed","references":[{"name":"IDeployFailed","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IDeployFailed","start":0,"end":13}]}},{"name":"deployProgressEnd","description":"Emitted on demand when deploy progress ends\nThe emitted boolean value indicates if the process was successful or not","type":{"text":"string"}},{"name":"deployProgressStart","description":"Emitted on demand when deploy progress is started","type":{"text":"AbortController","references":[{"name":"AbortController","package":"global:","viewUrl":"https://developer.mozilla.org/docs/Web/API/AbortController","start":0,"end":15}]}},{"name":"deployProgressUpdated","description":"Emitted on demand when deploy progress is updated","type":{"text":"IDeployProgressUpdate","references":[{"name":"IDeployProgressUpdate","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IDeployProgressUpdate","start":0,"end":21}]}}],"importPath":"components/solution-deploy-dialog"}],"exports":[{"kind":"custom-element-definition","name":"solution-deploy-dialog","declaration":{"name":"SolutionDeployDialog"}}]},{"kind":"javascript-module","path":"components/solution-deployed-card","sourcePath":"src/components/solution-deployed-card/solution-deployed-card.tsx","declarations":[{"kind":"class","name":"SolutionDeployedCard","customElement":true,"tagName":"solution-deployed-card","pascalCaseName":"SolutionDeployedCard","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"card","description":"Key details about the solution","type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"deployedDate","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"deployed-date"},{"kind":"field","name":"description","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"description"},{"kind":"field","name":"diagramKey","description":"Digram license key to use view the diagram","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"diagram-key"},{"kind":"field","name":"heading","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"heading"},{"kind":"field","name":"itemId","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"item-id"},{"kind":"field","name":"owner","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"owner"},{"kind":"field","name":"templateInfos","description":"ITemplateInfo[]: Collection of template infos","type":{"text":"ITemplateInfo[]","references":[{"name":"ITemplateInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ITemplateInfo","start":0,"end":13}]}},{"kind":"field","name":"thumbnail","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"thumbnail"},{"kind":"field","name":"updateAvailable","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"update-available"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionDeployedCard = document.querySelector(\"solution-deployed-card\");\ndocument.body.append(solutionDeployedCard);\nawait solutionDeployedCard.componentOnReady();\nconsole.log(\"solution-deployed-card is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"getTemplates","description":"Get the templates from the current card","return":{"type":{"text":"Promise<ITemplateInfoGraph[]>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7},{"name":"ITemplateInfoGraph","module":"components/solution-item-diagram/utils/solutionGraph","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/solution-item-diagram/utils/solutionGraph/#ITemplateInfoGraph","start":8,"end":26}]}},"signature":"(): Promise<ITemplateInfoGraph[]>"},{"kind":"method","name":"renderDeleteDialog","description":"Show the delete dialog\nThis allows other components to leverage the logic that is built into this card.\nIt will return a reference to the dialog so the other component can respond to its events.","return":{"type":{"text":"Promise<SolutionDeleteDialog | undefined>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7},{"name":"SolutionDeleteDialog","module":"components/solution-delete-dialog","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/solution-delete-dialog/#SolutionDeleteDialog","start":8,"end":28}]}},"signature":"(): Promise<SolutionDeleteDialog | undefined>"},{"kind":"method","name":"renderDiagramDialog","description":"Show the diagram dialog\nThis allows other components to leverage the logic that is built into this card.\nIt will return a reference to the dialog so the other component can respond to its events.","parameters":[{"name":"evt","type":{"text":"MouseEvent","references":[{"name":"MouseEvent","package":"global:","viewUrl":"https://developer.mozilla.org/docs/Web/API/MouseEvent","start":0,"end":10}]}}],"return":{"type":{"text":"Promise<Dialog | undefined>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7},{"name":"Dialog","module":"components/calcite-dialog","package":"@esri/calcite-components","start":8,"end":14}]}},"signature":"(evt: MouseEvent): Promise<Dialog | undefined>"}],"attributes":[{"name":"deployed-date","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"deployedDate"},{"name":"description","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"description"},{"name":"diagram-key","description":"Digram license key to use view the diagram","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"diagramKey"},{"name":"heading","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"heading"},{"name":"item-id","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"itemId"},{"name":"owner","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"owner"},{"name":"thumbnail","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"thumbnail"},{"name":"update-available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"updateAvailable"}],"events":[{"name":"deployedCardSelected","description":"Emitted on demand when the details card is selected.","type":{"text":"IDeployCard","references":[{"name":"IDeployCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IDeployCard","start":0,"end":11}]}}],"importPath":"components/solution-deployed-card"}],"exports":[{"kind":"custom-element-definition","name":"solution-deployed-card","declaration":{"name":"SolutionDeployedCard"}}]},{"kind":"javascript-module","path":"components/solution-deployed-card-panel","sourcePath":"src/components/solution-deployed-card-panel/solution-deployed-card-panel.tsx","declarations":[{"kind":"class","name":"SolutionDeployedCardPanel","customElement":true,"tagName":"solution-deployed-card-panel","pascalCaseName":"SolutionDeployedCardPanel","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"card","description":"Key details about the solution","type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"cardRef","description":"Reference to the card that opened this dialog","type":{"text":"any | undefined","values":[{"type":"any"}]},"attribute":"card-ref"},{"kind":"field","name":"diagramKey","description":"Digram license key to use view the diagram","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"diagram-key"},{"kind":"field","name":"open","description":"boolean: when true the dialog is open","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"open"},{"kind":"field","name":"templateInfos","description":"ITemplateInfo[]: Collection of template infos","type":{"text":"ITemplateInfo[]","references":[{"name":"ITemplateInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ITemplateInfo","start":0,"end":13}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionDeployedCardPanel = document.querySelector(\"solution-deployed-card-panel\");\ndocument.body.append(solutionDeployedCardPanel);\nawait solutionDeployedCardPanel.componentOnReady();\nconsole.log(\"solution-deployed-card-panel is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"card-ref","description":"Reference to the card that opened this dialog","type":{"text":"any | undefined","values":[{"type":"any"}]},"fieldName":"cardRef"},{"name":"diagram-key","description":"Digram license key to use view the diagram","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"diagramKey"},{"name":"open","description":"boolean: when true the dialog is open","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"open"}],"events":[{"name":"forceSelectTab","description":"Force tab selection, used to navigate to newer version of solution from a deployed solution","type":{"text":"IActiveTab","references":[{"name":"IActiveTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IActiveTab","start":0,"end":10}]}},{"name":"navTabSelected","description":"Tab selected event","type":{"text":"INavTab","references":[{"name":"INavTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#INavTab","start":0,"end":7}]}},{"name":"solutionConfigureDialogClose","description":"This event will be emitted when this dialog is closed.\nWhen the emitted value is true the solution has been updated and needs to be fetched again","type":{"text":"boolean"}},{"name":"sortTypeChanged","description":"Emitted on demand when the sort type changes","type":{"text":"string"}}],"importPath":"components/solution-deployed-card-panel"}],"exports":[{"kind":"custom-element-definition","name":"solution-deployed-card-panel","declaration":{"name":"SolutionDeployedCardPanel"}}]},{"kind":"javascript-module","path":"components/solution-deploying-dialog","sourcePath":"src/components/solution-deploying-dialog/solution-deploying-dialog.tsx","declarations":[{"kind":"class","name":"SolutionDeployingDialog","customElement":true,"tagName":"solution-deploying-dialog","pascalCaseName":"SolutionDeployingDialog","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"abortController","description":"Abort controller to stop the deploying. Actual cancel callback is in solution-details","type":{"text":"AbortController | undefined","references":[{"name":"AbortController","package":"global:","viewUrl":"https://developer.mozilla.org/docs/Web/API/AbortController","start":0,"end":15}]}},{"kind":"field","name":"card","description":"Key details about the solution","type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"deploymentProgress","description":"Percentage of completion for solution deployment","type":{"text":"number","values":[{"type":"number"}]},"default":"0","attribute":"deployment-progress"},{"kind":"field","name":"isWaitingForCard","description":"Track when deployment is complete and we're waiting for card to be ready","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-waiting-for-card"},{"kind":"field","name":"open","description":"When true the dialog will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"open"},{"kind":"method","name":"cancelDeployment","description":"Cancel the current deployment","return":{"type":{"text":"void"}},"signature":"(): void"},{"kind":"method","name":"close","description":"Closes the dialog","return":{"type":{"text":"void"}},"signature":"(): void"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionDeployingDialog = document.querySelector(\"solution-deploying-dialog\");\ndocument.body.append(solutionDeployingDialog);\nawait solutionDeployingDialog.componentOnReady();\nconsole.log(\"solution-deploying-dialog is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"confirmCancel","description":"Confirm cancel the deployment","return":{"type":{"text":"void"}},"signature":"(): void"}],"attributes":[{"name":"deployment-progress","description":"Percentage of completion for solution deployment","type":{"text":"number","values":[{"type":"number"}]},"default":"0","fieldName":"deploymentProgress"},{"name":"is-waiting-for-card","description":"Track when deployment is complete and we're waiting for card to be ready","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isWaitingForCard"},{"name":"open","description":"When true the dialog will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"open"}],"events":[{"name":"deployingDialogOpened","description":"Emitted when the deploying dialog opens","type":{"text":"void"}},{"name":"deploymentProcessCancelled","description":"Emitted when deployment is cancelled by the user during deployment","type":{"text":"void"}}],"importPath":"components/solution-deploying-dialog"}],"exports":[{"kind":"custom-element-definition","name":"solution-deploying-dialog","declaration":{"name":"SolutionDeployingDialog"}}]},{"kind":"javascript-module","path":"components/solution-details-card","sourcePath":"src/components/solution-details-card/solution-details-card.tsx","declarations":[{"kind":"class","name":"SolutionDetailsCard","customElement":true,"tagName":"solution-details-card","pascalCaseName":"SolutionDetailsCard","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"card","description":"The solutions card","type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"referrerSolutionId","description":"Referrer solution ID for telemetry tracking (used when card is in 'you-may-also-like')","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"referrer-solution-id"},{"kind":"field","name":"referrerSolutionTitle","description":"Referrer solution title for telemetry tracking (used when card is in 'you-may-also-like')","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"referrer-solution-title"},{"kind":"field","name":"referrerSolutionVersion","description":"Referrer solution version for telemetry tracking (used when card is in 'you-may-also-like')","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"referrer-solution-version"},{"kind":"field","name":"source","description":"Source context for telemetry tracking (e.g., 'all-solutions', 'you-may-also-like')","type":{"text":"string","values":[{"type":"string"}]},"default":"'all-solutions'","attribute":"source"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionDetailsCard = document.querySelector(\"solution-details-card\");\ndocument.body.append(solutionDetailsCard);\nawait solutionDetailsCard.componentOnReady();\nconsole.log(\"solution-details-card is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"referrer-solution-id","description":"Referrer solution ID for telemetry tracking (used when card is in 'you-may-also-like')","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"referrerSolutionId"},{"name":"referrer-solution-title","description":"Referrer solution title for telemetry tracking (used when card is in 'you-may-also-like')","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"referrerSolutionTitle"},{"name":"referrer-solution-version","description":"Referrer solution version for telemetry tracking (used when card is in 'you-may-also-like')","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"referrerSolutionVersion"},{"name":"source","description":"Source context for telemetry tracking (e.g., 'all-solutions', 'you-may-also-like')","type":{"text":"string","values":[{"type":"string"}]},"default":"'all-solutions'","fieldName":"source"}],"events":[{"name":"detailsCardSelected","description":"Emitted on demand when the details card is selected.","type":{"text":"ISolutionInfoCard","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}}],"importPath":"components/solution-details-card"}],"exports":[{"kind":"custom-element-definition","name":"solution-details-card","declaration":{"name":"SolutionDetailsCard"}}]},{"kind":"javascript-module","path":"components/solution-details-panel","sourcePath":"src/components/solution-details-panel/solution-details-panel.tsx","declarations":[{"kind":"class","name":"SolutionDetailsPanel","customElement":true,"tagName":"solution-details-panel","pascalCaseName":"SolutionDetailsPanel","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"card","description":"Key details about the solution","type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionDetailsPanel = document.querySelector(\"solution-details-panel\");\ndocument.body.append(solutionDetailsPanel);\nawait solutionDetailsPanel.componentOnReady();\nconsole.log(\"solution-details-panel is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"events":[{"name":"itemPropertiesFetched","description":"Emitted on demand when the item properties have been fetched","type":{"text":"IItemProperties","references":[{"name":"IItemProperties","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IItemProperties","start":0,"end":15}]}},{"name":"sortTypeChanged","description":"Emitted on demand when the sort type changes","type":{"text":"string"}},{"name":"templatesFetched","description":"Emitted on demand when the templates have been fetched from the solution","type":{"text":"IItemTemplate[]","references":[{"name":"IItemTemplate","package":"@esri/solution-common","start":0,"end":13}]}},{"name":"tokenRefreshed","description":"Emitted on demand when the auth token is updated","type":{"text":"string"}}],"importPath":"components/solution-details-panel"}],"exports":[{"kind":"custom-element-definition","name":"solution-details-panel","declaration":{"name":"SolutionDetailsPanel"}}]},{"kind":"javascript-module","path":"components/solution-item-accordion","sourcePath":"src/components/solution-item-accordion/solution-item-accordion.tsx","declarations":[{"kind":"class","name":"SolutionItemAccordion","customElement":true,"tagName":"solution-item-accordion","pascalCaseName":"SolutionItemAccordion","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"itemRelationshipDependencies","description":"string[]: List of items that have relationship dependencies outside of this solution","type":{"text":"string[]"}},{"kind":"field","name":"linkType","description":"'action' | 'item': Specifies the type of link that will be used for deployed items.\n 'item' the items title will be underlined and clicking anywhere on the list item will open the items details page\n 'action' a action will be added to the end of the list item that will open the items details page","type":{"text":"\"action\" | \"item\"","values":[{"type":"string","value":"action"},{"type":"string","value":"item"}]},"default":"'item'","attribute":"link-type"},{"kind":"field","name":"listSelectionMode","description":"Specifies the selection mode of the item-type lists used in the component, where:\n 'multiple' allows any number of selections,\n 'single' allows only one selection,\n 'single-persist' allows one selection and prevents de-selection, and\n 'none' does not allow any selections (default)","type":{"text":"\"multiple\" | \"single\" | \"single-persist\" | \"none\"","values":[{"type":"string","value":"multiple"},{"type":"string","value":"single"},{"type":"string","value":"single-persist"},{"type":"string","value":"none"}]},"default":"'none'","attribute":"list-selection-mode"},{"kind":"field","name":"reuseWarning","description":"string: The warning message to display when we have itemRelationshipDependencies","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"reuse-warning"},{"kind":"field","name":"templateInfos","description":"ITemplateInfo[]: Collection of template infos","type":{"text":"ITemplateInfo[]","references":[{"name":"ITemplateInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ITemplateInfo","start":0,"end":13}]}},{"kind":"field","name":"typeKeywords","description":"string[]: Collection of the solutions typeKeywords","type":{"text":"string[]"}},{"kind":"method","name":"collapseAll","description":"Collapses all items in the accordion.","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionItemAccordion = document.querySelector(\"solution-item-accordion\");\ndocument.body.append(solutionItemAccordion);\nawait solutionItemAccordion.componentOnReady();\nconsole.log(\"solution-item-accordion is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"deselectAll","description":"Deselects all items in the accordion and closes the accordion item containing it.\nOnly applies when selectionMode is 'single' or 'single-persist'.","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"expandFirstItem","description":"Expands the first accordion item","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"expandItemById","description":"Expands the accordion item containing for the provided id\nOnly applies when selectionMode is 'single' or 'single-persist'.","parameters":[{"name":"id","description":"the id of the item to select","type":{"text":"string"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(id: string): Promise<void>"},{"kind":"method","name":"expandItems","description":"Expands items in the accordion.\nOnly applies when selectionMode is 'multiple'.","parameters":[{"name":"ids","description":"the id of the item to select","type":{"text":"string[]"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(ids: string[]): Promise<void>"},{"kind":"method","name":"selectFirstItem","description":"Selects the first item in the accordion and expands the accordion item containing it.","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"selectItem","description":"Selects an item in the accordion and expands the accordion item containing it.\nOnly applies when selectionMode is 'single' or 'single-persist'.","parameters":[{"name":"id","description":"the id of the item to select","type":{"text":"string"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(id: string): Promise<void>"},{"kind":"method","name":"selectItems","description":"Selects items in the accordion and expands the accordion item containing it.\nOnly applies when selectionMode is 'multiple'.","parameters":[{"name":"ids","description":"the id of the item to select","type":{"text":"string[]"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(ids: string[]): Promise<void>"}],"attributes":[{"name":"link-type","description":"'action' | 'item': Specifies the type of link that will be used for deployed items.\n 'item' the items title will be underlined and clicking anywhere on the list item will open the items details page\n 'action' a action will be added to the end of the list item that will open the items details page","type":{"text":"\"action\" | \"item\"","values":[{"type":"string","value":"action"},{"type":"string","value":"item"}]},"default":"'item'","fieldName":"linkType"},{"name":"list-selection-mode","description":"Specifies the selection mode of the item-type lists used in the component, where:\n 'multiple' allows any number of selections,\n 'single' allows only one selection,\n 'single-persist' allows one selection and prevents de-selection, and\n 'none' does not allow any selections (default)","type":{"text":"\"multiple\" | \"single\" | \"single-persist\" | \"none\"","values":[{"type":"string","value":"multiple"},{"type":"string","value":"single"},{"type":"string","value":"single-persist"},{"type":"string","value":"none"}]},"default":"'none'","fieldName":"listSelectionMode"},{"name":"reuse-warning","description":"string: The warning message to display when we have itemRelationshipDependencies","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"reuseWarning"}],"events":[{"name":"solutionItemHover","type":{"text":"ISolutionItemHover","references":[{"name":"ISolutionItemHover","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionItemHover","start":0,"end":18}]}},{"name":"solutionItemSelect","type":{"text":"ISolutionItemSelected","references":[{"name":"ISolutionItemSelected","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionItemSelected","start":0,"end":21}]}},{"name":"solutionTypeHover","type":{"text":"ISolutionTypeHover","references":[{"name":"ISolutionTypeHover","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionTypeHover","start":0,"end":18}]}}],"importPath":"components/solution-item-accordion"}],"exports":[{"kind":"custom-element-definition","name":"solution-item-accordion","declaration":{"name":"SolutionItemAccordion"}}]},{"kind":"javascript-module","path":"components/solution-item-diagram","sourcePath":"src/components/solution-item-diagram/solution-item-diagram.tsx","declarations":[{"kind":"class","name":"SolutionItemDiagram","customElement":true,"tagName":"solution-item-diagram","pascalCaseName":"SolutionItemDiagram","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"diagramKey","description":"Digram license key to use view the diagram","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"diagram-key"},{"kind":"field","name":"templateInfoGraph","description":"Array of solution items to generate the diagram","type":{"text":"ITemplateInfoGraph[]","references":[{"name":"ITemplateInfoGraph","module":"components/solution-item-diagram/utils/solutionGraph","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/solution-item-diagram/utils/solutionGraph/#ITemplateInfoGraph","start":0,"end":18}]}},{"kind":"field","name":"typeKeywords","description":"Array of the solution items type keywords","type":{"text":"string[]"}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionItemDiagram = document.querySelector(\"solution-item-diagram\");\ndocument.body.append(solutionItemDiagram);\nawait solutionItemDiagram.componentOnReady();\nconsole.log(\"solution-item-diagram is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"diagram-key","description":"Digram license key to use view the diagram","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"diagramKey"}],"importPath":"components/solution-item-diagram"}],"exports":[{"kind":"custom-element-definition","name":"solution-item-diagram","declaration":{"name":"SolutionItemDiagram"}}]},{"kind":"javascript-module","path":"components/solution-item-diagram/utils/solutionGraph","sourcePath":"src/components/solution-item-diagram/utils/solutionGraph.ts","declarations":[{"kind":"interface","name":"ITemplateInfoGraph","members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"title","type":{"text":"string"}},{"kind":"field","name":"type","type":{"text":"string"}},{"kind":"field","name":"typeKeywords","type":{"text":"string[]"}},{"kind":"field","name":"snippet","type":{"text":"string"}},{"kind":"field","name":"dependencies","type":{"text":"string[]"}},{"kind":"field","name":"url","type":{"text":"string | undefined"}}]}]},{"kind":"javascript-module","path":"components/solution-item-icon","sourcePath":"src/components/solution-item-icon/solution-item-icon.tsx","declarations":[{"kind":"class","name":"SolutionItemIcon","customElement":true,"tagName":"solution-item-icon","pascalCaseName":"SolutionItemIcon","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"isPortal","description":"Indicate if this is portal","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-portal"},{"kind":"field","name":"type","description":"The type for the item","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"type"},{"kind":"field","name":"typeKeywords","description":"The typeKeywords for the item","type":{"text":"string[]"}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionItemIcon = document.querySelector(\"solution-item-icon\");\ndocument.body.append(solutionItemIcon);\nawait solutionItemIcon.componentOnReady();\nconsole.log(\"solution-item-icon is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"is-portal","description":"Indicate if this is portal","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isPortal"},{"name":"type","description":"The type for the item","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"type"}],"importPath":"components/solution-item-icon"}],"exports":[{"kind":"custom-element-definition","name":"solution-item-icon","declaration":{"name":"SolutionItemIcon"}}]},{"kind":"javascript-module","path":"components/solution-resource-card","sourcePath":"src/components/solution-resource-card/solution-resource-card.tsx","declarations":[{"kind":"class","name":"SolutionResourceCard","customElement":true,"tagName":"solution-resource-card","pascalCaseName":"SolutionResourceCard","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"description","description":"The description of the resource","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"description"},{"kind":"field","name":"heading","description":"The heading of the resource","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"heading"},{"kind":"field","name":"headingEn","description":"The English heading for telemetry","type":{"text":"string | undefined","values":[{"type":"string"}]},"attribute":"heading-en"},{"kind":"field","name":"icon","description":"The Calcite icon name","type":{"text":"string | undefined","values":[{"type":"string"}]},"attribute":"icon"},{"kind":"field","name":"meridianIcon","description":"The Meridian icon name","type":{"text":"string | undefined","values":[{"type":"string"}]},"attribute":"meridian-icon"},{"kind":"field","name":"sectionHeadingEn","description":"The English section heading for telemetry","type":{"text":"string | undefined","values":[{"type":"string"}]},"attribute":"section-heading-en"},{"kind":"field","name":"url","description":"The URL to open when card is clicked","type":{"text":"string | undefined","values":[{"type":"string"}]},"attribute":"url"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionResourceCard = document.querySelector(\"solution-resource-card\");\ndocument.body.append(solutionResourceCard);\nawait solutionResourceCard.componentOnReady();\nconsole.log(\"solution-resource-card is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"description","description":"The description of the resource","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"description"},{"name":"heading","description":"The heading of the resource","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"heading"},{"name":"heading-en","description":"The English heading for telemetry","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"headingEn"},{"name":"icon","description":"The Calcite icon name","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"icon"},{"name":"meridian-icon","description":"The Meridian icon name","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"meridianIcon"},{"name":"section-heading-en","description":"The English section heading for telemetry","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"sectionHeadingEn"},{"name":"url","description":"The URL to open when card is clicked","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"url"}],"importPath":"components/solution-resource-card"}],"exports":[{"kind":"custom-element-definition","name":"solution-resource-card","declaration":{"name":"SolutionResourceCard"}}]},{"kind":"javascript-module","path":"components/solution-snapshot-gallery","sourcePath":"src/components/solution-snapshot-gallery/solution-snapshot-gallery.tsx","declarations":[{"kind":"class","name":"SolutionSnapshotGallery","customElement":true,"tagName":"solution-snapshot-gallery","pascalCaseName":"SolutionSnapshotGallery","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"card","description":"Key details about the solution","type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"itemProperties","description":"Key item properties","type":{"text":"IItemProperties | undefined","references":[{"name":"IItemProperties","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IItemProperties","start":0,"end":15}]}},{"kind":"field","name":"open","description":"boolean: when true the dialog is open","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"open"},{"kind":"field","name":"screenshot","description":"The current screenshot to display the large image for","type":{"text":"IItemPreview | undefined","references":[{"name":"IItemPreview","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IItemPreview","start":0,"end":12}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionSnapshotGallery = document.querySelector(\"solution-snapshot-gallery\");\ndocument.body.append(solutionSnapshotGallery);\nawait solutionSnapshotGallery.componentOnReady();\nconsole.log(\"solution-snapshot-gallery is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"open","description":"boolean: when true the dialog is open","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"open"}],"importPath":"components/solution-snapshot-gallery"}],"exports":[{"kind":"custom-element-definition","name":"solution-snapshot-gallery","declaration":{"name":"SolutionSnapshotGallery"}}]},{"kind":"javascript-module","path":"components/solution-social-share","sourcePath":"src/components/solution-social-share/solution-social-share.tsx","declarations":[{"kind":"class","name":"SolutionSocialShare","customElement":true,"tagName":"solution-social-share","pascalCaseName":"SolutionSocialShare","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"actionApperance","description":"Control the apperance of the action","type":{"text":"\"solid\" | \"transparent\" | undefined","values":[{"type":"string","value":"solid"},{"type":"string","value":"transparent"}]},"default":"'transparent'","attribute":"action-apperance"},{"kind":"field","name":"autoUpdateShareUrl","description":"Auto update share URL.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"auto-update-share-url"},{"kind":"field","name":"buttonAppearance","description":"Control the apperance of the button","type":{"text":"\"outline\" | \"outline-fill\" | \"solid\" | \"transparent\" | undefined","values":[{"type":"string","value":"outline"},{"type":"string","value":"outline-fill"},{"type":"string","value":"solid"},{"type":"string","value":"transparent"}]},"default":"'transparent'","attribute":"button-appearance"},{"kind":"field","name":"inlineSuccessPopoverPlacement","description":"Configures the placement of the success message popover for the 'Copy Link' button.\nSee options here: https://github.com/Esri/calcite-components/blob/v1.0.0-beta.83/src/utils/popper.ts#L34","type":{"text":"any","values":[{"type":"any"}]},"default":"'trailing'","attribute":"inline-success-popover-placement","reflects":true},{"kind":"field","name":"mode","description":"Renders tool as a popover with a trigger button, or inline to place in a custom container.","type":{"text":"\"inline\" | \"popover\"","values":[{"type":"string","value":"inline"},{"type":"string","value":"popover"}]},"default":"'popover'","attribute":"mode","reflects":true},{"kind":"field","name":"popoverButtonIconScale","description":"Adjusts the scale of the popover button icon.","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","attribute":"popover-button-icon-scale","reflects":true},{"kind":"field","name":"popoverPositioning","description":"Adjusts the overlay-positioning of the popover.","type":{"text":"\"absolute\" | \"fixed\"","values":[{"type":"string","value":"absolute"},{"type":"string","value":"fixed"}]},"default":"'absolute'","attribute":"popover-positioning","reflects":true},{"kind":"field","name":"removePopoverOffset","description":"Remove the pointer and set the vertical offset to 0 for the popover.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"remove-popover-offset","reflects":true},{"kind":"field","name":"scale","description":"Adjusts the scale of the component.","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'s'","attribute":"scale","reflects":true},{"kind":"field","name":"shareButtonKind","description":"Renders share button with 'inverse' | 'neutral' | 'brand option","type":{"text":"\"inverse\" | \"neutral\" | \"brand\"","values":[{"type":"string","value":"inverse"},{"type":"string","value":"neutral"},{"type":"string","value":"brand"}]},"default":"'neutral'","attribute":"share-button-kind","reflects":true},{"kind":"field","name":"shareButtonScale","description":"Adjust scale of popover button","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","attribute":"share-button-scale","reflects":true},{"kind":"field","name":"shareButtonText","description":"Text to display in share button, not valid when shareButtonType = 'action'","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"share-button-text"},{"kind":"field","name":"shareButtonType","description":"Renders tool in popover mode with a trigger button or action","type":{"text":"\"action\" | \"button\"","values":[{"type":"string","value":"action"},{"type":"string","value":"button"}]},"default":"'button'","attribute":"share-button-type","reflects":true},{"kind":"field","name":"shareIconsLayout","description":"Display the share icons in a vertical or horizontal layout.","type":{"text":"\"horizontal\" | \"vertical\"","values":[{"type":"string","value":"horizontal"},{"type":"string","value":"vertical"}]},"default":"'vertical'","attribute":"share-icons-layout","reflects":true},{"kind":"field","name":"shareText","description":"Additional text to display when sharing to a social option","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"share-text","reflects":true},{"kind":"field","name":"shareUrl","description":"Generated share URL. Use this property to append custom URL parameters if needed.","type":{"text":"string","values":[{"type":"string"}]},"attribute":"share-url"},{"kind":"field","name":"shortenShareUrl","description":"Shortens generated URL.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"shorten-share-url","reflects":true},{"kind":"field","name":"socialMedia","description":"Show/hide social media icons.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"social-media","reflects":true},{"kind":"field","name":"solutionId","description":"Solution ID for telemetry tracking","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"solution-id"},{"kind":"field","name":"solutionTitle","description":"Solution title for telemetry tracking","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"solution-title"},{"kind":"field","name":"solutionVersion","description":"Solution version for telemetry tracking","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"solution-version"},{"kind":"field","name":"successMessage","description":"Provides an alternate to the success.url message 'App URL copied to clipboard.'","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"success-message","reflects":true},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionSocialShare = document.querySelector(\"solution-social-share\");\ndocument.body.append(solutionSocialShare);\nawait solutionSocialShare.componentOnReady();\nconsole.log(\"solution-social-share is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"action-apperance","description":"Control the apperance of the action","type":{"text":"\"solid\" | \"transparent\"","values":[{"type":"string","value":"solid"},{"type":"string","value":"transparent"}]},"default":"'transparent'","fieldName":"actionApperance"},{"name":"auto-update-share-url","description":"Auto update share URL.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"autoUpdateShareUrl"},{"name":"button-appearance","description":"Control the apperance of the button","type":{"text":"\"outline\" | \"outline-fill\" | \"solid\" | \"transparent\"","values":[{"type":"string","value":"outline"},{"type":"string","value":"outline-fill"},{"type":"string","value":"solid"},{"type":"string","value":"transparent"}]},"default":"'transparent'","fieldName":"buttonAppearance"},{"name":"inline-success-popover-placement","description":"Configures the placement of the success message popover for the 'Copy Link' button.\nSee options here: https://github.com/Esri/calcite-components/blob/v1.0.0-beta.83/src/utils/popper.ts#L34","type":{"text":"any","values":[{"type":"any"}]},"default":"'trailing'","fieldName":"inlineSuccessPopoverPlacement"},{"name":"mode","description":"Renders tool as a popover with a trigger button, or inline to place in a custom container.","type":{"text":"\"inline\" | \"popover\"","values":[{"type":"string","value":"inline"},{"type":"string","value":"popover"}]},"default":"'popover'","fieldName":"mode"},{"name":"popover-button-icon-scale","description":"Adjusts the scale of the popover button icon.","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","fieldName":"popoverButtonIconScale"},{"name":"popover-positioning","description":"Adjusts the overlay-positioning of the popover.","type":{"text":"\"absolute\" | \"fixed\"","values":[{"type":"string","value":"absolute"},{"type":"string","value":"fixed"}]},"default":"'absolute'","fieldName":"popoverPositioning"},{"name":"remove-popover-offset","description":"Remove the pointer and set the vertical offset to 0 for the popover.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"removePopoverOffset"},{"name":"scale","description":"Adjusts the scale of the component.","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'s'","fieldName":"scale"},{"name":"share-button-kind","description":"Renders share button with 'inverse' | 'neutral' | 'brand option","type":{"text":"\"inverse\" | \"neutral\" | \"brand\"","values":[{"type":"string","value":"inverse"},{"type":"string","value":"neutral"},{"type":"string","value":"brand"}]},"default":"'neutral'","fieldName":"shareButtonKind"},{"name":"share-button-scale","description":"Adjust scale of popover button","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","fieldName":"shareButtonScale"},{"name":"share-button-text","description":"Text to display in share button, not valid when shareButtonType = 'action'","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"shareButtonText"},{"name":"share-button-type","description":"Renders tool in popover mode with a trigger button or action","type":{"text":"\"action\" | \"button\"","values":[{"type":"string","value":"action"},{"type":"string","value":"button"}]},"default":"'button'","fieldName":"shareButtonType"},{"name":"share-icons-layout","description":"Display the share icons in a vertical or horizontal layout.","type":{"text":"\"horizontal\" | \"vertical\"","values":[{"type":"string","value":"horizontal"},{"type":"string","value":"vertical"}]},"default":"'vertical'","fieldName":"shareIconsLayout"},{"name":"share-text","description":"Additional text to display when sharing to a social option","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"shareText"},{"name":"share-url","description":"Generated share URL. Use this property to append custom URL parameters if needed.","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"shareUrl"},{"name":"shorten-share-url","description":"Shortens generated URL.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"shortenShareUrl"},{"name":"social-media","description":"Show/hide social media icons.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"socialMedia"},{"name":"solution-id","description":"Solution ID for telemetry tracking","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"solutionId"},{"name":"solution-title","description":"Solution title for telemetry tracking","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"solutionTitle"},{"name":"solution-version","description":"Solution version for telemetry tracking","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"solutionVersion"},{"name":"success-message","description":"Provides an alternate to the success.url message 'App URL copied to clipboard.'","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"successMessage"}],"cssProperties":[{"name":"--solutions-social-share-action-width","description":"Width of action button"},{"name":"--solutions-social-share-width--s","description":"Width of component when scale is set to `s`"},{"name":"--solutions-social-share-width--m","description":"Width of component when scale is set to `m`"},{"name":"--solutions-social-share-width--l","description":"Width of component when scale is set to `l`"},{"name":"--solutions-social-share-width-horizontal--s","description":"Width of component when `share-icons-layout` is set to `horizontal` and scale is set to 's'"},{"name":"--solutions-social-share-width-horizontal--m","description":"Width of component when `share-icons-layout` is set to `horizontal` and scale is set to 'm'"},{"name":"--solutions-social-share-width-horizontal--l","description":"Width of component when `share-icons-layout` is set to `horizontal` and scale is set to 'l'"}],"importPath":"components/solution-social-share"}],"exports":[{"kind":"custom-element-definition","name":"solution-social-share","declaration":{"name":"SolutionSocialShare"}}]},{"kind":"javascript-module","path":"components/solution-user-avatar","sourcePath":"src/components/solution-user-avatar/solution-user-avatar.tsx","declarations":[{"kind":"class","name":"SolutionUserAvatar","customElement":true,"tagName":"solution-user-avatar","pascalCaseName":"SolutionUserAvatar","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"fullname","description":"The first and last name of the owner","type":{"text":"string | null | undefined","values":[{"type":"string"}]},"attribute":"fullname"},{"kind":"field","name":"lookupProfile","description":"Flag to determine if owner information needs to be queried","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"lookup-profile"},{"kind":"field","name":"thumbnailUrl","description":"The url to the thumbnail image","type":{"text":"string | null | undefined","values":[{"type":"string"}]},"attribute":"thumbnail-url"},{"kind":"field","name":"username","description":"The owner user name to display","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"username"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionUserAvatar = document.querySelector(\"solution-user-avatar\");\ndocument.body.append(solutionUserAvatar);\nawait solutionUserAvatar.componentOnReady();\nconsole.log(\"solution-user-avatar is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"fullname","description":"The first and last name of the owner","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"fullname"},{"name":"lookup-profile","description":"Flag to determine if owner information needs to be queried","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"lookupProfile"},{"name":"thumbnail-url","description":"The url to the thumbnail image","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"thumbnailUrl"},{"name":"username","description":"The owner user name to display","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"username"}],"importPath":"components/solution-user-avatar"}],"exports":[{"kind":"custom-element-definition","name":"solution-user-avatar","declaration":{"name":"SolutionUserAvatar"}}]},{"kind":"javascript-module","path":"components/solutions-all-panel","sourcePath":"src/components/solutions-all-panel/solutions-all-panel.tsx","declarations":[{"kind":"class","name":"SolutionsAllPanel","customElement":true,"tagName":"solutions-all-panel","pascalCaseName":"SolutionsAllPanel","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"sortType","description":"Define how the cards will be sorted","type":{"text":"SortType","references":[{"name":"SortType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#SortType","start":0,"end":8}],"values":[{"type":"string","value":"title"},{"type":"string","value":"updated"},{"type":"string","value":"new"},{"type":"string","value":"relevance"},{"type":"string","value":"created"},{"type":"string","value":"suggested"}]},"default":"'relevance'","attribute":"sort-type"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsAllPanel = document.querySelector(\"solutions-all-panel\");\ndocument.body.append(solutionsAllPanel);\nawait solutionsAllPanel.componentOnReady();\nconsole.log(\"solutions-all-panel is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"searchSolutions","description":"Search solutions based on key criteria","parameters":[{"name":"searchOptions","description":"the key criteria to search with","optional":true,"type":{"text":"IFilterOption[] | ISearchOption | ISortOption","references":[{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13},{"name":"ISearchOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchOption","start":18,"end":31},{"name":"ISortOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortOption","start":34,"end":45}]}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(searchOptions?: IFilterOption[] | ISearchOption | ISortOption): Promise<void>"},{"kind":"method","name":"setSearchOptions","description":"Set key properties for solution search\nThis is used for handeling multiple options from url params","parameters":[{"name":"searchOptions","description":"the key criteria that will be used when searched","optional":true,"type":{"text":"IFilterOption | ISearchOption | ISortOption","references":[{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13},{"name":"ISearchOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchOption","start":16,"end":29},{"name":"ISortOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortOption","start":32,"end":43}]}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(searchOptions?: IFilterOption | ISearchOption | ISortOption): Promise<void>"}],"attributes":[{"name":"sort-type","description":"Define how the cards will be sorted","type":{"text":"\"title\" | \"updated\" | \"new\" | \"relevance\" | \"created\" | \"suggested\"","values":[{"type":"string","value":"title"},{"type":"string","value":"updated"},{"type":"string","value":"new"},{"type":"string","value":"relevance"},{"type":"string","value":"created"},{"type":"string","value":"suggested"}]},"default":"'relevance'","fieldName":"sortType"}],"events":[{"name":"allCardsFetched","description":"Emitted on demand when all of the cards are first fetched","type":{"text":"ISolutionInfoCard[]","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"name":"cardsFetched","description":"Emitted on demand when cards are fetched","type":{"text":"number"}},{"name":"detailsCardSelected","description":"Emitted on demand when the details card is selected.","type":{"text":"ISolutionInfoCard","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"name":"searchTermSet","description":"Emitted on demand when the serachTerm is set from url param","type":{"text":"ISearchTerm","references":[{"name":"ISearchTerm","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchTerm","start":0,"end":11}]}},{"name":"sortTypeSet","description":"Emitted on demand when the sortType is set from url param","type":{"text":"ISortType","references":[{"name":"ISortType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortType","start":0,"end":9}]}}],"importPath":"components/solutions-all-panel"}],"exports":[{"kind":"custom-element-definition","name":"solutions-all-panel","declaration":{"name":"SolutionsAllPanel"}}]},{"kind":"javascript-module","path":"components/solutions-all-shell","sourcePath":"src/components/solutions-all-shell/solutions-all-shell.tsx","declarations":[{"kind":"class","name":"SolutionsAllShell","customElement":true,"tagName":"solutions-all-shell","pascalCaseName":"SolutionsAllShell","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"solutionsCount","description":"The number of solution cards currently displayed","type":{"text":"number","values":[{"type":"number"}]},"default":"0","attribute":"solutions-count"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsAllShell = document.querySelector(\"solutions-all-shell\");\ndocument.body.append(solutionsAllShell);\nawait solutionsAllShell.componentOnReady();\nconsole.log(\"solutions-all-shell is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"searchSolutions","description":"Search solutions based on key criteria","parameters":[{"name":"searchOptions","description":"the key criteria to search with","type":{"text":"IFilterOption | ISearchOption | ISortOption","references":[{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13},{"name":"ISearchOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchOption","start":16,"end":29},{"name":"ISortOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortOption","start":32,"end":43}]}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(searchOptions: IFilterOption | ISearchOption | ISortOption): Promise<void>"}],"attributes":[{"name":"solutions-count","description":"The number of solution cards currently displayed","type":{"text":"number","values":[{"type":"number"}]},"default":"0","fieldName":"solutionsCount"}],"events":[{"name":"filterRemoved","description":"Emitted on demand when a filter chip is closed","type":{"text":"IFilterOption[]","references":[{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13}]}}],"importPath":"components/solutions-all-shell"}],"exports":[{"kind":"custom-element-definition","name":"solutions-all-shell","declaration":{"name":"SolutionsAllShell"}}]},{"kind":"javascript-module","path":"components/solutions-deploy-app","sourcePath":"src/components/solutions-deploy-app/solutions-deploy-app.tsx","declarations":[{"kind":"class","name":"SolutionsDeployApp","customElement":true,"tagName":"solutions-deploy-app","pascalCaseName":"SolutionsDeployApp","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"appConfig","description":"App config to use when useLocalAppConfig is false","type":{"text":"any","values":[{"type":"any"}]},"attribute":"app-config"},{"kind":"field","name":"initTab","description":"When defined this is the tab that should be loaded by default","type":{"text":"DeployAppTab | undefined","references":[{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}],"values":[{"type":"string","value":"details"},{"type":"string","value":"all-solutions"},{"type":"string","value":"deployments"},{"type":"string","value":"resources"},{"type":"string","value":"deployed-card"},{"type":"string","value":"my-content"}]},"attribute":"init-tab"},{"kind":"field","name":"initTitleOrId","description":"When defined this will contain the solution name or id that should be loaded by default","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"init-title-or-id"},{"kind":"field","name":"sortType","description":"Define how the cards will be sorted","type":{"text":"SortType","references":[{"name":"SortType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#SortType","start":0,"end":8}],"values":[{"type":"string","value":"title"},{"type":"string","value":"updated"},{"type":"string","value":"new"},{"type":"string","value":"relevance"},{"type":"string","value":"created"},{"type":"string","value":"suggested"}]},"default":"'relevance'","attribute":"sort-type"},{"kind":"field","name":"useLocalAppConfig","description":"When true the local appConfig will be used over anything that was passed in.\nThis is used for local debugging.\nWhen this is false authentication, locale, orgUrl, and portalUrl MUST be defined.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"use-local-app-config"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsDeployApp = document.querySelector(\"solutions-deploy-app\");\ndocument.body.append(solutionsDeployApp);\nawait solutionsDeployApp.componentOnReady();\nconsole.log(\"solutions-deploy-app is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"selectTab","description":"Closes the dialog","parameters":[{"name":"tab","type":{"text":"IActiveTab","references":[{"name":"IActiveTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IActiveTab","start":0,"end":10}]}},{"name":"filters","type":{"text":"any"}}],"return":{"type":{"text":"Promise<boolean>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(tab: IActiveTab, filters: any): Promise<boolean>"}],"attributes":[{"name":"app-config","description":"App config to use when useLocalAppConfig is false","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"appConfig"},{"name":"init-tab","description":"When defined this is the tab that should be loaded by default","type":{"text":"\"details\" | \"all-solutions\" | \"deployments\" | \"resources\" | \"deployed-card\" | \"my-content\"","values":[{"type":"string","value":"details"},{"type":"string","value":"all-solutions"},{"type":"string","value":"deployments"},{"type":"string","value":"resources"},{"type":"string","value":"deployed-card"},{"type":"string","value":"my-content"}]},"fieldName":"initTab"},{"name":"init-title-or-id","description":"When defined this will contain the solution name or id that should be loaded by default","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"initTitleOrId"},{"name":"sort-type","description":"Define how the cards will be sorted","type":{"text":"\"title\" | \"updated\" | \"new\" | \"relevance\" | \"created\" | \"suggested\"","values":[{"type":"string","value":"title"},{"type":"string","value":"updated"},{"type":"string","value":"new"},{"type":"string","value":"relevance"},{"type":"string","value":"created"},{"type":"string","value":"suggested"}]},"default":"'relevance'","fieldName":"sortType"},{"name":"use-local-app-config","description":"When true the local appConfig will be used over anything that was passed in.\nThis is used for local debugging.\nWhen this is false authentication, locale, orgUrl, and portalUrl MUST be defined.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"useLocalAppConfig"}],"events":[{"name":"deployAppTabSelected","description":"Tab selected event","type":{"text":"DeployAppTab","references":[{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}]}},{"name":"deployedCardFetchFailed","description":"Deployed card fetch failed event","type":{"text":"IDeployCardFetchFailed","references":[{"name":"IDeployCardFetchFailed","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IDeployCardFetchFailed","start":0,"end":22}]}},{"name":"deployedCardSelected","description":"Emitted on demand when the details card is selected.","type":{"text":"IDeployCard","references":[{"name":"IDeployCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IDeployCard","start":0,"end":11}]}},{"name":"detailsCardSelected","description":"Details card selected event","type":{"text":"ISolutionInfoCard","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"name":"metaTagStringsReady","description":"Emitted when meta tag strings are ready with translations","type":{"text":"{\n pageType: DeployAppTab;\n title: string;\n description: string;\n detailTemplate?: ISolutionInfoCard;\n}","references":[{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":16,"end":28},{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":95,"end":112}]}},{"name":"sessionRefreshed","type":{"text":"string"}},{"name":"tabChanged","type":{"text":"DeployAppTab","references":[{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}]}}],"importPath":"components/solutions-deploy-app"}],"exports":[{"kind":"custom-element-definition","name":"solutions-deploy-app","declaration":{"name":"SolutionsDeployApp"}}]},{"kind":"javascript-module","path":"components/solutions-deploy-app-nav","sourcePath":"src/components/solutions-deploy-app-nav/solutions-deploy-app-nav.tsx","declarations":[{"kind":"class","name":"SolutionsDeployAppNav","customElement":true,"tagName":"solutions-deploy-app-nav","pascalCaseName":"SolutionsDeployAppNav","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"appConfig","description":"App config","type":{"text":"any","values":[{"type":"any"}]},"attribute":"app-config"},{"kind":"field","name":"initTab","description":"When defined this is the tab that should be loaded by default","type":{"text":"DeployAppTab | undefined","references":[{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}],"values":[{"type":"string","value":"details"},{"type":"string","value":"all-solutions"},{"type":"string","value":"deployments"},{"type":"string","value":"resources"},{"type":"string","value":"deployed-card"},{"type":"string","value":"my-content"}]},"attribute":"init-tab"},{"kind":"method","name":"activateMenuItem","description":"Use to set the active state for all nav menu items","parameters":[{"name":"tab","type":{"text":"DeployAppTab","references":[{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}]}},{"name":"emit","type":{"text":"boolean"},"default":"false"}],"return":{"type":{"text":"void"}},"signature":"(tab: DeployAppTab, emit?: boolean): void"},{"kind":"method","name":"clearMenuItems","description":"Use to clear the active state from all nav menu items","return":{"type":{"text":"void"}},"signature":"(): void"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsDeployAppNav = document.querySelector(\"solutions-deploy-app-nav\");\ndocument.body.append(solutionsDeployAppNav);\nawait solutionsDeployAppNav.componentOnReady();\nconsole.log(\"solutions-deploy-app-nav is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"app-config","description":"App config","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"appConfig"},{"name":"init-tab","description":"When defined this is the tab that should be loaded by default","type":{"text":"\"details\" | \"all-solutions\" | \"deployments\" | \"resources\" | \"deployed-card\" | \"my-content\"","values":[{"type":"string","value":"details"},{"type":"string","value":"all-solutions"},{"type":"string","value":"deployments"},{"type":"string","value":"resources"},{"type":"string","value":"deployed-card"},{"type":"string","value":"my-content"}]},"fieldName":"initTab"}],"events":[{"name":"authInit","description":"Emitted on demand when the auth is initialized","type":{"text":"IAppConfig","references":[{"name":"IAppConfig","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IAppConfig","start":0,"end":10}]}},{"name":"navTabSelected","description":"Tab selected event","type":{"text":"INavTab","references":[{"name":"INavTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#INavTab","start":0,"end":7}]}},{"name":"tabChanged","description":"Emitted on load when we load the first tab","type":{"text":"DeployAppTab","references":[{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}]}},{"name":"tokenRefreshed","description":"Emitted on demand when the auth token is updated","type":{"text":"string"}}],"importPath":"components/solutions-deploy-app-nav"}],"exports":[{"kind":"custom-element-definition","name":"solutions-deploy-app-nav","declaration":{"name":"SolutionsDeployAppNav"}}]},{"kind":"javascript-module","path":"components/solutions-deployed-panel","sourcePath":"src/components/solutions-deployed-panel/solutions-deployed-panel.tsx","declarations":[{"kind":"class","name":"SolutionsDeployedPanel","customElement":true,"tagName":"solutions-deployed-panel","pascalCaseName":"SolutionsDeployedPanel","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"sortType","description":"Define how the cards will be sorted\nvalid options for deplyed cards are: created (ie date deployed), relevance, title","type":{"text":"SortType","references":[{"name":"SortType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#SortType","start":0,"end":8}],"values":[{"type":"string","value":"title"},{"type":"string","value":"updated"},{"type":"string","value":"new"},{"type":"string","value":"relevance"},{"type":"string","value":"created"},{"type":"string","value":"suggested"}]},"default":"'created'","attribute":"sort-type"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsDeployedPanel = document.querySelector(\"solutions-deployed-panel\");\ndocument.body.append(solutionsDeployedPanel);\nawait solutionsDeployedPanel.componentOnReady();\nconsole.log(\"solutions-deployed-panel is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"reload","description":"function to refresh the panel after a deletion or solution title/snippet change","parameters":[{"name":"showDeleteMessage","type":{"text":"boolean"},"default":"true"},{"name":"useTimeout","type":{"text":"boolean"},"default":"true"},{"name":"solutionTitle","optional":true,"type":{"text":"string"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(showDeleteMessage?: boolean, useTimeout?: boolean, solutionTitle?: string): Promise<void>"},{"kind":"method","name":"searchSolutions","description":"Search solutions based on key criteria","parameters":[{"name":"searchOptions","description":"the key criteria to search with","optional":true,"type":{"text":"IFilterOption | ISearchOption | ISortOption | IQueryParams","references":[{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13},{"name":"ISearchOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchOption","start":16,"end":29},{"name":"ISortOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortOption","start":32,"end":43},{"name":"IQueryParams","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IQueryParams","start":46,"end":58}]}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(searchOptions?: IFilterOption | ISearchOption | ISortOption | IQueryParams): Promise<void>"},{"kind":"method","name":"setSearchOptions","description":"Set key properties for solution search\nThis is used for handeling multiple options from url params","parameters":[{"name":"searchOptions","description":"the key criteria that will be used when searched","optional":true,"type":{"text":"IFilterOption | ISearchOption | ISortOption","references":[{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13},{"name":"ISearchOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchOption","start":16,"end":29},{"name":"ISortOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortOption","start":32,"end":43}]}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(searchOptions?: IFilterOption | ISearchOption | ISortOption): Promise<void>"}],"attributes":[{"name":"sort-type","description":"Define how the cards will be sorted\nvalid options for deplyed cards are: created (ie date deployed), relevance, title","type":{"text":"\"title\" | \"updated\" | \"new\" | \"relevance\" | \"created\" | \"suggested\"","values":[{"type":"string","value":"title"},{"type":"string","value":"updated"},{"type":"string","value":"new"},{"type":"string","value":"relevance"},{"type":"string","value":"created"},{"type":"string","value":"suggested"}]},"default":"'created'","fieldName":"sortType"}],"events":[{"name":"deployedCardsFetched","description":"Emitted on demand when cards are fetched","type":{"text":"number"}},{"name":"searchTermSet","description":"Emitted on demand when the serachTerm is set from url param","type":{"text":"ISearchTerm","references":[{"name":"ISearchTerm","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchTerm","start":0,"end":11}]}},{"name":"sortTypeSet","description":"Emitted on demand when the sortType is set from url param","type":{"text":"ISortType","references":[{"name":"ISortType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortType","start":0,"end":9}]}}],"importPath":"components/solutions-deployed-panel"}],"exports":[{"kind":"custom-element-definition","name":"solutions-deployed-panel","declaration":{"name":"SolutionsDeployedPanel"}}]},{"kind":"javascript-module","path":"components/solutions-deployed-shell","sourcePath":"src/components/solutions-deployed-shell/solutions-deployed-shell.tsx","declarations":[{"kind":"class","name":"SolutionsDeployedShell","customElement":true,"tagName":"solutions-deployed-shell","pascalCaseName":"SolutionsDeployedShell","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"solutionsCount","description":"The number of solution cards currently displayed","type":{"text":"number","values":[{"type":"number"}]},"default":"0","attribute":"solutions-count"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsDeployedShell = document.querySelector(\"solutions-deployed-shell\");\ndocument.body.append(solutionsDeployedShell);\nawait solutionsDeployedShell.componentOnReady();\nconsole.log(\"solutions-deployed-shell is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"searchSolutions","description":"Search solutions based on key criteria","parameters":[{"name":"searchOptions","description":"the key criteria to search with","type":{"text":"IFilterOption | ISearchOption | ISortOption","references":[{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13},{"name":"ISearchOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchOption","start":16,"end":29},{"name":"ISortOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortOption","start":32,"end":43}]}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(searchOptions: IFilterOption | ISearchOption | ISortOption): Promise<void>"}],"attributes":[{"name":"solutions-count","description":"The number of solution cards currently displayed","type":{"text":"number","values":[{"type":"number"}]},"default":"0","fieldName":"solutionsCount"}],"events":[{"name":"filterRemoved","description":"Emitted on demand when a filter chip is closed","type":{"text":"IFilterOption","references":[{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13}]}},{"name":"tokenRefreshed","description":"Emitted on demand when the auth token is updated","type":{"text":"string"}}],"importPath":"components/solutions-deployed-shell"}],"exports":[{"kind":"custom-element-definition","name":"solutions-deployed-shell","declaration":{"name":"SolutionsDeployedShell"}}]},{"kind":"javascript-module","path":"components/solutions-filter-panel","sourcePath":"src/components/solutions-filter-panel/solutions-filter-panel.tsx","declarations":[{"kind":"class","name":"SolutionsFilterPanel","customElement":true,"tagName":"solutions-filter-panel","pascalCaseName":"SolutionsFilterPanel","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"hideIndustryFilter","description":"Determines if the Industry section should be shown.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"hide-industry-filter"},{"kind":"field","name":"isAIDialogOpen","description":"Determines if AI Assistant is open.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-ai-dialog-open"},{"kind":"field","name":"showReset","description":"Flag to display reset in the panel","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-reset"},{"kind":"method","name":"changeIndustryFilter","description":"Sets the filter on the specific industry or domain that the user chooses in the list.","parameters":[{"name":"industry","description":"The industry.","type":{"text":"string"}},{"name":"domain","description":"The domain with the industry.","type":{"text":"string"}},{"name":"displayValue","description":"The user friendly value that will be displayed.","type":{"text":"string"}},{"name":"emit","description":"(Optional) Flag whether to emit. useful when you don't want to emit multiple times for example in clear filter.","optional":true,"type":{"text":"boolean"}}],"return":{"type":{"text":"void"}},"signature":"(industry: string, domain: string, displayValue: string, emit?: boolean): void"},{"kind":"method","name":"clearFilters","description":"Clears all the filters include search, industry and owner.","return":{"type":{"text":"void"}},"signature":"(): void"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsFilterPanel = document.querySelector(\"solutions-filter-panel\");\ndocument.body.append(solutionsFilterPanel);\nawait solutionsFilterPanel.componentOnReady();\nconsole.log(\"solutions-filter-panel is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"hide-industry-filter","description":"Determines if the Industry section should be shown.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"hideIndustryFilter"},{"name":"is-ai-dialog-open","description":"Determines if AI Assistant is open.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isAIDialogOpen"},{"name":"show-reset","description":"Flag to display reset in the panel","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showReset"}],"events":[{"name":"applyFilter","description":"The event that gets emitted after any filter option has changed.","type":{"text":"IFilterOption[] | IFilterOption | ISearchOption | null","references":[{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13},{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":18,"end":31},{"name":"ISearchOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchOption","start":34,"end":47}]}},{"name":"toggleFilter","description":"Emitted on demand when the close filter button is clicked in mobile","type":{"text":"void"}}],"importPath":"components/solutions-filter-panel"}],"exports":[{"kind":"custom-element-definition","name":"solutions-filter-panel","declaration":{"name":"SolutionsFilterPanel"}}]},{"kind":"javascript-module","path":"components/solutions-resources-section","sourcePath":"src/components/solutions-resources-section/solutions-resources-section.tsx","declarations":[{"kind":"class","name":"SolutionsResourcesSection","customElement":true,"tagName":"solutions-resources-section","pascalCaseName":"SolutionsResourcesSection","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"cards","type":{"text":"ResourceCard[]","references":[{"name":"ResourceCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ResourceCard","start":0,"end":12}]},"attribute":"cards"},{"kind":"field","name":"heading","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"heading"},{"kind":"field","name":"subheading","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"subheading"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsResourcesSection = document.querySelector(\"solutions-resources-section\");\ndocument.body.append(solutionsResourcesSection);\nawait solutionsResourcesSection.componentOnReady();\nconsole.log(\"solutions-resources-section is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"cards","type":{"text":"ResourceCard[]","references":[{"name":"ResourceCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ResourceCard","start":0,"end":12}]},"fieldName":"cards"},{"name":"heading","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"heading"},{"name":"subheading","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"subheading"}],"importPath":"components/solutions-resources-section"}],"exports":[{"kind":"custom-element-definition","name":"solutions-resources-section","declaration":{"name":"SolutionsResourcesSection"}}]},{"kind":"javascript-module","path":"components/solutions-resources-shell","sourcePath":"src/components/solutions-resources-shell/solutions-resources-shell.tsx","declarations":[{"kind":"class","name":"SolutionsResourcesShell","customElement":true,"tagName":"solutions-resources-shell","pascalCaseName":"SolutionsResourcesShell","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsResourcesShell = document.querySelector(\"solutions-resources-shell\");\ndocument.body.append(solutionsResourcesShell);\nawait solutionsResourcesShell.componentOnReady();\nconsole.log(\"solutions-resources-shell is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"events":[{"name":"sortTypeChanged","description":"Emitted on demand when the sort type changes","type":{"text":"string"}}],"importPath":"components/solutions-resources-shell"}],"exports":[{"kind":"custom-element-definition","name":"solutions-resources-shell","declaration":{"name":"SolutionsResourcesShell"}}]},{"kind":"javascript-module","path":"components/solutions-searchsort-toolbar","sourcePath":"src/components/solutions-searchsort-toolbar/solutions-searchsort-toolbar.tsx","declarations":[{"kind":"class","name":"SolutionsSearchSortToolbar","customElement":true,"tagName":"solutions-searchsort-toolbar","pascalCaseName":"SolutionsSearchsortToolbar","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"defaultSortType","description":"The default type to sort solutions by","type":{"text":"SortType","references":[{"name":"SortType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#SortType","start":0,"end":8}],"values":[{"type":"string","value":"title"},{"type":"string","value":"updated"},{"type":"string","value":"new"},{"type":"string","value":"relevance"},{"type":"string","value":"created"},{"type":"string","value":"suggested"}]},"default":"'relevance'","attribute":"default-sort-type"},{"kind":"field","name":"isOrgSolutions","description":"Determines if the Owner section should be shown.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-org-solutions"},{"kind":"field","name":"scope","description":"The enviornment on which to perform search or sort","type":{"text":"DeployAppTab | undefined","references":[{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}],"values":[{"type":"string","value":"details"},{"type":"string","value":"all-solutions"},{"type":"string","value":"deployments"},{"type":"string","value":"resources"},{"type":"string","value":"deployed-card"},{"type":"string","value":"my-content"}]},"attribute":"scope"},{"kind":"method","name":"changeOwnerFilter","description":"Changes the filter to show only solutions that the user owns or the solutions within the organization.\nThis function is only available when the application is in the Deployments view.","parameters":[{"name":"isMySolutions","description":"Flag to show user's solution or organization's solutions.","type":{"text":"boolean"}}],"return":{"type":{"text":"void"}},"signature":"(isMySolutions: boolean): void"},{"kind":"method","name":"changeSearchFilter","description":"Filters the solutions by a text search phrase.","parameters":[{"name":"searchTerm","description":"the string lookup solutions by.","type":{"text":"string"}},{"name":"emit","description":"(Optional) Flag whether to emit. useful when you don't want to emit multiple times for example in clear filter.","optional":true,"type":{"text":"boolean"}},{"name":"startTelemetryTimer","description":"(Optional) Flag whether to start the telemetry debounce timer.","optional":true,"type":{"text":"boolean"}}],"return":{"type":{"text":"void"}},"signature":"(searchTerm: string, emit?: boolean, startTelemetryTimer?: boolean): void"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsSearchSortToolbar = document.querySelector(\"solutions-searchsort-toolbar\");\ndocument.body.append(solutionsSearchSortToolbar);\nawait solutionsSearchSortToolbar.componentOnReady();\nconsole.log(\"solutions-searchsort-toolbar is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"sortChanged","description":"Change the user selected sort type","parameters":[{"name":"sortType","description":"the string to sort by. Valid values are 'relevance' | 'title' | 'new' | 'updated' | 'suggested' | 'created'.","type":{"text":"SortType","references":[{"name":"SortType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#SortType","start":0,"end":8}]}},{"name":"emit","description":"when true the sortTypeChanged event will be emitted and a new search will be fired\n when false only the current settings will be updated to support url params","type":{"text":"boolean"}}],"return":{"type":{"text":"void"}},"signature":"(sortType: SortType, emit: boolean): void"}],"attributes":[{"name":"default-sort-type","description":"The default type to sort solutions by","type":{"text":"\"title\" | \"updated\" | \"new\" | \"relevance\" | \"created\" | \"suggested\"","values":[{"type":"string","value":"title"},{"type":"string","value":"updated"},{"type":"string","value":"new"},{"type":"string","value":"relevance"},{"type":"string","value":"created"},{"type":"string","value":"suggested"}]},"default":"'relevance'","fieldName":"defaultSortType"},{"name":"is-org-solutions","description":"Determines if the Owner section should be shown.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isOrgSolutions"},{"name":"scope","description":"The enviornment on which to perform search or sort","type":{"text":"\"details\" | \"all-solutions\" | \"deployments\" | \"resources\" | \"deployed-card\" | \"my-content\"","values":[{"type":"string","value":"details"},{"type":"string","value":"all-solutions"},{"type":"string","value":"deployments"},{"type":"string","value":"resources"},{"type":"string","value":"deployed-card"},{"type":"string","value":"my-content"}]},"fieldName":"scope"}],"events":[{"name":"searchChanged","description":"The event that gets emitted after any filter option has changed.","type":{"text":"{\n option: ISearchOption | IFilterOption | null;\n scope: DeployAppTab;\n logSearchTelemetry?: boolean;\n}","references":[{"name":"ISearchOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchOption","start":14,"end":27},{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":30,"end":43},{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":63,"end":75}]}},{"name":"sortTypeChanged","description":"Emitted on demand when the sort type changes","type":{"text":"{\n sortType: SortType;\n scope: DeployAppTab;\n}","references":[{"name":"SortType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#SortType","start":16,"end":24},{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":37,"end":49}]}},{"name":"toggleFilter","description":"Emitted on demand when the filter button is clicked in mobile","type":{"text":"void"}},{"name":"updateUrlParams","description":"Emitted on demand when navigating between tabs in the app","type":{"text":"IScopeSearchSortSettings","references":[{"name":"IScopeSearchSortSettings","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IScopeSearchSortSettings","start":0,"end":24}]}}],"importPath":"components/solutions-searchsort-toolbar"}],"exports":[{"kind":"custom-element-definition","name":"solutions-searchsort-toolbar","declaration":{"name":"SolutionsSearchSortToolbar"}}]},{"kind":"javascript-module","path":"utils/Auth","sourcePath":"src/utils/Auth.ts","declarations":[{"kind":"class","name":"Auth","members":[{"kind":"constructor","parameters":[{"name":"clientId","optional":true,"type":{"text":"string"}},{"name":"portalURL","optional":true,"type":{"text":"string"}},{"name":"locale","optional":true,"type":{"text":"string"}},{"name":"signInParam","optional":true,"type":{"text":"string"}}]},{"kind":"field","name":"CanDeleteSolution","type":{"text":"boolean"},"readonly":true},{"kind":"field","name":"CanSearchArcGISOnline","type":{"text":"boolean"},"readonly":true},{"kind":"field","name":"CanUpdateSolution","type":{"text":"boolean"},"readonly":true},{"kind":"field","name":"CanUseAI","type":{"text":"boolean"},"readonly":true},{"kind":"field","name":"CanViewOrg","type":{"text":"boolean"},"readonly":true},{"kind":"field","name":"Credential","type":{"text":"__esri.Credential | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]},"readonly":true},{"kind":"field","name":"IsEnterprisePortal","type":{"text":"boolean"},"readonly":true},{"kind":"field","name":"IsSignedIn","type":{"text":"boolean"},"readonly":true},{"kind":"field","name":"Portal","type":{"text":"Portal","references":[{"name":"default","module":"portal/Portal.js","package":"@arcgis/core","viewUrl":"https://developers.arcgis.com/javascript/latest/references/core/portal/Portal/","start":0,"end":6}]},"readonly":true},{"kind":"field","name":"PortalSubset","type":{"text":"IPortalSubset | undefined","references":[{"name":"IPortalSubset","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/Auth/#IPortalSubset","start":0,"end":13}]},"readonly":true},{"kind":"field","name":"PortalUrl","type":{"text":"string"},"readonly":true},{"kind":"field","name":"PortalUserName","type":{"text":"string"},"readonly":true},{"kind":"field","name":"PortalUserOrg","type":{"text":"string | undefined"},"readonly":true},{"kind":"field","name":"PortalUserPrivileges","type":{"text":"string[]"},"readonly":true},{"kind":"field","name":"PortalUserSubset","type":{"text":"IPortalUserSubset | undefined","references":[{"name":"IPortalUserSubset","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/Auth/#IPortalUserSubset","start":0,"end":17}]},"readonly":true},{"kind":"field","name":"RestUserSession","type":{"text":"common.UserSession","references":[{"name":"*","package":"@esri/solution-common","start":0,"end":6}]},"readonly":true},{"kind":"field","name":"SignInParam","type":{"text":"string | undefined"},"readonly":true},{"kind":"method","name":"destroy","return":{"type":{"text":"void"}}},{"kind":"method","name":"initialize","description":"Initializes the Auth object. This method must be called before any other Auth methods.\nIf the user is not authorized to use the app, the page will be redirected to an error page.","return":{"description":"Promise that resolves with the initialized Auth object","type":{"text":"Promise<Auth>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7},{"name":"Auth","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/Auth/#Auth","start":8,"end":12}]}}},{"kind":"method","name":"refreshSession","description":"Refreshes the user session token","return":{"type":{"text":"Promise<common.UserSession> | undefined","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7},{"name":"*","package":"@esri/solution-common","start":8,"end":14}]}}},{"kind":"method","name":"signIn","description":"Signs into app and refreshes the window.location or switches to the supplied URL.","parameters":[{"name":"signInParamValue","description":"If supplied, the parameter `signInParam` with the supplied value\nwill be added to the redirect uri's search params","type":{"text":"string"},"default":"''"}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}}},{"kind":"method","name":"signOut","description":"Signs out of app.\nWhen the user is...\n on the solutions page they should stay on that page\n on a solutions details page they should stay on that page\n on the deployments page they should stay on that page\n on a deployed solutions page they should be sent to the deployments page\n on the resources page they should stay on that page","return":{"type":{"text":"void"}}}]},{"kind":"interface","name":"IPortalSubset","members":[{"kind":"field","name":"name","type":{"text":"string"}},{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"restUrl","type":{"text":"string"}},{"kind":"field","name":"portalUrl","type":{"text":"string"}},{"kind":"field","name":"urlKey","type":{"text":"string"}},{"kind":"field","name":"hostName","type":{"text":"string"}},{"kind":"field","name":"orgUrl","type":{"text":"string"}},{"kind":"field","name":"locationTrackingEnabled","type":{"text":"boolean"}},{"kind":"field","name":"hubPremiumEnabled","type":{"text":"boolean"}},{"kind":"field","name":"workflowURL","type":{"text":"string"}},{"kind":"field","name":"isReadOnly","type":{"text":"boolean"}},{"kind":"field","name":"orgSettings","type":{"text":"IOrgSettings","references":[{"name":"IOrgSettings","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IOrgSettings","start":0,"end":12}]}}]},{"kind":"interface","name":"IPortalUserSubset","members":[{"kind":"field","name":"fullName","type":{"text":"string"}},{"kind":"field","name":"username","type":{"text":"string"}},{"kind":"field","name":"culture","type":{"text":"string"}},{"kind":"field","name":"thumbnailUrl","type":{"text":"string"}},{"kind":"field","name":"privileges","type":{"text":"string[]"}},{"kind":"field","name":"orgId","type":{"text":"string"}},{"kind":"field","name":"role","type":{"text":"string"}},{"kind":"field","name":"roleId","type":{"text":"string | undefined"}}]}]},{"kind":"javascript-module","path":"utils/interfaces","sourcePath":"src/utils/interfaces.ts","declarations":[{"kind":"interface","name":"ELayoutMode","type":{"text":"\"GRID\" | \"HORIZONTAL\" | \"VERTICAL\""}},{"kind":"interface","name":"EPageType","type":{"text":"\"LIST\" | \"SELECT\" | \"EXPORT\" | \"REFINE\""}},{"kind":"interface","name":"ESegmentType","type":{"text":"\"STANDARD\" | \"CUSTOM\""}},{"kind":"interface","name":"ESelectionMode","type":{"text":"\"ADD\" | \"REMOVE\""}},{"kind":"interface","name":"ESelectionType","type":{"text":"\"POINT\" | \"LINE\" | \"POLY\" | \"RECT\""}},{"kind":"interface","name":"EWorkflowType","type":{"text":"\"SEARCH\" | \"SELECT\" | \"SKETCH\" | \"REFINE\""}},{"kind":"interface","name":"EExportType","type":{"text":"\"CSV\" | \"PDF\""}},{"kind":"interface","name":"EDrawMode","type":{"text":"\"SKETCH\" | \"REFINE\""}},{"kind":"variable","name":"BATCH_EDIT_LIMIT","type":{"text":"500"}},{"kind":"interface","name":"DistanceUnit","type":{"text":"\"feet\" | \"meters\" | \"miles\" | \"kilometers\""}},{"kind":"interface","name":"theme","type":{"text":"\"light\" | \"dark\""}},{"kind":"interface","name":"ScopeType","type":{"text":"\"all-solutions\" | \"deployments\""}},{"kind":"interface","name":"TooltipPlacement","type":{"text":"\"auto\" | \"top\" | \"right\" | \"bottom\" | \"left\" | \"top-start\" | \"top-end\" | \"right-start\" | \"right-end\" | \"bottom-start\" | \"bottom-end\" | \"left-start\" | \"left-end\" | \"auto-start\" | \"auto-end\" | \"leading-start\" | \"leading\" | \"leading-end\" | \"trailing-end\" | \"trailing\" | \"trailing-start\""}},{"kind":"interface","name":"IMapClick","members":[{"kind":"field","name":"mapPoint","type":{"text":"__esri.Point","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"screenPoint","type":{"text":"__esri.MapViewScreenPoint","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"x","type":{"text":"number"}},{"kind":"field","name":"y","type":{"text":"number"}},{"kind":"field","name":"button","type":{"text":"number"}},{"kind":"field","name":"buttons","type":{"text":"0 | 1 | 2"}},{"kind":"field","name":"type","type":{"text":"string"}},{"kind":"field","name":"stopPropagation","type":{"text":"any"}},{"kind":"field","name":"timestamp","type":{"text":"number"}},{"kind":"field","name":"native","type":{"text":"PointerEvent","references":[{"name":"PointerEvent","package":"global:","viewUrl":"https://developer.mozilla.org/docs/Web/API/PointerEvent","start":0,"end":12}]}}]},{"kind":"interface","name":"IDeleteIds","members":[{"kind":"field","name":"ids","type":{"text":"number[]"}}]},{"kind":"interface","name":"IRefineOperation","members":[{"kind":"field","name":"ids","type":{"text":"number[]"}},{"kind":"field","name":"mode","type":{"text":"ESelectionMode","references":[{"name":"ESelectionMode","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ESelectionMode","start":0,"end":14}]}},{"kind":"field","name":"layerView","type":{"text":"__esri.FeatureLayerView","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}}]},{"kind":"interface","name":"ISearchConfiguration","members":[{"kind":"field","name":"activeSourceIndex","type":{"text":"number | undefined"}},{"kind":"field","name":"allPlaceholder","type":{"text":"string | undefined"}},{"kind":"field","name":"includeDefaultSources","type":{"text":"boolean | undefined"}},{"kind":"field","name":"searchAllEnabled","type":{"text":"boolean | undefined"}},{"kind":"field","name":"sources","type":{"text":"Array<ILocatorSourceConfigItem | ILayerSourceConfigItem> | undefined","references":[{"name":"Array","package":"global:","viewUrl":"https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array","start":0,"end":5},{"name":"ILocatorSourceConfigItem","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILocatorSourceConfigItem","start":6,"end":30},{"name":"ILayerSourceConfigItem","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILayerSourceConfigItem","start":33,"end":55}]}}]},{"kind":"interface","name":"ISearchSourceConfigItem","members":[{"kind":"field","name":"maxResults","type":{"text":"number"}},{"kind":"field","name":"maxSuggestions","type":{"text":"number"}},{"kind":"field","name":"minSuggestCharacters","type":{"text":"number"}},{"kind":"field","name":"name","type":{"text":"string"}},{"kind":"field","name":"suggestionsEnabled","type":{"text":"boolean"}},{"kind":"field","name":"placeholder","type":{"text":"string"}},{"kind":"field","name":"withinViewEnabled","type":{"text":"boolean"}},{"kind":"field","name":"zoomScale","type":{"text":"number"}},{"kind":"field","name":"outFields","type":{"text":"string[] | undefined"}}]},{"kind":"interface","name":"ILocatorSourceConfigItem","supertypes":[{"name":"ISearchSourceConfigItem","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchSourceConfigItem"}],"members":[{"kind":"field","name":"url","type":{"text":"string | undefined"}},{"kind":"field","name":"singleLineFieldName","type":{"text":"string"}},{"kind":"field","name":"countryCode","type":{"text":"string"}}]},{"kind":"interface","name":"ILayerSourceConfigItem","supertypes":[{"name":"ISearchSourceConfigItem","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchSourceConfigItem"}],"members":[{"kind":"field","name":"displayField","type":{"text":"string"}},{"kind":"field","name":"exactMatch","type":{"text":"boolean"}},{"kind":"field","name":"layer","type":{"text":"{\n url: string | __esri.FeatureLayer;\n id: string;\n}","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":20,"end":27}]}},{"kind":"field","name":"outFields","type":{"text":"string[]"}},{"kind":"field","name":"searchFields","type":{"text":"string"}},{"kind":"field","name":"popupTemplate","type":{"text":"any"}},{"kind":"field","name":"popupEnabled","type":{"text":"boolean"}}]},{"kind":"interface","name":"IDropdownItem","members":[{"kind":"field","name":"displayValue","type":{"text":"string"}},{"kind":"field","name":"sortType","type":{"text":"SortType","references":[{"name":"SortType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#SortType","start":0,"end":8}]}}]},{"kind":"interface","name":"ISearchSortSettings","supertypes":[{"name":"ISearchOption","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchOption"},{"name":"ISortOption","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortOption"}],"members":[{"kind":"field","name":"isOrgSolutions","type":{"text":"boolean"}}]},{"kind":"interface","name":"IScopeSearchSortSettings","members":[{"kind":"field","name":"scope","type":{"text":"ScopeType","references":[{"name":"ScopeType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ScopeType","start":0,"end":9}]}},{"kind":"field","name":"settings","type":{"text":"ISearchSortSettings","references":[{"name":"ISearchSortSettings","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchSortSettings","start":0,"end":19}]}}]},{"kind":"interface","name":"ISearchTerm","members":[{"kind":"field","name":"searchTerm","type":{"text":"string"}},{"kind":"field","name":"scope","type":{"text":"ScopeType","references":[{"name":"ScopeType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ScopeType","start":0,"end":9}]}}]},{"kind":"interface","name":"ISortType","members":[{"kind":"field","name":"sortType","type":{"text":"SortType","references":[{"name":"SortType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#SortType","start":0,"end":8}]}},{"kind":"field","name":"scope","type":{"text":"ScopeType","references":[{"name":"ScopeType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ScopeType","start":0,"end":9}]}}]},{"kind":"interface","name":"IValueChange","members":[{"kind":"field","name":"oldValue","type":{"text":"number | string"}},{"kind":"field","name":"newValue","type":{"text":"number | string"}}]},{"kind":"interface","name":"IMapItemHash","description":"Layer or table id and title key value pair","type":{"text":"{ [key: string]: ILayerHashInfo; }","references":[{"name":"ILayerHashInfo","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILayerHashInfo","start":17,"end":31}]}},{"kind":"interface","name":"ILayerHashInfo","members":[{"kind":"field","name":"name","type":{"text":"string"}},{"kind":"field","name":"supportsUpdate","type":{"text":"boolean"}}]},{"kind":"interface","name":"ITemplateInfo","description":"Stores the id, type, and title for a given template","members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"title","type":{"text":"string"}},{"kind":"field","name":"type","type":{"text":"string"}},{"kind":"field","name":"typeKeywords","type":{"text":"string[]"}},{"kind":"field","name":"snippet","type":{"text":"string"}},{"kind":"field","name":"url","type":{"text":"string | undefined"}}]},{"kind":"interface","name":"ILayerItemsHash","type":{"text":"{ [key: string]: ILayerDetailsHash; }","references":[{"name":"ILayerDetailsHash","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILayerDetailsHash","start":17,"end":34}]}},{"kind":"interface","name":"ILayerDetailsHash","members":[{"kind":"field","name":"name","type":{"text":"string"}},{"kind":"field","name":"formattedFeatureCount","type":{"text":"string"}},{"kind":"field","name":"supportsUpdate","type":{"text":"boolean"}},{"kind":"field","name":"supportsAdd","type":{"text":"boolean"}}]},{"kind":"interface","name":"ISearchConfig","description":"A templates share details","members":[{"kind":"field","name":"layers","type":{"text":"string[]"}},{"kind":"field","name":"layerUrl","type":{"text":"string"}},{"kind":"field","name":"locators","type":{"text":"string[]"}},{"kind":"field","name":"locatorUrl","type":{"text":"string"}}]},{"kind":"interface","name":"ISearchResult","members":[{"kind":"field","name":"graphics","type":{"text":"__esri.Graphic[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"name","type":{"text":"string"}}]},{"kind":"interface","name":"ISelectionSet","members":[{"kind":"field","name":"id","type":{"text":"number"}},{"kind":"field","name":"searchResult","type":{"text":"any"}},{"kind":"field","name":"buffer","type":{"text":"__esri.Geometry | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"distance","type":{"text":"number"}},{"kind":"field","name":"download","type":{"text":"boolean"}},{"kind":"field","name":"unit","type":{"text":"DistanceUnit","references":[{"name":"DistanceUnit","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DistanceUnit","start":0,"end":12}]}},{"kind":"field","name":"label","type":{"text":"string"}},{"kind":"field","name":"selectedIds","type":{"text":"number[]"}},{"kind":"field","name":"layerView","type":{"text":"__esri.FeatureLayerView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"geometries","type":{"text":"__esri.Geometry[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"graphics","type":{"text":"__esri.Graphic[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"selectLayers","type":{"text":"__esri.FeatureLayerView[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"skipGeomOIDs","type":{"text":"number[] | undefined"}},{"kind":"field","name":"workflowType","type":{"text":"EWorkflowType","references":[{"name":"EWorkflowType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#EWorkflowType","start":0,"end":13}]}},{"kind":"field","name":"searchDistanceEnabled","type":{"text":"boolean"}},{"kind":"field","name":"useLayerFeaturesEnabled","type":{"text":"boolean"}},{"kind":"field","name":"refineInfos","type":{"text":"IRefineInfo","references":[{"name":"IRefineInfo","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IRefineInfo","start":0,"end":11}]}},{"kind":"field","name":"redoStack","type":{"text":"IRefineOperation[] | undefined","references":[{"name":"IRefineOperation","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IRefineOperation","start":0,"end":16}]}},{"kind":"field","name":"undoStack","type":{"text":"IRefineOperation[] | undefined","references":[{"name":"IRefineOperation","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IRefineOperation","start":0,"end":16}]}},{"kind":"field","name":"sketchGraphic","type":{"text":"__esri.Graphic | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"undoGraphicsArr","type":{"text":"any[] | undefined"}}]},{"kind":"interface","name":"IRefineInfo","type":{"text":"{ [key: string]: IRefineIds; }","references":[{"name":"IRefineIds","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IRefineIds","start":17,"end":27}]}},{"kind":"interface","name":"IRefineIds","members":[{"kind":"field","name":"addIds","type":{"text":"number[]"}},{"kind":"field","name":"removeIds","type":{"text":"number[]"}},{"kind":"field","name":"layerView","type":{"text":"__esri.FeatureLayerView","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}}]},{"kind":"interface","name":"ISketchGraphicsChange","members":[{"kind":"field","name":"graphics","type":{"text":"__esri.Graphic[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"useOIDs","type":{"text":"boolean"}}]},{"kind":"interface","name":"IQueryExtentResponse","members":[{"kind":"field","name":"count","type":{"text":"number"}},{"kind":"field","name":"extent","type":{"text":"__esri.Extent | null","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}}]},{"kind":"interface","name":"IBeforeLayerSelectionChange","members":[{"kind":"field","name":"currentId","type":{"text":"string | undefined"}},{"kind":"field","name":"currentIds","type":{"text":"string[] | undefined"}},{"kind":"field","name":"newId","type":{"text":"string | undefined"}},{"kind":"field","name":"newIds","type":{"text":"string[] | undefined"}},{"kind":"field","name":"ref","type":{"text":"MapLayerPicker","references":[{"name":"MapLayerPicker","module":"components/map-layer-picker","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/map-layer-picker/#MapLayerPicker","start":0,"end":14}]}}]},{"kind":"interface","name":"IBeforeMapChange","members":[{"kind":"field","name":"currentId","type":{"text":"string"}},{"kind":"field","name":"mapInfo","type":{"text":"IMapInfo","references":[{"name":"IMapInfo","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}},{"kind":"field","name":"ref","type":{"text":"MapPicker","references":[{"name":"MapPicker","module":"components/map-picker","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/map-picker/#MapPicker","start":0,"end":9}]}}]},{"kind":"interface","name":"IMapInfo","members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"name","type":{"text":"string"}},{"kind":"field","name":"searchConfiguration","type":{"text":"ISearchConfiguration | undefined","references":[{"name":"ISearchConfiguration","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchConfiguration","start":0,"end":20}]}},{"kind":"field","name":"filterConfig","type":{"text":"IFilterConfig | undefined","references":[{"name":"IFilterConfig","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterConfig","start":0,"end":13}]}},{"kind":"field","name":"_hasValidLayers","type":{"text":"boolean | undefined"}},{"kind":"field","name":"visible","type":{"text":"boolean | undefined"}},{"kind":"field","name":"layerOptions","type":{"text":"ILayerOptions | undefined","references":[{"name":"ILayerOptions","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILayerOptions","start":0,"end":13}]}},{"kind":"field","name":"enableInlineEdit","type":{"text":"boolean"}},{"kind":"field","name":"enableCreateFeatures","type":{"text":"boolean"}},{"kind":"field","name":"createFeatureButtonLabel","type":{"text":"string"}},{"kind":"field","name":"enableEditGeometry","type":{"text":"boolean"}},{"kind":"field","name":"enableTableAutosave","type":{"text":"boolean"}}]},{"kind":"interface","name":"ILayerOptions","members":[{"kind":"field","name":"layers","type":{"text":"ILayerDef[]","references":[{"name":"ILayerDef","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILayerDef","start":0,"end":9}]}},{"kind":"field","name":"mapId","type":{"text":"string | undefined"}},{"kind":"field","name":"configLayerOrder","type":{"text":"string[] | undefined"}}]},{"kind":"interface","name":"ILayerDef","members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"sublayerId","type":{"text":"number | undefined"}},{"kind":"field","name":"fields","type":{"text":"string[] | undefined"}},{"kind":"field","name":"extraFields","type":{"text":"string[]"}},{"kind":"field","name":"fieldOrder","type":{"text":"string[] | undefined"}},{"kind":"field","name":"sortField","type":{"text":"string | undefined"}},{"kind":"field","name":"sortOrder","type":{"text":"\"asc\" | \"desc\" | undefined"}}]},{"kind":"interface","name":"IMapChange","members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"mapView","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"isValid","type":{"text":"boolean"}}]},{"kind":"interface","name":"IExportInfos","type":{"text":"{ [key: string]: IExportInfo; }","references":[{"name":"IExportInfo","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IExportInfo","start":17,"end":28}]}},{"kind":"interface","name":"IExportInfo","members":[{"kind":"field","name":"ids","type":{"text":"number[]"}},{"kind":"field","name":"layer","type":{"text":"__esri.FeatureLayer | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"layerView","type":{"text":"__esri.FeatureLayerView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"selectionSetNames","type":{"text":"string[]"}}]},{"kind":"interface","name":"IBasemapConfig","members":[{"kind":"field","name":"basemapIdsToFilter","type":{"text":"string[]"}},{"kind":"field","name":"basemapGroupId","type":{"text":"string"}}]},{"kind":"interface","name":"IToolInfo","members":[{"kind":"field","name":"active","type":{"text":"boolean"}},{"kind":"field","name":"icon","type":{"text":"Icon[\"icon\"]","references":[{"name":"Icon","module":"components/calcite-icon","package":"@esri/calcite-components","start":0,"end":4}]}},{"kind":"field","name":"indicator","type":{"text":"boolean"}},{"kind":"field","name":"func","type":{"text":"any"}},{"kind":"field","name":"label","type":{"text":"string"}},{"kind":"field","name":"toolTip","type":{"text":"string"}},{"kind":"field","name":"disabled","type":{"text":"boolean"}},{"kind":"field","name":"isDanger","type":{"text":"boolean | undefined"}},{"kind":"field","name":"loading","type":{"text":"boolean | undefined"}}]},{"kind":"interface","name":"IColumnsInfo","type":{"text":"{ [key: string]: boolean; }"}},{"kind":"interface","name":"IFilterConfig","members":[{"kind":"field","name":"mapId","type":{"text":"string"}},{"kind":"field","name":"layerExpressions","type":{"text":"ILayerExpression[]","references":[{"name":"ILayerExpression","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILayerExpression","start":0,"end":16}]}}]},{"kind":"interface","name":"ILayerExpression","members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"sublayerId","type":{"text":"number"}},{"kind":"field","name":"title","type":{"text":"string"}},{"kind":"field","name":"expressions","type":{"text":"IExpression[]","references":[{"name":"IExpression","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IExpression","start":0,"end":11}]}},{"kind":"field","name":"operator","type":{"text":"string"}}]},{"kind":"interface","name":"IImageExtraction","members":[{"kind":"field","name":"field","type":{"text":"string"}},{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"prompt","type":{"text":"string"}}]},{"kind":"interface","name":"ExpressionField","type":{"text":"\"string\" | \"number\" | \"date\" | \"coded-value\" | \"range\" | \"checkbox\""}},{"kind":"interface","name":"EditType","type":{"text":"\"update\" | \"add\" | \"delete\""}},{"kind":"interface","name":"ButtonType","type":{"text":"\"button\" | \"action\""}},{"kind":"interface","name":"AppLayout","type":{"text":"\"mapView\" | \"tableView\" | \"splitView\""}},{"kind":"interface","name":"VisibilityIconType","type":{"text":"\"checkbox\" | \"eyeball\""}},{"kind":"interface","name":"IExpression","members":[{"kind":"field","name":"id","type":{"text":"number"}},{"kind":"field","name":"type","type":{"text":"ExpressionField | undefined","references":[{"name":"ExpressionField","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ExpressionField","start":0,"end":15}]}},{"kind":"field","name":"active","type":{"text":"boolean | undefined"}},{"kind":"field","name":"definitionExpression","type":{"text":"string | undefined"}},{"kind":"field","name":"name","type":{"text":"string"}},{"kind":"field","name":"field","type":{"text":"string | undefined"}},{"kind":"field","name":"fields","type":{"text":"string[] | number[] | undefined"}},{"kind":"field","name":"selectedFields","type":{"text":"string[] | number[] | undefined"}},{"kind":"field","name":"codedValues","type":{"text":"{ [key: string]: string; } | undefined"}},{"kind":"field","name":"placeholder","type":{"text":"string | undefined"}},{"kind":"field","name":"min","type":{"text":"number | string | undefined"}},{"kind":"field","name":"max","type":{"text":"number | string | undefined"}},{"kind":"field","name":"range","type":{"text":"{\n min: string | number | undefined;\n max: string | number | undefined;\n} | undefined"}},{"kind":"field","name":"step","type":{"text":"number | undefined"}},{"kind":"field","name":"numDisplayOption","type":{"text":"\"slider\" | \"drop-down\" | undefined"}}]},{"kind":"interface","name":"ILayerAndTableIds","members":[{"kind":"field","name":"layerIds","type":{"text":"string[]"}},{"kind":"field","name":"tableIds","type":{"text":"string[]"}}]},{"kind":"interface","name":"IPopupUtils","members":[{"kind":"method","name":"getPopupTitle","parameters":[{"name":"graphic","type":{"text":"__esri.Graphic","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"name":"map","type":{"text":"__esri.Map","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}}],"return":{"type":{"text":"Promise<string>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}}}]},{"kind":"interface","name":"IConsentResponse","members":[{"kind":"field","name":"granted","type":{"text":"boolean"}}]},{"kind":"interface","name":"IPNContext","supertypes":[{"name":"Controller","module":"controllers","package":"@arcgis/lumina"}],"members":[{"kind":"field","name":"managedLayers","type":{"text":"IManagedLayers","references":[{"name":"IManagedLayers","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IManagedLayers","start":0,"end":14}]}},{"kind":"field","name":"managedTables","type":{"text":"string[]"}},{"kind":"field","name":"highlightHandles","type":{"text":"any[]"}},{"kind":"field","name":"removeHandles","type":{"text":"() => void"}}]},{"kind":"interface","name":"IManagedLayers","description":"Key is the layer name and the value is the type of layer","type":{"text":"{ [key: string]: \"buffer\" | \"sketch\"; }"}},{"kind":"interface","name":"IReportingOptions","description":"Key is the layers guid","type":{"text":"{ [key: string]: IReportingOption; }","references":[{"name":"IReportingOption","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IReportingOption","start":17,"end":33}]}},{"kind":"interface","name":"IReportingOption","members":[{"kind":"field","name":"reporting","type":{"text":"boolean"}},{"kind":"field","name":"comment","type":{"text":"boolean"}},{"kind":"field","name":"like","type":{"text":"boolean"}},{"kind":"field","name":"likeField","type":{"text":"string | undefined"}},{"kind":"field","name":"dislike","type":{"text":"boolean"}},{"kind":"field","name":"dislikeField","type":{"text":"string | undefined"}},{"kind":"field","name":"visible","type":{"text":"boolean"}}]},{"kind":"interface","name":"ISortingInfo","members":[{"kind":"field","name":"field","type":{"text":"string"}},{"kind":"field","name":"order","type":{"text":"\"asc\" | \"desc\""}}]},{"kind":"interface","name":"ISolutionItemHover","members":[{"kind":"field","name":"itemId","type":{"text":"string"}},{"kind":"field","name":"entering","type":{"text":"boolean"}}]},{"kind":"interface","name":"ISolutionItemSelected","members":[{"kind":"field","name":"itemId","type":{"text":"string"}},{"kind":"field","name":"selected","type":{"text":"boolean"}}]},{"kind":"interface","name":"ISolutionTypeHover","members":[{"kind":"field","name":"itemType","type":{"text":"string"}},{"kind":"field","name":"entering","type":{"text":"boolean"}}]},{"kind":"interface","name":"ChipType","type":{"text":"\"new\" | \"deployed\" | \"updated\""}},{"kind":"interface","name":"SortType","type":{"text":"\"relevance\" | \"title\" | \"new\" | \"updated\" | \"suggested\" | \"created\""}},{"kind":"interface","name":"SortOrder","type":{"text":"\"asc\" | \"desc\""}},{"kind":"interface","name":"FilterType","type":{"text":"\"type\" | \"industry\" | \"domain\" | \"owner\""}},{"kind":"variable","name":"EIndustry","type":{"text":"{\n AEC: string;\n AIRPORTPORTRAIL: string;\n BUSINESS: string;\n CONSERVATION: string;\n DEFENSE: string;\n FACILITIES: string;\n HEALTHANDHUMANSERVICES: string;\n PIPELINE: string;\n PUBLICSAFETY: string;\n RENEWABLES: string;\n STATEANDLOCALGOVERNMENT: string;\n TELECOMMUNICATIONS: string;\n UTILITIES: string;\n}"}},{"kind":"variable","name":"EDomain","type":{"text":"{\n AIRPORT: string;\n AGRICULTURE: string;\n ASSESSMENTANDTAXATION: string;\n DISTRICTENERGY: string;\n ELECTIONS: string;\n ELECTRIC: string;\n EMERGENCYMANAGEMENT: string;\n ENVIRONMENTANDNATURALRESOURCES: string;\n FIRESERVICE: string;\n FISHANDWILDLIFE: string;\n GAS: string;\n HEALTHANDHUMANSERVICES: string;\n LAWENFORCEMENT: string;\n NATURALRESOURCES: string;\n PARKS: string;\n PLANNINGANDDEVELOPMENT: string;\n PROTECTEDAREAS: string;\n PUBLICWORKS: string;\n SEWER: string;\n STORMWATER: string;\n TELECOMMUNICATIONS: string;\n TRANSPORTATION: string;\n WATER: string;\n}"}},{"kind":"interface","name":"EType","type":{"text":"\"New Release\" | \"Suggested\""}},{"kind":"interface","name":"EOwnerOption","type":{"text":"\"My solutions\" | `My organization's solutions`"}},{"kind":"interface","name":"IFilterOption","members":[{"kind":"field","name":"type","type":{"text":"FilterType","references":[{"name":"FilterType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#FilterType","start":0,"end":10}]}},{"kind":"field","name":"displayValue","type":{"text":"string"}},{"kind":"field","name":"domain","type":{"text":"string | undefined"}},{"kind":"field","name":"value","type":{"text":"string | EType | EOwnerOption","references":[{"name":"EType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#EType","start":9,"end":14},{"name":"EOwnerOption","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#EOwnerOption","start":17,"end":29}]}},{"kind":"field","name":"industry","type":{"text":"string | undefined"}}]},{"kind":"interface","name":"IFilterSetting","members":[{"kind":"field","name":"categories","type":{"text":"IFilterOption[] | undefined","references":[{"name":"IFilterOption","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13}]}},{"kind":"field","name":"searchTerm","type":{"text":"string | undefined"}}]},{"kind":"interface","name":"ISearchOption","members":[{"kind":"field","name":"searchTerm","type":{"text":"string"}}]},{"kind":"interface","name":"ISortOption","members":[{"kind":"field","name":"sortType","type":{"text":"SortType","references":[{"name":"SortType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#SortType","start":0,"end":8}]}},{"kind":"field","name":"enabled","type":{"text":"boolean | undefined"}}]},{"kind":"interface","name":"ISolutionDeployedCard","members":[{"kind":"field","name":"deployedDate","type":{"text":"string"}},{"kind":"field","name":"description","type":{"text":"string"}},{"kind":"field","name":"heading","type":{"text":"string"}},{"kind":"field","name":"itemId","type":{"text":"string"}},{"kind":"field","name":"owner","type":{"text":"string"}},{"kind":"field","name":"thumbnail","type":{"text":"string"}},{"kind":"field","name":"updateAvailable","type":{"text":"boolean"}}]},{"kind":"interface","name":"IDeployedSolutionCards","members":[{"kind":"field","name":"cards","type":{"text":"ISolutionInfoCard[]","references":[{"name":"ISolutionInfoCard","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"relatedSolutions","type":{"text":"Set<string>","references":[{"name":"Set","package":"global:","viewUrl":"https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Set","start":0,"end":3}]}}]},{"kind":"variable","name":"BASE_DEPLOYED_TERMS","type":{"text":"\"((typekeywords:Solution,Deployed,\\\"ArcGIS Solution\\\") OR ((typekeywords:Solution,Deployed) AND (created:[1577862000000 TO 1622576880000])))\""}},{"kind":"variable","name":"BASE_SOLUTIONS_TERMS","type":{"text":"\"(typekeywords:Solution,Template)\""}},{"kind":"interface","name":"ISearchOptionPartial","members":[{"kind":"field","name":"q","type":{"text":"string"}},{"kind":"field","name":"filter","type":{"text":"string"}},{"kind":"field","name":"sortField","type":{"text":"string"}},{"kind":"field","name":"sortOrder","type":{"text":"string"}},{"kind":"field","name":"nextStart","type":{"text":"any | undefined"}},{"kind":"field","name":"categories","type":{"text":"string[]"}},{"kind":"field","name":"delay","type":{"text":"boolean"}},{"kind":"field","name":"getSuggested","type":{"text":"boolean | undefined"}},{"kind":"field","name":"num","type":{"text":"number"}}]},{"kind":"interface","name":"ICacheBatch","typeParameters":[{"name":"T"}],"members":[{"kind":"field","name":"cards","type":{"text":"T[]","references":[{"name":"T","start":0,"end":1}]}},{"kind":"field","name":"paging","type":{"text":"IPagedResponse","references":[{"name":"IPagedResponse","package":"@esri/arcgis-rest-types","start":0,"end":14}]}}]},{"kind":"interface","name":"IKeyedStrings","type":{"text":"{ [key: string]: string; }"}},{"kind":"interface","name":"IPreview","members":[{"kind":"field","name":"name","type":{"text":"string"}},{"kind":"field","name":"format","type":{"text":"string"}},{"kind":"field","name":"alt","type":{"text":"string"}}]},{"kind":"interface","name":"ISolutionInfoCard","description":"Summary of a solution item.","supertypes":[{"name":"ISortableItem","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortableItem"}],"members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"title","type":{"text":"string"}},{"kind":"field","name":"snippet","type":{"text":"string"}},{"kind":"field","name":"description","type":{"text":"string"}},{"kind":"field","name":"url","type":{"text":"string"}},{"kind":"field","name":"itemUrl","type":{"text":"string"}},{"kind":"field","name":"thumbnailFilename","type":{"text":"string"}},{"kind":"field","name":"thumbnailUrl","type":{"text":"string"}},{"kind":"field","name":"tryitUrl","type":{"text":"string"}},{"kind":"field","name":"typeKeywords","type":{"text":"string[]"}},{"kind":"field","name":"learnMoreUrl","type":{"text":"string"}},{"kind":"field","name":"createdMs","type":{"text":"number"}},{"kind":"field","name":"created","type":{"text":"string"}},{"kind":"field","name":"modified","type":{"text":"string"}},{"kind":"field","name":"numViews","type":{"text":"number"}},{"kind":"field","name":"tags","type":{"text":"string[]"}},{"kind":"field","name":"categories","type":{"text":"string[]"}},{"kind":"field","name":"licenseInfo","type":{"text":"string"}},{"kind":"field","name":"deployCommonId","type":{"text":"string"}},{"kind":"field","name":"deployVersion","type":{"text":"string"}},{"kind":"field","name":"canDelete","type":{"text":"boolean"}},{"kind":"field","name":"preview","type":{"text":"IPreview[] | undefined","references":[{"name":"IPreview","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IPreview","start":0,"end":8}]}},{"kind":"field","name":"sourcePortalUrl","type":{"text":"string"}},{"kind":"field","name":"knownToBePublicSource","type":{"text":"boolean"}},{"kind":"field","name":"waitId","type":{"text":"string"}},{"kind":"field","name":"relatedSolutions","type":{"text":"string[]"}},{"kind":"field","name":"owner","type":{"text":"string | undefined"}},{"kind":"field","name":"chips","type":{"text":"ChipType[] | undefined","references":[{"name":"ChipType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ChipType","start":0,"end":8}]}},{"kind":"field","name":"supportReuse","type":{"text":"boolean | undefined"}}]},{"kind":"interface","name":"TEnvironments","type":{"text":"\"dev\" | \"qa\" | \"prod\""}},{"kind":"interface","name":"ICacheBatch","typeParameters":[{"name":"T"}],"members":[{"kind":"field","name":"cards","type":{"text":"T[]","references":[{"name":"T","start":0,"end":1}]}},{"kind":"field","name":"paging","type":{"text":"IPagedResponse","references":[{"name":"IPagedResponse","package":"@esri/arcgis-rest-types","start":0,"end":14}]}}]},{"kind":"interface","name":"ISortableItem","members":[{"kind":"field","name":"createdMs","type":{"text":"number"}},{"kind":"field","name":"numViews","type":{"text":"number"}},{"kind":"field","name":"title","type":{"text":"string"}}],"type":{"text":"{ [key: string]: any; }"}},{"kind":"interface","name":"ISpatialReference","members":[{"kind":"field","name":"label","type":{"text":"string"}},{"kind":"field","name":"wkid","type":{"text":"number"}},{"kind":"field","name":"defaultExtent","type":{"text":"string"}}]},{"kind":"interface","name":"IURLParamPair","members":[{"kind":"field","name":"k","type":{"text":"string"}},{"kind":"field","name":"v","type":{"text":"string"}}]},{"kind":"interface","name":"IRequestDeploySolution","members":[{"kind":"field","name":"card","type":{"text":"ISolutionInfoCard","references":[{"name":"ISolutionInfoCard","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"reuse","type":{"text":"boolean"}},{"kind":"field","name":"jobId","type":{"text":"string"}},{"kind":"field","name":"userOptions","type":{"text":"IUserOption[]","references":[{"name":"IUserOption","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IUserOption","start":0,"end":11}]}}]},{"kind":"interface","name":"IUserOption","members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"props","type":{"text":"IUserProp[]","references":[{"name":"IUserProp","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IUserProp","start":0,"end":9}]}},{"kind":"field","name":"accordionDisplay","type":{"text":"boolean | undefined"}}]},{"kind":"interface","name":"IUserProp","members":[{"kind":"field","name":"autoSelect","type":{"text":"boolean | undefined"}},{"kind":"field","name":"id","type":{"text":"string | undefined"}},{"kind":"field","name":"itemType","type":{"text":"string | undefined"}},{"kind":"field","name":"label","type":{"text":"string | undefined"}},{"kind":"field","name":"prop","type":{"text":"string | undefined"}},{"kind":"field","name":"default","type":{"text":"string | undefined"}},{"kind":"field","name":"value","type":{"text":"string | undefined"}},{"kind":"field","name":"responseValue","type":{"text":"string | undefined"}},{"kind":"field","name":"choices","type":{"text":"string[] | undefined"}},{"kind":"field","name":"valueType","type":{"text":"string | undefined"}},{"kind":"field","name":"attributes","type":{"text":"any | undefined"}},{"kind":"field","name":"validation","type":{"text":"any | undefined"}},{"kind":"field","name":"valid","type":{"text":"boolean | undefined"}},{"kind":"field","name":"validId","type":{"text":"boolean | undefined"}},{"kind":"field","name":"srSearchText","type":{"text":"string | undefined"}},{"kind":"field","name":"outType","type":{"text":"string | undefined"}},{"kind":"field","name":"loading","type":{"text":"boolean | undefined"}},{"kind":"field","name":"tooltip","type":{"text":"string | undefined"}},{"kind":"field","name":"name","type":{"text":"string | undefined"}},{"kind":"field","name":"title","type":{"text":"string | undefined"}},{"kind":"field","name":"itemUrl","type":{"text":"string | undefined"}},{"kind":"field","name":"existingItemId","type":{"text":"string | undefined"}}]},{"kind":"interface","name":"IValidNameStatus","members":[{"kind":"field","name":"status","type":{"text":"boolean"}},{"kind":"field","name":"type","type":{"text":"\"\" | \"empty\" | \"exceed length\" | \"not unique\" | \"special character\""}}]},{"kind":"interface","name":"TrackingEnv","type":{"text":"\"dev\" | \"qa\" | \"prod\" | \"\""}},{"kind":"interface","name":"IDeployProgressUpdate","members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"progress","type":{"text":"number"}}]},{"kind":"interface","name":"IDeployFailed","members":[{"kind":"field","name":"card","type":{"text":"ISolutionInfoCard","references":[{"name":"ISolutionInfoCard","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"jobId","type":{"text":"string"}},{"kind":"field","name":"error","type":{"text":"any | undefined"}}]},{"kind":"variable","name":"PORTAL_ADD_MEMBERS_TO_GROUP","type":{"text":"\"portal:user:addExternalMembersToGroup\""}},{"kind":"variable","name":"PORTAL_CREATE_ITEM","type":{"text":"\"portal:user:createItem\""}},{"kind":"variable","name":"PORTAL_CREATE_GROUP","type":{"text":"\"portal:user:createGroup\""}},{"kind":"variable","name":"PORTAL_PUBLISH_BD_ANALYTICS","type":{"text":"\"portal:publisher:publishBigDataAnalytics\""}},{"kind":"variable","name":"PORTAL_PUBLISH_FEATURES","type":{"text":"\"portal:publisher:publishFeatures\""}},{"kind":"variable","name":"PORTAL_PUBLISH_FEEDS","type":{"text":"\"portal:publisher:publishFeeds\""}},{"kind":"variable","name":"PORTAL_PUBLISH_GP","type":{"text":"\"portal:publisher:publishServerGPServices\""}},{"kind":"variable","name":"PORTAL_PUBLISH_RT_ANALYTICS","type":{"text":"\"portal:publisher:publishRealTimeAnalytics\""}},{"kind":"variable","name":"PORTAL_SHARE_TO_GROUP","type":{"text":"\"portal:user:shareToGroup\""}},{"kind":"variable","name":"SOLUTIONS_HUB_PREMIUM","type":{"text":"\"solutions:hubPremium\""}},{"kind":"variable","name":"SOLUTIONS_NOTEBOOK","type":{"text":"\"solutions:notebook\""}},{"kind":"variable","name":"SOLUTIONS_TRACKING_ADMIN_TRACKING","type":{"text":"\"solutions:locationtracking:admin:tracking\""}},{"kind":"variable","name":"SOLUTIONS_TRACKING","type":{"text":"\"solutions:locationtracking:tracking\""}},{"kind":"variable","name":"SOLUTIONS_TRACKING_ADMIN","type":{"text":"\"solutions:locationtracking:admin\""}},{"kind":"variable","name":"SOLUTIONS_VELOCITY","type":{"text":"\"solutions:velocity\""}},{"kind":"variable","name":"SOLUTIONS_WORKFLOW_MANAGER","type":{"text":"\"solutions:workflowManager\""}},{"kind":"interface","name":"IItemPreview","members":[{"kind":"field","name":"name","type":{"text":"string"}},{"kind":"field","name":"format","type":{"text":"string"}},{"kind":"field","name":"alt","type":{"text":"string"}},{"kind":"field","name":"description","type":{"text":"string | undefined"}}]},{"kind":"interface","name":"IInfoProduct","members":[{"kind":"field","name":"item","type":{"text":"string"}},{"kind":"field","name":"description","type":{"text":"string"}},{"kind":"field","name":"userType","type":{"text":"string"}}]},{"kind":"interface","name":"IReleaseNote","members":[{"kind":"field","name":"version","type":{"text":"string"}},{"kind":"field","name":"description","type":{"text":"string"}}]},{"kind":"interface","name":"IItemProperties","members":[{"kind":"field","name":"schemaVersion","type":{"text":"number"}},{"kind":"field","name":"learnMoreUrl","type":{"text":"string"}},{"kind":"field","name":"preview","type":{"text":"IItemPreview[]","references":[{"name":"IItemPreview","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IItemPreview","start":0,"end":12}]}},{"kind":"field","name":"relatedSolutions","type":{"text":"string[]"}},{"kind":"field","name":"requirements","type":{"text":"string[]"}},{"kind":"field","name":"infoProducts","type":{"text":"IInfoProduct[]","references":[{"name":"IInfoProduct","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IInfoProduct","start":0,"end":12}]}},{"kind":"field","name":"releaseNotes","type":{"text":"IReleaseNote[]","references":[{"name":"IReleaseNote","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IReleaseNote","start":0,"end":12}]}},{"kind":"field","name":"dataDictionaryURL","type":{"text":"string"}},{"kind":"field","name":"demoURL","type":{"text":"string"}},{"kind":"field","name":"relatedResources","type":{"text":"any[]"}}]},{"kind":"interface","name":"IPrivilegeMessages","members":[{"kind":"field","name":"leadingMessages","type":{"text":"string[]"}},{"kind":"field","name":"bulletedMessages","type":{"text":"string[]"}},{"kind":"field","name":"trailingMessages","type":{"text":"string[]"}}]},{"kind":"interface","name":"IDeployedSolutionCardRefs","type":{"text":"{ [key: string]: SolutionDeployedCard; }","references":[{"name":"SolutionDeployedCard","module":"components/solution-deployed-card","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/solution-deployed-card/#SolutionDeployedCard","start":17,"end":37}]}},{"kind":"variable","name":"ITEM_TITLE_LENGTH","type":{"text":"250"}},{"kind":"interface","name":"DeployAppTab","type":{"text":"\"all-solutions\" | \"deployments\" | \"details\" | \"resources\" | \"deployed-card\" | \"my-content\""}},{"kind":"interface","name":"IActiveTab","members":[{"kind":"field","name":"tabType","type":{"text":"DeployAppTab","references":[{"name":"DeployAppTab","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}]}},{"kind":"field","name":"tabTitleOrId","type":{"text":"string"}}]},{"kind":"interface","name":"FieldSortType","type":{"text":"\"default\" | \"display\" | \"field\" | \"type\""}},{"kind":"interface","name":"NameType","type":{"text":"\"folder\" | \"item\""}},{"kind":"variable","name":"TELEMETRY_CATEGORY","type":{"text":"{\n readonly SOLUTION_DETAILS: \"Solution Details\";\n readonly GLOBAL_NAVIGATION: \"Global Nav\";\n readonly ALL_SOLUTIONS: \"Solutions\";\n readonly DEPLOYMENTS: \"Deployments\";\n readonly ASSISTANT: \"Assistant\";\n readonly RESOURCES: \"Resources\";\n}"}},{"kind":"interface","name":"TelemetryCategory","type":{"text":"typeof TELEMETRY_CATEGORY[keyof typeof TELEMETRY_CATEGORY]","references":[{"name":"TELEMETRY_CATEGORY","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#TELEMETRY_CATEGORY","start":7,"end":25},{"name":"TELEMETRY_CATEGORY","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#TELEMETRY_CATEGORY","start":39,"end":57}]}},{"kind":"interface","name":"ITelemetryDimensions","members":[{"kind":"field","name":"dimension1","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension2","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension3","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension4","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension5","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension6","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension7","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension8","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension9","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension10","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension11","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension12","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension13","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension14","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension15","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension16","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension17","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension18","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension19","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension20","type":{"text":"string | undefined"}}]},{"kind":"interface","name":"ITelemetryMetrics","members":[{"kind":"field","name":"metric1","type":{"text":"number | undefined"}},{"kind":"field","name":"metric2","type":{"text":"number | undefined"}},{"kind":"field","name":"metric3","type":{"text":"number | undefined"}},{"kind":"field","name":"metric4","type":{"text":"number | undefined"}},{"kind":"field","name":"metric5","type":{"text":"number | undefined"}},{"kind":"field","name":"metric6","type":{"text":"number | undefined"}},{"kind":"field","name":"metric7","type":{"text":"number | undefined"}},{"kind":"field","name":"metric8","type":{"text":"number | undefined"}},{"kind":"field","name":"metric9","type":{"text":"number | undefined"}},{"kind":"field","name":"metric10","type":{"text":"number | undefined"}},{"kind":"field","name":"metric11","type":{"text":"number | undefined"}},{"kind":"field","name":"metric12","type":{"text":"number | undefined"}},{"kind":"field","name":"metric13","type":{"text":"number | undefined"}},{"kind":"field","name":"metric14","type":{"text":"number | undefined"}},{"kind":"field","name":"metric15","type":{"text":"number | undefined"}},{"kind":"field","name":"metric16","type":{"text":"number | undefined"}},{"kind":"field","name":"metric17","type":{"text":"number | undefined"}},{"kind":"field","name":"metric18","type":{"text":"number | undefined"}},{"kind":"field","name":"metric19","type":{"text":"number | undefined"}},{"kind":"field","name":"metric20","type":{"text":"number | undefined"}}]},{"kind":"interface","name":"ITelemetrySession","members":[{"kind":"field","name":"instance","type":{"text":"Telemetry | undefined","references":[{"name":"Telemetry","package":"@esri/telemetry","start":0,"end":9}]}},{"kind":"field","name":"logEvent","type":{"text":"(options: {\n category: string;\n action: string;\n label?: string;\n details?: string;\n dimensions?: string[];\n metrics?: number[];\n}) => void"}},{"kind":"field","name":"enabled","type":{"text":"boolean"}}]},{"kind":"interface","name":"ITelemetryOptions","members":[{"kind":"field","name":"name","type":{"text":"string"}},{"kind":"field","name":"version","type":{"text":"string"}},{"kind":"field","name":"dev","type":{"text":"IAmazonTelemetryOptions | undefined","references":[{"name":"IAmazonTelemetryOptions","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IAmazonTelemetryOptions","start":0,"end":23}]}},{"kind":"field","name":"prod","type":{"text":"IAmazonTelemetryOptions | undefined","references":[{"name":"IAmazonTelemetryOptions","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IAmazonTelemetryOptions","start":0,"end":23}]}},{"kind":"field","name":"qa","type":{"text":"IAmazonTelemetryOptions | undefined","references":[{"name":"IAmazonTelemetryOptions","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IAmazonTelemetryOptions","start":0,"end":23}]}}]},{"kind":"interface","name":"IAmazonTelemetryOptions","members":[{"kind":"field","name":"amazon","type":{"text":"{\n userPoolID: string;\n app: { id: string; };\n}"}}]},{"kind":"interface","name":"IAppConfig","members":[{"kind":"field","name":"agolPortalUrl","type":{"text":"string"}},{"kind":"field","name":"anonAgolSession","type":{"text":"UserSession | undefined","references":[{"name":"UserSession","package":"@esri/solution-common","start":0,"end":11}]}},{"kind":"field","name":"authentication","type":{"text":"Auth | undefined","references":[{"name":"Auth","module":"utils/Auth","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/Auth/#Auth","start":0,"end":4}]}},{"kind":"field","name":"agoBasedEnterpriseSolutionsGroupId","type":{"text":"string"}},{"kind":"field","name":"appId","type":{"text":"string"}},{"kind":"field","name":"diagramKey","type":{"text":"string"}},{"kind":"field","name":"isEnterprise","type":{"text":"boolean"}},{"kind":"field","name":"languageDirection","type":{"text":"\"ltr\" | \"rtl\" | undefined"}},{"kind":"field","name":"languageResource","type":{"text":"string | undefined"}},{"kind":"field","name":"locale","type":{"text":"string"}},{"kind":"field","name":"orgUrl","type":{"text":"string"}},{"kind":"field","name":"page","type":{"text":"IAppPage | undefined","references":[{"name":"IAppPage","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IAppPage","start":0,"end":8}]}},{"kind":"field","name":"portalURL","type":{"text":"string"}},{"kind":"field","name":"primarySolutionsGroupId","type":{"text":"string"}},{"kind":"field","name":"userSession","type":{"text":"UserSession | undefined","references":[{"name":"UserSession","package":"@esri/solution-common","start":0,"end":11}]}},{"kind":"field","name":"allCards","type":{"text":"ISolutionInfoCard[]","references":[{"name":"ISolutionInfoCard","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"telemetrySession","type":{"text":"ITelemetrySession | undefined","references":[{"name":"ITelemetrySession","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ITelemetrySession","start":0,"end":17}]}},{"kind":"field","name":"measurementIds","type":{"text":"string[] | undefined"}},{"kind":"field","name":"cookiesFirstUseVar","type":{"text":"string | undefined"}},{"kind":"field","name":"trackingEnabled","type":{"text":"boolean | undefined"}},{"kind":"field","name":"forceTrackingEnv","type":{"text":"TEnvironments | \"\" | undefined","references":[{"name":"TEnvironments","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#TEnvironments","start":0,"end":13}]}},{"kind":"field","name":"telemetry","type":{"text":"ITelemetryOptions | undefined","references":[{"name":"ITelemetryOptions","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ITelemetryOptions","start":0,"end":17}]}},{"kind":"field","name":"v1SolutionId","type":{"text":"string | undefined"}},{"kind":"field","name":"queryParams","type":{"text":"IQueryParams | undefined","references":[{"name":"IQueryParams","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IQueryParams","start":0,"end":12}]}}]},{"kind":"interface","name":"IAppPage","members":[{"kind":"field","name":"pageType","type":{"text":"DeployAppTab","references":[{"name":"DeployAppTab","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}]}},{"kind":"field","name":"solutionTitleOrId","type":{"text":"string | undefined"}}]},{"kind":"interface","name":"IAppPageInit","members":[{"kind":"field","name":"page","type":{"text":"IAppPage","references":[{"name":"IAppPage","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IAppPage","start":0,"end":8}]}},{"kind":"field","name":"v1SolutionId","type":{"text":"string | undefined"}},{"kind":"field","name":"queryParams","type":{"text":"IQueryParams","references":[{"name":"IQueryParams","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IQueryParams","start":0,"end":12}]}}]},{"kind":"interface","name":"IQueryParams","members":[{"kind":"field","name":"domain","type":{"text":"string | null"}},{"kind":"field","name":"industry","type":{"text":"string | null"}},{"kind":"field","name":"locale","type":{"text":"string"}},{"kind":"field","name":"offerType","type":{"text":"string | null"}},{"kind":"field","name":"searchTerm","type":{"text":"string | null"}},{"kind":"field","name":"sortField","type":{"text":"string | null"}},{"kind":"field","name":"signInParam","type":{"text":"string | null"}},{"kind":"field","name":"filter","type":{"text":"string | null"}}]},{"kind":"variable","name":"EDeploymentsTypeFilter","type":{"text":"{\n MINE: string;\n ORG: string;\n}"}},{"kind":"variable","name":"EOfferType","type":{"text":"{\n BOTH: string;\n NEW: string;\n SUGGESTED: string;\n}"}},{"kind":"variable","name":"ESortField","type":{"text":"{\n NEW: string;\n NUMVIEWS: string;\n RELEVANCE: string;\n SUGGESTED: string;\n TITLE: string;\n UPDATED: string;\n}"}},{"kind":"variable","name":"ESignInParam","type":{"text":"{\n DEPLOY: string;\n AIOPEN: string;\n}"}},{"kind":"interface","name":"IQuickLink","members":[{"kind":"field","name":"icon","type":{"text":"Icon[\"icon\"]","references":[{"name":"Icon","module":"components/calcite-icon","package":"@esri/calcite-components","start":0,"end":4}]}},{"kind":"field","name":"label","type":{"text":"string"}},{"kind":"field","name":"url","type":{"text":"string"}}]},{"kind":"interface","name":"INavTab","members":[{"kind":"field","name":"tabType","type":{"text":"DeployAppTab","references":[{"name":"DeployAppTab","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}]}},{"kind":"field","name":"card","type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}}]},{"kind":"interface","name":"IDeployCard","members":[{"kind":"field","name":"card","type":{"text":"ISolutionInfoCard","references":[{"name":"ISolutionInfoCard","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"cardRef","type":{"text":"SolutionDeployedCard | undefined","references":[{"name":"SolutionDeployedCard","module":"components/solution-deployed-card","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/solution-deployed-card/#SolutionDeployedCard","start":0,"end":20}]}}]},{"kind":"interface","name":"IDeployingCarouselMessage","members":[{"kind":"field","name":"message","type":{"text":"string"}},{"kind":"field","name":"url","type":{"text":"string | undefined"}},{"kind":"field","name":"icon","type":{"text":"Icon[\"icon\"] | undefined","references":[{"name":"Icon","module":"components/calcite-icon","package":"@esri/calcite-components","start":0,"end":4}]}}]},{"kind":"interface","name":"IOrgSettings","members":[{"kind":"field","name":"aiAssistantsEnabled","type":{"text":"boolean | undefined"}},{"kind":"field","name":"blockBetaApps","type":{"text":"boolean | undefined"}},{"kind":"field","name":"colocateCompute","type":{"text":"boolean | undefined"}},{"kind":"field","name":"searchArcGISOnlineEnabled","type":{"text":"boolean | undefined"}}]},{"kind":"interface","name":"ResourceCard","members":[{"kind":"field","name":"icon","type":{"text":"string | undefined"}},{"kind":"field","name":"meridianIcon","type":{"text":"string | undefined"}},{"kind":"field","name":"heading","type":{"text":"string"}},{"kind":"field","name":"description","type":{"text":"string"}},{"kind":"field","name":"url","type":{"text":"string | undefined"}},{"kind":"field","name":"headingEn","type":{"text":"string | undefined"}},{"kind":"field","name":"sectionHeadingEn","type":{"text":"string | undefined"}}]},{"kind":"interface","name":"IDeployCardFetchFailed","members":[{"kind":"field","name":"title","type":{"text":"string"}},{"kind":"field","name":"message","type":{"text":"string"}}]}]}]}
1
+ {"timestamp":"2026-02-23T03:45:18","compiler":{"name":"@arcgis/lumina-compiler","version":"5.0.0","typescriptVersion":"5.9.3"},"schemaVersion":"2.1.0","modules":[{"kind":"javascript-module","path":"index","sourcePath":"src/index.ts","declarations":[{"kind":"function","name":"getAssetPath","description":"Get a resolved path from where an asset can be loaded.","parameters":[{"name":"suffix","description":"The relative path for the asset.","type":{"text":"string"}}],"return":{"type":{"text":"string"}}},{"kind":"function","name":"setAssetPath","description":"Used to manually set the base path where package assets (like localization\nand icons) can be found.\n\nBy default, the package assets are loaded from\n`https://js.arcgis.com/<version>/<simplified-package-name>/`. We are hosting\nour assets on a CDN (Content Delivery Network) to ensure fast and reliable\naccess. It is CORS-enabled, so you can load the assets from any domain. This\nis the recommended way to load the assets and avoid bundling them with your\napplication.\n\nHowever, if you need to host the assets locally, you can copy them manually\nas part of your build process and use `setAssetPath` to customize where the\nbrowser will load the assets from.","parameters":[{"name":"path","description":"Relative or absolute path to the assets folder.","type":{"text":"URL | string","references":[{"name":"URL","package":"global:","viewUrl":"https://developer.mozilla.org/docs/Web/API/URL","start":0,"end":3}]}}],"return":{"type":{"text":"void"}}}]},{"kind":"javascript-module","path":"components/arcgis-solutions-assistant","sourcePath":"src/components/arcgis-solutions-assistant/arcgis-solutions-assistant.tsx","declarations":[{"kind":"class","name":"ArcgisSolutionsAssistant","customElement":true,"tagName":"arcgis-solutions-assistant","pascalCaseName":"ArcgisSolutionsAssistant","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"open","description":"Flag to open or close panel","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"open"},{"kind":"field","name":"serverRoot","description":"Define the AI server to access","type":{"text":"string","values":[{"type":"string"}]},"default":"'https://aiservices-beta.arcgis.com'","attribute":"server-root"},{"kind":"field","name":"userFirstName","description":"First name of user for personal approach","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"user-first-name"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst arcgisSolutionsAssistant = document.querySelector(\"arcgis-solutions-assistant\");\ndocument.body.append(arcgisSolutionsAssistant);\nawait arcgisSolutionsAssistant.componentOnReady();\nconsole.log(\"arcgis-solutions-assistant is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"handleSendMessage","description":"Submits a query to the AI Assitant based on what is in the input textarea.\nIf there is an exisitng conversation, the conversation id is also sent along.","parameters":[{"name":"inputValue","description":"The request to send to the assistant","type":{"text":"string"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(inputValue: string): Promise<void>"},{"kind":"method","name":"loopRequest","description":"Calls the AI (polling) until there is no additional requests.\nAlong the way id there is a message or context, process and show.\nIf it is solution question, start off a new request to Doc Assistant.","parameters":[{"name":"response","description":"stores the conversation and inquiry id","type":{"text":"ConversationResponse","references":[{"name":"ConversationResponse","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/arcgis-solutions-assistant/#ConversationResponse","start":0,"end":20}]}},{"name":"requestURL","description":"AI server to request","type":{"text":"string"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(response: ConversationResponse, requestURL: string): Promise<void>"},{"kind":"method","name":"requestAIServer","description":"Request sent to the AI server via fetch.\nALong the way id there is a message or context, process and show.","parameters":[{"name":"requestInfo","description":"the request object to send to the server","type":{"text":"unknown"}},{"name":"requestURL","description":"AI server to request","type":{"text":"string"}}],"return":{"type":{"text":"Promise<ConversationResponse>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7},{"name":"ConversationResponse","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/arcgis-solutions-assistant/#ConversationResponse","start":8,"end":28}]}},"signature":"(requestInfo: unknown, requestURL: string): Promise<ConversationResponse>"},{"kind":"method","name":"resetChat","description":"Resets the message history and clears the chat window.","return":{"type":{"text":"void"}},"signature":"(): void"}],"attributes":[{"name":"open","description":"Flag to open or close panel","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"open"},{"name":"server-root","description":"Define the AI server to access","type":{"text":"string","values":[{"type":"string"}]},"default":"'https://aiservices-beta.arcgis.com'","fieldName":"serverRoot"},{"name":"user-first-name","description":"First name of user for personal approach","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"userFirstName"}],"events":[{"name":"closeAssistant","description":"Emitted on demand when cards are fetched","type":{"text":"boolean"}}],"importPath":"components/arcgis-solutions-assistant"},{"kind":"interface","name":"ConversationResponse","members":[{"kind":"field","name":"conversationId","type":{"text":"string"}},{"kind":"field","name":"inquiryId","type":{"text":"string"}},{"kind":"field","name":"sequenceNumber","type":{"text":"number"}},{"kind":"field","name":"message","type":{"text":"string | null | undefined"}},{"kind":"field","name":"context","type":{"text":"ConversationContext | undefined","references":[{"name":"ConversationContext","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/arcgis-solutions-assistant/#ConversationContext","start":0,"end":19}]}},{"kind":"field","name":"hasMore","type":{"text":"boolean"}}]},{"kind":"interface","name":"ConversationContext","members":[{"kind":"field","name":"kind","type":{"text":"string"}},{"kind":"field","name":"author","type":{"text":"AuthorType | undefined","references":[{"name":"AuthorType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/arcgis-solutions-assistant/#AuthorType","start":0,"end":10}]}},{"kind":"field","name":"intent","type":{"text":"IntentType | undefined","references":[{"name":"IntentType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/arcgis-solutions-assistant/#IntentType","start":0,"end":10}]}},{"kind":"field","name":"results","type":{"text":"SuggestedSolutions[] | DocAssistantResultContext[] | unknown[] | undefined","references":[{"name":"SuggestedSolutions","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/arcgis-solutions-assistant/#SuggestedSolutions","start":0,"end":18},{"name":"DocAssistantResultContext","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/arcgis-solutions-assistant/#DocAssistantResultContext","start":23,"end":48}]}}]},{"kind":"interface","name":"SuggestedSolutions","members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"title","type":{"text":"string"}},{"kind":"field","name":"snippet","type":{"text":"string"}},{"kind":"field","name":"thumbnail","type":{"text":"string"}}]},{"kind":"interface","name":"DocAssistantResultContext","members":[{"kind":"field","name":"reply","type":{"text":"string"}},{"kind":"field","name":"ref","type":{"text":"DocAssistantResultRef[]","references":[{"name":"DocAssistantResultRef","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/arcgis-solutions-assistant/#DocAssistantResultRef","start":0,"end":21}]}},{"kind":"field","name":"followupQuestions","type":{"text":"string[]"}},{"kind":"field","name":"status","type":{"text":"DocAssistantResultStatus","references":[{"name":"DocAssistantResultStatus","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/arcgis-solutions-assistant/#DocAssistantResultStatus","start":0,"end":24}]}}]},{"kind":"interface","name":"DocAssistantResultRef","members":[{"kind":"field","name":"url","type":{"text":"string"}},{"kind":"field","name":"title","type":{"text":"string"}},{"kind":"field","name":"score","type":{"text":"number"}},{"kind":"field","name":"product","type":{"text":"string"}},{"kind":"field","name":"productMatch","type":{"text":"boolean"}}]},{"kind":"interface","name":"DocAssistantResultStatus","members":[{"kind":"field","name":"currentStatusMessage","type":{"text":"string"}},{"kind":"field","name":"currentStatusStep","type":{"text":"number"}}]},{"kind":"interface","name":"IntentType","type":{"text":"\"Recommend solution\" | \"Solution question\" | \"Other\" | \"Error\""}},{"kind":"interface","name":"AuthorType","type":{"text":"\"human\" | \"ai\" | \"system\""}}],"exports":[{"kind":"custom-element-definition","name":"arcgis-solutions-assistant","declaration":{"name":"ArcgisSolutionsAssistant"}}]},{"kind":"javascript-module","path":"components/buffer-tools","sourcePath":"src/components/buffer-tools/buffer-tools.tsx","declarations":[{"kind":"class","name":"BufferTools","customElement":true,"tagName":"buffer-tools","pascalCaseName":"BufferTools","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"appearance","description":"string: The appearance of display. Can be a 'slider' or 'text' inputs for distance/value","type":{"text":"\"slider\" | \"text\"","values":[{"type":"string","value":"slider"},{"type":"string","value":"text"}]},"default":"'text'","attribute":"appearance"},{"kind":"field","name":"disabled","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"disabled"},{"kind":"field","name":"distance","description":"number: The distance used for buffer","type":{"text":"number","values":[{"type":"number"}]},"default":"0","attribute":"distance"},{"kind":"field","name":"geometries","description":"esri/geometry/Geometry: https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Geometry.html","type":{"text":"__esri.Geometry[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"max","description":"number: The component's maximum selectable value.","type":{"text":"number","values":[{"type":"number"}]},"default":"0","attribute":"max"},{"kind":"field","name":"min","description":"number: The component's minimum selectable value.","type":{"text":"number","values":[{"type":"number"}]},"default":"0","attribute":"min"},{"kind":"field","name":"sliderTicks","description":"number: Displays tick marks on the number line at a specified interval.","type":{"text":"number","values":[{"type":"number"}]},"default":"10","attribute":"slider-ticks"},{"kind":"field","name":"unionResults","description":"boolean: option to control if buffer results should be unioned","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"union-results"},{"kind":"field","name":"unit","description":"DistanceUnit: 'feet'|'meters'|'miles'|'kilometers'","type":{"text":"DistanceUnit","references":[{"name":"DistanceUnit","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DistanceUnit","start":0,"end":12}],"values":[{"type":"string","value":"meters"},{"type":"string","value":"feet"},{"type":"string","value":"miles"},{"type":"string","value":"kilometers"}]},"default":"'meters'","attribute":"unit"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst bufferTools = document.querySelector(\"buffer-tools\");\ndocument.body.append(bufferTools);\nawait bufferTools.componentOnReady();\nconsole.log(\"buffer-tools is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"getTranslatedUnit","description":"Get the translated unit for display","parameters":[{"name":"unit","type":{"text":"string"}}],"return":{"description":"Promise resolving with the translated unit","type":{"text":"Promise<string>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(unit: string): Promise<string>"}],"attributes":[{"name":"appearance","description":"string: The appearance of display. Can be a 'slider' or 'text' inputs for distance/value","type":{"text":"\"slider\" | \"text\"","values":[{"type":"string","value":"slider"},{"type":"string","value":"text"}]},"default":"'text'","fieldName":"appearance"},{"name":"disabled","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"disabled"},{"name":"distance","description":"number: The distance used for buffer","type":{"text":"number","values":[{"type":"number"}]},"default":"0","fieldName":"distance"},{"name":"max","description":"number: The component's maximum selectable value.","type":{"text":"number","values":[{"type":"number"}]},"default":"0","fieldName":"max"},{"name":"min","description":"number: The component's minimum selectable value.","type":{"text":"number","values":[{"type":"number"}]},"default":"0","fieldName":"min"},{"name":"slider-ticks","description":"number: Displays tick marks on the number line at a specified interval.","type":{"text":"number","values":[{"type":"number"}]},"default":"10","fieldName":"sliderTicks"},{"name":"union-results","description":"boolean: option to control if buffer results should be unioned","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"unionResults"},{"name":"unit","description":"DistanceUnit: 'feet'|'meters'|'miles'|'kilometers'","type":{"text":"\"meters\" | \"feet\" | \"miles\" | \"kilometers\"","values":[{"type":"string","value":"meters"},{"type":"string","value":"feet"},{"type":"string","value":"miles"},{"type":"string","value":"kilometers"}]},"default":"'meters'","fieldName":"unit"}],"events":[{"name":"bufferComplete","description":"Emitted on demand when a buffer is generated.","type":{"text":"__esri.Polygon | __esri.Polygon[] | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7},{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":17,"end":24}]}},{"name":"distanceChanged","description":"Emitted on demand when the distance value changes","type":{"text":"IValueChange","references":[{"name":"IValueChange","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IValueChange","start":0,"end":12}]}},{"name":"unitChanged","description":"Emitted on demand when the unit changes","type":{"text":"IValueChange","references":[{"name":"IValueChange","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IValueChange","start":0,"end":12}]}}],"importPath":"components/buffer-tools"}],"exports":[{"kind":"custom-element-definition","name":"buffer-tools","declaration":{"name":"BufferTools"}}]},{"kind":"javascript-module","path":"components/card-manager","sourcePath":"src/components/card-manager/card-manager.tsx","declarations":[{"kind":"class","name":"CardManager","customElement":true,"tagName":"card-manager","pascalCaseName":"CardManager","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"createBtnLabel","description":"string: Label to show for create button","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"create-btn-label"},{"kind":"field","name":"customInfoText","description":"string: custom notice text to display","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"custom-info-text"},{"kind":"field","name":"enableCreateFeatures","description":"boolean: when true the users can have the option to create features","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-create-features"},{"kind":"field","name":"enableEditGeometry","description":"When true the geometry of the current feature will be editable","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-edit-geometry"},{"kind":"field","name":"enableSnapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-snapping"},{"kind":"field","name":"isMobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-mobile"},{"kind":"field","name":"layerOrTable","description":"esri/views/layers/FeatureLayer: https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html\nShould be a layer or table","type":{"text":"__esri.FeatureLayer | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"selectedFeaturesIds","description":"A list of ids that are currently selected","type":{"text":"(number | string)[]"}},{"kind":"field","name":"selectingFeatureFromMap","description":"boolean: When select feature from map message will shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"selecting-feature-from-map"},{"kind":"field","name":"showSketchWidgets","description":"boolean: When true the sketch widgets will be shown in the create feature component","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-sketch-widgets"},{"kind":"field","name":"zoomAndScrollToSelected","description":"boolean: When true the selected feature will zoomed to in the map and the row will be scrolled to within the table","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"zoom-and-scroll-to-selected"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst cardManager = document.querySelector(\"card-manager\");\ndocument.body.append(cardManager);\nawait cardManager.componentOnReady();\nconsole.log(\"card-manager is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"create-btn-label","description":"string: Label to show for create button","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"createBtnLabel"},{"name":"custom-info-text","description":"string: custom notice text to display","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"customInfoText"},{"name":"enable-create-features","description":"boolean: when true the users can have the option to create features","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableCreateFeatures"},{"name":"enable-edit-geometry","description":"When true the geometry of the current feature will be editable","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableEditGeometry"},{"name":"enable-snapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSnapping"},{"name":"is-mobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMobile"},{"name":"selecting-feature-from-map","description":"boolean: When select feature from map message will shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"selectingFeatureFromMap"},{"name":"show-sketch-widgets","description":"boolean: When true the sketch widgets will be shown in the create feature component","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showSketchWidgets"},{"name":"zoom-and-scroll-to-selected","description":"boolean: When true the selected feature will zoomed to in the map and the row will be scrolled to within the table","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"zoomAndScrollToSelected"}],"events":[{"name":"backFromCreateWorkFlow","description":"Emits when back from create work flow","type":{"text":"void"}},{"name":"createWorkFlowStarted","description":"Emits when create work flow started","type":{"text":"void"}},{"name":"featureOrRecordSubmitted","description":"Emits when feature/record is submitted","type":{"text":"void"}}],"importPath":"components/card-manager"}],"exports":[{"kind":"custom-element-definition","name":"card-manager","declaration":{"name":"CardManager"}}]},{"kind":"javascript-module","path":"components/consent-manager","sourcePath":"src/components/consent-manager/consent-manager.tsx","declarations":[{"kind":"class","name":"ConsentManager","customElement":true,"tagName":"consent-manager","pascalCaseName":"ConsentManager","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"amazonAppId","description":"string: The app id for the amazon tracking instance","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"amazon-app-id"},{"kind":"field","name":"amazonAppName","description":"string: The app name for the amazon tracking instance","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"amazon-app-name"},{"kind":"field","name":"amazonUserPoolID","description":"string: The user pool id for the amazon tracking instance","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"amazon-user-pool-id"},{"kind":"field","name":"amazonVersion","description":"string: The version for the amazon tracking instance","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"amazon-version"},{"kind":"field","name":"firstUseVar","description":"string: The name to use for the variable stored in the browsers local storge that\nwill keep track of the users choice for consent\nTODO: [MIGRATION] This property was marked as required in your Stencil component. If you didn't mean it to be required, feel free to remove `@required` tag.\nOtherwise, read the documentation about required properties: https://qawebgis.esri.com/components/lumina/properties#string-properties","docsTags":[{"name":"required"}],"type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"first-use-var"},{"kind":"field","name":"measurementIds","description":"string[]: Any ids for the analytics configured to receive events from the telemety instance","type":{"text":"string[]"}},{"kind":"field","name":"portal","description":"esri/portal/Portal: https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html","type":{"text":"__esri.Portal | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst consentManager = document.querySelector(\"consent-manager\");\ndocument.body.append(consentManager);\nawait consentManager.componentOnReady();\nconsole.log(\"consent-manager is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"getInstance","description":"Initialize and return the telemetry instance if consent has been granted","return":{"type":{"text":"Promise<Telemetry | undefined>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7},{"name":"Telemetry","package":"@esri/telemetry","start":8,"end":17}]}},"signature":"(): Promise<Telemetry | undefined>"}],"attributes":[{"name":"amazon-app-id","description":"string: The app id for the amazon tracking instance","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"amazonAppId"},{"name":"amazon-app-name","description":"string: The app name for the amazon tracking instance","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"amazonAppName"},{"name":"amazon-user-pool-id","description":"string: The user pool id for the amazon tracking instance","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"amazonUserPoolID"},{"name":"amazon-version","description":"string: The version for the amazon tracking instance","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"amazonVersion"},{"name":"first-use-var","description":"string: The name to use for the variable stored in the browsers local storge that\nwill keep track of the users choice for consent\nTODO: [MIGRATION] This property was marked as required in your Stencil component. If you didn't mean it to be required, feel free to remove `@required` tag.\nOtherwise, read the documentation about required properties: https://qawebgis.esri.com/components/lumina/properties#string-properties","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"firstUseVar"}],"events":[{"name":"consentGranted","description":"Emitted on demand when the user accepts or denies consent","type":{"text":"IConsentResponse","references":[{"name":"IConsentResponse","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IConsentResponse","start":0,"end":16}]}}],"importPath":"components/consent-manager"}],"exports":[{"kind":"custom-element-definition","name":"consent-manager","declaration":{"name":"ConsentManager"}}]},{"kind":"javascript-module","path":"components/create-feature","sourcePath":"src/components/create-feature/create-feature.tsx","declarations":[{"kind":"class","name":"CreateFeature","customElement":true,"tagName":"create-feature","pascalCaseName":"CreateFeature","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"aiImageExtraction","description":"array: Configured AI image extraction field and prompt for the selected LayerId","type":{"text":"IImageExtraction[] | undefined","references":[{"name":"IImageExtraction","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IImageExtraction","start":0,"end":16}]}},{"kind":"field","name":"allowMultipleCreation","description":"boolean: When true user can create multiple features","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"allow-multiple-creation"},{"kind":"field","name":"appName","description":"string: The name of Instant Apps application (e.g., \"reporter\", \"manager\") used in the request source header","type":{"text":"string | undefined","values":[{"type":"string"}]},"attribute":"app-name"},{"kind":"field","name":"customizeSubmit","description":"boolean: Set this to true when have a custom submit button in the app.\nThis will hide the header and footer elements of the editor and user needs to execute the submit method manually.","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"customize-submit"},{"kind":"field","name":"enablePhotoLocation","description":"boolean: When true photo get location from the photo selected for AI image Extraction","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-photo-location"},{"kind":"field","name":"enableSearch","description":"boolean: When true the Search box will be displayed","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-search"},{"kind":"field","name":"enableSnapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-snapping"},{"kind":"field","name":"floorLevel","description":"string: selected floor level","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"floor-level"},{"kind":"field","name":"formElements","description":"string: selected floor level","type":{"text":"any","values":[{"type":"any"}]},"attribute":"form-elements"},{"kind":"field","name":"isMobile","description":"boolean: When true the application will be in mobile mode, controls the mobile or desktop view","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-mobile"},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"popupEnabled","description":"boolean: When true clicking on a feature on the map will display a popup","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"popup-enabled"},{"kind":"field","name":"reportingArea","description":"boolean: When true reporting area layer should be honored if it exists","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"reporting-area"},{"kind":"field","name":"reportingAreaLayer","description":"string: polygon layer for the reporting feature","type":{"text":"string | undefined","values":[{"type":"string"}]},"default":"''","attribute":"reporting-area-layer"},{"kind":"field","name":"reportingAreaMessage","description":"string: Message to be displayed when feature is outside the reportingAreaLayer","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"reporting-area-message"},{"kind":"field","name":"searchConfiguration","description":"ISearchConfiguration: Configuration details for the Search widget","type":{"text":"ISearchConfiguration | undefined","references":[{"name":"ISearchConfiguration","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchConfiguration","start":0,"end":20}]}},{"kind":"field","name":"selectedLayerId","description":"string: Layer id of the feature layer in which the new feature is to be created","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"selected-layer-id"},{"kind":"field","name":"showGuidingMsg","description":"boolean: When true the notice message with the current state should be shown","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"true","attribute":"show-guiding-msg"},{"kind":"field","name":"showLayerVisibilityMsg","description":"boolean: When true the layer visibility message will be shown","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"show-layer-visibility-msg"},{"kind":"field","name":"showSketchWidgets","description":"boolean: When true Editor's sketch widgets will be displayed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-sketch-widgets"},{"kind":"field","name":"submitNewReportsMessage","description":"string: Text to be displayed that will allow user to know they can submit new reports","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"submit-new-reports-message"},{"kind":"field","name":"updateMapPosition","description":"boolean: When true the map should shown in the editor component in mobile mode (while drawing graphic)","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"update-map-position"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst createFeature = document.querySelector(\"create-feature\");\ndocument.body.append(createFeature);\nawait createFeature.componentOnReady();\nconsole.log(\"create-feature is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"refresh","description":"Refreshes the editor state, optionally updating the floor level.","parameters":[{"name":"floorLevel","description":"(Optional) The floor level to set. If provided, the editor updates to this floor level.","optional":true,"type":{"text":"string"}}],"return":{"description":"A promise that resolves when the refresh operation is complete.","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(floorLevel?: string): Promise<void>"},{"kind":"method","name":"showForm","description":"Shows feature form","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"submit","description":"Submit the created feature","return":{"description":"Promise that resolves when the operation is complete","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"}],"attributes":[{"name":"allow-multiple-creation","description":"boolean: When true user can create multiple features","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"allowMultipleCreation"},{"name":"app-name","description":"string: The name of Instant Apps application (e.g., \"reporter\", \"manager\") used in the request source header","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"appName"},{"name":"customize-submit","description":"boolean: Set this to true when have a custom submit button in the app.\nThis will hide the header and footer elements of the editor and user needs to execute the submit method manually.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"customizeSubmit"},{"name":"enable-photo-location","description":"boolean: When true photo get location from the photo selected for AI image Extraction","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enablePhotoLocation"},{"name":"enable-search","description":"boolean: When true the Search box will be displayed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSearch"},{"name":"enable-snapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSnapping"},{"name":"floor-level","description":"string: selected floor level","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"floorLevel"},{"name":"form-elements","description":"string: selected floor level","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"formElements"},{"name":"is-mobile","description":"boolean: When true the application will be in mobile mode, controls the mobile or desktop view","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMobile"},{"name":"popup-enabled","description":"boolean: When true clicking on a feature on the map will display a popup","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"popupEnabled"},{"name":"reporting-area","description":"boolean: When true reporting area layer should be honored if it exists","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"reportingArea"},{"name":"reporting-area-layer","description":"string: polygon layer for the reporting feature","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"reportingAreaLayer"},{"name":"reporting-area-message","description":"string: Message to be displayed when feature is outside the reportingAreaLayer","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"reportingAreaMessage"},{"name":"selected-layer-id","description":"string: Layer id of the feature layer in which the new feature is to be created","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"selectedLayerId"},{"name":"show-guiding-msg","description":"boolean: When true the notice message with the current state should be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showGuidingMsg"},{"name":"show-layer-visibility-msg","description":"boolean: When true the layer visibility message will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showLayerVisibilityMsg"},{"name":"show-sketch-widgets","description":"boolean: When true Editor's sketch widgets will be displayed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showSketchWidgets"},{"name":"submit-new-reports-message","description":"string: Text to be displayed that will allow user to know they can submit new reports","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"submitNewReportsMessage"},{"name":"update-map-position","description":"boolean: When true the map should shown in the editor component in mobile mode (while drawing graphic)","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"updateMapPosition"}],"events":[{"name":"drawComplete","description":"Emitted on demand when drawing is completed","type":{"text":"boolean"}},{"name":"editingAttachment","description":"Emitted on demand when editing attachments","type":{"text":"boolean"}},{"name":"editingLocation","description":"Emitted on demand when in editing mode","type":{"text":"void"}},{"name":"fail","description":"Emitted on demand when the feature creation is failed","type":{"text":"Error","references":[{"name":"Error","package":"global:","viewUrl":"https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error","start":0,"end":5}]}},{"name":"modeChanged","description":"Emitted on switched form mobile to desktop or vice versa","type":{"text":"void"}},{"name":"progressStatus","description":"Emitted on demand when editor panel changes","type":{"text":"number"}},{"name":"success","description":"Emitted on demand when the feature is created successfully","type":{"text":"void"}}],"importPath":"components/create-feature"}],"exports":[{"kind":"custom-element-definition","name":"create-feature","declaration":{"name":"CreateFeature"}}]},{"kind":"javascript-module","path":"components/create-related-feature","sourcePath":"src/components/create-related-feature/create-related-feature.tsx","declarations":[{"kind":"class","name":"CreateRelatedFeature","customElement":true,"tagName":"create-related-feature","pascalCaseName":"CreateRelatedFeature","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"customizeSubmit","description":"boolean: Set this to true when have a custom submit button in the app.\nThis will hide the header and footer elements of the editor and user needs to execute the submit method manually.","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"customize-submit"},{"kind":"field","name":"enableSnapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-snapping"},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"selectedFeature","description":"__esri.Graphic: https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html","type":{"text":"__esri.Graphic | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"showGuidingMsg","description":"boolean: When true the notice message should be shown","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"true","attribute":"show-guiding-msg"},{"kind":"field","name":"table","description":"__esri.FeatureLayer: https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html","type":{"text":"__esri.FeatureLayer | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst createRelatedFeature = document.querySelector(\"create-related-feature\");\ndocument.body.append(createRelatedFeature);\nawait createRelatedFeature.componentOnReady();\nconsole.log(\"create-related-feature is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"submit","description":"Submit the comment","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"}],"attributes":[{"name":"customize-submit","description":"boolean: Set this to true when have a custom submit button in the app.\nThis will hide the header and footer elements of the editor and user needs to execute the submit method manually.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"customizeSubmit"},{"name":"enable-snapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSnapping"},{"name":"show-guiding-msg","description":"boolean: When true the notice message should be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showGuidingMsg"}],"events":[{"name":"fail","description":"Emitted on demand when the comment submission is failed","type":{"text":"Error","references":[{"name":"Error","package":"global:","viewUrl":"https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error","start":0,"end":5}]}},{"name":"formReady","description":"Emitted on demand when form is ready","type":{"text":"void"}},{"name":"isActionPending","description":"Emitted on demand when any action is pending or completed","type":{"text":"boolean"}},{"name":"success","description":"Emitted on demand when the comment is submitted successfully","type":{"text":"void"}}],"importPath":"components/create-related-feature"}],"exports":[{"kind":"custom-element-definition","name":"create-related-feature","declaration":{"name":"CreateRelatedFeature"}}]},{"kind":"javascript-module","path":"components/crowdsource-manager","sourcePath":"src/components/crowdsource-manager/crowdsource-manager.tsx","declarations":[{"kind":"class","name":"CrowdsourceManager","customElement":true,"tagName":"crowdsource-manager","pascalCaseName":"CrowdsourceManager","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"appLayout","description":"AppLayout: The type of layout the application should use.\nValid values: 'mapView' or 'tableView' or 'splitView'","type":{"text":"AppLayout | undefined","references":[{"name":"AppLayout","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#AppLayout","start":0,"end":9}],"values":[{"type":"string","value":"mapView"},{"type":"string","value":"tableView"},{"type":"string","value":"splitView"}]},"attribute":"app-layout"},{"kind":"field","name":"appProxies","description":"Array of objects containing proxy information for premium platform services.","type":{"text":"any","values":[{"type":"any"}]},"attribute":"app-proxies"},{"kind":"field","name":"basemapConfig","description":"IBasemapConfig: List of any basemaps to filter out from the basemap widget","type":{"text":"IBasemapConfig | undefined","references":[{"name":"IBasemapConfig","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IBasemapConfig","start":0,"end":14}]}},{"kind":"field","name":"coverPageEnabled","description":"boolean: When true a cover page has been enabled in the consuming application.\nAlso when true a floating button will be shown in the lower right of the window that\nwill emit an event when clicked that the consuming application can respond to that will open the cover page.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"cover-page-enabled"},{"kind":"field","name":"customInfoText","description":"string: custom notification text to display in the card manager","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"custom-info-text"},{"kind":"field","name":"defaultAppLayout","description":"string: default layout the application should use","type":{"text":"AppLayout | undefined","references":[{"name":"AppLayout","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#AppLayout","start":0,"end":9}],"values":[{"type":"string","value":"mapView"},{"type":"string","value":"tableView"},{"type":"string","value":"splitView"}]},"attribute":"default-app-layout"},{"kind":"field","name":"defaultCenter","description":"string: default center point values for the map\n; delimited x;y pair","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-center"},{"kind":"field","name":"defaultGlobalId","description":"string: Global ID of the feature to select","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-global-id"},{"kind":"field","name":"defaultLayer","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-layer"},{"kind":"field","name":"defaultLevel","description":"string: default zoom level","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-level"},{"kind":"field","name":"defaultOid","description":"string: Object ID of feature to select","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-oid"},{"kind":"field","name":"defaultWebmap","description":"string: Item ID of the web map that should be selected by default","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-webmap"},{"kind":"field","name":"enableAutoRefresh","description":"boolean: when true the layer table will auto refresh the data","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-auto-refresh"},{"kind":"field","name":"enableBasemap","description":"boolean: when true the basemap widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-basemap"},{"kind":"field","name":"enableColumnReorder","description":"boolean: when true the layer table will support drag/drop of columns to adjust order","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-column-reorder"},{"kind":"field","name":"enableCSV","description":"boolean: when true the export to csv button will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-csv"},{"kind":"field","name":"enableFloorFilter","description":"boolean: when true the fullscreen widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-floor-filter"},{"kind":"field","name":"enableFullscreen","description":"boolean: when true the fullscreen widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-fullscreen"},{"kind":"field","name":"enableHome","description":"boolean: when true the home widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-home"},{"kind":"field","name":"enableLayerList","description":"boolean: when true the layer list widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-layer-list"},{"kind":"field","name":"enableLegend","description":"boolean: when true the legend widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-legend"},{"kind":"field","name":"enableMapList","description":"boolean: when true the map list will be shown and usable","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-map-list"},{"kind":"field","name":"enableSearch","description":"boolean: when true the search widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-search"},{"kind":"field","name":"enableSelectionTool","description":"boolean: when true the selection tool will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-selection-tool"},{"kind":"field","name":"enableShare","description":"boolean: when true the share widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-share"},{"kind":"field","name":"enableSnapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-snapping"},{"kind":"field","name":"enableZoom","description":"boolean: when true the zoom widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-zoom"},{"kind":"field","name":"featureSelectionMode","description":"string: selection mode for the feature selection","type":{"text":"string","values":[{"type":"string"}]},"default":"'multiple'","attribute":"feature-selection-mode"},{"kind":"field","name":"honorMapFieldSettings","description":"boolean: when true we will honor field order and visibility that may have been defined\nin the map viewer if no field order is defined in the mapInfo.\n\nField order defined in the mapInfo as would be the case for Instant App configurations\nwill always override this map level setting.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"honor-map-field-settings"},{"kind":"field","name":"introductionWindowEnabled","description":"boolean: When true a introduction window has been enabled in the consuming application.\nAlso when true a floating button will be shown in the lower right of the window that\nwill emit an event when clicked that the consuming application can respond to that will open the introduction window.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"introduction-window-enabled"},{"kind":"field","name":"mapInfos","description":"IMapInfo[]: array of map infos (name and id)","type":{"text":"IMapInfo[]","references":[{"name":"IMapInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}},{"kind":"field","name":"onlyShowUpdatableLayers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"only-show-updatable-layers"},{"kind":"field","name":"popupHeaderColor","description":"string: The background color to apply to the popup header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"popup-header-color"},{"kind":"field","name":"popupHeaderHoverColor","description":"string: The color that will be displayed on hover when expanding the popup header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"popup-header-hover-color"},{"kind":"field","name":"popupHeaderHoverTextColor","description":"string: The font color that will be displayed on hover when expanding the popup header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"popup-header-hover-text-color"},{"kind":"field","name":"popupHeaderTextColor","description":"string: The font color to apply to the popup header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"popup-header-text-color"},{"kind":"field","name":"searchConfiguration","description":"ISearchConfiguration: Configuration details for the Search widget","type":{"text":"ISearchConfiguration | undefined","references":[{"name":"ISearchConfiguration","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchConfiguration","start":0,"end":20}]}},{"kind":"field","name":"shareIncludeEmbed","description":"boolean: When true the share options will include embed option","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"share-include-embed"},{"kind":"field","name":"shareIncludeSocial","description":"boolean: When true the share options will include social media sharing","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"share-include-social"},{"kind":"field","name":"showNewestFirst","description":"boolean: when true the table will be sorted by objectid in descending order by default","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"show-newest-first"},{"kind":"field","name":"theme","description":"theme: 'light' | 'dark' theme to be used","type":{"text":"theme","references":[{"name":"theme","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#theme","start":0,"end":5}],"values":[{"type":"string","value":"light"},{"type":"string","value":"dark"}]},"default":"'light'","attribute":"theme"},{"kind":"field","name":"visibilityIcon","description":"VisibilityIconType: visibility icon for the layer list widget","type":{"text":"VisibilityIconType","references":[{"name":"VisibilityIconType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#VisibilityIconType","start":0,"end":18}],"values":[{"type":"string","value":"checkbox"},{"type":"string","value":"eyeball"}]},"default":"'eyeball'","attribute":"visibility-icon"},{"kind":"field","name":"zoomAndScrollToSelected","description":"boolean: When true the selected feature will zoomed to in the map and the row will be scrolled to within the table","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"zoom-and-scroll-to-selected"},{"kind":"field","name":"zoomToScale","description":"number: default scale to zoom to when zooming to a single point feature","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"zoom-to-scale"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst crowdsourceManager = document.querySelector(\"crowdsource-manager\");\ndocument.body.append(crowdsourceManager);\nawait crowdsourceManager.componentOnReady();\nconsole.log(\"crowdsource-manager is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"app-layout","description":"AppLayout: The type of layout the application should use.\nValid values: 'mapView' or 'tableView' or 'splitView'","type":{"text":"\"mapView\" | \"tableView\" | \"splitView\"","values":[{"type":"string","value":"mapView"},{"type":"string","value":"tableView"},{"type":"string","value":"splitView"}]},"fieldName":"appLayout"},{"name":"app-proxies","description":"Array of objects containing proxy information for premium platform services.","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"appProxies"},{"name":"cover-page-enabled","description":"boolean: When true a cover page has been enabled in the consuming application.\nAlso when true a floating button will be shown in the lower right of the window that\nwill emit an event when clicked that the consuming application can respond to that will open the cover page.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"coverPageEnabled"},{"name":"custom-info-text","description":"string: custom notification text to display in the card manager","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"customInfoText"},{"name":"default-app-layout","description":"string: default layout the application should use","type":{"text":"\"mapView\" | \"tableView\" | \"splitView\"","values":[{"type":"string","value":"mapView"},{"type":"string","value":"tableView"},{"type":"string","value":"splitView"}]},"fieldName":"defaultAppLayout"},{"name":"default-center","description":"string: default center point values for the map\n; delimited x;y pair","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultCenter"},{"name":"default-global-id","description":"string: Global ID of the feature to select","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultGlobalId"},{"name":"default-layer","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultLayer"},{"name":"default-level","description":"string: default zoom level","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultLevel"},{"name":"default-oid","description":"string: Object ID of feature to select","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultOid"},{"name":"default-webmap","description":"string: Item ID of the web map that should be selected by default","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultWebmap"},{"name":"enable-auto-refresh","description":"boolean: when true the layer table will auto refresh the data","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableAutoRefresh"},{"name":"enable-basemap","description":"boolean: when true the basemap widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableBasemap"},{"name":"enable-column-reorder","description":"boolean: when true the layer table will support drag/drop of columns to adjust order","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableColumnReorder"},{"name":"enable-csv","description":"boolean: when true the export to csv button will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableCSV"},{"name":"enable-floor-filter","description":"boolean: when true the fullscreen widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableFloorFilter"},{"name":"enable-fullscreen","description":"boolean: when true the fullscreen widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableFullscreen"},{"name":"enable-home","description":"boolean: when true the home widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableHome"},{"name":"enable-layer-list","description":"boolean: when true the layer list widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableLayerList"},{"name":"enable-legend","description":"boolean: when true the legend widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableLegend"},{"name":"enable-map-list","description":"boolean: when true the map list will be shown and usable","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableMapList"},{"name":"enable-search","description":"boolean: when true the search widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableSearch"},{"name":"enable-selection-tool","description":"boolean: when true the selection tool will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableSelectionTool"},{"name":"enable-share","description":"boolean: when true the share widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableShare"},{"name":"enable-snapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableSnapping"},{"name":"enable-zoom","description":"boolean: when true the zoom widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableZoom"},{"name":"feature-selection-mode","description":"string: selection mode for the feature selection","type":{"text":"string","values":[{"type":"string"}]},"default":"'multiple'","fieldName":"featureSelectionMode"},{"name":"honor-map-field-settings","description":"boolean: when true we will honor field order and visibility that may have been defined\nin the map viewer if no field order is defined in the mapInfo.\n\nField order defined in the mapInfo as would be the case for Instant App configurations\nwill always override this map level setting.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"honorMapFieldSettings"},{"name":"introduction-window-enabled","description":"boolean: When true a introduction window has been enabled in the consuming application.\nAlso when true a floating button will be shown in the lower right of the window that\nwill emit an event when clicked that the consuming application can respond to that will open the introduction window.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"introductionWindowEnabled"},{"name":"only-show-updatable-layers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"onlyShowUpdatableLayers"},{"name":"popup-header-color","description":"string: The background color to apply to the popup header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"popupHeaderColor"},{"name":"popup-header-hover-color","description":"string: The color that will be displayed on hover when expanding the popup header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"popupHeaderHoverColor"},{"name":"popup-header-hover-text-color","description":"string: The font color that will be displayed on hover when expanding the popup header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"popupHeaderHoverTextColor"},{"name":"popup-header-text-color","description":"string: The font color to apply to the popup header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"popupHeaderTextColor"},{"name":"share-include-embed","description":"boolean: When true the share options will include embed option","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"shareIncludeEmbed"},{"name":"share-include-social","description":"boolean: When true the share options will include social media sharing","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"shareIncludeSocial"},{"name":"show-newest-first","description":"boolean: when true the table will be sorted by objectid in descending order by default","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showNewestFirst"},{"name":"theme","description":"theme: 'light' | 'dark' theme to be used","type":{"text":"\"light\" | \"dark\"","values":[{"type":"string","value":"light"},{"type":"string","value":"dark"}]},"default":"'light'","fieldName":"theme"},{"name":"visibility-icon","description":"VisibilityIconType: visibility icon for the layer list widget","type":{"text":"\"checkbox\" | \"eyeball\"","values":[{"type":"string","value":"checkbox"},{"type":"string","value":"eyeball"}]},"default":"'eyeball'","fieldName":"visibilityIcon"},{"name":"zoom-and-scroll-to-selected","description":"boolean: When true the selected feature will zoomed to in the map and the row will be scrolled to within the table","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"zoomAndScrollToSelected"},{"name":"zoom-to-scale","description":"number: default scale to zoom to when zooming to a single point feature","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"zoomToScale"}],"events":[{"name":"showCoverPage","description":"Emitted on demand when a cover page button is clicked","type":{"text":"void"}},{"name":"showIntroductionWindow","description":"Emitted on demand when a info button is clicked","type":{"text":"void"}}],"importPath":"components/crowdsource-manager"}],"exports":[{"kind":"custom-element-definition","name":"crowdsource-manager","declaration":{"name":"CrowdsourceManager"}}]},{"kind":"javascript-module","path":"components/crowdsource-reporter","sourcePath":"src/components/crowdsource-reporter/crowdsource-reporter.tsx","declarations":[{"kind":"class","name":"CrowdsourceReporter","customElement":true,"tagName":"crowdsource-reporter","pascalCaseName":"CrowdsourceReporter","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"aiImageExtraction","description":"array: Configured AI image extraction field and prompt for the selected LayerId","type":{"text":"IImageExtraction[]","references":[{"name":"IImageExtraction","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IImageExtraction","start":0,"end":16}]}},{"kind":"field","name":"center","description":"string: Semicolon delimited numbers that will be used as the maps center point from URL params","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"center"},{"kind":"field","name":"commentButtonText","description":"string: User configurable text to display for the comment button","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"comment-button-text"},{"kind":"field","name":"commentSubmittedMessage","description":"string: User configurable nessage to display when a comment is submitted","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"comment-submitted-message"},{"kind":"field","name":"defaultWebmap","description":"string: Item ID of the web map that should be selected by default","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-webmap"},{"kind":"field","name":"description","description":"string: The text that will display under the title on the landing page","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"description"},{"kind":"field","name":"enableAnonymousAccess","description":"boolean: When true the anonymous users will be allowed to submit reports and comments","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-anonymous-access"},{"kind":"field","name":"enableAnonymousComments","description":"boolean: When true the anonymous users will be allowed to submit comments","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-anonymous-comments"},{"kind":"field","name":"enableComments","description":"boolean: When true the user will be allowed to submit comments","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-comments"},{"kind":"field","name":"enableHome","description":"boolean: when true the home widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-home"},{"kind":"field","name":"enableLogin","description":"boolean: When true the user will be provided a login page","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-login"},{"kind":"field","name":"enableNewReports","description":"boolean: When true the user will be allowed to submit new reports","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-new-reports"},{"kind":"field","name":"enablePhotoLocation","description":"boolean: When true photo get location from the photo selected for AI image Extraction","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-photo-location"},{"kind":"field","name":"enableSearch","description":"boolean: when true the search widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-search"},{"kind":"field","name":"enableSnapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-snapping"},{"kind":"field","name":"enableZoom","description":"boolean: when true the zoom widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-zoom"},{"kind":"field","name":"filterByMapExtent","description":"boolean: When true only the features from current extent will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"filter-by-map-extent"},{"kind":"field","name":"floorLevel","description":"string: selected floor level","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"floor-level"},{"kind":"field","name":"isMobile","description":"boolean: When true the application will be in mobile mode, controls the mobile or desktop view","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-mobile"},{"kind":"field","name":"layerExpressions","description":"ILayerExpression[]: Array of layer expressions for layers (filter configuration)","type":{"text":"ILayerExpression[]","references":[{"name":"ILayerExpression","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILayerExpression","start":0,"end":16}]}},{"kind":"field","name":"layerId","description":"string: Layer id of the feature from URL params","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"layer-id"},{"kind":"field","name":"level","description":"string: Id of the zoom level from URL params","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"level"},{"kind":"field","name":"loginTitle","description":"string: The text that will display at the top of the landing page","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"login-title"},{"kind":"field","name":"mapInfos","description":"IMapInfo[]: array of map infos (name and id)","type":{"text":"IMapInfo[]","references":[{"name":"IMapInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"objectId","description":"string: Object id of the feature from URL params","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"object-id"},{"kind":"field","name":"reportButtonText","description":"string: The word(s) to display in the reports submit button","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"report-button-text"},{"kind":"field","name":"reportingArea","description":"boolean: When true reporting area layer should be honored if it exists","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"reporting-area"},{"kind":"field","name":"reportingAreaLayer","description":"string: Reporting polyon layer for creating feature","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"reporting-area-layer"},{"kind":"field","name":"reportingAreaMessage","description":"string: Message to be displayed when feature is outside the reportingAreaLayer","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"reporting-area-message"},{"kind":"field","name":"reportingOptions","description":"IReportingOptions: Key options for reporting","type":{"text":"IReportingOptions | undefined","references":[{"name":"IReportingOptions","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IReportingOptions","start":0,"end":17}]}},{"kind":"field","name":"reportsHeader","description":"string: The word(s) to display in the reports header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"reports-header"},{"kind":"field","name":"reportSubmittedMessage","description":"string: The message to display when the report has been submitted","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"report-submitted-message"},{"kind":"field","name":"searchConfiguration","description":"ISearchConfiguration: Configuration details for the Search widget","type":{"text":"ISearchConfiguration | undefined","references":[{"name":"ISearchConfiguration","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchConfiguration","start":0,"end":20}]}},{"kind":"field","name":"showComments","description":"boolean: When true the comments from all users will be visible","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-comments"},{"kind":"field","name":"showFeatureSymbol","description":"boolean: When true the feature symbology of the feature will shown in the features list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-feature-symbol"},{"kind":"field","name":"showFullCommentTitle","description":"boolean: When false comment will shown in single line in the comments list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"show-full-comment-title"},{"kind":"field","name":"showMyReportsOnly","description":"boolean: To show only those features which are created by the logged in user","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"show-my-reports-only"},{"kind":"field","name":"showUserImageInCommentsList","description":"boolean: When true the profile image of the comment creator will be shown in the comments list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-user-image-in-comments-list"},{"kind":"field","name":"sortOption","description":"string: sorting option to show the feature list","type":{"text":"string","values":[{"type":"string"}]},"default":"'newest'","attribute":"sort-option"},{"kind":"field","name":"submitNewReportsMessage","description":"string: Text to be displayed that will allow user to know they can submit new reports","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"submit-new-reports-message"},{"kind":"field","name":"theme","description":"theme: light | dark theme to be used","type":{"text":"theme","references":[{"name":"theme","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#theme","start":0,"end":5}],"values":[{"type":"string","value":"light"},{"type":"string","value":"dark"}]},"default":"'light'","attribute":"theme"},{"kind":"field","name":"zoomToScale","description":"number: default scale to zoom to when zooming to a single point feature","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"zoom-to-scale"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst crowdsourceReporter = document.querySelector(\"crowdsource-reporter\");\ndocument.body.append(crowdsourceReporter);\nawait crowdsourceReporter.componentOnReady();\nconsole.log(\"crowdsource-reporter is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"updateLayerExpressionsT9n","description":"Method to update layerExpressions with the translated values","parameters":[{"name":"t9nLayerExpressions","type":{"text":"ILayerExpression[]","references":[{"name":"ILayerExpression","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILayerExpression","start":0,"end":16}]}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(t9nLayerExpressions: ILayerExpression[]): Promise<void>"}],"attributes":[{"name":"center","description":"string: Semicolon delimited numbers that will be used as the maps center point from URL params","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"center"},{"name":"comment-button-text","description":"string: User configurable text to display for the comment button","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"commentButtonText"},{"name":"comment-submitted-message","description":"string: User configurable nessage to display when a comment is submitted","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"commentSubmittedMessage"},{"name":"default-webmap","description":"string: Item ID of the web map that should be selected by default","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultWebmap"},{"name":"description","description":"string: The text that will display under the title on the landing page","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"description"},{"name":"enable-anonymous-access","description":"boolean: When true the anonymous users will be allowed to submit reports and comments","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableAnonymousAccess"},{"name":"enable-anonymous-comments","description":"boolean: When true the anonymous users will be allowed to submit comments","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableAnonymousComments"},{"name":"enable-comments","description":"boolean: When true the user will be allowed to submit comments","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableComments"},{"name":"enable-home","description":"boolean: when true the home widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableHome"},{"name":"enable-login","description":"boolean: When true the user will be provided a login page","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableLogin"},{"name":"enable-new-reports","description":"boolean: When true the user will be allowed to submit new reports","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableNewReports"},{"name":"enable-photo-location","description":"boolean: When true photo get location from the photo selected for AI image Extraction","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enablePhotoLocation"},{"name":"enable-search","description":"boolean: when true the search widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableSearch"},{"name":"enable-snapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSnapping"},{"name":"enable-zoom","description":"boolean: when true the zoom widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableZoom"},{"name":"filter-by-map-extent","description":"boolean: When true only the features from current extent will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"filterByMapExtent"},{"name":"floor-level","description":"string: selected floor level","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"floorLevel"},{"name":"is-mobile","description":"boolean: When true the application will be in mobile mode, controls the mobile or desktop view","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMobile"},{"name":"layer-id","description":"string: Layer id of the feature from URL params","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"layerId"},{"name":"level","description":"string: Id of the zoom level from URL params","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"level"},{"name":"login-title","description":"string: The text that will display at the top of the landing page","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"loginTitle"},{"name":"object-id","description":"string: Object id of the feature from URL params","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"objectId"},{"name":"report-button-text","description":"string: The word(s) to display in the reports submit button","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"reportButtonText"},{"name":"reporting-area","description":"boolean: When true reporting area layer should be honored if it exists","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"reportingArea"},{"name":"reporting-area-layer","description":"string: Reporting polyon layer for creating feature","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"reportingAreaLayer"},{"name":"reporting-area-message","description":"string: Message to be displayed when feature is outside the reportingAreaLayer","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"reportingAreaMessage"},{"name":"reports-header","description":"string: The word(s) to display in the reports header","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"reportsHeader"},{"name":"report-submitted-message","description":"string: The message to display when the report has been submitted","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"reportSubmittedMessage"},{"name":"show-comments","description":"boolean: When true the comments from all users will be visible","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showComments"},{"name":"show-feature-symbol","description":"boolean: When true the feature symbology of the feature will shown in the features list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showFeatureSymbol"},{"name":"show-full-comment-title","description":"boolean: When false comment will shown in single line in the comments list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showFullCommentTitle"},{"name":"show-my-reports-only","description":"boolean: To show only those features which are created by the logged in user","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showMyReportsOnly"},{"name":"show-user-image-in-comments-list","description":"boolean: When true the profile image of the comment creator will be shown in the comments list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showUserImageInCommentsList"},{"name":"sort-option","description":"string: sorting option to show the feature list","type":{"text":"string","values":[{"type":"string"}]},"default":"'newest'","fieldName":"sortOption"},{"name":"submit-new-reports-message","description":"string: Text to be displayed that will allow user to know they can submit new reports","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"submitNewReportsMessage"},{"name":"theme","description":"theme: light | dark theme to be used","type":{"text":"\"light\" | \"dark\"","values":[{"type":"string","value":"light"},{"type":"string","value":"dark"}]},"default":"'light'","fieldName":"theme"},{"name":"zoom-to-scale","description":"number: default scale to zoom to when zooming to a single point feature","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"zoomToScale"}],"events":[{"name":"togglePanel","description":"Emitted when toggle panel button is clicked in reporter","type":{"text":"{\n panelState: boolean;\n isFormOpen: boolean;\n}"}}],"importPath":"components/crowdsource-reporter"}],"exports":[{"kind":"custom-element-definition","name":"crowdsource-reporter","declaration":{"name":"CrowdsourceReporter"}}]},{"kind":"javascript-module","path":"components/deduct-calculator","sourcePath":"src/components/deduct-calculator/deduct-calculator.tsx","declarations":[{"kind":"class","name":"DeductCalculator","customElement":true,"tagName":"deduct-calculator","pascalCaseName":"DeductCalculator","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst deductCalculator = document.querySelector(\"deduct-calculator\");\ndocument.body.append(deductCalculator);\nawait deductCalculator.componentOnReady();\nconsole.log(\"deduct-calculator is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"events":[{"name":"deductValueComplete","description":"Emitted on demand when the user clicks to calculate the deduct value","type":{"text":"string"}}],"importPath":"components/deduct-calculator"}],"exports":[{"kind":"custom-element-definition","name":"deduct-calculator","declaration":{"name":"DeductCalculator"}}]},{"kind":"javascript-module","path":"components/delete-button","sourcePath":"src/components/delete-button/delete-button.tsx","declarations":[{"kind":"class","name":"DeleteButton","customElement":true,"tagName":"delete-button","pascalCaseName":"DeleteButton","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"buttonType","description":"ButtonType (button | action): Support usage as action or button","type":{"text":"ButtonType","references":[{"name":"ButtonType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ButtonType","start":0,"end":10}],"values":[{"type":"string","value":"button"},{"type":"string","value":"action"}]},"default":"'button'","attribute":"button-type"},{"kind":"field","name":"deleteDialog","description":"calcite-dialog: Use this prop when using the button within a parent like a dropdown that would constrain the dialog and that is not desired","type":{"text":"any","values":[{"type":"any"}]},"attribute":"delete-dialog"},{"kind":"field","name":"disabled","description":"boolean: This overrides internal enable/disable logic that is based on checks if the layer supports delete","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"disabled"},{"kind":"field","name":"icon","description":"string: The icon to display in the component","type":{"text":"Icon[\"icon\"] | undefined","references":[{"name":"Icon","module":"components/calcite-icon","package":"@esri/calcite-components","start":0,"end":4}],"values":[{"type":"string"}]},"attribute":"icon"},{"kind":"field","name":"ids","description":"number[]: The ids that would be deleted","type":{"text":"(number | string)[]"}},{"kind":"field","name":"layer","description":"esri/views/layers/FeatureLayer: https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html","type":{"text":"__esri.FeatureLayer | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"showDeleteCount","description":"boolean: When true the delete button will show the number of features that will be deleted","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"show-delete-count"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst deleteButton = document.querySelector(\"delete-button\");\ndocument.body.append(deleteButton);\nawait deleteButton.componentOnReady();\nconsole.log(\"delete-button is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"button-type","description":"ButtonType (button | action): Support usage as action or button","type":{"text":"\"button\" | \"action\"","values":[{"type":"string","value":"button"},{"type":"string","value":"action"}]},"default":"'button'","fieldName":"buttonType"},{"name":"delete-dialog","description":"calcite-dialog: Use this prop when using the button within a parent like a dropdown that would constrain the dialog and that is not desired","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"deleteDialog"},{"name":"disabled","description":"boolean: This overrides internal enable/disable logic that is based on checks if the layer supports delete","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"disabled"},{"name":"icon","description":"string: The icon to display in the component","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"icon"},{"name":"show-delete-count","description":"boolean: When true the delete button will show the number of features that will be deleted","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showDeleteCount"}],"events":[{"name":"deleteClicked","description":"Emitted on demand when the delete button is clicked","type":{"text":"void"}},{"name":"editsComplete","description":"Emitted on demand when features have been deleted","type":{"text":"EditType","references":[{"name":"EditType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#EditType","start":0,"end":8}]}}],"importPath":"components/delete-button"}],"exports":[{"kind":"custom-element-definition","name":"delete-button","declaration":{"name":"DeleteButton"}}]},{"kind":"javascript-module","path":"components/delete-dialog","sourcePath":"src/components/delete-dialog/delete-dialog.tsx","declarations":[{"kind":"class","name":"DeleteDialog","customElement":true,"tagName":"delete-dialog","pascalCaseName":"DeleteDialog","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"ids","description":"number[]: The ids that would be deleted","type":{"text":"(number | string)[]"}},{"kind":"field","name":"layer","description":"esri/views/layers/FeatureLayer: https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html","type":{"text":"__esri.FeatureLayer | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"open","description":"boolean: When true the delete dialog will be displayed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"open"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst deleteDialog = document.querySelector(\"delete-dialog\");\ndocument.body.append(deleteDialog);\nawait deleteDialog.componentOnReady();\nconsole.log(\"delete-dialog is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"open","description":"boolean: When true the delete dialog will be displayed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"open"}],"events":[{"name":"deleteDialogClose","description":"Emitted on demand when features have been deleted","type":{"text":"void"}},{"name":"editsComplete","description":"Emitted on demand when features have been deleted","type":{"text":"EditType","references":[{"name":"EditType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#EditType","start":0,"end":8}]}}],"importPath":"components/delete-dialog"}],"exports":[{"kind":"custom-element-definition","name":"delete-dialog","declaration":{"name":"DeleteDialog"}}]},{"kind":"javascript-module","path":"components/edit-card","sourcePath":"src/components/edit-card/edit-card.tsx","declarations":[{"kind":"class","name":"EditCard","customElement":true,"tagName":"edit-card","pascalCaseName":"EditCard","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"allowMultipleEditing","description":"When true allow multiple editing","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"allow-multiple-editing"},{"kind":"field","name":"enableEditGeometry","description":"When true the geometry of the current feature will be editable","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-edit-geometry"},{"kind":"field","name":"enableSnapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-snapping"},{"kind":"field","name":"graphicIndex","description":"The index of the current graphic","type":{"text":"number","values":[{"type":"number"}]},"default":"0","attribute":"graphic-index"},{"kind":"field","name":"graphics","description":"esri/Graphic[]: https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html","type":{"text":"__esri.Graphic[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"open","description":"When true the component is displayed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"open"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst editCard = document.querySelector(\"edit-card\");\ndocument.body.append(editCard);\nawait editCard.componentOnReady();\nconsole.log(\"edit-card is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"allow-multiple-editing","description":"When true allow multiple editing","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"allowMultipleEditing"},{"name":"enable-edit-geometry","description":"When true the geometry of the current feature will be editable","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableEditGeometry"},{"name":"enable-snapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSnapping"},{"name":"graphic-index","description":"The index of the current graphic","type":{"text":"number","values":[{"type":"number"}]},"default":"0","fieldName":"graphicIndex"},{"name":"open","description":"When true the component is displayed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"open"}],"events":[{"name":"closeEdit","description":"Emitted on demand when the Editor widget should be closed","type":{"text":"void"}},{"name":"creatingFeature","description":"Event emitted upon selection of a table and invocation of feature addition from the related layer during an active edit workflow.","type":{"text":"void"}},{"name":"editorInitialized","description":"Emit the Editor when it is initialized","type":{"text":"__esri.Editor","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"name":"editsComplete","description":"Emitted on demand when edits are completed on current edit layer","type":{"text":"void"}},{"name":"refreshGraphics","description":"Emitted on demand when the editor is closed to handle\nthings like attachment updates that don't fire the standard edit update event when complete","type":{"text":"__esri.Graphic[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}}],"importPath":"components/edit-card"}],"exports":[{"kind":"custom-element-definition","name":"edit-card","declaration":{"name":"EditCard"}}]},{"kind":"javascript-module","path":"components/feature-details","sourcePath":"src/components/feature-details/feature-details.tsx","declarations":[{"kind":"class","name":"FeatureDetails","customElement":true,"tagName":"feature-details","pascalCaseName":"FeatureDetails","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"enableSnapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-snapping"},{"kind":"field","name":"graphics","description":"esri/Graphic: https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html","type":{"text":"__esri.Graphic[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"layerItemsHash","description":"ILayerItemsHash: LayerDetailsHash for each layer in the map","type":{"text":"ILayerItemsHash | undefined","references":[{"name":"ILayerItemsHash","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILayerItemsHash","start":0,"end":15}]}},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"reportingOptions","description":"IReportingOptions: Key options for reporting","type":{"text":"IReportingOptions | undefined","references":[{"name":"IReportingOptions","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IReportingOptions","start":0,"end":17}]}},{"kind":"field","name":"showFullCommentTitle","description":"boolean: When false comment will shown in single line in the comments list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"show-full-comment-title"},{"kind":"field","name":"showUserImageInCommentsList","description":"boolean: When true the profile image of the comment creator will be shown in the comments list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-user-image-in-comments-list"},{"kind":"method","name":"back","description":"Go to the previous feature in the features widget","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst featureDetails = document.querySelector(\"feature-details\");\ndocument.body.append(featureDetails);\nawait featureDetails.componentOnReady();\nconsole.log(\"feature-details is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"next","description":"Go to the next feature in the features widget","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"refresh","description":"Refresh the features comments which will fetch like, dislike and update the component","parameters":[{"name":"graphic","optional":true,"type":{"text":"__esri.Graphic","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}}],"return":{"description":"Promise that resolves when the operation is complete","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(graphic?: __esri.Graphic): Promise<void>"},{"kind":"method","name":"toggleListView","description":"Toggle the visibility of the features list view","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"}],"attributes":[{"name":"enable-snapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSnapping"},{"name":"show-full-comment-title","description":"boolean: When false comment will shown in single line in the comments list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showFullCommentTitle"},{"name":"show-user-image-in-comments-list","description":"boolean: When true the profile image of the comment creator will be shown in the comments list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showUserImageInCommentsList"}],"events":[{"name":"addComment","description":"Emitted on demand when comment icon is clicked","type":{"text":"void"}},{"name":"commentClick","description":"Emitted on demand when comment is clicked using the feature-list","type":{"text":"void"}},{"name":"commentSelect","description":"Emitted on demand when comment is selected using the feature-list","type":{"text":"__esri.Graphic","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"name":"featureSelectionChange","description":"Emitted on demand when the selected index changes","type":{"text":"{\n selectedFeature: __esri.Graphic[];\n selectedFeatureIndex: number;\n}","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":23,"end":30}]}},{"name":"likeOrDislikeClicked","description":"Emitted on demand when like or dislike button is clicked","type":{"text":"void"}},{"name":"loadingStatus","description":"Emitted on demand when like or dislike button is clicked","type":{"text":"boolean"}}],"importPath":"components/feature-details"}],"exports":[{"kind":"custom-element-definition","name":"feature-details","declaration":{"name":"FeatureDetails"}}]},{"kind":"javascript-module","path":"components/feature-list","sourcePath":"src/components/feature-list/feature-list.tsx","declarations":[{"kind":"class","name":"FeatureList","customElement":true,"tagName":"feature-list","pascalCaseName":"FeatureList","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"applyLayerViewFilter","description":"boolean: If true will consider the FeatureFilter applied on the layerview","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"apply-layer-view-filter"},{"kind":"field","name":"filterByMapExtent","description":"boolean: when true the feature from map view extent will shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"filter-by-map-extent"},{"kind":"field","name":"highlightOnHover","description":"boolean: Highlight feature on map optional (default false) boolean to indicate if we should highlight when hover on Feature in list","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"highlight-on-hover"},{"kind":"field","name":"highlightOnMap","description":"boolean: Highlight feature on map optional (default false) boolean to indicate if we should highlight and zoom to the extent of the feature geometry","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"highlight-on-map"},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"noFeaturesFoundMsg","description":"string: Message to be displayed when features are not found","type":{"text":"string | undefined","values":[{"type":"string"}]},"default":"''","attribute":"no-features-found-msg"},{"kind":"field","name":"pageSize","description":"number: Number features to be fetched per page, by default 100 features will be fetched","type":{"text":"number | undefined","values":[{"type":"number"}]},"default":"100","attribute":"page-size"},{"kind":"field","name":"reportingOptions","description":"IReportingOptions: Key options for reporting","type":{"text":"IReportingOptions | undefined","references":[{"name":"IReportingOptions","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IReportingOptions","start":0,"end":17}]}},{"kind":"field","name":"selectedLayerId","description":"string: Layer id of the feature layer to show the list","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"selected-layer-id"},{"kind":"field","name":"showErrorWhenNoFeatures","description":"boolean: If true will show error msg when features are not present","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"show-error-when-no-features"},{"kind":"field","name":"showFeatureSymbol","description":"boolean: If true display's feature symbol on each feature item","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"show-feature-symbol"},{"kind":"field","name":"showFullTitle","description":"boolean: When false popup title will shown in single line","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"show-full-title"},{"kind":"field","name":"showInitialLoading","description":"boolean: Show initial loading indicator when creating list","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"true","attribute":"show-initial-loading"},{"kind":"field","name":"showUserImageInList","description":"boolean: If true display's profile img on each feature item","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"show-user-image-in-list"},{"kind":"field","name":"sortingInfo","description":"ISortingInfo: Sorting field and order using which features list will be sorted","type":{"text":"ISortingInfo | undefined","references":[{"name":"ISortingInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortingInfo","start":0,"end":12}]}},{"kind":"field","name":"textSize","description":"string(small/large): Controls the font size of the title","type":{"text":"\"large\" | \"small\" | undefined","values":[{"type":"string","value":"large"},{"type":"string","value":"small"}]},"default":"'large'","attribute":"text-size"},{"kind":"field","name":"whereClause","description":"string: where clause to filter the features list","type":{"text":"string | undefined","values":[{"type":"string"}]},"attribute":"where-clause"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst featureList = document.querySelector(\"feature-list\");\ndocument.body.append(featureList);\nawait featureList.componentOnReady();\nconsole.log(\"feature-list is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"refresh","description":"Refresh the feature list which will fetch the latest features and update the features list","parameters":[{"name":"maintainPageState","description":"If true feature list page state will be maintained","optional":true,"type":{"text":"boolean"}}],"return":{"description":"Promise that resolves when the operation is complete","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(maintainPageState?: boolean): Promise<void>"}],"attributes":[{"name":"apply-layer-view-filter","description":"boolean: If true will consider the FeatureFilter applied on the layerview","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"applyLayerViewFilter"},{"name":"filter-by-map-extent","description":"boolean: when true the feature from map view extent will shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"filterByMapExtent"},{"name":"highlight-on-hover","description":"boolean: Highlight feature on map optional (default false) boolean to indicate if we should highlight when hover on Feature in list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"highlightOnHover"},{"name":"highlight-on-map","description":"boolean: Highlight feature on map optional (default false) boolean to indicate if we should highlight and zoom to the extent of the feature geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"highlightOnMap"},{"name":"no-features-found-msg","description":"string: Message to be displayed when features are not found","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"noFeaturesFoundMsg"},{"name":"page-size","description":"number: Number features to be fetched per page, by default 100 features will be fetched","type":{"text":"number","values":[{"type":"number"}]},"default":"100","fieldName":"pageSize"},{"name":"selected-layer-id","description":"string: Layer id of the feature layer to show the list","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"selectedLayerId"},{"name":"show-error-when-no-features","description":"boolean: If true will show error msg when features are not present","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showErrorWhenNoFeatures"},{"name":"show-feature-symbol","description":"boolean: If true display's feature symbol on each feature item","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showFeatureSymbol"},{"name":"show-full-title","description":"boolean: When false popup title will shown in single line","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showFullTitle"},{"name":"show-initial-loading","description":"boolean: Show initial loading indicator when creating list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showInitialLoading"},{"name":"show-user-image-in-list","description":"boolean: If true display's profile img on each feature item","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showUserImageInList"},{"name":"text-size","description":"string(small/large): Controls the font size of the title","type":{"text":"\"large\" | \"small\"","values":[{"type":"string","value":"large"},{"type":"string","value":"small"}]},"default":"'large'","fieldName":"textSize"},{"name":"where-clause","description":"string: where clause to filter the features list","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"whereClause"}],"events":[{"name":"featureClick","description":"Emitted on demand when feature is clicked using the list","type":{"text":"void"}},{"name":"featureSelect","description":"Emitted on demand when feature is selected using the list","type":{"text":"__esri.Graphic","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}}],"importPath":"components/feature-list"}],"exports":[{"kind":"custom-element-definition","name":"feature-list","declaration":{"name":"FeatureList"}}]},{"kind":"javascript-module","path":"components/field-selection","sourcePath":"src/components/field-selection/field-selection.tsx","declarations":[{"kind":"class","name":"FieldSelection","customElement":true,"tagName":"field-selection","pascalCaseName":"FieldSelection","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"configExtraFields","description":"Extra fields such as attachments and related fields from IA config","type":{"text":"any","values":[{"type":"any"}]},"attribute":"config-extra-fields"},{"kind":"field","name":"layer","description":"esri/views/layers/FeatureLayer: https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html","type":{"text":"__esri.FeatureLayer | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"table","description":"esri/widgets/FeatureTable: https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html","type":{"text":"__esri.FeatureTable | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"tableRef","description":"LayerTable reference to support column reorder","type":{"text":"LayerTable","references":[{"name":"LayerTable","module":"components/layer-table","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/layer-table/#LayerTable","start":0,"end":10}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst fieldSelection = document.querySelector(\"field-selection\");\ndocument.body.append(fieldSelection);\nawait fieldSelection.componentOnReady();\nconsole.log(\"field-selection is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"config-extra-fields","description":"Extra fields such as attachments and related fields from IA config","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"configExtraFields"}],"importPath":"components/field-selection"}],"exports":[{"kind":"custom-element-definition","name":"field-selection","declaration":{"name":"FieldSelection"}}]},{"kind":"javascript-module","path":"components/info-card","sourcePath":"src/components/info-card/info-card.tsx","declarations":[{"kind":"class","name":"InfoCard","customElement":true,"tagName":"info-card","pascalCaseName":"InfoCard","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"allowEditing","description":"boolean: If true will show edit button","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"allow-editing"},{"kind":"field","name":"enableEditGeometry","description":"When true the geometry of the current feature will be editable","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-edit-geometry"},{"kind":"field","name":"enableSnapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-snapping"},{"kind":"field","name":"graphics","description":"esri/Graphic: https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html","type":{"text":"__esri.Graphic[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"highlightEnabled","description":"boolean: If true will highlights the features on map using Features Widget","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"true","attribute":"highlight-enabled"},{"kind":"field","name":"isLoading","description":"boolean: when true a loading indicator will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-loading"},{"kind":"field","name":"isMobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-mobile"},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"paginationEnabled","description":"boolean: If true will show the pagination for multiple features","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"true","attribute":"pagination-enabled"},{"kind":"field","name":"position","description":"string: Set the position of the feature info","type":{"text":"string | undefined","values":[{"type":"string"}]},"default":"'absolute'","attribute":"position"},{"kind":"field","name":"showCloseBtn","description":"boolean: If true show close button on the feature info","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"show-close-btn"},{"kind":"method","name":"back","description":"Go to the previous feature in the features widget","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst infoCard = document.querySelector(\"info-card\");\ndocument.body.append(infoCard);\nawait infoCard.componentOnReady();\nconsole.log(\"info-card is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"getSelectedFeature","description":"Get the current selected feature from the Features widget","return":{"description":"Promise resolving with the current feature","type":{"text":"Promise<any>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<any>"},{"kind":"method","name":"next","description":"Go to the next feature in the features widget","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"refresh","description":"Refresh the feature info","return":{"description":"Promise when complete","type":{"text":"Promise<any>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<any>"},{"kind":"method","name":"toggleListView","description":"Toggle the visibility of the features list view","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"updateCurrentGraphic","description":"update the current graphics to the features widget","parameters":[{"name":"selectedGraphic","type":{"text":"__esri.Graphic","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(selectedGraphic: __esri.Graphic): Promise<void>"}],"attributes":[{"name":"allow-editing","description":"boolean: If true will show edit button","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"allowEditing"},{"name":"enable-edit-geometry","description":"When true the geometry of the current feature will be editable","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableEditGeometry"},{"name":"enable-snapping","description":"When true the snapping options will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSnapping"},{"name":"highlight-enabled","description":"boolean: If true will highlights the features on map using Features Widget","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"highlightEnabled"},{"name":"is-loading","description":"boolean: when true a loading indicator will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isLoading"},{"name":"is-mobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMobile"},{"name":"pagination-enabled","description":"boolean: If true will show the pagination for multiple features","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"paginationEnabled"},{"name":"position","description":"string: Set the position of the feature info","type":{"text":"string","values":[{"type":"string"}]},"default":"'absolute'","fieldName":"position"},{"name":"show-close-btn","description":"boolean: If true show close button on the feature info","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showCloseBtn"}],"events":[{"name":"clearSelection","description":"Emitted on demand when close button is clicked","type":{"text":"void"}},{"name":"popupClosed","description":"Emitted on demand when the popup is closed","type":{"text":"void"}},{"name":"selectionChanged","description":"Emitted on demand when the selected index changes","type":{"text":"{\n selectedFeature: __esri.Graphic[];\n selectedFeatureIndex: number;\n}","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":23,"end":30}]}}],"importPath":"components/info-card"}],"exports":[{"kind":"custom-element-definition","name":"info-card","declaration":{"name":"InfoCard"}}]},{"kind":"javascript-module","path":"components/layer-list","sourcePath":"src/components/layer-list/layer-list.tsx","declarations":[{"kind":"class","name":"LayerList","customElement":true,"tagName":"layer-list","pascalCaseName":"LayerList","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"applyLayerViewFilter","description":"boolean: If true will consider the FeatureFilter applied on the layerview","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"apply-layer-view-filter"},{"kind":"field","name":"filterByMapExtent","description":"boolean: when true the features count from map view extent will shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"filter-by-map-extent"},{"kind":"field","name":"layers","description":"string[]: If passed will show only these layers in the list if they are present in map and are editable","type":{"text":"string[]"}},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"showFeatureCount","description":"boolean: if true display's feature count for each layer","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"true","attribute":"show-feature-count"},{"kind":"field","name":"showNextIcon","description":"boolean: If true display's arrow icon on each layer item","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"show-next-icon"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst layerList = document.querySelector(\"layer-list\");\ndocument.body.append(layerList);\nawait layerList.componentOnReady();\nconsole.log(\"layer-list is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"refresh","description":"Refresh the layer list which will fetch the latest layer count and update the list","return":{"description":"Promise that resolves when the operation is complete","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"}],"attributes":[{"name":"apply-layer-view-filter","description":"boolean: If true will consider the FeatureFilter applied on the layerview","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"applyLayerViewFilter"},{"name":"filter-by-map-extent","description":"boolean: when true the features count from map view extent will shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"filterByMapExtent"},{"name":"show-feature-count","description":"boolean: if true display's feature count for each layer","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showFeatureCount"},{"name":"show-next-icon","description":"boolean: If true display's arrow icon on each layer item","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showNextIcon"}],"events":[{"name":"layerSelect","description":"Emitted on demand when feature layer clicked with details layerId and layerName","type":{"text":"{\n layerId: string;\n layerName: string;\n}"}},{"name":"layersListLoaded","description":"Emitted on demand when list of layers to be listed are created.\nWhen empty array received in this event means no valid layers are found to be listed","type":{"text":"string[]"}}],"importPath":"components/layer-list"}],"exports":[{"kind":"custom-element-definition","name":"layer-list","declaration":{"name":"LayerList"}}]},{"kind":"javascript-module","path":"components/layer-list-widget","sourcePath":"src/components/layer-list-widget/layer-list-widget.tsx","declarations":[{"kind":"class","name":"LayerListWidget","customElement":true,"tagName":"layer-list-widget","pascalCaseName":"LayerListWidget","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"layerListWidget","description":"arcgis/core/widgets/LayerList: https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html","type":{"text":"__esri.LayerList | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"visibilityIcon","description":"VisibilityIconType: visibility icon for the layer list widget","type":{"text":"VisibilityIconType","references":[{"name":"VisibilityIconType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#VisibilityIconType","start":0,"end":18}],"values":[{"type":"string","value":"checkbox"},{"type":"string","value":"eyeball"}]},"default":"'eyeball'","attribute":"visibility-icon"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst layerListWidget = document.querySelector(\"layer-list-widget\");\ndocument.body.append(layerListWidget);\nawait layerListWidget.componentOnReady();\nconsole.log(\"layer-list-widget is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"visibility-icon","description":"VisibilityIconType: visibility icon for the layer list widget","type":{"text":"\"checkbox\" | \"eyeball\"","values":[{"type":"string","value":"checkbox"},{"type":"string","value":"eyeball"}]},"default":"'eyeball'","fieldName":"visibilityIcon"}],"events":[{"name":"fullscreenStateChange","description":"Emitted on demand when the fullscreen widget state has changed","type":{"text":"string"}}],"importPath":"components/layer-list-widget"}],"exports":[{"kind":"custom-element-definition","name":"layer-list-widget","declaration":{"name":"LayerListWidget"}}]},{"kind":"javascript-module","path":"components/layer-table","sourcePath":"src/components/layer-table/layer-table.tsx","declarations":[{"kind":"class","name":"LayerTable","customElement":true,"tagName":"layer-table","pascalCaseName":"LayerTable","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"appLayout","description":"AppLayout: the current app layout","type":{"text":"AppLayout | undefined","references":[{"name":"AppLayout","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#AppLayout","start":0,"end":9}],"values":[{"type":"string","value":"mapView"},{"type":"string","value":"tableView"},{"type":"string","value":"splitView"}]},"attribute":"app-layout"},{"kind":"field","name":"defaultGlobalId","description":"string: Global ID of the feature to select","type":{"text":"string[]"}},{"kind":"field","name":"defaultLayerId","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-layer-id"},{"kind":"field","name":"defaultOid","description":"number: when provided this will be used to select a feature in the table by default","type":{"text":"number[]"}},{"kind":"field","name":"enableAutoRefresh","description":"boolean: when true the layer table will auto refresh the data","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-auto-refresh"},{"kind":"field","name":"enableColumnReorder","description":"boolean: when true the layer table will support drag/drop of columns to adjust order","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-column-reorder"},{"kind":"field","name":"enableCSV","description":"boolean: when true the export to csv button will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-csv"},{"kind":"field","name":"enableInlineEdit","description":"boolean: when true edits can be applied directly within the table","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-inline-edit"},{"kind":"field","name":"enableShare","description":"boolean: when true the share widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-share"},{"kind":"field","name":"enableTableAutosave","description":"boolean: when true the inline editing will be auto saved","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-table-autosave"},{"kind":"field","name":"featureSelectionMode","description":"string: Selection mode for the feature selection","type":{"text":"string","values":[{"type":"string"}]},"default":"'multiple'","attribute":"feature-selection-mode"},{"kind":"field","name":"honorMapFieldSettings","description":"boolean: when true we will honor field order and visibility that may have been defined\nin the map viewer if no field order is defined in the mapInfo.\n\nField order defined in the mapInfo as would be the case for Instant App configurations\nwill always override this map level setting.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"honor-map-field-settings"},{"kind":"field","name":"isMobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-mobile"},{"kind":"field","name":"mapHidden","description":"boolean: when true the map is hidden and map specific controls should be hidden","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"map-hidden"},{"kind":"field","name":"mapInfo","description":"IMapInfo: key configuration details about the current map","type":{"text":"IMapInfo | undefined","references":[{"name":"IMapInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"selectedIds","description":"number[]: A list of ids that are currently selected","type":{"text":"(number | string)[]"}},{"kind":"field","name":"selectedRelatedIds","description":"number[]: A list of ids selected ids from related records","type":{"text":"number[]"}},{"kind":"field","name":"shareIncludeEmbed","description":"boolean: When true the share options will include embed option","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"share-include-embed"},{"kind":"field","name":"shareIncludeSocial","description":"boolean: When true the share options will include social media sharing","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"share-include-social"},{"kind":"field","name":"showNewestFirst","description":"boolean: when true the table will be sorted by objectid in descending order by default","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-newest-first"},{"kind":"field","name":"showOnlyUpdatableLayers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-only-updatable-layers"},{"kind":"field","name":"zoomAndScrollToSelected","description":"boolean: When true the selected feature will zoomed to in the map and the row will be scrolled to within the table","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"zoom-and-scroll-to-selected"},{"kind":"field","name":"zoomToScale","description":"number: default scale to zoom to when zooming to a single point feature","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"zoom-to-scale"},{"kind":"method","name":"closeFilter","description":"Closes the filter","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst layerTable = document.querySelector(\"layer-table\");\ndocument.body.append(layerTable);\nawait layerTable.componentOnReady();\nconsole.log(\"layer-table is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"filterReset","description":"Reset the filter","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"filterUpdate","description":"Updates the filter","parameters":[{"name":"filterActive","type":{"text":"boolean"}},{"name":"keepTableUpdatingOnMapExtentChange","optional":true,"type":{"text":"boolean"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(filterActive: boolean, keepTableUpdatingOnMapExtentChange?: boolean): Promise<void>"},{"kind":"method","name":"refresh","description":"refresh the feature table","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"setColumnOrder","description":"Set column templates with an ordered collection","parameters":[{"name":"columnTemplates","type":{"text":"any"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(columnTemplates: any): Promise<void>"},{"kind":"method","name":"validateActiveEdits","description":"Validate if the editor has any pending edits","return":{"type":{"text":"Promise<boolean>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<boolean>"},{"kind":"method","name":"validateTableUpdate","description":"Validate if the table should update","parameters":[{"name":"shouldUpdateTableOnExtentChange","type":{"text":"boolean"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(shouldUpdateTableOnExtentChange: boolean): Promise<void>"}],"attributes":[{"name":"app-layout","description":"AppLayout: the current app layout","type":{"text":"\"mapView\" | \"tableView\" | \"splitView\"","values":[{"type":"string","value":"mapView"},{"type":"string","value":"tableView"},{"type":"string","value":"splitView"}]},"fieldName":"appLayout"},{"name":"default-layer-id","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultLayerId"},{"name":"enable-auto-refresh","description":"boolean: when true the layer table will auto refresh the data","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableAutoRefresh"},{"name":"enable-column-reorder","description":"boolean: when true the layer table will support drag/drop of columns to adjust order","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableColumnReorder"},{"name":"enable-csv","description":"boolean: when true the export to csv button will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableCSV"},{"name":"enable-inline-edit","description":"boolean: when true edits can be applied directly within the table","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableInlineEdit"},{"name":"enable-share","description":"boolean: when true the share widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableShare"},{"name":"enable-table-autosave","description":"boolean: when true the inline editing will be auto saved","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableTableAutosave"},{"name":"feature-selection-mode","description":"string: Selection mode for the feature selection","type":{"text":"string","values":[{"type":"string"}]},"default":"'multiple'","fieldName":"featureSelectionMode"},{"name":"honor-map-field-settings","description":"boolean: when true we will honor field order and visibility that may have been defined\nin the map viewer if no field order is defined in the mapInfo.\n\nField order defined in the mapInfo as would be the case for Instant App configurations\nwill always override this map level setting.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"honorMapFieldSettings"},{"name":"is-mobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMobile"},{"name":"map-hidden","description":"boolean: when true the map is hidden and map specific controls should be hidden","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"mapHidden"},{"name":"share-include-embed","description":"boolean: When true the share options will include embed option","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"shareIncludeEmbed"},{"name":"share-include-social","description":"boolean: When true the share options will include social media sharing","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"shareIncludeSocial"},{"name":"show-newest-first","description":"boolean: when true the table will be sorted by objectid in descending order by default","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showNewestFirst"},{"name":"show-only-updatable-layers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showOnlyUpdatableLayers"},{"name":"zoom-and-scroll-to-selected","description":"boolean: When true the selected feature will zoomed to in the map and the row will be scrolled to within the table","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"zoomAndScrollToSelected"},{"name":"zoom-to-scale","description":"number: default scale to zoom to when zooming to a single point feature","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"zoomToScale"}],"events":[{"name":"columnReorder","description":"Emitted when the user click/drags a column","type":{"text":"void"}},{"name":"editMultipleFeatures","description":"Emitted on demand when edit multiple action is clicked","type":{"text":"(number | string)[]"}},{"name":"featureSelectionChange","description":"Emitted on demand when a layer is selected","type":{"text":"(number | string)[]"}},{"name":"relatedRecordToggled","description":"Emitted when related record toggled from related table","type":{"text":"__esri.FeatureLayer","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"name":"showDelete","description":"Emitted on demand when when the delete dialog should be shown","type":{"text":"IDeleteIds","references":[{"name":"IDeleteIds","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IDeleteIds","start":0,"end":10}]}},{"name":"toggleFilter","description":"Emitted on demand when filter action is clicked","type":{"text":"void"}}],"importPath":"components/layer-table"}],"exports":[{"kind":"custom-element-definition","name":"layer-table","declaration":{"name":"LayerTable"}}]},{"kind":"javascript-module","path":"components/map-basemap-gallery","sourcePath":"src/components/map-basemap-gallery/map-basemap-gallery.tsx","declarations":[{"kind":"class","name":"MapBasemapGallery","customElement":true,"tagName":"map-basemap-gallery","pascalCaseName":"MapBasemapGallery","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"basemapConfig","description":"IBasemapConfig: List of any basemaps to filter out from the basemap widget","type":{"text":"IBasemapConfig | undefined","references":[{"name":"IBasemapConfig","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IBasemapConfig","start":0,"end":14}]}},{"kind":"field","name":"basemapWidget","description":"esri/widgets/BasemapGallery: https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapGallery.html\n\nBasemapGallery instance","type":{"text":"__esri.BasemapGallery | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapBasemapGallery = document.querySelector(\"map-basemap-gallery\");\ndocument.body.append(mapBasemapGallery);\nawait mapBasemapGallery.componentOnReady();\nconsole.log(\"map-basemap-gallery is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"importPath":"components/map-basemap-gallery"}],"exports":[{"kind":"custom-element-definition","name":"map-basemap-gallery","declaration":{"name":"MapBasemapGallery"}}]},{"kind":"javascript-module","path":"components/map-card","sourcePath":"src/components/map-card/map-card.tsx","declarations":[{"kind":"class","name":"MapCard","customElement":true,"tagName":"map-card","pascalCaseName":"MapCard","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"appLayout","description":"AppLayout: the current app layout","type":{"text":"AppLayout | undefined","references":[{"name":"AppLayout","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#AppLayout","start":0,"end":9}],"values":[{"type":"string","value":"mapView"},{"type":"string","value":"tableView"},{"type":"string","value":"splitView"}]},"attribute":"app-layout"},{"kind":"field","name":"appProxies","description":"Array of objects containing proxy information for premium platform services.","type":{"text":"any","values":[{"type":"any"}]},"attribute":"app-proxies"},{"kind":"field","name":"basemapConfig","description":"IBasemapConfig: List of any basemaps to filter out from the basemap widget","type":{"text":"IBasemapConfig | undefined","references":[{"name":"IBasemapConfig","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IBasemapConfig","start":0,"end":14}]}},{"kind":"field","name":"defaultLayerId","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-layer-id"},{"kind":"field","name":"defaultWebmapId","description":"string: Item ID of the web map that should be selected by default when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-webmap-id"},{"kind":"field","name":"enableBasemap","description":"boolean: when true the basemap widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-basemap"},{"kind":"field","name":"enableFloorFilter","description":"boolean: when true the floor filter widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-floor-filter"},{"kind":"field","name":"enableFullscreen","description":"boolean: when true the fullscreen widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-fullscreen"},{"kind":"field","name":"enableHome","description":"boolean: when true the home widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-home"},{"kind":"field","name":"enableLayerList","description":"boolean: when true the layer list widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-layer-list"},{"kind":"field","name":"enableLegend","description":"boolean: when true the legend widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-legend"},{"kind":"field","name":"enableMapLayerPicker","description":"boolean: when true the map layer picker tool will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-map-layer-picker"},{"kind":"field","name":"enableMapPicker","description":"boolean: when true the map picker tool will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-map-picker"},{"kind":"field","name":"enableSearch","description":"boolean: when true the search widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-search"},{"kind":"field","name":"enableSelectionTool","description":"boolean: when true the selectionTool tool will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-selection-tool"},{"kind":"field","name":"enableShare","description":"boolean: when true the share widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-share"},{"kind":"field","name":"enableSingleExpand","description":"boolean: when true map tools will be displayed within a single expand/collapse widget\nwhen false widgets will be loaded individually into expand widgets","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-single-expand"},{"kind":"field","name":"featureSelectionMode","description":"string: Selection mode for the feature selection","type":{"text":"string","values":[{"type":"string"}]},"default":"'multiple'","attribute":"feature-selection-mode"},{"kind":"field","name":"hide","description":"boolean: When true the map display will be hidden","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"hide"},{"kind":"field","name":"isMapLayout","description":"boolean: When true map will shown is full screen","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-map-layout"},{"kind":"field","name":"isMobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-mobile"},{"kind":"field","name":"mapInfo","description":"IMapInfo: key configuration details about the current map","type":{"text":"IMapInfo | undefined","references":[{"name":"IMapInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}},{"kind":"field","name":"mapInfos","description":"IMapInfo[]: array of map infos (name and id)","type":{"text":"IMapInfo[]","references":[{"name":"IMapInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}},{"kind":"field","name":"mapToolsOrder","description":"Valid tools: 'legend', 'search', 'fullscreen', 'basemap', 'floorfilter', 'selectiontool'","type":{"text":"string[]"}},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapWidgetsIndex","description":"number: The placement index of the map widgets (legend, basemap, fullscreen etc). This index shows where to place the component relative to other components.\nFor example a value of 0 would place it topmost when position is top-*, leftmost for bottom-left and right most for bottom-right.","type":{"text":"number","values":[{"type":"number"}]},"default":"0","attribute":"map-widgets-index"},{"kind":"field","name":"mapWidgetsPosition","description":"__esri.UIPosition: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-ui-UI.html#UIPosition\nThe position details for the map tools","type":{"text":"__esri.UIPosition","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}],"values":[{"type":"string","value":"top-left"},{"type":"string","value":"top-right"},{"type":"string","value":"bottom-left"},{"type":"string","value":"bottom-right"},{"type":"string","value":"top-leading"},{"type":"string","value":"top-trailing"},{"type":"string","value":"bottom-leading"},{"type":"string","value":"bottom-trailing"},{"type":"string","value":"manual"}]},"default":"'top-leading'","attribute":"map-widgets-position"},{"kind":"field","name":"mapWidgetsSize","description":"'s' | 'm' | 'l': Used for optional map tool widget","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","attribute":"map-widgets-size"},{"kind":"field","name":"mobileMapWidgetsPosition","description":"__esri.UIPosition: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-ui-UI.html#UIPosition\nThe position details for the mobile map tools","type":{"text":"__esri.UIPosition","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}],"values":[{"type":"string","value":"top-left"},{"type":"string","value":"top-right"},{"type":"string","value":"bottom-left"},{"type":"string","value":"bottom-right"},{"type":"string","value":"top-leading"},{"type":"string","value":"top-trailing"},{"type":"string","value":"bottom-leading"},{"type":"string","value":"bottom-trailing"},{"type":"string","value":"manual"}]},"default":"'top-right'","attribute":"mobile-map-widgets-position"},{"kind":"field","name":"mobileToolsOrder","description":"Valid tools: 'map-picker', 'map-layer-picker'","type":{"text":"string[]"}},{"kind":"field","name":"selectedFeaturesIds","description":"number[]: A list of ids that are currently selected","type":{"text":"(number | string)[]"}},{"kind":"field","name":"selectedLayer","description":"__esri.FeatureLayer: Selected layer","type":{"text":"__esri.FeatureLayer | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"shareIncludeEmbed","description":"boolean: When true the share options will include embed option","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"share-include-embed"},{"kind":"field","name":"shareIncludeSocial","description":"boolean: When true the share options will include social media sharing","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"share-include-social"},{"kind":"field","name":"showOnlyUpdatableLayers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-only-updatable-layers"},{"kind":"field","name":"stackTools","description":"boolean: When true the map widget tools will have no margin between them.\nWhen false the map widget tools will have a margin between them.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"stack-tools"},{"kind":"field","name":"theme","description":"theme: 'light' | 'dark' theme to be used","type":{"text":"theme | undefined","references":[{"name":"theme","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#theme","start":0,"end":5}],"values":[{"type":"string","value":"light"},{"type":"string","value":"dark"}]},"attribute":"theme"},{"kind":"field","name":"visibilityIcon","description":"VisibilityIconType: visibility icon for the layer list widget","type":{"text":"VisibilityIconType","references":[{"name":"VisibilityIconType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#VisibilityIconType","start":0,"end":18}],"values":[{"type":"string","value":"checkbox"},{"type":"string","value":"eyeball"}]},"default":"'eyeball'","attribute":"visibility-icon"},{"kind":"field","name":"zoomToolsSize","description":"'s' | 'm' | 'l': Used for Zoom and Home tools","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","attribute":"zoom-tools-size"},{"kind":"field","name":"zoomToScale","description":"number: default scale to zoom to when zooming to a single point feature","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"zoom-to-scale"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapCard = document.querySelector(\"map-card\");\ndocument.body.append(mapCard);\nawait mapCard.componentOnReady();\nconsole.log(\"map-card is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"resetFilter","description":"Reset the filter","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"updateFilterState","description":"updates the filter","parameters":[{"name":"active","type":{"text":"boolean"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(active: boolean): Promise<void>"},{"kind":"method","name":"updateLayer","description":"updates the layer in map layer picker","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"}],"attributes":[{"name":"app-layout","description":"AppLayout: the current app layout","type":{"text":"\"mapView\" | \"tableView\" | \"splitView\"","values":[{"type":"string","value":"mapView"},{"type":"string","value":"tableView"},{"type":"string","value":"splitView"}]},"fieldName":"appLayout"},{"name":"app-proxies","description":"Array of objects containing proxy information for premium platform services.","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"appProxies"},{"name":"default-layer-id","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultLayerId"},{"name":"default-webmap-id","description":"string: Item ID of the web map that should be selected by default when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultWebmapId"},{"name":"enable-basemap","description":"boolean: when true the basemap widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableBasemap"},{"name":"enable-floor-filter","description":"boolean: when true the floor filter widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableFloorFilter"},{"name":"enable-fullscreen","description":"boolean: when true the fullscreen widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableFullscreen"},{"name":"enable-home","description":"boolean: when true the home widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableHome"},{"name":"enable-layer-list","description":"boolean: when true the layer list widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableLayerList"},{"name":"enable-legend","description":"boolean: when true the legend widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableLegend"},{"name":"enable-map-layer-picker","description":"boolean: when true the map layer picker tool will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableMapLayerPicker"},{"name":"enable-map-picker","description":"boolean: when true the map picker tool will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableMapPicker"},{"name":"enable-search","description":"boolean: when true the search widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSearch"},{"name":"enable-selection-tool","description":"boolean: when true the selectionTool tool will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSelectionTool"},{"name":"enable-share","description":"boolean: when true the share widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableShare"},{"name":"enable-single-expand","description":"boolean: when true map tools will be displayed within a single expand/collapse widget\nwhen false widgets will be loaded individually into expand widgets","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSingleExpand"},{"name":"feature-selection-mode","description":"string: Selection mode for the feature selection","type":{"text":"string","values":[{"type":"string"}]},"default":"'multiple'","fieldName":"featureSelectionMode"},{"name":"hide","description":"boolean: When true the map display will be hidden","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"hide"},{"name":"is-map-layout","description":"boolean: When true map will shown is full screen","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMapLayout"},{"name":"is-mobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMobile"},{"name":"map-widgets-index","description":"number: The placement index of the map widgets (legend, basemap, fullscreen etc). This index shows where to place the component relative to other components.\nFor example a value of 0 would place it topmost when position is top-*, leftmost for bottom-left and right most for bottom-right.","type":{"text":"number","values":[{"type":"number"}]},"default":"0","fieldName":"mapWidgetsIndex"},{"name":"map-widgets-position","description":"__esri.UIPosition: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-ui-UI.html#UIPosition\nThe position details for the map tools","type":{"text":"\"top-left\" | \"top-right\" | \"bottom-left\" | \"bottom-right\" | \"top-leading\" | \"top-trailing\" | \"bottom-leading\" | \"bottom-trailing\" | \"manual\"","values":[{"type":"string","value":"top-left"},{"type":"string","value":"top-right"},{"type":"string","value":"bottom-left"},{"type":"string","value":"bottom-right"},{"type":"string","value":"top-leading"},{"type":"string","value":"top-trailing"},{"type":"string","value":"bottom-leading"},{"type":"string","value":"bottom-trailing"},{"type":"string","value":"manual"}]},"default":"'top-leading'","fieldName":"mapWidgetsPosition"},{"name":"map-widgets-size","description":"'s' | 'm' | 'l': Used for optional map tool widget","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","fieldName":"mapWidgetsSize"},{"name":"mobile-map-widgets-position","description":"__esri.UIPosition: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-ui-UI.html#UIPosition\nThe position details for the mobile map tools","type":{"text":"\"top-left\" | \"top-right\" | \"bottom-left\" | \"bottom-right\" | \"top-leading\" | \"top-trailing\" | \"bottom-leading\" | \"bottom-trailing\" | \"manual\"","values":[{"type":"string","value":"top-left"},{"type":"string","value":"top-right"},{"type":"string","value":"bottom-left"},{"type":"string","value":"bottom-right"},{"type":"string","value":"top-leading"},{"type":"string","value":"top-trailing"},{"type":"string","value":"bottom-leading"},{"type":"string","value":"bottom-trailing"},{"type":"string","value":"manual"}]},"default":"'top-right'","fieldName":"mobileMapWidgetsPosition"},{"name":"share-include-embed","description":"boolean: When true the share options will include embed option","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"shareIncludeEmbed"},{"name":"share-include-social","description":"boolean: When true the share options will include social media sharing","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"shareIncludeSocial"},{"name":"show-only-updatable-layers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showOnlyUpdatableLayers"},{"name":"stack-tools","description":"boolean: When true the map widget tools will have no margin between them.\nWhen false the map widget tools will have a margin between them.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"stackTools"},{"name":"theme","description":"theme: 'light' | 'dark' theme to be used","type":{"text":"\"light\" | \"dark\"","values":[{"type":"string","value":"light"},{"type":"string","value":"dark"}]},"fieldName":"theme"},{"name":"visibility-icon","description":"VisibilityIconType: visibility icon for the layer list widget","type":{"text":"\"checkbox\" | \"eyeball\"","values":[{"type":"string","value":"checkbox"},{"type":"string","value":"eyeball"}]},"default":"'eyeball'","fieldName":"visibilityIcon"},{"name":"zoom-tools-size","description":"'s' | 'm' | 'l': Used for Zoom and Home tools","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","fieldName":"zoomToolsSize"},{"name":"zoom-to-scale","description":"number: default scale to zoom to when zooming to a single point feature","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"zoomToScale"}],"events":[{"name":"beforeMapChanged","description":"Emitted before a new map is loaded","type":{"text":"void"}},{"name":"clearSelection","description":"Emitted on demand when clear selection button is clicked","type":{"text":"void"}},{"name":"editMultipleFeatures","description":"Emitted on demand when edit multiple action is clicked","type":{"text":"(number | string)[]"}},{"name":"mapChanged","description":"Emitted when a new map is loaded","type":{"text":"IMapChange","references":[{"name":"IMapChange","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapChange","start":0,"end":10}]}},{"name":"toggleFilter","description":"Emitted on demand when filter action is clicked","type":{"text":"void"}}],"importPath":"components/map-card"}],"exports":[{"kind":"custom-element-definition","name":"map-card","declaration":{"name":"MapCard"}}]},{"kind":"javascript-module","path":"components/map-draw-tools","sourcePath":"src/components/map-draw-tools/map-draw-tools.tsx","declarations":[{"kind":"class","name":"MapDrawTools","customElement":true,"tagName":"map-draw-tools","pascalCaseName":"MapDrawTools","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"active","description":"boolean: sketch is used by multiple components...need a way to know who should respond...","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"active"},{"kind":"field","name":"drawMode","description":"utils/interfaces: Controls how the draw tools are rendered\n\nSKETCH mode supports snapping\nREFINE mode supports undo/redo","type":{"text":"EDrawMode","references":[{"name":"EDrawMode","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#EDrawMode","start":0,"end":9}],"values":[{"type":"string","value":"SKETCH"},{"type":"string","value":"REFINE"}]},"default":"'SKETCH'","attribute":"draw-mode"},{"kind":"field","name":"editGraphicsEnabled","description":"boolean: when true you will be able to make additional modifications to the sketched geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"edit-graphics-enabled"},{"kind":"field","name":"graphics","description":"esri/Graphic: https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html","type":{"text":"__esri.Graphic[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"pointSymbol","description":"esri/symbols/SimpleMarkerSymbol: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleMarkerSymbol.html","type":{"text":"__esri.SimpleMarkerSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"polygonSymbol","description":"esri/symbols/SimpleFillSymbol: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleFillSymbol.html","type":{"text":"__esri.SimpleFillSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"polylineSymbol","description":"esri/symbols/SimpleLineSymbol: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html","type":{"text":"__esri.SimpleLineSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"redoEnabled","description":"boolean: when eanbled the user can redo the previous operation","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"redo-enabled"},{"kind":"field","name":"undoEnabled","description":"boolean: when eanbled the user can undo the previous operation","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"undo-enabled"},{"kind":"method","name":"clear","description":"Clears the user drawn graphics","return":{"description":"Promise that resolves when the operation is complete","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapDrawTools = document.querySelector(\"map-draw-tools\");\ndocument.body.append(mapDrawTools);\nawait mapDrawTools.componentOnReady();\nconsole.log(\"map-draw-tools is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"updateGraphics","description":"Set the sketch widget to update mode with the current graphic","return":{"description":"Promise that resolves when the operation is complete","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"}],"attributes":[{"name":"active","description":"boolean: sketch is used by multiple components...need a way to know who should respond...","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"active"},{"name":"draw-mode","description":"utils/interfaces: Controls how the draw tools are rendered\n\nSKETCH mode supports snapping\nREFINE mode supports undo/redo","type":{"text":"\"SKETCH\" | \"REFINE\"","values":[{"type":"string","value":"SKETCH"},{"type":"string","value":"REFINE"}]},"default":"'SKETCH'","fieldName":"drawMode"},{"name":"edit-graphics-enabled","description":"boolean: when true you will be able to make additional modifications to the sketched geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"editGraphicsEnabled"},{"name":"redo-enabled","description":"boolean: when eanbled the user can redo the previous operation","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"redoEnabled"},{"name":"undo-enabled","description":"boolean: when eanbled the user can undo the previous operation","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"undoEnabled"}],"events":[{"name":"drawRedo","description":"Emitted on demand when the redo action is clicked.","type":{"text":"void"}},{"name":"drawUndo","description":"Emitted on demand when the undo action is clicked.","type":{"text":"void"}},{"name":"selectionLoadingChange","description":"Emitted on demand when selection starts or ends.","type":{"text":"boolean"}},{"name":"sketchGraphicsChange","description":"Emitted on demand when the sketch graphics change.","type":{"text":"ISketchGraphicsChange","references":[{"name":"ISketchGraphicsChange","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISketchGraphicsChange","start":0,"end":21}]}}],"importPath":"components/map-draw-tools"}],"exports":[{"kind":"custom-element-definition","name":"map-draw-tools","declaration":{"name":"MapDrawTools"}}]},{"kind":"javascript-module","path":"components/map-floor-filter","sourcePath":"src/components/map-floor-filter/map-floor-filter.tsx","declarations":[{"kind":"class","name":"MapFloorFilter","customElement":true,"tagName":"map-floor-filter","pascalCaseName":"MapFloorFilter","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"enabled","description":"boolean: when true the Floor Filter widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enabled"},{"kind":"field","name":"floorFilterWidget","description":"esri/widgets/FloorFilter: https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FloorFilter.html\n\nFloorFilter instance","type":{"text":"__esri.FloorFilter | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapFloorFilter = document.querySelector(\"map-floor-filter\");\ndocument.body.append(mapFloorFilter);\nawait mapFloorFilter.componentOnReady();\nconsole.log(\"map-floor-filter is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"enabled","description":"boolean: when true the Floor Filter widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enabled"}],"events":[{"name":"facilityChanged","description":"Emitted on demand when the Facility is changed","type":{"text":"string"}},{"name":"levelChanged","description":"Emitted on demand when the Level is changed","type":{"text":"string"}},{"name":"siteChanged","description":"Emitted on demand when the Site is changed","type":{"text":"string"}}],"importPath":"components/map-floor-filter"}],"exports":[{"kind":"custom-element-definition","name":"map-floor-filter","declaration":{"name":"MapFloorFilter"}}]},{"kind":"javascript-module","path":"components/map-fullscreen","sourcePath":"src/components/map-fullscreen/map-fullscreen.tsx","declarations":[{"kind":"class","name":"MapFullscreen","customElement":true,"tagName":"map-fullscreen","pascalCaseName":"MapFullscreen","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"fullscreenWidget","description":"esri/widgets/Fullscreen: https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Fullscreen.html","type":{"text":"__esri.Fullscreen | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapFullscreen = document.querySelector(\"map-fullscreen\");\ndocument.body.append(mapFullscreen);\nawait mapFullscreen.componentOnReady();\nconsole.log(\"map-fullscreen is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"events":[{"name":"fullscreenStateChange","description":"Emitted on demand when the fullscreen widget state has changed","type":{"text":"string"}}],"importPath":"components/map-fullscreen"}],"exports":[{"kind":"custom-element-definition","name":"map-fullscreen","declaration":{"name":"MapFullscreen"}}]},{"kind":"javascript-module","path":"components/map-layer-picker","sourcePath":"src/components/map-layer-picker/map-layer-picker.tsx","declarations":[{"kind":"class","name":"MapLayerPicker","customElement":true,"tagName":"map-layer-picker","pascalCaseName":"MapLayerPicker","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"appearance","description":"'transparent' | 'solid': controls the button appearance when using the 'dropdown' type","type":{"text":"\"solid\" | \"transparent\"","values":[{"type":"string","value":"solid"},{"type":"string","value":"transparent"}]},"default":"'transparent'","attribute":"appearance"},{"kind":"field","name":"configLayerOrderDefined","description":"boolean: when true the layer order should be defined in the enabledLayerIds, when false we will use the older logic of layers first then tables","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"config-layer-order-defined"},{"kind":"field","name":"defaultLayerId","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-layer-id"},{"kind":"field","name":"disabled","description":"boolean: When true the layer picker should be disabled","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"disabled"},{"kind":"field","name":"display","description":"'inline-flex' | 'inline-block': controls the display style of the dropdown","type":{"text":"\"inline-block\" | \"inline-flex\"","values":[{"type":"string","value":"inline-block"},{"type":"string","value":"inline-flex"}]},"default":"'inline-block'","attribute":"display"},{"kind":"field","name":"enabledLayerIds","description":"string[]: Optional list of enabled layer ids\n If empty all layers will be available","type":{"text":"string[]"}},{"kind":"field","name":"height","description":"number: optional fixed height value for the control.\nSpecified as pixel height.","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"height"},{"kind":"field","name":"isMobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-mobile"},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"placeholderIcon","description":"string: optional placeholder icon used with 'combobox' type","type":{"text":"Icon[\"icon\"] | undefined","references":[{"name":"Icon","module":"components/calcite-icon","package":"@esri/calcite-components","start":0,"end":4}],"values":[{"type":"string"}]},"attribute":"placeholder-icon"},{"kind":"field","name":"referenceElement","description":"string: Refrence element for the calcite popover to show the layer list","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"reference-element"},{"kind":"field","name":"scale","description":"'s' | 'm' | 'l': scale to render the component","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","attribute":"scale"},{"kind":"field","name":"selectedIds","description":"string[]: list of layer ids that have been selected by the end user","type":{"text":"string[]"}},{"kind":"field","name":"showLayersListInPopover","description":"boolean: When true all layers list should shown in a popover (reference element prop required)\nIn this case the selected layer will not shown as label","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-layers-list-in-popover"},{"kind":"field","name":"showOnlyUpdatableLayers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-only-updatable-layers"},{"kind":"field","name":"showSingleLayerAsLabel","description":"boolean: when true a map with a single layer will show a label rather than a dropdown\nUsed in conjunction with _hasMultipleLayers","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-single-layer-as-label"},{"kind":"field","name":"showTables","description":"boolean: when true standalone tables will also be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-tables"},{"kind":"field","name":"showTablesDisabled","description":"boolean: when true table will shown as disabled","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-tables-disabled"},{"kind":"field","name":"type","description":"'select' | 'combobox' | 'dropdown': type of component to leverage","type":{"text":"\"combobox\" | \"dropdown\" | \"select\"","values":[{"type":"string","value":"combobox"},{"type":"string","value":"dropdown"},{"type":"string","value":"select"}]},"default":"'select'","attribute":"type"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapLayerPicker = document.querySelector(\"map-layer-picker\");\ndocument.body.append(mapLayerPicker);\nawait mapLayerPicker.componentOnReady();\nconsole.log(\"map-layer-picker is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"setLayerById","description":"Set the layer by id","parameters":[{"name":"id","type":{"text":"string"}},{"name":"skipEditCheck","type":{"text":"boolean"},"default":"false"}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(id: string, skipEditCheck?: boolean): Promise<void>"},{"kind":"method","name":"setLayerByIds","description":"Set the layers by ids","parameters":[{"name":"ids","type":{"text":"string[]"}},{"name":"skipEditCheck","type":{"text":"boolean"},"default":"false"}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(ids: string[], skipEditCheck?: boolean): Promise<void>"},{"kind":"method","name":"updateLayer","description":"updates the layers","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"}],"attributes":[{"name":"appearance","description":"'transparent' | 'solid': controls the button appearance when using the 'dropdown' type","type":{"text":"\"solid\" | \"transparent\"","values":[{"type":"string","value":"solid"},{"type":"string","value":"transparent"}]},"default":"'transparent'","fieldName":"appearance"},{"name":"config-layer-order-defined","description":"boolean: when true the layer order should be defined in the enabledLayerIds, when false we will use the older logic of layers first then tables","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"configLayerOrderDefined"},{"name":"default-layer-id","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultLayerId"},{"name":"disabled","description":"boolean: When true the layer picker should be disabled","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"disabled"},{"name":"display","description":"'inline-flex' | 'inline-block': controls the display style of the dropdown","type":{"text":"\"inline-block\" | \"inline-flex\"","values":[{"type":"string","value":"inline-block"},{"type":"string","value":"inline-flex"}]},"default":"'inline-block'","fieldName":"display"},{"name":"height","description":"number: optional fixed height value for the control.\nSpecified as pixel height.","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"height"},{"name":"is-mobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMobile"},{"name":"placeholder-icon","description":"string: optional placeholder icon used with 'combobox' type","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"placeholderIcon"},{"name":"reference-element","description":"string: Refrence element for the calcite popover to show the layer list","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"referenceElement"},{"name":"scale","description":"'s' | 'm' | 'l': scale to render the component","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","fieldName":"scale"},{"name":"show-layers-list-in-popover","description":"boolean: When true all layers list should shown in a popover (reference element prop required)\nIn this case the selected layer will not shown as label","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showLayersListInPopover"},{"name":"show-only-updatable-layers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showOnlyUpdatableLayers"},{"name":"show-single-layer-as-label","description":"boolean: when true a map with a single layer will show a label rather than a dropdown\nUsed in conjunction with _hasMultipleLayers","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showSingleLayerAsLabel"},{"name":"show-tables","description":"boolean: when true standalone tables will also be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showTables"},{"name":"show-tables-disabled","description":"boolean: when true table will shown as disabled","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showTablesDisabled"},{"name":"type","description":"'select' | 'combobox' | 'dropdown': type of component to leverage","type":{"text":"\"combobox\" | \"dropdown\" | \"select\"","values":[{"type":"string","value":"combobox"},{"type":"string","value":"dropdown"},{"type":"string","value":"select"}]},"default":"'select'","fieldName":"type"}],"events":[{"name":"beforeLayerSelectionChange","description":"Emitted before a new map is loaded","type":{"text":"IBeforeLayerSelectionChange","references":[{"name":"IBeforeLayerSelectionChange","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IBeforeLayerSelectionChange","start":0,"end":27}]}},{"name":"idsFound","description":"Emitted on demand when valid layers/tables are found","type":{"text":"string[]"}},{"name":"layerSelectionChange","description":"Emitted on demand when a layer is selected","type":{"text":"string[]"}},{"name":"noLayersFound","description":"Emitted on demand when no valid layers are found","type":{"text":"void"}}],"importPath":"components/map-layer-picker"}],"exports":[{"kind":"custom-element-definition","name":"map-layer-picker","declaration":{"name":"MapLayerPicker"}}]},{"kind":"javascript-module","path":"components/map-legend","sourcePath":"src/components/map-legend/map-legend.tsx","declarations":[{"kind":"class","name":"MapLegend","customElement":true,"tagName":"map-legend","pascalCaseName":"MapLegend","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"legendWidget","description":"esri/widgets/Legend: https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend.html\n\nLegend instance","type":{"text":"__esri.Legend | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapLegend = document.querySelector(\"map-legend\");\ndocument.body.append(mapLegend);\nawait mapLegend.componentOnReady();\nconsole.log(\"map-legend is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"importPath":"components/map-legend"}],"exports":[{"kind":"custom-element-definition","name":"map-legend","declaration":{"name":"MapLegend"}}]},{"kind":"javascript-module","path":"components/map-picker","sourcePath":"src/components/map-picker/map-picker.tsx","declarations":[{"kind":"class","name":"MapPicker","customElement":true,"tagName":"map-picker","pascalCaseName":"MapPicker","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"height","description":"number: optional fixed height value for the control.\nSpecified as pixel height.","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"height"},{"kind":"field","name":"isMapLayout","description":"boolean: when true map list will shown in half width.","type":{"text":"boolean | undefined","values":[{"type":"boolean"}]},"default":"false","attribute":"is-map-layout"},{"kind":"field","name":"mapInfos","description":"IMapInfo[]: array of map infos (name and id)","type":{"text":"IMapInfo[]","references":[{"name":"IMapInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}},{"kind":"field","name":"referenceElement","description":"string: Refrence element for the calcite popover to show the map list","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"reference-element"},{"kind":"field","name":"selectedWebMapId","description":"string: The id of the map currently selected","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"selected-web-map-id"},{"kind":"field","name":"showMapListInPopover","description":"boolean: When true the map list will shown inside a popover\nIn this case the selected map will not shown as label","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-map-list-in-popover"},{"kind":"method","name":"close","description":"Closes the list","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapPicker = document.querySelector(\"map-picker\");\ndocument.body.append(mapPicker);\nawait mapPicker.componentOnReady();\nconsole.log(\"map-picker is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"setMapByID","parameters":[{"name":"id","type":{"text":"string"}},{"name":"skipEditCheck","type":{"text":"boolean"},"default":"false"}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(id: string, skipEditCheck?: boolean): Promise<void>"},{"kind":"method","name":"toggle","description":"Expands the list","parameters":[{"name":"mapListExpanded","type":{"text":"boolean"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(mapListExpanded: boolean): Promise<void>"}],"attributes":[{"name":"height","description":"number: optional fixed height value for the control.\nSpecified as pixel height.","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"height"},{"name":"is-map-layout","description":"boolean: when true map list will shown in half width.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMapLayout"},{"name":"reference-element","description":"string: Refrence element for the calcite popover to show the map list","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"referenceElement"},{"name":"selected-web-map-id","description":"string: The id of the map currently selected","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"selectedWebMapId"},{"name":"show-map-list-in-popover","description":"boolean: When true the map list will shown inside a popover\nIn this case the selected map will not shown as label","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showMapListInPopover"}],"events":[{"name":"beforeMapInfoChange","description":"Emitted before a new map is loaded","type":{"text":"IBeforeMapChange","references":[{"name":"IBeforeMapChange","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IBeforeMapChange","start":0,"end":16}]}},{"name":"mapInfoChange","description":"Emitted when a new map is loaded","type":{"text":"IMapInfo","references":[{"name":"IMapInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}}],"importPath":"components/map-picker"}],"exports":[{"kind":"custom-element-definition","name":"map-picker","declaration":{"name":"MapPicker"}}]},{"kind":"javascript-module","path":"components/map-search","sourcePath":"src/components/map-search/map-search.tsx","declarations":[{"kind":"class","name":"MapSearch","customElement":true,"tagName":"map-search","pascalCaseName":"MapSearch","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"popupEnabled","description":"boolean: When true the selected feature popup will be shown when serach result is found","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"popup-enabled"},{"kind":"field","name":"resultGraphicEnabled","description":"boolean: When true a graphic will be added for the search result","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"result-graphic-enabled"},{"kind":"field","name":"searchConfiguration","description":"ISearchConfiguration: Configuration details for the Search widget","type":{"text":"ISearchConfiguration | undefined","references":[{"name":"ISearchConfiguration","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchConfiguration","start":0,"end":20}]}},{"kind":"field","name":"searchTerm","description":"string: Text entered by the end user.\nUsed to search against the locator.","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"search-term"},{"kind":"field","name":"searchWidget","description":"esri/widgets/Search: https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Search.html","type":{"text":"__esri.widgetsSearch | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapSearch = document.querySelector(\"map-search\");\ndocument.body.append(mapSearch);\nawait mapSearch.componentOnReady();\nconsole.log(\"map-search is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"popup-enabled","description":"boolean: When true the selected feature popup will be shown when serach result is found","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"popupEnabled"},{"name":"result-graphic-enabled","description":"boolean: When true a graphic will be added for the search result","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"resultGraphicEnabled"},{"name":"search-term","description":"string: Text entered by the end user.\nUsed to search against the locator.","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"searchTerm"}],"importPath":"components/map-search"}],"exports":[{"kind":"custom-element-definition","name":"map-search","declaration":{"name":"MapSearch"}}]},{"kind":"javascript-module","path":"components/map-select-tools","sourcePath":"src/components/map-select-tools/map-select-tools.tsx","declarations":[{"kind":"class","name":"MapSelectTools","customElement":true,"tagName":"map-select-tools","pascalCaseName":"MapSelectTools","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"bufferColor","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"attribute":"buffer-color"},{"kind":"field","name":"bufferOutlineColor","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"attribute":"buffer-outline-color"},{"kind":"field","name":"customLabelEnabled","description":"boolean: When true the user can define a name for each notification list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"custom-label-enabled"},{"kind":"field","name":"defaultBufferDistance","description":"number: The default value to show for the buffer distance","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"default-buffer-distance"},{"kind":"field","name":"defaultBufferUnit","description":"number: The default value to show for the buffer unit","type":{"text":"DistanceUnit | undefined","references":[{"name":"DistanceUnit","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DistanceUnit","start":0,"end":12}],"values":[{"type":"string","value":"meters"},{"type":"string","value":"feet"},{"type":"string","value":"miles"},{"type":"string","value":"kilometers"}]},"attribute":"default-buffer-unit"},{"kind":"field","name":"enabledLayerIds","description":"string[]: Optional list of enabled layer ids\n If empty all layers will be available","type":{"text":"string[]"}},{"kind":"field","name":"enableLayerFeatures","description":"boolean: When true users will be allowed to optionally use features from a layer as the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-layer-features"},{"kind":"field","name":"enableLayerFeaturesOnLoad","description":"boolean: When true the use features from a layer options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-layer-features-on-load"},{"kind":"field","name":"enableSearchDistance","description":"boolean: When true users will be allowed to optionally create a buffer around the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-search-distance"},{"kind":"field","name":"enableSearchDistanceOnLoad","description":"boolean: When true the serach distance options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-search-distance-on-load"},{"kind":"field","name":"enableSketchTools","description":"boolean: When true sketch tools will be provided to allow users to draw a selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-sketch-tools"},{"kind":"field","name":"geometries","description":"esri/geometry: https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry.html","type":{"text":"__esri.Geometry[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"headerLabelClass","description":"string: Header label class","type":{"text":"string","values":[{"type":"string"}]},"default":"'font-bold'","attribute":"header-label-class"},{"kind":"field","name":"isUpdate","description":"boolean: When true a new label is not generated for the stored selection set","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-update"},{"kind":"field","name":"layerViews","description":"esri/views/layers/FeatureLayerView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerView.html","type":{"text":"__esri.FeatureLayerView[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"noResultText","description":"string: The value to show for no results\nwhen left empty the default text '0 selected features from {layerTitle}' will be shown","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"no-result-text"},{"kind":"field","name":"searchConfiguration","description":"ISearchConfiguration: Configuration details for the Search widget","type":{"text":"ISearchConfiguration | undefined","references":[{"name":"ISearchConfiguration","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchConfiguration","start":0,"end":20}]}},{"kind":"field","name":"searchDistanceEnabled","description":"boolean: when true buffer tools controls are enabled","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"search-distance-enabled"},{"kind":"field","name":"selectionLayerIds","description":"string[]: List of layer ids that should be shown as potential selection layers\nwhen skectching with 'Use layer features' option","type":{"text":"string[]"}},{"kind":"field","name":"selectionSet","description":"utils/interfaces/ISelectionSet: Used to store key details about any selections that have been made.","type":{"text":"ISelectionSet | undefined","references":[{"name":"ISelectionSet","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISelectionSet","start":0,"end":13}]}},{"kind":"field","name":"selectLayerView","description":"esri/views/layers/FeatureLayerView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerView.html","type":{"text":"__esri.FeatureLayerView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"sketchLineSymbol","description":"esri/symbols/SimpleLineSymbol | JSON representation : https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html","type":{"text":"__esri.SimpleLineSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"sketchPointSymbol","description":"esri/symbols/SimpleMarkerSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleMarkerSymbol.html","type":{"text":"__esri.SimpleMarkerSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"sketchPolygonSymbol","description":"esri/symbols/SimpleFillSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleFillSymbol.html","type":{"text":"__esri.SimpleFillSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"useLayerFeaturesEnabled","description":"boolean: when true drawn graphics will be used to select features","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"use-layer-features-enabled"},{"kind":"method","name":"clearSelection","description":"Clear any selection results","return":{"description":"Promise when the results have been cleared","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapSelectTools = document.querySelector(\"map-select-tools\");\ndocument.body.append(mapSelectTools);\nawait mapSelectTools.componentOnReady();\nconsole.log(\"map-select-tools is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"getSelection","description":"Get the new selection set","return":{"description":"Promise with the new selection set","type":{"text":"Promise<ISelectionSet>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7},{"name":"ISelectionSet","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISelectionSet","start":8,"end":21}]}},"signature":"(): Promise<ISelectionSet>"}],"attributes":[{"name":"buffer-color","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"bufferColor"},{"name":"buffer-outline-color","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"bufferOutlineColor"},{"name":"custom-label-enabled","description":"boolean: When true the user can define a name for each notification list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"customLabelEnabled"},{"name":"default-buffer-distance","description":"number: The default value to show for the buffer distance","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"defaultBufferDistance"},{"name":"default-buffer-unit","description":"number: The default value to show for the buffer unit","type":{"text":"\"meters\" | \"feet\" | \"miles\" | \"kilometers\"","values":[{"type":"string","value":"meters"},{"type":"string","value":"feet"},{"type":"string","value":"miles"},{"type":"string","value":"kilometers"}]},"fieldName":"defaultBufferUnit"},{"name":"enable-layer-features","description":"boolean: When true users will be allowed to optionally use features from a layer as the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableLayerFeatures"},{"name":"enable-layer-features-on-load","description":"boolean: When true the use features from a layer options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableLayerFeaturesOnLoad"},{"name":"enable-search-distance","description":"boolean: When true users will be allowed to optionally create a buffer around the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableSearchDistance"},{"name":"enable-search-distance-on-load","description":"boolean: When true the serach distance options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSearchDistanceOnLoad"},{"name":"enable-sketch-tools","description":"boolean: When true sketch tools will be provided to allow users to draw a selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableSketchTools"},{"name":"header-label-class","description":"string: Header label class","type":{"text":"string","values":[{"type":"string"}]},"default":"'font-bold'","fieldName":"headerLabelClass"},{"name":"is-update","description":"boolean: When true a new label is not generated for the stored selection set","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isUpdate"},{"name":"no-result-text","description":"string: The value to show for no results\nwhen left empty the default text '0 selected features from {layerTitle}' will be shown","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"noResultText"},{"name":"search-distance-enabled","description":"boolean: when true buffer tools controls are enabled","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"searchDistanceEnabled"},{"name":"use-layer-features-enabled","description":"boolean: when true drawn graphics will be used to select features","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"useLayerFeaturesEnabled"}],"events":[{"name":"selectionSetChange","description":"Emitted on demand when the selection set changes.","type":{"text":"number"}}],"importPath":"components/map-select-tools"}],"exports":[{"kind":"custom-element-definition","name":"map-select-tools","declaration":{"name":"MapSelectTools"}}]},{"kind":"javascript-module","path":"components/map-tools","sourcePath":"src/components/map-tools/map-tools.tsx","declarations":[{"kind":"class","name":"MapTools","customElement":true,"tagName":"map-tools","pascalCaseName":"MapTools","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"basemapConfig","description":"IBasemapConfig: List of any basemaps to filter out from the basemap widget","type":{"text":"IBasemapConfig | undefined","references":[{"name":"IBasemapConfig","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IBasemapConfig","start":0,"end":14}]}},{"kind":"field","name":"defaultLayerId","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-layer-id"},{"kind":"field","name":"enableBasemap","description":"boolean: when true the basemap widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-basemap"},{"kind":"field","name":"enabledLayerIds","description":"string[]: Optional list of enabled layer ids\n If empty all layers will be available","type":{"text":"string[]"}},{"kind":"field","name":"enableFloorFilter","description":"boolean: when true the floor filter widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-floor-filter"},{"kind":"field","name":"enableFullscreen","description":"boolean: when true the fullscreen widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-fullscreen"},{"kind":"field","name":"enableHome","description":"boolean: when true the home widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-home"},{"kind":"field","name":"enableLayerList","description":"boolean: when true the layer list widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-layer-list"},{"kind":"field","name":"enableLegend","description":"boolean: when true the legend widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-legend"},{"kind":"field","name":"enableMapLayerPicker","description":"boolean: when true the map layer picker will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-map-layer-picker"},{"kind":"field","name":"enableMapPicker","description":"boolean: when true the map picker will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-map-picker"},{"kind":"field","name":"enableSearch","description":"boolean: when true the search widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-search"},{"kind":"field","name":"enableSelectionTool","description":"boolean: when true the selection tools will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-selection-tool"},{"kind":"field","name":"enableSingleExpand","description":"boolean: when true map tools will be displayed within a single expand/collapse widget\nwhen false widgets will be loaded individually into expand widgets","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-single-expand"},{"kind":"field","name":"isMobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-mobile"},{"kind":"field","name":"layout","description":"'horizontal' | 'vertical': used to control the orientation of the tools","type":{"text":"\"horizontal\" | \"vertical\"","values":[{"type":"string","value":"horizontal"},{"type":"string","value":"vertical"}]},"default":"'vertical'","attribute":"layout"},{"kind":"field","name":"mapInfo","description":"IMapInfo: key configuration details about the current map","type":{"text":"IMapInfo | undefined","references":[{"name":"IMapInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}},{"kind":"field","name":"mapInfos","description":"IMapInfo[]: array of map infos (name and id)","type":{"text":"IMapInfo[]","references":[{"name":"IMapInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}},{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapWidgetsSize","description":"'s' | 'm' | 'l': Used for optional map tool widget","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","attribute":"map-widgets-size"},{"kind":"field","name":"parentComponentHeight","description":"component height","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"parent-component-height"},{"kind":"field","name":"parentComponentWidth","description":"Parent component width","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"parent-component-width"},{"kind":"field","name":"position","description":"__esri.UIPosition: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-ui-UI.html#UIPosition\nThe position details for the tools","type":{"text":"__esri.UIPosition","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}],"values":[{"type":"string","value":"top-left"},{"type":"string","value":"top-right"},{"type":"string","value":"bottom-left"},{"type":"string","value":"bottom-right"},{"type":"string","value":"top-leading"},{"type":"string","value":"top-trailing"},{"type":"string","value":"bottom-leading"},{"type":"string","value":"bottom-trailing"},{"type":"string","value":"manual"}]},"default":"'top-leading'","attribute":"position"},{"kind":"field","name":"searchConfiguration","description":"ISearchConfiguration: Configuration details for the Search widget","type":{"text":"ISearchConfiguration | undefined","references":[{"name":"ISearchConfiguration","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchConfiguration","start":0,"end":20}]}},{"kind":"field","name":"selectedFeaturesIds","description":"number[]: A list of ids that are currently selected","type":{"text":"(number | string)[]"}},{"kind":"field","name":"selectedLayer","description":"__esri.FeatureLayer: Selected feature layer","type":{"text":"__esri.FeatureLayer | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"selectedWebMapId","description":"string: selected web map","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"selected-web-map-id"},{"kind":"field","name":"selectionTools","description":"string[]: Selection tools to show","type":{"text":"string[]"}},{"kind":"field","name":"showOnlyUpdatableLayers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-only-updatable-layers"},{"kind":"field","name":"stackTools","description":"boolean: When true the map widget tools will have no margin between them.\nWhen false the map widget tools will have a margin between them.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"stack-tools"},{"kind":"field","name":"toolOrder","description":"Tools to show and its order\nValid tools: 'home', 'legend', 'search', 'fullscreen', 'basemap', 'floorfilter', 'selectiontool', 'layers-list', 'map-picker', 'map-layer-picker'","type":{"text":"string[]"}},{"kind":"field","name":"visibilityIcon","description":"VisibilityIconType: visibility icon for the layer list widget","type":{"text":"VisibilityIconType","references":[{"name":"VisibilityIconType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#VisibilityIconType","start":0,"end":18}],"values":[{"type":"string","value":"checkbox"},{"type":"string","value":"eyeball"}]},"default":"'eyeball'","attribute":"visibility-icon"},{"kind":"field","name":"zoomToolsSize","description":"'s' | 'm' | 'l': Used for Zoom tools","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","attribute":"zoom-tools-size"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst mapTools = document.querySelector(\"map-tools\");\ndocument.body.append(mapTools);\nawait mapTools.componentOnReady();\nconsole.log(\"map-tools is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"default-layer-id","description":"string: when provided this layer ID will be used when the app loads","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultLayerId"},{"name":"enable-basemap","description":"boolean: when true the basemap widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableBasemap"},{"name":"enable-floor-filter","description":"boolean: when true the floor filter widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableFloorFilter"},{"name":"enable-fullscreen","description":"boolean: when true the fullscreen widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableFullscreen"},{"name":"enable-home","description":"boolean: when true the home widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableHome"},{"name":"enable-layer-list","description":"boolean: when true the layer list widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableLayerList"},{"name":"enable-legend","description":"boolean: when true the legend widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableLegend"},{"name":"enable-map-layer-picker","description":"boolean: when true the map layer picker will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableMapLayerPicker"},{"name":"enable-map-picker","description":"boolean: when true the map picker will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableMapPicker"},{"name":"enable-search","description":"boolean: when true the search widget will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSearch"},{"name":"enable-selection-tool","description":"boolean: when true the selection tools will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSelectionTool"},{"name":"enable-single-expand","description":"boolean: when true map tools will be displayed within a single expand/collapse widget\nwhen false widgets will be loaded individually into expand widgets","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSingleExpand"},{"name":"is-mobile","description":"When true the component will render an optimized view for mobile devices","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isMobile"},{"name":"layout","description":"'horizontal' | 'vertical': used to control the orientation of the tools","type":{"text":"\"horizontal\" | \"vertical\"","values":[{"type":"string","value":"horizontal"},{"type":"string","value":"vertical"}]},"default":"'vertical'","fieldName":"layout"},{"name":"map-widgets-size","description":"'s' | 'm' | 'l': Used for optional map tool widget","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","fieldName":"mapWidgetsSize"},{"name":"parent-component-height","description":"component height","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"parentComponentHeight"},{"name":"parent-component-width","description":"Parent component width","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"parentComponentWidth"},{"name":"position","description":"__esri.UIPosition: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-ui-UI.html#UIPosition\nThe position details for the tools","type":{"text":"\"top-left\" | \"top-right\" | \"bottom-left\" | \"bottom-right\" | \"top-leading\" | \"top-trailing\" | \"bottom-leading\" | \"bottom-trailing\" | \"manual\"","values":[{"type":"string","value":"top-left"},{"type":"string","value":"top-right"},{"type":"string","value":"bottom-left"},{"type":"string","value":"bottom-right"},{"type":"string","value":"top-leading"},{"type":"string","value":"top-trailing"},{"type":"string","value":"bottom-leading"},{"type":"string","value":"bottom-trailing"},{"type":"string","value":"manual"}]},"default":"'top-leading'","fieldName":"position"},{"name":"selected-web-map-id","description":"string: selected web map","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"selectedWebMapId"},{"name":"show-only-updatable-layers","description":"boolean: When true only editable layers that support the update capability will be available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showOnlyUpdatableLayers"},{"name":"stack-tools","description":"boolean: When true the map widget tools will have no margin between them.\nWhen false the map widget tools will have a margin between them.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"stackTools"},{"name":"visibility-icon","description":"VisibilityIconType: visibility icon for the layer list widget","type":{"text":"\"checkbox\" | \"eyeball\"","values":[{"type":"string","value":"checkbox"},{"type":"string","value":"eyeball"}]},"default":"'eyeball'","fieldName":"visibilityIcon"},{"name":"zoom-tools-size","description":"'s' | 'm' | 'l': Used for Zoom tools","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","fieldName":"zoomToolsSize"}],"events":[{"name":"clearSelection","description":"Emitted on demand when clear selection button is clicked","type":{"text":"void"}}],"importPath":"components/map-tools"}],"exports":[{"kind":"custom-element-definition","name":"map-tools","declaration":{"name":"MapTools"}}]},{"kind":"javascript-module","path":"components/pci-calculator","sourcePath":"src/components/pci-calculator/pci-calculator.tsx","declarations":[{"kind":"class","name":"PciCalculator","customElement":true,"tagName":"pci-calculator","pascalCaseName":"PciCalculator","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst pciCalculator = document.querySelector(\"pci-calculator\");\ndocument.body.append(pciCalculator);\nawait pciCalculator.componentOnReady();\nconsole.log(\"pci-calculator is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"importPath":"components/pci-calculator"}],"exports":[{"kind":"custom-element-definition","name":"pci-calculator","declaration":{"name":"PciCalculator"}}]},{"kind":"javascript-module","path":"components/pdf-download","sourcePath":"src/components/pdf-download/pdf-download.tsx","declarations":[{"kind":"class","name":"PdfDownload","customElement":true,"tagName":"pdf-download","pascalCaseName":"PdfDownload","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"defaultNumLabelsPerPage","description":"number: The default number of labels per page to export","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"default-num-labels-per-page"},{"kind":"field","name":"disabled","description":"boolean: Controls the enabled/disabled state of download","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"disabled"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst pdfDownload = document.querySelector(\"pdf-download\");\ndocument.body.append(pdfDownload);\nawait pdfDownload.componentOnReady();\nconsole.log(\"pdf-download is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"downloadCSV","description":"Downloads csv of mailing labels for the provided list of ids","parameters":[{"name":"webmap","description":"Webmap containing layer","type":{"text":"__esri.Map","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"name":"exportInfos","description":"Information about items to be exported","type":{"text":"IExportInfos","references":[{"name":"IExportInfos","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IExportInfos","start":0,"end":12}]}},{"name":"removeDuplicates","description":"When true a single label is generated when multiple featues have a shared address value","type":{"text":"boolean"}},{"name":"addColumnTitle","description":"Indicates if column headings should be included in output","type":{"text":"boolean"},"default":"true"}],"return":{"description":"Promise resolving when function is done","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(webmap: __esri.Map, exportInfos: IExportInfos, removeDuplicates: boolean, addColumnTitle?: boolean): Promise<void>"},{"kind":"method","name":"downloadPDF","description":"Downloads pdf of mailing labels for the provided list of ids","parameters":[{"name":"webmap","description":"Webmap containing layer","type":{"text":"__esri.Map","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"name":"exportInfos","description":"Information about items to be exported","type":{"text":"IExportInfos","references":[{"name":"IExportInfos","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IExportInfos","start":0,"end":12}]}},{"name":"removeDuplicates","description":"When true a single label is generated when multiple featues have a shared address value","type":{"text":"boolean"},"default":"false"},{"name":"title","description":"Title for each page","type":{"text":"string"},"default":"''"},{"name":"initialImageDataUrl","description":"Data URL of image for first page","type":{"text":"string"},"default":"''"}],"return":{"description":"Promise resolving when function is done","type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(webmap: __esri.Map, exportInfos: IExportInfos, removeDuplicates?: boolean, title?: string, initialImageDataUrl?: string): Promise<void>"}],"attributes":[{"name":"default-num-labels-per-page","description":"number: The default number of labels per page to export","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"defaultNumLabelsPerPage"},{"name":"disabled","description":"boolean: Controls the enabled/disabled state of download","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"disabled"}],"importPath":"components/pdf-download"}],"exports":[{"kind":"custom-element-definition","name":"pdf-download","declaration":{"name":"PdfDownload"}}]},{"kind":"javascript-module","path":"components/public-notification","sourcePath":"src/components/public-notification/public-notification.tsx","declarations":[{"kind":"class","name":"PublicNotification","customElement":true,"tagName":"public-notification","pascalCaseName":"PublicNotification","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"addresseeLayerIds","description":"string[]: List of layer ids that should be shown as potential addressee layers","type":{"text":"string[]"}},{"kind":"field","name":"bufferColor","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"attribute":"buffer-color"},{"kind":"field","name":"bufferOutlineColor","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"attribute":"buffer-outline-color"},{"kind":"field","name":"customExport","description":"boolean: When true the custom export functionality should be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"custom-export"},{"kind":"field","name":"customExportURL","description":"string: The custom print service URL","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"custom-export-url"},{"kind":"field","name":"customLabelEnabled","description":"boolean: When true the user can define a name for each notification list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"custom-label-enabled"},{"kind":"field","name":"defaultBufferDistance","description":"number: The default value to show for the buffer distance","type":{"text":"number","values":[{"type":"number"}]},"default":"0","attribute":"default-buffer-distance"},{"kind":"field","name":"defaultBufferUnit","description":"number: The default value to show for the buffer unit ('feet'|'meters'|'miles'|'kilometers')","type":{"text":"DistanceUnit","references":[{"name":"DistanceUnit","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DistanceUnit","start":0,"end":12}],"values":[{"type":"string","value":"meters"},{"type":"string","value":"feet"},{"type":"string","value":"miles"},{"type":"string","value":"kilometers"}]},"default":"'feet'","attribute":"default-buffer-unit"},{"kind":"field","name":"defaultExportTitle","description":"string: The default value to use for the export title","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"default-export-title"},{"kind":"field","name":"defaultNumLabelsPerPage","description":"number: The default number of labels per page to export","type":{"text":"number","values":[{"type":"number"}]},"default":"6","attribute":"default-num-labels-per-page"},{"kind":"field","name":"enableLayerFeatures","description":"boolean: When true users will be allowed to optionally use features from a layer as the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-layer-features"},{"kind":"field","name":"enableLayerFeaturesOnLoad","description":"boolean: When true the use features from a layer options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-layer-features-on-load"},{"kind":"field","name":"enableSearchDistance","description":"boolean: When true users will be allowed to optionally create a buffer around the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-search-distance"},{"kind":"field","name":"enableSearchDistanceOnLoad","description":"boolean: When true the serach distance options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-search-distance-on-load"},{"kind":"field","name":"enableSketchTools","description":"boolean: When true sketch tools will be provided to allow users to draw a selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-sketch-tools"},{"kind":"field","name":"featureEffect","description":"The effect that will be applied when featureHighlightEnabled is true\n\nesri/layers/support/FeatureEffect: https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureEffect.html","type":{"text":"__esri.FeatureEffect | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"featureHighlightEnabled","description":"boolean: When enabled features will be highlighted when their notification list item is clicked.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"feature-highlight-enabled"},{"kind":"field","name":"initialNotice","description":"string: The value to show in the initial notice to help with on boarding the user.\nWhen left empty the selectLayerAndAdd text from the nls will be used.","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"initial-notice"},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"noResultText","description":"string: The value to show for no results\nwhen left empty the default text '0 selected features from {layerTitle}' will be shown","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"no-result-text"},{"kind":"field","name":"searchConfiguration","description":"ISearchConfiguration: Configuration details for the Search widget","type":{"text":"ISearchConfiguration | undefined","references":[{"name":"ISearchConfiguration","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchConfiguration","start":0,"end":20}]}},{"kind":"field","name":"selectionLayerIds","description":"string[]: List of layer ids that should be shown as potential selection layers\nwhen skectching with 'Use layer features' option","type":{"text":"string[]"}},{"kind":"field","name":"showRefineSelection","description":"boolean: When true the refine selection workflow will be included in the UI","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-refine-selection"},{"kind":"field","name":"showSearchSettings","description":"boolean: When false no buffer distance or unit controls will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"show-search-settings"},{"kind":"field","name":"sketchLineSymbol","description":"esri/symbols/SimpleLineSymbol | JSON representation : https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html\n\nA JSON representation of the instance in the ArcGIS format.\nSee the ArcGIS REST API documentation for examples of the structure of various input JSON objects.\nhttps://developers.arcgis.com/documentation/common-data-types/symbol-objects.htm","type":{"text":"__esri.SimpleLineSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"sketchPointSymbol","description":"esri/symbols/SimpleMarkerSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleMarkerSymbol.html\n\nA JSON representation of the instance in the ArcGIS format.\nSee the ArcGIS REST API documentation for examples of the structure of various input JSON objects.\nhttps://developers.arcgis.com/documentation/common-data-types/symbol-objects.htm","type":{"text":"__esri.SimpleMarkerSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"sketchPolygonSymbol","description":"esri/symbols/SimpleFillSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleFillSymbol.html\n\nA JSON representation of the instance in the ArcGIS format.\nSee the ArcGIS REST API documentation for examples of the structure of various input JSON objects.\nhttps://developers.arcgis.com/documentation/common-data-types/symbol-objects.htm","type":{"text":"__esri.SimpleFillSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst publicNotification = document.querySelector(\"public-notification\");\ndocument.body.append(publicNotification);\nawait publicNotification.componentOnReady();\nconsole.log(\"public-notification is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"buffer-color","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"bufferColor"},{"name":"buffer-outline-color","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"bufferOutlineColor"},{"name":"custom-export","description":"boolean: When true the custom export functionality should be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"customExport"},{"name":"custom-export-url","description":"string: The custom print service URL","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"customExportURL"},{"name":"custom-label-enabled","description":"boolean: When true the user can define a name for each notification list","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"customLabelEnabled"},{"name":"default-buffer-distance","description":"number: The default value to show for the buffer distance","type":{"text":"number","values":[{"type":"number"}]},"default":"0","fieldName":"defaultBufferDistance"},{"name":"default-buffer-unit","description":"number: The default value to show for the buffer unit ('feet'|'meters'|'miles'|'kilometers')","type":{"text":"\"meters\" | \"feet\" | \"miles\" | \"kilometers\"","values":[{"type":"string","value":"meters"},{"type":"string","value":"feet"},{"type":"string","value":"miles"},{"type":"string","value":"kilometers"}]},"default":"'feet'","fieldName":"defaultBufferUnit"},{"name":"default-export-title","description":"string: The default value to use for the export title","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"defaultExportTitle"},{"name":"default-num-labels-per-page","description":"number: The default number of labels per page to export","type":{"text":"number","values":[{"type":"number"}]},"default":"6","fieldName":"defaultNumLabelsPerPage"},{"name":"enable-layer-features","description":"boolean: When true users will be allowed to optionally use features from a layer as the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableLayerFeatures"},{"name":"enable-layer-features-on-load","description":"boolean: When true the use features from a layer options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableLayerFeaturesOnLoad"},{"name":"enable-search-distance","description":"boolean: When true users will be allowed to optionally create a buffer around the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableSearchDistance"},{"name":"enable-search-distance-on-load","description":"boolean: When true the serach distance options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSearchDistanceOnLoad"},{"name":"enable-sketch-tools","description":"boolean: When true sketch tools will be provided to allow users to draw a selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableSketchTools"},{"name":"feature-highlight-enabled","description":"boolean: When enabled features will be highlighted when their notification list item is clicked.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"featureHighlightEnabled"},{"name":"initial-notice","description":"string: The value to show in the initial notice to help with on boarding the user.\nWhen left empty the selectLayerAndAdd text from the nls will be used.","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"initialNotice"},{"name":"no-result-text","description":"string: The value to show for no results\nwhen left empty the default text '0 selected features from {layerTitle}' will be shown","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"noResultText"},{"name":"show-refine-selection","description":"boolean: When true the refine selection workflow will be included in the UI","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showRefineSelection"},{"name":"show-search-settings","description":"boolean: When false no buffer distance or unit controls will be exposed","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"showSearchSettings"}],"events":[{"name":"searchConfigurationChange","description":"Emitted on demand when searchConfiguration gets a new value","type":{"text":"ISearchConfiguration","references":[{"name":"ISearchConfiguration","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchConfiguration","start":0,"end":20}]}}],"importPath":"components/public-notification"}],"exports":[{"kind":"custom-element-definition","name":"public-notification","declaration":{"name":"PublicNotification"}}]},{"kind":"javascript-module","path":"components/refine-selection","sourcePath":"src/components/refine-selection/refine-selection.tsx","declarations":[{"kind":"class","name":"RefineSelection","customElement":true,"tagName":"refine-selection","pascalCaseName":"RefineSelection","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"addresseeLayer","description":"esri/views/layers/FeatureLayerView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerView.html","type":{"text":"__esri.FeatureLayerView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"bufferColor","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"attribute":"buffer-color"},{"kind":"field","name":"bufferOutlineColor","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"attribute":"buffer-outline-color"},{"kind":"field","name":"defaultBufferDistance","description":"number: The default value to show for the buffer distance","type":{"text":"number | undefined","values":[{"type":"number"}]},"attribute":"default-buffer-distance"},{"kind":"field","name":"defaultBufferUnit","description":"number: The default value to show for the buffer unit","type":{"text":"DistanceUnit | undefined","references":[{"name":"DistanceUnit","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DistanceUnit","start":0,"end":12}],"values":[{"type":"string","value":"meters"},{"type":"string","value":"feet"},{"type":"string","value":"miles"},{"type":"string","value":"kilometers"}]},"attribute":"default-buffer-unit"},{"kind":"field","name":"drawnGraphicsArr","description":"Array of drawn graphics for refine selection","type":{"text":"{\n drawnGraphic: __esri.Graphic | undefined;\n bufferGraphic: __esri.Graphic | undefined;\n}[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":20,"end":27},{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":67,"end":74}]}},{"kind":"field","name":"enabledLayerIds","description":"string[]: Optional list of enabled layer ids\n If empty all layers will be available","type":{"text":"string[]"}},{"kind":"field","name":"enableSearchDistance","description":"boolean: When true users will be allowed to optionally create a buffer around the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"enable-search-distance"},{"kind":"field","name":"enableSearchDistanceOnLoad","description":"boolean: When true the serach distance options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"enable-search-distance-on-load"},{"kind":"field","name":"geometries","description":"esri/geometry: https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry.html","type":{"text":"__esri.Geometry[] | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"mapView","description":"esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"searchDistanceEnabled","description":"boolean: when true buffer tools controls are enabled","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"search-distance-enabled"},{"kind":"field","name":"selectionSets","description":"utils/interfaces/ISelectionSet: An array of user defined selection sets","type":{"text":"ISelectionSet[]","references":[{"name":"ISelectionSet","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISelectionSet","start":0,"end":13}]}},{"kind":"field","name":"sketchLineSymbol","description":"esri/symbols/SimpleLineSymbol | JSON representation : https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html","type":{"text":"__esri.SimpleLineSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"sketchPointSymbol","description":"esri/symbols/SimpleMarkerSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleMarkerSymbol.html","type":{"text":"__esri.SimpleMarkerSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"sketchPolygonSymbol","description":"esri/symbols/SimpleFillSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleFillSymbol.html","type":{"text":"__esri.SimpleFillSymbol | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst refineSelection = document.querySelector(\"refine-selection\");\ndocument.body.append(refineSelection);\nawait refineSelection.componentOnReady();\nconsole.log(\"refine-selection is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"buffer-color","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"bufferColor"},{"name":"buffer-outline-color","description":"string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"bufferOutlineColor"},{"name":"default-buffer-distance","description":"number: The default value to show for the buffer distance","type":{"text":"number","values":[{"type":"number"}]},"fieldName":"defaultBufferDistance"},{"name":"default-buffer-unit","description":"number: The default value to show for the buffer unit","type":{"text":"\"meters\" | \"feet\" | \"miles\" | \"kilometers\"","values":[{"type":"string","value":"meters"},{"type":"string","value":"feet"},{"type":"string","value":"miles"},{"type":"string","value":"kilometers"}]},"fieldName":"defaultBufferUnit"},{"name":"enable-search-distance","description":"boolean: When true users will be allowed to optionally create a buffer around the selection geometry","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"enableSearchDistance"},{"name":"enable-search-distance-on-load","description":"boolean: When true the serach distance options will be enabled when the component loads","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"enableSearchDistanceOnLoad"},{"name":"search-distance-enabled","description":"boolean: when true buffer tools controls are enabled","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"searchDistanceEnabled"}],"events":[{"name":"selectionLoadingChange","description":"Emitted on demand when selection starts or ends.","type":{"text":"boolean"}},{"name":"selectionSetsChanged","description":"Emitted on demand when selection sets change.","type":{"text":"ISelectionSet[]","references":[{"name":"ISelectionSet","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISelectionSet","start":0,"end":13}]}}],"importPath":"components/refine-selection"}],"exports":[{"kind":"custom-element-definition","name":"refine-selection","declaration":{"name":"RefineSelection"}}]},{"kind":"javascript-module","path":"components/selection-tool","sourcePath":"src/components/selection-tool/selection-tool.tsx","declarations":[{"kind":"class","name":"SelectionTool","customElement":true,"tagName":"selection-tool","pascalCaseName":"SelectionTool","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"encapsulation":"none","members":[{"kind":"field","name":"mapView","description":"esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"selectedLayerId","description":"string: Selected layer id","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"selected-layer-id"},{"kind":"field","name":"tool","description":"string: Tool for selecting the features","type":{"text":"\"circle\" | \"freehandPolygon\" | \"polygon\" | \"rectangle\"","values":[{"type":"string","value":"circle"},{"type":"string","value":"freehandPolygon"},{"type":"string","value":"polygon"},{"type":"string","value":"rectangle"}]},"default":"'rectangle'","attribute":"tool"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst selectionTool = document.querySelector(\"selection-tool\");\ndocument.body.append(selectionTool);\nawait selectionTool.componentOnReady();\nconsole.log(\"selection-tool is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"toggleSelectionTool","description":"Toggles the selection tool state","parameters":[{"name":"tool","description":"Tool for selecting the features","type":{"text":"\"circle\" | \"freehandPolygon\" | \"polygon\" | \"rectangle\""}},{"name":"isActive","type":{"text":"boolean"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(tool: \"circle\" | \"freehandPolygon\" | \"polygon\" | \"rectangle\", isActive: boolean): Promise<void>"}],"attributes":[{"name":"selected-layer-id","description":"string: Selected layer id","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"selectedLayerId"},{"name":"tool","description":"string: Tool for selecting the features","type":{"text":"\"circle\" | \"freehandPolygon\" | \"polygon\" | \"rectangle\"","values":[{"type":"string","value":"circle"},{"type":"string","value":"freehandPolygon"},{"type":"string","value":"polygon"},{"type":"string","value":"rectangle"}]},"default":"'rectangle'","fieldName":"tool"}],"events":[{"name":"drawingComplete","description":"Emitted when drawing is completed","type":{"text":"void"}},{"name":"featuresSelected","description":"Emitted when feature are selected","type":{"text":"(number | string)[] | undefined"}}],"importPath":"components/selection-tool"}],"exports":[{"kind":"custom-element-definition","name":"selection-tool","declaration":{"name":"SelectionTool"}}]},{"kind":"javascript-module","path":"components/solution-configure-titles","sourcePath":"src/components/solution-configure-titles/solution-configure-titles.tsx","declarations":[{"kind":"class","name":"SolutionConfigureTitles","customElement":true,"tagName":"solution-configure-titles","pascalCaseName":"SolutionConfigureTitles","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"card","description":"Key details about the solution","type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"open","description":"boolean: when true the dialog is open","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"open"},{"kind":"field","name":"solutionData","description":"The solution items data used here to check for and store any user defined prefix or suffix values","type":{"text":"any","values":[{"type":"any"}]},"attribute":"solution-data"},{"kind":"field","name":"source","description":"Source from which the dialog was opened (\"Card Dropdown\" or \"Details Page\")","type":{"text":"\"Card Dropdown\" | \"Details Page\"","values":[{"type":"string","value":"Card Dropdown"},{"type":"string","value":"Details Page"}]},"default":"'Card Dropdown'","attribute":"source"},{"kind":"field","name":"templateInfos","description":"ITemplateInfo[]: Collection of template infos","type":{"text":"ITemplateInfo[]","references":[{"name":"ITemplateInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ITemplateInfo","start":0,"end":13}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionConfigureTitles = document.querySelector(\"solution-configure-titles\");\ndocument.body.append(solutionConfigureTitles);\nawait solutionConfigureTitles.componentOnReady();\nconsole.log(\"solution-configure-titles is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"open","description":"boolean: when true the dialog is open","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"open"},{"name":"solution-data","description":"The solution items data used here to check for and store any user defined prefix or suffix values","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"solutionData"},{"name":"source","description":"Source from which the dialog was opened (\"Card Dropdown\" or \"Details Page\")","type":{"text":"\"Card Dropdown\" | \"Details Page\"","values":[{"type":"string","value":"Card Dropdown"},{"type":"string","value":"Details Page"}]},"default":"'Card Dropdown'","fieldName":"source"}],"events":[{"name":"solutionConfigureTitlesBeforeClose","description":"This event will be emitted when this dialog is closed","type":{"text":"void"}},{"name":"solutionItemsTitlesChanged","description":"This event will be emitted when the titles have been updated","type":{"text":"void"}}],"importPath":"components/solution-configure-titles"}],"exports":[{"kind":"custom-element-definition","name":"solution-configure-titles","declaration":{"name":"SolutionConfigureTitles"}}]},{"kind":"javascript-module","path":"components/solution-delete-dialog","sourcePath":"src/components/solution-delete-dialog/solution-delete-dialog.tsx","declarations":[{"kind":"class","name":"SolutionDeleteDialog","customElement":true,"tagName":"solution-delete-dialog","pascalCaseName":"SolutionDeleteDialog","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"card","description":"Key details about the solution","docsTags":[{"name":"required"}],"type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"open","description":"When true the dialog will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"open"},{"kind":"field","name":"source","description":"Source from which the dialog was opened (\"Card Dropdown\" or \"Details Page\")","type":{"text":"\"Card Dropdown\" | \"Details Page\"","values":[{"type":"string","value":"Card Dropdown"},{"type":"string","value":"Details Page"}]},"default":"'Card Dropdown'","attribute":"source"},{"kind":"method","name":"close","description":"Closes the panel","return":{"type":{"text":"void"}},"signature":"(): void"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionDeleteDialog = document.querySelector(\"solution-delete-dialog\");\ndocument.body.append(solutionDeleteDialog);\nawait solutionDeleteDialog.componentOnReady();\nconsole.log(\"solution-delete-dialog is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"delete","description":"Deletes the solution provided in the card property.","return":{"type":{"text":"void"}},"signature":"(): void"}],"attributes":[{"name":"open","description":"When true the dialog will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"open"},{"name":"source","description":"Source from which the dialog was opened (\"Card Dropdown\" or \"Details Page\")","type":{"text":"\"Card Dropdown\" | \"Details Page\"","values":[{"type":"string","value":"Card Dropdown"},{"type":"string","value":"Details Page"}]},"default":"'Card Dropdown'","fieldName":"source"}],"events":[{"name":"solutionDeleted","description":"Emitted after delete process to refresh solutions list","type":{"text":"{\n showAlert: boolean;\n refreshSolutionsTimeout: boolean;\n solutionTitle?: string;\n}"}},{"name":"solutionDeleteDialogBeforeClose","description":"This event will be emitted on dialog before close","type":{"text":"void"}},{"name":"solutionDeleteDialogOpen","description":"Emitted when the dialog is closed.","type":{"text":"boolean"}}],"importPath":"components/solution-delete-dialog"}],"exports":[{"kind":"custom-element-definition","name":"solution-delete-dialog","declaration":{"name":"SolutionDeleteDialog"}}]},{"kind":"javascript-module","path":"components/solution-deploy-dialog","sourcePath":"src/components/solution-deploy-dialog/solution-deploy-dialog.tsx","declarations":[{"kind":"class","name":"SolutionDeployDialog","customElement":true,"tagName":"solution-deploy-dialog","pascalCaseName":"SolutionDeployDialog","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"card","description":"Key details about the solution","type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"debugFailDeployment","description":"Debug mode: when true, simulates a deployment failure instead of actually deploying","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"debug-fail-deployment"},{"kind":"field","name":"open","description":"When true the dialog will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"open"},{"kind":"field","name":"userOptions","description":"TODO...this will need to be thought through some more...\nmay be able to remove completely for v2 but need to look closer at other custom params that were supported to see","type":{"text":"IUserOption[]","references":[{"name":"IUserOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IUserOption","start":0,"end":11}]}},{"kind":"method","name":"close","description":"Closes the panel","return":{"type":{"text":"void"}},"signature":"(): void"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionDeployDialog = document.querySelector(\"solution-deploy-dialog\");\ndocument.body.append(solutionDeployDialog);\nawait solutionDeployDialog.componentOnReady();\nconsole.log(\"solution-deploy-dialog is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"deploy","description":"Deploys a solution","return":{"type":{"text":"void"}},"signature":"(): void"}],"attributes":[{"name":"debug-fail-deployment","description":"Debug mode: when true, simulates a deployment failure instead of actually deploying","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"debugFailDeployment"},{"name":"open","description":"When true the dialog will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"open"}],"events":[{"name":"deployCancelled","description":"Emitted when the deploy dialog is cancelled or closed before deployment","type":{"text":"void"}},{"name":"deployFailed","description":"Emitted on demand when deploy fails\nThe emitted IDeployFailed value provides access to the current card and job id","type":{"text":"IDeployFailed","references":[{"name":"IDeployFailed","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IDeployFailed","start":0,"end":13}]}},{"name":"deployProgressEnd","description":"Emitted on demand when deploy progress ends\nThe emitted boolean value indicates if the process was successful or not","type":{"text":"string"}},{"name":"deployProgressStart","description":"Emitted on demand when deploy progress is started","type":{"text":"AbortController","references":[{"name":"AbortController","package":"global:","viewUrl":"https://developer.mozilla.org/docs/Web/API/AbortController","start":0,"end":15}]}},{"name":"deployProgressUpdated","description":"Emitted on demand when deploy progress is updated","type":{"text":"IDeployProgressUpdate","references":[{"name":"IDeployProgressUpdate","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IDeployProgressUpdate","start":0,"end":21}]}}],"importPath":"components/solution-deploy-dialog"}],"exports":[{"kind":"custom-element-definition","name":"solution-deploy-dialog","declaration":{"name":"SolutionDeployDialog"}}]},{"kind":"javascript-module","path":"components/solution-deployed-card","sourcePath":"src/components/solution-deployed-card/solution-deployed-card.tsx","declarations":[{"kind":"class","name":"SolutionDeployedCard","customElement":true,"tagName":"solution-deployed-card","pascalCaseName":"SolutionDeployedCard","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"card","description":"Key details about the solution","type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"deployedDate","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"deployed-date"},{"kind":"field","name":"description","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"description"},{"kind":"field","name":"diagramKey","description":"Digram license key to use view the diagram","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"diagram-key"},{"kind":"field","name":"heading","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"heading"},{"kind":"field","name":"itemId","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"item-id"},{"kind":"field","name":"owner","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"owner"},{"kind":"field","name":"templateInfos","description":"ITemplateInfo[]: Collection of template infos","type":{"text":"ITemplateInfo[]","references":[{"name":"ITemplateInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ITemplateInfo","start":0,"end":13}]}},{"kind":"field","name":"thumbnail","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"thumbnail"},{"kind":"field","name":"updateAvailable","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"update-available"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionDeployedCard = document.querySelector(\"solution-deployed-card\");\ndocument.body.append(solutionDeployedCard);\nawait solutionDeployedCard.componentOnReady();\nconsole.log(\"solution-deployed-card is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"getTemplates","description":"Get the templates from the current card","return":{"type":{"text":"Promise<ITemplateInfoGraph[]>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7},{"name":"ITemplateInfoGraph","module":"components/solution-item-diagram/utils/solutionGraph","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/solution-item-diagram/utils/solutionGraph/#ITemplateInfoGraph","start":8,"end":26}]}},"signature":"(): Promise<ITemplateInfoGraph[]>"},{"kind":"method","name":"renderDeleteDialog","description":"Show the delete dialog\nThis allows other components to leverage the logic that is built into this card.\nIt will return a reference to the dialog so the other component can respond to its events.","return":{"type":{"text":"Promise<SolutionDeleteDialog | undefined>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7},{"name":"SolutionDeleteDialog","module":"components/solution-delete-dialog","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/solution-delete-dialog/#SolutionDeleteDialog","start":8,"end":28}]}},"signature":"(): Promise<SolutionDeleteDialog | undefined>"},{"kind":"method","name":"renderDiagramDialog","description":"Show the diagram dialog\nThis allows other components to leverage the logic that is built into this card.\nIt will return a reference to the dialog so the other component can respond to its events.","parameters":[{"name":"evt","type":{"text":"MouseEvent","references":[{"name":"MouseEvent","package":"global:","viewUrl":"https://developer.mozilla.org/docs/Web/API/MouseEvent","start":0,"end":10}]}}],"return":{"type":{"text":"Promise<Dialog | undefined>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7},{"name":"Dialog","module":"components/calcite-dialog","package":"@esri/calcite-components","start":8,"end":14}]}},"signature":"(evt: MouseEvent): Promise<Dialog | undefined>"}],"attributes":[{"name":"deployed-date","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"deployedDate"},{"name":"description","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"description"},{"name":"diagram-key","description":"Digram license key to use view the diagram","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"diagramKey"},{"name":"heading","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"heading"},{"name":"item-id","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"itemId"},{"name":"owner","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"owner"},{"name":"thumbnail","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"thumbnail"},{"name":"update-available","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"updateAvailable"}],"events":[{"name":"deployedCardSelected","description":"Emitted on demand when the details card is selected.","type":{"text":"IDeployCard","references":[{"name":"IDeployCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IDeployCard","start":0,"end":11}]}}],"importPath":"components/solution-deployed-card"}],"exports":[{"kind":"custom-element-definition","name":"solution-deployed-card","declaration":{"name":"SolutionDeployedCard"}}]},{"kind":"javascript-module","path":"components/solution-deployed-card-panel","sourcePath":"src/components/solution-deployed-card-panel/solution-deployed-card-panel.tsx","declarations":[{"kind":"class","name":"SolutionDeployedCardPanel","customElement":true,"tagName":"solution-deployed-card-panel","pascalCaseName":"SolutionDeployedCardPanel","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"card","description":"Key details about the solution","type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"cardRef","description":"Reference to the card that opened this dialog","type":{"text":"any | undefined","values":[{"type":"any"}]},"attribute":"card-ref"},{"kind":"field","name":"diagramKey","description":"Digram license key to use view the diagram","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"diagram-key"},{"kind":"field","name":"open","description":"boolean: when true the dialog is open","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"open"},{"kind":"field","name":"templateInfos","description":"ITemplateInfo[]: Collection of template infos","type":{"text":"ITemplateInfo[]","references":[{"name":"ITemplateInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ITemplateInfo","start":0,"end":13}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionDeployedCardPanel = document.querySelector(\"solution-deployed-card-panel\");\ndocument.body.append(solutionDeployedCardPanel);\nawait solutionDeployedCardPanel.componentOnReady();\nconsole.log(\"solution-deployed-card-panel is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"card-ref","description":"Reference to the card that opened this dialog","type":{"text":"any | undefined","values":[{"type":"any"}]},"fieldName":"cardRef"},{"name":"diagram-key","description":"Digram license key to use view the diagram","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"diagramKey"},{"name":"open","description":"boolean: when true the dialog is open","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"open"}],"events":[{"name":"forceSelectTab","description":"Force tab selection, used to navigate to newer version of solution from a deployed solution","type":{"text":"IActiveTab","references":[{"name":"IActiveTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IActiveTab","start":0,"end":10}]}},{"name":"navTabSelected","description":"Tab selected event","type":{"text":"INavTab","references":[{"name":"INavTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#INavTab","start":0,"end":7}]}},{"name":"solutionConfigureDialogClose","description":"This event will be emitted when this dialog is closed.\nWhen the emitted value is true the solution has been updated and needs to be fetched again","type":{"text":"boolean"}},{"name":"sortTypeChanged","description":"Emitted on demand when the sort type changes","type":{"text":"string"}}],"importPath":"components/solution-deployed-card-panel"}],"exports":[{"kind":"custom-element-definition","name":"solution-deployed-card-panel","declaration":{"name":"SolutionDeployedCardPanel"}}]},{"kind":"javascript-module","path":"components/solution-deploying-dialog","sourcePath":"src/components/solution-deploying-dialog/solution-deploying-dialog.tsx","declarations":[{"kind":"class","name":"SolutionDeployingDialog","customElement":true,"tagName":"solution-deploying-dialog","pascalCaseName":"SolutionDeployingDialog","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"abortController","description":"Abort controller to stop the deploying. Actual cancel callback is in solution-details","type":{"text":"AbortController | undefined","references":[{"name":"AbortController","package":"global:","viewUrl":"https://developer.mozilla.org/docs/Web/API/AbortController","start":0,"end":15}]}},{"kind":"field","name":"card","description":"Key details about the solution","type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"deploymentProgress","description":"Percentage of completion for solution deployment","type":{"text":"number","values":[{"type":"number"}]},"default":"0","attribute":"deployment-progress"},{"kind":"field","name":"isWaitingForCard","description":"Track when deployment is complete and we're waiting for card to be ready","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-waiting-for-card"},{"kind":"field","name":"open","description":"When true the dialog will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"open"},{"kind":"method","name":"cancelDeployment","description":"Cancel the current deployment","return":{"type":{"text":"void"}},"signature":"(): void"},{"kind":"method","name":"close","description":"Closes the dialog","return":{"type":{"text":"void"}},"signature":"(): void"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionDeployingDialog = document.querySelector(\"solution-deploying-dialog\");\ndocument.body.append(solutionDeployingDialog);\nawait solutionDeployingDialog.componentOnReady();\nconsole.log(\"solution-deploying-dialog is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"confirmCancel","description":"Confirm cancel the deployment","return":{"type":{"text":"void"}},"signature":"(): void"}],"attributes":[{"name":"deployment-progress","description":"Percentage of completion for solution deployment","type":{"text":"number","values":[{"type":"number"}]},"default":"0","fieldName":"deploymentProgress"},{"name":"is-waiting-for-card","description":"Track when deployment is complete and we're waiting for card to be ready","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isWaitingForCard"},{"name":"open","description":"When true the dialog will be shown","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"open"}],"events":[{"name":"deployingDialogOpened","description":"Emitted when the deploying dialog opens","type":{"text":"void"}},{"name":"deploymentProcessCancelled","description":"Emitted when deployment is cancelled by the user during deployment","type":{"text":"void"}}],"importPath":"components/solution-deploying-dialog"}],"exports":[{"kind":"custom-element-definition","name":"solution-deploying-dialog","declaration":{"name":"SolutionDeployingDialog"}}]},{"kind":"javascript-module","path":"components/solution-details-card","sourcePath":"src/components/solution-details-card/solution-details-card.tsx","declarations":[{"kind":"class","name":"SolutionDetailsCard","customElement":true,"tagName":"solution-details-card","pascalCaseName":"SolutionDetailsCard","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"card","description":"The solutions card","type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"referrerSolutionId","description":"Referrer solution ID for telemetry tracking (used when card is in 'you-may-also-like')","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"referrer-solution-id"},{"kind":"field","name":"referrerSolutionTitle","description":"Referrer solution title for telemetry tracking (used when card is in 'you-may-also-like')","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"referrer-solution-title"},{"kind":"field","name":"referrerSolutionVersion","description":"Referrer solution version for telemetry tracking (used when card is in 'you-may-also-like')","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"referrer-solution-version"},{"kind":"field","name":"source","description":"Source context for telemetry tracking (e.g., 'all-solutions', 'you-may-also-like')","type":{"text":"string","values":[{"type":"string"}]},"default":"'all-solutions'","attribute":"source"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionDetailsCard = document.querySelector(\"solution-details-card\");\ndocument.body.append(solutionDetailsCard);\nawait solutionDetailsCard.componentOnReady();\nconsole.log(\"solution-details-card is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"referrer-solution-id","description":"Referrer solution ID for telemetry tracking (used when card is in 'you-may-also-like')","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"referrerSolutionId"},{"name":"referrer-solution-title","description":"Referrer solution title for telemetry tracking (used when card is in 'you-may-also-like')","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"referrerSolutionTitle"},{"name":"referrer-solution-version","description":"Referrer solution version for telemetry tracking (used when card is in 'you-may-also-like')","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"referrerSolutionVersion"},{"name":"source","description":"Source context for telemetry tracking (e.g., 'all-solutions', 'you-may-also-like')","type":{"text":"string","values":[{"type":"string"}]},"default":"'all-solutions'","fieldName":"source"}],"events":[{"name":"detailsCardSelected","description":"Emitted on demand when the details card is selected.","type":{"text":"ISolutionInfoCard","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}}],"importPath":"components/solution-details-card"}],"exports":[{"kind":"custom-element-definition","name":"solution-details-card","declaration":{"name":"SolutionDetailsCard"}}]},{"kind":"javascript-module","path":"components/solution-details-panel","sourcePath":"src/components/solution-details-panel/solution-details-panel.tsx","declarations":[{"kind":"class","name":"SolutionDetailsPanel","customElement":true,"tagName":"solution-details-panel","pascalCaseName":"SolutionDetailsPanel","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"card","description":"Key details about the solution","type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionDetailsPanel = document.querySelector(\"solution-details-panel\");\ndocument.body.append(solutionDetailsPanel);\nawait solutionDetailsPanel.componentOnReady();\nconsole.log(\"solution-details-panel is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"events":[{"name":"itemPropertiesFetched","description":"Emitted on demand when the item properties have been fetched","type":{"text":"IItemProperties","references":[{"name":"IItemProperties","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IItemProperties","start":0,"end":15}]}},{"name":"sortTypeChanged","description":"Emitted on demand when the sort type changes","type":{"text":"string"}},{"name":"templatesFetched","description":"Emitted on demand when the templates have been fetched from the solution","type":{"text":"IItemTemplate[]","references":[{"name":"IItemTemplate","package":"@esri/solution-common","start":0,"end":13}]}},{"name":"tokenRefreshed","description":"Emitted on demand when the auth token is updated","type":{"text":"string"}}],"importPath":"components/solution-details-panel"}],"exports":[{"kind":"custom-element-definition","name":"solution-details-panel","declaration":{"name":"SolutionDetailsPanel"}}]},{"kind":"javascript-module","path":"components/solution-item-accordion","sourcePath":"src/components/solution-item-accordion/solution-item-accordion.tsx","declarations":[{"kind":"class","name":"SolutionItemAccordion","customElement":true,"tagName":"solution-item-accordion","pascalCaseName":"SolutionItemAccordion","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"itemRelationshipDependencies","description":"string[]: List of items that have relationship dependencies outside of this solution","type":{"text":"string[]"}},{"kind":"field","name":"linkType","description":"'action' | 'item': Specifies the type of link that will be used for deployed items.\n 'item' the items title will be underlined and clicking anywhere on the list item will open the items details page\n 'action' a action will be added to the end of the list item that will open the items details page","type":{"text":"\"action\" | \"item\"","values":[{"type":"string","value":"action"},{"type":"string","value":"item"}]},"default":"'item'","attribute":"link-type"},{"kind":"field","name":"listSelectionMode","description":"Specifies the selection mode of the item-type lists used in the component, where:\n 'multiple' allows any number of selections,\n 'single' allows only one selection,\n 'single-persist' allows one selection and prevents de-selection, and\n 'none' does not allow any selections (default)","type":{"text":"\"multiple\" | \"single\" | \"single-persist\" | \"none\"","values":[{"type":"string","value":"multiple"},{"type":"string","value":"single"},{"type":"string","value":"single-persist"},{"type":"string","value":"none"}]},"default":"'none'","attribute":"list-selection-mode"},{"kind":"field","name":"reuseWarning","description":"string: The warning message to display when we have itemRelationshipDependencies","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"reuse-warning"},{"kind":"field","name":"templateInfos","description":"ITemplateInfo[]: Collection of template infos","type":{"text":"ITemplateInfo[]","references":[{"name":"ITemplateInfo","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ITemplateInfo","start":0,"end":13}]}},{"kind":"field","name":"typeKeywords","description":"string[]: Collection of the solutions typeKeywords","type":{"text":"string[]"}},{"kind":"method","name":"collapseAll","description":"Collapses all items in the accordion.","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionItemAccordion = document.querySelector(\"solution-item-accordion\");\ndocument.body.append(solutionItemAccordion);\nawait solutionItemAccordion.componentOnReady();\nconsole.log(\"solution-item-accordion is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"deselectAll","description":"Deselects all items in the accordion and closes the accordion item containing it.\nOnly applies when selectionMode is 'single' or 'single-persist'.","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"expandFirstItem","description":"Expands the first accordion item","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"expandItemById","description":"Expands the accordion item containing for the provided id\nOnly applies when selectionMode is 'single' or 'single-persist'.","parameters":[{"name":"id","description":"the id of the item to select","type":{"text":"string"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(id: string): Promise<void>"},{"kind":"method","name":"expandItems","description":"Expands items in the accordion.\nOnly applies when selectionMode is 'multiple'.","parameters":[{"name":"ids","description":"the id of the item to select","type":{"text":"string[]"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(ids: string[]): Promise<void>"},{"kind":"method","name":"selectFirstItem","description":"Selects the first item in the accordion and expands the accordion item containing it.","return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(): Promise<void>"},{"kind":"method","name":"selectItem","description":"Selects an item in the accordion and expands the accordion item containing it.\nOnly applies when selectionMode is 'single' or 'single-persist'.","parameters":[{"name":"id","description":"the id of the item to select","type":{"text":"string"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(id: string): Promise<void>"},{"kind":"method","name":"selectItems","description":"Selects items in the accordion and expands the accordion item containing it.\nOnly applies when selectionMode is 'multiple'.","parameters":[{"name":"ids","description":"the id of the item to select","type":{"text":"string[]"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(ids: string[]): Promise<void>"}],"attributes":[{"name":"link-type","description":"'action' | 'item': Specifies the type of link that will be used for deployed items.\n 'item' the items title will be underlined and clicking anywhere on the list item will open the items details page\n 'action' a action will be added to the end of the list item that will open the items details page","type":{"text":"\"action\" | \"item\"","values":[{"type":"string","value":"action"},{"type":"string","value":"item"}]},"default":"'item'","fieldName":"linkType"},{"name":"list-selection-mode","description":"Specifies the selection mode of the item-type lists used in the component, where:\n 'multiple' allows any number of selections,\n 'single' allows only one selection,\n 'single-persist' allows one selection and prevents de-selection, and\n 'none' does not allow any selections (default)","type":{"text":"\"multiple\" | \"single\" | \"single-persist\" | \"none\"","values":[{"type":"string","value":"multiple"},{"type":"string","value":"single"},{"type":"string","value":"single-persist"},{"type":"string","value":"none"}]},"default":"'none'","fieldName":"listSelectionMode"},{"name":"reuse-warning","description":"string: The warning message to display when we have itemRelationshipDependencies","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"reuseWarning"}],"events":[{"name":"solutionItemHover","type":{"text":"ISolutionItemHover","references":[{"name":"ISolutionItemHover","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionItemHover","start":0,"end":18}]}},{"name":"solutionItemSelect","type":{"text":"ISolutionItemSelected","references":[{"name":"ISolutionItemSelected","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionItemSelected","start":0,"end":21}]}},{"name":"solutionTypeHover","type":{"text":"ISolutionTypeHover","references":[{"name":"ISolutionTypeHover","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionTypeHover","start":0,"end":18}]}}],"importPath":"components/solution-item-accordion"}],"exports":[{"kind":"custom-element-definition","name":"solution-item-accordion","declaration":{"name":"SolutionItemAccordion"}}]},{"kind":"javascript-module","path":"components/solution-item-diagram","sourcePath":"src/components/solution-item-diagram/solution-item-diagram.tsx","declarations":[{"kind":"class","name":"SolutionItemDiagram","customElement":true,"tagName":"solution-item-diagram","pascalCaseName":"SolutionItemDiagram","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"diagramKey","description":"Digram license key to use view the diagram","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"diagram-key"},{"kind":"field","name":"templateInfoGraph","description":"Array of solution items to generate the diagram","type":{"text":"ITemplateInfoGraph[]","references":[{"name":"ITemplateInfoGraph","module":"components/solution-item-diagram/utils/solutionGraph","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/solution-item-diagram/utils/solutionGraph/#ITemplateInfoGraph","start":0,"end":18}]}},{"kind":"field","name":"typeKeywords","description":"Array of the solution items type keywords","type":{"text":"string[]"}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionItemDiagram = document.querySelector(\"solution-item-diagram\");\ndocument.body.append(solutionItemDiagram);\nawait solutionItemDiagram.componentOnReady();\nconsole.log(\"solution-item-diagram is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"diagram-key","description":"Digram license key to use view the diagram","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"diagramKey"}],"importPath":"components/solution-item-diagram"}],"exports":[{"kind":"custom-element-definition","name":"solution-item-diagram","declaration":{"name":"SolutionItemDiagram"}}]},{"kind":"javascript-module","path":"components/solution-item-diagram/utils/solutionGraph","sourcePath":"src/components/solution-item-diagram/utils/solutionGraph.ts","declarations":[{"kind":"interface","name":"ITemplateInfoGraph","members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"title","type":{"text":"string"}},{"kind":"field","name":"type","type":{"text":"string"}},{"kind":"field","name":"typeKeywords","type":{"text":"string[]"}},{"kind":"field","name":"snippet","type":{"text":"string"}},{"kind":"field","name":"dependencies","type":{"text":"string[]"}},{"kind":"field","name":"url","type":{"text":"string | undefined"}}]}]},{"kind":"javascript-module","path":"components/solution-item-icon","sourcePath":"src/components/solution-item-icon/solution-item-icon.tsx","declarations":[{"kind":"class","name":"SolutionItemIcon","customElement":true,"tagName":"solution-item-icon","pascalCaseName":"SolutionItemIcon","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"isPortal","description":"Indicate if this is portal","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-portal"},{"kind":"field","name":"type","description":"The type for the item","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"type"},{"kind":"field","name":"typeKeywords","description":"The typeKeywords for the item","type":{"text":"string[]"}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionItemIcon = document.querySelector(\"solution-item-icon\");\ndocument.body.append(solutionItemIcon);\nawait solutionItemIcon.componentOnReady();\nconsole.log(\"solution-item-icon is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"is-portal","description":"Indicate if this is portal","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isPortal"},{"name":"type","description":"The type for the item","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"type"}],"importPath":"components/solution-item-icon"}],"exports":[{"kind":"custom-element-definition","name":"solution-item-icon","declaration":{"name":"SolutionItemIcon"}}]},{"kind":"javascript-module","path":"components/solution-resource-card","sourcePath":"src/components/solution-resource-card/solution-resource-card.tsx","declarations":[{"kind":"class","name":"SolutionResourceCard","customElement":true,"tagName":"solution-resource-card","pascalCaseName":"SolutionResourceCard","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"description","description":"The description of the resource","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"description"},{"kind":"field","name":"heading","description":"The heading of the resource","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"heading"},{"kind":"field","name":"headingEn","description":"The English heading for telemetry","type":{"text":"string | undefined","values":[{"type":"string"}]},"attribute":"heading-en"},{"kind":"field","name":"icon","description":"The Calcite icon name","type":{"text":"string | undefined","values":[{"type":"string"}]},"attribute":"icon"},{"kind":"field","name":"meridianIcon","description":"The Meridian icon name","type":{"text":"string | undefined","values":[{"type":"string"}]},"attribute":"meridian-icon"},{"kind":"field","name":"sectionHeadingEn","description":"The English section heading for telemetry","type":{"text":"string | undefined","values":[{"type":"string"}]},"attribute":"section-heading-en"},{"kind":"field","name":"url","description":"The URL to open when card is clicked","type":{"text":"string | undefined","values":[{"type":"string"}]},"attribute":"url"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionResourceCard = document.querySelector(\"solution-resource-card\");\ndocument.body.append(solutionResourceCard);\nawait solutionResourceCard.componentOnReady();\nconsole.log(\"solution-resource-card is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"description","description":"The description of the resource","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"description"},{"name":"heading","description":"The heading of the resource","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"heading"},{"name":"heading-en","description":"The English heading for telemetry","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"headingEn"},{"name":"icon","description":"The Calcite icon name","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"icon"},{"name":"meridian-icon","description":"The Meridian icon name","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"meridianIcon"},{"name":"section-heading-en","description":"The English section heading for telemetry","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"sectionHeadingEn"},{"name":"url","description":"The URL to open when card is clicked","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"url"}],"importPath":"components/solution-resource-card"}],"exports":[{"kind":"custom-element-definition","name":"solution-resource-card","declaration":{"name":"SolutionResourceCard"}}]},{"kind":"javascript-module","path":"components/solution-snapshot-gallery","sourcePath":"src/components/solution-snapshot-gallery/solution-snapshot-gallery.tsx","declarations":[{"kind":"class","name":"SolutionSnapshotGallery","customElement":true,"tagName":"solution-snapshot-gallery","pascalCaseName":"SolutionSnapshotGallery","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"card","description":"Key details about the solution","type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"itemProperties","description":"Key item properties","type":{"text":"IItemProperties | undefined","references":[{"name":"IItemProperties","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IItemProperties","start":0,"end":15}]}},{"kind":"field","name":"open","description":"boolean: when true the dialog is open","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"open"},{"kind":"field","name":"screenshot","description":"The current screenshot to display the large image for","type":{"text":"IItemPreview | undefined","references":[{"name":"IItemPreview","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IItemPreview","start":0,"end":12}]}},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionSnapshotGallery = document.querySelector(\"solution-snapshot-gallery\");\ndocument.body.append(solutionSnapshotGallery);\nawait solutionSnapshotGallery.componentOnReady();\nconsole.log(\"solution-snapshot-gallery is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"open","description":"boolean: when true the dialog is open","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"open"}],"importPath":"components/solution-snapshot-gallery"}],"exports":[{"kind":"custom-element-definition","name":"solution-snapshot-gallery","declaration":{"name":"SolutionSnapshotGallery"}}]},{"kind":"javascript-module","path":"components/solution-social-share","sourcePath":"src/components/solution-social-share/solution-social-share.tsx","declarations":[{"kind":"class","name":"SolutionSocialShare","customElement":true,"tagName":"solution-social-share","pascalCaseName":"SolutionSocialShare","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"actionApperance","description":"Control the apperance of the action","type":{"text":"\"solid\" | \"transparent\" | undefined","values":[{"type":"string","value":"solid"},{"type":"string","value":"transparent"}]},"default":"'transparent'","attribute":"action-apperance"},{"kind":"field","name":"autoUpdateShareUrl","description":"Auto update share URL.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"auto-update-share-url"},{"kind":"field","name":"buttonAppearance","description":"Control the apperance of the button","type":{"text":"\"outline\" | \"outline-fill\" | \"solid\" | \"transparent\" | undefined","values":[{"type":"string","value":"outline"},{"type":"string","value":"outline-fill"},{"type":"string","value":"solid"},{"type":"string","value":"transparent"}]},"default":"'transparent'","attribute":"button-appearance"},{"kind":"field","name":"inlineSuccessPopoverPlacement","description":"Configures the placement of the success message popover for the 'Copy Link' button.\nSee options here: https://github.com/Esri/calcite-components/blob/v1.0.0-beta.83/src/utils/popper.ts#L34","type":{"text":"any","values":[{"type":"any"}]},"default":"'trailing'","attribute":"inline-success-popover-placement","reflects":true},{"kind":"field","name":"mode","description":"Renders tool as a popover with a trigger button, or inline to place in a custom container.","type":{"text":"\"inline\" | \"popover\"","values":[{"type":"string","value":"inline"},{"type":"string","value":"popover"}]},"default":"'popover'","attribute":"mode","reflects":true},{"kind":"field","name":"popoverButtonIconScale","description":"Adjusts the scale of the popover button icon.","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","attribute":"popover-button-icon-scale","reflects":true},{"kind":"field","name":"popoverPositioning","description":"Adjusts the overlay-positioning of the popover.","type":{"text":"\"absolute\" | \"fixed\"","values":[{"type":"string","value":"absolute"},{"type":"string","value":"fixed"}]},"default":"'absolute'","attribute":"popover-positioning","reflects":true},{"kind":"field","name":"removePopoverOffset","description":"Remove the pointer and set the vertical offset to 0 for the popover.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"remove-popover-offset","reflects":true},{"kind":"field","name":"scale","description":"Adjusts the scale of the component.","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'s'","attribute":"scale","reflects":true},{"kind":"field","name":"shareButtonKind","description":"Renders share button with 'inverse' | 'neutral' | 'brand option","type":{"text":"\"inverse\" | \"neutral\" | \"brand\"","values":[{"type":"string","value":"inverse"},{"type":"string","value":"neutral"},{"type":"string","value":"brand"}]},"default":"'neutral'","attribute":"share-button-kind","reflects":true},{"kind":"field","name":"shareButtonScale","description":"Adjust scale of popover button","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","attribute":"share-button-scale","reflects":true},{"kind":"field","name":"shareButtonText","description":"Text to display in share button, not valid when shareButtonType = 'action'","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"share-button-text"},{"kind":"field","name":"shareButtonType","description":"Renders tool in popover mode with a trigger button or action","type":{"text":"\"action\" | \"button\"","values":[{"type":"string","value":"action"},{"type":"string","value":"button"}]},"default":"'button'","attribute":"share-button-type","reflects":true},{"kind":"field","name":"shareIconsLayout","description":"Display the share icons in a vertical or horizontal layout.","type":{"text":"\"horizontal\" | \"vertical\"","values":[{"type":"string","value":"horizontal"},{"type":"string","value":"vertical"}]},"default":"'vertical'","attribute":"share-icons-layout","reflects":true},{"kind":"field","name":"shareText","description":"Additional text to display when sharing to a social option","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"share-text","reflects":true},{"kind":"field","name":"shareUrl","description":"Generated share URL. Use this property to append custom URL parameters if needed.","type":{"text":"string","values":[{"type":"string"}]},"attribute":"share-url"},{"kind":"field","name":"shortenShareUrl","description":"Shortens generated URL.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"shorten-share-url","reflects":true},{"kind":"field","name":"socialMedia","description":"Show/hide social media icons.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","attribute":"social-media","reflects":true},{"kind":"field","name":"solutionId","description":"Solution ID for telemetry tracking","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"solution-id"},{"kind":"field","name":"solutionTitle","description":"Solution title for telemetry tracking","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"solution-title"},{"kind":"field","name":"solutionVersion","description":"Solution version for telemetry tracking","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"solution-version"},{"kind":"field","name":"successMessage","description":"Provides an alternate to the success.url message 'App URL copied to clipboard.'","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"success-message","reflects":true},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionSocialShare = document.querySelector(\"solution-social-share\");\ndocument.body.append(solutionSocialShare);\nawait solutionSocialShare.componentOnReady();\nconsole.log(\"solution-social-share is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"action-apperance","description":"Control the apperance of the action","type":{"text":"\"solid\" | \"transparent\"","values":[{"type":"string","value":"solid"},{"type":"string","value":"transparent"}]},"default":"'transparent'","fieldName":"actionApperance"},{"name":"auto-update-share-url","description":"Auto update share URL.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"autoUpdateShareUrl"},{"name":"button-appearance","description":"Control the apperance of the button","type":{"text":"\"outline\" | \"outline-fill\" | \"solid\" | \"transparent\"","values":[{"type":"string","value":"outline"},{"type":"string","value":"outline-fill"},{"type":"string","value":"solid"},{"type":"string","value":"transparent"}]},"default":"'transparent'","fieldName":"buttonAppearance"},{"name":"inline-success-popover-placement","description":"Configures the placement of the success message popover for the 'Copy Link' button.\nSee options here: https://github.com/Esri/calcite-components/blob/v1.0.0-beta.83/src/utils/popper.ts#L34","type":{"text":"any","values":[{"type":"any"}]},"default":"'trailing'","fieldName":"inlineSuccessPopoverPlacement"},{"name":"mode","description":"Renders tool as a popover with a trigger button, or inline to place in a custom container.","type":{"text":"\"inline\" | \"popover\"","values":[{"type":"string","value":"inline"},{"type":"string","value":"popover"}]},"default":"'popover'","fieldName":"mode"},{"name":"popover-button-icon-scale","description":"Adjusts the scale of the popover button icon.","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","fieldName":"popoverButtonIconScale"},{"name":"popover-positioning","description":"Adjusts the overlay-positioning of the popover.","type":{"text":"\"absolute\" | \"fixed\"","values":[{"type":"string","value":"absolute"},{"type":"string","value":"fixed"}]},"default":"'absolute'","fieldName":"popoverPositioning"},{"name":"remove-popover-offset","description":"Remove the pointer and set the vertical offset to 0 for the popover.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"removePopoverOffset"},{"name":"scale","description":"Adjusts the scale of the component.","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'s'","fieldName":"scale"},{"name":"share-button-kind","description":"Renders share button with 'inverse' | 'neutral' | 'brand option","type":{"text":"\"inverse\" | \"neutral\" | \"brand\"","values":[{"type":"string","value":"inverse"},{"type":"string","value":"neutral"},{"type":"string","value":"brand"}]},"default":"'neutral'","fieldName":"shareButtonKind"},{"name":"share-button-scale","description":"Adjust scale of popover button","type":{"text":"\"l\" | \"m\" | \"s\"","values":[{"type":"string","value":"l"},{"type":"string","value":"m"},{"type":"string","value":"s"}]},"default":"'m'","fieldName":"shareButtonScale"},{"name":"share-button-text","description":"Text to display in share button, not valid when shareButtonType = 'action'","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"shareButtonText"},{"name":"share-button-type","description":"Renders tool in popover mode with a trigger button or action","type":{"text":"\"action\" | \"button\"","values":[{"type":"string","value":"action"},{"type":"string","value":"button"}]},"default":"'button'","fieldName":"shareButtonType"},{"name":"share-icons-layout","description":"Display the share icons in a vertical or horizontal layout.","type":{"text":"\"horizontal\" | \"vertical\"","values":[{"type":"string","value":"horizontal"},{"type":"string","value":"vertical"}]},"default":"'vertical'","fieldName":"shareIconsLayout"},{"name":"share-text","description":"Additional text to display when sharing to a social option","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"shareText"},{"name":"share-url","description":"Generated share URL. Use this property to append custom URL parameters if needed.","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"shareUrl"},{"name":"shorten-share-url","description":"Shortens generated URL.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"shortenShareUrl"},{"name":"social-media","description":"Show/hide social media icons.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"true","fieldName":"socialMedia"},{"name":"solution-id","description":"Solution ID for telemetry tracking","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"solutionId"},{"name":"solution-title","description":"Solution title for telemetry tracking","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"solutionTitle"},{"name":"solution-version","description":"Solution version for telemetry tracking","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"solutionVersion"},{"name":"success-message","description":"Provides an alternate to the success.url message 'App URL copied to clipboard.'","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"successMessage"}],"cssProperties":[{"name":"--solutions-social-share-action-width","description":"Width of action button"},{"name":"--solutions-social-share-width--s","description":"Width of component when scale is set to `s`"},{"name":"--solutions-social-share-width--m","description":"Width of component when scale is set to `m`"},{"name":"--solutions-social-share-width--l","description":"Width of component when scale is set to `l`"},{"name":"--solutions-social-share-width-horizontal--s","description":"Width of component when `share-icons-layout` is set to `horizontal` and scale is set to 's'"},{"name":"--solutions-social-share-width-horizontal--m","description":"Width of component when `share-icons-layout` is set to `horizontal` and scale is set to 'm'"},{"name":"--solutions-social-share-width-horizontal--l","description":"Width of component when `share-icons-layout` is set to `horizontal` and scale is set to 'l'"}],"importPath":"components/solution-social-share"}],"exports":[{"kind":"custom-element-definition","name":"solution-social-share","declaration":{"name":"SolutionSocialShare"}}]},{"kind":"javascript-module","path":"components/solution-user-avatar","sourcePath":"src/components/solution-user-avatar/solution-user-avatar.tsx","declarations":[{"kind":"class","name":"SolutionUserAvatar","customElement":true,"tagName":"solution-user-avatar","pascalCaseName":"SolutionUserAvatar","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"fullname","description":"The first and last name of the owner","type":{"text":"string | null | undefined","values":[{"type":"string"}]},"attribute":"fullname"},{"kind":"field","name":"lookupProfile","description":"Flag to determine if owner information needs to be queried","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"lookup-profile"},{"kind":"field","name":"thumbnailUrl","description":"The url to the thumbnail image","type":{"text":"string | null | undefined","values":[{"type":"string"}]},"attribute":"thumbnail-url"},{"kind":"field","name":"username","description":"The owner user name to display","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"username"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionUserAvatar = document.querySelector(\"solution-user-avatar\");\ndocument.body.append(solutionUserAvatar);\nawait solutionUserAvatar.componentOnReady();\nconsole.log(\"solution-user-avatar is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"fullname","description":"The first and last name of the owner","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"fullname"},{"name":"lookup-profile","description":"Flag to determine if owner information needs to be queried","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"lookupProfile"},{"name":"thumbnail-url","description":"The url to the thumbnail image","type":{"text":"string","values":[{"type":"string"}]},"fieldName":"thumbnailUrl"},{"name":"username","description":"The owner user name to display","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"username"}],"importPath":"components/solution-user-avatar"}],"exports":[{"kind":"custom-element-definition","name":"solution-user-avatar","declaration":{"name":"SolutionUserAvatar"}}]},{"kind":"javascript-module","path":"components/solutions-all-panel","sourcePath":"src/components/solutions-all-panel/solutions-all-panel.tsx","declarations":[{"kind":"class","name":"SolutionsAllPanel","customElement":true,"tagName":"solutions-all-panel","pascalCaseName":"SolutionsAllPanel","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"sortType","description":"Define how the cards will be sorted","type":{"text":"SortType","references":[{"name":"SortType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#SortType","start":0,"end":8}],"values":[{"type":"string","value":"title"},{"type":"string","value":"updated"},{"type":"string","value":"new"},{"type":"string","value":"relevance"},{"type":"string","value":"created"},{"type":"string","value":"suggested"}]},"default":"'relevance'","attribute":"sort-type"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsAllPanel = document.querySelector(\"solutions-all-panel\");\ndocument.body.append(solutionsAllPanel);\nawait solutionsAllPanel.componentOnReady();\nconsole.log(\"solutions-all-panel is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"searchSolutions","description":"Search solutions based on key criteria","parameters":[{"name":"searchOptions","description":"the key criteria to search with","optional":true,"type":{"text":"IFilterOption[] | ISearchOption | ISortOption","references":[{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13},{"name":"ISearchOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchOption","start":18,"end":31},{"name":"ISortOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortOption","start":34,"end":45}]}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(searchOptions?: IFilterOption[] | ISearchOption | ISortOption): Promise<void>"},{"kind":"method","name":"setSearchOptions","description":"Set key properties for solution search\nThis is used for handeling multiple options from url params","parameters":[{"name":"searchOptions","description":"the key criteria that will be used when searched","optional":true,"type":{"text":"IFilterOption | ISearchOption | ISortOption","references":[{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13},{"name":"ISearchOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchOption","start":16,"end":29},{"name":"ISortOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortOption","start":32,"end":43}]}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(searchOptions?: IFilterOption | ISearchOption | ISortOption): Promise<void>"}],"attributes":[{"name":"sort-type","description":"Define how the cards will be sorted","type":{"text":"\"title\" | \"updated\" | \"new\" | \"relevance\" | \"created\" | \"suggested\"","values":[{"type":"string","value":"title"},{"type":"string","value":"updated"},{"type":"string","value":"new"},{"type":"string","value":"relevance"},{"type":"string","value":"created"},{"type":"string","value":"suggested"}]},"default":"'relevance'","fieldName":"sortType"}],"events":[{"name":"allCardsFetched","description":"Emitted on demand when all of the cards are first fetched","type":{"text":"ISolutionInfoCard[]","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"name":"cardsFetched","description":"Emitted on demand when cards are fetched","type":{"text":"number"}},{"name":"detailsCardSelected","description":"Emitted on demand when the details card is selected.","type":{"text":"ISolutionInfoCard","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"name":"searchTermSet","description":"Emitted on demand when the serachTerm is set from url param","type":{"text":"ISearchTerm","references":[{"name":"ISearchTerm","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchTerm","start":0,"end":11}]}},{"name":"sortTypeSet","description":"Emitted on demand when the sortType is set from url param","type":{"text":"ISortType","references":[{"name":"ISortType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortType","start":0,"end":9}]}}],"importPath":"components/solutions-all-panel"}],"exports":[{"kind":"custom-element-definition","name":"solutions-all-panel","declaration":{"name":"SolutionsAllPanel"}}]},{"kind":"javascript-module","path":"components/solutions-all-shell","sourcePath":"src/components/solutions-all-shell/solutions-all-shell.tsx","declarations":[{"kind":"class","name":"SolutionsAllShell","customElement":true,"tagName":"solutions-all-shell","pascalCaseName":"SolutionsAllShell","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"solutionsCount","description":"The number of solution cards currently displayed","type":{"text":"number","values":[{"type":"number"}]},"default":"0","attribute":"solutions-count"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsAllShell = document.querySelector(\"solutions-all-shell\");\ndocument.body.append(solutionsAllShell);\nawait solutionsAllShell.componentOnReady();\nconsole.log(\"solutions-all-shell is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"searchSolutions","description":"Search solutions based on key criteria","parameters":[{"name":"searchOptions","description":"the key criteria to search with","type":{"text":"IFilterOption | ISearchOption | ISortOption","references":[{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13},{"name":"ISearchOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchOption","start":16,"end":29},{"name":"ISortOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortOption","start":32,"end":43}]}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(searchOptions: IFilterOption | ISearchOption | ISortOption): Promise<void>"}],"attributes":[{"name":"solutions-count","description":"The number of solution cards currently displayed","type":{"text":"number","values":[{"type":"number"}]},"default":"0","fieldName":"solutionsCount"}],"events":[{"name":"filterRemoved","description":"Emitted on demand when a filter chip is closed","type":{"text":"IFilterOption[]","references":[{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13}]}}],"importPath":"components/solutions-all-shell"}],"exports":[{"kind":"custom-element-definition","name":"solutions-all-shell","declaration":{"name":"SolutionsAllShell"}}]},{"kind":"javascript-module","path":"components/solutions-deploy-app","sourcePath":"src/components/solutions-deploy-app/solutions-deploy-app.tsx","declarations":[{"kind":"class","name":"SolutionsDeployApp","customElement":true,"tagName":"solutions-deploy-app","pascalCaseName":"SolutionsDeployApp","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"appConfig","description":"App config to use when useLocalAppConfig is false","type":{"text":"any","values":[{"type":"any"}]},"attribute":"app-config"},{"kind":"field","name":"initTab","description":"When defined this is the tab that should be loaded by default","type":{"text":"DeployAppTab | undefined","references":[{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}],"values":[{"type":"string","value":"details"},{"type":"string","value":"all-solutions"},{"type":"string","value":"deployments"},{"type":"string","value":"resources"},{"type":"string","value":"deployed-card"},{"type":"string","value":"my-content"}]},"attribute":"init-tab"},{"kind":"field","name":"initTitleOrId","description":"When defined this will contain the solution name or id that should be loaded by default","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"init-title-or-id"},{"kind":"field","name":"sortType","description":"Define how the cards will be sorted","type":{"text":"SortType","references":[{"name":"SortType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#SortType","start":0,"end":8}],"values":[{"type":"string","value":"title"},{"type":"string","value":"updated"},{"type":"string","value":"new"},{"type":"string","value":"relevance"},{"type":"string","value":"created"},{"type":"string","value":"suggested"}]},"default":"'relevance'","attribute":"sort-type"},{"kind":"field","name":"useLocalAppConfig","description":"When true the local appConfig will be used over anything that was passed in.\nThis is used for local debugging.\nWhen this is false authentication, locale, orgUrl, and portalUrl MUST be defined.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"use-local-app-config"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsDeployApp = document.querySelector(\"solutions-deploy-app\");\ndocument.body.append(solutionsDeployApp);\nawait solutionsDeployApp.componentOnReady();\nconsole.log(\"solutions-deploy-app is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"selectTab","description":"Closes the dialog","parameters":[{"name":"tab","type":{"text":"IActiveTab","references":[{"name":"IActiveTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IActiveTab","start":0,"end":10}]}},{"name":"filters","type":{"text":"any"}}],"return":{"type":{"text":"Promise<boolean>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(tab: IActiveTab, filters: any): Promise<boolean>"}],"attributes":[{"name":"app-config","description":"App config to use when useLocalAppConfig is false","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"appConfig"},{"name":"init-tab","description":"When defined this is the tab that should be loaded by default","type":{"text":"\"details\" | \"all-solutions\" | \"deployments\" | \"resources\" | \"deployed-card\" | \"my-content\"","values":[{"type":"string","value":"details"},{"type":"string","value":"all-solutions"},{"type":"string","value":"deployments"},{"type":"string","value":"resources"},{"type":"string","value":"deployed-card"},{"type":"string","value":"my-content"}]},"fieldName":"initTab"},{"name":"init-title-or-id","description":"When defined this will contain the solution name or id that should be loaded by default","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"initTitleOrId"},{"name":"sort-type","description":"Define how the cards will be sorted","type":{"text":"\"title\" | \"updated\" | \"new\" | \"relevance\" | \"created\" | \"suggested\"","values":[{"type":"string","value":"title"},{"type":"string","value":"updated"},{"type":"string","value":"new"},{"type":"string","value":"relevance"},{"type":"string","value":"created"},{"type":"string","value":"suggested"}]},"default":"'relevance'","fieldName":"sortType"},{"name":"use-local-app-config","description":"When true the local appConfig will be used over anything that was passed in.\nThis is used for local debugging.\nWhen this is false authentication, locale, orgUrl, and portalUrl MUST be defined.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"useLocalAppConfig"}],"events":[{"name":"deployAppTabSelected","description":"Tab selected event","type":{"text":"DeployAppTab","references":[{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}]}},{"name":"deployedCardFetchFailed","description":"Deployed card fetch failed event","type":{"text":"IDeployCardFetchFailed","references":[{"name":"IDeployCardFetchFailed","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IDeployCardFetchFailed","start":0,"end":22}]}},{"name":"deployedCardSelected","description":"Emitted on demand when the details card is selected.","type":{"text":"IDeployCard","references":[{"name":"IDeployCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IDeployCard","start":0,"end":11}]}},{"name":"detailsCardSelected","description":"Details card selected event","type":{"text":"ISolutionInfoCard","references":[{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"name":"metaTagStringsReady","description":"Emitted when meta tag strings are ready with translations","type":{"text":"{\n pageType: DeployAppTab;\n title: string;\n description: string;\n detailTemplate?: ISolutionInfoCard;\n}","references":[{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":16,"end":28},{"name":"ISolutionInfoCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":95,"end":112}]}},{"name":"sessionRefreshed","type":{"text":"string"}},{"name":"tabChanged","type":{"text":"DeployAppTab","references":[{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}]}}],"importPath":"components/solutions-deploy-app"}],"exports":[{"kind":"custom-element-definition","name":"solutions-deploy-app","declaration":{"name":"SolutionsDeployApp"}}]},{"kind":"javascript-module","path":"components/solutions-deploy-app-nav","sourcePath":"src/components/solutions-deploy-app-nav/solutions-deploy-app-nav.tsx","declarations":[{"kind":"class","name":"SolutionsDeployAppNav","customElement":true,"tagName":"solutions-deploy-app-nav","pascalCaseName":"SolutionsDeployAppNav","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"appConfig","description":"App config","type":{"text":"any","values":[{"type":"any"}]},"attribute":"app-config"},{"kind":"field","name":"initTab","description":"When defined this is the tab that should be loaded by default","type":{"text":"DeployAppTab | undefined","references":[{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}],"values":[{"type":"string","value":"details"},{"type":"string","value":"all-solutions"},{"type":"string","value":"deployments"},{"type":"string","value":"resources"},{"type":"string","value":"deployed-card"},{"type":"string","value":"my-content"}]},"attribute":"init-tab"},{"kind":"method","name":"activateMenuItem","description":"Use to set the active state for all nav menu items","parameters":[{"name":"tab","type":{"text":"DeployAppTab","references":[{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}]}},{"name":"emit","type":{"text":"boolean"},"default":"false"}],"return":{"type":{"text":"void"}},"signature":"(tab: DeployAppTab, emit?: boolean): void"},{"kind":"method","name":"clearMenuItems","description":"Use to clear the active state from all nav menu items","return":{"type":{"text":"void"}},"signature":"(): void"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsDeployAppNav = document.querySelector(\"solutions-deploy-app-nav\");\ndocument.body.append(solutionsDeployAppNav);\nawait solutionsDeployAppNav.componentOnReady();\nconsole.log(\"solutions-deploy-app-nav is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"app-config","description":"App config","type":{"text":"any","values":[{"type":"any"}]},"fieldName":"appConfig"},{"name":"init-tab","description":"When defined this is the tab that should be loaded by default","type":{"text":"\"details\" | \"all-solutions\" | \"deployments\" | \"resources\" | \"deployed-card\" | \"my-content\"","values":[{"type":"string","value":"details"},{"type":"string","value":"all-solutions"},{"type":"string","value":"deployments"},{"type":"string","value":"resources"},{"type":"string","value":"deployed-card"},{"type":"string","value":"my-content"}]},"fieldName":"initTab"}],"events":[{"name":"authInit","description":"Emitted on demand when the auth is initialized","type":{"text":"IAppConfig","references":[{"name":"IAppConfig","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IAppConfig","start":0,"end":10}]}},{"name":"navTabSelected","description":"Tab selected event","type":{"text":"INavTab","references":[{"name":"INavTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#INavTab","start":0,"end":7}]}},{"name":"tabChanged","description":"Emitted on load when we load the first tab","type":{"text":"DeployAppTab","references":[{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}]}},{"name":"tokenRefreshed","description":"Emitted on demand when the auth token is updated","type":{"text":"string"}}],"importPath":"components/solutions-deploy-app-nav"}],"exports":[{"kind":"custom-element-definition","name":"solutions-deploy-app-nav","declaration":{"name":"SolutionsDeployAppNav"}}]},{"kind":"javascript-module","path":"components/solutions-deployed-panel","sourcePath":"src/components/solutions-deployed-panel/solutions-deployed-panel.tsx","declarations":[{"kind":"class","name":"SolutionsDeployedPanel","customElement":true,"tagName":"solutions-deployed-panel","pascalCaseName":"SolutionsDeployedPanel","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"sortType","description":"Define how the cards will be sorted\nvalid options for deplyed cards are: created (ie date deployed), relevance, title","type":{"text":"SortType","references":[{"name":"SortType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#SortType","start":0,"end":8}],"values":[{"type":"string","value":"title"},{"type":"string","value":"updated"},{"type":"string","value":"new"},{"type":"string","value":"relevance"},{"type":"string","value":"created"},{"type":"string","value":"suggested"}]},"default":"'created'","attribute":"sort-type"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsDeployedPanel = document.querySelector(\"solutions-deployed-panel\");\ndocument.body.append(solutionsDeployedPanel);\nawait solutionsDeployedPanel.componentOnReady();\nconsole.log(\"solutions-deployed-panel is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"reload","description":"function to refresh the panel after a deletion or solution title/snippet change","parameters":[{"name":"showDeleteMessage","type":{"text":"boolean"},"default":"true"},{"name":"useTimeout","type":{"text":"boolean"},"default":"true"},{"name":"solutionTitle","optional":true,"type":{"text":"string"}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(showDeleteMessage?: boolean, useTimeout?: boolean, solutionTitle?: string): Promise<void>"},{"kind":"method","name":"searchSolutions","description":"Search solutions based on key criteria","parameters":[{"name":"searchOptions","description":"the key criteria to search with","optional":true,"type":{"text":"IFilterOption | ISearchOption | ISortOption | IQueryParams","references":[{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13},{"name":"ISearchOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchOption","start":16,"end":29},{"name":"ISortOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortOption","start":32,"end":43},{"name":"IQueryParams","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IQueryParams","start":46,"end":58}]}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(searchOptions?: IFilterOption | ISearchOption | ISortOption | IQueryParams): Promise<void>"},{"kind":"method","name":"setSearchOptions","description":"Set key properties for solution search\nThis is used for handeling multiple options from url params","parameters":[{"name":"searchOptions","description":"the key criteria that will be used when searched","optional":true,"type":{"text":"IFilterOption | ISearchOption | ISortOption","references":[{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13},{"name":"ISearchOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchOption","start":16,"end":29},{"name":"ISortOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortOption","start":32,"end":43}]}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(searchOptions?: IFilterOption | ISearchOption | ISortOption): Promise<void>"}],"attributes":[{"name":"sort-type","description":"Define how the cards will be sorted\nvalid options for deplyed cards are: created (ie date deployed), relevance, title","type":{"text":"\"title\" | \"updated\" | \"new\" | \"relevance\" | \"created\" | \"suggested\"","values":[{"type":"string","value":"title"},{"type":"string","value":"updated"},{"type":"string","value":"new"},{"type":"string","value":"relevance"},{"type":"string","value":"created"},{"type":"string","value":"suggested"}]},"default":"'created'","fieldName":"sortType"}],"events":[{"name":"deployedCardsFetched","description":"Emitted on demand when cards are fetched","type":{"text":"number"}},{"name":"searchTermSet","description":"Emitted on demand when the serachTerm is set from url param","type":{"text":"ISearchTerm","references":[{"name":"ISearchTerm","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchTerm","start":0,"end":11}]}},{"name":"sortTypeSet","description":"Emitted on demand when the sortType is set from url param","type":{"text":"ISortType","references":[{"name":"ISortType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortType","start":0,"end":9}]}}],"importPath":"components/solutions-deployed-panel"}],"exports":[{"kind":"custom-element-definition","name":"solutions-deployed-panel","declaration":{"name":"SolutionsDeployedPanel"}}]},{"kind":"javascript-module","path":"components/solutions-deployed-shell","sourcePath":"src/components/solutions-deployed-shell/solutions-deployed-shell.tsx","declarations":[{"kind":"class","name":"SolutionsDeployedShell","customElement":true,"tagName":"solutions-deployed-shell","pascalCaseName":"SolutionsDeployedShell","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"solutionsCount","description":"The number of solution cards currently displayed","type":{"text":"number","values":[{"type":"number"}]},"default":"0","attribute":"solutions-count"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsDeployedShell = document.querySelector(\"solutions-deployed-shell\");\ndocument.body.append(solutionsDeployedShell);\nawait solutionsDeployedShell.componentOnReady();\nconsole.log(\"solutions-deployed-shell is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"searchSolutions","description":"Search solutions based on key criteria","parameters":[{"name":"searchOptions","description":"the key criteria to search with","type":{"text":"IFilterOption | ISearchOption | ISortOption","references":[{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13},{"name":"ISearchOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchOption","start":16,"end":29},{"name":"ISortOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortOption","start":32,"end":43}]}}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}},"signature":"(searchOptions: IFilterOption | ISearchOption | ISortOption): Promise<void>"}],"attributes":[{"name":"solutions-count","description":"The number of solution cards currently displayed","type":{"text":"number","values":[{"type":"number"}]},"default":"0","fieldName":"solutionsCount"}],"events":[{"name":"filterRemoved","description":"Emitted on demand when a filter chip is closed","type":{"text":"IFilterOption","references":[{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13}]}},{"name":"tokenRefreshed","description":"Emitted on demand when the auth token is updated","type":{"text":"string"}}],"importPath":"components/solutions-deployed-shell"}],"exports":[{"kind":"custom-element-definition","name":"solutions-deployed-shell","declaration":{"name":"SolutionsDeployedShell"}}]},{"kind":"javascript-module","path":"components/solutions-filter-panel","sourcePath":"src/components/solutions-filter-panel/solutions-filter-panel.tsx","declarations":[{"kind":"class","name":"SolutionsFilterPanel","customElement":true,"tagName":"solutions-filter-panel","pascalCaseName":"SolutionsFilterPanel","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"hideIndustryFilter","description":"Determines if the Industry section should be shown.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"hide-industry-filter"},{"kind":"field","name":"isAIDialogOpen","description":"Determines if AI Assistant is open.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-ai-dialog-open"},{"kind":"field","name":"showReset","description":"Flag to display reset in the panel","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"show-reset"},{"kind":"method","name":"changeIndustryFilter","description":"Sets the filter on the specific industry or domain that the user chooses in the list.","parameters":[{"name":"industry","description":"The industry.","type":{"text":"string"}},{"name":"domain","description":"The domain with the industry.","type":{"text":"string"}},{"name":"displayValue","description":"The user friendly value that will be displayed.","type":{"text":"string"}},{"name":"emit","description":"(Optional) Flag whether to emit. useful when you don't want to emit multiple times for example in clear filter.","optional":true,"type":{"text":"boolean"}}],"return":{"type":{"text":"void"}},"signature":"(industry: string, domain: string, displayValue: string, emit?: boolean): void"},{"kind":"method","name":"clearFilters","description":"Clears all the filters include search, industry and owner.","return":{"type":{"text":"void"}},"signature":"(): void"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsFilterPanel = document.querySelector(\"solutions-filter-panel\");\ndocument.body.append(solutionsFilterPanel);\nawait solutionsFilterPanel.componentOnReady();\nconsole.log(\"solutions-filter-panel is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"hide-industry-filter","description":"Determines if the Industry section should be shown.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"hideIndustryFilter"},{"name":"is-ai-dialog-open","description":"Determines if AI Assistant is open.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isAIDialogOpen"},{"name":"show-reset","description":"Flag to display reset in the panel","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"showReset"}],"events":[{"name":"applyFilter","description":"The event that gets emitted after any filter option has changed.","type":{"text":"IFilterOption[] | IFilterOption | ISearchOption | null","references":[{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13},{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":18,"end":31},{"name":"ISearchOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchOption","start":34,"end":47}]}},{"name":"toggleFilter","description":"Emitted on demand when the close filter button is clicked in mobile","type":{"text":"void"}}],"importPath":"components/solutions-filter-panel"}],"exports":[{"kind":"custom-element-definition","name":"solutions-filter-panel","declaration":{"name":"SolutionsFilterPanel"}}]},{"kind":"javascript-module","path":"components/solutions-resources-section","sourcePath":"src/components/solutions-resources-section/solutions-resources-section.tsx","declarations":[{"kind":"class","name":"SolutionsResourcesSection","customElement":true,"tagName":"solutions-resources-section","pascalCaseName":"SolutionsResourcesSection","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"cards","type":{"text":"ResourceCard[]","references":[{"name":"ResourceCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ResourceCard","start":0,"end":12}]},"attribute":"cards"},{"kind":"field","name":"heading","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"heading"},{"kind":"field","name":"subheading","type":{"text":"string","values":[{"type":"string"}]},"default":"''","attribute":"subheading"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsResourcesSection = document.querySelector(\"solutions-resources-section\");\ndocument.body.append(solutionsResourcesSection);\nawait solutionsResourcesSection.componentOnReady();\nconsole.log(\"solutions-resources-section is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"attributes":[{"name":"cards","type":{"text":"ResourceCard[]","references":[{"name":"ResourceCard","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ResourceCard","start":0,"end":12}]},"fieldName":"cards"},{"name":"heading","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"heading"},{"name":"subheading","type":{"text":"string","values":[{"type":"string"}]},"default":"''","fieldName":"subheading"}],"importPath":"components/solutions-resources-section"}],"exports":[{"kind":"custom-element-definition","name":"solutions-resources-section","declaration":{"name":"SolutionsResourcesSection"}}]},{"kind":"javascript-module","path":"components/solutions-resources-shell","sourcePath":"src/components/solutions-resources-shell/solutions-resources-shell.tsx","declarations":[{"kind":"class","name":"SolutionsResourcesShell","customElement":true,"tagName":"solutions-resources-shell","pascalCaseName":"SolutionsResourcesShell","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsResourcesShell = document.querySelector(\"solutions-resources-shell\");\ndocument.body.append(solutionsResourcesShell);\nawait solutionsResourcesShell.componentOnReady();\nconsole.log(\"solutions-resources-shell is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"}],"events":[{"name":"sortTypeChanged","description":"Emitted on demand when the sort type changes","type":{"text":"string"}}],"importPath":"components/solutions-resources-shell"}],"exports":[{"kind":"custom-element-definition","name":"solutions-resources-shell","declaration":{"name":"SolutionsResourcesShell"}}]},{"kind":"javascript-module","path":"components/solutions-searchsort-toolbar","sourcePath":"src/components/solutions-searchsort-toolbar/solutions-searchsort-toolbar.tsx","declarations":[{"kind":"class","name":"SolutionsSearchSortToolbar","customElement":true,"tagName":"solutions-searchsort-toolbar","pascalCaseName":"SolutionsSearchsortToolbar","superclass":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"members":[{"kind":"field","name":"defaultSortType","description":"The default type to sort solutions by","type":{"text":"SortType","references":[{"name":"SortType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#SortType","start":0,"end":8}],"values":[{"type":"string","value":"title"},{"type":"string","value":"updated"},{"type":"string","value":"new"},{"type":"string","value":"relevance"},{"type":"string","value":"created"},{"type":"string","value":"suggested"}]},"default":"'relevance'","attribute":"default-sort-type"},{"kind":"field","name":"isOrgSolutions","description":"Determines if the Owner section should be shown.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","attribute":"is-org-solutions"},{"kind":"field","name":"scope","description":"The enviornment on which to perform search or sort","type":{"text":"DeployAppTab | undefined","references":[{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}],"values":[{"type":"string","value":"details"},{"type":"string","value":"all-solutions"},{"type":"string","value":"deployments"},{"type":"string","value":"resources"},{"type":"string","value":"deployed-card"},{"type":"string","value":"my-content"}]},"attribute":"scope"},{"kind":"method","name":"changeOwnerFilter","description":"Changes the filter to show only solutions that the user owns or the solutions within the organization.\nThis function is only available when the application is in the Deployments view.","parameters":[{"name":"isMySolutions","description":"Flag to show user's solution or organization's solutions.","type":{"text":"boolean"}}],"return":{"type":{"text":"void"}},"signature":"(isMySolutions: boolean): void"},{"kind":"method","name":"changeSearchFilter","description":"Filters the solutions by a text search phrase.","parameters":[{"name":"searchTerm","description":"the string lookup solutions by.","type":{"text":"string"}},{"name":"emit","description":"(Optional) Flag whether to emit. useful when you don't want to emit multiple times for example in clear filter.","optional":true,"type":{"text":"boolean"}},{"name":"startTelemetryTimer","description":"(Optional) Flag whether to start the telemetry debounce timer.","optional":true,"type":{"text":"boolean"}}],"return":{"type":{"text":"void"}},"signature":"(searchTerm: string, emit?: boolean, startTelemetryTimer?: boolean): void"},{"kind":"method","name":"componentOnReady","description":"Creates a promise that resolves once the component is fully loaded.","docsTags":[{"name":"example","text":"```js\nconst solutionsSearchSortToolbar = document.querySelector(\"solutions-searchsort-toolbar\");\ndocument.body.append(solutionsSearchSortToolbar);\nawait solutionsSearchSortToolbar.componentOnReady();\nconsole.log(\"solutions-searchsort-toolbar is ready to go!\");\n```"}],"return":{"type":{"text":"Promise<this>","references":[{"name":"Promise","module":"lib/lib.es5.d.ts","package":"typescript","start":0,"end":7}]}},"inheritedFrom":{"name":"PublicLitElement","module":"PublicLitElement","package":"@arcgis/lumina"},"signature":"(): Promise<this>"},{"kind":"method","name":"sortChanged","description":"Change the user selected sort type","parameters":[{"name":"sortType","description":"the string to sort by. Valid values are 'relevance' | 'title' | 'new' | 'updated' | 'suggested' | 'created'.","type":{"text":"SortType","references":[{"name":"SortType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#SortType","start":0,"end":8}]}},{"name":"emit","description":"when true the sortTypeChanged event will be emitted and a new search will be fired\n when false only the current settings will be updated to support url params","type":{"text":"boolean"}}],"return":{"type":{"text":"void"}},"signature":"(sortType: SortType, emit: boolean): void"}],"attributes":[{"name":"default-sort-type","description":"The default type to sort solutions by","type":{"text":"\"title\" | \"updated\" | \"new\" | \"relevance\" | \"created\" | \"suggested\"","values":[{"type":"string","value":"title"},{"type":"string","value":"updated"},{"type":"string","value":"new"},{"type":"string","value":"relevance"},{"type":"string","value":"created"},{"type":"string","value":"suggested"}]},"default":"'relevance'","fieldName":"defaultSortType"},{"name":"is-org-solutions","description":"Determines if the Owner section should be shown.","type":{"text":"boolean","values":[{"type":"boolean"}]},"default":"false","fieldName":"isOrgSolutions"},{"name":"scope","description":"The enviornment on which to perform search or sort","type":{"text":"\"details\" | \"all-solutions\" | \"deployments\" | \"resources\" | \"deployed-card\" | \"my-content\"","values":[{"type":"string","value":"details"},{"type":"string","value":"all-solutions"},{"type":"string","value":"deployments"},{"type":"string","value":"resources"},{"type":"string","value":"deployed-card"},{"type":"string","value":"my-content"}]},"fieldName":"scope"}],"events":[{"name":"searchChanged","description":"The event that gets emitted after any filter option has changed.","type":{"text":"{\n option: ISearchOption | IFilterOption | null;\n scope: DeployAppTab;\n logSearchTelemetry?: boolean;\n}","references":[{"name":"ISearchOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchOption","start":14,"end":27},{"name":"IFilterOption","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":30,"end":43},{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":63,"end":75}]}},{"name":"sortTypeChanged","description":"Emitted on demand when the sort type changes","type":{"text":"{\n sortType: SortType;\n scope: DeployAppTab;\n}","references":[{"name":"SortType","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#SortType","start":16,"end":24},{"name":"DeployAppTab","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":37,"end":49}]}},{"name":"toggleFilter","description":"Emitted on demand when the filter button is clicked in mobile","type":{"text":"void"}},{"name":"updateUrlParams","description":"Emitted on demand when navigating between tabs in the app","type":{"text":"IScopeSearchSortSettings","references":[{"name":"IScopeSearchSortSettings","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IScopeSearchSortSettings","start":0,"end":24}]}}],"importPath":"components/solutions-searchsort-toolbar"}],"exports":[{"kind":"custom-element-definition","name":"solutions-searchsort-toolbar","declaration":{"name":"SolutionsSearchSortToolbar"}}]},{"kind":"javascript-module","path":"utils/Auth","sourcePath":"src/utils/Auth.ts","declarations":[{"kind":"class","name":"Auth","members":[{"kind":"constructor","parameters":[{"name":"clientId","optional":true,"type":{"text":"string"}},{"name":"portalURL","optional":true,"type":{"text":"string"}},{"name":"locale","optional":true,"type":{"text":"string"}},{"name":"signInParam","optional":true,"type":{"text":"string"}}]},{"kind":"field","name":"CanDeleteSolution","type":{"text":"boolean"},"readonly":true},{"kind":"field","name":"CanSearchArcGISOnline","type":{"text":"boolean"},"readonly":true},{"kind":"field","name":"CanUpdateSolution","type":{"text":"boolean"},"readonly":true},{"kind":"field","name":"CanUseAI","type":{"text":"boolean"},"readonly":true},{"kind":"field","name":"CanViewOrg","type":{"text":"boolean"},"readonly":true},{"kind":"field","name":"Credential","type":{"text":"__esri.Credential | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]},"readonly":true},{"kind":"field","name":"IsEnterprisePortal","type":{"text":"boolean"},"readonly":true},{"kind":"field","name":"IsSignedIn","type":{"text":"boolean"},"readonly":true},{"kind":"field","name":"Portal","type":{"text":"Portal","references":[{"name":"default","module":"portal/Portal.js","package":"@arcgis/core","viewUrl":"https://developers.arcgis.com/javascript/latest/references/core/portal/Portal/","start":0,"end":6}]},"readonly":true},{"kind":"field","name":"PortalSubset","type":{"text":"IPortalSubset | undefined","references":[{"name":"IPortalSubset","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/Auth/#IPortalSubset","start":0,"end":13}]},"readonly":true},{"kind":"field","name":"PortalUrl","type":{"text":"string"},"readonly":true},{"kind":"field","name":"PortalUserName","type":{"text":"string"},"readonly":true},{"kind":"field","name":"PortalUserOrg","type":{"text":"string | undefined"},"readonly":true},{"kind":"field","name":"PortalUserPrivileges","type":{"text":"string[]"},"readonly":true},{"kind":"field","name":"PortalUserSubset","type":{"text":"IPortalUserSubset | undefined","references":[{"name":"IPortalUserSubset","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/Auth/#IPortalUserSubset","start":0,"end":17}]},"readonly":true},{"kind":"field","name":"RestUserSession","type":{"text":"common.UserSession","references":[{"name":"*","package":"@esri/solution-common","start":0,"end":6}]},"readonly":true},{"kind":"field","name":"SignInParam","type":{"text":"string | undefined"},"readonly":true},{"kind":"method","name":"destroy","return":{"type":{"text":"void"}}},{"kind":"method","name":"initialize","description":"Initializes the Auth object. This method must be called before any other Auth methods.\nIf the user is not authorized to use the app, the page will be redirected to an error page.","return":{"description":"Promise that resolves with the initialized Auth object","type":{"text":"Promise<Auth>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7},{"name":"Auth","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/Auth/#Auth","start":8,"end":12}]}}},{"kind":"method","name":"refreshSession","description":"Refreshes the user session token","return":{"type":{"text":"Promise<common.UserSession> | undefined","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7},{"name":"*","package":"@esri/solution-common","start":8,"end":14}]}}},{"kind":"method","name":"signIn","description":"Signs into app and refreshes the window.location or switches to the supplied URL.","parameters":[{"name":"signInParamValue","description":"If supplied, the parameter `signInParam` with the supplied value\nwill be added to the redirect uri's search params","type":{"text":"string"},"default":"''"}],"return":{"type":{"text":"Promise<void>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}}},{"kind":"method","name":"signOut","description":"Signs out of app.\nWhen the user is...\n on the solutions page they should stay on that page\n on a solutions details page they should stay on that page\n on the deployments page they should stay on that page\n on a deployed solutions page they should be sent to the deployments page\n on the resources page they should stay on that page","return":{"type":{"text":"void"}}}]},{"kind":"interface","name":"IPortalSubset","members":[{"kind":"field","name":"name","type":{"text":"string"}},{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"restUrl","type":{"text":"string"}},{"kind":"field","name":"portalUrl","type":{"text":"string"}},{"kind":"field","name":"urlKey","type":{"text":"string"}},{"kind":"field","name":"hostName","type":{"text":"string"}},{"kind":"field","name":"orgUrl","type":{"text":"string"}},{"kind":"field","name":"locationTrackingEnabled","type":{"text":"boolean"}},{"kind":"field","name":"hubPremiumEnabled","type":{"text":"boolean"}},{"kind":"field","name":"workflowURL","type":{"text":"string"}},{"kind":"field","name":"isReadOnly","type":{"text":"boolean"}},{"kind":"field","name":"orgSettings","type":{"text":"IOrgSettings","references":[{"name":"IOrgSettings","module":"utils/interfaces","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IOrgSettings","start":0,"end":12}]}}]},{"kind":"interface","name":"IPortalUserSubset","members":[{"kind":"field","name":"fullName","type":{"text":"string"}},{"kind":"field","name":"username","type":{"text":"string"}},{"kind":"field","name":"culture","type":{"text":"string"}},{"kind":"field","name":"thumbnailUrl","type":{"text":"string"}},{"kind":"field","name":"privileges","type":{"text":"string[]"}},{"kind":"field","name":"orgId","type":{"text":"string"}},{"kind":"field","name":"role","type":{"text":"string"}},{"kind":"field","name":"roleId","type":{"text":"string | undefined"}}]}]},{"kind":"javascript-module","path":"utils/interfaces","sourcePath":"src/utils/interfaces.ts","declarations":[{"kind":"interface","name":"ELayoutMode","type":{"text":"\"GRID\" | \"HORIZONTAL\" | \"VERTICAL\""}},{"kind":"interface","name":"EPageType","type":{"text":"\"LIST\" | \"SELECT\" | \"EXPORT\" | \"REFINE\""}},{"kind":"interface","name":"ESegmentType","type":{"text":"\"STANDARD\" | \"CUSTOM\""}},{"kind":"interface","name":"ESelectionMode","type":{"text":"\"ADD\" | \"REMOVE\""}},{"kind":"interface","name":"ESelectionType","type":{"text":"\"POINT\" | \"LINE\" | \"POLY\" | \"RECT\""}},{"kind":"interface","name":"EWorkflowType","type":{"text":"\"SEARCH\" | \"SELECT\" | \"SKETCH\" | \"REFINE\""}},{"kind":"interface","name":"EExportType","type":{"text":"\"CSV\" | \"PDF\""}},{"kind":"interface","name":"EDrawMode","type":{"text":"\"SKETCH\" | \"REFINE\""}},{"kind":"variable","name":"BATCH_EDIT_LIMIT","type":{"text":"500"}},{"kind":"interface","name":"DistanceUnit","type":{"text":"\"feet\" | \"meters\" | \"miles\" | \"kilometers\""}},{"kind":"interface","name":"theme","type":{"text":"\"light\" | \"dark\""}},{"kind":"interface","name":"ScopeType","type":{"text":"\"all-solutions\" | \"deployments\""}},{"kind":"interface","name":"TooltipPlacement","type":{"text":"\"auto\" | \"top\" | \"right\" | \"bottom\" | \"left\" | \"top-start\" | \"top-end\" | \"right-start\" | \"right-end\" | \"bottom-start\" | \"bottom-end\" | \"left-start\" | \"left-end\" | \"auto-start\" | \"auto-end\" | \"leading-start\" | \"leading\" | \"leading-end\" | \"trailing-end\" | \"trailing\" | \"trailing-start\""}},{"kind":"interface","name":"IMapClick","members":[{"kind":"field","name":"mapPoint","type":{"text":"__esri.Point","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"screenPoint","type":{"text":"__esri.MapViewScreenPoint","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"x","type":{"text":"number"}},{"kind":"field","name":"y","type":{"text":"number"}},{"kind":"field","name":"button","type":{"text":"number"}},{"kind":"field","name":"buttons","type":{"text":"0 | 1 | 2"}},{"kind":"field","name":"type","type":{"text":"string"}},{"kind":"field","name":"stopPropagation","type":{"text":"any"}},{"kind":"field","name":"timestamp","type":{"text":"number"}},{"kind":"field","name":"native","type":{"text":"PointerEvent","references":[{"name":"PointerEvent","package":"global:","viewUrl":"https://developer.mozilla.org/docs/Web/API/PointerEvent","start":0,"end":12}]}}]},{"kind":"interface","name":"IDeleteIds","members":[{"kind":"field","name":"ids","type":{"text":"number[]"}}]},{"kind":"interface","name":"IRefineOperation","members":[{"kind":"field","name":"ids","type":{"text":"number[]"}},{"kind":"field","name":"mode","type":{"text":"ESelectionMode","references":[{"name":"ESelectionMode","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ESelectionMode","start":0,"end":14}]}},{"kind":"field","name":"layerView","type":{"text":"__esri.FeatureLayerView","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}}]},{"kind":"interface","name":"ISearchConfiguration","members":[{"kind":"field","name":"activeSourceIndex","type":{"text":"number | undefined"}},{"kind":"field","name":"allPlaceholder","type":{"text":"string | undefined"}},{"kind":"field","name":"includeDefaultSources","type":{"text":"boolean | undefined"}},{"kind":"field","name":"searchAllEnabled","type":{"text":"boolean | undefined"}},{"kind":"field","name":"sources","type":{"text":"Array<ILocatorSourceConfigItem | ILayerSourceConfigItem> | undefined","references":[{"name":"Array","package":"global:","viewUrl":"https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array","start":0,"end":5},{"name":"ILocatorSourceConfigItem","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILocatorSourceConfigItem","start":6,"end":30},{"name":"ILayerSourceConfigItem","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILayerSourceConfigItem","start":33,"end":55}]}}]},{"kind":"interface","name":"ISearchSourceConfigItem","members":[{"kind":"field","name":"maxResults","type":{"text":"number"}},{"kind":"field","name":"maxSuggestions","type":{"text":"number"}},{"kind":"field","name":"minSuggestCharacters","type":{"text":"number"}},{"kind":"field","name":"name","type":{"text":"string"}},{"kind":"field","name":"suggestionsEnabled","type":{"text":"boolean"}},{"kind":"field","name":"placeholder","type":{"text":"string"}},{"kind":"field","name":"withinViewEnabled","type":{"text":"boolean"}},{"kind":"field","name":"zoomScale","type":{"text":"number"}},{"kind":"field","name":"outFields","type":{"text":"string[] | undefined"}}]},{"kind":"interface","name":"ILocatorSourceConfigItem","supertypes":[{"name":"ISearchSourceConfigItem","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchSourceConfigItem"}],"members":[{"kind":"field","name":"url","type":{"text":"string | undefined"}},{"kind":"field","name":"singleLineFieldName","type":{"text":"string"}},{"kind":"field","name":"countryCode","type":{"text":"string"}}]},{"kind":"interface","name":"ILayerSourceConfigItem","supertypes":[{"name":"ISearchSourceConfigItem","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchSourceConfigItem"}],"members":[{"kind":"field","name":"displayField","type":{"text":"string"}},{"kind":"field","name":"exactMatch","type":{"text":"boolean"}},{"kind":"field","name":"layer","type":{"text":"{\n url: string | __esri.FeatureLayer;\n id: string;\n}","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":20,"end":27}]}},{"kind":"field","name":"outFields","type":{"text":"string[]"}},{"kind":"field","name":"searchFields","type":{"text":"string"}},{"kind":"field","name":"popupTemplate","type":{"text":"any"}},{"kind":"field","name":"popupEnabled","type":{"text":"boolean"}}]},{"kind":"interface","name":"IDropdownItem","members":[{"kind":"field","name":"displayValue","type":{"text":"string"}},{"kind":"field","name":"sortType","type":{"text":"SortType","references":[{"name":"SortType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#SortType","start":0,"end":8}]}}]},{"kind":"interface","name":"ISearchSortSettings","supertypes":[{"name":"ISearchOption","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchOption"},{"name":"ISortOption","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortOption"}],"members":[{"kind":"field","name":"isOrgSolutions","type":{"text":"boolean"}}]},{"kind":"interface","name":"IScopeSearchSortSettings","members":[{"kind":"field","name":"scope","type":{"text":"ScopeType","references":[{"name":"ScopeType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ScopeType","start":0,"end":9}]}},{"kind":"field","name":"settings","type":{"text":"ISearchSortSettings","references":[{"name":"ISearchSortSettings","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchSortSettings","start":0,"end":19}]}}]},{"kind":"interface","name":"ISearchTerm","members":[{"kind":"field","name":"searchTerm","type":{"text":"string"}},{"kind":"field","name":"scope","type":{"text":"ScopeType","references":[{"name":"ScopeType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ScopeType","start":0,"end":9}]}}]},{"kind":"interface","name":"ISortType","members":[{"kind":"field","name":"sortType","type":{"text":"SortType","references":[{"name":"SortType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#SortType","start":0,"end":8}]}},{"kind":"field","name":"scope","type":{"text":"ScopeType","references":[{"name":"ScopeType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ScopeType","start":0,"end":9}]}}]},{"kind":"interface","name":"IValueChange","members":[{"kind":"field","name":"oldValue","type":{"text":"number | string"}},{"kind":"field","name":"newValue","type":{"text":"number | string"}}]},{"kind":"interface","name":"IMapItemHash","description":"Layer or table id and title key value pair","type":{"text":"{ [key: string]: ILayerHashInfo; }","references":[{"name":"ILayerHashInfo","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILayerHashInfo","start":17,"end":31}]}},{"kind":"interface","name":"ILayerHashInfo","members":[{"kind":"field","name":"name","type":{"text":"string"}},{"kind":"field","name":"supportsUpdate","type":{"text":"boolean"}}]},{"kind":"interface","name":"ITemplateInfo","description":"Stores the id, type, and title for a given template","members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"title","type":{"text":"string"}},{"kind":"field","name":"type","type":{"text":"string"}},{"kind":"field","name":"typeKeywords","type":{"text":"string[]"}},{"kind":"field","name":"snippet","type":{"text":"string"}},{"kind":"field","name":"url","type":{"text":"string | undefined"}}]},{"kind":"interface","name":"ILayerItemsHash","type":{"text":"{ [key: string]: ILayerDetailsHash; }","references":[{"name":"ILayerDetailsHash","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILayerDetailsHash","start":17,"end":34}]}},{"kind":"interface","name":"ILayerDetailsHash","members":[{"kind":"field","name":"name","type":{"text":"string"}},{"kind":"field","name":"formattedFeatureCount","type":{"text":"string"}},{"kind":"field","name":"supportsUpdate","type":{"text":"boolean"}},{"kind":"field","name":"supportsAdd","type":{"text":"boolean"}}]},{"kind":"interface","name":"ISearchConfig","description":"A templates share details","members":[{"kind":"field","name":"layers","type":{"text":"string[]"}},{"kind":"field","name":"layerUrl","type":{"text":"string"}},{"kind":"field","name":"locators","type":{"text":"string[]"}},{"kind":"field","name":"locatorUrl","type":{"text":"string"}}]},{"kind":"interface","name":"ISearchResult","members":[{"kind":"field","name":"graphics","type":{"text":"__esri.Graphic[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"name","type":{"text":"string"}}]},{"kind":"interface","name":"ISelectionSet","members":[{"kind":"field","name":"id","type":{"text":"number"}},{"kind":"field","name":"searchResult","type":{"text":"any"}},{"kind":"field","name":"buffer","type":{"text":"__esri.Geometry | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"distance","type":{"text":"number"}},{"kind":"field","name":"download","type":{"text":"boolean"}},{"kind":"field","name":"unit","type":{"text":"DistanceUnit","references":[{"name":"DistanceUnit","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DistanceUnit","start":0,"end":12}]}},{"kind":"field","name":"label","type":{"text":"string"}},{"kind":"field","name":"selectedIds","type":{"text":"number[]"}},{"kind":"field","name":"layerView","type":{"text":"__esri.FeatureLayerView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"geometries","type":{"text":"__esri.Geometry[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"graphics","type":{"text":"__esri.Graphic[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"selectLayers","type":{"text":"__esri.FeatureLayerView[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"skipGeomOIDs","type":{"text":"number[] | undefined"}},{"kind":"field","name":"workflowType","type":{"text":"EWorkflowType","references":[{"name":"EWorkflowType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#EWorkflowType","start":0,"end":13}]}},{"kind":"field","name":"searchDistanceEnabled","type":{"text":"boolean"}},{"kind":"field","name":"useLayerFeaturesEnabled","type":{"text":"boolean"}},{"kind":"field","name":"refineInfos","type":{"text":"IRefineInfo","references":[{"name":"IRefineInfo","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IRefineInfo","start":0,"end":11}]}},{"kind":"field","name":"redoStack","type":{"text":"IRefineOperation[] | undefined","references":[{"name":"IRefineOperation","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IRefineOperation","start":0,"end":16}]}},{"kind":"field","name":"undoStack","type":{"text":"IRefineOperation[] | undefined","references":[{"name":"IRefineOperation","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IRefineOperation","start":0,"end":16}]}},{"kind":"field","name":"sketchGraphic","type":{"text":"__esri.Graphic | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"undoGraphicsArr","type":{"text":"any[] | undefined"}}]},{"kind":"interface","name":"IRefineInfo","type":{"text":"{ [key: string]: IRefineIds; }","references":[{"name":"IRefineIds","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IRefineIds","start":17,"end":27}]}},{"kind":"interface","name":"IRefineIds","members":[{"kind":"field","name":"addIds","type":{"text":"number[]"}},{"kind":"field","name":"removeIds","type":{"text":"number[]"}},{"kind":"field","name":"layerView","type":{"text":"__esri.FeatureLayerView","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}}]},{"kind":"interface","name":"ISketchGraphicsChange","members":[{"kind":"field","name":"graphics","type":{"text":"__esri.Graphic[]","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"useOIDs","type":{"text":"boolean"}}]},{"kind":"interface","name":"IQueryExtentResponse","members":[{"kind":"field","name":"count","type":{"text":"number"}},{"kind":"field","name":"extent","type":{"text":"__esri.Extent | null","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}}]},{"kind":"interface","name":"IBeforeLayerSelectionChange","members":[{"kind":"field","name":"currentId","type":{"text":"string | undefined"}},{"kind":"field","name":"currentIds","type":{"text":"string[] | undefined"}},{"kind":"field","name":"newId","type":{"text":"string | undefined"}},{"kind":"field","name":"newIds","type":{"text":"string[] | undefined"}},{"kind":"field","name":"ref","type":{"text":"MapLayerPicker","references":[{"name":"MapLayerPicker","module":"components/map-layer-picker","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/map-layer-picker/#MapLayerPicker","start":0,"end":14}]}}]},{"kind":"interface","name":"IBeforeMapChange","members":[{"kind":"field","name":"currentId","type":{"text":"string"}},{"kind":"field","name":"mapInfo","type":{"text":"IMapInfo","references":[{"name":"IMapInfo","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IMapInfo","start":0,"end":8}]}},{"kind":"field","name":"ref","type":{"text":"MapPicker","references":[{"name":"MapPicker","module":"components/map-picker","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/map-picker/#MapPicker","start":0,"end":9}]}}]},{"kind":"interface","name":"IMapInfo","members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"name","type":{"text":"string"}},{"kind":"field","name":"searchConfiguration","type":{"text":"ISearchConfiguration | undefined","references":[{"name":"ISearchConfiguration","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISearchConfiguration","start":0,"end":20}]}},{"kind":"field","name":"filterConfig","type":{"text":"IFilterConfig | undefined","references":[{"name":"IFilterConfig","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterConfig","start":0,"end":13}]}},{"kind":"field","name":"_hasValidLayers","type":{"text":"boolean | undefined"}},{"kind":"field","name":"visible","type":{"text":"boolean | undefined"}},{"kind":"field","name":"layerOptions","type":{"text":"ILayerOptions | undefined","references":[{"name":"ILayerOptions","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILayerOptions","start":0,"end":13}]}},{"kind":"field","name":"enableInlineEdit","type":{"text":"boolean"}},{"kind":"field","name":"enableCreateFeatures","type":{"text":"boolean"}},{"kind":"field","name":"createFeatureButtonLabel","type":{"text":"string"}},{"kind":"field","name":"enableEditGeometry","type":{"text":"boolean"}},{"kind":"field","name":"enableTableAutosave","type":{"text":"boolean"}}]},{"kind":"interface","name":"ILayerOptions","members":[{"kind":"field","name":"layers","type":{"text":"ILayerDef[]","references":[{"name":"ILayerDef","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILayerDef","start":0,"end":9}]}},{"kind":"field","name":"mapId","type":{"text":"string | undefined"}},{"kind":"field","name":"configLayerOrder","type":{"text":"string[] | undefined"}}]},{"kind":"interface","name":"ILayerDef","members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"sublayerId","type":{"text":"number | undefined"}},{"kind":"field","name":"fields","type":{"text":"string[] | undefined"}},{"kind":"field","name":"extraFields","type":{"text":"string[]"}},{"kind":"field","name":"fieldOrder","type":{"text":"string[] | undefined"}},{"kind":"field","name":"sortField","type":{"text":"string | undefined"}},{"kind":"field","name":"sortOrder","type":{"text":"\"asc\" | \"desc\" | undefined"}}]},{"kind":"interface","name":"IMapChange","members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"mapView","type":{"text":"__esri.MapView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"isValid","type":{"text":"boolean"}}]},{"kind":"interface","name":"IExportInfos","type":{"text":"{ [key: string]: IExportInfo; }","references":[{"name":"IExportInfo","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IExportInfo","start":17,"end":28}]}},{"kind":"interface","name":"IExportInfo","members":[{"kind":"field","name":"ids","type":{"text":"number[]"}},{"kind":"field","name":"layer","type":{"text":"__esri.FeatureLayer | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"layerView","type":{"text":"__esri.FeatureLayerView | undefined","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"kind":"field","name":"selectionSetNames","type":{"text":"string[]"}}]},{"kind":"interface","name":"IBasemapConfig","members":[{"kind":"field","name":"basemapIdsToFilter","type":{"text":"string[]"}},{"kind":"field","name":"basemapGroupId","type":{"text":"string"}}]},{"kind":"interface","name":"IToolInfo","members":[{"kind":"field","name":"active","type":{"text":"boolean"}},{"kind":"field","name":"icon","type":{"text":"Icon[\"icon\"]","references":[{"name":"Icon","module":"components/calcite-icon","package":"@esri/calcite-components","start":0,"end":4}]}},{"kind":"field","name":"indicator","type":{"text":"boolean"}},{"kind":"field","name":"func","type":{"text":"any"}},{"kind":"field","name":"label","type":{"text":"string"}},{"kind":"field","name":"toolTip","type":{"text":"string"}},{"kind":"field","name":"disabled","type":{"text":"boolean"}},{"kind":"field","name":"isDanger","type":{"text":"boolean | undefined"}},{"kind":"field","name":"loading","type":{"text":"boolean | undefined"}}]},{"kind":"interface","name":"IColumnsInfo","type":{"text":"{ [key: string]: boolean; }"}},{"kind":"interface","name":"IFilterConfig","members":[{"kind":"field","name":"mapId","type":{"text":"string"}},{"kind":"field","name":"layerExpressions","type":{"text":"ILayerExpression[]","references":[{"name":"ILayerExpression","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ILayerExpression","start":0,"end":16}]}}]},{"kind":"interface","name":"ILayerExpression","members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"sublayerId","type":{"text":"number"}},{"kind":"field","name":"title","type":{"text":"string"}},{"kind":"field","name":"expressions","type":{"text":"IExpression[]","references":[{"name":"IExpression","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IExpression","start":0,"end":11}]}},{"kind":"field","name":"operator","type":{"text":"string"}}]},{"kind":"interface","name":"IImageExtraction","members":[{"kind":"field","name":"field","type":{"text":"string"}},{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"prompt","type":{"text":"string"}}]},{"kind":"interface","name":"ExpressionField","type":{"text":"\"string\" | \"number\" | \"date\" | \"coded-value\" | \"range\" | \"checkbox\""}},{"kind":"interface","name":"EditType","type":{"text":"\"update\" | \"add\" | \"delete\""}},{"kind":"interface","name":"ButtonType","type":{"text":"\"button\" | \"action\""}},{"kind":"interface","name":"AppLayout","type":{"text":"\"mapView\" | \"tableView\" | \"splitView\""}},{"kind":"interface","name":"VisibilityIconType","type":{"text":"\"checkbox\" | \"eyeball\""}},{"kind":"interface","name":"IExpression","members":[{"kind":"field","name":"id","type":{"text":"number"}},{"kind":"field","name":"type","type":{"text":"ExpressionField | undefined","references":[{"name":"ExpressionField","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ExpressionField","start":0,"end":15}]}},{"kind":"field","name":"active","type":{"text":"boolean | undefined"}},{"kind":"field","name":"definitionExpression","type":{"text":"string | undefined"}},{"kind":"field","name":"name","type":{"text":"string"}},{"kind":"field","name":"field","type":{"text":"string | undefined"}},{"kind":"field","name":"fields","type":{"text":"string[] | number[] | undefined"}},{"kind":"field","name":"selectedFields","type":{"text":"string[] | number[] | undefined"}},{"kind":"field","name":"codedValues","type":{"text":"{ [key: string]: string; } | undefined"}},{"kind":"field","name":"placeholder","type":{"text":"string | undefined"}},{"kind":"field","name":"min","type":{"text":"number | string | undefined"}},{"kind":"field","name":"max","type":{"text":"number | string | undefined"}},{"kind":"field","name":"range","type":{"text":"{\n min: string | number | undefined;\n max: string | number | undefined;\n} | undefined"}},{"kind":"field","name":"step","type":{"text":"number | undefined"}},{"kind":"field","name":"numDisplayOption","type":{"text":"\"slider\" | \"drop-down\" | undefined"}}]},{"kind":"interface","name":"ILayerAndTableIds","members":[{"kind":"field","name":"layerIds","type":{"text":"string[]"}},{"kind":"field","name":"tableIds","type":{"text":"string[]"}}]},{"kind":"interface","name":"IPopupUtils","members":[{"kind":"method","name":"getPopupTitle","parameters":[{"name":"graphic","type":{"text":"__esri.Graphic","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}},{"name":"map","type":{"text":"__esri.Map","references":[{"name":"__esri","module":"interfaces.js","package":"@arcgis/core","start":0,"end":7}]}}],"return":{"type":{"text":"Promise<string>","references":[{"name":"Promise","package":"global:","viewUrl":"https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/","start":0,"end":7}]}}}]},{"kind":"interface","name":"IConsentResponse","members":[{"kind":"field","name":"granted","type":{"text":"boolean"}}]},{"kind":"interface","name":"IPNContext","supertypes":[{"name":"Controller","module":"controllers","package":"@arcgis/lumina"}],"members":[{"kind":"field","name":"managedLayers","type":{"text":"IManagedLayers","references":[{"name":"IManagedLayers","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IManagedLayers","start":0,"end":14}]}},{"kind":"field","name":"managedTables","type":{"text":"string[]"}},{"kind":"field","name":"highlightHandles","type":{"text":"any[]"}},{"kind":"field","name":"removeHandles","type":{"text":"() => void"}}]},{"kind":"interface","name":"IManagedLayers","description":"Key is the layer name and the value is the type of layer","type":{"text":"{ [key: string]: \"buffer\" | \"sketch\"; }"}},{"kind":"interface","name":"IReportingOptions","description":"Key is the layers guid","type":{"text":"{ [key: string]: IReportingOption; }","references":[{"name":"IReportingOption","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IReportingOption","start":17,"end":33}]}},{"kind":"interface","name":"IReportingOption","members":[{"kind":"field","name":"reporting","type":{"text":"boolean"}},{"kind":"field","name":"comment","type":{"text":"boolean"}},{"kind":"field","name":"like","type":{"text":"boolean"}},{"kind":"field","name":"likeField","type":{"text":"string | undefined"}},{"kind":"field","name":"dislike","type":{"text":"boolean"}},{"kind":"field","name":"dislikeField","type":{"text":"string | undefined"}},{"kind":"field","name":"visible","type":{"text":"boolean"}}]},{"kind":"interface","name":"ISortingInfo","members":[{"kind":"field","name":"field","type":{"text":"string"}},{"kind":"field","name":"order","type":{"text":"\"asc\" | \"desc\""}}]},{"kind":"interface","name":"ISolutionItemHover","members":[{"kind":"field","name":"itemId","type":{"text":"string"}},{"kind":"field","name":"entering","type":{"text":"boolean"}}]},{"kind":"interface","name":"ISolutionItemSelected","members":[{"kind":"field","name":"itemId","type":{"text":"string"}},{"kind":"field","name":"selected","type":{"text":"boolean"}}]},{"kind":"interface","name":"ISolutionTypeHover","members":[{"kind":"field","name":"itemType","type":{"text":"string"}},{"kind":"field","name":"entering","type":{"text":"boolean"}}]},{"kind":"interface","name":"ChipType","type":{"text":"\"new\" | \"deployed\" | \"updated\""}},{"kind":"interface","name":"SortType","type":{"text":"\"relevance\" | \"title\" | \"new\" | \"updated\" | \"suggested\" | \"created\""}},{"kind":"interface","name":"SortOrder","type":{"text":"\"asc\" | \"desc\""}},{"kind":"interface","name":"FilterType","type":{"text":"\"type\" | \"industry\" | \"domain\" | \"owner\""}},{"kind":"variable","name":"EIndustry","type":{"text":"{\n AEC: string;\n AIRPORTPORTRAIL: string;\n BUSINESS: string;\n CONSERVATION: string;\n DEFENSE: string;\n FACILITIES: string;\n HEALTHANDHUMANSERVICES: string;\n PIPELINE: string;\n PUBLICSAFETY: string;\n RENEWABLES: string;\n STATEANDLOCALGOVERNMENT: string;\n TELECOMMUNICATIONS: string;\n UTILITIES: string;\n}"}},{"kind":"variable","name":"EDomain","type":{"text":"{\n AIRPORT: string;\n AGRICULTURE: string;\n ASSESSMENTANDTAXATION: string;\n DISTRICTENERGY: string;\n ELECTIONS: string;\n ELECTRIC: string;\n EMERGENCYMANAGEMENT: string;\n ENVIRONMENTANDNATURALRESOURCES: string;\n FIRESERVICE: string;\n FISHANDWILDLIFE: string;\n GAS: string;\n HEALTHANDHUMANSERVICES: string;\n LAWENFORCEMENT: string;\n NATURALRESOURCES: string;\n PARKS: string;\n PLANNINGANDDEVELOPMENT: string;\n PROTECTEDAREAS: string;\n PUBLICWORKS: string;\n SEWER: string;\n STORMWATER: string;\n TELECOMMUNICATIONS: string;\n TRANSPORTATION: string;\n WATER: string;\n}"}},{"kind":"interface","name":"EType","type":{"text":"\"New Release\" | \"Suggested\""}},{"kind":"interface","name":"EOwnerOption","type":{"text":"\"My solutions\" | `My organization's solutions`"}},{"kind":"interface","name":"IFilterOption","members":[{"kind":"field","name":"type","type":{"text":"FilterType","references":[{"name":"FilterType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#FilterType","start":0,"end":10}]}},{"kind":"field","name":"displayValue","type":{"text":"string"}},{"kind":"field","name":"domain","type":{"text":"string | undefined"}},{"kind":"field","name":"value","type":{"text":"string | EType | EOwnerOption","references":[{"name":"EType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#EType","start":9,"end":14},{"name":"EOwnerOption","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#EOwnerOption","start":17,"end":29}]}},{"kind":"field","name":"industry","type":{"text":"string | undefined"}}]},{"kind":"interface","name":"IFilterSetting","members":[{"kind":"field","name":"categories","type":{"text":"IFilterOption[] | undefined","references":[{"name":"IFilterOption","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IFilterOption","start":0,"end":13}]}},{"kind":"field","name":"searchTerm","type":{"text":"string | undefined"}}]},{"kind":"interface","name":"ISearchOption","members":[{"kind":"field","name":"searchTerm","type":{"text":"string"}}]},{"kind":"interface","name":"ISortOption","members":[{"kind":"field","name":"sortType","type":{"text":"SortType","references":[{"name":"SortType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#SortType","start":0,"end":8}]}},{"kind":"field","name":"enabled","type":{"text":"boolean | undefined"}}]},{"kind":"interface","name":"ISolutionDeployedCard","members":[{"kind":"field","name":"deployedDate","type":{"text":"string"}},{"kind":"field","name":"description","type":{"text":"string"}},{"kind":"field","name":"heading","type":{"text":"string"}},{"kind":"field","name":"itemId","type":{"text":"string"}},{"kind":"field","name":"owner","type":{"text":"string"}},{"kind":"field","name":"thumbnail","type":{"text":"string"}},{"kind":"field","name":"updateAvailable","type":{"text":"boolean"}}]},{"kind":"interface","name":"IDeployedSolutionCards","members":[{"kind":"field","name":"cards","type":{"text":"ISolutionInfoCard[]","references":[{"name":"ISolutionInfoCard","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"relatedSolutions","type":{"text":"Set<string>","references":[{"name":"Set","package":"global:","viewUrl":"https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Set","start":0,"end":3}]}}]},{"kind":"variable","name":"BASE_DEPLOYED_TERMS","type":{"text":"\"((typekeywords:Solution,Deployed,\\\"ArcGIS Solution\\\") OR ((typekeywords:Solution,Deployed) AND (created:[1577862000000 TO 1622576880000])))\""}},{"kind":"variable","name":"BASE_SOLUTIONS_TERMS","type":{"text":"\"(typekeywords:Solution,Template)\""}},{"kind":"interface","name":"ISearchOptionPartial","members":[{"kind":"field","name":"q","type":{"text":"string"}},{"kind":"field","name":"filter","type":{"text":"string"}},{"kind":"field","name":"sortField","type":{"text":"string"}},{"kind":"field","name":"sortOrder","type":{"text":"string"}},{"kind":"field","name":"nextStart","type":{"text":"any | undefined"}},{"kind":"field","name":"categories","type":{"text":"string[]"}},{"kind":"field","name":"delay","type":{"text":"boolean"}},{"kind":"field","name":"getSuggested","type":{"text":"boolean | undefined"}},{"kind":"field","name":"num","type":{"text":"number"}}]},{"kind":"interface","name":"ICacheBatch","typeParameters":[{"name":"T"}],"members":[{"kind":"field","name":"cards","type":{"text":"T[]","references":[{"name":"T","start":0,"end":1}]}},{"kind":"field","name":"paging","type":{"text":"IPagedResponse","references":[{"name":"IPagedResponse","package":"@esri/arcgis-rest-types","start":0,"end":14}]}}]},{"kind":"interface","name":"IKeyedStrings","type":{"text":"{ [key: string]: string; }"}},{"kind":"interface","name":"IPreview","members":[{"kind":"field","name":"name","type":{"text":"string"}},{"kind":"field","name":"format","type":{"text":"string"}},{"kind":"field","name":"alt","type":{"text":"string"}}]},{"kind":"interface","name":"ISolutionInfoCard","description":"Summary of a solution item.","supertypes":[{"name":"ISortableItem","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISortableItem"}],"members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"title","type":{"text":"string"}},{"kind":"field","name":"snippet","type":{"text":"string"}},{"kind":"field","name":"description","type":{"text":"string"}},{"kind":"field","name":"url","type":{"text":"string"}},{"kind":"field","name":"itemUrl","type":{"text":"string"}},{"kind":"field","name":"thumbnailFilename","type":{"text":"string"}},{"kind":"field","name":"thumbnailUrl","type":{"text":"string"}},{"kind":"field","name":"tryitUrl","type":{"text":"string"}},{"kind":"field","name":"typeKeywords","type":{"text":"string[]"}},{"kind":"field","name":"learnMoreUrl","type":{"text":"string"}},{"kind":"field","name":"createdMs","type":{"text":"number"}},{"kind":"field","name":"created","type":{"text":"string"}},{"kind":"field","name":"modified","type":{"text":"string"}},{"kind":"field","name":"numViews","type":{"text":"number"}},{"kind":"field","name":"tags","type":{"text":"string[]"}},{"kind":"field","name":"categories","type":{"text":"string[]"}},{"kind":"field","name":"licenseInfo","type":{"text":"string"}},{"kind":"field","name":"deployCommonId","type":{"text":"string"}},{"kind":"field","name":"deployVersion","type":{"text":"string"}},{"kind":"field","name":"canDelete","type":{"text":"boolean"}},{"kind":"field","name":"preview","type":{"text":"IPreview[] | undefined","references":[{"name":"IPreview","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IPreview","start":0,"end":8}]}},{"kind":"field","name":"sourcePortalUrl","type":{"text":"string"}},{"kind":"field","name":"knownToBePublicSource","type":{"text":"boolean"}},{"kind":"field","name":"waitId","type":{"text":"string"}},{"kind":"field","name":"relatedSolutions","type":{"text":"string[]"}},{"kind":"field","name":"owner","type":{"text":"string | undefined"}},{"kind":"field","name":"chips","type":{"text":"ChipType[] | undefined","references":[{"name":"ChipType","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ChipType","start":0,"end":8}]}},{"kind":"field","name":"supportReuse","type":{"text":"boolean | undefined"}}]},{"kind":"interface","name":"TEnvironments","type":{"text":"\"dev\" | \"qa\" | \"prod\""}},{"kind":"interface","name":"ICacheBatch","typeParameters":[{"name":"T"}],"members":[{"kind":"field","name":"cards","type":{"text":"T[]","references":[{"name":"T","start":0,"end":1}]}},{"kind":"field","name":"paging","type":{"text":"IPagedResponse","references":[{"name":"IPagedResponse","package":"@esri/arcgis-rest-types","start":0,"end":14}]}}]},{"kind":"interface","name":"ISortableItem","members":[{"kind":"field","name":"createdMs","type":{"text":"number"}},{"kind":"field","name":"numViews","type":{"text":"number"}},{"kind":"field","name":"title","type":{"text":"string"}}],"type":{"text":"{ [key: string]: any; }"}},{"kind":"interface","name":"ISpatialReference","members":[{"kind":"field","name":"label","type":{"text":"string"}},{"kind":"field","name":"wkid","type":{"text":"number"}},{"kind":"field","name":"defaultExtent","type":{"text":"string"}}]},{"kind":"interface","name":"IURLParamPair","members":[{"kind":"field","name":"k","type":{"text":"string"}},{"kind":"field","name":"v","type":{"text":"string"}}]},{"kind":"interface","name":"IRequestDeploySolution","members":[{"kind":"field","name":"card","type":{"text":"ISolutionInfoCard","references":[{"name":"ISolutionInfoCard","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"reuse","type":{"text":"boolean"}},{"kind":"field","name":"jobId","type":{"text":"string"}},{"kind":"field","name":"userOptions","type":{"text":"IUserOption[]","references":[{"name":"IUserOption","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IUserOption","start":0,"end":11}]}}]},{"kind":"interface","name":"IUserOption","members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"props","type":{"text":"IUserProp[]","references":[{"name":"IUserProp","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IUserProp","start":0,"end":9}]}},{"kind":"field","name":"accordionDisplay","type":{"text":"boolean | undefined"}}]},{"kind":"interface","name":"IUserProp","members":[{"kind":"field","name":"autoSelect","type":{"text":"boolean | undefined"}},{"kind":"field","name":"id","type":{"text":"string | undefined"}},{"kind":"field","name":"itemType","type":{"text":"string | undefined"}},{"kind":"field","name":"label","type":{"text":"string | undefined"}},{"kind":"field","name":"prop","type":{"text":"string | undefined"}},{"kind":"field","name":"default","type":{"text":"string | undefined"}},{"kind":"field","name":"value","type":{"text":"string | undefined"}},{"kind":"field","name":"responseValue","type":{"text":"string | undefined"}},{"kind":"field","name":"choices","type":{"text":"string[] | undefined"}},{"kind":"field","name":"valueType","type":{"text":"string | undefined"}},{"kind":"field","name":"attributes","type":{"text":"any | undefined"}},{"kind":"field","name":"validation","type":{"text":"any | undefined"}},{"kind":"field","name":"valid","type":{"text":"boolean | undefined"}},{"kind":"field","name":"validId","type":{"text":"boolean | undefined"}},{"kind":"field","name":"srSearchText","type":{"text":"string | undefined"}},{"kind":"field","name":"outType","type":{"text":"string | undefined"}},{"kind":"field","name":"loading","type":{"text":"boolean | undefined"}},{"kind":"field","name":"tooltip","type":{"text":"string | undefined"}},{"kind":"field","name":"name","type":{"text":"string | undefined"}},{"kind":"field","name":"title","type":{"text":"string | undefined"}},{"kind":"field","name":"itemUrl","type":{"text":"string | undefined"}},{"kind":"field","name":"existingItemId","type":{"text":"string | undefined"}}]},{"kind":"interface","name":"IValidNameStatus","members":[{"kind":"field","name":"status","type":{"text":"boolean"}},{"kind":"field","name":"type","type":{"text":"\"\" | \"empty\" | \"exceed length\" | \"not unique\" | \"special character\""}}]},{"kind":"interface","name":"TrackingEnv","type":{"text":"\"dev\" | \"qa\" | \"prod\" | \"\""}},{"kind":"interface","name":"IDeployProgressUpdate","members":[{"kind":"field","name":"id","type":{"text":"string"}},{"kind":"field","name":"progress","type":{"text":"number"}}]},{"kind":"interface","name":"IDeployFailed","members":[{"kind":"field","name":"card","type":{"text":"ISolutionInfoCard","references":[{"name":"ISolutionInfoCard","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"jobId","type":{"text":"string"}},{"kind":"field","name":"error","type":{"text":"any | undefined"}}]},{"kind":"variable","name":"PORTAL_ADD_MEMBERS_TO_GROUP","type":{"text":"\"portal:user:addExternalMembersToGroup\""}},{"kind":"variable","name":"PORTAL_CREATE_ITEM","type":{"text":"\"portal:user:createItem\""}},{"kind":"variable","name":"PORTAL_CREATE_GROUP","type":{"text":"\"portal:user:createGroup\""}},{"kind":"variable","name":"PORTAL_PUBLISH_BD_ANALYTICS","type":{"text":"\"portal:publisher:publishBigDataAnalytics\""}},{"kind":"variable","name":"PORTAL_PUBLISH_FEATURES","type":{"text":"\"portal:publisher:publishFeatures\""}},{"kind":"variable","name":"PORTAL_PUBLISH_FEEDS","type":{"text":"\"portal:publisher:publishFeeds\""}},{"kind":"variable","name":"PORTAL_PUBLISH_GP","type":{"text":"\"portal:publisher:publishServerGPServices\""}},{"kind":"variable","name":"PORTAL_PUBLISH_RT_ANALYTICS","type":{"text":"\"portal:publisher:publishRealTimeAnalytics\""}},{"kind":"variable","name":"PORTAL_SHARE_TO_GROUP","type":{"text":"\"portal:user:shareToGroup\""}},{"kind":"variable","name":"SOLUTIONS_HUB_PREMIUM","type":{"text":"\"solutions:hubPremium\""}},{"kind":"variable","name":"SOLUTIONS_NOTEBOOK","type":{"text":"\"solutions:notebook\""}},{"kind":"variable","name":"SOLUTIONS_TRACKING_ADMIN_TRACKING","type":{"text":"\"solutions:locationtracking:admin:tracking\""}},{"kind":"variable","name":"SOLUTIONS_TRACKING","type":{"text":"\"solutions:locationtracking:tracking\""}},{"kind":"variable","name":"SOLUTIONS_TRACKING_ADMIN","type":{"text":"\"solutions:locationtracking:admin\""}},{"kind":"variable","name":"SOLUTIONS_VELOCITY","type":{"text":"\"solutions:velocity\""}},{"kind":"variable","name":"SOLUTIONS_WORKFLOW_MANAGER","type":{"text":"\"solutions:workflowManager\""}},{"kind":"interface","name":"IItemPreview","members":[{"kind":"field","name":"name","type":{"text":"string"}},{"kind":"field","name":"format","type":{"text":"string"}},{"kind":"field","name":"alt","type":{"text":"string"}},{"kind":"field","name":"description","type":{"text":"string | undefined"}}]},{"kind":"interface","name":"IInfoProduct","members":[{"kind":"field","name":"item","type":{"text":"string"}},{"kind":"field","name":"description","type":{"text":"string"}},{"kind":"field","name":"userType","type":{"text":"string"}}]},{"kind":"interface","name":"IReleaseNote","members":[{"kind":"field","name":"version","type":{"text":"string"}},{"kind":"field","name":"description","type":{"text":"string"}}]},{"kind":"interface","name":"IItemProperties","members":[{"kind":"field","name":"schemaVersion","type":{"text":"number"}},{"kind":"field","name":"learnMoreUrl","type":{"text":"string"}},{"kind":"field","name":"preview","type":{"text":"IItemPreview[]","references":[{"name":"IItemPreview","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IItemPreview","start":0,"end":12}]}},{"kind":"field","name":"relatedSolutions","type":{"text":"string[]"}},{"kind":"field","name":"requirements","type":{"text":"string[]"}},{"kind":"field","name":"infoProducts","type":{"text":"IInfoProduct[]","references":[{"name":"IInfoProduct","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IInfoProduct","start":0,"end":12}]}},{"kind":"field","name":"releaseNotes","type":{"text":"IReleaseNote[]","references":[{"name":"IReleaseNote","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IReleaseNote","start":0,"end":12}]}},{"kind":"field","name":"dataDictionaryURL","type":{"text":"string"}},{"kind":"field","name":"demoURL","type":{"text":"string"}},{"kind":"field","name":"relatedResources","type":{"text":"any[]"}}]},{"kind":"interface","name":"IPrivilegeMessages","members":[{"kind":"field","name":"leadingMessages","type":{"text":"string[]"}},{"kind":"field","name":"bulletedMessages","type":{"text":"string[]"}},{"kind":"field","name":"trailingMessages","type":{"text":"string[]"}}]},{"kind":"interface","name":"IDeployedSolutionCardRefs","type":{"text":"{ [key: string]: SolutionDeployedCard; }","references":[{"name":"SolutionDeployedCard","module":"components/solution-deployed-card","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/solution-deployed-card/#SolutionDeployedCard","start":17,"end":37}]}},{"kind":"variable","name":"ITEM_TITLE_LENGTH","type":{"text":"250"}},{"kind":"interface","name":"DeployAppTab","type":{"text":"\"all-solutions\" | \"deployments\" | \"details\" | \"resources\" | \"deployed-card\" | \"my-content\""}},{"kind":"interface","name":"IActiveTab","members":[{"kind":"field","name":"tabType","type":{"text":"DeployAppTab","references":[{"name":"DeployAppTab","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}]}},{"kind":"field","name":"tabTitleOrId","type":{"text":"string"}}]},{"kind":"interface","name":"FieldSortType","type":{"text":"\"default\" | \"display\" | \"field\" | \"type\""}},{"kind":"interface","name":"NameType","type":{"text":"\"folder\" | \"item\""}},{"kind":"variable","name":"TELEMETRY_CATEGORY","type":{"text":"{\n readonly SOLUTION_DETAILS: \"Solution Details\";\n readonly GLOBAL_NAVIGATION: \"Global Nav\";\n readonly ALL_SOLUTIONS: \"Solutions\";\n readonly DEPLOYMENTS: \"Deployments\";\n readonly ASSISTANT: \"Assistant\";\n readonly RESOURCES: \"Resources\";\n}"}},{"kind":"interface","name":"TelemetryCategory","type":{"text":"typeof TELEMETRY_CATEGORY[keyof typeof TELEMETRY_CATEGORY]","references":[{"name":"TELEMETRY_CATEGORY","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#TELEMETRY_CATEGORY","start":7,"end":25},{"name":"TELEMETRY_CATEGORY","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#TELEMETRY_CATEGORY","start":39,"end":57}]}},{"kind":"interface","name":"ITelemetryDimensions","members":[{"kind":"field","name":"dimension1","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension2","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension3","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension4","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension5","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension6","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension7","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension8","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension9","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension10","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension11","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension12","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension13","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension14","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension15","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension16","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension17","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension18","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension19","type":{"text":"string | undefined"}},{"kind":"field","name":"dimension20","type":{"text":"string | undefined"}}]},{"kind":"interface","name":"ITelemetryMetrics","members":[{"kind":"field","name":"metric1","type":{"text":"number | undefined"}},{"kind":"field","name":"metric2","type":{"text":"number | undefined"}},{"kind":"field","name":"metric3","type":{"text":"number | undefined"}},{"kind":"field","name":"metric4","type":{"text":"number | undefined"}},{"kind":"field","name":"metric5","type":{"text":"number | undefined"}},{"kind":"field","name":"metric6","type":{"text":"number | undefined"}},{"kind":"field","name":"metric7","type":{"text":"number | undefined"}},{"kind":"field","name":"metric8","type":{"text":"number | undefined"}},{"kind":"field","name":"metric9","type":{"text":"number | undefined"}},{"kind":"field","name":"metric10","type":{"text":"number | undefined"}},{"kind":"field","name":"metric11","type":{"text":"number | undefined"}},{"kind":"field","name":"metric12","type":{"text":"number | undefined"}},{"kind":"field","name":"metric13","type":{"text":"number | undefined"}},{"kind":"field","name":"metric14","type":{"text":"number | undefined"}},{"kind":"field","name":"metric15","type":{"text":"number | undefined"}},{"kind":"field","name":"metric16","type":{"text":"number | undefined"}},{"kind":"field","name":"metric17","type":{"text":"number | undefined"}},{"kind":"field","name":"metric18","type":{"text":"number | undefined"}},{"kind":"field","name":"metric19","type":{"text":"number | undefined"}},{"kind":"field","name":"metric20","type":{"text":"number | undefined"}}]},{"kind":"interface","name":"ITelemetrySession","members":[{"kind":"field","name":"instance","type":{"text":"Telemetry | undefined","references":[{"name":"Telemetry","package":"@esri/telemetry","start":0,"end":9}]}},{"kind":"field","name":"logEvent","type":{"text":"(options: {\n category: string;\n action: string;\n label?: string;\n details?: string;\n dimensions?: string[];\n metrics?: number[];\n}) => void"}},{"kind":"field","name":"enabled","type":{"text":"boolean"}}]},{"kind":"interface","name":"ITelemetryOptions","members":[{"kind":"field","name":"name","type":{"text":"string"}},{"kind":"field","name":"version","type":{"text":"string"}},{"kind":"field","name":"dev","type":{"text":"IAmazonTelemetryOptions | undefined","references":[{"name":"IAmazonTelemetryOptions","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IAmazonTelemetryOptions","start":0,"end":23}]}},{"kind":"field","name":"prod","type":{"text":"IAmazonTelemetryOptions | undefined","references":[{"name":"IAmazonTelemetryOptions","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IAmazonTelemetryOptions","start":0,"end":23}]}},{"kind":"field","name":"qa","type":{"text":"IAmazonTelemetryOptions | undefined","references":[{"name":"IAmazonTelemetryOptions","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IAmazonTelemetryOptions","start":0,"end":23}]}}]},{"kind":"interface","name":"IAmazonTelemetryOptions","members":[{"kind":"field","name":"amazon","type":{"text":"{\n userPoolID: string;\n app: { id: string; };\n}"}}]},{"kind":"interface","name":"IAppConfig","members":[{"kind":"field","name":"agolPortalUrl","type":{"text":"string"}},{"kind":"field","name":"anonAgolSession","type":{"text":"UserSession | undefined","references":[{"name":"UserSession","package":"@esri/solution-common","start":0,"end":11}]}},{"kind":"field","name":"authentication","type":{"text":"Auth | undefined","references":[{"name":"Auth","module":"utils/Auth","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/Auth/#Auth","start":0,"end":4}]}},{"kind":"field","name":"agoBasedEnterpriseSolutionsGroupId","type":{"text":"string"}},{"kind":"field","name":"appId","type":{"text":"string"}},{"kind":"field","name":"diagramKey","type":{"text":"string"}},{"kind":"field","name":"isEnterprise","type":{"text":"boolean"}},{"kind":"field","name":"languageDirection","type":{"text":"\"ltr\" | \"rtl\" | undefined"}},{"kind":"field","name":"languageResource","type":{"text":"string | undefined"}},{"kind":"field","name":"locale","type":{"text":"string"}},{"kind":"field","name":"orgUrl","type":{"text":"string"}},{"kind":"field","name":"page","type":{"text":"IAppPage | undefined","references":[{"name":"IAppPage","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IAppPage","start":0,"end":8}]}},{"kind":"field","name":"portalURL","type":{"text":"string"}},{"kind":"field","name":"primarySolutionsGroupId","type":{"text":"string"}},{"kind":"field","name":"userSession","type":{"text":"UserSession | undefined","references":[{"name":"UserSession","package":"@esri/solution-common","start":0,"end":11}]}},{"kind":"field","name":"allCards","type":{"text":"ISolutionInfoCard[]","references":[{"name":"ISolutionInfoCard","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"telemetrySession","type":{"text":"ITelemetrySession | undefined","references":[{"name":"ITelemetrySession","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ITelemetrySession","start":0,"end":17}]}},{"kind":"field","name":"measurementIds","type":{"text":"string[] | undefined"}},{"kind":"field","name":"cookiesFirstUseVar","type":{"text":"string | undefined"}},{"kind":"field","name":"trackingEnabled","type":{"text":"boolean | undefined"}},{"kind":"field","name":"forceTrackingEnv","type":{"text":"TEnvironments | \"\" | undefined","references":[{"name":"TEnvironments","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#TEnvironments","start":0,"end":13}]}},{"kind":"field","name":"telemetry","type":{"text":"ITelemetryOptions | undefined","references":[{"name":"ITelemetryOptions","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ITelemetryOptions","start":0,"end":17}]}},{"kind":"field","name":"v1SolutionId","type":{"text":"string | undefined"}},{"kind":"field","name":"queryParams","type":{"text":"IQueryParams | undefined","references":[{"name":"IQueryParams","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IQueryParams","start":0,"end":12}]}}]},{"kind":"interface","name":"IAppPage","members":[{"kind":"field","name":"pageType","type":{"text":"DeployAppTab","references":[{"name":"DeployAppTab","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}]}},{"kind":"field","name":"solutionTitleOrId","type":{"text":"string | undefined"}}]},{"kind":"interface","name":"IAppPageInit","members":[{"kind":"field","name":"page","type":{"text":"IAppPage","references":[{"name":"IAppPage","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IAppPage","start":0,"end":8}]}},{"kind":"field","name":"v1SolutionId","type":{"text":"string | undefined"}},{"kind":"field","name":"queryParams","type":{"text":"IQueryParams","references":[{"name":"IQueryParams","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#IQueryParams","start":0,"end":12}]}}]},{"kind":"interface","name":"IQueryParams","members":[{"kind":"field","name":"domain","type":{"text":"string | null"}},{"kind":"field","name":"industry","type":{"text":"string | null"}},{"kind":"field","name":"locale","type":{"text":"string"}},{"kind":"field","name":"offerType","type":{"text":"string | null"}},{"kind":"field","name":"searchTerm","type":{"text":"string | null"}},{"kind":"field","name":"sortField","type":{"text":"string | null"}},{"kind":"field","name":"signInParam","type":{"text":"string | null"}},{"kind":"field","name":"filter","type":{"text":"string | null"}}]},{"kind":"variable","name":"EDeploymentsTypeFilter","type":{"text":"{\n MINE: string;\n ORG: string;\n}"}},{"kind":"variable","name":"EOfferType","type":{"text":"{\n BOTH: string;\n NEW: string;\n SUGGESTED: string;\n}"}},{"kind":"variable","name":"ESortField","type":{"text":"{\n NEW: string;\n NUMVIEWS: string;\n RELEVANCE: string;\n SUGGESTED: string;\n TITLE: string;\n UPDATED: string;\n}"}},{"kind":"variable","name":"ESignInParam","type":{"text":"{\n DEPLOY: string;\n AIOPEN: string;\n}"}},{"kind":"interface","name":"IQuickLink","members":[{"kind":"field","name":"icon","type":{"text":"Icon[\"icon\"]","references":[{"name":"Icon","module":"components/calcite-icon","package":"@esri/calcite-components","start":0,"end":4}]}},{"kind":"field","name":"label","type":{"text":"string"}},{"kind":"field","name":"url","type":{"text":"string"}}]},{"kind":"interface","name":"INavTab","members":[{"kind":"field","name":"tabType","type":{"text":"DeployAppTab","references":[{"name":"DeployAppTab","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#DeployAppTab","start":0,"end":12}]}},{"kind":"field","name":"card","type":{"text":"ISolutionInfoCard | undefined","references":[{"name":"ISolutionInfoCard","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}}]},{"kind":"interface","name":"IDeployCard","members":[{"kind":"field","name":"card","type":{"text":"ISolutionInfoCard","references":[{"name":"ISolutionInfoCard","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/utils/interfaces/#ISolutionInfoCard","start":0,"end":17}]}},{"kind":"field","name":"cardRef","type":{"text":"SolutionDeployedCard | undefined","references":[{"name":"SolutionDeployedCard","module":"components/solution-deployed-card","viewUrl":"https://developers.arcgis.com/javascript/latest/references/solutions-components/components/solution-deployed-card/#SolutionDeployedCard","start":0,"end":20}]}}]},{"kind":"interface","name":"IDeployingCarouselMessage","members":[{"kind":"field","name":"message","type":{"text":"string"}},{"kind":"field","name":"url","type":{"text":"string | undefined"}},{"kind":"field","name":"icon","type":{"text":"Icon[\"icon\"] | undefined","references":[{"name":"Icon","module":"components/calcite-icon","package":"@esri/calcite-components","start":0,"end":4}]}}]},{"kind":"interface","name":"IOrgSettings","members":[{"kind":"field","name":"aiAssistantsEnabled","type":{"text":"boolean | undefined"}},{"kind":"field","name":"blockBetaApps","type":{"text":"boolean | undefined"}},{"kind":"field","name":"colocateCompute","type":{"text":"boolean | undefined"}},{"kind":"field","name":"searchArcGISOnlineEnabled","type":{"text":"boolean | undefined"}}]},{"kind":"interface","name":"ResourceCard","members":[{"kind":"field","name":"icon","type":{"text":"string | undefined"}},{"kind":"field","name":"meridianIcon","type":{"text":"string | undefined"}},{"kind":"field","name":"heading","type":{"text":"string"}},{"kind":"field","name":"description","type":{"text":"string"}},{"kind":"field","name":"url","type":{"text":"string | undefined"}},{"kind":"field","name":"headingEn","type":{"text":"string | undefined"}},{"kind":"field","name":"sectionHeadingEn","type":{"text":"string | undefined"}}]},{"kind":"interface","name":"IDeployCardFetchFailed","members":[{"kind":"field","name":"title","type":{"text":"string"}},{"kind":"field","name":"message","type":{"text":"string"}}]}]}]}