accessibility-insights-report 4.7.2 → 4.8.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.
Files changed (2) hide show
  1. package/drop/index.js +173 -24
  2. package/package.json +5 -5
package/drop/index.js CHANGED
@@ -266,9 +266,12 @@ var getA11yInsightsWebRuleUrl = (ruleId) => {
266
266
  var webRulesWithResources = [
267
267
  "aria-alt",
268
268
  "aria-allowed-attr",
269
+ "aria-conditional-attr",
270
+ "aria-deprecated-role",
269
271
  "aria-hidden-body",
270
272
  "aria-hidden-focus",
271
273
  "aria-input-field-name",
274
+ "aria-prohibited-attr",
272
275
  "aria-required-attr",
273
276
  "aria-required-attr",
274
277
  "aria-required-children",
@@ -1107,6 +1110,15 @@ var MinimalRuleHeader = NamedFC("MinimalRuleHeader", (props) => {
1107
1110
  // src/common/components/cards/rule-content.tsx
1108
1111
  var React33 = __toESM(require("react"));
1109
1112
 
1113
+ // src/common/configs/needs-review-rule-resources.ts
1114
+ var needsReviewRuleResourcesPath = "https://accessibilityinsights.io/info-examples/web/needs-review";
1115
+ var isOutcomeNeedsReview = (outcomeType) => {
1116
+ return outcomeType === "review";
1117
+ };
1118
+ var getNeedsReviewRuleResourcesUrl = (ruleId) => {
1119
+ return `${needsReviewRuleResourcesPath}/${ruleId}`;
1120
+ };
1121
+
1110
1122
  // src/common/components/cards/instance-details-group.tsx
1111
1123
  var React29 = __toESM(require("react"));
1112
1124
 
@@ -1205,6 +1217,9 @@ var RichResolutionContent = NamedFC(
1205
1217
  case "web/color-contrast": {
1206
1218
  return /* @__PURE__ */ React18.createElement("div", { className: rich_resolution_content_default.combinationLists }, /* @__PURE__ */ React18.createElement("ul", { className: rich_resolution_content_default.multiLineTextYesBullet }, /* @__PURE__ */ React18.createElement("li", null, "If the instance is an icon or other non-text content, ignore it. This rule applies only to text."), /* @__PURE__ */ React18.createElement("li", null, "If the instance is text, use", " ", /* @__PURE__ */ React18.createElement(LinkComponent, { href: "https://go.microsoft.com/fwlink/?linkid=2075365" }, "Accessibility Insights for Windows"), " ", "(or the", " ", /* @__PURE__ */ React18.createElement(LinkComponent, { href: "https://developer.paciellogroup.com/resources/contrastanalyser/" }, "Colour Contrast Analyser"), " ", "if you're testing on a Mac) to manually verify that it has sufficient contrast compared to the background. If the background is an image or gradient, test an area where contrast appears to be lowest.")), /* @__PURE__ */ React18.createElement("ul", { className: rich_resolution_content_default.multiLineTextNoBullet }, /* @__PURE__ */ React18.createElement("li", null, "For detailed test instructions, see", " ", /* @__PURE__ */ React18.createElement(Term, null, "Assessment ", ">", " Adaptable content ", ">", " Contrast"), ".")));
1207
1219
  }
1220
+ case "web/duplicate-id-aria": {
1221
+ return /* @__PURE__ */ React18.createElement("div", null, "Document has multiple elements referenced with ARIA with the same id attribute. Examine any duplicate ID values and rename them. Duplicate IDs are common validation errors that may break the accessibility of labels, e.g., form fields, table header cells.");
1222
+ }
1208
1223
  case "web/th-has-data-cells": {
1209
1224
  return /* @__PURE__ */ React18.createElement("div", null, "Examine the header cell in the context of the table to verify that it has no data cells.");
1210
1225
  }
@@ -1873,28 +1888,33 @@ var React32 = __toESM(require("react"));
1873
1888
  var rule_resources_default = { "ruleMoreResources": "rule-more-resources--uw9mc", "moreResourcesTitle": "more-resources-title--jOuUL", "ruleDetailsId": "rule-details-id--s-TpO", "ruleGuidance": "rule-guidance--TIQgm" };
1874
1889
 
1875
1890
  // src/common/components/cards/rule-resources.tsx
1876
- var RuleResources = NamedFC("RuleResources", ({ deps, rule }) => {
1877
- if (rule.url == null && (0, import_lodash9.isEmpty)(rule.guidance)) {
1878
- return null;
1879
- }
1880
- const renderTitle = () => /* @__PURE__ */ React32.createElement("div", { className: rule_resources_default.moreResourcesTitle }, "Resources for this rule");
1881
- const renderRuleLink = () => {
1882
- if (rule.url == null) {
1891
+ var RuleResources = NamedFC(
1892
+ "RuleResources",
1893
+ ({ deps, rule, outcomeType }) => {
1894
+ if (rule.url == null && (0, import_lodash9.isEmpty)(rule.guidance)) {
1883
1895
  return null;
1884
1896
  }
1885
- const ruleId = rule.id;
1886
- const ruleUrl = rule.url;
1887
- return /* @__PURE__ */ React32.createElement("span", { className: rule_resources_default.ruleDetailsId }, /* @__PURE__ */ React32.createElement(deps.LinkComponent, { href: ruleUrl }, "More information about ", ruleId));
1888
- };
1889
- const renderGuidanceLinks = () => {
1890
- return /* @__PURE__ */ React32.createElement(GuidanceLinks, { links: rule.guidance, LinkComponent: deps.LinkComponent });
1891
- };
1892
- const renderGuidanceTags = () => /* @__PURE__ */ React32.createElement(GuidanceTags, { deps, links: rule.guidance });
1893
- return /* @__PURE__ */ React32.createElement("div", { className: rule_resources_default.ruleMoreResources }, renderTitle(), renderRuleLink(), /* @__PURE__ */ React32.createElement("span", { className: rule_resources_default.ruleGuidance }, renderGuidanceLinks(), renderGuidanceTags()));
1894
- });
1897
+ const renderTitle = () => /* @__PURE__ */ React32.createElement("div", { className: rule_resources_default.moreResourcesTitle }, "Resources for this rule");
1898
+ const renderRuleLink = () => {
1899
+ if (rule.url == null) {
1900
+ return null;
1901
+ }
1902
+ const ruleId = rule.id;
1903
+ const ruleUrl = deps.IsOutcomeNeedsReview(outcomeType) ? deps.GetNeedsReviewRuleResourcesUrl(ruleId) : rule.url;
1904
+ return /* @__PURE__ */ React32.createElement("span", { className: rule_resources_default.ruleDetailsId }, /* @__PURE__ */ React32.createElement(deps.LinkComponent, { href: ruleUrl }, "More information about ", ruleId));
1905
+ };
1906
+ const renderGuidanceLinks = () => {
1907
+ return /* @__PURE__ */ React32.createElement(GuidanceLinks, { links: rule.guidance, LinkComponent: deps.LinkComponent });
1908
+ };
1909
+ const renderGuidanceTags = () => /* @__PURE__ */ React32.createElement(GuidanceTags, { deps, links: rule.guidance });
1910
+ return /* @__PURE__ */ React32.createElement("div", { className: rule_resources_default.ruleMoreResources }, renderTitle(), renderRuleLink(), /* @__PURE__ */ React32.createElement("span", { className: rule_resources_default.ruleGuidance }, renderGuidanceLinks(), renderGuidanceTags()));
1911
+ }
1912
+ );
1895
1913
 
1896
1914
  // src/common/components/cards/rule-content.tsx
1897
1915
  var RuleContent = NamedFC("RuleContent", (props) => {
1916
+ props.deps.GetNeedsReviewRuleResourcesUrl = getNeedsReviewRuleResourcesUrl;
1917
+ props.deps.IsOutcomeNeedsReview = isOutcomeNeedsReview;
1898
1918
  return /* @__PURE__ */ React33.createElement(React33.Fragment, null, /* @__PURE__ */ React33.createElement(RuleResources, { ...props }), /* @__PURE__ */ React33.createElement(InstanceDetailsGroup, { ...props }));
1899
1919
  });
1900
1920
 
@@ -1936,6 +1956,7 @@ var RulesWithInstances = NamedFC(
1936
1956
  key: `${rule.id}-rule-group`,
1937
1957
  deps,
1938
1958
  rule,
1959
+ outcomeType,
1939
1960
  userConfigurationStoreData,
1940
1961
  targetAppInfo,
1941
1962
  cardSelectionMessageCreator,
@@ -1979,7 +2000,6 @@ var ResultSectionContent = NamedFC(
1979
2000
  const {
1980
2001
  results,
1981
2002
  outcomeType,
1982
- fixInstructionProcessor,
1983
2003
  deps,
1984
2004
  userConfigurationStoreData,
1985
2005
  targetAppInfo,
@@ -2003,7 +2023,6 @@ var ResultSectionContent = NamedFC(
2003
2023
  deps,
2004
2024
  rules: results,
2005
2025
  outcomeType,
2006
- fixInstructionProcessor,
2007
2026
  userConfigurationStoreData,
2008
2027
  targetAppInfo,
2009
2028
  outcomeCounter,
@@ -2862,8 +2881,7 @@ var makeCombinedReportRulesOnlySection = (options) => NamedFC(
2862
2881
  {
2863
2882
  outcomeCount: cardRuleResults.length,
2864
2883
  outcomeType,
2865
- title: title2,
2866
- titleSize: "title"
2884
+ title: title2
2867
2885
  }
2868
2886
  ),
2869
2887
  content: /* @__PURE__ */ React66.createElement(
@@ -3066,8 +3084,7 @@ var CollapsibleUrlResultSection = NamedFC(
3066
3084
  id: containerId,
3067
3085
  header: /* @__PURE__ */ React73.createElement(ResultSectionTitle, { ...props, titleSize: "heading" }),
3068
3086
  content,
3069
- headingLevel: 3,
3070
- deps: null
3087
+ headingLevel: 3
3071
3088
  });
3072
3089
  return /* @__PURE__ */ React73.createElement("div", { className: collapsible_url_result_section_default.urlResultSection }, CollapsibleContent);
3073
3090
  }
@@ -4635,9 +4652,17 @@ var guidanceTags = {
4635
4652
  id: "WCAG_2_1",
4636
4653
  displayText: "New for WCAG 2.1"
4637
4654
  },
4655
+ WCAG_2_2: {
4656
+ id: "WCAG_2_2",
4657
+ displayText: "New for WCAG 2.2"
4658
+ },
4638
4659
  BEST_PRACTICE: {
4639
4660
  id: "BEST_PRACTICE",
4640
4661
  displayText: "Best Practice"
4662
+ },
4663
+ WCAG_2_2_DEPRECATION: {
4664
+ id: "WCAG_2_2",
4665
+ displayText: "Deprecated for WCAG 2.2"
4641
4666
  }
4642
4667
  };
4643
4668
 
@@ -4676,21 +4701,27 @@ var axeTagToGuidelineKeyMap = {
4676
4701
  wcag245: "WCAG 2.4.5",
4677
4702
  wcag246: "WCAG 2.4.6",
4678
4703
  wcag247: "WCAG 2.4.7",
4704
+ wcag2411: "WCAG 2.4.11",
4679
4705
  wcag251: "WCAG 2.5.1",
4680
4706
  wcag252: "WCAG 2.5.2",
4681
4707
  wcag253: "WCAG 2.5.3",
4682
4708
  wcag254: "WCAG 2.5.4",
4683
4709
  wcag255: "WCAG 2.5.5",
4710
+ wcag257: "WCAG 2.5.7",
4711
+ wcag258: "WCAG 2.5.8",
4684
4712
  wcag311: "WCAG 3.1.1",
4685
4713
  wcag312: "WCAG 3.1.2",
4686
4714
  wcag321: "WCAG 3.2.1",
4687
4715
  wcag322: "WCAG 3.2.2",
4688
4716
  wcag323: "WCAG 3.2.3",
4689
4717
  wcag324: "WCAG 3.2.4",
4718
+ wcag326: "WCAG 3.2.6",
4690
4719
  wcag331: "WCAG 3.3.1",
4691
4720
  wcag332: "WCAG 3.3.2",
4692
4721
  wcag333: "WCAG 3.3.3",
4693
4722
  wcag334: "WCAG 3.3.4",
4723
+ wcag337: "WCAG 3.3.7",
4724
+ wcag338: "WCAG 3.3.8",
4694
4725
  wcag411: "WCAG 4.1.1",
4695
4726
  wcag412: "WCAG 4.1.2",
4696
4727
  wcag413: "WCAG 4.1.3"
@@ -5001,6 +5032,16 @@ var guidelineMetadata = {
5001
5032
  },
5002
5033
  // wcag248: intentionally omitted, AAA
5003
5034
  // wcag249: intentionally omitted, AAA
5035
+ // wcag2410: intentionally omitted, AAA
5036
+ "WCAG 2.4.11": {
5037
+ number: "2.4.11",
5038
+ axeTag: "wcag2411",
5039
+ name: "Focus Appearance",
5040
+ linkName: "WCAG 2.4.11",
5041
+ linkTag: "WCAG_2_4_11",
5042
+ link: "https://www.w3.org/WAI/WCAG22/Understanding/focus-appearance-minimum.html",
5043
+ guidanceTags: [guidanceTags.WCAG_2_2]
5044
+ },
5004
5045
  "WCAG 2.5.1": {
5005
5046
  number: "2.5.1",
5006
5047
  axeTag: "wcag251",
@@ -5046,6 +5087,25 @@ var guidelineMetadata = {
5046
5087
  link: "https://www.w3.org/WAI/WCAG21/Understanding/target-size.html",
5047
5088
  guidanceTags: []
5048
5089
  },
5090
+ // wcag256: intentionally omitted, AAA
5091
+ "WCAG 2.5.7": {
5092
+ number: "2.5.7",
5093
+ axeTag: "wcag257",
5094
+ name: "Dragging Movements",
5095
+ linkName: "WCAG 2.5.7",
5096
+ linkTag: "WCAG_2_5_7",
5097
+ link: "https://www.w3.org/WAI/WCAG22/Understanding/dragging-movements.html",
5098
+ guidanceTags: [guidanceTags.WCAG_2_2]
5099
+ },
5100
+ "WCAG 2.5.8": {
5101
+ number: "2.5.8",
5102
+ axeTag: "wcag258",
5103
+ name: "Target Size",
5104
+ linkName: "WCAG 2.5.8",
5105
+ linkTag: "WCAG_2_5_8",
5106
+ link: "https://www.w3.org/WAI/WCAG22/Understanding/target-size-minimum.html",
5107
+ guidanceTags: [guidanceTags.WCAG_2_2]
5108
+ },
5049
5109
  "WCAG 3.1.1": {
5050
5110
  number: "3.1.1",
5051
5111
  axeTag: "wcag311",
@@ -5101,6 +5161,15 @@ var guidelineMetadata = {
5101
5161
  guidanceTags: []
5102
5162
  },
5103
5163
  // wcag325: intentionally omitted, AAA
5164
+ "WCAG 3.2.6": {
5165
+ number: "3.2.6",
5166
+ axeTag: "wcag326",
5167
+ name: "Consistent Help",
5168
+ linkName: "WCAG 3.2.6",
5169
+ linkTag: "WCAG_3_2_6",
5170
+ link: "https://www.w3.org/WAI/WCAG22/Understanding/consistent-help.html",
5171
+ guidanceTags: [guidanceTags.WCAG_2_2]
5172
+ },
5104
5173
  "WCAG 3.3.1": {
5105
5174
  number: "3.3.1",
5106
5175
  axeTag: "wcag331",
@@ -5137,6 +5206,25 @@ var guidelineMetadata = {
5137
5206
  link: "https://www.w3.org/WAI/WCAG21/Understanding/error-prevention-legal-financial-data.html",
5138
5207
  guidanceTags: []
5139
5208
  },
5209
+ // wcag335: intentionally omitted, AAA
5210
+ "WCAG 3.3.7": {
5211
+ number: "3.3.7",
5212
+ axeTag: "wcag337",
5213
+ name: "Redundant Entry",
5214
+ linkName: "WCAG 3.3.7",
5215
+ linkTag: "WCAG_3_3_7",
5216
+ link: "https://www.w3.org/WAI/WCAG22/Understanding/redundant-entry.html",
5217
+ guidanceTags: [guidanceTags.WCAG_2_2]
5218
+ },
5219
+ "WCAG 3.3.8": {
5220
+ number: "3.3.8",
5221
+ axeTag: "wcag338",
5222
+ name: "Accessible Authentication",
5223
+ linkName: "WCAG 3.3.8",
5224
+ linkTag: "WCAG_3_3_8",
5225
+ link: "https://www.w3.org/WAI/WCAG22/Understanding/accessible-authentication-minimum.html",
5226
+ guidanceTags: [guidanceTags.WCAG_2_2]
5227
+ },
5140
5228
  "WCAG 4.1.1": {
5141
5229
  number: "4.1.1",
5142
5230
  axeTag: "wcag411",
@@ -5144,7 +5232,7 @@ var guidelineMetadata = {
5144
5232
  linkName: "WCAG 4.1.1",
5145
5233
  linkTag: "WCAG_4_1_1",
5146
5234
  link: "https://www.w3.org/WAI/WCAG21/Understanding/parsing.html",
5147
- guidanceTags: []
5235
+ guidanceTags: [guidanceTags.WCAG_2_2_DEPRECATION]
5148
5236
  },
5149
5237
  "WCAG 4.1.2": {
5150
5238
  number: "4.1.2",
@@ -5211,21 +5299,27 @@ var link = {
5211
5299
  WCAG_2_4_5: guidanceLinkTo("WCAG 2.4.5"),
5212
5300
  WCAG_2_4_6: guidanceLinkTo("WCAG 2.4.6"),
5213
5301
  WCAG_2_4_7: guidanceLinkTo("WCAG 2.4.7"),
5302
+ WCAG_2_4_11: guidanceLinkTo("WCAG 2.4.11"),
5214
5303
  WCAG_2_5_1: guidanceLinkTo("WCAG 2.5.1"),
5215
5304
  WCAG_2_5_2: guidanceLinkTo("WCAG 2.5.2"),
5216
5305
  WCAG_2_5_3: guidanceLinkTo("WCAG 2.5.3"),
5217
5306
  WCAG_2_5_4: guidanceLinkTo("WCAG 2.5.4"),
5218
5307
  WCAG_2_5_5: guidanceLinkTo("WCAG 2.5.5"),
5308
+ WCAG_2_5_7: guidanceLinkTo("WCAG 2.5.7"),
5309
+ WCAG_2_5_8: guidanceLinkTo("WCAG 2.5.8"),
5219
5310
  WCAG_3_1_1: guidanceLinkTo("WCAG 3.1.1"),
5220
5311
  WCAG_3_1_2: guidanceLinkTo("WCAG 3.1.2"),
5221
5312
  WCAG_3_2_1: guidanceLinkTo("WCAG 3.2.1"),
5222
5313
  WCAG_3_2_2: guidanceLinkTo("WCAG 3.2.2"),
5223
5314
  WCAG_3_2_3: guidanceLinkTo("WCAG 3.2.3"),
5224
5315
  WCAG_3_2_4: guidanceLinkTo("WCAG 3.2.4"),
5316
+ WCAG_3_2_6: guidanceLinkTo("WCAG 3.2.6"),
5225
5317
  WCAG_3_3_1: guidanceLinkTo("WCAG 3.3.1"),
5226
5318
  WCAG_3_3_2: guidanceLinkTo("WCAG 3.3.2"),
5227
5319
  WCAG_3_3_3: guidanceLinkTo("WCAG 3.3.3"),
5228
5320
  WCAG_3_3_4: guidanceLinkTo("WCAG 3.3.4"),
5321
+ WCAG_3_3_7: guidanceLinkTo("WCAG 3.3.7"),
5322
+ WCAG_3_3_8: guidanceLinkTo("WCAG 3.3.8"),
5229
5323
  WCAG_4_1_1: guidanceLinkTo("WCAG 4.1.1"),
5230
5324
  WCAG_4_1_2: guidanceLinkTo("WCAG 4.1.2"),
5231
5325
  WCAG_4_1_3: guidanceLinkTo("WCAG 4.1.3"),
@@ -5284,6 +5378,61 @@ var link = {
5284
5378
  WCAG21TechniquesG202: linkTo(
5285
5379
  "Ensuring keyboard control for all functionality",
5286
5380
  "https://www.w3.org/WAI/WCAG21/Techniques/general/G202"
5381
+ ),
5382
+ WCAG22CognitiveAccessibilityRoadmapAndGapAnalysisTable3: linkTo(
5383
+ "Cognitive Accessibility Roadmap and Gap Analysis",
5384
+ "https://www.w3.org/TR/coga-gap-analysis/#table3"
5385
+ ),
5386
+ WCAG22CognitiveAccessibilityRoadmapAndGapAnalysisTable6: linkTo(
5387
+ "Cognitive Accessibility Roadmap and Gap Analysis",
5388
+ "https://www.w3.org/TR/coga-gap-analysis/#table6"
5389
+ ),
5390
+ WCAG22MakingContentUsableForPeopleWithCognitiveAndLearningDisabilities: linkTo(
5391
+ "Making Content Usable for People with Cognitive and Learning Disabilities",
5392
+ "https://www.w3.org/TR/coga-usable/#make-it-easy-%20%20%20%20%20%20%20%20%20%20%20%20%20to-find-help-and-give-feedback-pattern"
5393
+ ),
5394
+ WCAG22TargetSizeStudyForOneHandedThumbUseOnSmallTouchscreenDevices: linkTo(
5395
+ "Target size study for one-handed thumb use on small touchscreen devices",
5396
+ "https://dl.acm.org/doi/10.1145/1152215.1152260"
5397
+ ),
5398
+ WCAG22TechniquesC42: linkTo(
5399
+ "Using min-height and min-width to ensure sufficient target spacing",
5400
+ "https://www.w3.org/WAI/WCAG22/Techniques/css/C42"
5401
+ ),
5402
+ WCAG22TechniquesC43: linkTo("Using CSS scroll-padding to un-obscure content", "https://www.w3.org/WAI/WCAG22/Techniques/css/C43"),
5403
+ WCAG22TechniquesF105: linkTo(
5404
+ "Failure of Success Criterion 2.5.1 due to providing functionality via a path-based gesture without simple pointer alternative",
5405
+ "https://www.w3.org/WAI/WCAG22/Techniques/failures/F105"
5406
+ ),
5407
+ WCAG22TechniquesF108: linkTo(
5408
+ "Failure of Success Criterion 2.5.7 Dragging Movements due to not providing a single pointer method for the user to operate a function that does not require a dragging movement",
5409
+ "https://www.w3.org/WAI/WCAG22/Techniques/failures/F108"
5410
+ ),
5411
+ WCAG22TechniquesF110: linkTo(
5412
+ "Failure of Success Criterion 2.4.11 due to a sticky footers or headers hiding focused elements",
5413
+ "https://www.w3.org/WAI/WCAG20/Techniques/failures/F110"
5414
+ ),
5415
+ WCAG22TechniquesG215: linkTo(
5416
+ "Providing controls to achieve the same result as path based or multipoint gestures",
5417
+ "https://www.w3.org/WAI/WCAG22/Techniques/general/G215"
5418
+ ),
5419
+ WCAG22TechniquesG216: linkTo(
5420
+ "Providing single point activation for a control slider",
5421
+ "https://www.w3.org/WAI/WCAG22/Techniques/general/G216"
5422
+ ),
5423
+ WCAG22TechniquesG218: linkTo("Email link authentication", "https://www.w3.org/WAI/WCAG22/Techniques/general/G218"),
5424
+ WCAG22TechniquesG219: linkTo(
5425
+ "Ensuring that an alternative is available for dragging movements that operate on content",
5426
+ "https://www.w3.org/WAI/WCAG22/Techniques/general/G219"
5427
+ ),
5428
+ WCAG22TechniquesG220: linkTo(
5429
+ "Provide a contact-us link in a consistent location",
5430
+ "https://www.w3.org/WAI/WCAG22/Techniques/general/G220"
5431
+ ),
5432
+ WCAG22TechniquesG221: linkTo("Provide data from a previous step in a process", "https://www.w3.org/WAI/WCAG22/Techniques/general/G221"),
5433
+ WCAG22TechniquesH100: linkTo(
5434
+ "Providing properly marked up email and password inputs",
5435
+ "https://www.w3.org/WAI/WCAG22/Techniques/html/H100"
5287
5436
  )
5288
5437
  };
5289
5438
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "accessibility-insights-report",
3
- "version": "4.7.2",
3
+ "version": "4.8.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.96.1",
22
- "axe-core": "4.7.2",
23
- "classnames": "^2.3.2",
22
+ "axe-core": "4.8.4",
23
+ "classnames": "^2.5.1",
24
24
  "lodash": "^4.17.21",
25
- "luxon": "^3.4.2",
25
+ "luxon": "^3.4.4",
26
26
  "react": "^16.14.0",
27
27
  "react-dom": "^16.14.0",
28
28
  "react-helmet": "^6.1.0",
29
- "uuid": "^9.0.0"
29
+ "uuid": "^9.0.1"
30
30
  }
31
31
  }