@wavelengthusaf/web-components 1.15.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.
- package/dist/cjs/index.cjs +389 -4
- package/dist/cjs/index.d.cts +442 -1
- package/dist/esm/index.d.ts +442 -1
- package/dist/esm/index.js +388 -3
- package/package.json +1 -1
package/dist/esm/index.d.ts
CHANGED
|
@@ -1832,6 +1832,24 @@ declare class WavelengthFileDropZone extends HTMLElement {
|
|
|
1832
1832
|
private formatFileSize;
|
|
1833
1833
|
}
|
|
1834
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
|
+
|
|
1835
1853
|
declare class WavelengthDropdown extends HTMLElement {
|
|
1836
1854
|
private dropdownBox;
|
|
1837
1855
|
private dropdownField;
|
|
@@ -1843,6 +1861,7 @@ declare class WavelengthDropdown extends HTMLElement {
|
|
|
1843
1861
|
constructor();
|
|
1844
1862
|
static get observedAttributes(): string[];
|
|
1845
1863
|
connectedCallback(): void;
|
|
1864
|
+
private _positionDropdown;
|
|
1846
1865
|
attributeChangedCallback(): void;
|
|
1847
1866
|
private parseOptionsAttribute;
|
|
1848
1867
|
private setDefaultValue;
|
|
@@ -2383,4 +2402,426 @@ declare class WavelengthBadge extends HTMLElement {
|
|
|
2383
2402
|
private _updateA11y;
|
|
2384
2403
|
}
|
|
2385
2404
|
|
|
2386
|
-
|
|
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 };
|