@bonniernews/dn-design-system-web 3.0.0-alpha.82 → 3.0.0-alpha.83
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 +9 -0
- package/assets/teaser/dot-or-grade.njk +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.0.0-alpha.83](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@3.0.0-alpha.82...@bonniernews/dn-design-system-web@3.0.0-alpha.83) (2023-06-02)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **web:** fix the flashing dot ([#861](https://github.com/BonnierNews/dn-design-system/issues/861)) ([992a108](https://github.com/BonnierNews/dn-design-system/commit/992a108d4ddbc78b2af488885aee8a972a050b29))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [3.0.0-alpha.82](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@3.0.0-alpha.81...@bonniernews/dn-design-system-web@3.0.0-alpha.82) (2023-06-02)
|
|
7
16
|
|
|
8
17
|
|
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
|
|
4
4
|
{% macro getDotOrGrade(params) %}
|
|
5
5
|
{% set gradeHtml = GetGrade({ grade: params.grade, type: "single" }) | trim if params.grade else "" %}
|
|
6
|
-
{{ gradeHtml if gradeHtml.length else TeaserDot({ flashing: params.
|
|
6
|
+
{{ gradeHtml if gradeHtml.length else TeaserDot({ flashing: params.flashing }) }}
|
|
7
7
|
{% endmacro %}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bonniernews/dn-design-system-web",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.83",
|
|
4
4
|
"description": "DN design system for web.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"homepage": "https://github.com/BonnierNews/dn-design-system/tree/main/web/src#readme",
|