85 lines
2.5 KiB
TypeScript
85 lines
2.5 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2023 Google LLC
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
declare global {
|
|
interface ARIAMixin {
|
|
ariaBraileLabel: string | null;
|
|
ariaBraileRoleDescription: string | null;
|
|
ariaDescription: string | null;
|
|
ariaInvalid: string | null;
|
|
role: string | null;
|
|
}
|
|
}
|
|
type ARIAAttributeMap = {
|
|
[K in keyof ARIAMixin]: string;
|
|
};
|
|
/**
|
|
* Map of ARIAMixin properties to attributes
|
|
*/
|
|
export declare const ariaMixinAttributes: ARIAAttributeMap;
|
|
export declare const ElementInternalsShim: {
|
|
new (_host: HTMLElement): {
|
|
ariaAtomic: string;
|
|
ariaAutoComplete: string;
|
|
ariaBraileLabel: string;
|
|
ariaBraileRoleDescription: string;
|
|
ariaBusy: string;
|
|
ariaChecked: string;
|
|
ariaColCount: string;
|
|
ariaColIndex: string;
|
|
ariaColSpan: string;
|
|
ariaCurrent: string;
|
|
ariaDescription: string;
|
|
ariaDisabled: string;
|
|
ariaExpanded: string;
|
|
ariaHasPopup: string;
|
|
ariaHidden: string;
|
|
ariaInvalid: string;
|
|
ariaKeyShortcuts: string;
|
|
ariaLabel: string;
|
|
ariaLevel: string;
|
|
ariaLive: string;
|
|
ariaModal: string;
|
|
ariaMultiLine: string;
|
|
ariaMultiSelectable: string;
|
|
ariaOrientation: string;
|
|
ariaPlaceholder: string;
|
|
ariaPosInSet: string;
|
|
ariaPressed: string;
|
|
ariaReadOnly: string;
|
|
ariaRequired: string;
|
|
ariaRoleDescription: string;
|
|
ariaRowCount: string;
|
|
ariaRowIndex: string;
|
|
ariaRowSpan: string;
|
|
ariaSelected: string;
|
|
ariaSetSize: string;
|
|
ariaSort: string;
|
|
ariaValueMax: string;
|
|
ariaValueMin: string;
|
|
ariaValueNow: string;
|
|
ariaValueText: string;
|
|
role: string;
|
|
__host: HTMLElement;
|
|
readonly shadowRoot: ShadowRoot;
|
|
checkValidity(): boolean;
|
|
form: null;
|
|
labels: NodeListOf<HTMLLabelElement>;
|
|
reportValidity(): boolean;
|
|
setFormValue(): void;
|
|
setValidity(): void;
|
|
states: Set<unknown>;
|
|
validationMessage: string;
|
|
validity: ValidityState;
|
|
willValidate: boolean;
|
|
};
|
|
};
|
|
declare const ElementInternalsShimWithRealType: {
|
|
new (): ElementInternals;
|
|
prototype: ElementInternals;
|
|
};
|
|
export { ElementInternalsShimWithRealType as ElementInternals };
|
|
export declare const HYDRATE_INTERNALS_ATTR_PREFIX = "hydrate-internals-";
|
|
//# sourceMappingURL=element-internals.d.ts.map
|