hr-design-system-handlebars 0.103.0 → 0.104.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.
- package/CHANGELOG.md +12 -0
- package/dist/assets/index.css +3 -3
- package/dist/views/components/button/button_pseudo.hbs +2 -2
- package/dist/views/components/teaser/components/teaser_heading.hbs +2 -2
- package/package.json +1 -1
- package/src/stories/views/components/button/button_pseudo.hbs +2 -2
- package/src/stories/views/components/teaser/components/teaser_heading.hbs +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v0.104.0 (Fri Dec 09 2022)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- BUGFIX: Explicitely sets partial properties [#427](https://github.com/mumprod/hr-design-system-handlebars/pull/427) ([@szuelch](https://github.com/szuelch))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- [@szuelch](https://github.com/szuelch)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v0.103.0 (Fri Dec 09 2022)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
package/dist/assets/index.css
CHANGED
|
@@ -2208,7 +2208,7 @@ video {
|
|
|
2208
2208
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
2209
2209
|
}
|
|
2210
2210
|
.counter-reset {
|
|
2211
|
-
counter-reset:
|
|
2211
|
+
counter-reset: cnt1670600800481;
|
|
2212
2212
|
}
|
|
2213
2213
|
.line-clamp-4 {
|
|
2214
2214
|
overflow: hidden;
|
|
@@ -2440,7 +2440,7 @@ video {
|
|
|
2440
2440
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
2441
2441
|
}
|
|
2442
2442
|
.-ordered {
|
|
2443
|
-
counter-increment:
|
|
2443
|
+
counter-increment: cnt1670600800481 1;
|
|
2444
2444
|
}
|
|
2445
2445
|
.-ordered::before {
|
|
2446
2446
|
position: absolute;
|
|
@@ -2456,7 +2456,7 @@ video {
|
|
|
2456
2456
|
letter-spacing: .0125em;
|
|
2457
2457
|
--tw-text-opacity: 1;
|
|
2458
2458
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
2459
|
-
content: counter(
|
|
2459
|
+
content: counter(cnt1670600800481);
|
|
2460
2460
|
}
|
|
2461
2461
|
/*! ****************************/
|
|
2462
2462
|
/*! text-shadow */
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{{#if _withLink}}
|
|
2
2
|
{{#decorator 'components/base/link' _isAriaHidden=_isLinkAriaHidden _css=_linkCss}}
|
|
3
|
-
{{>components/button/button_pseudo.inc}}
|
|
3
|
+
{{>components/button/button_pseudo.inc _buttonCss=_buttonCss _buttonText=_buttonText _type=_type _isLinkAriaHidden=_isLinkAriaHidden}}
|
|
4
4
|
{{/decorator}}
|
|
5
5
|
{{else}}
|
|
6
|
-
{{>components/button/button_pseudo.inc}}
|
|
6
|
+
{{>components/button/button_pseudo.inc _buttonCss=_buttonCss _buttonText=_buttonText _type=_type _isLinkAriaHidden=_isLinkAriaHidden}}
|
|
7
7
|
{{/if}}
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
<{{~ _headlineTag ~}}{{#if _headlineCss}} class="{{_headlineCss}}"{{/if}}>
|
|
8
8
|
{{#if _topline}}
|
|
9
|
-
{{> components/teaser/components/teaser_topline _css=_toplineCss _text=_topline _readMore=_readMore _teaserType=_teaserType}}
|
|
9
|
+
{{> components/teaser/components/teaser_topline _css=(if _toplineCss _toplineCss "") _text=_topline _readMore=_readMore _teaserType=_teaserType}}
|
|
10
10
|
{{/if}}
|
|
11
|
-
{{> components/teaser/components/teaser_title _css=_titleCss _text=_title _fontVariant=_fontVariant _size=_size _teaserType=_teaserType _isMobile1to1=_isMobile1to1 _firstItem=_firstItem _ordered=_ordered}}
|
|
11
|
+
{{> components/teaser/components/teaser_title _css=(if _titleCss _titleCss "") _text=_title _fontVariant=_fontVariant _size=_size _teaserType=_teaserType _isMobile1to1=_isMobile1to1 _firstItem=_firstItem _ordered=_ordered}}
|
|
12
12
|
{{#if _extendedTitle}}
|
|
13
13
|
<span class="block text-subline font-normal font-heading text-base sm:text-lg mt-1 sm:mt-1.5 leading-6">{{_extendedTitle}}</span>
|
|
14
14
|
{{/if}}
|
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": "0.
|
|
9
|
+
"version": "0.104.0",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "start-storybook -p 6006 public",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{{#if _withLink}}
|
|
2
2
|
{{#decorator 'components/base/link' _isAriaHidden=_isLinkAriaHidden _css=_linkCss}}
|
|
3
|
-
{{>components/button/button_pseudo.inc}}
|
|
3
|
+
{{>components/button/button_pseudo.inc _buttonCss=_buttonCss _buttonText=_buttonText _type=_type _isLinkAriaHidden=_isLinkAriaHidden}}
|
|
4
4
|
{{/decorator}}
|
|
5
5
|
{{else}}
|
|
6
|
-
{{>components/button/button_pseudo.inc}}
|
|
6
|
+
{{>components/button/button_pseudo.inc _buttonCss=_buttonCss _buttonText=_buttonText _type=_type _isLinkAriaHidden=_isLinkAriaHidden}}
|
|
7
7
|
{{/if}}
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
<{{~ _headlineTag ~}}{{#if _headlineCss}} class="{{_headlineCss}}"{{/if}}>
|
|
8
8
|
{{#if _topline}}
|
|
9
|
-
{{> components/teaser/components/teaser_topline _css=_toplineCss _text=_topline _readMore=_readMore _teaserType=_teaserType}}
|
|
9
|
+
{{> components/teaser/components/teaser_topline _css=(if _toplineCss _toplineCss "") _text=_topline _readMore=_readMore _teaserType=_teaserType}}
|
|
10
10
|
{{/if}}
|
|
11
|
-
{{> components/teaser/components/teaser_title _css=_titleCss _text=_title _fontVariant=_fontVariant _size=_size _teaserType=_teaserType _isMobile1to1=_isMobile1to1 _firstItem=_firstItem _ordered=_ordered}}
|
|
11
|
+
{{> components/teaser/components/teaser_title _css=(if _titleCss _titleCss "") _text=_title _fontVariant=_fontVariant _size=_size _teaserType=_teaserType _isMobile1to1=_isMobile1to1 _firstItem=_firstItem _ordered=_ordered}}
|
|
12
12
|
{{#if _extendedTitle}}
|
|
13
13
|
<span class="block text-subline font-normal font-heading text-base sm:text-lg mt-1 sm:mt-1.5 leading-6">{{_extendedTitle}}</span>
|
|
14
14
|
{{/if}}
|