├── .all-contributorsrc ├── .circleci └── config.yml ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __tests__ └── index.js ├── media └── hand-intuit-logo.png ├── package.json ├── snippets ├── css-snippets.json └── react-snippets.json └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- 1 | { 2 | "projectName": "accessibility-snippets", 3 | "projectOwner": "kendall Gassner", 4 | "repoType": "github", 5 | "repoHost": "https://github.com", 6 | "files": [ 7 | "README.md" 8 | ], 9 | "imageSize": 100, 10 | "commit": true, 11 | "commitConvention": "none", 12 | "contributors": [ 13 | { 14 | "login": "kendallgassner", 15 | "name": "Kendall Gassner", 16 | "avatar_url": "https://avatars3.githubusercontent.com/u/15275462?v=4", 17 | "profile": "https://github.com/kendallgassner", 18 | "contributions": [ 19 | "code", 20 | "doc", 21 | "ideas", 22 | "infra" 23 | ] 24 | }, 25 | { 26 | "login": "kharrop", 27 | "name": "Kelly Harrop", 28 | "avatar_url": "https://avatars.githubusercontent.com/u/24794756?v=4", 29 | "profile": "https://github.com/kharrop", 30 | "contributions": [ 31 | "doc" 32 | ] 33 | }, 34 | { 35 | "login": "developer-diganta", 36 | "name": "Diganta Kr Banik", 37 | "avatar_url": "https://avatars.githubusercontent.com/u/65999534?v=4", 38 | "profile": "https://digantakrbanik.codes/", 39 | "contributions": [ 40 | "doc" 41 | ] 42 | }, 43 | { 44 | "login": "raych2", 45 | "name": "Rachel Tongco", 46 | "avatar_url": "https://avatars.githubusercontent.com/u/21354238?v=4", 47 | "profile": "https://github.com/raych2", 48 | "contributions": [ 49 | "doc" 50 | ] 51 | }, 52 | { 53 | "login": "aylinmarie", 54 | "name": "Aylin", 55 | "avatar_url": "https://avatars.githubusercontent.com/u/17627376?v=4", 56 | "profile": "https://github.com/aylinmarie", 57 | "contributions": [ 58 | "doc", 59 | "code" 60 | ] 61 | }, 62 | { 63 | "login": "jeffreyclu", 64 | "name": "Jeffrey Lu", 65 | "avatar_url": "https://avatars.githubusercontent.com/u/55211974?v=4", 66 | "profile": "https://github.com/jeffreyclu", 67 | "contributions": [ 68 | "doc", 69 | "code", 70 | "test" 71 | ] 72 | }, 73 | { 74 | "login": "Saran51", 75 | "name": "Saran51", 76 | "avatar_url": "https://avatars.githubusercontent.com/u/20996426?v=4", 77 | "profile": "https://github.com/Saran51", 78 | "contributions": [ 79 | "doc", 80 | "code" 81 | ] 82 | }, 83 | { 84 | "login": "tomarviii88", 85 | "name": "Ritika Tomar", 86 | "avatar_url": "https://avatars.githubusercontent.com/u/43980170?v=4", 87 | "profile": "https://github.com/tomarviii88", 88 | "contributions": [ 89 | "doc", 90 | "code", 91 | "test" 92 | ] 93 | }, 94 | { 95 | "login": "simin4950", 96 | "name": "Simin Savani", 97 | "avatar_url": "https://avatars.githubusercontent.com/u/38788938?v=4", 98 | "profile": "https://github.com/simin4950", 99 | "contributions": [ 100 | "doc", 101 | "code" 102 | ] 103 | }, 104 | { 105 | "login": "syedareehaquasar", 106 | "name": "reeha", 107 | "avatar_url": "https://avatars.githubusercontent.com/u/56428237?v=4", 108 | "profile": "https://syedareehaquasar.github.io/Portfolio/", 109 | "contributions": [ 110 | "doc", 111 | "code" 112 | ] 113 | }, 114 | { 115 | "login": "bolu-tife", 116 | "name": "Boluwatife Omosowon", 117 | "avatar_url": "https://avatars.githubusercontent.com/u/59070723?v=4", 118 | "profile": "https://www.linkedin.com/in/boluwatifeomosowon/", 119 | "contributions": [ 120 | "doc", 121 | "code", 122 | "test" 123 | ] 124 | }, 125 | { 126 | "login": "Pamelachristina", 127 | "name": "Pamelachristina", 128 | "avatar_url": "https://avatars.githubusercontent.com/u/46354272?v=4", 129 | "profile": "https://github.com/Pamelachristina", 130 | "contributions": [ 131 | "doc" 132 | ] 133 | }, 134 | { 135 | "login": "RadhikaHD", 136 | "name": "Radhika Dhaipule", 137 | "avatar_url": "https://avatars.githubusercontent.com/u/10150263?v=4", 138 | "profile": "https://radhikadhaipule.wordpress.com/", 139 | "contributions": [ 140 | "doc", 141 | "code", 142 | "test" 143 | ] 144 | }, 145 | { 146 | "login": "DianaTdr", 147 | "name": "Diana Toader", 148 | "avatar_url": "https://avatars.githubusercontent.com/u/35532678?v=4", 149 | "profile": "https://github.com/DianaTdr", 150 | "contributions": [ 151 | "code" 152 | ] 153 | } 154 | ], 155 | "contributorsPerLine": 7 156 | } 157 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | 3 | defaults: &defaults 4 | working_directory: ~/accessibility-snippets 5 | docker: 6 | - image: circleci/node:latest-browsers 7 | 8 | jobs: 9 | install: 10 | <<: *defaults 11 | steps: 12 | - checkout 13 | - restore_cache: 14 | keys: 15 | # Find a cache corresponding to this specific package.json checksum 16 | # when this file is changed, this key will fail 17 | - accessibility-snippets-{{ .Branch }}-{{ checksum "yarn.lock" }}-{{ checksum ".circleci/config.yml" }} 18 | - accessibility-snippets-{{ .Branch }}-{{ checksum "yarn.lock" }} 19 | - accessibility-snippets-{{ .Branch }} 20 | # Find the most recent cache used from any branch 21 | - accessibility-snippets-master 22 | - accessibility-snippets- 23 | - run: 24 | name: Install Dependencies 25 | command: yarn install --frozen-lockfile 26 | - save_cache: 27 | key: accessibility-snippets-{{ .Branch }}-{{ checksum "yarn.lock" }}-{{ checksum ".circleci/config.yml" }} 28 | paths: 29 | - node_modules 30 | - ~/.cache/yarn 31 | - persist_to_workspace: 32 | root: . 33 | paths: 34 | - . 35 | 36 | checkLabels: 37 | <<: *defaults 38 | steps: 39 | - attach_workspace: 40 | at: ~/accessibility-snippets 41 | - run: 42 | name: Check SemVer label 43 | command: yarn labelCheck --url $CIRCLE_BUILD_URL 44 | 45 | test: 46 | <<: *defaults 47 | steps: 48 | - attach_workspace: 49 | at: ~/accessibility-snippets 50 | - run: 51 | name: Test 52 | command: yarn test 53 | 54 | release: 55 | <<: *defaults 56 | steps: 57 | - attach_workspace: 58 | at: ~/accessibility-snippets 59 | - run: mkdir ~/.ssh/ && echo -e "Host github.com\n\tStrictHostKeyChecking no\n" > ~/.ssh/config 60 | - run: 61 | name: Release 62 | command: yarn release 63 | 64 | workflows: 65 | version: 2 66 | build_and_test: 67 | jobs: 68 | - install 69 | 70 | - checkLabels: 71 | requires: 72 | - install 73 | - test: 74 | requires: 75 | - checkLabels 76 | - release: 77 | requires: 78 | - test 79 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | 2 | # List of source code paths and code owners 3 | # common services & repos 4 | * @kendallgassner -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | Open source projects are “living.” Contributions in the form of issues and pull requests are welcomed and encouraged. When you contribute, you explicitly say you are part of the community and abide by its Code of Conduct. 2 | 3 | # The Code 4 | 5 | At Intuit, we foster a kind, respectful, harassment-free cooperative community. Our open source community works to: 6 | 7 | - Be kind and respectful; 8 | - Act as a global community; 9 | - Conduct ourselves professionally. 10 | 11 | As members of this community, we will not tolerate behaviors including, but not limited to: 12 | 13 | - Violent threats or language; 14 | - Discriminatory or derogatory jokes or language; 15 | - Public or private harassment of any kind; 16 | - Other conduct considered inappropriate in a professional setting. 17 | 18 | ## Reporting Concerns 19 | 20 | If you see someone violating the Code of Conduct please email TechOpenSource@intuit.com 21 | 22 | ## Scope 23 | 24 | This code of conduct applies to: 25 | 26 | All repos and communities for Intuit-managed projects, whether or not the text is included in a Intuit-managed project’s repository; 27 | 28 | Individuals or teams representing projects in official capacity, such as via official social media channels or at in-person meetups. 29 | 30 | ## Attribution 31 | 32 | This Code of Conduct is partly inspired by and based on those of Amazon, CocoaPods, GitHub, Microsoft, thoughtbot, and on the Contributor Covenant version 1.4.1. -------------------------------------------------------------------------------- /.github/CONTRBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | ## Reporting Bugs and Suggesting Enhancements 4 | - First check the issues section to see what bugs and enhancements are already being tracked. 5 | - If you do not see your idea or bug please log the issue by following our issues template. 6 | - Make sure your issue: 7 | - Has a clear and concise description of what the problem is. If it is possible please include screenshots and code snippets. 8 | - Describes what you would like to happen and how the enhancement will be useful. 9 | - Provide the version of the plugin you are using. 10 | 11 | ## Installation 12 | - In order to contribute you will need to fork this repo and install locally. 13 | - Once you have the repo locally run `yarn` to install all necessary dependencies. 14 | 15 | ## Pull Requests 16 | - Maintain quality. 17 | - Please add new tests to the code base that test the new feature or the bug you are fixing. 18 | - Provide a description in your PR on what you are trying to accomplish. 19 | - Include a semantic version label in your pr (NOTE: the pr build will fail if you do not provide a label). 20 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | 12 | 13 | 14 | **Describe the solution you'd like** 15 | 16 | 17 | 18 | **Describe alternatives you've considered** 19 | 20 | 21 | 22 | **Additional context** 23 | 24 | 25 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # What Changed 2 | 3 | # Why 4 | 5 | Todo: 6 | - [ ] Add Semantic Version Label 7 | - [ ] Add tests 8 | - [ ] Add docs 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | yarn-error.log* 3 | dist/ 4 | node_modules/ 5 | coverage 6 | .env -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | // A launch configuration that launches the extension inside a new window 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | { 6 | "version": "0.2.0", 7 | "configurations": [ 8 | { 9 | "name": "Extension", 10 | "type": "extensionHost", 11 | "request": "launch", 12 | "args": [ 13 | "--extensionDevelopmentPath=${workspaceFolder}" 14 | ] 15 | } 16 | ] 17 | } -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .vscode-test/** 3 | .gitignore 4 | vsc-extension-quickstart.md 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # v0.27.0 (Wed Oct 27 2021) 2 | 3 | #### 🚀 Enhancement 4 | 5 | - Added ARIA: List [#57](https://github.com/intuit/accessibility-snippets/pull/57) ([@tomarviii88](https://github.com/tomarviii88)) 6 | 7 | #### Authors: 1 8 | 9 | - Ritika Tomar ([@tomarviii88](https://github.com/tomarviii88)) 10 | 11 | --- 12 | 13 | # v0.26.1 (Fri Oct 08 2021) 14 | 15 | #### 🐛 Bug Fix 16 | 17 | - chore(run-tests): run tests in circle ci [#65](https://github.com/intuit/accessibility-snippets/pull/65) (dianatoader@Dianas-MacBook-Pro.local) 18 | 19 | #### Authors: 1 20 | 21 | - Diana Toader ([@DianaTdr](https://github.com/DianaTdr)) 22 | 23 | --- 24 | 25 | # v0.25.0 (Mon Oct 04 2021) 26 | 27 | #### 🚀 Enhancement 28 | 29 | - Added MeterAria [#62](https://github.com/intuit/accessibility-snippets/pull/62) ([@bolu-tife](https://github.com/bolu-tife)) 30 | 31 | #### 📝 Documentation 32 | 33 | - Update README.md for MeterAria description [#64](https://github.com/intuit/accessibility-snippets/pull/64) ([@bolu-tife](https://github.com/bolu-tife)) 34 | 35 | #### Authors: 1 36 | 37 | - Boluwatife Omosowon ([@bolu-tife](https://github.com/bolu-tife)) 38 | 39 | --- 40 | 41 | # v0.24.7 (Fri Oct 01 2021) 42 | 43 | #### 🐛 Bug Fix 44 | 45 | - Making README.md more readable [#51](https://github.com/intuit/accessibility-snippets/pull/51) ([@RadhikaHD](https://github.com/RadhikaHD)) 46 | 47 | #### Authors: 1 48 | 49 | - Radhika Dhaipule ([@RadhikaHD](https://github.com/RadhikaHD)) 50 | 51 | --- 52 | 53 | # v0.24.5 (Fri Oct 01 2021) 54 | 55 | #### 🐛 Bug Fix 56 | 57 | - added tabpanelaria react code snippet [#61](https://github.com/intuit/accessibility-snippets/pull/61) (pamela_sanchezhernandez@intuit.com [@Pamelachristina](https://github.com/Pamelachristina)) 58 | 59 | #### Authors: 2 60 | 61 | - [@Pamelachristina](https://github.com/Pamelachristina) 62 | - psanchezher (pamela_sanchezhernandez@intuit.com) 63 | 64 | --- 65 | 66 | # v0.24.3 (Fri Oct 01 2021) 67 | 68 | #### 🐛 Bug Fix 69 | 70 | - Add tests [#44](https://github.com/intuit/accessibility-snippets/pull/44) ([@jeffreyclu](https://github.com/jeffreyclu)) 71 | 72 | #### Authors: 1 73 | 74 | - Jeffrey Lu ([@jeffreyclu](https://github.com/jeffreyclu)) 75 | 76 | --- 77 | 78 | # v0.24.1 (Fri Oct 01 2021) 79 | 80 | #### 🐛 Bug Fix 81 | 82 | - Sorted snippets in alphabetical order for sort test [#59](https://github.com/intuit/accessibility-snippets/pull/59) ([@syedareehaquasar](https://github.com/syedareehaquasar)) 83 | 84 | #### Authors: 1 85 | 86 | - reeha ([@syedareehaquasar](https://github.com/syedareehaquasar)) 87 | 88 | --- 89 | 90 | # v0.23.0 (Fri Oct 01 2021) 91 | 92 | #### 🚀 Enhancement 93 | 94 | - Add ARIA: Light color scheme css snippet [#55](https://github.com/intuit/accessibility-snippets/pull/55) (amcginnis@rsglab.com [@aylinmarie](https://github.com/aylinmarie)) 95 | 96 | #### Authors: 2 97 | 98 | - Aylin Atkins ([@aylinmarie](https://github.com/aylinmarie)) 99 | - Aylin McGinnis (amcginnis@rsglab.com) 100 | 101 | --- 102 | 103 | # v0.22.1 (Fri Oct 01 2021) 104 | 105 | #### 🐛 Bug Fix 106 | 107 | - Add Aria: Figure Role [#54](https://github.com/intuit/accessibility-snippets/pull/54) ([@bolu-tife](https://github.com/bolu-tife)) 108 | 109 | #### Authors: 1 110 | 111 | - Boluwatife Omosowon ([@bolu-tife](https://github.com/bolu-tife)) 112 | 113 | --- 114 | 115 | # v0.21.0 (Fri Oct 01 2021) 116 | 117 | #### 🚀 Enhancement 118 | 119 | - fixed Add Aria: separator#31 [#42](https://github.com/intuit/accessibility-snippets/pull/42) ([@syedareehaquasar](https://github.com/syedareehaquasar)) 120 | 121 | #### Authors: 1 122 | 123 | - reeha ([@syedareehaquasar](https://github.com/syedareehaquasar)) 124 | 125 | --- 126 | 127 | # v0.19.0 (Fri Oct 01 2021) 128 | 129 | #### 🚀 Enhancement 130 | 131 | - Adding contrast to csss accessibility snippets [#45](https://github.com/intuit/accessibility-snippets/pull/45) ([@simin4950](https://github.com/simin4950)) 132 | 133 | #### Authors: 1 134 | 135 | - Simin Savani ([@simin4950](https://github.com/simin4950)) 136 | 137 | --- 138 | 139 | # v0.17.0 (Fri Oct 01 2021) 140 | 141 | #### 🚀 Enhancement 142 | 143 | - Added CSS snippet: prefers-color-scheme: dark [#49](https://github.com/intuit/accessibility-snippets/pull/49) ([@tomarviii88](https://github.com/tomarviii88)) 144 | 145 | #### Authors: 1 146 | 147 | - Ritika Tomar ([@tomarviii88](https://github.com/tomarviii88)) 148 | 149 | --- 150 | 151 | # v0.15.0 (Fri Oct 01 2021) 152 | 153 | #### 🚀 Enhancement 154 | 155 | - Add Aria: Image Role [#48](https://github.com/intuit/accessibility-snippets/pull/48) (amcginnis@rsglab.com [@aylinmarie](https://github.com/aylinmarie)) 156 | 157 | #### Authors: 2 158 | 159 | - Aylin Atkins ([@aylinmarie](https://github.com/aylinmarie)) 160 | - Aylin McGinnis (amcginnis@rsglab.com) 161 | 162 | --- 163 | 164 | # v0.13.0 (Fri Oct 01 2021) 165 | 166 | #### 🚀 Enhancement 167 | 168 | - OSD Contribution : Add ARIA:Cell Role [#43](https://github.com/intuit/accessibility-snippets/pull/43) (sramkumar@microsoft.com [@Saran51](https://github.com/Saran51)) 169 | 170 | #### Authors: 2 171 | 172 | - [@Saran51](https://github.com/Saran51) 173 | - Saranya Ramkumar (sramkumar@microsoft.com) 174 | 175 | --- 176 | 177 | # v0.11.0 (Fri Oct 01 2021) 178 | 179 | #### 🚀 Enhancement 180 | 181 | - Added ARIA: Searchbox role [#35](https://github.com/intuit/accessibility-snippets/pull/35) ([@jeffreyclu](https://github.com/jeffreyclu)) 182 | 183 | #### Authors: 1 184 | 185 | - Jeffrey Lu ([@jeffreyclu](https://github.com/jeffreyclu)) 186 | 187 | --- 188 | 189 | # v0.1.0 (Fri Oct 01 2021) 190 | 191 | #### 🚀 Enhancement 192 | 193 | - Add Aria: Loading Spinner [#34](https://github.com/intuit/accessibility-snippets/pull/34) (amcginnis@rsglab.com [@aylinmarie](https://github.com/aylinmarie)) 194 | - Add ARIA:document role [#23](https://github.com/intuit/accessibility-snippets/pull/23) ([@raych2](https://github.com/raych2)) 195 | 196 | #### 🐛 Bug Fix 197 | 198 | - Add aria timer role [#29](https://github.com/intuit/accessibility-snippets/pull/29) ([@developer-diganta](https://github.com/developer-diganta)) 199 | - Just trying to get all contributors working [#24](https://github.com/intuit/accessibility-snippets/pull/24) ([@kendallgassner](https://github.com/kendallgassner)) 200 | - Fix build [#25](https://github.com/intuit/accessibility-snippets/pull/25) ([@kendallgassner](https://github.com/kendallgassner)) 201 | - Added ARIA:banner role [#21](https://github.com/intuit/accessibility-snippets/pull/21) ([@developer-diganta](https://github.com/developer-diganta)) 202 | - Updating README to include logo mark [#11](https://github.com/intuit/accessibility-snippets/pull/11) ([@kharrop](https://github.com/kharrop)) 203 | 204 | #### ⚠️ Pushed to `master` 205 | 206 | - Update CONTRBUTING.md ([@kendallgassner](https://github.com/kendallgassner)) 207 | 208 | #### Authors: 6 209 | 210 | - Aylin ([@aylinmarie](https://github.com/aylinmarie)) 211 | - Aylin McGinnis (amcginnis@rsglab.com) 212 | - Diganta Kr Banik ([@developer-diganta](https://github.com/developer-diganta)) 213 | - Kelly Harrop ([@kharrop](https://github.com/kharrop)) 214 | - Kendall Gassner ([@kendallgassner](https://github.com/kendallgassner)) 215 | - Rachel Tongco ([@raych2](https://github.com/raych2)) 216 | 217 | --- 218 | 219 | # v0.1.0 (Wed Jul 21 2021) 220 | 221 | #### 🚀 Enhancement 222 | 223 | - Add ARIA:document role [#23](https://github.com/intuit/accessibility-snippets/pull/23) ([@raych2](https://github.com/raych2)) 224 | 225 | #### 🐛 Bug Fix 226 | 227 | - Add aria timer role [#29](https://github.com/intuit/accessibility-snippets/pull/29) ([@developer-diganta](https://github.com/developer-diganta)) 228 | - Just trying to get all contributors working [#24](https://github.com/intuit/accessibility-snippets/pull/24) ([@kendallgassner](https://github.com/kendallgassner)) 229 | - Fix build [#25](https://github.com/intuit/accessibility-snippets/pull/25) ([@kendallgassner](https://github.com/kendallgassner)) 230 | - Added ARIA:banner role [#21](https://github.com/intuit/accessibility-snippets/pull/21) ([@developer-diganta](https://github.com/developer-diganta)) 231 | - Updating README to include logo mark [#11](https://github.com/intuit/accessibility-snippets/pull/11) ([@kharrop](https://github.com/kharrop)) 232 | 233 | #### ⚠️ Pushed to `master` 234 | 235 | - Update CONTRBUTING.md ([@kendallgassner](https://github.com/kendallgassner)) 236 | 237 | #### Authors: 4 238 | 239 | - Diganta Kr Banik ([@developer-diganta](https://github.com/developer-diganta)) 240 | - Kelly Harrop ([@kharrop](https://github.com/kharrop)) 241 | - Kendall Gassner ([@kendallgassner](https://github.com/kendallgassner)) 242 | - Rachel Tongco ([@raych2](https://github.com/raych2)) 243 | 244 | --- 245 | 246 | # v0.1.0 (Thu Jul 15 2021) 247 | 248 | #### 🚀 Enhancement 249 | 250 | - Add ARIA:document role [#23](https://github.com/intuit/accessibility-snippets/pull/23) ([@raych2](https://github.com/raych2)) 251 | 252 | #### 🐛 Bug Fix 253 | 254 | - Just trying to get all contributors working [#24](https://github.com/intuit/accessibility-snippets/pull/24) ([@kendallgassner](https://github.com/kendallgassner)) 255 | - Fix build [#25](https://github.com/intuit/accessibility-snippets/pull/25) ([@kendallgassner](https://github.com/kendallgassner)) 256 | - Added ARIA:banner role [#21](https://github.com/intuit/accessibility-snippets/pull/21) ([@developer-diganta](https://github.com/developer-diganta)) 257 | - Updating README to include logo mark [#11](https://github.com/intuit/accessibility-snippets/pull/11) ([@kharrop](https://github.com/kharrop)) 258 | 259 | #### ⚠️ Pushed to `master` 260 | 261 | - Update CONTRBUTING.md ([@kendallgassner](https://github.com/kendallgassner)) 262 | 263 | #### Authors: 4 264 | 265 | - Diganta Kr Banik ([@developer-diganta](https://github.com/developer-diganta)) 266 | - Kelly Harrop ([@kharrop](https://github.com/kharrop)) 267 | - Kendall Gassner ([@kendallgassner](https://github.com/kendallgassner)) 268 | - Rachel Tongco ([@raych2](https://github.com/raych2)) 269 | 270 | --- 271 | 272 | # v0.1.0 (Thu Jul 15 2021) 273 | 274 | #### 🚀 Enhancement 275 | 276 | - Add ARIA:document role [#23](https://github.com/intuit/accessibility-snippets/pull/23) ([@raych2](https://github.com/raych2)) 277 | 278 | #### 🐛 Bug Fix 279 | 280 | - Fix build [#25](https://github.com/intuit/accessibility-snippets/pull/25) ([@kendallgassner](https://github.com/kendallgassner)) 281 | - Added ARIA:banner role [#21](https://github.com/intuit/accessibility-snippets/pull/21) ([@developer-diganta](https://github.com/developer-diganta)) 282 | - Updating README to include logo mark [#11](https://github.com/intuit/accessibility-snippets/pull/11) ([@kharrop](https://github.com/kharrop)) 283 | 284 | #### ⚠️ Pushed to `master` 285 | 286 | - Update CONTRBUTING.md ([@kendallgassner](https://github.com/kendallgassner)) 287 | 288 | #### Authors: 4 289 | 290 | - Diganta Kr Banik ([@developer-diganta](https://github.com/developer-diganta)) 291 | - Kelly Harrop ([@kharrop](https://github.com/kharrop)) 292 | - Kendall Gassner ([@kendallgassner](https://github.com/kendallgassner)) 293 | - Rachel Tongco ([@raych2](https://github.com/raych2)) 294 | 295 | --- 296 | 297 | # v0.1.0 (Thu Jul 15 2021) 298 | 299 | #### 🚀 Enhancement 300 | 301 | - Add ARIA:document role [#23](https://github.com/intuit/accessibility-snippets/pull/23) ([@raych2](https://github.com/raych2)) 302 | 303 | #### 🐛 Bug Fix 304 | 305 | - Added ARIA:banner role [#21](https://github.com/intuit/accessibility-snippets/pull/21) ([@developer-diganta](https://github.com/developer-diganta)) 306 | - Updating README to include logo mark [#11](https://github.com/intuit/accessibility-snippets/pull/11) ([@kharrop](https://github.com/kharrop)) 307 | 308 | #### ⚠️ Pushed to `master` 309 | 310 | - Update CONTRBUTING.md ([@kendallgassner](https://github.com/kendallgassner)) 311 | 312 | #### Authors: 4 313 | 314 | - Diganta Kr Banik ([@developer-diganta](https://github.com/developer-diganta)) 315 | - Kelly Harrop ([@kharrop](https://github.com/kharrop)) 316 | - Kendall Gassner ([@kendallgassner](https://github.com/kendallgassner)) 317 | - Rachel Tongco ([@raych2](https://github.com/raych2)) 318 | 319 | --- 320 | 321 | # v0.0.14 (Fri Mar 05 2021) 322 | 323 | #### 🐛 Bug Fix 324 | 325 | - fix snippet formatting [#9](https://github.com/intuit/accessibility-snippets/pull/9) ([@kendallgassner](https://github.com/kendallgassner)) 326 | 327 | #### Authors: 1 328 | 329 | - Kendall Gassner ([@kendallgassner](https://github.com/kendallgassner)) 330 | 331 | --- 332 | 333 | # v0.0.12 (Thu Mar 04 2021) 334 | 335 | #### 🐛 Bug Fix 336 | 337 | - setup all Contributors [#8](https://github.com/intuit/accessibility-snippets/pull/8) ([@kendallgassner](https://github.com/kendallgassner)) 338 | 339 | #### Authors: 1 340 | 341 | - Kendall Gassner ([@kendallgassner](https://github.com/kendallgassner)) 342 | 343 | --- 344 | 345 | # v0.0.10 (Fri Feb 26 2021) 346 | 347 | #### 🐛 Bug Fix 348 | 349 | - fix readme [#6](https://github.com/intuit/accessibility-snippets/pull/6) ([@kendallgassner](https://github.com/kendallgassner)) 350 | 351 | #### Authors: 1 352 | 353 | - Kendall Gassner ([@kendallgassner](https://github.com/kendallgassner)) 354 | 355 | --- 356 | 357 | # v0.0.8 (Thu Feb 25 2021) 358 | 359 | #### 🐛 Bug Fix 360 | 361 | - edit icon file [#5](https://github.com/intuit/accessibility-snippets/pull/5) ([@kendallgassner](https://github.com/kendallgassner)) 362 | - edit readme [#4](https://github.com/intuit/accessibility-snippets/pull/4) ([@kendallgassner](https://github.com/kendallgassner)) 363 | - add publisher [#3](https://github.com/intuit/accessibility-snippets/pull/3) ([@kendallgassner](https://github.com/kendallgassner)) 364 | - add CheckLabel script [#2](https://github.com/intuit/accessibility-snippets/pull/2) ([@kendallgassner](https://github.com/kendallgassner)) 365 | - update yarn.lock [#1](https://github.com/intuit/accessibility-snippets/pull/1) ([@kendallgassner](https://github.com/kendallgassner)) 366 | 367 | #### ⚠️ Pushed to `master` 368 | 369 | - initialize public repo ([@hipstersmoothie](https://github.com/hipstersmoothie)) 370 | 371 | #### Authors: 2 372 | 373 | - Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) 374 | - Kendall Gassner ([@kendallgassner](https://github.com/kendallgassner)) 375 | 376 | --- 377 | 378 | # v0.0.6 (Thu Feb 25 2021) 379 | 380 | #### 🐛 Bug Fix 381 | 382 | - edit readme [#4](https://github.com/intuit/accessibility-snippets/pull/4) ([@kendallgassner](https://github.com/kendallgassner)) 383 | - add publisher [#3](https://github.com/intuit/accessibility-snippets/pull/3) ([@kendallgassner](https://github.com/kendallgassner)) 384 | - add CheckLabel script [#2](https://github.com/intuit/accessibility-snippets/pull/2) ([@kendallgassner](https://github.com/kendallgassner)) 385 | - update yarn.lock [#1](https://github.com/intuit/accessibility-snippets/pull/1) ([@kendallgassner](https://github.com/kendallgassner)) 386 | 387 | #### ⚠️ Pushed to `master` 388 | 389 | - initialize public repo ([@hipstersmoothie](https://github.com/hipstersmoothie)) 390 | 391 | #### Authors: 2 392 | 393 | - Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) 394 | - Kendall Gassner ([@kendallgassner](https://github.com/kendallgassner)) 395 | 396 | --- 397 | 398 | # v0.0.4 (Thu Feb 25 2021) 399 | 400 | #### 🐛 Bug Fix 401 | 402 | - add publisher [#3](https://github.com/intuit/accessibility-snippets/pull/3) ([@kendallgassner](https://github.com/kendallgassner)) 403 | - add CheckLabel script [#2](https://github.com/intuit/accessibility-snippets/pull/2) ([@kendallgassner](https://github.com/kendallgassner)) 404 | - update yarn.lock [#1](https://github.com/intuit/accessibility-snippets/pull/1) ([@kendallgassner](https://github.com/kendallgassner)) 405 | 406 | #### ⚠️ Pushed to `master` 407 | 408 | - initialize public repo ([@hipstersmoothie](https://github.com/hipstersmoothie)) 409 | 410 | #### Authors: 2 411 | 412 | - Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) 413 | - Kendall Gassner ([@kendallgassner](https://github.com/kendallgassner)) 414 | 415 | --- 416 | 417 | # v0.0.2 (Thu Feb 25 2021) 418 | 419 | #### 🐛 Bug Fix 420 | 421 | - add CheckLabel script [#2](https://github.com/intuit/accessibility-snippets/pull/2) ([@kendallgassner](https://github.com/kendallgassner)) 422 | - update yarn.lock [#1](https://github.com/intuit/accessibility-snippets/pull/1) ([@kendallgassner](https://github.com/kendallgassner)) 423 | 424 | #### ⚠️ Pushed to `master` 425 | 426 | - initialize public repo ([@hipstersmoothie](https://github.com/hipstersmoothie)) 427 | 428 | #### Authors: 2 429 | 430 | - Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) 431 | - Kendall Gassner ([@kendallgassner](https://github.com/kendallgassner)) 432 | 433 | --- 434 | 435 | # Change Log 436 | 437 | All notable changes to the "accessibility-snippets" extension will be documented in this file. 438 | 439 | Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. 440 | 441 | ## [Unreleased] 442 | 443 | - Initial release -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Copyright (c) 2019 Intuit 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is 9 | furnished to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in all 12 | copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 17 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 18 | DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 19 | OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE 20 | OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
VScode Snippets created to help developers write accessible code.
10 |Kendall Gassner 💻 📖 🤔 🚇 |
112 | Kelly Harrop 📖 |
113 | Diganta Kr Banik 📖 |
114 | Rachel Tongco 📖 |
115 | Aylin 📖 💻 |
116 | Jeffrey Lu 📖 💻 ⚠️ |
117 | Saran51 📖 💻 |
118 |
Ritika Tomar 📖 💻 ⚠️ |
121 | Simin Savani 📖 💻 |
122 | reeha 📖 💻 |
123 | Boluwatife Omosowon 📖 💻 ⚠️ |
124 | Pamelachristina 📖 |
125 | Radhika Dhaipule 📖 💻 ⚠️ |
126 | Diana Toader 💻 |
127 |