@bonniernews/dn-design-system-web 21.2.1-beta.0 → 22.0.0

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.
Files changed (112) hide show
  1. package/CHANGELOG.md +77 -29
  2. package/assets/teaser/teaser.scss +1 -32
  3. package/components/footer/README-NJK.md +75 -0
  4. package/components/footer/README.md +184 -71
  5. package/components/game-header/README.md +12 -36
  6. package/components/group-header/group-header.scss +1 -1
  7. package/components/spinner/README-NJK.md +37 -0
  8. package/components/spinner/README.md +10 -33
  9. package/components/teaser-image/teaser-image.scss +1 -1
  10. package/components/teaser-large/README.md +0 -1
  11. package/components/teaser-large/teaser-large.njk +4 -14
  12. package/components/teaser-large/teaser-large.scss +0 -16
  13. package/components/teaser-list-vertical/teaser-list-vertical.njk +1 -0
  14. package/components/teaser-native/teaser-native.njk +3 -5
  15. package/components/teaser-native/teaser-native.scss +6 -0
  16. package/components/teaser-onsite/README.md +8 -1
  17. package/components/teaser-onsite/teaser-onsite.njk +1 -5
  18. package/components/teaser-package/teaser-package.scss +6 -17
  19. package/components/teaser-slideshow/teaser-slideshow.scss +1 -1
  20. package/components/teaser-split/README.md +0 -1
  21. package/components/teaser-split/teaser-split.njk +3 -7
  22. package/components/teaser-split/teaser-split.scss +1 -3
  23. package/components/teaser-standard/README.md +0 -1
  24. package/components/teaser-standard/teaser-standard.njk +4 -8
  25. package/components/teaser-standard/teaser-standard.scss +6 -5
  26. package/foundations/helpers/colors.scss +6 -1
  27. package/foundations/variables/colorsCssVariables.scss +0 -4
  28. package/foundations/variables/colorsDnDarkTokens.scss +60 -64
  29. package/foundations/variables/colorsDnLightTokens.scss +51 -55
  30. package/foundations/variables/metrics.scss +1 -2
  31. package/foundations/variables/typographyFontWeight.scss +0 -1
  32. package/foundations/variables/typographyTokensList.scss +0 -1
  33. package/foundations/variables/typographyTokensScreenExtraLarge.scss +4 -11
  34. package/foundations/variables/typographyTokensScreenLarge.scss +3 -10
  35. package/foundations/variables/typographyTokensScreenSmall.scss +6 -13
  36. package/index.d.ts +4 -0
  37. package/package.json +4 -22
  38. package/preact/components/divider/divider.js +21 -0
  39. package/preact/components/divider/divider.js.map +7 -0
  40. package/preact/components/footer/footer.d.ts +33 -0
  41. package/preact/components/footer/footer.js +68 -0
  42. package/preact/components/footer/footer.js.map +7 -0
  43. package/preact/components/footer/logoWithPayoff.d.ts +1 -0
  44. package/preact/components/footer/logoWithPayoff.js +15 -0
  45. package/preact/components/footer/logoWithPayoff.js.map +7 -0
  46. package/preact/components/game-header/game-header.d.ts +18 -0
  47. package/preact/components/game-header/game-header.js +29 -0
  48. package/preact/components/game-header/game-header.js.map +7 -0
  49. package/preact/components/icon-sprite/icon-sprite.d.ts +18 -0
  50. package/preact/components/icon-sprite/icon-sprite.js +132 -0
  51. package/preact/components/icon-sprite/icon-sprite.js.map +7 -0
  52. package/preact/components/icon-with-wrapper/icon-with-wrapper.d.ts +23 -0
  53. package/{tokens-tmp/colors-css-variables.json → preact/components/icon-with-wrapper/icon-with-wrapper.js} +50 -6
  54. package/preact/components/icon-with-wrapper/icon-with-wrapper.js.map +7 -0
  55. package/preact/components/pictogram/pictogram.d.ts +17 -0
  56. package/preact/components/pictogram/pictogram.js +39 -0
  57. package/preact/components/pictogram/pictogram.js.map +7 -0
  58. package/preact/components/quote/quote.js +22 -0
  59. package/preact/components/quote/quote.js.map +7 -0
  60. package/preact/components/spinner/spinner.d.ts +16 -0
  61. package/preact/components/spinner/spinner.js +24 -0
  62. package/preact/components/spinner/spinner.js.map +7 -0
  63. package/preact/components/teaser-card/teaser-card.js +25 -0
  64. package/preact/components/teaser-card/teaser-card.js.map +7 -0
  65. package/preact/components/teaser-onsite/teaser-onsite.js +56 -0
  66. package/preact/components/teaser-onsite/teaser-onsite.js.map +7 -0
  67. package/preact/components/thematic-break/thematic-break.js +20 -0
  68. package/preact/components/thematic-break/thematic-break.js.map +7 -0
  69. package/preact/helpers/formatClassString.d.ts +1 -0
  70. package/tokens/colors-css-variables.json +1 -5
  71. package/tokens/colors-dark-mode.json +60 -64
  72. package/tokens/colors-light-mode.json +53 -57
  73. package/tokens/typography-list.json +0 -1
  74. package/tsconfig.json +3 -2
  75. package/types-lib/ds-color.d.ts +100 -0
  76. package/types-lib/ds-icon.d.ts +96 -0
  77. package/variables/colors-css-variables.json +18 -27
  78. package/.release-it-beta.cjs +0 -25
  79. package/.release-it.cjs +0 -39
  80. package/components/divider/divider.tsx +0 -28
  81. package/components/quote/quote.tsx +0 -34
  82. package/components/teaser-breaking/README-UXD.md +0 -0
  83. package/components/teaser-breaking/README.md +0 -46
  84. package/components/teaser-breaking/teaser-breaking.njk +0 -46
  85. package/components/teaser-breaking/teaser-breaking.scss +0 -52
  86. package/components/teaser-card/teaser-card.tsx +0 -44
  87. package/components/teaser-onsite/teaser-onsite.tsx +0 -43
  88. package/components/thematic-break/thematic-break.tsx +0 -27
  89. package/helpers/teaser.tsx +0 -32
  90. package/index.tsx +0 -8
  91. package/preact/components.cjs +0 -68
  92. package/preact/components.cjs.map +0 -7
  93. package/preact/components.esm.js +0 -45
  94. package/preact/components.esm.js.map +0 -7
  95. package/preact/index.d.ts +0 -6
  96. package/react/components/divider/divider.d.ts +0 -14
  97. package/react/components/quote/quote.d.ts +0 -16
  98. package/react/components/teaser-card/teaser-card.d.ts +0 -17
  99. package/react/components/teaser-onsite/teaser-onsite.d.ts +0 -23
  100. package/react/components/thematic-break/thematic-break.d.ts +0 -13
  101. package/react/components.cjs +0 -68
  102. package/react/components.cjs.map +0 -7
  103. package/react/components.esm.js +0 -45
  104. package/react/components.esm.js.map +0 -7
  105. package/react/index.d.ts +0 -6
  106. package/tokens-tmp/shadows-css-variables.json +0 -6
  107. package/tokens-tmp/spacing-base-list.json +0 -14
  108. package/tokens-tmp/spacing-detail-list.json +0 -18
  109. package/tsconfig-preact.json +0 -12
  110. package/tsconfig-react.json +0 -11
  111. /package/components/icon-sprite/{README.md → README-NJK.md} +0 -0
  112. /package/components/pictogram/{README.md → README-NJK.md} +0 -0
@@ -1,88 +1,84 @@
1
- $ds-hex-dark-text-primary: #ededed;
2
- $ds-hex-dark-text-primary-02: #b8b8b8;
1
+ $ds-hex-dark-text-primary: #EDEDED;
2
+ $ds-hex-dark-text-primary-02: #B8B8B8;
3
3
  $ds-hex-dark-text-secondary: #050505;
4
- $ds-hex-dark-text-critical: #fd2330;
5
- $ds-hex-dark-text-disabled: #b8b8b8;
4
+ $ds-hex-dark-text-critical: #FD2330;
5
+ $ds-hex-dark-text-disabled: #B8B8B8;
6
6
  $ds-hex-dark-text-on-brand: #ffffff;
7
7
  $ds-hex-dark-text-on-business: #ffffff;
8
8
  $ds-hex-dark-text-on-critical: #ffffff;
9
9
  $ds-hex-dark-text-on-success: #ffffff;
10
- $ds-hex-dark-text-brand: #fd2330;
11
- $ds-hex-dark-text-body-link: #65a0fc;
12
- $ds-hex-dark-text-body-link-visited: #65a0fc;
13
- $ds-hex-dark-text-positive: #3a8352;
14
- $ds-hex-dark-text-culture: #4293d7;
15
- $ds-hex-dark-icon-primary: #ededed;
16
- $ds-hex-dark-icon-primary-02: #cfcfcf;
10
+ $ds-hex-dark-text-brand: #FD2330;
11
+ $ds-hex-dark-text-body-link: #65A0FC;
12
+ $ds-hex-dark-text-body-link-visited: #65A0FC;
13
+ $ds-hex-dark-text-positive: #3A8352;
14
+ $ds-hex-dark-icon-primary: #EDEDED;
15
+ $ds-hex-dark-icon-primary-02: #CFCFCF;
17
16
  $ds-hex-dark-icon-secondary: #050505;
18
- $ds-hex-dark-icon-critical: #fd2330;
19
- $ds-hex-dark-icon-disabled: #b8b8b8;
17
+ $ds-hex-dark-icon-critical: #FD2330;
18
+ $ds-hex-dark-icon-disabled: #B8B8B8;
20
19
  $ds-hex-dark-icon-on-brand: #141414;
21
20
  $ds-hex-dark-icon-on-critical: #ffffff;
22
21
  $ds-hex-dark-icon-on-success: #ffffff;
23
22
  $ds-hex-dark-icon-on-business: #ffffff;
24
- $ds-hex-dark-icon-brand: #fd2330;
25
- $ds-hex-dark-icon-culture: #4293d7;
26
- $ds-hex-dark-component-brand: #fd2330;
27
- $ds-hex-dark-component-business: #3a8352;
28
- $ds-hex-dark-component-primary: #ededed;
29
- $ds-hex-dark-component-primary-overlay: rgba(255, 255, 255, 0.13);
30
- $ds-hex-dark-component-primary-overlay-02: #9e9e9e;
23
+ $ds-hex-dark-icon-brand: #FD2330;
24
+ $ds-hex-dark-component-brand: #FD2330;
25
+ $ds-hex-dark-component-business: #3A8352;
26
+ $ds-hex-dark-component-primary: #EDEDED;
27
+ $ds-hex-dark-component-primary-overlay: #ffffff21;
28
+ $ds-hex-dark-component-primary-overlay-02: #9E9E9E;
31
29
  $ds-hex-dark-component-secondary: #050505;
32
- $ds-hex-dark-component-secondary-overlay: rgba(8, 8, 8, 0.13);
33
- $ds-hex-dark-component-secondary-overlay-02: rgba(8, 8, 8, 0.2);
34
- $ds-hex-dark-component-critical: #ef7171;
35
- $ds-hex-dark-component-critical-overlay: #a51d24;
30
+ $ds-hex-dark-component-secondary-overlay: #08080821;
31
+ $ds-hex-dark-component-secondary-overlay-02: #08080833;
32
+ $ds-hex-dark-component-critical: #EF7171;
33
+ $ds-hex-dark-component-critical-overlay: #A51D24;
36
34
  $ds-hex-dark-component-static-white: #ffffff;
37
- $ds-hex-dark-component-positive: #3a8352;
38
- $ds-hex-dark-component-primary-02: #cfcfcf;
39
- $ds-hex-dark-surface-below: #171717;
35
+ $ds-hex-dark-component-positive: #3A8352;
36
+ $ds-hex-dark-component-primary-02: #CFCFCF;
37
+ $ds-hex-dark-surface-below: #262626;
40
38
  $ds-hex-dark-surface-background: #050505;
41
- $ds-hex-dark-surface-raised: #2b2b2b;
42
- $ds-hex-dark-surface-native-article: #2b2b2b;
43
- $ds-hex-dark-surface-elevated: #2b2b2b;
39
+ $ds-hex-dark-surface-raised: #2B2B2B;
40
+ $ds-hex-dark-surface-native-article: #2B2B2B;
41
+ $ds-hex-dark-surface-elevated: #2B2B2B;
44
42
  $ds-hex-dark-surface-inverted: #ffffff;
45
- $ds-hex-dark-surface-overlay: rgba(5, 5, 5, 0.5);
46
- $ds-hex-dark-surface-quiz: #ea3e3f;
47
- $ds-hex-dark-surface-korsord: #8bb6e8;
48
- $ds-hex-dark-surface-sudoko: #90d0bd;
49
- $ds-hex-dark-surface-brand: #da000d;
50
- $ds-hex-dark-surface-breaking: #300407;
51
- $ds-hex-dark-border-primary: rgba(255, 255, 255, 0.19);
52
- $ds-hex-dark-border-primary-02: rgba(255, 255, 255, 0.4);
53
- $ds-hex-dark-border-primary-03: #ededed;
43
+ $ds-hex-dark-surface-overlay: #05050580;
44
+ $ds-hex-dark-surface-quiz: #EA3E3F;
45
+ $ds-hex-dark-surface-korsord: #8BB6E8;
46
+ $ds-hex-dark-surface-sudoko: #90D0BD;
47
+ $ds-hex-dark-surface-brand: #DA000D;
48
+ $ds-hex-dark-border-primary: #3B3B3B;
49
+ $ds-hex-dark-border-primary-02: #ffffff66;
50
+ $ds-hex-dark-border-primary-03: #EDEDED;
54
51
  $ds-hex-dark-border-secondary: #141414;
55
- $ds-hex-dark-border-business: #3a8352;
56
- $ds-hex-dark-border-critical: #fd2330;
57
- $ds-hex-dark-border-focus: #fd2330;
52
+ $ds-hex-dark-border-business: #3A8352;
53
+ $ds-hex-dark-border-critical: #FD2330;
54
+ $ds-hex-dark-border-focus: #FD2330;
58
55
  $ds-hex-dark-border-focus-02: #ffffff;
59
- $ds-hex-dark-border-focus-03: #fd2330;
60
- $ds-hex-dark-border-focus-04: #3a8352;
61
- $ds-hex-dark-border-brand: #fd2330;
62
- $ds-hex-dark-border-culture: #4293d7;
56
+ $ds-hex-dark-border-focus-03: #FD2330;
57
+ $ds-hex-dark-border-focus-04: #3A8352;
58
+ $ds-hex-dark-border-brand: #DA000D;
63
59
  $ds-hex-dark-background-primary: #141414;
64
60
  $ds-hex-dark-gradient-content-fade-left: linear-gradient(90deg, #05050500 0%, #050505 100%);
65
61
  $ds-hex-dark-gradient-content-fade-right: linear-gradient(-90deg, #05050500 0%, #050505 100%);
66
62
  $ds-hex-dark-gradient-content-fade-up: linear-gradient(180deg, #05050500 0%, #050505 100%);
67
63
  $ds-hex-dark-gradient-content-fade-up-down: linear-gradient(0deg, #05050500 0%, #050505 100%);
68
64
  $ds-hex-dark-gradient-content-fade-down: linear-gradient(0deg, #05050500 0%, #050505 100%);
69
- $ds-hex-dark-static-red-100: #fad4d4;
65
+ $ds-hex-dark-static-red-100: #FAD4D4;
70
66
  $ds-hex-dark-static-black: #141414;
71
- $ds-hex-dark-static-transparent-black: rgba(20, 20, 20, 0.6);
67
+ $ds-hex-dark-static-transparent-black: #14141499;
72
68
  $ds-hex-dark-static-white: #ffffff;
73
- $ds-hex-dark-static-transparent-white: rgba(255, 255, 255, 0.5);
74
- $ds-hex-dark-static-green-100: #cee4d6;
75
- $ds-hex-dark-static-red-300: #ef7171;
76
- $ds-hex-dark-static-transparent-white-10: rgba(255, 255, 255, 0.13);
77
- $ds-hex-dark-static-kultur: #568cbb;
78
- $ds-hex-dark-static-economy: #60bca1;
79
- $ds-hex-dark-static-sport: #f58d2d;
80
- $ds-hex-dark-static-neutral-200: #e0e0e0;
81
- $ds-hex-dark-static-sthlm: #ff589b;
82
- $ds-hex-dark-static-ad-yellow: #ffeac2;
83
- $ds-hex-dark-static-neutral-100: #ededed;
84
- $ds-hex-dark-static-neutral-500: #9e9e9e;
85
- $ds-hex-dark-static-red-500: #da000d;
86
- $ds-hex-dark-static-yellow: #ffe600;
87
- $ds-hex-dark-static-red-200: #f6acad;
88
- $ds-hex-dark-static-red-0: #fce8e8;
69
+ $ds-hex-dark-static-transparent-white: #ffffff80;
70
+ $ds-hex-dark-static-green-100: #CEE4D6;
71
+ $ds-hex-dark-static-red-300: #EF7171;
72
+ $ds-hex-dark-static-transparent-white-10: #ffffff21;
73
+ $ds-hex-dark-static-kultur: #568CBB;
74
+ $ds-hex-dark-static-economy: #60BCA1;
75
+ $ds-hex-dark-static-sport: #F58D2D;
76
+ $ds-hex-dark-static-neutral-200: #E0E0E0;
77
+ $ds-hex-dark-static-sthlm: #FF589B;
78
+ $ds-hex-dark-static-ad-yellow: #FFEAC2;
79
+ $ds-hex-dark-static-neutral-100: #EDEDED;
80
+ $ds-hex-dark-static-neutral-500: #9E9E9E;
81
+ $ds-hex-dark-static-red-500: #DA000D;
82
+ $ds-hex-dark-static-yellow: #FFE600;
83
+ $ds-hex-dark-static-red-200: #F6ACAD;
84
+ $ds-hex-dark-static-red-0: #FCE8E8;
@@ -1,86 +1,82 @@
1
1
  $ds-hex-text-primary: #050505;
2
2
  $ds-hex-text-primary-02: #666666;
3
3
  $ds-hex-text-secondary: #ffffff;
4
- $ds-hex-text-critical: #da000d;
4
+ $ds-hex-text-critical: #DA000D;
5
5
  $ds-hex-text-disabled: #666666;
6
6
  $ds-hex-text-on-brand: #ffffff;
7
7
  $ds-hex-text-on-business: #ffffff;
8
8
  $ds-hex-text-on-critical: #ffffff;
9
9
  $ds-hex-text-on-success: #ffffff;
10
- $ds-hex-text-brand: #da000d;
11
- $ds-hex-text-body-link: #4373ce;
12
- $ds-hex-text-body-link-visited: #4373ce;
13
- $ds-hex-text-positive: #3a8352;
14
- $ds-hex-text-culture: #227ac3;
10
+ $ds-hex-text-brand: #DA000D;
11
+ $ds-hex-text-body-link: #4373CE;
12
+ $ds-hex-text-body-link-visited: #4373CE;
13
+ $ds-hex-text-positive: #3A8352;
15
14
  $ds-hex-icon-primary: #050505;
16
15
  $ds-hex-icon-primary-02: #666666;
17
16
  $ds-hex-icon-secondary: #ffffff;
18
- $ds-hex-icon-critical: #da000d;
17
+ $ds-hex-icon-critical: #DA000D;
19
18
  $ds-hex-icon-disabled: #666666;
20
19
  $ds-hex-icon-on-brand: #ffffff;
21
20
  $ds-hex-icon-on-business: #ffffff;
22
- $ds-hex-icon-brand: #da000d;
21
+ $ds-hex-icon-brand: #DA000D;
23
22
  $ds-hex-icon-on-critical: #ffffff;
24
23
  $ds-hex-icon-on-success: #ffffff;
25
- $ds-hex-icon-culture: #227ac3;
26
- $ds-hex-component-brand: #da000d;
27
- $ds-hex-component-business: #3a8352;
24
+ $ds-hex-component-brand: #DA000D;
25
+ $ds-hex-component-business: #3A8352;
28
26
  $ds-hex-component-primary: #141414;
29
- $ds-hex-component-primary-overlay: rgba(8, 8, 8, 0.13);
30
- $ds-hex-component-primary-overlay-02: rgba(8, 8, 8, 0.2);
27
+ $ds-hex-component-primary-overlay: #08080821;
28
+ $ds-hex-component-primary-overlay-02: #08080833;
31
29
  $ds-hex-component-secondary: #ffffff;
32
- $ds-hex-component-secondary-overlay: rgba(255, 255, 255, 0.13);
33
- $ds-hex-component-secondary-overlay-02: rgba(255, 255, 255, 0.2);
34
- $ds-hex-component-critical: #ea3e3f;
35
- $ds-hex-component-critical-overlay: #a51d24;
30
+ $ds-hex-component-secondary-overlay: #ffffff21;
31
+ $ds-hex-component-secondary-overlay-02: #ffffff33;
32
+ $ds-hex-component-critical: #EA3E3F;
33
+ $ds-hex-component-critical-overlay: #A51D24;
36
34
  $ds-hex-component-static-white: #ffffff;
37
- $ds-hex-component-positive: #3a8352;
38
- $ds-hex-component-primary-02: #cfcfcf;
39
- $ds-hex-surface-below: #f2f2f2;
40
- $ds-hex-surface-native-article: #ededed;
35
+ $ds-hex-component-positive: #3A8352;
36
+ $ds-hex-component-primary-02: #CFCFCF;
37
+ $ds-hex-surface-below: #EDEDED;
38
+ $ds-hex-surface-native-article: #EDEDED;
41
39
  $ds-hex-surface-background: #ffffff;
42
- $ds-hex-surface-raised: #ededed;
40
+ $ds-hex-surface-raised: #EDEDED;
43
41
  $ds-hex-surface-elevated: #ffffff;
44
- $ds-hex-surface-overlay: rgba(5, 5, 5, 0.5);
45
- $ds-hex-surface-quiz: #ea3e3f;
46
- $ds-hex-surface-korsord: #8bb6e8;
47
- $ds-hex-surface-sudoko: #90d0bd;
48
- $ds-hex-surface-brand: #da000d;
42
+ $ds-hex-surface-overlay: #05050580;
43
+ $ds-hex-surface-quiz: #EA3E3F;
44
+ $ds-hex-surface-korsord: #8BB6E8;
45
+ $ds-hex-surface-sudoko: #90D0BD;
46
+ $ds-hex-surface-brand: #DA000D;
49
47
  $ds-hex-surface-inverted: #141414;
50
- $ds-hex-surface-breaking: #300407;
51
- $ds-hex-border-primary: rgba(5, 5, 5, 0.13);
52
- $ds-hex-border-primary-02: rgba(8, 8, 8, 0.4);
48
+ $ds-hex-border-primary: #08080821;
49
+ $ds-hex-border-primary-02: #08080866;
53
50
  $ds-hex-border-primary-03: #050505;
54
51
  $ds-hex-border-secondary: #ffffff;
55
- $ds-hex-border-business: #3a8352;
56
- $ds-hex-border-critical: #da000d;
57
- $ds-hex-border-focus: #da000d;
52
+ $ds-hex-border-business: #3A8352;
53
+ $ds-hex-border-critical: #DA000D;
54
+ $ds-hex-border-focus: #DA000D;
58
55
  $ds-hex-border-focus-02: #141414;
59
- $ds-hex-border-focus-03: #da000d;
60
- $ds-hex-border-focus-04: #3a8352;
61
- $ds-hex-border-brand: #da000d;
62
- $ds-hex-border-culture: #227ac3;
56
+ $ds-hex-border-focus-03: #DA000D;
57
+ $ds-hex-border-focus-04: #3A8352;
58
+ $ds-hex-border-brand: #DA000D;
63
59
  $ds-hex-background-primary: #ffffff;
64
- $ds-hex-static-red-100: #fad4d4;
60
+ $ds-hex-static-red-100: #FAD4D4;
65
61
  $ds-hex-static-black: #141414;
66
- $ds-hex-static-transparent-black: rgba(20, 20, 20, 0.6);
62
+ $ds-hex-static-transparent-black: #14141499;
67
63
  $ds-hex-static-white: #ffffff;
68
- $ds-hex-static-transparent-white: rgba(255, 255, 255, 0.5);
69
- $ds-hex-static-green-100: #cee4d6;
70
- $ds-hex-static-red-300: #ef7171;
71
- $ds-hex-static-transparent-white-10: rgba(255, 255, 255, 0.13);
72
- $ds-hex-static-kultur: #568cbb;
73
- $ds-hex-static-economy: #60bca1;
74
- $ds-hex-static-sport: #f58d2d;
75
- $ds-hex-static-neutral-200: #e0e0e0;
76
- $ds-hex-static-sthlm: #ff589b;
77
- $ds-hex-static-ad-yellow: #ffeac2;
78
- $ds-hex-static-neutral-100: #ededed;
79
- $ds-hex-static-neutral-500: #9e9e9e;
80
- $ds-hex-static-red-500: #da000d;
81
- $ds-hex-static-yellow: #ffe600;
82
- $ds-hex-static-red-200: #f6acad;
83
- $ds-hex-static-red-0: #fce8e8;
64
+ $ds-hex-static-transparent-white: #ffffff80;
65
+ $ds-hex-static-green-100: #CEE4D6;
66
+ $ds-hex-static-red-300: #EF7171;
67
+ $ds-hex-static-transparent-white-10: #ffffff21;
68
+ $ds-hex-static-kultur: #568CBB;
69
+ $ds-hex-static-economy: #60BCA1;
70
+ $ds-hex-static-sport: #F58D2D;
71
+ $ds-hex-static-neutral-200: #E0E0E0;
72
+ $ds-hex-static-sthlm: #FF589B;
73
+ $ds-hex-static-ad-yellow: #FFEAC2;
74
+ $ds-hex-static-neutral-100: #EDEDED;
75
+ $ds-hex-static-neutral-500: #9E9E9E;
76
+ $ds-hex-static-red-500: #DA000D;
77
+ $ds-hex-static-yellow: #FFE600;
78
+ $ds-hex-static-red-200: #F6ACAD;
79
+ $ds-hex-static-red-0: #FCE8E8;
84
80
  $ds-hex-gradient-content-fade-left: linear-gradient(90deg, #ffffff00 0%, #ffffff 100%);
85
81
  $ds-hex-gradient-content-fade-right: linear-gradient(-90deg, #ffffff00 0%, #ffffff 100%);
86
82
  $ds-hex-gradient-content-fade-up: linear-gradient(180deg, #ffffff00 0%, #ffffff 100%);
@@ -1,8 +1,7 @@
1
1
  $metrics: (
2
2
  border-radius: (
3
3
  x1: 2,
4
- x2: 4,
5
- lg: 8
4
+ x2: 4
6
5
  ),
7
6
  border-width: (
8
7
  x1: 1,
@@ -2,4 +2,3 @@ $ds-fontweight-regular: Regular;
2
2
  $ds-fontweight-medium: Medium;
3
3
  $ds-fontweight-semibold: SemiBold;
4
4
  $ds-fontweight-bold: Bold;
5
- $ds-fontweight-extrabold: ExtraBold;
@@ -15,7 +15,6 @@ $ds-typography-detaildirekt-header: 'detaildirekt-header';
15
15
  $ds-typography-detailteaser-standard-compact: 'detailteaser-standard-compact';
16
16
  $ds-typography-detailteaser-standard-compact-opinion: 'detailteaser-standard-compact-opinion';
17
17
  $ds-typography-detailteaser-large: 'detailteaser-large';
18
- $ds-typography-detailteaser-breaking: 'detailteaser-breaking';
19
18
  $ds-typography-detailteaser-large-opinion: 'detailteaser-large-opinion';
20
19
  $ds-typography-detailteaser-large-storRubrik: 'detailteaser-large-storRubrik';
21
20
  $ds-typography-detailteaser-standard: 'detailteaser-standard';
@@ -54,22 +54,15 @@ $typographyTokensScreenExtraLarge: (
54
54
  fontFamily: "DN Serif Display",
55
55
  fontWeight: Bold,
56
56
  lineHeight: 1.1,
57
- fontSize: 48,
58
- letterSpacing: 0
59
- ),
60
- detailteaser-breaking: (
61
- fontFamily: "DN Serif Display",
62
- fontWeight: ExtraBold,
63
- lineHeight: 1.1,
64
- fontSize: 64,
57
+ fontSize: 56,
65
58
  letterSpacing: 0
66
59
  ),
67
60
  detailteaser-standard: (
68
61
  fontFamily: "DN Serif Headline",
62
+ fontSize: 36,
69
63
  lineHeight: 1.1,
70
64
  letterSpacing: 0,
71
- fontWeight: Bold,
72
- fontSize: 28
65
+ fontWeight: Bold
73
66
  ),
74
67
  detailteaser-standard-compact: (
75
68
  fontFamily: "DN Serif Headline",
@@ -81,7 +74,7 @@ $typographyTokensScreenExtraLarge: (
81
74
  detailteaser-large-compact: (
82
75
  fontFamily: "DN Serif Display",
83
76
  fontWeight: Bold,
84
- fontSize: 36,
77
+ fontSize: 40,
85
78
  lineHeight: 1.1,
86
79
  letterSpacing: 0
87
80
  ),
@@ -93,13 +93,6 @@ $typographyTokensScreenLarge: (
93
93
  fontSize: 40,
94
94
  letterSpacing: 0
95
95
  ),
96
- detailteaser-breaking: (
97
- fontFamily: "DN Serif Display",
98
- fontWeight: ExtraBold,
99
- lineHeight: 1.1,
100
- fontSize: 64,
101
- letterSpacing: 0
102
- ),
103
96
  detailteaser-large-opinion: (
104
97
  fontFamily: "DN Serif Display",
105
98
  fontWeight: Regular,
@@ -117,10 +110,10 @@ $typographyTokensScreenLarge: (
117
110
  ),
118
111
  detailteaser-standard: (
119
112
  fontFamily: "DN Serif Headline",
113
+ fontSize: 26,
120
114
  lineHeight: 1.1,
121
115
  letterSpacing: 0,
122
- fontWeight: Bold,
123
- fontSize: 28
116
+ fontWeight: Bold
124
117
  ),
125
118
  detailteaser-standard-opinion: (
126
119
  fontFamily: "DN Serif Headline",
@@ -140,7 +133,7 @@ $typographyTokensScreenLarge: (
140
133
  detailteaser-large-compact: (
141
134
  fontFamily: "DN Serif Display",
142
135
  fontWeight: Bold,
143
- fontSize: 32,
136
+ fontSize: 40,
144
137
  lineHeight: 1.1,
145
138
  letterSpacing: 0
146
139
  ),
@@ -122,13 +122,6 @@ $typographyTokensScreenSmall: (
122
122
  fontSize: 26,
123
123
  letterSpacing: 0
124
124
  ),
125
- detailteaser-breaking: (
126
- fontFamily: "DN Serif Display",
127
- fontWeight: ExtraBold,
128
- lineHeight: 1.1,
129
- fontSize: 36,
130
- letterSpacing: 0
131
- ),
132
125
  detailteaser-large-opinion: (
133
126
  fontFamily: "DN Serif Headline",
134
127
  fontWeight: Regular,
@@ -146,10 +139,10 @@ $typographyTokensScreenSmall: (
146
139
  ),
147
140
  detailteaser-standard: (
148
141
  fontFamily: "DN Serif Headline",
142
+ fontSize: 20,
149
143
  lineHeight: 1.2,
150
144
  letterSpacing: 0,
151
- fontWeight: Bold,
152
- fontSize: 20
145
+ fontWeight: Bold
153
146
  ),
154
147
  detailteaser-standard-opinion: (
155
148
  fontFamily: "DN Serif Headline",
@@ -163,14 +156,14 @@ $typographyTokensScreenSmall: (
163
156
  fontFamily: "DN Serif Text",
164
157
  fontWeight: Bold,
165
158
  lineHeight: 1.2,
166
- fontSize: 18,
159
+ fontSize: 17,
167
160
  letterSpacing: 0
168
161
  ),
169
162
  detailteaser-large-compact: (
170
163
  fontFamily: "DN Serif Headline",
171
164
  fontWeight: Bold,
172
- fontSize: 20,
173
- lineHeight: 1.2,
165
+ fontSize: 26,
166
+ lineHeight: 1.1,
174
167
  letterSpacing: 0
175
168
  ),
176
169
  detailteaser-large-compact-opinion: (
@@ -212,7 +205,7 @@ $typographyTokensScreenSmall: (
212
205
  detailteaser-tipsa: (
213
206
  fontFamily: "DN Serif Text",
214
207
  fontWeight: Bold,
215
- fontSize: 18,
208
+ fontSize: 17,
216
209
  lineHeight: 1.2,
217
210
  letterSpacing: 0
218
211
  ),
package/index.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ declare module '\*.svg' {
2
+ const filePathString: string
3
+ export default filePathString
4
+ }
package/package.json CHANGED
@@ -1,10 +1,8 @@
1
1
  {
2
2
  "name": "@bonniernews/dn-design-system-web",
3
- "version": "21.2.1-beta.0",
3
+ "version": "22.0.0",
4
4
  "description": "DN design system for web.",
5
- "main": "index.tsx",
6
5
  "type": "module",
7
- "source": "index.tsx",
8
6
  "homepage": "https://github.com/BonnierNews/dn-design-system/tree/main/web/src#readme",
9
7
  "repository": {
10
8
  "type": "git",
@@ -17,14 +15,7 @@
17
15
  "url": "https://github.com/BonnierNews/dn-design-system/issues"
18
16
  },
19
17
  "exports": {
20
- "./preact": {
21
- "import": "./preact/components.esm.js",
22
- "require": "./preact/components.cjs"
23
- },
24
- "./react": {
25
- "import": "./react/components.esm.js",
26
- "require": "./react/components.cjs"
27
- },
18
+ "./preact/*": "./preact/*",
28
19
  "./assets/*.tsx": "./assets/*.tsx",
29
20
  "./assets/*.njk": "./assets/*.njk",
30
21
  "./assets/*.scss": "./assets/*.scss",
@@ -34,22 +25,15 @@
34
25
  "./introduction/*.md": "./introduction/*.md",
35
26
  "./foundations/*": "./foundations/*",
36
27
  "./tokens/*.json": "./tokens/*.json",
28
+ "./types-lib/*.ts": "./types-lib/*.ts",
37
29
  "./package.json": "./package.json"
38
30
  },
39
31
  "peerDependencies": {
40
- "preact": "^10.24.0",
41
- "react": "^18.3.1",
42
- "react-dom": "^18.3.1"
32
+ "preact": "^10.24.0"
43
33
  },
44
34
  "peerDependenciesMeta": {
45
35
  "preact": {
46
36
  "optional": true
47
- },
48
- "react": {
49
- "optional": true
50
- },
51
- "react-dom": {
52
- "optional": true
53
37
  }
54
38
  },
55
39
  "devDependencies": {
@@ -60,8 +44,6 @@
60
44
  "conventional-changelog-conventionalcommits": "^6.1.0",
61
45
  "postcss": "8.4.31",
62
46
  "preact": "^10.24.0",
63
- "react": "^18.3.1",
64
- "react-dom": "^18.3.1",
65
47
  "release-it": "^17.0.0",
66
48
  "stylelint": "^15.11.0",
67
49
  "stylelint-config-recommended-scss": "^13.1.0",
@@ -0,0 +1,21 @@
1
+ // ../src/helpers/formatClassString.ts
2
+ var formatClassString = (classesArray) => {
3
+ return classesArray.filter((x) => !!x).join(" ");
4
+ };
5
+
6
+ // ../src/components/divider/divider.tsx
7
+ import { jsx } from "preact/jsx-runtime";
8
+ var Divider = ({ variant = "soft", classNames, attributes }) => {
9
+ const classes = formatClassString([
10
+ "ds-divider",
11
+ `ds-divider--${variant}`,
12
+ classNames
13
+ ]);
14
+ return /* @__PURE__ */ jsx("div", { className: classes, ...attributes, children: /* @__PURE__ */ jsx("hr", {}) });
15
+ };
16
+ var divider_default = Divider;
17
+ export {
18
+ Divider,
19
+ divider_default as default
20
+ };
21
+ //# sourceMappingURL=divider.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../helpers/formatClassString.ts", "../../../components/divider/divider.tsx"],
4
+ "sourcesContent": ["export const formatClassString = (classesArray: (string|undefined|false)[]): string => {\n return classesArray.filter(x => !!x).join(' ');\n}\n", "import { formatClassString } from \"@bonniernews/dn-design-system-web/helpers/formatClassString.ts\";\n\nexport interface DividerProps {\n variant?: 'soft' | 'medium' | 'hard';\n classNames?: string;\n attributes?: object;\n}\n\n/**\n * - GitHub: [BonnierNews/dn-design-system/../web/src/components/divider](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/divider)\n * - Storybook: [Divider](https://designsystem.dn.se/?path=/docs/basic-divider--docs)\n *\n * The component will not include styling by itself. Make sure to include the right styles for the component. See example below:\n * `@use '@bonniernews/dn-design-system-web/components/divider/divider.scss'`\n */\nexport const Divider = ({ variant = 'soft', classNames, attributes }: DividerProps) => {\n const classes = formatClassString([\n 'ds-divider',\n `ds-divider--${variant}`,\n classNames\n ])\n\n return (\n <div className={classes} {...attributes}><hr /></div>\n );\n};\n\nexport default Divider;\n"],
5
+ "mappings": ";AAAO,IAAM,oBAAoB,CAAC,iBAAqD;AACrF,SAAO,aAAa,OAAO,OAAK,CAAC,CAAC,CAAC,EAAE,KAAK,GAAG;AAC/C;;;ACqB6C;AARtC,IAAM,UAAU,CAAC,EAAE,UAAU,QAAQ,YAAY,WAAW,MAAoB;AACrF,QAAM,UAAU,kBAAkB;AAAA,IAChC;AAAA,IACA,eAAe,OAAO;AAAA,IACtB;AAAA,EACF,CAAC;AAED,SACE,oBAAC,SAAI,WAAW,SAAU,GAAG,YAAY,8BAAC,QAAG,GAAE;AAEnD;AAEA,IAAO,kBAAQ;",
6
+ "names": []
7
+ }
@@ -0,0 +1,33 @@
1
+ interface FooterLink {
2
+ href: string;
3
+ text: string;
4
+ classNames?: string;
5
+ attributes?: object;
6
+ }
7
+ interface FooterLinkList {
8
+ attributes?: object;
9
+ title?: string;
10
+ links: FooterLink[];
11
+ }
12
+ export interface FooterProps {
13
+ editorsHtml?: string;
14
+ copyright?: string;
15
+ linkGroups?: FooterLinkList[];
16
+ rudolf: {
17
+ imgUrl: string;
18
+ text: string;
19
+ };
20
+ channels?: FooterLink[];
21
+ classNames?: string;
22
+ attributes?: object;
23
+ forcePx?: boolean;
24
+ }
25
+ /**
26
+ * - GitHub: [BonnierNews/dn-design-system/../web/src/components/footer](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/footer)
27
+ * - Storybook: [footer](https://designsystem.dn.se/?path=/docs/page-footer--docs)
28
+ *
29
+ * The component will not include styling by itself. Make sure to include the right styles for the component. See example below:
30
+ * `@use '@bonniernews/dn-design-system-web/components/footer/footer.scss'`
31
+ */
32
+ export declare const Footer: ({ editorsHtml, copyright, linkGroups, rudolf, channels, classNames, attributes, }: FooterProps) => import("preact").JSX.Element;
33
+ export default Footer;