accessibility-insights-report 7.3.0 → 7.5.0
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/drop/index.js +323 -2
- package/package.json +4 -4
package/drop/index.js
CHANGED
|
@@ -399,9 +399,330 @@ var createCardResult = (result, isSelected, highlightStatus) => {
|
|
|
399
399
|
};
|
|
400
400
|
var getRuleResultIndex = (ruleId, ruleResults) => ruleResults.findIndex((result) => result.id === ruleId);
|
|
401
401
|
|
|
402
|
+
// node_modules/uuid/dist/regex.js
|
|
403
|
+
var regex_default = /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-8][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$/i;
|
|
404
|
+
|
|
405
|
+
// node_modules/uuid/dist/validate.js
|
|
406
|
+
function validate(uuid) {
|
|
407
|
+
return typeof uuid === "string" && regex_default.test(uuid);
|
|
408
|
+
}
|
|
409
|
+
var validate_default = validate;
|
|
410
|
+
|
|
411
|
+
// node_modules/uuid/dist/parse.js
|
|
412
|
+
function parse(uuid) {
|
|
413
|
+
if (!validate_default(uuid)) {
|
|
414
|
+
throw TypeError("Invalid UUID");
|
|
415
|
+
}
|
|
416
|
+
let v;
|
|
417
|
+
return Uint8Array.of((v = parseInt(uuid.slice(0, 8), 16)) >>> 24, v >>> 16 & 255, v >>> 8 & 255, v & 255, (v = parseInt(uuid.slice(9, 13), 16)) >>> 8, v & 255, (v = parseInt(uuid.slice(14, 18), 16)) >>> 8, v & 255, (v = parseInt(uuid.slice(19, 23), 16)) >>> 8, v & 255, (v = parseInt(uuid.slice(24, 36), 16)) / 1099511627776 & 255, v / 4294967296 & 255, v >>> 24 & 255, v >>> 16 & 255, v >>> 8 & 255, v & 255);
|
|
418
|
+
}
|
|
419
|
+
var parse_default = parse;
|
|
420
|
+
|
|
421
|
+
// node_modules/uuid/dist/stringify.js
|
|
422
|
+
var byteToHex = [];
|
|
423
|
+
for (let i = 0; i < 256; ++i) {
|
|
424
|
+
byteToHex.push((i + 256).toString(16).slice(1));
|
|
425
|
+
}
|
|
426
|
+
function unsafeStringify(arr, offset = 0) {
|
|
427
|
+
return (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + "-" + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + "-" + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + "-" + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + "-" + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase();
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
// node_modules/uuid/dist/rng.js
|
|
431
|
+
var rnds8 = new Uint8Array(16);
|
|
432
|
+
function rng() {
|
|
433
|
+
return crypto.getRandomValues(rnds8);
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
// node_modules/uuid/dist/md5.js
|
|
437
|
+
function md5(bytes) {
|
|
438
|
+
const words = uint8ToUint32(bytes);
|
|
439
|
+
const md5Bytes = wordsToMd5(words, bytes.length * 8);
|
|
440
|
+
return uint32ToUint8(md5Bytes);
|
|
441
|
+
}
|
|
442
|
+
function uint32ToUint8(input) {
|
|
443
|
+
const bytes = new Uint8Array(input.length * 4);
|
|
444
|
+
for (let i = 0; i < input.length * 4; i++) {
|
|
445
|
+
bytes[i] = input[i >> 2] >>> i % 4 * 8 & 255;
|
|
446
|
+
}
|
|
447
|
+
return bytes;
|
|
448
|
+
}
|
|
449
|
+
function getOutputLength(inputLength8) {
|
|
450
|
+
return (inputLength8 + 64 >>> 9 << 4) + 14 + 1;
|
|
451
|
+
}
|
|
452
|
+
function wordsToMd5(x, len) {
|
|
453
|
+
const xpad = new Uint32Array(getOutputLength(len)).fill(0);
|
|
454
|
+
xpad.set(x);
|
|
455
|
+
xpad[len >> 5] |= 128 << len % 32;
|
|
456
|
+
xpad[xpad.length - 1] = len;
|
|
457
|
+
x = xpad;
|
|
458
|
+
let a = 1732584193;
|
|
459
|
+
let b = -271733879;
|
|
460
|
+
let c = -1732584194;
|
|
461
|
+
let d7 = 271733878;
|
|
462
|
+
for (let i = 0; i < x.length; i += 16) {
|
|
463
|
+
const olda = a;
|
|
464
|
+
const oldb = b;
|
|
465
|
+
const oldc = c;
|
|
466
|
+
const oldd = d7;
|
|
467
|
+
a = md5ff(a, b, c, d7, x[i], 7, -680876936);
|
|
468
|
+
d7 = md5ff(d7, a, b, c, x[i + 1], 12, -389564586);
|
|
469
|
+
c = md5ff(c, d7, a, b, x[i + 2], 17, 606105819);
|
|
470
|
+
b = md5ff(b, c, d7, a, x[i + 3], 22, -1044525330);
|
|
471
|
+
a = md5ff(a, b, c, d7, x[i + 4], 7, -176418897);
|
|
472
|
+
d7 = md5ff(d7, a, b, c, x[i + 5], 12, 1200080426);
|
|
473
|
+
c = md5ff(c, d7, a, b, x[i + 6], 17, -1473231341);
|
|
474
|
+
b = md5ff(b, c, d7, a, x[i + 7], 22, -45705983);
|
|
475
|
+
a = md5ff(a, b, c, d7, x[i + 8], 7, 1770035416);
|
|
476
|
+
d7 = md5ff(d7, a, b, c, x[i + 9], 12, -1958414417);
|
|
477
|
+
c = md5ff(c, d7, a, b, x[i + 10], 17, -42063);
|
|
478
|
+
b = md5ff(b, c, d7, a, x[i + 11], 22, -1990404162);
|
|
479
|
+
a = md5ff(a, b, c, d7, x[i + 12], 7, 1804603682);
|
|
480
|
+
d7 = md5ff(d7, a, b, c, x[i + 13], 12, -40341101);
|
|
481
|
+
c = md5ff(c, d7, a, b, x[i + 14], 17, -1502002290);
|
|
482
|
+
b = md5ff(b, c, d7, a, x[i + 15], 22, 1236535329);
|
|
483
|
+
a = md5gg(a, b, c, d7, x[i + 1], 5, -165796510);
|
|
484
|
+
d7 = md5gg(d7, a, b, c, x[i + 6], 9, -1069501632);
|
|
485
|
+
c = md5gg(c, d7, a, b, x[i + 11], 14, 643717713);
|
|
486
|
+
b = md5gg(b, c, d7, a, x[i], 20, -373897302);
|
|
487
|
+
a = md5gg(a, b, c, d7, x[i + 5], 5, -701558691);
|
|
488
|
+
d7 = md5gg(d7, a, b, c, x[i + 10], 9, 38016083);
|
|
489
|
+
c = md5gg(c, d7, a, b, x[i + 15], 14, -660478335);
|
|
490
|
+
b = md5gg(b, c, d7, a, x[i + 4], 20, -405537848);
|
|
491
|
+
a = md5gg(a, b, c, d7, x[i + 9], 5, 568446438);
|
|
492
|
+
d7 = md5gg(d7, a, b, c, x[i + 14], 9, -1019803690);
|
|
493
|
+
c = md5gg(c, d7, a, b, x[i + 3], 14, -187363961);
|
|
494
|
+
b = md5gg(b, c, d7, a, x[i + 8], 20, 1163531501);
|
|
495
|
+
a = md5gg(a, b, c, d7, x[i + 13], 5, -1444681467);
|
|
496
|
+
d7 = md5gg(d7, a, b, c, x[i + 2], 9, -51403784);
|
|
497
|
+
c = md5gg(c, d7, a, b, x[i + 7], 14, 1735328473);
|
|
498
|
+
b = md5gg(b, c, d7, a, x[i + 12], 20, -1926607734);
|
|
499
|
+
a = md5hh(a, b, c, d7, x[i + 5], 4, -378558);
|
|
500
|
+
d7 = md5hh(d7, a, b, c, x[i + 8], 11, -2022574463);
|
|
501
|
+
c = md5hh(c, d7, a, b, x[i + 11], 16, 1839030562);
|
|
502
|
+
b = md5hh(b, c, d7, a, x[i + 14], 23, -35309556);
|
|
503
|
+
a = md5hh(a, b, c, d7, x[i + 1], 4, -1530992060);
|
|
504
|
+
d7 = md5hh(d7, a, b, c, x[i + 4], 11, 1272893353);
|
|
505
|
+
c = md5hh(c, d7, a, b, x[i + 7], 16, -155497632);
|
|
506
|
+
b = md5hh(b, c, d7, a, x[i + 10], 23, -1094730640);
|
|
507
|
+
a = md5hh(a, b, c, d7, x[i + 13], 4, 681279174);
|
|
508
|
+
d7 = md5hh(d7, a, b, c, x[i], 11, -358537222);
|
|
509
|
+
c = md5hh(c, d7, a, b, x[i + 3], 16, -722521979);
|
|
510
|
+
b = md5hh(b, c, d7, a, x[i + 6], 23, 76029189);
|
|
511
|
+
a = md5hh(a, b, c, d7, x[i + 9], 4, -640364487);
|
|
512
|
+
d7 = md5hh(d7, a, b, c, x[i + 12], 11, -421815835);
|
|
513
|
+
c = md5hh(c, d7, a, b, x[i + 15], 16, 530742520);
|
|
514
|
+
b = md5hh(b, c, d7, a, x[i + 2], 23, -995338651);
|
|
515
|
+
a = md5ii(a, b, c, d7, x[i], 6, -198630844);
|
|
516
|
+
d7 = md5ii(d7, a, b, c, x[i + 7], 10, 1126891415);
|
|
517
|
+
c = md5ii(c, d7, a, b, x[i + 14], 15, -1416354905);
|
|
518
|
+
b = md5ii(b, c, d7, a, x[i + 5], 21, -57434055);
|
|
519
|
+
a = md5ii(a, b, c, d7, x[i + 12], 6, 1700485571);
|
|
520
|
+
d7 = md5ii(d7, a, b, c, x[i + 3], 10, -1894986606);
|
|
521
|
+
c = md5ii(c, d7, a, b, x[i + 10], 15, -1051523);
|
|
522
|
+
b = md5ii(b, c, d7, a, x[i + 1], 21, -2054922799);
|
|
523
|
+
a = md5ii(a, b, c, d7, x[i + 8], 6, 1873313359);
|
|
524
|
+
d7 = md5ii(d7, a, b, c, x[i + 15], 10, -30611744);
|
|
525
|
+
c = md5ii(c, d7, a, b, x[i + 6], 15, -1560198380);
|
|
526
|
+
b = md5ii(b, c, d7, a, x[i + 13], 21, 1309151649);
|
|
527
|
+
a = md5ii(a, b, c, d7, x[i + 4], 6, -145523070);
|
|
528
|
+
d7 = md5ii(d7, a, b, c, x[i + 11], 10, -1120210379);
|
|
529
|
+
c = md5ii(c, d7, a, b, x[i + 2], 15, 718787259);
|
|
530
|
+
b = md5ii(b, c, d7, a, x[i + 9], 21, -343485551);
|
|
531
|
+
a = safeAdd(a, olda);
|
|
532
|
+
b = safeAdd(b, oldb);
|
|
533
|
+
c = safeAdd(c, oldc);
|
|
534
|
+
d7 = safeAdd(d7, oldd);
|
|
535
|
+
}
|
|
536
|
+
return Uint32Array.of(a, b, c, d7);
|
|
537
|
+
}
|
|
538
|
+
function uint8ToUint32(input) {
|
|
539
|
+
if (input.length === 0) {
|
|
540
|
+
return new Uint32Array();
|
|
541
|
+
}
|
|
542
|
+
const output = new Uint32Array(getOutputLength(input.length * 8)).fill(0);
|
|
543
|
+
for (let i = 0; i < input.length; i++) {
|
|
544
|
+
output[i >> 2] |= (input[i] & 255) << i % 4 * 8;
|
|
545
|
+
}
|
|
546
|
+
return output;
|
|
547
|
+
}
|
|
548
|
+
function safeAdd(x, y) {
|
|
549
|
+
const lsw = (x & 65535) + (y & 65535);
|
|
550
|
+
const msw = (x >> 16) + (y >> 16) + (lsw >> 16);
|
|
551
|
+
return msw << 16 | lsw & 65535;
|
|
552
|
+
}
|
|
553
|
+
function bitRotateLeft(num, cnt) {
|
|
554
|
+
return num << cnt | num >>> 32 - cnt;
|
|
555
|
+
}
|
|
556
|
+
function md5cmn(q, a, b, x, s, t) {
|
|
557
|
+
return safeAdd(bitRotateLeft(safeAdd(safeAdd(a, q), safeAdd(x, t)), s), b);
|
|
558
|
+
}
|
|
559
|
+
function md5ff(a, b, c, d7, x, s, t) {
|
|
560
|
+
return md5cmn(b & c | ~b & d7, a, b, x, s, t);
|
|
561
|
+
}
|
|
562
|
+
function md5gg(a, b, c, d7, x, s, t) {
|
|
563
|
+
return md5cmn(b & d7 | c & ~d7, a, b, x, s, t);
|
|
564
|
+
}
|
|
565
|
+
function md5hh(a, b, c, d7, x, s, t) {
|
|
566
|
+
return md5cmn(b ^ c ^ d7, a, b, x, s, t);
|
|
567
|
+
}
|
|
568
|
+
function md5ii(a, b, c, d7, x, s, t) {
|
|
569
|
+
return md5cmn(c ^ (b | ~d7), a, b, x, s, t);
|
|
570
|
+
}
|
|
571
|
+
var md5_default = md5;
|
|
572
|
+
|
|
573
|
+
// node_modules/uuid/dist/v35.js
|
|
574
|
+
function stringToBytes(str) {
|
|
575
|
+
str = unescape(encodeURIComponent(str));
|
|
576
|
+
const bytes = new Uint8Array(str.length);
|
|
577
|
+
for (let i = 0; i < str.length; ++i) {
|
|
578
|
+
bytes[i] = str.charCodeAt(i);
|
|
579
|
+
}
|
|
580
|
+
return bytes;
|
|
581
|
+
}
|
|
582
|
+
var DNS = "6ba7b810-9dad-11d1-80b4-00c04fd430c8";
|
|
583
|
+
var URL = "6ba7b811-9dad-11d1-80b4-00c04fd430c8";
|
|
584
|
+
function v35(version, hash, value, namespace, buf, offset) {
|
|
585
|
+
const valueBytes = typeof value === "string" ? stringToBytes(value) : value;
|
|
586
|
+
const namespaceBytes = typeof namespace === "string" ? parse_default(namespace) : namespace;
|
|
587
|
+
if (typeof namespace === "string") {
|
|
588
|
+
namespace = parse_default(namespace);
|
|
589
|
+
}
|
|
590
|
+
if ((namespace == null ? void 0 : namespace.length) !== 16) {
|
|
591
|
+
throw TypeError("Namespace must be array-like (16 iterable integer values, 0-255)");
|
|
592
|
+
}
|
|
593
|
+
let bytes = new Uint8Array(16 + valueBytes.length);
|
|
594
|
+
bytes.set(namespaceBytes);
|
|
595
|
+
bytes.set(valueBytes, namespaceBytes.length);
|
|
596
|
+
bytes = hash(bytes);
|
|
597
|
+
bytes[6] = bytes[6] & 15 | version;
|
|
598
|
+
bytes[8] = bytes[8] & 63 | 128;
|
|
599
|
+
if (buf) {
|
|
600
|
+
offset ??= 0;
|
|
601
|
+
if (offset < 0 || offset + 16 > buf.length) {
|
|
602
|
+
throw new RangeError(`UUID byte range ${offset}:${offset + 15} is out of buffer bounds`);
|
|
603
|
+
}
|
|
604
|
+
for (let i = 0; i < 16; ++i) {
|
|
605
|
+
buf[offset + i] = bytes[i];
|
|
606
|
+
}
|
|
607
|
+
return buf;
|
|
608
|
+
}
|
|
609
|
+
return unsafeStringify(bytes);
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
// node_modules/uuid/dist/v3.js
|
|
613
|
+
function v3(value, namespace, buf, offset) {
|
|
614
|
+
return v35(48, md5_default, value, namespace, buf, offset);
|
|
615
|
+
}
|
|
616
|
+
v3.DNS = DNS;
|
|
617
|
+
v3.URL = URL;
|
|
618
|
+
|
|
619
|
+
// node_modules/uuid/dist/v4.js
|
|
620
|
+
function v4(options, buf, offset) {
|
|
621
|
+
if (!buf && !options && crypto.randomUUID) {
|
|
622
|
+
return crypto.randomUUID();
|
|
623
|
+
}
|
|
624
|
+
return _v4(options, buf, offset);
|
|
625
|
+
}
|
|
626
|
+
function _v4(options, buf, offset) {
|
|
627
|
+
var _a;
|
|
628
|
+
options = options || {};
|
|
629
|
+
const rnds = options.random ?? ((_a = options.rng) == null ? void 0 : _a.call(options)) ?? rng();
|
|
630
|
+
if (rnds.length < 16) {
|
|
631
|
+
throw new Error("Random bytes length must be >= 16");
|
|
632
|
+
}
|
|
633
|
+
rnds[6] = rnds[6] & 15 | 64;
|
|
634
|
+
rnds[8] = rnds[8] & 63 | 128;
|
|
635
|
+
if (buf) {
|
|
636
|
+
offset = offset || 0;
|
|
637
|
+
if (offset < 0 || offset + 16 > buf.length) {
|
|
638
|
+
throw new RangeError(`UUID byte range ${offset}:${offset + 15} is out of buffer bounds`);
|
|
639
|
+
}
|
|
640
|
+
for (let i = 0; i < 16; ++i) {
|
|
641
|
+
buf[offset + i] = rnds[i];
|
|
642
|
+
}
|
|
643
|
+
return buf;
|
|
644
|
+
}
|
|
645
|
+
return unsafeStringify(rnds);
|
|
646
|
+
}
|
|
647
|
+
var v4_default = v4;
|
|
648
|
+
|
|
649
|
+
// node_modules/uuid/dist/sha1.js
|
|
650
|
+
function f(s, x, y, z) {
|
|
651
|
+
switch (s) {
|
|
652
|
+
case 0:
|
|
653
|
+
return x & y ^ ~x & z;
|
|
654
|
+
case 1:
|
|
655
|
+
return x ^ y ^ z;
|
|
656
|
+
case 2:
|
|
657
|
+
return x & y ^ x & z ^ y & z;
|
|
658
|
+
case 3:
|
|
659
|
+
return x ^ y ^ z;
|
|
660
|
+
}
|
|
661
|
+
}
|
|
662
|
+
function ROTL(x, n) {
|
|
663
|
+
return x << n | x >>> 32 - n;
|
|
664
|
+
}
|
|
665
|
+
function sha1(bytes) {
|
|
666
|
+
const K = [1518500249, 1859775393, 2400959708, 3395469782];
|
|
667
|
+
const H = [1732584193, 4023233417, 2562383102, 271733878, 3285377520];
|
|
668
|
+
const newBytes = new Uint8Array(bytes.length + 1);
|
|
669
|
+
newBytes.set(bytes);
|
|
670
|
+
newBytes[bytes.length] = 128;
|
|
671
|
+
bytes = newBytes;
|
|
672
|
+
const l = bytes.length / 4 + 2;
|
|
673
|
+
const N = Math.ceil(l / 16);
|
|
674
|
+
const M = new Array(N);
|
|
675
|
+
for (let i = 0; i < N; ++i) {
|
|
676
|
+
const arr = new Uint32Array(16);
|
|
677
|
+
for (let j = 0; j < 16; ++j) {
|
|
678
|
+
arr[j] = bytes[i * 64 + j * 4] << 24 | bytes[i * 64 + j * 4 + 1] << 16 | bytes[i * 64 + j * 4 + 2] << 8 | bytes[i * 64 + j * 4 + 3];
|
|
679
|
+
}
|
|
680
|
+
M[i] = arr;
|
|
681
|
+
}
|
|
682
|
+
M[N - 1][14] = (bytes.length - 1) * 8 / 2 ** 32;
|
|
683
|
+
M[N - 1][14] = Math.floor(M[N - 1][14]);
|
|
684
|
+
M[N - 1][15] = (bytes.length - 1) * 8 & 4294967295;
|
|
685
|
+
for (let i = 0; i < N; ++i) {
|
|
686
|
+
const W = new Uint32Array(80);
|
|
687
|
+
for (let t = 0; t < 16; ++t) {
|
|
688
|
+
W[t] = M[i][t];
|
|
689
|
+
}
|
|
690
|
+
for (let t = 16; t < 80; ++t) {
|
|
691
|
+
W[t] = ROTL(W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16], 1);
|
|
692
|
+
}
|
|
693
|
+
let a = H[0];
|
|
694
|
+
let b = H[1];
|
|
695
|
+
let c = H[2];
|
|
696
|
+
let d7 = H[3];
|
|
697
|
+
let e = H[4];
|
|
698
|
+
for (let t = 0; t < 80; ++t) {
|
|
699
|
+
const s = Math.floor(t / 20);
|
|
700
|
+
const T = ROTL(a, 5) + f(s, b, c, d7) + e + K[s] + W[t] >>> 0;
|
|
701
|
+
e = d7;
|
|
702
|
+
d7 = c;
|
|
703
|
+
c = ROTL(b, 30) >>> 0;
|
|
704
|
+
b = a;
|
|
705
|
+
a = T;
|
|
706
|
+
}
|
|
707
|
+
H[0] = H[0] + a >>> 0;
|
|
708
|
+
H[1] = H[1] + b >>> 0;
|
|
709
|
+
H[2] = H[2] + c >>> 0;
|
|
710
|
+
H[3] = H[3] + d7 >>> 0;
|
|
711
|
+
H[4] = H[4] + e >>> 0;
|
|
712
|
+
}
|
|
713
|
+
return Uint8Array.of(H[0] >> 24, H[0] >> 16, H[0] >> 8, H[0], H[1] >> 24, H[1] >> 16, H[1] >> 8, H[1], H[2] >> 24, H[2] >> 16, H[2] >> 8, H[2], H[3] >> 24, H[3] >> 16, H[3] >> 8, H[3], H[4] >> 24, H[4] >> 16, H[4] >> 8, H[4]);
|
|
714
|
+
}
|
|
715
|
+
var sha1_default = sha1;
|
|
716
|
+
|
|
717
|
+
// node_modules/uuid/dist/v5.js
|
|
718
|
+
function v5(value, namespace, buf, offset) {
|
|
719
|
+
return v35(80, sha1_default, value, namespace, buf, offset);
|
|
720
|
+
}
|
|
721
|
+
v5.DNS = DNS;
|
|
722
|
+
v5.URL = URL;
|
|
723
|
+
|
|
402
724
|
// src/common/uid-generator.ts
|
|
403
|
-
var
|
|
404
|
-
var generateUID = import_uuid.v4;
|
|
725
|
+
var generateUID = v4_default;
|
|
405
726
|
|
|
406
727
|
// src/common/target-helper.ts
|
|
407
728
|
var _TargetHelper = class _TargetHelper {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "accessibility-insights-report",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.5.0",
|
|
4
4
|
"description": "Accessibility Insights Report",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"files": [
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@fluentui/react": "^8.118.1",
|
|
22
|
-
"axe-core": "4.
|
|
22
|
+
"axe-core": "4.11.3",
|
|
23
23
|
"classnames": "^2.5.1",
|
|
24
|
-
"lodash": "^4.
|
|
24
|
+
"lodash": "^4.18.0",
|
|
25
25
|
"luxon": "^3.5.0",
|
|
26
26
|
"react": "^18.3.1",
|
|
27
27
|
"react-dom": "^18.3.1",
|
|
28
28
|
"react-helmet-async": "^2.0.5",
|
|
29
|
-
"uuid": "^
|
|
29
|
+
"uuid": "^14.0.0"
|
|
30
30
|
}
|
|
31
31
|
}
|