@wavelengthusaf/web-components 1.16.0 → 1.17.0

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.
@@ -517,6 +517,7 @@ declare class BaseWavelengthInput extends HTMLElement {
517
517
  static formAssociated: boolean;
518
518
  static get observedAttributes(): string[];
519
519
  constructor();
520
+ private _ensureInputType;
520
521
  connectedCallback(): void;
521
522
  disconnectedCallback(): void;
522
523
  private _startBackgroundObserver;
@@ -941,6 +942,23 @@ declare class WavelengthDatePicker extends HTMLElement {
941
942
  updateInput(): void;
942
943
  }
943
944
 
945
+ declare class WavelengthNotificationPanel extends HTMLElement {
946
+ static get observedAttributes(): string[];
947
+ private panelButton;
948
+ private panel;
949
+ private signOutButton;
950
+ private accountButton;
951
+ private markAsRead;
952
+ onMarkAsRead?: () => void;
953
+ onSignOut?: () => void;
954
+ accountLink?: string;
955
+ constructor();
956
+ connectedCallback(): void;
957
+ attributeChangedCallback(): void;
958
+ updateComponent(): void;
959
+ updatePanelVisibility(): void;
960
+ }
961
+
944
962
  interface Option {
945
963
  label: string;
946
964
  value: string;
@@ -1362,10 +1380,1448 @@ declare class WavelengthMultiSelectAutocomplete extends WavelengthMultiSelectAut
1362
1380
  declare class WavelengthNavBar extends HTMLElement {
1363
1381
  static get observedAttributes(): string[];
1364
1382
  constructor();
1383
+ disconnectedCallback(): void;
1384
+ private _handleHomeClick;
1365
1385
  connectedCallback(): void;
1366
- attributeChangedCallback(): void;
1386
+ attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
1367
1387
  private applyStyles;
1368
1388
  private renderTabs;
1369
1389
  }
1370
1390
 
1371
- export { BaseWavelengthInput, BaseWavelengthMultiSelectAutocomplete, SampleComponent, WavelengthBanner, WavelengthButton, WavelengthDatePicker, WavelengthForm, WavelengthInput, WavelengthMultiSelectAutocomplete, WavelengthNavBar, WavelengthProgressBar, WavelengthTitleBar };
1391
+ interface ChildDataTableData {
1392
+ id: string;
1393
+ [key: string]: any;
1394
+ dropdown?: HTMLElement | string | any;
1395
+ }
1396
+
1397
+ interface ChildDataTableColumn {
1398
+ key: string;
1399
+ title: string;
1400
+ renderCell?: (item: ChildDataTableData) => string;
1401
+ cellLocation?: "bottom" | "top" | "relative";
1402
+ sort?: boolean;
1403
+ }
1404
+
1405
+ declare class ChildDataTable extends HTMLElement {
1406
+ static get observedAttributes(): string[];
1407
+ private _columns;
1408
+ private _data;
1409
+ private _sortOrder;
1410
+ private _sortKey;
1411
+ private _dropdownArrowLocation;
1412
+ private _sortIcon;
1413
+ private _dropdownButtonIcon;
1414
+ private shadow;
1415
+ constructor();
1416
+ connectedCallback(): void;
1417
+ attributeChangedCallback(name: string, oldValue: any, newValue: any): void;
1418
+ renderColumns(newValue: string | ChildDataTableColumn[]): void;
1419
+ renderRows(newValue: any): void;
1420
+ handleDropdownClick(): void;
1421
+ handleSortClick(): void;
1422
+ handleActionClick(): void;
1423
+ handleSort(sortKey: keyof ChildDataTableData): void;
1424
+ set setColumns(columns: ChildDataTableColumn[]);
1425
+ set setData(data: ChildDataTableData[]);
1426
+ set setDropdownArrowLocation(location: typeof this._dropdownArrowLocation);
1427
+ set setSortIcon(icon: typeof this._sortIcon);
1428
+ set setDropdownButtonIcon(icon: typeof this._sortIcon);
1429
+ }
1430
+
1431
+ interface CheckboxElements {
1432
+ box: HTMLSpanElement;
1433
+ input: HTMLInputElement;
1434
+ label: HTMLLabelElement;
1435
+ }
1436
+ declare class BaseWavelengthCheckbox extends HTMLElement {
1437
+ private elements;
1438
+ private initialized;
1439
+ private attributeHandlers;
1440
+ static get observedAttributes(): string[];
1441
+ constructor();
1442
+ connectedCallback(): void;
1443
+ attributeChangedCallback(): void;
1444
+ styleCheckbox(): void;
1445
+ }
1446
+ declare const WavelengthCheckbox_base: {
1447
+ new (...args: any[]): {
1448
+ readonly _mixinStyleTagId: "custom-mixin-styles";
1449
+ set customStyles(styleObject: {
1450
+ [key: string]: string | number | {
1451
+ [key: string]: string | number;
1452
+ };
1453
+ });
1454
+ toKebabCase(str: string): string;
1455
+ createCssPropertiesString(ruleObject: {
1456
+ [key: string]: string | number;
1457
+ }): string;
1458
+ generateAndApplyStyles(styleObject: {
1459
+ [key: string]: string | number | {
1460
+ [key: string]: string | number;
1461
+ };
1462
+ }): void;
1463
+ accessKey: string;
1464
+ readonly accessKeyLabel: string;
1465
+ autocapitalize: string;
1466
+ autocorrect: boolean;
1467
+ dir: string;
1468
+ draggable: boolean;
1469
+ hidden: boolean;
1470
+ inert: boolean;
1471
+ innerText: string;
1472
+ lang: string;
1473
+ readonly offsetHeight: number;
1474
+ readonly offsetLeft: number;
1475
+ readonly offsetParent: Element | null;
1476
+ readonly offsetTop: number;
1477
+ readonly offsetWidth: number;
1478
+ outerText: string;
1479
+ popover: string | null;
1480
+ spellcheck: boolean;
1481
+ title: string;
1482
+ translate: boolean;
1483
+ writingSuggestions: string;
1484
+ attachInternals(): ElementInternals;
1485
+ click(): void;
1486
+ hidePopover(): void;
1487
+ showPopover(): void;
1488
+ togglePopover(options?: boolean): boolean;
1489
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
1490
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
1491
+ removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
1492
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
1493
+ readonly attributes: NamedNodeMap;
1494
+ get classList(): DOMTokenList;
1495
+ set classList(value: string);
1496
+ className: string;
1497
+ readonly clientHeight: number;
1498
+ readonly clientLeft: number;
1499
+ readonly clientTop: number;
1500
+ readonly clientWidth: number;
1501
+ readonly currentCSSZoom: number;
1502
+ id: string;
1503
+ innerHTML: string;
1504
+ readonly localName: string;
1505
+ readonly namespaceURI: string | null;
1506
+ onfullscreenchange: ((this: Element, ev: Event) => any) | null;
1507
+ onfullscreenerror: ((this: Element, ev: Event) => any) | null;
1508
+ outerHTML: string;
1509
+ readonly ownerDocument: Document;
1510
+ get part(): DOMTokenList;
1511
+ set part(value: string);
1512
+ readonly prefix: string | null;
1513
+ readonly scrollHeight: number;
1514
+ scrollLeft: number;
1515
+ scrollTop: number;
1516
+ readonly scrollWidth: number;
1517
+ readonly shadowRoot: ShadowRoot | null;
1518
+ slot: string;
1519
+ readonly tagName: string;
1520
+ attachShadow(init: ShadowRootInit): ShadowRoot;
1521
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
1522
+ closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
1523
+ closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
1524
+ closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
1525
+ closest<E extends Element = Element>(selectors: string): E | null;
1526
+ computedStyleMap(): StylePropertyMapReadOnly;
1527
+ getAttribute(qualifiedName: string): string | null;
1528
+ getAttributeNS(namespace: string | null, localName: string): string | null;
1529
+ getAttributeNames(): string[];
1530
+ getAttributeNode(qualifiedName: string): Attr | null;
1531
+ getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
1532
+ getBoundingClientRect(): DOMRect;
1533
+ getClientRects(): DOMRectList;
1534
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
1535
+ getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
1536
+ getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
1537
+ getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
1538
+ getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
1539
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
1540
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
1541
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
1542
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
1543
+ getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
1544
+ getHTML(options?: GetHTMLOptions): string;
1545
+ hasAttribute(qualifiedName: string): boolean;
1546
+ hasAttributeNS(namespace: string | null, localName: string): boolean;
1547
+ hasAttributes(): boolean;
1548
+ hasPointerCapture(pointerId: number): boolean;
1549
+ insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
1550
+ insertAdjacentHTML(position: InsertPosition, string: string): void;
1551
+ insertAdjacentText(where: InsertPosition, data: string): void;
1552
+ matches(selectors: string): boolean;
1553
+ releasePointerCapture(pointerId: number): void;
1554
+ removeAttribute(qualifiedName: string): void;
1555
+ removeAttributeNS(namespace: string | null, localName: string): void;
1556
+ removeAttributeNode(attr: Attr): Attr;
1557
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
1558
+ requestPointerLock(options?: PointerLockOptions): Promise<void>;
1559
+ scroll(options?: ScrollToOptions): void;
1560
+ scroll(x: number, y: number): void;
1561
+ scrollBy(options?: ScrollToOptions): void;
1562
+ scrollBy(x: number, y: number): void;
1563
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
1564
+ scrollTo(options?: ScrollToOptions): void;
1565
+ scrollTo(x: number, y: number): void;
1566
+ setAttribute(qualifiedName: string, value: string): void;
1567
+ setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
1568
+ setAttributeNode(attr: Attr): Attr | null;
1569
+ setAttributeNodeNS(attr: Attr): Attr | null;
1570
+ setHTMLUnsafe(html: string): void;
1571
+ setPointerCapture(pointerId: number): void;
1572
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
1573
+ webkitMatchesSelector(selectors: string): boolean;
1574
+ get textContent(): string;
1575
+ set textContent(value: string | null);
1576
+ readonly baseURI: string;
1577
+ readonly childNodes: NodeListOf<ChildNode>;
1578
+ readonly firstChild: ChildNode | null;
1579
+ readonly isConnected: boolean;
1580
+ readonly lastChild: ChildNode | null;
1581
+ readonly nextSibling: ChildNode | null;
1582
+ readonly nodeName: string;
1583
+ readonly nodeType: number;
1584
+ nodeValue: string | null;
1585
+ readonly parentElement: HTMLElement | null;
1586
+ readonly parentNode: ParentNode | null;
1587
+ readonly previousSibling: ChildNode | null;
1588
+ appendChild<T extends Node>(node: T): T;
1589
+ cloneNode(subtree?: boolean): Node;
1590
+ compareDocumentPosition(other: Node): number;
1591
+ contains(other: Node | null): boolean;
1592
+ getRootNode(options?: GetRootNodeOptions): Node;
1593
+ hasChildNodes(): boolean;
1594
+ insertBefore<T extends Node>(node: T, child: Node | null): T;
1595
+ isDefaultNamespace(namespace: string | null): boolean;
1596
+ isEqualNode(otherNode: Node | null): boolean;
1597
+ isSameNode(otherNode: Node | null): boolean;
1598
+ lookupNamespaceURI(prefix: string | null): string | null;
1599
+ lookupPrefix(namespace: string | null): string | null;
1600
+ normalize(): void;
1601
+ removeChild<T extends Node>(child: T): T;
1602
+ replaceChild<T extends Node>(node: Node, child: T): T;
1603
+ readonly ELEMENT_NODE: 1;
1604
+ readonly ATTRIBUTE_NODE: 2;
1605
+ readonly TEXT_NODE: 3;
1606
+ readonly CDATA_SECTION_NODE: 4;
1607
+ readonly ENTITY_REFERENCE_NODE: 5;
1608
+ readonly ENTITY_NODE: 6;
1609
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
1610
+ readonly COMMENT_NODE: 8;
1611
+ readonly DOCUMENT_NODE: 9;
1612
+ readonly DOCUMENT_TYPE_NODE: 10;
1613
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
1614
+ readonly NOTATION_NODE: 12;
1615
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
1616
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
1617
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
1618
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
1619
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
1620
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
1621
+ dispatchEvent(event: Event): boolean;
1622
+ ariaActiveDescendantElement: Element | null;
1623
+ ariaAtomic: string | null;
1624
+ ariaAutoComplete: string | null;
1625
+ ariaBrailleLabel: string | null;
1626
+ ariaBrailleRoleDescription: string | null;
1627
+ ariaBusy: string | null;
1628
+ ariaChecked: string | null;
1629
+ ariaColCount: string | null;
1630
+ ariaColIndex: string | null;
1631
+ ariaColIndexText: string | null;
1632
+ ariaColSpan: string | null;
1633
+ ariaControlsElements: ReadonlyArray<Element> | null;
1634
+ ariaCurrent: string | null;
1635
+ ariaDescribedByElements: ReadonlyArray<Element> | null;
1636
+ ariaDescription: string | null;
1637
+ ariaDetailsElements: ReadonlyArray<Element> | null;
1638
+ ariaDisabled: string | null;
1639
+ ariaErrorMessageElements: ReadonlyArray<Element> | null;
1640
+ ariaExpanded: string | null;
1641
+ ariaFlowToElements: ReadonlyArray<Element> | null;
1642
+ ariaHasPopup: string | null;
1643
+ ariaHidden: string | null;
1644
+ ariaInvalid: string | null;
1645
+ ariaKeyShortcuts: string | null;
1646
+ ariaLabel: string | null;
1647
+ ariaLabelledByElements: ReadonlyArray<Element> | null;
1648
+ ariaLevel: string | null;
1649
+ ariaLive: string | null;
1650
+ ariaModal: string | null;
1651
+ ariaMultiLine: string | null;
1652
+ ariaMultiSelectable: string | null;
1653
+ ariaOrientation: string | null;
1654
+ ariaOwnsElements: ReadonlyArray<Element> | null;
1655
+ ariaPlaceholder: string | null;
1656
+ ariaPosInSet: string | null;
1657
+ ariaPressed: string | null;
1658
+ ariaReadOnly: string | null;
1659
+ ariaRelevant: string | null;
1660
+ ariaRequired: string | null;
1661
+ ariaRoleDescription: string | null;
1662
+ ariaRowCount: string | null;
1663
+ ariaRowIndex: string | null;
1664
+ ariaRowIndexText: string | null;
1665
+ ariaRowSpan: string | null;
1666
+ ariaSelected: string | null;
1667
+ ariaSetSize: string | null;
1668
+ ariaSort: string | null;
1669
+ ariaValueMax: string | null;
1670
+ ariaValueMin: string | null;
1671
+ ariaValueNow: string | null;
1672
+ ariaValueText: string | null;
1673
+ role: string | null;
1674
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
1675
+ getAnimations(options?: GetAnimationsOptions): Animation[];
1676
+ after(...nodes: (Node | string)[]): void;
1677
+ before(...nodes: (Node | string)[]): void;
1678
+ remove(): void;
1679
+ replaceWith(...nodes: (Node | string)[]): void;
1680
+ readonly nextElementSibling: Element | null;
1681
+ readonly previousElementSibling: Element | null;
1682
+ readonly childElementCount: number;
1683
+ readonly children: HTMLCollection;
1684
+ readonly firstElementChild: Element | null;
1685
+ readonly lastElementChild: Element | null;
1686
+ append(...nodes: (Node | string)[]): void;
1687
+ prepend(...nodes: (Node | string)[]): void;
1688
+ querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
1689
+ querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
1690
+ querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
1691
+ querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
1692
+ querySelector<E extends Element = Element>(selectors: string): E | null;
1693
+ querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
1694
+ querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
1695
+ querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
1696
+ querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
1697
+ querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
1698
+ replaceChildren(...nodes: (Node | string)[]): void;
1699
+ readonly assignedSlot: HTMLSlotElement | null;
1700
+ readonly attributeStyleMap: StylePropertyMap;
1701
+ get style(): CSSStyleDeclaration;
1702
+ set style(cssText: string);
1703
+ contentEditable: string;
1704
+ enterKeyHint: string;
1705
+ inputMode: string;
1706
+ readonly isContentEditable: boolean;
1707
+ onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
1708
+ onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1709
+ onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1710
+ onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1711
+ onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1712
+ onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1713
+ onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
1714
+ onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1715
+ onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
1716
+ onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
1717
+ oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1718
+ oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1719
+ oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1720
+ onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1721
+ onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1722
+ onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1723
+ oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1724
+ oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1725
+ oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1726
+ oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
1727
+ oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1728
+ oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
1729
+ ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1730
+ ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1731
+ ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1732
+ ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1733
+ ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1734
+ ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1735
+ ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1736
+ ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1737
+ ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1738
+ onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1739
+ onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1740
+ onerror: OnErrorEventHandler;
1741
+ onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
1742
+ onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
1743
+ ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1744
+ oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1745
+ oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1746
+ onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1747
+ onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1748
+ onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1749
+ onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1750
+ onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1751
+ onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1752
+ onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1753
+ onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1754
+ onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1755
+ onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1756
+ onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1757
+ onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1758
+ onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1759
+ onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1760
+ onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1761
+ onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
1762
+ onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1763
+ onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1764
+ onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1765
+ onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1766
+ onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1767
+ onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1768
+ onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1769
+ onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1770
+ onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1771
+ onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1772
+ onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1773
+ onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1774
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
1775
+ onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1776
+ onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1777
+ onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
1778
+ onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1779
+ onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1780
+ onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
1781
+ onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1782
+ onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1783
+ onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1784
+ onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1785
+ onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1786
+ onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1787
+ onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1788
+ onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
1789
+ onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1790
+ ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1791
+ ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
1792
+ ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1793
+ ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1794
+ ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1795
+ ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1796
+ ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1797
+ ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1798
+ ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1799
+ ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1800
+ onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1801
+ onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1802
+ onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1803
+ onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1804
+ onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1805
+ onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1806
+ onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
1807
+ autofocus: boolean;
1808
+ readonly dataset: DOMStringMap;
1809
+ nonce?: string;
1810
+ tabIndex: number;
1811
+ blur(): void;
1812
+ focus(options?: FocusOptions): void;
1813
+ };
1814
+ } & typeof BaseWavelengthCheckbox;
1815
+ declare class WavelengthCheckbox extends WavelengthCheckbox_base {
1816
+ }
1817
+
1818
+ declare class WavelengthFileDropZone extends HTMLElement {
1819
+ private dropZone;
1820
+ private fileInput;
1821
+ private dragText;
1822
+ private icon;
1823
+ private errorMessage;
1824
+ static get observedAttributes(): string[];
1825
+ attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
1826
+ constructor();
1827
+ private initializeElements;
1828
+ connectedCallback(): void;
1829
+ private updateFromAttributes;
1830
+ private setupEventListeners;
1831
+ private validateAndProcessFiles;
1832
+ private formatFileSize;
1833
+ }
1834
+
1835
+ interface WavelengthConfirmationModalElements {
1836
+ backdrop: HTMLDivElement;
1837
+ dialog: HTMLDialogElement;
1838
+ titleElement: HTMLParagraphElement;
1839
+ contentElement: HTMLParagraphElement;
1840
+ cancelButton: HTMLElement;
1841
+ submitButton: HTMLElement;
1842
+ }
1843
+ declare class WavelengthConfirmationModal extends HTMLElement {
1844
+ private elements;
1845
+ static get observedAttributes(): string[];
1846
+ constructor();
1847
+ connectedCallback(): void;
1848
+ attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
1849
+ updateContent(): void;
1850
+ updateStyling(): void;
1851
+ }
1852
+
1853
+ declare class WavelengthDropdown extends HTMLElement {
1854
+ private dropdownBox;
1855
+ private dropdownField;
1856
+ private selectedSpan;
1857
+ private arrow;
1858
+ private optionsList;
1859
+ private _options;
1860
+ private _selectedValue;
1861
+ constructor();
1862
+ static get observedAttributes(): string[];
1863
+ connectedCallback(): void;
1864
+ private _positionDropdown;
1865
+ attributeChangedCallback(): void;
1866
+ private parseOptionsAttribute;
1867
+ private setDefaultValue;
1868
+ private renderOptions;
1869
+ private setSelected;
1870
+ private applyStyles;
1871
+ get value(): string | null;
1872
+ set value(val: string);
1873
+ get color(): string;
1874
+ set color(col: string);
1875
+ }
1876
+
1877
+ declare class WavelengthSnackbar extends HTMLElement {
1878
+ static get observedAttributes(): string[];
1879
+ private snackbarElement;
1880
+ constructor();
1881
+ connectedCallback(): void;
1882
+ attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
1883
+ private render;
1884
+ show(message?: string, duration?: number): void;
1885
+ }
1886
+
1887
+ declare class BasePlaneTrail extends HTMLElement {
1888
+ static get observedAttributes(): string[];
1889
+ private shadow;
1890
+ private plane;
1891
+ private outer;
1892
+ private inner;
1893
+ constructor();
1894
+ connectedCallback(): void;
1895
+ attributeChangedCallback(): void;
1896
+ updateComponent(): void;
1897
+ }
1898
+ declare const WavelengthPlaneTrail_base: {
1899
+ new (...args: any[]): {
1900
+ readonly _mixinStyleTagId: "custom-mixin-styles";
1901
+ set customStyles(styleObject: {
1902
+ [key: string]: string | number | {
1903
+ [key: string]: string | number;
1904
+ };
1905
+ });
1906
+ toKebabCase(str: string): string;
1907
+ createCssPropertiesString(ruleObject: {
1908
+ [key: string]: string | number;
1909
+ }): string;
1910
+ generateAndApplyStyles(styleObject: {
1911
+ [key: string]: string | number | {
1912
+ [key: string]: string | number;
1913
+ };
1914
+ }): void;
1915
+ accessKey: string;
1916
+ readonly accessKeyLabel: string;
1917
+ autocapitalize: string;
1918
+ autocorrect: boolean;
1919
+ dir: string;
1920
+ draggable: boolean;
1921
+ hidden: boolean;
1922
+ inert: boolean;
1923
+ innerText: string;
1924
+ lang: string;
1925
+ readonly offsetHeight: number;
1926
+ readonly offsetLeft: number;
1927
+ readonly offsetParent: Element | null;
1928
+ readonly offsetTop: number;
1929
+ readonly offsetWidth: number;
1930
+ outerText: string;
1931
+ popover: string | null;
1932
+ spellcheck: boolean;
1933
+ title: string;
1934
+ translate: boolean;
1935
+ writingSuggestions: string;
1936
+ attachInternals(): ElementInternals;
1937
+ click(): void;
1938
+ hidePopover(): void;
1939
+ showPopover(): void;
1940
+ togglePopover(options?: boolean): boolean;
1941
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
1942
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
1943
+ removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
1944
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
1945
+ readonly attributes: NamedNodeMap;
1946
+ get classList(): DOMTokenList;
1947
+ set classList(value: string);
1948
+ className: string;
1949
+ readonly clientHeight: number;
1950
+ readonly clientLeft: number;
1951
+ readonly clientTop: number;
1952
+ readonly clientWidth: number;
1953
+ readonly currentCSSZoom: number;
1954
+ id: string;
1955
+ innerHTML: string;
1956
+ readonly localName: string;
1957
+ readonly namespaceURI: string | null;
1958
+ onfullscreenchange: ((this: Element, ev: Event) => any) | null;
1959
+ onfullscreenerror: ((this: Element, ev: Event) => any) | null;
1960
+ outerHTML: string;
1961
+ readonly ownerDocument: Document;
1962
+ get part(): DOMTokenList;
1963
+ set part(value: string);
1964
+ readonly prefix: string | null;
1965
+ readonly scrollHeight: number;
1966
+ scrollLeft: number;
1967
+ scrollTop: number;
1968
+ readonly scrollWidth: number;
1969
+ readonly shadowRoot: ShadowRoot | null;
1970
+ slot: string;
1971
+ readonly tagName: string;
1972
+ attachShadow(init: ShadowRootInit): ShadowRoot;
1973
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
1974
+ closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
1975
+ closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
1976
+ closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
1977
+ closest<E extends Element = Element>(selectors: string): E | null;
1978
+ computedStyleMap(): StylePropertyMapReadOnly;
1979
+ getAttribute(qualifiedName: string): string | null;
1980
+ getAttributeNS(namespace: string | null, localName: string): string | null;
1981
+ getAttributeNames(): string[];
1982
+ getAttributeNode(qualifiedName: string): Attr | null;
1983
+ getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
1984
+ getBoundingClientRect(): DOMRect;
1985
+ getClientRects(): DOMRectList;
1986
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
1987
+ getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
1988
+ getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
1989
+ getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
1990
+ getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
1991
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
1992
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
1993
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
1994
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
1995
+ getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
1996
+ getHTML(options?: GetHTMLOptions): string;
1997
+ hasAttribute(qualifiedName: string): boolean;
1998
+ hasAttributeNS(namespace: string | null, localName: string): boolean;
1999
+ hasAttributes(): boolean;
2000
+ hasPointerCapture(pointerId: number): boolean;
2001
+ insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
2002
+ insertAdjacentHTML(position: InsertPosition, string: string): void;
2003
+ insertAdjacentText(where: InsertPosition, data: string): void;
2004
+ matches(selectors: string): boolean;
2005
+ releasePointerCapture(pointerId: number): void;
2006
+ removeAttribute(qualifiedName: string): void;
2007
+ removeAttributeNS(namespace: string | null, localName: string): void;
2008
+ removeAttributeNode(attr: Attr): Attr;
2009
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
2010
+ requestPointerLock(options?: PointerLockOptions): Promise<void>;
2011
+ scroll(options?: ScrollToOptions): void;
2012
+ scroll(x: number, y: number): void;
2013
+ scrollBy(options?: ScrollToOptions): void;
2014
+ scrollBy(x: number, y: number): void;
2015
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
2016
+ scrollTo(options?: ScrollToOptions): void;
2017
+ scrollTo(x: number, y: number): void;
2018
+ setAttribute(qualifiedName: string, value: string): void;
2019
+ setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
2020
+ setAttributeNode(attr: Attr): Attr | null;
2021
+ setAttributeNodeNS(attr: Attr): Attr | null;
2022
+ setHTMLUnsafe(html: string): void;
2023
+ setPointerCapture(pointerId: number): void;
2024
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
2025
+ webkitMatchesSelector(selectors: string): boolean;
2026
+ get textContent(): string;
2027
+ set textContent(value: string | null);
2028
+ readonly baseURI: string;
2029
+ readonly childNodes: NodeListOf<ChildNode>;
2030
+ readonly firstChild: ChildNode | null;
2031
+ readonly isConnected: boolean;
2032
+ readonly lastChild: ChildNode | null;
2033
+ readonly nextSibling: ChildNode | null;
2034
+ readonly nodeName: string;
2035
+ readonly nodeType: number;
2036
+ nodeValue: string | null;
2037
+ readonly parentElement: HTMLElement | null;
2038
+ readonly parentNode: ParentNode | null;
2039
+ readonly previousSibling: ChildNode | null;
2040
+ appendChild<T extends Node>(node: T): T;
2041
+ cloneNode(subtree?: boolean): Node;
2042
+ compareDocumentPosition(other: Node): number;
2043
+ contains(other: Node | null): boolean;
2044
+ getRootNode(options?: GetRootNodeOptions): Node;
2045
+ hasChildNodes(): boolean;
2046
+ insertBefore<T extends Node>(node: T, child: Node | null): T;
2047
+ isDefaultNamespace(namespace: string | null): boolean;
2048
+ isEqualNode(otherNode: Node | null): boolean;
2049
+ isSameNode(otherNode: Node | null): boolean;
2050
+ lookupNamespaceURI(prefix: string | null): string | null;
2051
+ lookupPrefix(namespace: string | null): string | null;
2052
+ normalize(): void;
2053
+ removeChild<T extends Node>(child: T): T;
2054
+ replaceChild<T extends Node>(node: Node, child: T): T;
2055
+ readonly ELEMENT_NODE: 1;
2056
+ readonly ATTRIBUTE_NODE: 2;
2057
+ readonly TEXT_NODE: 3;
2058
+ readonly CDATA_SECTION_NODE: 4;
2059
+ readonly ENTITY_REFERENCE_NODE: 5;
2060
+ readonly ENTITY_NODE: 6;
2061
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
2062
+ readonly COMMENT_NODE: 8;
2063
+ readonly DOCUMENT_NODE: 9;
2064
+ readonly DOCUMENT_TYPE_NODE: 10;
2065
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
2066
+ readonly NOTATION_NODE: 12;
2067
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
2068
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
2069
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
2070
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
2071
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
2072
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
2073
+ dispatchEvent(event: Event): boolean;
2074
+ ariaActiveDescendantElement: Element | null;
2075
+ ariaAtomic: string | null;
2076
+ ariaAutoComplete: string | null;
2077
+ ariaBrailleLabel: string | null;
2078
+ ariaBrailleRoleDescription: string | null;
2079
+ ariaBusy: string | null;
2080
+ ariaChecked: string | null;
2081
+ ariaColCount: string | null;
2082
+ ariaColIndex: string | null;
2083
+ ariaColIndexText: string | null;
2084
+ ariaColSpan: string | null;
2085
+ ariaControlsElements: ReadonlyArray<Element> | null;
2086
+ ariaCurrent: string | null;
2087
+ ariaDescribedByElements: ReadonlyArray<Element> | null;
2088
+ ariaDescription: string | null;
2089
+ ariaDetailsElements: ReadonlyArray<Element> | null;
2090
+ ariaDisabled: string | null;
2091
+ ariaErrorMessageElements: ReadonlyArray<Element> | null;
2092
+ ariaExpanded: string | null;
2093
+ ariaFlowToElements: ReadonlyArray<Element> | null;
2094
+ ariaHasPopup: string | null;
2095
+ ariaHidden: string | null;
2096
+ ariaInvalid: string | null;
2097
+ ariaKeyShortcuts: string | null;
2098
+ ariaLabel: string | null;
2099
+ ariaLabelledByElements: ReadonlyArray<Element> | null;
2100
+ ariaLevel: string | null;
2101
+ ariaLive: string | null;
2102
+ ariaModal: string | null;
2103
+ ariaMultiLine: string | null;
2104
+ ariaMultiSelectable: string | null;
2105
+ ariaOrientation: string | null;
2106
+ ariaOwnsElements: ReadonlyArray<Element> | null;
2107
+ ariaPlaceholder: string | null;
2108
+ ariaPosInSet: string | null;
2109
+ ariaPressed: string | null;
2110
+ ariaReadOnly: string | null;
2111
+ ariaRelevant: string | null;
2112
+ ariaRequired: string | null;
2113
+ ariaRoleDescription: string | null;
2114
+ ariaRowCount: string | null;
2115
+ ariaRowIndex: string | null;
2116
+ ariaRowIndexText: string | null;
2117
+ ariaRowSpan: string | null;
2118
+ ariaSelected: string | null;
2119
+ ariaSetSize: string | null;
2120
+ ariaSort: string | null;
2121
+ ariaValueMax: string | null;
2122
+ ariaValueMin: string | null;
2123
+ ariaValueNow: string | null;
2124
+ ariaValueText: string | null;
2125
+ role: string | null;
2126
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
2127
+ getAnimations(options?: GetAnimationsOptions): Animation[];
2128
+ after(...nodes: (Node | string)[]): void;
2129
+ before(...nodes: (Node | string)[]): void;
2130
+ remove(): void;
2131
+ replaceWith(...nodes: (Node | string)[]): void;
2132
+ readonly nextElementSibling: Element | null;
2133
+ readonly previousElementSibling: Element | null;
2134
+ readonly childElementCount: number;
2135
+ readonly children: HTMLCollection;
2136
+ readonly firstElementChild: Element | null;
2137
+ readonly lastElementChild: Element | null;
2138
+ append(...nodes: (Node | string)[]): void;
2139
+ prepend(...nodes: (Node | string)[]): void;
2140
+ querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
2141
+ querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
2142
+ querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
2143
+ querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
2144
+ querySelector<E extends Element = Element>(selectors: string): E | null;
2145
+ querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
2146
+ querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
2147
+ querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
2148
+ querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
2149
+ querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
2150
+ replaceChildren(...nodes: (Node | string)[]): void;
2151
+ readonly assignedSlot: HTMLSlotElement | null;
2152
+ readonly attributeStyleMap: StylePropertyMap;
2153
+ get style(): CSSStyleDeclaration;
2154
+ set style(cssText: string);
2155
+ contentEditable: string;
2156
+ enterKeyHint: string;
2157
+ inputMode: string;
2158
+ readonly isContentEditable: boolean;
2159
+ onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
2160
+ onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
2161
+ onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
2162
+ onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
2163
+ onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
2164
+ onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2165
+ onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
2166
+ onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2167
+ onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
2168
+ onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
2169
+ oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2170
+ oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2171
+ oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2172
+ onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2173
+ onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2174
+ onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2175
+ oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2176
+ oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2177
+ oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2178
+ oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
2179
+ oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2180
+ oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
2181
+ ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2182
+ ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2183
+ ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2184
+ ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2185
+ ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2186
+ ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2187
+ ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2188
+ ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2189
+ ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2190
+ onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2191
+ onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2192
+ onerror: OnErrorEventHandler;
2193
+ onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
2194
+ onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
2195
+ ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2196
+ oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2197
+ oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2198
+ onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
2199
+ onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
2200
+ onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
2201
+ onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2202
+ onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2203
+ onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2204
+ onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2205
+ onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2206
+ onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2207
+ onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2208
+ onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2209
+ onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2210
+ onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2211
+ onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2212
+ onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2213
+ onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
2214
+ onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2215
+ onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2216
+ onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2217
+ onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2218
+ onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2219
+ onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2220
+ onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2221
+ onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2222
+ onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2223
+ onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2224
+ onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2225
+ onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2226
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
2227
+ onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2228
+ onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2229
+ onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
2230
+ onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2231
+ onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2232
+ onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
2233
+ onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2234
+ onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2235
+ onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2236
+ onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2237
+ onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2238
+ onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2239
+ onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2240
+ onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
2241
+ onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2242
+ ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2243
+ ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
2244
+ ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
2245
+ ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
2246
+ ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
2247
+ ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
2248
+ ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
2249
+ ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
2250
+ ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
2251
+ ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
2252
+ onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2253
+ onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2254
+ onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2255
+ onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2256
+ onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2257
+ onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2258
+ onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
2259
+ autofocus: boolean;
2260
+ readonly dataset: DOMStringMap;
2261
+ nonce?: string;
2262
+ tabIndex: number;
2263
+ blur(): void;
2264
+ focus(options?: FocusOptions): void;
2265
+ };
2266
+ } & typeof BasePlaneTrail;
2267
+ declare class WavelengthPlaneTrail extends WavelengthPlaneTrail_base {
2268
+ }
2269
+
2270
+ declare class WavelengthManyPlanes extends HTMLElement {
2271
+ static get observedAttributes(): string[];
2272
+ private shadow;
2273
+ constructor();
2274
+ connectedCallback(): void;
2275
+ attributeChangedCallback(): void;
2276
+ updateComponent(): void;
2277
+ createPlane(opacity: string, color: string, flipped: boolean): SVGSVGElement;
2278
+ }
2279
+
2280
+ declare class WavelengthToolTip extends HTMLElement {
2281
+ static get observedAttributes(): string[];
2282
+ private shadow;
2283
+ constructor();
2284
+ connectedCallback(): void;
2285
+ attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
2286
+ updateDirection(direction: string): void;
2287
+ updateComponent(): void;
2288
+ }
2289
+
2290
+ declare class WavelengthMenu extends HTMLElement {
2291
+ static get observedAttributes(): string[];
2292
+ private _items;
2293
+ private _selectedIndex;
2294
+ private _selectedId;
2295
+ private _flexContainer;
2296
+ private _shadow;
2297
+ constructor();
2298
+ get items(): any[];
2299
+ set items(value: any[]);
2300
+ get value(): any;
2301
+ connectedCallback(): void;
2302
+ disconnectedCallback(): void;
2303
+ attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
2304
+ render(): void;
2305
+ private _syncStyles;
2306
+ private _renderItems;
2307
+ private _onItemClick;
2308
+ private _dispatchSelectEvent;
2309
+ }
2310
+
2311
+ declare class WavelengthPagination extends HTMLElement {
2312
+ static get observedAttributes(): string[];
2313
+ private shadow;
2314
+ private styleAttributes;
2315
+ private renderAttributes;
2316
+ constructor();
2317
+ get totalPages(): number;
2318
+ set totalPages(val: number);
2319
+ get currentPage(): number;
2320
+ set currentPage(val: number);
2321
+ connectedCallback(): void;
2322
+ attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
2323
+ private _clearAndRender;
2324
+ private _renderByVariant;
2325
+ private _renderBasic;
2326
+ private _getIcons;
2327
+ private _renderCommon;
2328
+ private _createButton;
2329
+ private _changePage;
2330
+ private _syncStyles;
2331
+ }
2332
+
2333
+ declare class WavelengthSearch extends HTMLElement {
2334
+ static get observedAttributes(): string[];
2335
+ private shadow;
2336
+ private input;
2337
+ private dropdown;
2338
+ private inputContainer;
2339
+ private animatedPlaceholder;
2340
+ private options;
2341
+ private highlightedIndex;
2342
+ private styleAttributes;
2343
+ constructor();
2344
+ connectedCallback(): void;
2345
+ disconnectedCallback(): void;
2346
+ attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
2347
+ private handleSearch;
2348
+ private renderDropdown;
2349
+ private selectOption;
2350
+ get value(): string;
2351
+ set value(val: string);
2352
+ get optionsList(): string[] | undefined;
2353
+ set optionsList(val: string[] | undefined);
2354
+ private _syncStyles;
2355
+ private handleFocusIn;
2356
+ private handleFocusOut;
2357
+ private searchTimeout;
2358
+ private handleInputChange;
2359
+ private handleKeydown;
2360
+ private updateHighlight;
2361
+ private handleSearchIconClick;
2362
+ private handleDocumentClick;
2363
+ }
2364
+
2365
+ declare class WavelengthSwitch extends HTMLElement {
2366
+ static get observedAttributes(): string[];
2367
+ private shadow;
2368
+ private input;
2369
+ private labelElement;
2370
+ private flexContainer;
2371
+ constructor();
2372
+ get checked(): boolean;
2373
+ set checked(value: boolean);
2374
+ connectedCallback(): void;
2375
+ attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
2376
+ disconnectedCallback(): void;
2377
+ private _updateChecked;
2378
+ private _updateLabel;
2379
+ private _updateDisabled;
2380
+ private _updateColor;
2381
+ private _updateLabelFont;
2382
+ private _updateValue;
2383
+ private _updateLabelPlacement;
2384
+ }
2385
+
2386
+ declare class WavelengthBadge extends HTMLElement {
2387
+ static styleAttributes: string[];
2388
+ static get observedAttributes(): string[];
2389
+ private rootElement;
2390
+ private badgeSlot;
2391
+ private shadow;
2392
+ constructor();
2393
+ connectedCallback(): void;
2394
+ private _handleClick;
2395
+ private _handleSlotChange;
2396
+ attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
2397
+ disconnectedCallback(): void;
2398
+ private _syncStyles;
2399
+ private _render;
2400
+ private _updateLengthClass;
2401
+ private _updateSlotText;
2402
+ private _updateA11y;
2403
+ }
2404
+
2405
+ declare class WavelengthDialog extends HTMLElement {
2406
+ get dialogTitle(): string | null;
2407
+ set dialogTitle(value: string | null);
2408
+ get leftBtnLabel(): string | null;
2409
+ set leftBtnLabel(value: string | null);
2410
+ get rightBtnLabel(): string | null;
2411
+ set rightBtnLabel(value: string | null);
2412
+ get open(): boolean;
2413
+ set open(value: boolean);
2414
+ get overlay(): boolean;
2415
+ set overlay(value: boolean);
2416
+ private static readonly styleAttributes;
2417
+ static get observedAttributes(): string[];
2418
+ private shadow;
2419
+ private elements;
2420
+ private _onLeftClick;
2421
+ private _onRightClick;
2422
+ constructor();
2423
+ connectedCallback(): void;
2424
+ disconnectedCallback(): void;
2425
+ attributeChangedCallback(name: string): void;
2426
+ private _syncDialog;
2427
+ private _emit;
2428
+ private _syncStyles;
2429
+ private _syncContent;
2430
+ }
2431
+
2432
+ declare const WavelengthPopUpMenu_base: {
2433
+ new (...args: any[]): {
2434
+ readonly _mixinStyleTagId: "custom-mixin-styles";
2435
+ set customStyles(styleObject: {
2436
+ [key: string]: string | number | {
2437
+ [key: string]: string | number;
2438
+ };
2439
+ });
2440
+ toKebabCase(str: string): string;
2441
+ createCssPropertiesString(ruleObject: {
2442
+ [key: string]: string | number;
2443
+ }): string;
2444
+ generateAndApplyStyles(styleObject: {
2445
+ [key: string]: string | number | {
2446
+ [key: string]: string | number;
2447
+ };
2448
+ }): void;
2449
+ accessKey: string;
2450
+ readonly accessKeyLabel: string;
2451
+ autocapitalize: string;
2452
+ autocorrect: boolean;
2453
+ dir: string;
2454
+ draggable: boolean;
2455
+ hidden: boolean;
2456
+ inert: boolean;
2457
+ innerText: string;
2458
+ lang: string;
2459
+ readonly offsetHeight: number;
2460
+ readonly offsetLeft: number;
2461
+ readonly offsetParent: Element | null;
2462
+ readonly offsetTop: number;
2463
+ readonly offsetWidth: number;
2464
+ outerText: string;
2465
+ popover: string | null;
2466
+ spellcheck: boolean;
2467
+ title: string;
2468
+ translate: boolean;
2469
+ writingSuggestions: string;
2470
+ attachInternals(): ElementInternals;
2471
+ click(): void;
2472
+ hidePopover(): void;
2473
+ showPopover(): void;
2474
+ togglePopover(options?: boolean): boolean;
2475
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2476
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
2477
+ removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
2478
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
2479
+ readonly attributes: NamedNodeMap;
2480
+ get classList(): DOMTokenList;
2481
+ set classList(value: string);
2482
+ className: string;
2483
+ readonly clientHeight: number;
2484
+ readonly clientLeft: number;
2485
+ readonly clientTop: number;
2486
+ readonly clientWidth: number;
2487
+ readonly currentCSSZoom: number;
2488
+ id: string;
2489
+ innerHTML: string;
2490
+ readonly localName: string;
2491
+ readonly namespaceURI: string | null;
2492
+ onfullscreenchange: ((this: Element, ev: Event) => any) | null;
2493
+ onfullscreenerror: ((this: Element, ev: Event) => any) | null;
2494
+ outerHTML: string;
2495
+ readonly ownerDocument: Document;
2496
+ get part(): DOMTokenList;
2497
+ set part(value: string);
2498
+ readonly prefix: string | null;
2499
+ readonly scrollHeight: number;
2500
+ scrollLeft: number;
2501
+ scrollTop: number;
2502
+ readonly scrollWidth: number;
2503
+ readonly shadowRoot: ShadowRoot | null;
2504
+ slot: string;
2505
+ readonly tagName: string;
2506
+ attachShadow(init: ShadowRootInit): ShadowRoot;
2507
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
2508
+ closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
2509
+ closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
2510
+ closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
2511
+ closest<E extends Element = Element>(selectors: string): E | null;
2512
+ computedStyleMap(): StylePropertyMapReadOnly;
2513
+ getAttribute(qualifiedName: string): string | null;
2514
+ getAttributeNS(namespace: string | null, localName: string): string | null;
2515
+ getAttributeNames(): string[];
2516
+ getAttributeNode(qualifiedName: string): Attr | null;
2517
+ getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
2518
+ getBoundingClientRect(): DOMRect;
2519
+ getClientRects(): DOMRectList;
2520
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
2521
+ getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
2522
+ getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
2523
+ getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
2524
+ getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
2525
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
2526
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
2527
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
2528
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
2529
+ getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
2530
+ getHTML(options?: GetHTMLOptions): string;
2531
+ hasAttribute(qualifiedName: string): boolean;
2532
+ hasAttributeNS(namespace: string | null, localName: string): boolean;
2533
+ hasAttributes(): boolean;
2534
+ hasPointerCapture(pointerId: number): boolean;
2535
+ insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
2536
+ insertAdjacentHTML(position: InsertPosition, string: string): void;
2537
+ insertAdjacentText(where: InsertPosition, data: string): void;
2538
+ matches(selectors: string): boolean;
2539
+ releasePointerCapture(pointerId: number): void;
2540
+ removeAttribute(qualifiedName: string): void;
2541
+ removeAttributeNS(namespace: string | null, localName: string): void;
2542
+ removeAttributeNode(attr: Attr): Attr;
2543
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
2544
+ requestPointerLock(options?: PointerLockOptions): Promise<void>;
2545
+ scroll(options?: ScrollToOptions): void;
2546
+ scroll(x: number, y: number): void;
2547
+ scrollBy(options?: ScrollToOptions): void;
2548
+ scrollBy(x: number, y: number): void;
2549
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
2550
+ scrollTo(options?: ScrollToOptions): void;
2551
+ scrollTo(x: number, y: number): void;
2552
+ setAttribute(qualifiedName: string, value: string): void;
2553
+ setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
2554
+ setAttributeNode(attr: Attr): Attr | null;
2555
+ setAttributeNodeNS(attr: Attr): Attr | null;
2556
+ setHTMLUnsafe(html: string): void;
2557
+ setPointerCapture(pointerId: number): void;
2558
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
2559
+ webkitMatchesSelector(selectors: string): boolean;
2560
+ get textContent(): string;
2561
+ set textContent(value: string | null);
2562
+ readonly baseURI: string;
2563
+ readonly childNodes: NodeListOf<ChildNode>;
2564
+ readonly firstChild: ChildNode | null;
2565
+ readonly isConnected: boolean;
2566
+ readonly lastChild: ChildNode | null;
2567
+ readonly nextSibling: ChildNode | null;
2568
+ readonly nodeName: string;
2569
+ readonly nodeType: number;
2570
+ nodeValue: string | null;
2571
+ readonly parentElement: HTMLElement | null;
2572
+ readonly parentNode: ParentNode | null;
2573
+ readonly previousSibling: ChildNode | null;
2574
+ appendChild<T extends Node>(node: T): T;
2575
+ cloneNode(subtree?: boolean): Node;
2576
+ compareDocumentPosition(other: Node): number;
2577
+ contains(other: Node | null): boolean;
2578
+ getRootNode(options?: GetRootNodeOptions): Node;
2579
+ hasChildNodes(): boolean;
2580
+ insertBefore<T extends Node>(node: T, child: Node | null): T;
2581
+ isDefaultNamespace(namespace: string | null): boolean;
2582
+ isEqualNode(otherNode: Node | null): boolean;
2583
+ isSameNode(otherNode: Node | null): boolean;
2584
+ lookupNamespaceURI(prefix: string | null): string | null;
2585
+ lookupPrefix(namespace: string | null): string | null;
2586
+ normalize(): void;
2587
+ removeChild<T extends Node>(child: T): T;
2588
+ replaceChild<T extends Node>(node: Node, child: T): T;
2589
+ readonly ELEMENT_NODE: 1;
2590
+ readonly ATTRIBUTE_NODE: 2;
2591
+ readonly TEXT_NODE: 3;
2592
+ readonly CDATA_SECTION_NODE: 4;
2593
+ readonly ENTITY_REFERENCE_NODE: 5;
2594
+ readonly ENTITY_NODE: 6;
2595
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
2596
+ readonly COMMENT_NODE: 8;
2597
+ readonly DOCUMENT_NODE: 9;
2598
+ readonly DOCUMENT_TYPE_NODE: 10;
2599
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
2600
+ readonly NOTATION_NODE: 12;
2601
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
2602
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
2603
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
2604
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
2605
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
2606
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
2607
+ dispatchEvent(event: Event): boolean;
2608
+ ariaActiveDescendantElement: Element | null;
2609
+ ariaAtomic: string | null;
2610
+ ariaAutoComplete: string | null;
2611
+ ariaBrailleLabel: string | null;
2612
+ ariaBrailleRoleDescription: string | null;
2613
+ ariaBusy: string | null;
2614
+ ariaChecked: string | null;
2615
+ ariaColCount: string | null;
2616
+ ariaColIndex: string | null;
2617
+ ariaColIndexText: string | null;
2618
+ ariaColSpan: string | null;
2619
+ ariaControlsElements: ReadonlyArray<Element> | null;
2620
+ ariaCurrent: string | null;
2621
+ ariaDescribedByElements: ReadonlyArray<Element> | null;
2622
+ ariaDescription: string | null;
2623
+ ariaDetailsElements: ReadonlyArray<Element> | null;
2624
+ ariaDisabled: string | null;
2625
+ ariaErrorMessageElements: ReadonlyArray<Element> | null;
2626
+ ariaExpanded: string | null;
2627
+ ariaFlowToElements: ReadonlyArray<Element> | null;
2628
+ ariaHasPopup: string | null;
2629
+ ariaHidden: string | null;
2630
+ ariaInvalid: string | null;
2631
+ ariaKeyShortcuts: string | null;
2632
+ ariaLabel: string | null;
2633
+ ariaLabelledByElements: ReadonlyArray<Element> | null;
2634
+ ariaLevel: string | null;
2635
+ ariaLive: string | null;
2636
+ ariaModal: string | null;
2637
+ ariaMultiLine: string | null;
2638
+ ariaMultiSelectable: string | null;
2639
+ ariaOrientation: string | null;
2640
+ ariaOwnsElements: ReadonlyArray<Element> | null;
2641
+ ariaPlaceholder: string | null;
2642
+ ariaPosInSet: string | null;
2643
+ ariaPressed: string | null;
2644
+ ariaReadOnly: string | null;
2645
+ ariaRelevant: string | null;
2646
+ ariaRequired: string | null;
2647
+ ariaRoleDescription: string | null;
2648
+ ariaRowCount: string | null;
2649
+ ariaRowIndex: string | null;
2650
+ ariaRowIndexText: string | null;
2651
+ ariaRowSpan: string | null;
2652
+ ariaSelected: string | null;
2653
+ ariaSetSize: string | null;
2654
+ ariaSort: string | null;
2655
+ ariaValueMax: string | null;
2656
+ ariaValueMin: string | null;
2657
+ ariaValueNow: string | null;
2658
+ ariaValueText: string | null;
2659
+ role: string | null;
2660
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
2661
+ getAnimations(options?: GetAnimationsOptions): Animation[];
2662
+ after(...nodes: (Node | string)[]): void;
2663
+ before(...nodes: (Node | string)[]): void;
2664
+ remove(): void;
2665
+ replaceWith(...nodes: (Node | string)[]): void;
2666
+ readonly nextElementSibling: Element | null;
2667
+ readonly previousElementSibling: Element | null;
2668
+ readonly childElementCount: number;
2669
+ readonly children: HTMLCollection;
2670
+ readonly firstElementChild: Element | null;
2671
+ readonly lastElementChild: Element | null;
2672
+ append(...nodes: (Node | string)[]): void;
2673
+ prepend(...nodes: (Node | string)[]): void;
2674
+ querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
2675
+ querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
2676
+ querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
2677
+ querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
2678
+ querySelector<E extends Element = Element>(selectors: string): E | null;
2679
+ querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
2680
+ querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
2681
+ querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
2682
+ querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
2683
+ querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
2684
+ replaceChildren(...nodes: (Node | string)[]): void;
2685
+ readonly assignedSlot: HTMLSlotElement | null;
2686
+ readonly attributeStyleMap: StylePropertyMap;
2687
+ get style(): CSSStyleDeclaration;
2688
+ set style(cssText: string);
2689
+ contentEditable: string;
2690
+ enterKeyHint: string;
2691
+ inputMode: string;
2692
+ readonly isContentEditable: boolean;
2693
+ onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
2694
+ onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
2695
+ onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
2696
+ onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
2697
+ onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
2698
+ onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2699
+ onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
2700
+ onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2701
+ onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
2702
+ onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
2703
+ oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2704
+ oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2705
+ oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2706
+ onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2707
+ onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2708
+ onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2709
+ oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2710
+ oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2711
+ oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2712
+ oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
2713
+ oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2714
+ oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
2715
+ ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2716
+ ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2717
+ ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2718
+ ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2719
+ ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2720
+ ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2721
+ ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2722
+ ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2723
+ ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2724
+ onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2725
+ onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2726
+ onerror: OnErrorEventHandler;
2727
+ onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
2728
+ onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
2729
+ ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2730
+ oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2731
+ oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2732
+ onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
2733
+ onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
2734
+ onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
2735
+ onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2736
+ onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2737
+ onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2738
+ onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2739
+ onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2740
+ onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2741
+ onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2742
+ onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2743
+ onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2744
+ onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2745
+ onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2746
+ onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2747
+ onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
2748
+ onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2749
+ onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2750
+ onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2751
+ onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2752
+ onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2753
+ onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2754
+ onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2755
+ onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2756
+ onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2757
+ onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2758
+ onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2759
+ onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2760
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
2761
+ onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2762
+ onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2763
+ onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
2764
+ onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2765
+ onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2766
+ onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
2767
+ onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2768
+ onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2769
+ onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2770
+ onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2771
+ onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2772
+ onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2773
+ onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2774
+ onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
2775
+ onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2776
+ ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2777
+ ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
2778
+ ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
2779
+ ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
2780
+ ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
2781
+ ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
2782
+ ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
2783
+ ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
2784
+ ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
2785
+ ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
2786
+ onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2787
+ onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2788
+ onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2789
+ onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2790
+ onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2791
+ onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2792
+ onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
2793
+ autofocus: boolean;
2794
+ readonly dataset: DOMStringMap;
2795
+ nonce?: string;
2796
+ tabIndex: number;
2797
+ blur(): void;
2798
+ focus(options?: FocusOptions): void;
2799
+ };
2800
+ } & {
2801
+ new (): HTMLElement;
2802
+ prototype: HTMLElement;
2803
+ };
2804
+ declare class WavelengthPopUpMenu extends WavelengthPopUpMenu_base {
2805
+ static get observedAttributes(): string[];
2806
+ private shadow;
2807
+ private _menu;
2808
+ private _badge;
2809
+ private _isOpen;
2810
+ constructor();
2811
+ connectedCallback(): void;
2812
+ attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
2813
+ disconnectedCallback(): void;
2814
+ private _px;
2815
+ private _syncMenuItems;
2816
+ get isOpen(): boolean;
2817
+ set isOpen(open: boolean);
2818
+ private _cleanup;
2819
+ private _setupTrigger;
2820
+ private _handleBadgeClick;
2821
+ private _handleMouseEnter;
2822
+ private _handleMouseLeave;
2823
+ private _handleMenuSelect;
2824
+ private _handleOutsideClick;
2825
+ }
2826
+
2827
+ export { BaseWavelengthInput, BaseWavelengthMultiSelectAutocomplete, type CheckboxElements, ChildDataTable, SampleComponent, WavelengthBadge, WavelengthBanner, WavelengthButton, WavelengthCheckbox, WavelengthConfirmationModal, type WavelengthConfirmationModalElements, WavelengthDatePicker, WavelengthDialog, WavelengthDropdown, WavelengthFileDropZone, WavelengthForm, WavelengthInput, WavelengthManyPlanes, WavelengthMenu, WavelengthMultiSelectAutocomplete, WavelengthNavBar, WavelengthNotificationPanel, WavelengthPagination, WavelengthPlaneTrail, WavelengthPopUpMenu, WavelengthProgressBar, WavelengthSearch, WavelengthSnackbar, WavelengthSwitch, WavelengthTitleBar, WavelengthToolTip };