accented 1.2.4 → 1.2.6
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/elements/accented-dialog.d.ts +1 -367
- package/dist/elements/accented-dialog.d.ts.map +1 -1
- package/dist/elements/accented-dialog.js.map +1 -1
- package/dist/elements/accented-trigger.d.ts +1 -366
- package/dist/elements/accented-trigger.d.ts.map +1 -1
- package/dist/elements/accented-trigger.js.map +1 -1
- package/dist/logger.d.ts.map +1 -1
- package/dist/utils/css-transforms.d.ts.map +1 -1
- package/dist/utils/css-transforms.js +0 -2
- package/dist/utils/css-transforms.js.map +1 -1
- package/dist/utils/shadow-dom-aware-mutation-observer.d.ts +1 -9
- package/dist/utils/shadow-dom-aware-mutation-observer.d.ts.map +1 -1
- package/dist/utils/shadow-dom-aware-mutation-observer.js.map +1 -1
- package/package.json +4 -4
- package/src/elements/accented-dialog.ts +1 -1
- package/src/elements/accented-trigger.ts +1 -1
- package/src/logger.ts +1 -1
- package/src/utils/css-transforms.ts +0 -2
- package/src/utils/shadow-dom-aware-mutation-observer.ts +4 -1
|
@@ -6,371 +6,5 @@ export interface AccentedDialog extends HTMLElement {
|
|
|
6
6
|
showModal: () => void;
|
|
7
7
|
open: boolean;
|
|
8
8
|
}
|
|
9
|
-
export declare const getAccentedDialog: () =>
|
|
10
|
-
new (): {
|
|
11
|
-
"__#private@#abortController": AbortController | undefined;
|
|
12
|
-
issues: Signal<Array<Issue>> | undefined;
|
|
13
|
-
element: Element | undefined;
|
|
14
|
-
open: boolean;
|
|
15
|
-
connectedCallback(): void;
|
|
16
|
-
disconnectedCallback(): void;
|
|
17
|
-
showModal(): void;
|
|
18
|
-
/**
|
|
19
|
-
* This can be removed once the closedBy attribute
|
|
20
|
-
* is available in all supported browsers:
|
|
21
|
-
* https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement/closedBy
|
|
22
|
-
*/
|
|
23
|
-
"__#private@#onDocumentClick"(event: MouseEvent): void;
|
|
24
|
-
accessKey: string;
|
|
25
|
-
readonly accessKeyLabel: string;
|
|
26
|
-
autocapitalize: string;
|
|
27
|
-
autocorrect: boolean;
|
|
28
|
-
dir: string;
|
|
29
|
-
draggable: boolean;
|
|
30
|
-
hidden: boolean;
|
|
31
|
-
inert: boolean;
|
|
32
|
-
innerText: string;
|
|
33
|
-
lang: string;
|
|
34
|
-
readonly offsetHeight: number;
|
|
35
|
-
readonly offsetLeft: number;
|
|
36
|
-
readonly offsetParent: Element | null;
|
|
37
|
-
readonly offsetTop: number;
|
|
38
|
-
readonly offsetWidth: number;
|
|
39
|
-
outerText: string;
|
|
40
|
-
popover: string | null;
|
|
41
|
-
spellcheck: boolean;
|
|
42
|
-
title: string;
|
|
43
|
-
translate: boolean;
|
|
44
|
-
writingSuggestions: string;
|
|
45
|
-
attachInternals(): ElementInternals;
|
|
46
|
-
click(): void;
|
|
47
|
-
hidePopover(): void;
|
|
48
|
-
showPopover(): void;
|
|
49
|
-
togglePopover(options?: boolean): boolean;
|
|
50
|
-
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
51
|
-
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
52
|
-
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
53
|
-
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
54
|
-
readonly attributes: NamedNodeMap;
|
|
55
|
-
get classList(): DOMTokenList;
|
|
56
|
-
set classList(value: string);
|
|
57
|
-
className: string;
|
|
58
|
-
readonly clientHeight: number;
|
|
59
|
-
readonly clientLeft: number;
|
|
60
|
-
readonly clientTop: number;
|
|
61
|
-
readonly clientWidth: number;
|
|
62
|
-
readonly currentCSSZoom: number;
|
|
63
|
-
id: string;
|
|
64
|
-
innerHTML: string;
|
|
65
|
-
readonly localName: string;
|
|
66
|
-
readonly namespaceURI: string | null;
|
|
67
|
-
onfullscreenchange: ((this: Element, ev: Event) => any) | null;
|
|
68
|
-
onfullscreenerror: ((this: Element, ev: Event) => any) | null;
|
|
69
|
-
outerHTML: string;
|
|
70
|
-
readonly ownerDocument: Document;
|
|
71
|
-
get part(): DOMTokenList;
|
|
72
|
-
set part(value: string);
|
|
73
|
-
readonly prefix: string | null;
|
|
74
|
-
readonly scrollHeight: number;
|
|
75
|
-
scrollLeft: number;
|
|
76
|
-
scrollTop: number;
|
|
77
|
-
readonly scrollWidth: number;
|
|
78
|
-
readonly shadowRoot: ShadowRoot | null;
|
|
79
|
-
slot: string;
|
|
80
|
-
readonly tagName: string;
|
|
81
|
-
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
82
|
-
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
83
|
-
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
|
|
84
|
-
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
|
|
85
|
-
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
|
|
86
|
-
closest<E extends Element = Element>(selectors: string): E | null;
|
|
87
|
-
computedStyleMap(): StylePropertyMapReadOnly;
|
|
88
|
-
getAttribute(qualifiedName: string): string | null;
|
|
89
|
-
getAttributeNS(namespace: string | null, localName: string): string | null;
|
|
90
|
-
getAttributeNames(): string[];
|
|
91
|
-
getAttributeNode(qualifiedName: string): Attr | null;
|
|
92
|
-
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
|
93
|
-
getBoundingClientRect(): DOMRect;
|
|
94
|
-
getClientRects(): DOMRectList;
|
|
95
|
-
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
96
|
-
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
97
|
-
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
98
|
-
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
99
|
-
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
100
|
-
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
101
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
102
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
103
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
104
|
-
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
105
|
-
getHTML(options?: GetHTMLOptions): string;
|
|
106
|
-
hasAttribute(qualifiedName: string): boolean;
|
|
107
|
-
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
|
108
|
-
hasAttributes(): boolean;
|
|
109
|
-
hasPointerCapture(pointerId: number): boolean;
|
|
110
|
-
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
111
|
-
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
|
112
|
-
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
113
|
-
matches(selectors: string): boolean;
|
|
114
|
-
releasePointerCapture(pointerId: number): void;
|
|
115
|
-
removeAttribute(qualifiedName: string): void;
|
|
116
|
-
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
117
|
-
removeAttributeNode(attr: Attr): Attr;
|
|
118
|
-
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
119
|
-
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
|
120
|
-
scroll(options?: ScrollToOptions): void;
|
|
121
|
-
scroll(x: number, y: number): void;
|
|
122
|
-
scrollBy(options?: ScrollToOptions): void;
|
|
123
|
-
scrollBy(x: number, y: number): void;
|
|
124
|
-
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
125
|
-
scrollTo(options?: ScrollToOptions): void;
|
|
126
|
-
scrollTo(x: number, y: number): void;
|
|
127
|
-
setAttribute(qualifiedName: string, value: string): void;
|
|
128
|
-
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
|
129
|
-
setAttributeNode(attr: Attr): Attr | null;
|
|
130
|
-
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
131
|
-
setHTMLUnsafe(html: string): void;
|
|
132
|
-
setPointerCapture(pointerId: number): void;
|
|
133
|
-
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
134
|
-
webkitMatchesSelector(selectors: string): boolean;
|
|
135
|
-
get textContent(): string;
|
|
136
|
-
set textContent(value: string | null);
|
|
137
|
-
readonly baseURI: string;
|
|
138
|
-
readonly childNodes: NodeListOf<ChildNode>;
|
|
139
|
-
readonly firstChild: ChildNode | null;
|
|
140
|
-
readonly isConnected: boolean;
|
|
141
|
-
readonly lastChild: ChildNode | null;
|
|
142
|
-
readonly nextSibling: ChildNode | null;
|
|
143
|
-
readonly nodeName: string;
|
|
144
|
-
readonly nodeType: number;
|
|
145
|
-
nodeValue: string | null;
|
|
146
|
-
readonly parentElement: HTMLElement | null;
|
|
147
|
-
readonly parentNode: ParentNode | null;
|
|
148
|
-
readonly previousSibling: ChildNode | null;
|
|
149
|
-
appendChild<T extends Node>(node: T): T;
|
|
150
|
-
cloneNode(subtree?: boolean): Node;
|
|
151
|
-
compareDocumentPosition(other: Node): number;
|
|
152
|
-
contains(other: Node | null): boolean;
|
|
153
|
-
getRootNode(options?: GetRootNodeOptions): Node;
|
|
154
|
-
hasChildNodes(): boolean;
|
|
155
|
-
insertBefore<T extends Node>(node: T, child: Node | null): T;
|
|
156
|
-
isDefaultNamespace(namespace: string | null): boolean;
|
|
157
|
-
isEqualNode(otherNode: Node | null): boolean;
|
|
158
|
-
isSameNode(otherNode: Node | null): boolean;
|
|
159
|
-
lookupNamespaceURI(prefix: string | null): string | null;
|
|
160
|
-
lookupPrefix(namespace: string | null): string | null;
|
|
161
|
-
normalize(): void;
|
|
162
|
-
removeChild<T extends Node>(child: T): T;
|
|
163
|
-
replaceChild<T extends Node>(node: Node, child: T): T;
|
|
164
|
-
readonly ELEMENT_NODE: 1;
|
|
165
|
-
readonly ATTRIBUTE_NODE: 2;
|
|
166
|
-
readonly TEXT_NODE: 3;
|
|
167
|
-
readonly CDATA_SECTION_NODE: 4;
|
|
168
|
-
readonly ENTITY_REFERENCE_NODE: 5;
|
|
169
|
-
readonly ENTITY_NODE: 6;
|
|
170
|
-
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
171
|
-
readonly COMMENT_NODE: 8;
|
|
172
|
-
readonly DOCUMENT_NODE: 9;
|
|
173
|
-
readonly DOCUMENT_TYPE_NODE: 10;
|
|
174
|
-
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
175
|
-
readonly NOTATION_NODE: 12;
|
|
176
|
-
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
177
|
-
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
178
|
-
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
179
|
-
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
180
|
-
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
181
|
-
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
182
|
-
dispatchEvent(event: Event): boolean;
|
|
183
|
-
ariaActiveDescendantElement: Element | null;
|
|
184
|
-
ariaAtomic: string | null;
|
|
185
|
-
ariaAutoComplete: string | null;
|
|
186
|
-
ariaBrailleLabel: string | null;
|
|
187
|
-
ariaBrailleRoleDescription: string | null;
|
|
188
|
-
ariaBusy: string | null;
|
|
189
|
-
ariaChecked: string | null;
|
|
190
|
-
ariaColCount: string | null;
|
|
191
|
-
ariaColIndex: string | null;
|
|
192
|
-
ariaColIndexText: string | null;
|
|
193
|
-
ariaColSpan: string | null;
|
|
194
|
-
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
195
|
-
ariaCurrent: string | null;
|
|
196
|
-
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
197
|
-
ariaDescription: string | null;
|
|
198
|
-
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
199
|
-
ariaDisabled: string | null;
|
|
200
|
-
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
201
|
-
ariaExpanded: string | null;
|
|
202
|
-
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
203
|
-
ariaHasPopup: string | null;
|
|
204
|
-
ariaHidden: string | null;
|
|
205
|
-
ariaInvalid: string | null;
|
|
206
|
-
ariaKeyShortcuts: string | null;
|
|
207
|
-
ariaLabel: string | null;
|
|
208
|
-
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
209
|
-
ariaLevel: string | null;
|
|
210
|
-
ariaLive: string | null;
|
|
211
|
-
ariaModal: string | null;
|
|
212
|
-
ariaMultiLine: string | null;
|
|
213
|
-
ariaMultiSelectable: string | null;
|
|
214
|
-
ariaOrientation: string | null;
|
|
215
|
-
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
216
|
-
ariaPlaceholder: string | null;
|
|
217
|
-
ariaPosInSet: string | null;
|
|
218
|
-
ariaPressed: string | null;
|
|
219
|
-
ariaReadOnly: string | null;
|
|
220
|
-
ariaRelevant: string | null;
|
|
221
|
-
ariaRequired: string | null;
|
|
222
|
-
ariaRoleDescription: string | null;
|
|
223
|
-
ariaRowCount: string | null;
|
|
224
|
-
ariaRowIndex: string | null;
|
|
225
|
-
ariaRowIndexText: string | null;
|
|
226
|
-
ariaRowSpan: string | null;
|
|
227
|
-
ariaSelected: string | null;
|
|
228
|
-
ariaSetSize: string | null;
|
|
229
|
-
ariaSort: string | null;
|
|
230
|
-
ariaValueMax: string | null;
|
|
231
|
-
ariaValueMin: string | null;
|
|
232
|
-
ariaValueNow: string | null;
|
|
233
|
-
ariaValueText: string | null;
|
|
234
|
-
role: string | null;
|
|
235
|
-
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
|
236
|
-
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
237
|
-
after(...nodes: (Node | string)[]): void;
|
|
238
|
-
before(...nodes: (Node | string)[]): void;
|
|
239
|
-
remove(): void;
|
|
240
|
-
replaceWith(...nodes: (Node | string)[]): void;
|
|
241
|
-
readonly nextElementSibling: Element | null;
|
|
242
|
-
readonly previousElementSibling: Element | null;
|
|
243
|
-
readonly childElementCount: number;
|
|
244
|
-
readonly children: HTMLCollection;
|
|
245
|
-
readonly firstElementChild: Element | null;
|
|
246
|
-
readonly lastElementChild: Element | null;
|
|
247
|
-
append(...nodes: (Node | string)[]): void;
|
|
248
|
-
prepend(...nodes: (Node | string)[]): void;
|
|
249
|
-
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
250
|
-
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
251
|
-
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
252
|
-
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
253
|
-
querySelector<E extends Element = Element>(selectors: string): E | null;
|
|
254
|
-
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
255
|
-
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
256
|
-
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
257
|
-
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
258
|
-
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
259
|
-
replaceChildren(...nodes: (Node | string)[]): void;
|
|
260
|
-
readonly assignedSlot: HTMLSlotElement | null;
|
|
261
|
-
readonly attributeStyleMap: StylePropertyMap;
|
|
262
|
-
get style(): CSSStyleDeclaration;
|
|
263
|
-
set style(cssText: string);
|
|
264
|
-
contentEditable: string;
|
|
265
|
-
enterKeyHint: string;
|
|
266
|
-
inputMode: string;
|
|
267
|
-
readonly isContentEditable: boolean;
|
|
268
|
-
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
269
|
-
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
270
|
-
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
271
|
-
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
272
|
-
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
273
|
-
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
274
|
-
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
275
|
-
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
276
|
-
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
277
|
-
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
278
|
-
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
279
|
-
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
280
|
-
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
281
|
-
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
282
|
-
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
283
|
-
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
284
|
-
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
285
|
-
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
286
|
-
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
287
|
-
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
288
|
-
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
289
|
-
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
290
|
-
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
291
|
-
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
292
|
-
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
293
|
-
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
294
|
-
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
295
|
-
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
296
|
-
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
297
|
-
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
298
|
-
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
299
|
-
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
300
|
-
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
301
|
-
onerror: OnErrorEventHandler;
|
|
302
|
-
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
303
|
-
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
304
|
-
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
305
|
-
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
306
|
-
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
307
|
-
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
308
|
-
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
309
|
-
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
310
|
-
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
311
|
-
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
312
|
-
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
313
|
-
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
314
|
-
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
315
|
-
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
316
|
-
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
317
|
-
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
318
|
-
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
319
|
-
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
320
|
-
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
321
|
-
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
322
|
-
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
323
|
-
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
324
|
-
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
325
|
-
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
326
|
-
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
327
|
-
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
328
|
-
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
329
|
-
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
330
|
-
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
331
|
-
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
332
|
-
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
333
|
-
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
334
|
-
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
335
|
-
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
336
|
-
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
337
|
-
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
338
|
-
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
339
|
-
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
340
|
-
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
341
|
-
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
342
|
-
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
343
|
-
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
344
|
-
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
345
|
-
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
346
|
-
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
347
|
-
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
348
|
-
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
349
|
-
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
350
|
-
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
351
|
-
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
352
|
-
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
353
|
-
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
354
|
-
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
355
|
-
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
356
|
-
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
357
|
-
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
358
|
-
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
359
|
-
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
360
|
-
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
361
|
-
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
362
|
-
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
363
|
-
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
364
|
-
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
365
|
-
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
366
|
-
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
367
|
-
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
368
|
-
autofocus: boolean;
|
|
369
|
-
readonly dataset: DOMStringMap;
|
|
370
|
-
nonce?: string;
|
|
371
|
-
tabIndex: number;
|
|
372
|
-
blur(): void;
|
|
373
|
-
focus(options?: FocusOptions): void;
|
|
374
|
-
};
|
|
375
|
-
};
|
|
9
|
+
export declare const getAccentedDialog: () => CustomElementConstructor;
|
|
376
10
|
//# sourceMappingURL=accented-dialog.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accented-dialog.d.ts","sourceRoot":"","sources":["../../src/elements/accented-dialog.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAcnD,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAIzC,MAAM,WAAW,cAAe,SAAQ,WAAW;IACjD,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,GAAG,SAAS,CAAC;IACzC,OAAO,EAAE,OAAO,GAAG,SAAS,CAAC;IAC7B,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,IAAI,EAAE,OAAO,CAAC;CACf;AAID,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"accented-dialog.d.ts","sourceRoot":"","sources":["../../src/elements/accented-dialog.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAcnD,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAIzC,MAAM,WAAW,cAAe,SAAQ,WAAW;IACjD,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,GAAG,SAAS,CAAC;IACzC,OAAO,EAAE,OAAO,GAAG,SAAS,CAAC;IAC7B,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,IAAI,EAAE,OAAO,CAAC;CACf;AAID,eAAO,MAAM,iBAAiB,QAAO,wBAkYpC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accented-dialog.js","sourceRoot":"","sources":["../../src/elements/accented-dialog.ts"],"names":[],"mappings":"AACA,OAAO,EACL,SAAS,EACT,UAAU,EACV,mBAAmB,EACnB,gBAAgB,EAChB,mBAAmB,EACnB,kBAAkB,EAClB,UAAU,EACV,cAAc,EACd,cAAc,GACf,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAEtD,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAStD,0EAA0E;AAC1E,+FAA+F;AAC/F,MAAM,CAAC,MAAM,iBAAiB,GAAG,
|
|
1
|
+
{"version":3,"file":"accented-dialog.js","sourceRoot":"","sources":["../../src/elements/accented-dialog.ts"],"names":[],"mappings":"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"}
|
|
@@ -7,370 +7,5 @@ export interface AccentedTrigger extends HTMLElement {
|
|
|
7
7
|
position: Signal<Position> | undefined;
|
|
8
8
|
visible: Signal<boolean> | undefined;
|
|
9
9
|
}
|
|
10
|
-
export declare const getAccentedTrigger: (name: string) =>
|
|
11
|
-
new (): {
|
|
12
|
-
"__#private@#abortController": AbortController | undefined;
|
|
13
|
-
"__#private@#dialogCloseAbortController": AbortController | undefined;
|
|
14
|
-
"__#private@#disposeOfPositionEffect": (() => void) | undefined;
|
|
15
|
-
"__#private@#disposeOfVisibilityEffect": (() => void) | undefined;
|
|
16
|
-
"__#private@#elementMutationObserver": MutationObserver | undefined;
|
|
17
|
-
element: Element | undefined;
|
|
18
|
-
dialog: AccentedDialog | undefined;
|
|
19
|
-
position: Signal<Position> | undefined;
|
|
20
|
-
visible: Signal<boolean> | undefined;
|
|
21
|
-
connectedCallback(): void;
|
|
22
|
-
disconnectedCallback(): void;
|
|
23
|
-
"__#private@#setTransform"(): void;
|
|
24
|
-
accessKey: string;
|
|
25
|
-
readonly accessKeyLabel: string;
|
|
26
|
-
autocapitalize: string;
|
|
27
|
-
autocorrect: boolean;
|
|
28
|
-
dir: string;
|
|
29
|
-
draggable: boolean;
|
|
30
|
-
hidden: boolean;
|
|
31
|
-
inert: boolean;
|
|
32
|
-
innerText: string;
|
|
33
|
-
lang: string;
|
|
34
|
-
readonly offsetHeight: number;
|
|
35
|
-
readonly offsetLeft: number;
|
|
36
|
-
readonly offsetParent: Element | null;
|
|
37
|
-
readonly offsetTop: number;
|
|
38
|
-
readonly offsetWidth: number;
|
|
39
|
-
outerText: string;
|
|
40
|
-
popover: string | null;
|
|
41
|
-
spellcheck: boolean;
|
|
42
|
-
title: string;
|
|
43
|
-
translate: boolean;
|
|
44
|
-
writingSuggestions: string;
|
|
45
|
-
attachInternals(): ElementInternals;
|
|
46
|
-
click(): void;
|
|
47
|
-
hidePopover(): void;
|
|
48
|
-
showPopover(): void;
|
|
49
|
-
togglePopover(options?: boolean): boolean;
|
|
50
|
-
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
51
|
-
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
52
|
-
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
53
|
-
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
54
|
-
readonly attributes: NamedNodeMap;
|
|
55
|
-
get classList(): DOMTokenList;
|
|
56
|
-
set classList(value: string);
|
|
57
|
-
className: string;
|
|
58
|
-
readonly clientHeight: number;
|
|
59
|
-
readonly clientLeft: number;
|
|
60
|
-
readonly clientTop: number;
|
|
61
|
-
readonly clientWidth: number;
|
|
62
|
-
readonly currentCSSZoom: number;
|
|
63
|
-
id: string;
|
|
64
|
-
innerHTML: string;
|
|
65
|
-
readonly localName: string;
|
|
66
|
-
readonly namespaceURI: string | null;
|
|
67
|
-
onfullscreenchange: ((this: Element, ev: Event) => any) | null;
|
|
68
|
-
onfullscreenerror: ((this: Element, ev: Event) => any) | null;
|
|
69
|
-
outerHTML: string;
|
|
70
|
-
readonly ownerDocument: Document;
|
|
71
|
-
get part(): DOMTokenList;
|
|
72
|
-
set part(value: string);
|
|
73
|
-
readonly prefix: string | null;
|
|
74
|
-
readonly scrollHeight: number;
|
|
75
|
-
scrollLeft: number;
|
|
76
|
-
scrollTop: number;
|
|
77
|
-
readonly scrollWidth: number;
|
|
78
|
-
readonly shadowRoot: ShadowRoot | null;
|
|
79
|
-
slot: string;
|
|
80
|
-
readonly tagName: string;
|
|
81
|
-
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
82
|
-
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
83
|
-
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
|
|
84
|
-
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
|
|
85
|
-
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
|
|
86
|
-
closest<E extends Element = Element>(selectors: string): E | null;
|
|
87
|
-
computedStyleMap(): StylePropertyMapReadOnly;
|
|
88
|
-
getAttribute(qualifiedName: string): string | null;
|
|
89
|
-
getAttributeNS(namespace: string | null, localName: string): string | null;
|
|
90
|
-
getAttributeNames(): string[];
|
|
91
|
-
getAttributeNode(qualifiedName: string): Attr | null;
|
|
92
|
-
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
|
93
|
-
getBoundingClientRect(): DOMRect;
|
|
94
|
-
getClientRects(): DOMRectList;
|
|
95
|
-
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
96
|
-
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
97
|
-
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
98
|
-
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
99
|
-
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
100
|
-
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
101
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
102
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
103
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
104
|
-
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
105
|
-
getHTML(options?: GetHTMLOptions): string;
|
|
106
|
-
hasAttribute(qualifiedName: string): boolean;
|
|
107
|
-
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
|
108
|
-
hasAttributes(): boolean;
|
|
109
|
-
hasPointerCapture(pointerId: number): boolean;
|
|
110
|
-
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
111
|
-
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
|
112
|
-
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
113
|
-
matches(selectors: string): boolean;
|
|
114
|
-
releasePointerCapture(pointerId: number): void;
|
|
115
|
-
removeAttribute(qualifiedName: string): void;
|
|
116
|
-
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
117
|
-
removeAttributeNode(attr: Attr): Attr;
|
|
118
|
-
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
119
|
-
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
|
120
|
-
scroll(options?: ScrollToOptions): void;
|
|
121
|
-
scroll(x: number, y: number): void;
|
|
122
|
-
scrollBy(options?: ScrollToOptions): void;
|
|
123
|
-
scrollBy(x: number, y: number): void;
|
|
124
|
-
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
125
|
-
scrollTo(options?: ScrollToOptions): void;
|
|
126
|
-
scrollTo(x: number, y: number): void;
|
|
127
|
-
setAttribute(qualifiedName: string, value: string): void;
|
|
128
|
-
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
|
129
|
-
setAttributeNode(attr: Attr): Attr | null;
|
|
130
|
-
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
131
|
-
setHTMLUnsafe(html: string): void;
|
|
132
|
-
setPointerCapture(pointerId: number): void;
|
|
133
|
-
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
134
|
-
webkitMatchesSelector(selectors: string): boolean;
|
|
135
|
-
get textContent(): string;
|
|
136
|
-
set textContent(value: string | null);
|
|
137
|
-
readonly baseURI: string;
|
|
138
|
-
readonly childNodes: NodeListOf<ChildNode>;
|
|
139
|
-
readonly firstChild: ChildNode | null;
|
|
140
|
-
readonly isConnected: boolean;
|
|
141
|
-
readonly lastChild: ChildNode | null;
|
|
142
|
-
readonly nextSibling: ChildNode | null;
|
|
143
|
-
readonly nodeName: string;
|
|
144
|
-
readonly nodeType: number;
|
|
145
|
-
nodeValue: string | null;
|
|
146
|
-
readonly parentElement: HTMLElement | null;
|
|
147
|
-
readonly parentNode: ParentNode | null;
|
|
148
|
-
readonly previousSibling: ChildNode | null;
|
|
149
|
-
appendChild<T extends Node>(node: T): T;
|
|
150
|
-
cloneNode(subtree?: boolean): Node;
|
|
151
|
-
compareDocumentPosition(other: Node): number;
|
|
152
|
-
contains(other: Node | null): boolean;
|
|
153
|
-
getRootNode(options?: GetRootNodeOptions): Node;
|
|
154
|
-
hasChildNodes(): boolean;
|
|
155
|
-
insertBefore<T extends Node>(node: T, child: Node | null): T;
|
|
156
|
-
isDefaultNamespace(namespace: string | null): boolean;
|
|
157
|
-
isEqualNode(otherNode: Node | null): boolean;
|
|
158
|
-
isSameNode(otherNode: Node | null): boolean;
|
|
159
|
-
lookupNamespaceURI(prefix: string | null): string | null;
|
|
160
|
-
lookupPrefix(namespace: string | null): string | null;
|
|
161
|
-
normalize(): void;
|
|
162
|
-
removeChild<T extends Node>(child: T): T;
|
|
163
|
-
replaceChild<T extends Node>(node: Node, child: T): T;
|
|
164
|
-
readonly ELEMENT_NODE: 1;
|
|
165
|
-
readonly ATTRIBUTE_NODE: 2;
|
|
166
|
-
readonly TEXT_NODE: 3;
|
|
167
|
-
readonly CDATA_SECTION_NODE: 4;
|
|
168
|
-
readonly ENTITY_REFERENCE_NODE: 5;
|
|
169
|
-
readonly ENTITY_NODE: 6;
|
|
170
|
-
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
171
|
-
readonly COMMENT_NODE: 8;
|
|
172
|
-
readonly DOCUMENT_NODE: 9;
|
|
173
|
-
readonly DOCUMENT_TYPE_NODE: 10;
|
|
174
|
-
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
175
|
-
readonly NOTATION_NODE: 12;
|
|
176
|
-
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
177
|
-
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
178
|
-
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
179
|
-
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
180
|
-
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
181
|
-
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
182
|
-
dispatchEvent(event: Event): boolean;
|
|
183
|
-
ariaActiveDescendantElement: Element | null;
|
|
184
|
-
ariaAtomic: string | null;
|
|
185
|
-
ariaAutoComplete: string | null;
|
|
186
|
-
ariaBrailleLabel: string | null;
|
|
187
|
-
ariaBrailleRoleDescription: string | null;
|
|
188
|
-
ariaBusy: string | null;
|
|
189
|
-
ariaChecked: string | null;
|
|
190
|
-
ariaColCount: string | null;
|
|
191
|
-
ariaColIndex: string | null;
|
|
192
|
-
ariaColIndexText: string | null;
|
|
193
|
-
ariaColSpan: string | null;
|
|
194
|
-
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
195
|
-
ariaCurrent: string | null;
|
|
196
|
-
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
197
|
-
ariaDescription: string | null;
|
|
198
|
-
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
199
|
-
ariaDisabled: string | null;
|
|
200
|
-
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
201
|
-
ariaExpanded: string | null;
|
|
202
|
-
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
203
|
-
ariaHasPopup: string | null;
|
|
204
|
-
ariaHidden: string | null;
|
|
205
|
-
ariaInvalid: string | null;
|
|
206
|
-
ariaKeyShortcuts: string | null;
|
|
207
|
-
ariaLabel: string | null;
|
|
208
|
-
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
209
|
-
ariaLevel: string | null;
|
|
210
|
-
ariaLive: string | null;
|
|
211
|
-
ariaModal: string | null;
|
|
212
|
-
ariaMultiLine: string | null;
|
|
213
|
-
ariaMultiSelectable: string | null;
|
|
214
|
-
ariaOrientation: string | null;
|
|
215
|
-
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
216
|
-
ariaPlaceholder: string | null;
|
|
217
|
-
ariaPosInSet: string | null;
|
|
218
|
-
ariaPressed: string | null;
|
|
219
|
-
ariaReadOnly: string | null;
|
|
220
|
-
ariaRelevant: string | null;
|
|
221
|
-
ariaRequired: string | null;
|
|
222
|
-
ariaRoleDescription: string | null;
|
|
223
|
-
ariaRowCount: string | null;
|
|
224
|
-
ariaRowIndex: string | null;
|
|
225
|
-
ariaRowIndexText: string | null;
|
|
226
|
-
ariaRowSpan: string | null;
|
|
227
|
-
ariaSelected: string | null;
|
|
228
|
-
ariaSetSize: string | null;
|
|
229
|
-
ariaSort: string | null;
|
|
230
|
-
ariaValueMax: string | null;
|
|
231
|
-
ariaValueMin: string | null;
|
|
232
|
-
ariaValueNow: string | null;
|
|
233
|
-
ariaValueText: string | null;
|
|
234
|
-
role: string | null;
|
|
235
|
-
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
|
236
|
-
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
237
|
-
after(...nodes: (Node | string)[]): void;
|
|
238
|
-
before(...nodes: (Node | string)[]): void;
|
|
239
|
-
remove(): void;
|
|
240
|
-
replaceWith(...nodes: (Node | string)[]): void;
|
|
241
|
-
readonly nextElementSibling: Element | null;
|
|
242
|
-
readonly previousElementSibling: Element | null;
|
|
243
|
-
readonly childElementCount: number;
|
|
244
|
-
readonly children: HTMLCollection;
|
|
245
|
-
readonly firstElementChild: Element | null;
|
|
246
|
-
readonly lastElementChild: Element | null;
|
|
247
|
-
append(...nodes: (Node | string)[]): void;
|
|
248
|
-
prepend(...nodes: (Node | string)[]): void;
|
|
249
|
-
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
250
|
-
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
251
|
-
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
252
|
-
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
253
|
-
querySelector<E extends Element = Element>(selectors: string): E | null;
|
|
254
|
-
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
255
|
-
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
256
|
-
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
257
|
-
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
258
|
-
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
259
|
-
replaceChildren(...nodes: (Node | string)[]): void;
|
|
260
|
-
readonly assignedSlot: HTMLSlotElement | null;
|
|
261
|
-
readonly attributeStyleMap: StylePropertyMap;
|
|
262
|
-
get style(): CSSStyleDeclaration;
|
|
263
|
-
set style(cssText: string);
|
|
264
|
-
contentEditable: string;
|
|
265
|
-
enterKeyHint: string;
|
|
266
|
-
inputMode: string;
|
|
267
|
-
readonly isContentEditable: boolean;
|
|
268
|
-
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
269
|
-
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
270
|
-
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
271
|
-
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
272
|
-
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
273
|
-
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
274
|
-
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
275
|
-
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
276
|
-
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
277
|
-
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
278
|
-
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
279
|
-
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
280
|
-
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
281
|
-
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
282
|
-
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
283
|
-
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
284
|
-
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
285
|
-
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
286
|
-
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
287
|
-
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
288
|
-
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
289
|
-
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
290
|
-
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
291
|
-
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
292
|
-
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
293
|
-
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
294
|
-
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
295
|
-
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
296
|
-
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
297
|
-
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
298
|
-
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
299
|
-
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
300
|
-
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
301
|
-
onerror: OnErrorEventHandler;
|
|
302
|
-
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
303
|
-
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
304
|
-
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
305
|
-
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
306
|
-
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
307
|
-
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
308
|
-
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
309
|
-
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
310
|
-
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
311
|
-
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
312
|
-
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
313
|
-
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
314
|
-
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
315
|
-
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
316
|
-
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
317
|
-
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
318
|
-
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
319
|
-
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
320
|
-
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
321
|
-
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
322
|
-
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
323
|
-
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
324
|
-
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
325
|
-
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
326
|
-
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
327
|
-
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
328
|
-
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
329
|
-
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
330
|
-
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
331
|
-
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
332
|
-
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
333
|
-
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
334
|
-
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
335
|
-
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
336
|
-
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
337
|
-
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
338
|
-
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
339
|
-
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
340
|
-
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
341
|
-
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
342
|
-
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
343
|
-
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
344
|
-
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
345
|
-
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
346
|
-
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
347
|
-
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
348
|
-
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
349
|
-
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
350
|
-
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
351
|
-
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
352
|
-
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
353
|
-
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
354
|
-
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
355
|
-
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
356
|
-
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
357
|
-
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
358
|
-
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
359
|
-
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
360
|
-
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
361
|
-
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
362
|
-
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
363
|
-
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
364
|
-
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
365
|
-
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
366
|
-
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
367
|
-
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
368
|
-
autofocus: boolean;
|
|
369
|
-
readonly dataset: DOMStringMap;
|
|
370
|
-
nonce?: string;
|
|
371
|
-
tabIndex: number;
|
|
372
|
-
blur(): void;
|
|
373
|
-
focus(options?: FocusOptions): void;
|
|
374
|
-
};
|
|
375
|
-
};
|
|
10
|
+
export declare const getAccentedTrigger: (name: string) => CustomElementConstructor;
|
|
376
11
|
//# sourceMappingURL=accented-trigger.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accented-trigger.d.ts","sourceRoot":"","sources":["../../src/elements/accented-trigger.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAInD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAG5C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAE3D,MAAM,WAAW,eAAgB,SAAQ,WAAW;IAClD,OAAO,EAAE,OAAO,GAAG,SAAS,CAAC;IAC7B,MAAM,EAAE,cAAc,GAAG,SAAS,CAAC;IACnC,QAAQ,EAAE,MAAM,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC;IACvC,OAAO,EAAE,MAAM,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC;CACtC;AAID,eAAO,MAAM,kBAAkB,GAAI,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"accented-trigger.d.ts","sourceRoot":"","sources":["../../src/elements/accented-trigger.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAInD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAG5C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAE3D,MAAM,WAAW,eAAgB,SAAQ,WAAW;IAClD,OAAO,EAAE,OAAO,GAAG,SAAS,CAAC;IAC7B,MAAM,EAAE,cAAc,GAAG,SAAS,CAAC;IACnC,QAAQ,EAAE,MAAM,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC;IACvC,OAAO,EAAE,MAAM,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC;CACtC;AAID,eAAO,MAAM,kBAAkB,GAAI,MAAM,MAAM,KAAG,wBAkPjD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accented-trigger.js","sourceRoot":"","sources":["../../src/elements/accented-trigger.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAEtD,OAAO,EAAE,oCAAoC,EAAE,MAAM,4BAA4B,CAAC;AAClF,OAAO,EAAE,yBAAyB,EAAE,MAAM,yCAAyC,CAAC;AAUpF,0EAA0E;AAC1E,+FAA+F;AAC/F,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,IAAY,
|
|
1
|
+
{"version":3,"file":"accented-trigger.js","sourceRoot":"","sources":["../../src/elements/accented-trigger.ts"],"names":[],"mappings":"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"}
|
package/dist/logger.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../src/logger.ts"],"names":[],"mappings":"AAqRA,wBAAgB,YAAY,
|
|
1
|
+
{"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../src/logger.ts"],"names":[],"mappings":"AAqRA,wBAAgB,YAAY,IAAI,MAAM,IAAI,CAYzC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"css-transforms.d.ts","sourceRoot":"","sources":["../../src/utils/css-transforms.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAIH,wBAAgB,oCAAoC,YAEnD;AAED;;;;;GAKG;AACH,wBAAgB,4BAA4B,
|
|
1
|
+
{"version":3,"file":"css-transforms.d.ts","sourceRoot":"","sources":["../../src/utils/css-transforms.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAIH,wBAAgB,oCAAoC,YAEnD;AAED;;;;;GAKG;AACH,wBAAgB,4BAA4B,SAsB3C"}
|
|
@@ -20,13 +20,11 @@ export function initializeCssTransformsCheck() {
|
|
|
20
20
|
anchor.style.inlineSize = '100px';
|
|
21
21
|
anchor.style.blockSize = '100px';
|
|
22
22
|
anchor.style.transform = 'translateX(100px)';
|
|
23
|
-
// @ts-expect-error TS is unaware of `anchor-name`
|
|
24
23
|
anchor.style.anchorName = '--test-anchor';
|
|
25
24
|
const anchored = document.createElement('div');
|
|
26
25
|
anchored.style.inlineSize = '10px';
|
|
27
26
|
anchored.style.blockSize = '10px';
|
|
28
27
|
anchored.style.position = 'absolute';
|
|
29
|
-
// @ts-expect-error TS is unaware of `position-anchor`
|
|
30
28
|
anchored.style.positionAnchor = '--test-anchor';
|
|
31
29
|
anchored.style.insetInlineStart = 'anchor(start)';
|
|
32
30
|
anchored.style.insetBlockStart = 'anchor(start)';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"css-transforms.js","sourceRoot":"","sources":["../../src/utils/css-transforms.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,IAAI,UAAmB,CAAC;AAExB,MAAM,UAAU,oCAAoC;IAClD,OAAO,UAAU,CAAC;AACpB,CAAC;AAED;;;;;GAKG;AACH,MAAM,UAAU,4BAA4B;IAC1C,MAAM,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAC7C,MAAM,CAAC,KAAK,CAAC,UAAU,GAAG,OAAO,CAAC;IAClC,MAAM,CAAC,KAAK,CAAC,SAAS,GAAG,OAAO,CAAC;IACjC,MAAM,CAAC,KAAK,CAAC,SAAS,GAAG,mBAAmB,CAAC;IAC7C,
|
|
1
|
+
{"version":3,"file":"css-transforms.js","sourceRoot":"","sources":["../../src/utils/css-transforms.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,IAAI,UAAmB,CAAC;AAExB,MAAM,UAAU,oCAAoC;IAClD,OAAO,UAAU,CAAC;AACpB,CAAC;AAED;;;;;GAKG;AACH,MAAM,UAAU,4BAA4B;IAC1C,MAAM,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAC7C,MAAM,CAAC,KAAK,CAAC,UAAU,GAAG,OAAO,CAAC;IAClC,MAAM,CAAC,KAAK,CAAC,SAAS,GAAG,OAAO,CAAC;IACjC,MAAM,CAAC,KAAK,CAAC,SAAS,GAAG,mBAAmB,CAAC;IAC7C,MAAM,CAAC,KAAK,CAAC,UAAU,GAAG,eAAe,CAAC;IAE1C,MAAM,QAAQ,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAC/C,QAAQ,CAAC,KAAK,CAAC,UAAU,GAAG,MAAM,CAAC;IACnC,QAAQ,CAAC,KAAK,CAAC,SAAS,GAAG,MAAM,CAAC;IAClC,QAAQ,CAAC,KAAK,CAAC,QAAQ,GAAG,UAAU,CAAC;IACrC,QAAQ,CAAC,KAAK,CAAC,cAAc,GAAG,eAAe,CAAC;IAChD,QAAQ,CAAC,KAAK,CAAC,gBAAgB,GAAG,eAAe,CAAC;IAClD,QAAQ,CAAC,KAAK,CAAC,eAAe,GAAG,eAAe,CAAC;IAEjD,QAAQ,CAAC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;IAClC,QAAQ,CAAC,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC;IAEpC,UAAU,GAAG,MAAM,CAAC,qBAAqB,EAAE,CAAC,IAAI,KAAK,QAAQ,CAAC,qBAAqB,EAAE,CAAC,IAAI,CAAC;IAE3F,MAAM,CAAC,MAAM,EAAE,CAAC;IAChB,QAAQ,CAAC,MAAM,EAAE,CAAC;AACpB,CAAC"}
|
|
@@ -1,10 +1,2 @@
|
|
|
1
|
-
export declare function createShadowDOMAwareMutationObserver(name: string, callback: MutationCallback):
|
|
2
|
-
"__#private@#shadowRoots": Map<ShadowRoot, /*elided*/ any>;
|
|
3
|
-
"__#private@#options": MutationObserverInit | undefined;
|
|
4
|
-
observe(target: Node, options?: MutationObserverInit): void;
|
|
5
|
-
disconnect(): void;
|
|
6
|
-
"__#private@#observeShadowRoots": (elements: Array<Element | Document | DocumentFragment>) => void;
|
|
7
|
-
"__#private@#unobserveShadowRoots": (elements: Array<Element | Document | DocumentFragment>) => void;
|
|
8
|
-
takeRecords(): MutationRecord[];
|
|
9
|
-
};
|
|
1
|
+
export declare function createShadowDOMAwareMutationObserver(name: string, callback: MutationCallback): MutationObserver;
|
|
10
2
|
//# sourceMappingURL=shadow-dom-aware-mutation-observer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shadow-dom-aware-mutation-observer.d.ts","sourceRoot":"","sources":["../../src/utils/shadow-dom-aware-mutation-observer.ts"],"names":[],"mappings":"AAaA,wBAAgB,oCAAoC,
|
|
1
|
+
{"version":3,"file":"shadow-dom-aware-mutation-observer.d.ts","sourceRoot":"","sources":["../../src/utils/shadow-dom-aware-mutation-observer.ts"],"names":[],"mappings":"AAaA,wBAAgB,oCAAoC,CAClD,IAAI,EAAE,MAAM,EACZ,QAAQ,EAAE,gBAAgB,GACzB,gBAAgB,CAmElB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shadow-dom-aware-mutation-observer.js","sourceRoot":"","sources":["../../src/utils/shadow-dom-aware-mutation-observer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,iBAAiB,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,kBAAkB,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAE7E,SAAS,cAAc,CAAC,QAAsD;IAC5E,OAAO,QAAQ;SACZ,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,GAAG,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;SAC7E,MAAM,CACL,CAAC,GAAG,EAAE,OAAO,EAAE,EAAE,CACf,SAAS,CAAC,OAAO,CAAC,IAAI,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,GAAG,EACjF,EAAE,CACH,CAAC;AACN,CAAC;AAED,MAAM,UAAU,oCAAoC,
|
|
1
|
+
{"version":3,"file":"shadow-dom-aware-mutation-observer.js","sourceRoot":"","sources":["../../src/utils/shadow-dom-aware-mutation-observer.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "accented",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.6",
|
|
4
4
|
"description": "A frontend library for continuous accessibility testing and issue highlighting",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/accented.js",
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
},
|
|
28
28
|
"homepage": "https://accented.dev",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@preact/signals-core": "^1.
|
|
31
|
-
"axe-core": "^4.11.
|
|
30
|
+
"@preact/signals-core": "^1.14.1",
|
|
31
|
+
"axe-core": "^4.11.2"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/jsdom": "^27.0.0",
|
|
35
|
-
"jsdom": "^
|
|
35
|
+
"jsdom": "^29.0.1"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "pnpm copyCommon && tsc",
|
|
@@ -25,7 +25,7 @@ export interface AccentedDialog extends HTMLElement {
|
|
|
25
25
|
|
|
26
26
|
// We want Accented to not throw an error in Node, and use static imports,
|
|
27
27
|
// so we can't export `class extends HTMLElement` because HTMLElement is not available in Node.
|
|
28
|
-
export const getAccentedDialog = () => {
|
|
28
|
+
export const getAccentedDialog = (): CustomElementConstructor => {
|
|
29
29
|
const dialogTemplate = document.createElement('template');
|
|
30
30
|
dialogTemplate.innerHTML = `
|
|
31
31
|
<dialog dir="ltr" lang="en" aria-labelledby="title" closedby="any">
|
|
@@ -16,7 +16,7 @@ export interface AccentedTrigger extends HTMLElement {
|
|
|
16
16
|
|
|
17
17
|
// We want Accented to not throw an error in Node, and use static imports,
|
|
18
18
|
// so we can't export `class extends HTMLElement` because HTMLElement is not available in Node.
|
|
19
|
-
export const getAccentedTrigger = (name: string) => {
|
|
19
|
+
export const getAccentedTrigger = (name: string): CustomElementConstructor => {
|
|
20
20
|
const template = document.createElement('template');
|
|
21
21
|
|
|
22
22
|
// I initially tried creating a CSSStyelSheet object with styles instead of having a <style> element in the template,
|
package/src/logger.ts
CHANGED
|
@@ -23,14 +23,12 @@ export function initializeCssTransformsCheck() {
|
|
|
23
23
|
anchor.style.inlineSize = '100px';
|
|
24
24
|
anchor.style.blockSize = '100px';
|
|
25
25
|
anchor.style.transform = 'translateX(100px)';
|
|
26
|
-
// @ts-expect-error TS is unaware of `anchor-name`
|
|
27
26
|
anchor.style.anchorName = '--test-anchor';
|
|
28
27
|
|
|
29
28
|
const anchored = document.createElement('div');
|
|
30
29
|
anchored.style.inlineSize = '10px';
|
|
31
30
|
anchored.style.blockSize = '10px';
|
|
32
31
|
anchored.style.position = 'absolute';
|
|
33
|
-
// @ts-expect-error TS is unaware of `position-anchor`
|
|
34
32
|
anchored.style.positionAnchor = '--test-anchor';
|
|
35
33
|
anchored.style.insetInlineStart = 'anchor(start)';
|
|
36
34
|
anchored.style.insetBlockStart = 'anchor(start)';
|
|
@@ -11,7 +11,10 @@ function getShadowRoots(elements: Array<Element | Document | DocumentFragment>)
|
|
|
11
11
|
);
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
export function createShadowDOMAwareMutationObserver(
|
|
14
|
+
export function createShadowDOMAwareMutationObserver(
|
|
15
|
+
name: string,
|
|
16
|
+
callback: MutationCallback,
|
|
17
|
+
): MutationObserver {
|
|
15
18
|
type ObserverMap = Map<ShadowRoot, ShadowDOMAwareMutationObserver>;
|
|
16
19
|
|
|
17
20
|
const accentedElementNames = getAccentedElementNames(name);
|