natura11y 3.0.2 → 4.0.0-alpha

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 (45) hide show
  1. package/README.md +17 -0
  2. package/dist/natura11y.css +1 -1
  3. package/dist/natura11y.js +1 -1
  4. package/package.json +1 -1
  5. package/src/index.js +8 -4
  6. package/src/js/accordion.js +109 -196
  7. package/src/js/alert.js +27 -29
  8. package/src/js/backdrop.js +72 -0
  9. package/src/js/collapse.js +62 -44
  10. package/src/js/form.js +181 -304
  11. package/src/js/lightbox.js +380 -424
  12. package/src/js/modal.js +88 -82
  13. package/src/js/navigation.js +109 -72
  14. package/src/js/tab.js +68 -71
  15. package/src/js/table.js +59 -58
  16. package/src/js/track.js +309 -0
  17. package/src/js/utilities/eventDelegation.js +42 -0
  18. package/src/js/utilities/focus.js +1 -0
  19. package/src/js/utilities/keyboardNavigation.js +46 -0
  20. package/src/js/utilities/overlay.js +6 -10
  21. package/src/scss/_accordion.scss +76 -37
  22. package/src/scss/_alert.scss +5 -13
  23. package/src/scss/_assistive.scss +81 -43
  24. package/src/scss/_backdrop.scss +30 -16
  25. package/src/scss/_border.scss +18 -2
  26. package/src/scss/_breakpoint.scss +4 -4
  27. package/src/scss/_button.scss +36 -133
  28. package/src/scss/_card.scss +72 -6
  29. package/src/scss/_collapse.scss +1 -1
  30. package/src/scss/_color.scss +28 -8
  31. package/src/scss/_container.scss +4 -4
  32. package/src/scss/_document.scss +2 -0
  33. package/src/scss/_form.scss +47 -57
  34. package/src/scss/_gradient.scss +101 -0
  35. package/src/scss/_icon.scss +4 -5
  36. package/src/scss/_lightbox.scss +1 -1
  37. package/src/scss/_link.scss +7 -0
  38. package/src/scss/_modal.scss +14 -14
  39. package/src/scss/_navigation.scss +349 -168
  40. package/src/scss/_tab.scss +72 -58
  41. package/src/scss/_table.scss +8 -9
  42. package/src/scss/_track.scss +287 -0
  43. package/src/scss/{natura11y.scss → index.scss} +3 -2
  44. package/src/js/button.js +0 -87
  45. package/src/scss/_accent.scss +0 -166
package/README.md CHANGED
@@ -29,6 +29,23 @@ Related:
29
29
  - [Repo: Natura11y Icons](https://github.com/cavidano/natura11y-icons)
30
30
  - [Repo: Natura11y React Components](https://github.com/cavidano/natura11y-react)
31
31
  - [Docs: Natura11y Docs](https://gonatura11y.com)
32
+
33
+ ---
34
+
35
+ ## Branch Naming Conventions
36
+
37
+ To keep our development organized and maintain a clear workflow, we use specific prefixes for our branches. This helps identify the purpose of each branch at a glance. Below is a summary of our branch naming conventions:
38
+
39
+ - **`release/`**: Prepares a new release version (e.g., `release/4.0.0-alpha`).
40
+ - **`feature/`**: Develops new features or enhancements (e.g., `feature/add-track-component`).
41
+ - **`fix/`**: Fixes bugs or minor issues (e.g., `fix/button-styling`).
42
+ - **`test/` or `experiment/`**: Tests or experiments with new ideas (e.g., `test/alpha-search-tweaks`).
43
+ - **`chore/`**: Routine tasks, maintenance, or minor updates (e.g., `chore/update-dependencies`).
44
+
45
+ ### How to Contribute
46
+
47
+ When creating a new branch, please follow the naming conventions above. This helps keep our workflow clear and organized. Feel free to refer to this guide as your "cheat sheet" while working on the project!
48
+
32
49
  ---
33
50
 
34
51
  ## Thanks