@wavelengthusaf/web-components 1.4.1 → 1.4.2
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 +295 -1
- package/dist/cjs/index.d.cts +388 -1
- package/dist/esm/index.d.ts +388 -1
- package/dist/esm/index.js +294 -0
- package/package.json +1 -1
package/dist/cjs/index.d.cts
CHANGED
|
@@ -1425,6 +1425,393 @@ declare class ChildDataTable extends HTMLElement {
|
|
|
1425
1425
|
set setDropdownButtonIcon(icon: typeof this._sortIcon);
|
|
1426
1426
|
}
|
|
1427
1427
|
|
|
1428
|
+
interface CheckboxElements {
|
|
1429
|
+
box: HTMLSpanElement;
|
|
1430
|
+
input: HTMLInputElement;
|
|
1431
|
+
label: HTMLLabelElement;
|
|
1432
|
+
}
|
|
1433
|
+
declare class BaseWavelengthCheckbox extends HTMLElement {
|
|
1434
|
+
private elements;
|
|
1435
|
+
private initialized;
|
|
1436
|
+
private attributeHandlers;
|
|
1437
|
+
static get observedAttributes(): string[];
|
|
1438
|
+
constructor();
|
|
1439
|
+
connectedCallback(): void;
|
|
1440
|
+
attributeChangedCallback(): void;
|
|
1441
|
+
styleCheckbox(): void;
|
|
1442
|
+
}
|
|
1443
|
+
declare const WavelengthCheckbox_base: {
|
|
1444
|
+
new (...args: any[]): {
|
|
1445
|
+
readonly _mixinStyleTagId: "custom-mixin-styles";
|
|
1446
|
+
set customStyles(styleObject: {
|
|
1447
|
+
[key: string]: string | number | {
|
|
1448
|
+
[key: string]: string | number;
|
|
1449
|
+
};
|
|
1450
|
+
});
|
|
1451
|
+
toKebabCase(str: string): string;
|
|
1452
|
+
createCssPropertiesString(ruleObject: {
|
|
1453
|
+
[key: string]: string | number;
|
|
1454
|
+
}): string;
|
|
1455
|
+
generateAndApplyStyles(styleObject: {
|
|
1456
|
+
[key: string]: string | number | {
|
|
1457
|
+
[key: string]: string | number;
|
|
1458
|
+
};
|
|
1459
|
+
}): void;
|
|
1460
|
+
accessKey: string;
|
|
1461
|
+
readonly accessKeyLabel: string;
|
|
1462
|
+
autocapitalize: string;
|
|
1463
|
+
autocorrect: boolean;
|
|
1464
|
+
dir: string;
|
|
1465
|
+
draggable: boolean;
|
|
1466
|
+
hidden: boolean;
|
|
1467
|
+
inert: boolean;
|
|
1468
|
+
innerText: string;
|
|
1469
|
+
lang: string;
|
|
1470
|
+
readonly offsetHeight: number;
|
|
1471
|
+
readonly offsetLeft: number;
|
|
1472
|
+
readonly offsetParent: Element | null;
|
|
1473
|
+
readonly offsetTop: number;
|
|
1474
|
+
readonly offsetWidth: number;
|
|
1475
|
+
outerText: string;
|
|
1476
|
+
popover: string | null;
|
|
1477
|
+
spellcheck: boolean;
|
|
1478
|
+
title: string;
|
|
1479
|
+
translate: boolean;
|
|
1480
|
+
writingSuggestions: string;
|
|
1481
|
+
attachInternals(): ElementInternals;
|
|
1482
|
+
click(): void;
|
|
1483
|
+
hidePopover(): void;
|
|
1484
|
+
showPopover(): void;
|
|
1485
|
+
togglePopover(options?: boolean): boolean;
|
|
1486
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1487
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1488
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1489
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
1490
|
+
readonly attributes: NamedNodeMap;
|
|
1491
|
+
get classList(): DOMTokenList;
|
|
1492
|
+
set classList(value: string);
|
|
1493
|
+
className: string;
|
|
1494
|
+
readonly clientHeight: number;
|
|
1495
|
+
readonly clientLeft: number;
|
|
1496
|
+
readonly clientTop: number;
|
|
1497
|
+
readonly clientWidth: number;
|
|
1498
|
+
readonly currentCSSZoom: number;
|
|
1499
|
+
id: string;
|
|
1500
|
+
innerHTML: string;
|
|
1501
|
+
readonly localName: string;
|
|
1502
|
+
readonly namespaceURI: string | null;
|
|
1503
|
+
onfullscreenchange: ((this: Element, ev: Event) => any) | null;
|
|
1504
|
+
onfullscreenerror: ((this: Element, ev: Event) => any) | null;
|
|
1505
|
+
outerHTML: string;
|
|
1506
|
+
readonly ownerDocument: Document;
|
|
1507
|
+
get part(): DOMTokenList;
|
|
1508
|
+
set part(value: string);
|
|
1509
|
+
readonly prefix: string | null;
|
|
1510
|
+
readonly scrollHeight: number;
|
|
1511
|
+
scrollLeft: number;
|
|
1512
|
+
scrollTop: number;
|
|
1513
|
+
readonly scrollWidth: number;
|
|
1514
|
+
readonly shadowRoot: ShadowRoot | null;
|
|
1515
|
+
slot: string;
|
|
1516
|
+
readonly tagName: string;
|
|
1517
|
+
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
1518
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
1519
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
|
|
1520
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
|
|
1521
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
|
|
1522
|
+
closest<E extends Element = Element>(selectors: string): E | null;
|
|
1523
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
1524
|
+
getAttribute(qualifiedName: string): string | null;
|
|
1525
|
+
getAttributeNS(namespace: string | null, localName: string): string | null;
|
|
1526
|
+
getAttributeNames(): string[];
|
|
1527
|
+
getAttributeNode(qualifiedName: string): Attr | null;
|
|
1528
|
+
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
|
1529
|
+
getBoundingClientRect(): DOMRect;
|
|
1530
|
+
getClientRects(): DOMRectList;
|
|
1531
|
+
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
1532
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
1533
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
1534
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
1535
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
1536
|
+
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
1537
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
1538
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
1539
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
1540
|
+
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
1541
|
+
getHTML(options?: GetHTMLOptions): string;
|
|
1542
|
+
hasAttribute(qualifiedName: string): boolean;
|
|
1543
|
+
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
|
1544
|
+
hasAttributes(): boolean;
|
|
1545
|
+
hasPointerCapture(pointerId: number): boolean;
|
|
1546
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
1547
|
+
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
|
1548
|
+
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
1549
|
+
matches(selectors: string): boolean;
|
|
1550
|
+
releasePointerCapture(pointerId: number): void;
|
|
1551
|
+
removeAttribute(qualifiedName: string): void;
|
|
1552
|
+
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
1553
|
+
removeAttributeNode(attr: Attr): Attr;
|
|
1554
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
1555
|
+
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
|
1556
|
+
scroll(options?: ScrollToOptions): void;
|
|
1557
|
+
scroll(x: number, y: number): void;
|
|
1558
|
+
scrollBy(options?: ScrollToOptions): void;
|
|
1559
|
+
scrollBy(x: number, y: number): void;
|
|
1560
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
1561
|
+
scrollTo(options?: ScrollToOptions): void;
|
|
1562
|
+
scrollTo(x: number, y: number): void;
|
|
1563
|
+
setAttribute(qualifiedName: string, value: string): void;
|
|
1564
|
+
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
|
1565
|
+
setAttributeNode(attr: Attr): Attr | null;
|
|
1566
|
+
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
1567
|
+
setHTMLUnsafe(html: string): void;
|
|
1568
|
+
setPointerCapture(pointerId: number): void;
|
|
1569
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
1570
|
+
webkitMatchesSelector(selectors: string): boolean;
|
|
1571
|
+
get textContent(): string;
|
|
1572
|
+
set textContent(value: string | null);
|
|
1573
|
+
readonly baseURI: string;
|
|
1574
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
|
1575
|
+
readonly firstChild: ChildNode | null;
|
|
1576
|
+
readonly isConnected: boolean;
|
|
1577
|
+
readonly lastChild: ChildNode | null;
|
|
1578
|
+
readonly nextSibling: ChildNode | null;
|
|
1579
|
+
readonly nodeName: string;
|
|
1580
|
+
readonly nodeType: number;
|
|
1581
|
+
nodeValue: string | null;
|
|
1582
|
+
readonly parentElement: HTMLElement | null;
|
|
1583
|
+
readonly parentNode: ParentNode | null;
|
|
1584
|
+
readonly previousSibling: ChildNode | null;
|
|
1585
|
+
appendChild<T extends Node>(node: T): T;
|
|
1586
|
+
cloneNode(subtree?: boolean): Node;
|
|
1587
|
+
compareDocumentPosition(other: Node): number;
|
|
1588
|
+
contains(other: Node | null): boolean;
|
|
1589
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
|
1590
|
+
hasChildNodes(): boolean;
|
|
1591
|
+
insertBefore<T extends Node>(node: T, child: Node | null): T;
|
|
1592
|
+
isDefaultNamespace(namespace: string | null): boolean;
|
|
1593
|
+
isEqualNode(otherNode: Node | null): boolean;
|
|
1594
|
+
isSameNode(otherNode: Node | null): boolean;
|
|
1595
|
+
lookupNamespaceURI(prefix: string | null): string | null;
|
|
1596
|
+
lookupPrefix(namespace: string | null): string | null;
|
|
1597
|
+
normalize(): void;
|
|
1598
|
+
removeChild<T extends Node>(child: T): T;
|
|
1599
|
+
replaceChild<T extends Node>(node: Node, child: T): T;
|
|
1600
|
+
readonly ELEMENT_NODE: 1;
|
|
1601
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
1602
|
+
readonly TEXT_NODE: 3;
|
|
1603
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
1604
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
1605
|
+
readonly ENTITY_NODE: 6;
|
|
1606
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
1607
|
+
readonly COMMENT_NODE: 8;
|
|
1608
|
+
readonly DOCUMENT_NODE: 9;
|
|
1609
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
1610
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
1611
|
+
readonly NOTATION_NODE: 12;
|
|
1612
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
1613
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
1614
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
1615
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
1616
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
1617
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
1618
|
+
dispatchEvent(event: Event): boolean;
|
|
1619
|
+
ariaActiveDescendantElement: Element | null;
|
|
1620
|
+
ariaAtomic: string | null;
|
|
1621
|
+
ariaAutoComplete: string | null;
|
|
1622
|
+
ariaBrailleLabel: string | null;
|
|
1623
|
+
ariaBrailleRoleDescription: string | null;
|
|
1624
|
+
ariaBusy: string | null;
|
|
1625
|
+
ariaChecked: string | null;
|
|
1626
|
+
ariaColCount: string | null;
|
|
1627
|
+
ariaColIndex: string | null;
|
|
1628
|
+
ariaColIndexText: string | null;
|
|
1629
|
+
ariaColSpan: string | null;
|
|
1630
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
1631
|
+
ariaCurrent: string | null;
|
|
1632
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
1633
|
+
ariaDescription: string | null;
|
|
1634
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
1635
|
+
ariaDisabled: string | null;
|
|
1636
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
1637
|
+
ariaExpanded: string | null;
|
|
1638
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
1639
|
+
ariaHasPopup: string | null;
|
|
1640
|
+
ariaHidden: string | null;
|
|
1641
|
+
ariaInvalid: string | null;
|
|
1642
|
+
ariaKeyShortcuts: string | null;
|
|
1643
|
+
ariaLabel: string | null;
|
|
1644
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
1645
|
+
ariaLevel: string | null;
|
|
1646
|
+
ariaLive: string | null;
|
|
1647
|
+
ariaModal: string | null;
|
|
1648
|
+
ariaMultiLine: string | null;
|
|
1649
|
+
ariaMultiSelectable: string | null;
|
|
1650
|
+
ariaOrientation: string | null;
|
|
1651
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
1652
|
+
ariaPlaceholder: string | null;
|
|
1653
|
+
ariaPosInSet: string | null;
|
|
1654
|
+
ariaPressed: string | null;
|
|
1655
|
+
ariaReadOnly: string | null;
|
|
1656
|
+
ariaRelevant: string | null;
|
|
1657
|
+
ariaRequired: string | null;
|
|
1658
|
+
ariaRoleDescription: string | null;
|
|
1659
|
+
ariaRowCount: string | null;
|
|
1660
|
+
ariaRowIndex: string | null;
|
|
1661
|
+
ariaRowIndexText: string | null;
|
|
1662
|
+
ariaRowSpan: string | null;
|
|
1663
|
+
ariaSelected: string | null;
|
|
1664
|
+
ariaSetSize: string | null;
|
|
1665
|
+
ariaSort: string | null;
|
|
1666
|
+
ariaValueMax: string | null;
|
|
1667
|
+
ariaValueMin: string | null;
|
|
1668
|
+
ariaValueNow: string | null;
|
|
1669
|
+
ariaValueText: string | null;
|
|
1670
|
+
role: string | null;
|
|
1671
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
|
1672
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
1673
|
+
after(...nodes: (Node | string)[]): void;
|
|
1674
|
+
before(...nodes: (Node | string)[]): void;
|
|
1675
|
+
remove(): void;
|
|
1676
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
|
1677
|
+
readonly nextElementSibling: Element | null;
|
|
1678
|
+
readonly previousElementSibling: Element | null;
|
|
1679
|
+
readonly childElementCount: number;
|
|
1680
|
+
readonly children: HTMLCollection;
|
|
1681
|
+
readonly firstElementChild: Element | null;
|
|
1682
|
+
readonly lastElementChild: Element | null;
|
|
1683
|
+
append(...nodes: (Node | string)[]): void;
|
|
1684
|
+
prepend(...nodes: (Node | string)[]): void;
|
|
1685
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
1686
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
1687
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
1688
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
1689
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
|
1690
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
1691
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
1692
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
1693
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
1694
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
1695
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
|
1696
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
|
1697
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
1698
|
+
get style(): CSSStyleDeclaration;
|
|
1699
|
+
set style(cssText: string);
|
|
1700
|
+
contentEditable: string;
|
|
1701
|
+
enterKeyHint: string;
|
|
1702
|
+
inputMode: string;
|
|
1703
|
+
readonly isContentEditable: boolean;
|
|
1704
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
1705
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
1706
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
1707
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
1708
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
1709
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1710
|
+
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
1711
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1712
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
1713
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
1714
|
+
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1715
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1716
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1717
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1718
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1719
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1720
|
+
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1721
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1722
|
+
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1723
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
1724
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1725
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
1726
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
1727
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
1728
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
1729
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
1730
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
1731
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
1732
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
1733
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
1734
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1735
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1736
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1737
|
+
onerror: OnErrorEventHandler;
|
|
1738
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
1739
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
1740
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1741
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1742
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1743
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
1744
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
1745
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
1746
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1747
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1748
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1749
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1750
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1751
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
1752
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
1753
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
1754
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
1755
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
1756
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
1757
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
1758
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
1759
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1760
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1761
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1762
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1763
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1764
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1765
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1766
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1767
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1768
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1769
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1770
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1771
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
1772
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1773
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1774
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
1775
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1776
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1777
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
1778
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1779
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1780
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1781
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1782
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1783
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1784
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1785
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
1786
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1787
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1788
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
1789
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
1790
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
1791
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
1792
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
1793
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
1794
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
1795
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
1796
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
1797
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1798
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1799
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1800
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1801
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1802
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1803
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
1804
|
+
autofocus: boolean;
|
|
1805
|
+
readonly dataset: DOMStringMap;
|
|
1806
|
+
nonce?: string;
|
|
1807
|
+
tabIndex: number;
|
|
1808
|
+
blur(): void;
|
|
1809
|
+
focus(options?: FocusOptions): void;
|
|
1810
|
+
};
|
|
1811
|
+
} & typeof BaseWavelengthCheckbox;
|
|
1812
|
+
declare class WavelengthCheckbox extends WavelengthCheckbox_base {
|
|
1813
|
+
}
|
|
1814
|
+
|
|
1428
1815
|
declare class WavelengthFileDropZone extends HTMLElement {
|
|
1429
1816
|
private dropZone;
|
|
1430
1817
|
private fileInput;
|
|
@@ -1442,4 +1829,4 @@ declare class WavelengthFileDropZone extends HTMLElement {
|
|
|
1442
1829
|
private formatFileSize;
|
|
1443
1830
|
}
|
|
1444
1831
|
|
|
1445
|
-
export { BaseWavelengthInput, BaseWavelengthMultiSelectAutocomplete, ChildDataTable, SampleComponent, WavelengthBanner, WavelengthButton, WavelengthDatePicker, WavelengthFileDropZone, WavelengthForm, WavelengthInput, WavelengthMultiSelectAutocomplete, WavelengthNavBar, WavelengthNotificationPanel, WavelengthProgressBar, WavelengthTitleBar };
|
|
1832
|
+
export { BaseWavelengthInput, BaseWavelengthMultiSelectAutocomplete, type CheckboxElements, ChildDataTable, SampleComponent, WavelengthBanner, WavelengthButton, WavelengthCheckbox, WavelengthDatePicker, WavelengthFileDropZone, WavelengthForm, WavelengthInput, WavelengthMultiSelectAutocomplete, WavelengthNavBar, WavelengthNotificationPanel, WavelengthProgressBar, WavelengthTitleBar };
|