@bonniernews/dn-design-system-web 20.3.0 → 20.3.2
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/CHANGELOG.md +22 -0
- package/README.md +1 -1
- package/components/pagination/README.md +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,28 @@ All changes to @bonniernews/dn-design-system-web will be documented in this file
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
+
## [20.3.2](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@20.3.1...@bonniernews/dn-design-system-web@20.3.2) (2024-09-16)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Maintenance
|
|
11
|
+
|
|
12
|
+
* **deps:** update node for core build and github actions ([#1402](https://github.com/BonnierNews/dn-design-system/issues/1402)) ([8f87ba4](https://github.com/BonnierNews/dn-design-system/commit/8f87ba40efa20ccdf88dd32daecf8a9f4fb93550))
|
|
13
|
+
* prerelease packages ([109d8f1](https://github.com/BonnierNews/dn-design-system/commit/109d8f19a980ef40a2eb31dfa5073199b4f20e2f))
|
|
14
|
+
|
|
15
|
+
## [20.3.1](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@20.3.0...@bonniernews/dn-design-system-web@20.3.1) (2024-09-16)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **web:** remove trailing commas from pagination readme njk example ([#1403](https://github.com/BonnierNews/dn-design-system/issues/1403)) ([6c65b1f](https://github.com/BonnierNews/dn-design-system/commit/6c65b1f3a657e9b7c8d3f7b86c6a347e3dade967))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Maintenance
|
|
24
|
+
|
|
25
|
+
* **deps-dev:** bump remove-markdown from 0.5.2 to 0.5.5 ([#1393](https://github.com/BonnierNews/dn-design-system/issues/1393)) ([1310aa0](https://github.com/BonnierNews/dn-design-system/commit/1310aa0392048140748325593f9797dc86e9977b))
|
|
26
|
+
* **deps:** bump express to 4.21.0 ([#1400](https://github.com/BonnierNews/dn-design-system/issues/1400)) ([ddd6612](https://github.com/BonnierNews/dn-design-system/commit/ddd66129828845f96f574ee05f327f32ccff77f6))
|
|
27
|
+
* prerelease packages ([94dd232](https://github.com/BonnierNews/dn-design-system/commit/94dd23255267ddf5a1bc653282dd4a91dbfdfb0e))
|
|
28
|
+
|
|
7
29
|
## [20.3.0](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@20.2.0...@bonniernews/dn-design-system-web@20.3.0) (2024-09-12)
|
|
8
30
|
|
|
9
31
|
|
package/README.md
CHANGED
|
@@ -42,10 +42,10 @@ These are copy paste friendly examples to quickliy get started using a component
|
|
|
42
42
|
{ label: '7' , url: 'https://www.dn.se/om/danmark/?offset=32' },
|
|
43
43
|
{ label: '8' , url: 'https://www.dn.se/om/danmark/?offset=40', current: true },
|
|
44
44
|
{ label: '9' , url: 'https://www.dn.se/om/danmark/?offset=48' },
|
|
45
|
-
{ label: '10' , url: 'https://www.dn.se/om/danmark/?offset=56' }
|
|
45
|
+
{ label: '10' , url: 'https://www.dn.se/om/danmark/?offset=56' }
|
|
46
46
|
],
|
|
47
47
|
attributes: {},
|
|
48
|
-
classNames: undefined
|
|
48
|
+
classNames: undefined
|
|
49
49
|
})}}
|
|
50
50
|
```
|
|
51
51
|
|
package/package.json
CHANGED