@arcgis/map-components
Version:
ArcGIS Map Components
40 lines (39 loc) • 2.27 kB
JavaScript
import { c as t } from "../../chunks/runtime.js";
import e from "@arcgis/core/widgets/Expand.js";
import { LitElement as s, createEvent as i, noShadowRoot as o } from "@arcgis/lumina";
import { m as a } from "../../chunks/useWidget.js";
import { css as n } from "@lit/reactive-element/css-tag.js";
/*! All material copyright Esri, All Rights Reserved, unless otherwise specified.
See https://js.arcgis.com/4.33/esri/copyright.txt for details.
v4.33.13 */
const d = n`{arcgis-expand{display:flex;pointer-events:auto}arcgis-expand>.esri-expand__content--expanded{background-color:var(--calcite-color-background)}}`, c = a(e);
class l extends s {
constructor() {
super(), this.widget = c(this), this.viewModel = this.widget.viewModel, this.autoCollapse = this.widget.autoCollapse, this.autoDestroyDisabled = !1, this.closeOnEsc = this.widget.closeOnEsc, this.collapseIcon = this.widget.collapseIcon, this.collapseTooltip = this.widget.collapseTooltip, this.content = this.widget.content, this.expandIcon = this.widget.expandIcon, this.expandTooltip = this.widget.expandTooltip, this.expanded = this.widget.expanded, this.focusTrapEnabled = this.widget.focusTrapDisabled, this.focusTrapDisabled = this.widget.focusTrapDisabled, this.group = this.widget.group, this.icon = this.widget.icon, this.iconNumber = this.widget.iconNumber, this.label = this.widget.label, this.mode = this.widget.mode, this.placement = this.widget.placement, this.position = "top-right", this.arcgisReady = i(), this.content = document.createElement("div");
}
static {
this.properties = { autoCollapse: 5, autoDestroyDisabled: 5, closeOnEsc: 5, collapseIcon: 1, collapseTooltip: 1, content: 1, expandIcon: 1, expandTooltip: 1, expanded: 7, focusTrapEnabled: 5, focusTrapDisabled: 5, group: 1, icon: 1, iconNumber: 9, label: 1, mode: 1, placement: 1, position: 1, referenceElement: 1 };
}
static {
this.shadowRootOptions = o;
}
static {
this.styles = d;
}
async collapse() {
this.widget?.collapse();
}
async destroy() {
await this.manager.destroy();
}
async expand() {
this.widget?.expand();
}
async toggle() {
this.expanded ? await this.collapse() : await this.expand();
}
}
t("arcgis-expand", l);
export {
l as ArcgisExpand
};