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.
- package/README.md +17 -0
- package/dist/natura11y.css +1 -1
- package/dist/natura11y.js +1 -1
- package/package.json +1 -1
- package/src/index.js +8 -4
- package/src/js/accordion.js +109 -196
- package/src/js/alert.js +27 -29
- package/src/js/backdrop.js +72 -0
- package/src/js/collapse.js +62 -44
- package/src/js/form.js +181 -304
- package/src/js/lightbox.js +380 -424
- package/src/js/modal.js +88 -82
- package/src/js/navigation.js +109 -72
- package/src/js/tab.js +68 -71
- package/src/js/table.js +59 -58
- package/src/js/track.js +309 -0
- package/src/js/utilities/eventDelegation.js +42 -0
- package/src/js/utilities/focus.js +1 -0
- package/src/js/utilities/keyboardNavigation.js +46 -0
- package/src/js/utilities/overlay.js +6 -10
- package/src/scss/_accordion.scss +76 -37
- package/src/scss/_alert.scss +5 -13
- package/src/scss/_assistive.scss +81 -43
- package/src/scss/_backdrop.scss +30 -16
- package/src/scss/_border.scss +18 -2
- package/src/scss/_breakpoint.scss +4 -4
- package/src/scss/_button.scss +36 -133
- package/src/scss/_card.scss +72 -6
- package/src/scss/_collapse.scss +1 -1
- package/src/scss/_color.scss +28 -8
- package/src/scss/_container.scss +4 -4
- package/src/scss/_document.scss +2 -0
- package/src/scss/_form.scss +47 -57
- package/src/scss/_gradient.scss +101 -0
- package/src/scss/_icon.scss +4 -5
- package/src/scss/_lightbox.scss +1 -1
- package/src/scss/_link.scss +7 -0
- package/src/scss/_modal.scss +14 -14
- package/src/scss/_navigation.scss +349 -168
- package/src/scss/_tab.scss +72 -58
- package/src/scss/_table.scss +8 -9
- package/src/scss/_track.scss +287 -0
- package/src/scss/{natura11y.scss → index.scss} +3 -2
- package/src/js/button.js +0 -87
- 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
|