@stackoverflow/stacks 1.10.1 → 1.10.3

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 (35) hide show
  1. package/dist/css/stacks.css +3 -1
  2. package/dist/css/stacks.min.css +1 -1
  3. package/dist/js/stacks.js +266 -110
  4. package/dist/js/stacks.min.js +1 -1
  5. package/lib/components/activity-indicator/activity-indicator.a11y.test.ts +7 -5
  6. package/lib/components/anchor/anchor.a11y.test.ts +10 -3
  7. package/lib/components/badge/badge.a11y.test.ts +160 -0
  8. package/lib/components/badge/badge.visual.test.ts +150 -0
  9. package/lib/components/banner/banner.a11y.test.ts +14 -0
  10. package/lib/components/block-link/block-link.a11y.test.ts +9 -2
  11. package/lib/components/breadcrumbs/breadcrumbs.a11y.test.ts +2 -0
  12. package/lib/components/button/button.a11y.test.ts +132 -1
  13. package/lib/components/card/card.a11y.test.ts +6 -0
  14. package/lib/components/check-control/check-control.a11y.test.ts +48 -0
  15. package/lib/components/check-control/check-control.visual.test.ts +38 -0
  16. package/lib/components/check-group/check-group.a11y.test.ts +51 -0
  17. package/lib/components/check-group/check-group.visual.test.ts +58 -0
  18. package/lib/components/checkbox_radio/checkbox_radio.a11y.test.ts +39 -0
  19. package/lib/components/checkbox_radio/checkbox_radio.visual.test.ts +35 -0
  20. package/lib/components/description/description.a11y.test.ts +34 -0
  21. package/lib/components/description/description.visual.test.ts +30 -0
  22. package/lib/components/link/link.a11y.test.ts +19 -6
  23. package/lib/components/toggle-switch/toggle-switch.a11y.test.ts +76 -0
  24. package/lib/components/toggle-switch/toggle-switch.less +2 -1
  25. package/lib/components/toggle-switch/toggle-switch.visual.test.ts +74 -0
  26. package/lib/components/uploader/uploader.ts +1 -0
  27. package/lib/test/axe-apca/README.md +34 -0
  28. package/lib/test/axe-apca/index.ts +3 -0
  29. package/lib/test/axe-apca/package.wip.json +30 -0
  30. package/lib/test/axe-apca/src/apca-w3.d.ts +3 -0
  31. package/lib/test/axe-apca/src/axe-apca.test.ts +155 -0
  32. package/lib/test/axe-apca/src/axe-apca.ts +212 -0
  33. package/lib/test/test-utils.ts +18 -1
  34. package/lib/tsconfig.json +1 -0
  35. package/package.json +18 -17
@@ -5842,7 +5842,9 @@ body.theme-highcontrast a.s-tag:not(.is-selected):active {
5842
5842
  --_ts-multiple-fc: var(--black-500);
5843
5843
  }
5844
5844
  fieldset[disabled] .s-toggle-switch,
5845
- fieldset[disabled] .s-toggle-switch label {
5845
+ .s-toggle-switch[disabled],
5846
+ fieldset[disabled] .s-toggle-switch label,
5847
+ .s-toggle-switch[disabled] label {
5846
5848
  cursor: not-allowed;
5847
5849
  opacity: var(--_o-disabled-static);
5848
5850
  }