UNPKG

@arcgis/map-components

Version:
183 lines (181 loc) 7.61 kB
/// <reference types="@arcgis/core/interfaces.d.ts" /> /// <reference types="../../index.d.ts" /> import { Use } from '@arcgis/lumina/controllers'; import { default as CatalogLayerList } from '@arcgis/core/widgets/CatalogLayerList.js'; import { PublicLitElement as LitElement, TargetedEvent } from '@arcgis/lumina'; import { ArcgisReferenceElement } from '../../utils/component-utils'; declare const useCatalogLayerListWidget: (component: LitElement & Pick<CatalogLayerList, "icon" | "label" | "viewModel" | "headingLevel" | "collapsed" | "filterPlaceholder" | "filterPredicate" | "filterText" | "listItemCreatedFunction" | "minFilterItems" | "selectedItems" | "selectionMode" | "visibilityAppearance" | "catalogLayer"> & { state?: unknown; viewModel?: __esri.CatalogLayerListViewModel | undefined; closed?: boolean; icon: import('@arcgis/components-utils').Nil | string; label: import('@arcgis/components-utils').Nil | string; referenceElement?: ArcgisReferenceElement | string; position: __esri.UIPosition; arcgisReady: import('@arcgis/lumina').EventEmitter; arcgisPropertyChange: import('@arcgis/lumina').EventEmitter<{ name: string; }> | undefined; el: HTMLElement & { childElem?: HTMLElement & { ownedBy?: HTMLElement; }; view?: __esri.LinkChartView | __esri.MapView | __esri.SceneView; }; autoDestroyDisabled: boolean; destroy: () => Promise<void>; }) => CatalogLayerList; /** * The Catalog Layer List component provides a way to display and interact with CatalogLayers. * * [Read more...](https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-catalog-layer-list/) */ export declare class ArcgisCatalogLayerList extends LitElement { /** * Emitted when the component's close button is clicked. * * @since 4.33 */ readonly arcgisClose: TargetedEvent<this>; /** * If true, the component will not be destroyed automatically when it is * disconnected from the document. This is useful when you want to move the * component to a different place on the page, or temporarily hide it. If this * is set, make sure to call the [destroy](https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-catalog-layer-list/#destroy) method when you are done to * prevent memory leaks. * * @default false */ autoDestroyDisabled: boolean; /** A collection of ListItems representing the catalogLayers dynamicGroupLayer. */ get catalogItems(): __esri.Collection<__esri.ListItem>; /** * The [CatalogLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CatalogLayer.html) to display in the widget. * * @default null */ catalogLayer: nullish | __esri.CatalogLayer; /** * Indicates whether a component is closed. When `true`, the component will be hidden. * * @since 4.33 * @default false */ closed: boolean; /** * Indicates whether the widget is collapsed. * * @default false */ collapsed: boolean; /** * Placeholder text used in the filter input if [visibleElements.filter](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList.html#visibleElements) is true. * * @default "" */ filterPlaceholder: string; /** * Specifies a function to handle filtering [list items](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-ListItem.html). * * @default null */ filterPredicate: nullish | __esri.FilterPredicate; /** * The value of the filter input if [visibleElements.filter](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList.html#visibleElements) is true. * * @default "" */ filterText: string; /** * Indicates the heading level to use for the heading of the widget. * * @default 2 */ headingLevel: number; /** @default false */ hideFlow: boolean; /** @default false */ hideStatusIndicators: boolean; /** * Icon which represents the component. * Typically used when the component is controlled by another component (e.g. by the Expand component). * * @see [Calcite Icons](https://developers.arcgis.com/calcite-design-system/icons/) * @default "catalog-dataset" */ icon: string; /** * The widget's default label. * * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList.html#label) */ label: string; /** * A function that executes each time a [ListItem](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-ListItem.html) is created. * * @default null */ listItemCreatedFunction: nullish | __esri.CatalogLayerListListItemCreatedHandler; /** * The minimum number of list items required to display the visibleElements.filter input box. * * @default 10 */ minFilterItems: number; /** @default "bottom-left" */ position: __esri.UIPosition; /** * By assigning the `id` attribute of the Map or Scene component to this property, you can position a child component anywhere in the DOM while still maintaining a connection to the Map or Scene. * * @see [Associate components with a Map or Scene component](https://developers.arcgis.com/javascript/latest/programming-patterns/#associate-components-with-a-map-or-scene-component) */ referenceElement?: ArcgisReferenceElement | string; /** * A collection of selected [ListItems](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-ListItem.html) representing [catalogItems](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList.html#catalogItems) * selected by the user. * * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList.html#selectedItems) */ selectedItems: __esri.Collection<__esri.ListItem>; /** * Specifies the selection mode. * * @default "none" */ selectionMode: "single" | "multiple" | "none" | "single-persist"; /** @default false */ showCloseButton: boolean; /** @default false */ showCollapseButton: boolean; /** @default false */ showErrors: boolean; /** @default false */ showFilter: boolean; /** @default false */ showHeading: boolean; /** @default false */ showTemporaryLayerIndicators: boolean; /** * The current state of the component. * * @default "disabled" */ readonly state: "ready" | "loading" | "disabled"; /** * Determines the icons used to indicate visibility. * * @default "default" */ visibilityAppearance: "default" | "checkbox"; /** Permanently destroy the component. */ destroy(): Promise<void>; /** Emitted when the value of a property is changed. Use this to listen to changes to properties. */ readonly arcgisPropertyChange: TargetedEvent<this, { name: "state"; }>; /** Emitted when the component associated with a map or scene view is is ready to be interacted with. */ readonly arcgisReady: TargetedEvent<this, void>; /** Emitted when an action is triggered on the component. */ readonly arcgisTriggerAction: TargetedEvent<this, __esri.CatalogLayerListTriggerActionEvent>; } export {};