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

Commit aad4ec5

Browse files
author
george
committed
Merge branch 'develop'
2 parents 02f2db9 + a7691df commit aad4ec5

File tree

19 files changed

+332
-103
lines changed

19 files changed

+332
-103
lines changed

app/components/SideNav/styles.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
.side-nav-menu {
4646
h4 {
4747
color: $black;
48-
font-size: 18px;
4948
font-weight: $global-font-weight-bold;
5049
}
5150

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.1.2/dist/undernet.min.css"
11-
integrity="sha256-ayx+zb/OIkki6WyE9iO9UPuiTcW5dmQgP6Leke0ejEM="
10+
href="https://cdn.jsdelivr.net/npm/undernet@5.2.0/dist/undernet.min.css"
11+
integrity="sha256-XXDTsJpuYqy/37uBoiAWPStMFbKeVc+njULGGaVAvoU="
1212
crossorigin="anonymous"
1313
/>
1414
```
1515

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

app/pages/Home/__tests__/markdownContent.spec.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ describe("<StatusBadges />", () => {
1515
expect(wrapper).toMatchSnapshot()
1616
})
1717
})
18+
1819
describe("<InstallNpm />", () => {
1920
it("renders", () => {
2021
const wrapper = mount(<InstallNpm />)

dist/undernet.css.zip

13 Bytes
Binary file not shown.

dist/undernet.js.zip

118 Bytes
Binary file not shown.

dist/undernet.modules.js.zip

27 Bytes
Binary file not shown.

dist/undernet.scss.zip

87 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.1.2",
3+
"version": "5.2.0",
44
"homepage": "https://undernet.io",
55
"description": "A modular, configuration-first front-end framework. No strings.",
66
"author": "George Treviranus",

src/js/__tests__/__snapshots__/accordion.spec.js.snap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ exports[`Accordions #render -> Accordion Button Click (no toggle multiple) opens
101101
aria-labelledby="button-2"
102102
class="accordion-content"
103103
id="content-2"
104-
style="max-height: 0px;"
104+
style="max-height: 0em;"
105105
>
106106
107107
@@ -177,7 +177,7 @@ exports[`Accordions #render -> Accordion Button Click (toggle multiple) opens cl
177177
aria-labelledby="button-1"
178178
class="accordion-content"
179179
id="content-1"
180-
style="max-height: 0px;"
180+
style="max-height: 0em;"
181181
>
182182
183183
@@ -236,7 +236,7 @@ exports[`Accordions #render -> Accordion Button Click (toggle multiple) opens cl
236236
aria-labelledby="button-2"
237237
class="accordion-content"
238238
id="content-2"
239-
style="max-height: 0px;"
239+
style="max-height: 0em;"
240240
>
241241
242242
@@ -311,7 +311,7 @@ exports[`Accordions API start sets attributes 1`] = `
311311
aria-labelledby="button-1"
312312
class="accordion-content"
313313
id="content-1"
314-
style="max-height: 0px;"
314+
style="max-height: 0em;"
315315
>
316316
317317

0 commit comments

Comments
 (0)