hr-design-system-handlebars 1.79.1 โ 1.80.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 +24 -0
- package/dist/assets/index.css +6 -3
- package/dist/views/components/content/content_footer/content_footer.hbs +1 -1
- package/dist/views_static/components/content/content_footer/content_footer.hbs +1 -1
- package/package.json +1 -1
- package/src/assets/tailwind.css +7 -0
- package/src/stories/views/components/content/content_footer/content_footer.hbs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v1.80.1 (Wed Jul 10 2024)
|
|
2
|
+
|
|
3
|
+
#### ๐ Bug Fix
|
|
4
|
+
|
|
5
|
+
- - removes unneeded {{this.from}} [#995](https://github.com/mumprod/hr-design-system-handlebars/pull/995) ([@StefanVesper](https://github.com/StefanVesper))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v1.80.0 (Tue Jul 09 2024)
|
|
14
|
+
|
|
15
|
+
#### ๐ Enhancement
|
|
16
|
+
|
|
17
|
+
- :lipstick: truncate text in the player headline not before the end ofโฆ [#993](https://github.com/mumprod/hr-design-system-handlebars/pull/993) ([@szuelch](https://github.com/szuelch))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- [@szuelch](https://github.com/szuelch)
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v1.79.1 (Tue Jul 09 2024)
|
|
2
26
|
|
|
3
27
|
#### ๐ Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -3399,7 +3399,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3399
3399
|
border-bottom-color: var(--color-secondary-ds);
|
|
3400
3400
|
}
|
|
3401
3401
|
.counter-reset {
|
|
3402
|
-
counter-reset:
|
|
3402
|
+
counter-reset: cnt1720604869498;
|
|
3403
3403
|
}
|
|
3404
3404
|
.hyphens-auto {
|
|
3405
3405
|
-webkit-hyphens: auto;
|
|
@@ -3797,7 +3797,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3797
3797
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3798
3798
|
}
|
|
3799
3799
|
.-ordered {
|
|
3800
|
-
counter-increment:
|
|
3800
|
+
counter-increment: cnt1720604869498 1;
|
|
3801
3801
|
}
|
|
3802
3802
|
.-ordered::before {
|
|
3803
3803
|
position: absolute;
|
|
@@ -3813,7 +3813,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3813
3813
|
letter-spacing: .0125em;
|
|
3814
3814
|
--tw-text-opacity: 1;
|
|
3815
3815
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3816
|
-
content: counter(
|
|
3816
|
+
content: counter(cnt1720604869498);
|
|
3817
3817
|
}
|
|
3818
3818
|
/*! ****************************/
|
|
3819
3819
|
/*! DataPolicy stuff */
|
|
@@ -4092,6 +4092,9 @@ ul.restrictedToTwo li:nth-of-type(1n + 2) .timelineBorder {
|
|
|
4092
4092
|
--ardplayer-color-lightest: #ffffff;
|
|
4093
4093
|
color: var(--ardplayer-color-lightest);
|
|
4094
4094
|
}
|
|
4095
|
+
:root .ardplayer.ardplayer-state-audio-inline .ardplayer-audio h2, [data-theme='default'] .ardplayer.ardplayer-state-audio-inline .ardplayer-audio h2 {
|
|
4096
|
+
-webkit-line-clamp: 3;
|
|
4097
|
+
}
|
|
4095
4098
|
[data-theme='hessenschau'] {
|
|
4096
4099
|
--color-primary-ds: #005293;
|
|
4097
4100
|
--color-secondary-ds: #606060;
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
{{#>components/base/link _link=this.link _css="text-link hover:underline"}}<span>{{../this.authorName~}}</span>{{/components/base/link~}}
|
|
8
8
|
{{~#with this.textAfterAuthor}}{{this}}{{/with}}{{~this.delimiter~}}
|
|
9
9
|
{{else}}
|
|
10
|
-
{{
|
|
10
|
+
{{#with this.textAfterAuthor}}{{this}}{{/with}}{{this.delimiter}}
|
|
11
11
|
{{/if}}
|
|
12
12
|
{{/each}}
|
|
13
13
|
</p>
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
{{#>components/base/link _link=this.link _css="text-link hover:underline"}}<span>{{../this.authorName~}}</span>{{/components/base/link~}}
|
|
8
8
|
{{~#with this.textAfterAuthor}}{{this}}{{/with}}{{~this.delimiter~}}
|
|
9
9
|
{{else}}
|
|
10
|
-
{{
|
|
10
|
+
{{#with this.textAfterAuthor}}{{this}}{{/with}}{{this.delimiter}}
|
|
11
11
|
{{/if}}
|
|
12
12
|
{{/each}}
|
|
13
13
|
</p>
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"repository": "https://github.com/szuelch/hr-design-system-handlebars",
|
|
9
|
-
"version": "1.
|
|
9
|
+
"version": "1.80.1",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
package/src/assets/tailwind.css
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
{{#>components/base/link _link=this.link _css="text-link hover:underline"}}<span>{{../this.authorName~}}</span>{{/components/base/link~}}
|
|
8
8
|
{{~#with this.textAfterAuthor}}{{this}}{{/with}}{{~this.delimiter~}}
|
|
9
9
|
{{else}}
|
|
10
|
-
{{
|
|
10
|
+
{{#with this.textAfterAuthor}}{{this}}{{/with}}{{this.delimiter}}
|
|
11
11
|
{{/if}}
|
|
12
12
|
{{/each}}
|
|
13
13
|
</p>
|