@stackoverflow/stacks 1.10.2 → 1.10.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.
Files changed (33) hide show
  1. package/dist/css/stacks.css +4 -0
  2. package/dist/css/stacks.min.css +1 -1
  3. package/dist/js/stacks.js +265 -110
  4. package/dist/js/stacks.min.js +1 -1
  5. package/lib/atomic/typography.less +4 -0
  6. package/lib/components/activity-indicator/activity-indicator.a11y.test.ts +7 -5
  7. package/lib/components/anchor/anchor.a11y.test.ts +10 -3
  8. package/lib/components/badge/badge.a11y.test.ts +45 -6
  9. package/lib/components/badge/badge.visual.test.ts +27 -5
  10. package/lib/components/banner/banner.a11y.test.ts +14 -0
  11. package/lib/components/block-link/block-link.a11y.test.ts +9 -2
  12. package/lib/components/breadcrumbs/breadcrumbs.a11y.test.ts +2 -0
  13. package/lib/components/button/button.a11y.test.ts +132 -1
  14. package/lib/components/card/card.a11y.test.ts +6 -0
  15. package/lib/components/check-control/check-control.a11y.test.ts +9 -1
  16. package/lib/components/description/description.a11y.test.ts +5 -1
  17. package/lib/components/expandable/expandable.a11y.test.ts +27 -0
  18. package/lib/components/expandable/expandable.visual.test.ts +27 -0
  19. package/lib/components/link/link.a11y.test.ts +19 -6
  20. package/lib/components/link-preview/link-preview.a11y.test.ts +55 -0
  21. package/lib/components/link-preview/link-preview.visual.test.ts +52 -0
  22. package/lib/components/toggle-switch/toggle-switch.a11y.test.ts +5 -2
  23. package/lib/components/toggle-switch/toggle-switch.less +1 -0
  24. package/lib/components/toggle-switch/toggle-switch.visual.test.ts +12 -11
  25. package/lib/test/axe-apca/README.md +34 -0
  26. package/lib/test/axe-apca/index.ts +3 -0
  27. package/lib/test/axe-apca/package.wip.json +30 -0
  28. package/lib/test/axe-apca/src/apca-w3.d.ts +3 -0
  29. package/lib/test/axe-apca/src/axe-apca.test.ts +155 -0
  30. package/lib/test/axe-apca/src/axe-apca.ts +212 -0
  31. package/lib/test/test-utils.ts +18 -1
  32. package/lib/tsconfig.json +1 -0
  33. package/package.json +13 -12
@@ -5914,6 +5914,7 @@ input[type="checkbox"].s-toggle-switch {
5914
5914
  background-repeat: no-repeat;
5915
5915
  border-radius: 1000px;
5916
5916
  cursor: pointer;
5917
+ flex-shrink: 0;
5917
5918
  height: var(--su-static24);
5918
5919
  margin: 0;
5919
5920
  transition: background-position 0.2s ease;
@@ -17017,6 +17018,9 @@ p {
17017
17018
  .ow-normal {
17018
17019
  overflow-wrap: normal !important;
17019
17020
  }
17021
+ .ow-anywhere {
17022
+ overflow-wrap: anywhere !important;
17023
+ }
17020
17024
  .ow-break-word {
17021
17025
  overflow-wrap: break-word !important;
17022
17026
  }