axe-core 4.10.0-canary.cf8f38e → 4.10.0-canary.cfd2974

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/axe.d.ts CHANGED
@@ -143,10 +143,14 @@ declare namespace axe {
143
143
  iframes?: boolean;
144
144
  elementRef?: boolean;
145
145
  frameWaitTime?: number;
146
- preload?: boolean;
146
+ preload?: boolean | PreloadOptions;
147
147
  performanceTimer?: boolean;
148
148
  pingWaitTime?: number;
149
149
  }
150
+ interface PreloadOptions {
151
+ assets: string[];
152
+ timeout?: number;
153
+ }
150
154
  interface AxeResults extends EnvironmentData {
151
155
  toolOptions: RunOptions;
152
156
  passes: Result[];
package/axe.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! axe v4.10.0-canary.cf8f38e
1
+ /*! axe v4.10.0-canary.cfd2974
2
2
  * Copyright (c) 2015 - 2024 Deque Systems, Inc.
3
3
  *
4
4
  * Your use of this Source Code Form is subject to the terms of the Mozilla Public
@@ -22,7 +22,7 @@
22
22
  }, _typeof(o);
23
23
  }
24
24
  var axe = axe || {};
25
- axe.version = '4.10.0-canary.cf8f38e';
25
+ axe.version = '4.10.0-canary.cfd2974';
26
26
  if (typeof define === 'function' && define.amd) {
27
27
  define('axe-core', [], function() {
28
28
  return axe;