Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.10.2 #4067

Merged
merged 24 commits into from
Mar 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
1f9bb1c
Merge pull request #4017 from uswds/master
mejiaj Feb 19, 2021
cabd734
Use returnExports style on SVG4Everybody.
mejiaj Feb 25, 2021
d564868
Remove UMD code in polyfill.
mejiaj Feb 25, 2021
6962754
Merge pull request #4035 from uswds/jm-svg4everybody-hotfix
thisisdano Mar 1, 2021
200adf0
Use `sr-only` mixin on `add-sr-only`.
mejiaj Mar 1, 2021
b42a393
Use more specific selector on megamenu dropdown.
mejiaj Mar 1, 2021
34d6043
Merge branch 'develop' of github.com:uswds/uswds into jm-extended-meg…
mejiaj Mar 1, 2021
00ad6c2
Use theme reverse colors across reversed components
thisisdano Mar 1, 2021
6369084
Update .snyk
thisisdano Mar 1, 2021
bf24886
Add white expand icon for dark bgs
thisisdano Mar 2, 2021
5b61db2
Update .snyk
thisisdano Mar 2, 2021
5d870f8
Add white variant of `add` icon for dark background accordions
thisisdano Mar 3, 2021
39d9a74
Update snyk
thisisdano Mar 3, 2021
dd22634
Merge pull request #4057 from uswds/jm-extended-megamenu-flash
thisisdano Mar 3, 2021
8ce8496
Merge branch 'develop' into dw-use-proper-color-tokens
thisisdano Mar 3, 2021
a0b3613
Merge branch 'develop' into dw-add-white-icon-variant
thisisdano Mar 3, 2021
35ddda1
Add white variant of `remove` icon for dark background accordions.
mejiaj Mar 3, 2021
aead326
Merge pull request #4061 from uswds/dw-add-white-icon-variant
thisisdano Mar 3, 2021
6511249
Use them var for reverse text in usa-dark-background
thisisdano Mar 3, 2021
6513d44
Merge pull request #4059 from uswds/dw-use-proper-color-tokens
mejiaj Mar 3, 2021
1c65b23
Update refs to 2.10.2
thisisdano Mar 3, 2021
419ae7e
Merge pull request #4066 from uswds/dw-update-refs-2.10.2
mejiaj Mar 3, 2021
2e87c86
2.10.2
thisisdano Mar 3, 2021
c3be564
Update security hash
thisisdano Mar 3, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .snyk
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ ignore:
SNYK-JS-GLOBPARENT-1016905:
- del > globby > fast-glob > glob-parent:
reason: None given
expires: '2021-02-25T21:48:00.048Z'
expires: '2021-04-02T06:38:47.102Z'
patch: {}
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ How you implement the design system depends on the needs of your project and you

### Download and install

1. Download the [USWDS zip file](https://github.com/uswds/uswds/releases/download/v2.10.1/uswds-2.10.1.zip) from the latest USWDS release and open that file.
1. Download the [USWDS zip file](https://github.com/uswds/uswds/releases/download/v2.10.2/uswds-2.10.2.zip) from the latest USWDS release and open that file.

After extracting the zip file you should see the following file and folder structure:

```
uswds-2.10.1/
uswds-2.10.2/
├── css/
│   ├── uswds.min.css.map
│   ├── uswds.min.css
Expand Down Expand Up @@ -98,7 +98,7 @@ How you implement the design system depends on the needs of your project and you
```
example-project/
├── assets/
│   ├── uswds-2.10.1/
│   ├── uswds-2.10.2/
│   ├── stylesheets/
│   ├── images/
│   └── javascript/
Expand All @@ -118,11 +118,11 @@ How you implement the design system depends on the needs of your project and you
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>My Example Project</title>
<script src="assets/uswds-2.10.1/js/uswds-init.min.js"></script>
<link rel="stylesheet" href="assets/uswds-2.10.1/css/uswds.min.css" />
<script src="assets/uswds-2.10.2/js/uswds-init.min.js"></script>
<link rel="stylesheet" href="assets/uswds-2.10.2/css/uswds.min.css" />
</head>
<body>
<script src="assets/uswds-2.10.1/js/uswds.min.js"></script>
<script src="assets/uswds-2.10.2/js/uswds.min.js"></script>
</body>
</html>
```
Expand Down