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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "abledom",
3
- "version": "0.6.2",
3
+ "version": "0.6.4",
4
4
  "author": "Marat Abdullin <marata@microsoft.com>",
5
5
  "description": "Continuous detection of typical web application accessibility problems.",
6
6
  "license": "MIT",