abledom 0.6.2 → 0.6.4
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/esm/index.js +42 -8
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +42 -8
- package/dist/index.js.map +1 -1
- package/dist/ts3.9/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/ts3.9/index.d.ts
CHANGED
|
@@ -92,6 +92,7 @@ declare class AbleDOM {
|
|
|
92
92
|
private _idleResolve;
|
|
93
93
|
private _currentAnchoredIssues;
|
|
94
94
|
private _currentNotAnchoredIssues;
|
|
95
|
+
private _readIssues;
|
|
95
96
|
constructor(win: Window, props?: AbleDOMProps);
|
|
96
97
|
private _onElementId;
|
|
97
98
|
private _getHighlighter;
|
|
@@ -108,7 +109,7 @@ declare class AbleDOM {
|
|
|
108
109
|
private _onFocusOut;
|
|
109
110
|
private _notifyAsync;
|
|
110
111
|
private _getCurrentIssues;
|
|
111
|
-
idle(): Promise<ValidationIssue[]>;
|
|
112
|
+
idle(markAsRead?: boolean, timeout?: number): Promise<ValidationIssue[] | null>;
|
|
112
113
|
clearCurrentIssues(anchored?: boolean, notAnchored?: boolean): void;
|
|
113
114
|
highlightElement(element: HTMLElement | null, scrollIntoView?: boolean, autoHideTime?: number): void;
|
|
114
115
|
log: typeof console.error;
|