@bonniernews/dn-design-system-web 20.3.0 → 20.3.1
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 +14 -0
- package/components/pagination/README.md +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,20 @@ All changes to @bonniernews/dn-design-system-web will be documented in this file
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
+
## [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)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* **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))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Maintenance
|
|
16
|
+
|
|
17
|
+
* **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))
|
|
18
|
+
* **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))
|
|
19
|
+
* prerelease packages ([94dd232](https://github.com/BonnierNews/dn-design-system/commit/94dd23255267ddf5a1bc653282dd4a91dbfdfb0e))
|
|
20
|
+
|
|
7
21
|
## [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
22
|
|
|
9
23
|
|
|
@@ -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