Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit 61f1561

Browse files
author
george
committed
Merge branch 'develop'
2 parents aad4ec5 + ba034a8 commit 61f1561

File tree

11 files changed

+12
-8
lines changed

11 files changed

+12
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,10 @@ This will do a few things:
117117
1. Run the full test suite to ensure the library is stable.
118118
2. Increment the package by the version you specify, and tag it appropriately
119119
3. Run a custom node script to update appropriate files with the new version
120-
4. Rerun the test suite to update snapshots for the build, then build all package assets
120+
4. Build all package assets for publishing
121121
5. Create new content hashes to be used with cdn subresource integrity links in the docs
122122
6. Add all new build assets to the version commit and open a prompt for the release's commit message
123123

124124
The release commit is usually in this format: `[Version X.X.X] This release does x, y, and z.`
125125

126-
The commit will be ready to merge to master. After that, the repo can be published to npm.
126+
The commit will be ready to merge to master. After that, the repo can be published to npm. I recommend using `npm publish --dry-run` to confirm the output is what you expect. Then remove the flag and a new version is out in the world!

app/docs/download.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ The quickest way to use Undernet is to link the bundled js and minified css usin
77
```html
88
<link
99
rel="stylesheet"
10-
href="https://cdn.jsdelivr.net/npm/undernet@5.2.0/dist/undernet.min.css"
11-
integrity="sha256-XXDTsJpuYqy/37uBoiAWPStMFbKeVc+njULGGaVAvoU="
10+
href="https://cdn.jsdelivr.net/npm/undernet@5.2.1/dist/undernet.min.css"
11+
integrity="sha256-NrLLg3IsOypW6aWBpH8EC628QsnbCPaAps81ovqs3gs="
1212
crossorigin="anonymous"
1313
/>
1414
```
1515

1616
```html
1717
<script
1818
type="text/javascript"
19-
src="https://cdn.jsdelivr.net/npm/undernet@5.2.0/dist/undernet.bundle.min.js"
20-
integrity="sha256-pjj7UK9fZGccXn3mHQLvAO2pxvqbLuKz/f0aED1fH84="
19+
src="https://cdn.jsdelivr.net/npm/undernet@5.2.1/dist/undernet.bundle.min.js"
20+
integrity="sha256-RFH9J8rSTYHZauB9opYKzZtzpDzFRoj3BGB4wwHhb9c="
2121
crossorigin="anonymous"
2222
></script>
2323
<script type="text/javascript">

dist/undernet.css.zip

45 Bytes
Binary file not shown.

dist/undernet.js.zip

0 Bytes
Binary file not shown.

dist/undernet.modules.js.zip

0 Bytes
Binary file not shown.

dist/undernet.scss.zip

29 Bytes
Binary file not shown.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "undernet",
3-
"version": "5.2.0",
3+
"version": "5.2.1",
44
"homepage": "https://undernet.io",
55
"description": "A modular, configuration-first front-end framework. No strings.",
66
"author": "George Treviranus",

src/scss/_config.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -666,6 +666,7 @@ $modal-container-border-radius: $global-border-radius !default;
666666
$modal-container-padding: $global-space !default;
667667
$modal-container-width: em(450px) !default;
668668
$modal-container-width-small: 95% !default;
669+
$modal-container-max-width: 95vw !default;
669670
$modal-container-margin: 40px auto !default;
670671
$modal-container-margin-small: $global-space auto !default;
671672

@@ -717,6 +718,7 @@ $dropdown-menu-padding: 8px 0 !default;
717718
$dropdown-menu-border-radius: $global-border-radius !default;
718719
$dropdown-menu-background-color: $white !default;
719720
$dropdown-menu-width: em(200px) !default;
721+
$dropdown-menu-max-width: 95vw !default;
720722
$dropdown-menu-border: 1px solid $dropdown-border-color !default;
721723

722724
$dropdown-arrow-offset: 12px !default;

src/scss/components/_dropdown.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
border-radius: $dropdown-menu-border-radius;
3737
background: $dropdown-menu-background-color;
3838
width: $dropdown-menu-width;
39+
max-width: $dropdown-menu-max-width;
3940
border: $dropdown-menu-border;
4041
z-index: $dropdown-menu-index;
4142

0 commit comments

Comments
 (0)