hr-design-system-handlebars 1.11.6 → 1.11.7

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 CHANGED
@@ -1,3 +1,15 @@
1
+ # v1.11.7 (Wed Apr 05 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - - added empty parameters to Button components so parentScopeResolutio… [#600](https://github.com/mumprod/hr-design-system-handlebars/pull/600) ([@vascoeduardo](https://github.com/vascoeduardo))
6
+
7
+ #### Authors: 1
8
+
9
+ - Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
10
+
11
+ ---
12
+
1
13
  # v1.11.6 (Mon Apr 03 2023)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -2665,7 +2665,7 @@ video {
2665
2665
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
2666
2666
  }
2667
2667
  .counter-reset {
2668
- counter-reset: cnt1680514078344;
2668
+ counter-reset: cnt1680680990051;
2669
2669
  }
2670
2670
  .line-clamp-4 {
2671
2671
  overflow: hidden;
@@ -2895,7 +2895,7 @@ video {
2895
2895
  --tw-ring-color: rgba(255, 255, 255, 0.5);
2896
2896
  }
2897
2897
  .-ordered {
2898
- counter-increment: cnt1680514078344 1;
2898
+ counter-increment: cnt1680680990051 1;
2899
2899
  }
2900
2900
  .-ordered::before {
2901
2901
  position: absolute;
@@ -2911,7 +2911,7 @@ video {
2911
2911
  letter-spacing: .0125em;
2912
2912
  --tw-text-opacity: 1;
2913
2913
  color: rgba(0, 0, 0, var(--tw-text-opacity));
2914
- content: counter(cnt1680514078344);
2914
+ content: counter(cnt1680680990051);
2915
2915
  }
2916
2916
  /*! ****************************/
2917
2917
  /*! text-shadow */
@@ -10,7 +10,17 @@
10
10
  {{~#if _noFocus}} tabindex="-1"{{/if}}
11
11
  >
12
12
  {{~#if _showIcon~}}
13
- {{> components/base/image/icon _icon=_icon _iconmap=_iconmap _addClass=_addIconClass _webview=_webview}}
13
+ {{> components/base/image/icon
14
+ _icon=_icon
15
+ _iconmap=_iconmap
16
+ _addClass=_addIconClass
17
+ _webview=_webview
18
+ _ariaHidden=false
19
+ _iconTitle=false
20
+ _iconDesc=false
21
+ _iconText=false
22
+ _overlayIcon=false
23
+ }}
14
24
  {{/if~}}
15
25
  {{~#if _label~}}
16
26
  <span {{#if _srOnly}}class="sr-only"{{/if}}>
@@ -11,17 +11,26 @@
11
11
  {{~> components/base/image/responsive_image this.teaserImage _type=(if this.teaserType this.teaserType 'story') _variant=(if this.content.imageVariant this.content.imageVariant '100-copytext') _addClassImg="ar__content" _noDelay=this.dontLazyload ~}}
12
12
  {{/with}}
13
13
  {{> components/button/button_round
14
- _isButton="true"
15
- _addClass='absolute bottom-0 right-0 fill-white hover:text-white ds-focus rounded-full js-mediaplayer__button cy-mediaplayer-trigger'
16
- _buttonColor=(if _isLivestream ' text-orange-spicyCarrot hover:fill-orange-spicyCarrot' ' text-media-button hover:fill-media-button')
17
- _teaserType=_teaserType
18
- _teaserSize=_teaserSize
19
- _isMobile1to1=_isMobile1to1
20
- _showIcon=true
21
- _icon=_mediaButtonIcon
22
- _label=_mediaButtonLabel
23
- _srOnly="true"
24
- _alpineClick="avStart = !avStart; $dispatch('player_start')"
14
+ _isButton="true"
15
+ _addClass='absolute bottom-0 right-0 fill-white hover:text-white ds-focus rounded-full js-mediaplayer__button cy-mediaplayer-trigger'
16
+ _buttonColor=(if _isLivestream ' text-orange-spicyCarrot hover:fill-orange-spicyCarrot' ' text-media-button hover:fill-media-button')
17
+ _teaserType=_teaserType
18
+ _teaserSize=_teaserSize
19
+ _isMobile1to1=_isMobile1to1
20
+ _showIcon=true
21
+ _icon=_mediaButtonIcon
22
+ _label=_mediaButtonLabel
23
+ _srOnly="true"
24
+ _alpineClick="avStart = !avStart; $dispatch('player_start')"
25
+ _aria=""
26
+ _title=""
27
+ _name=""
28
+ _value=""
29
+ _iconmap="icons"
30
+ _addIconClass=""
31
+ _webview=""
32
+ _x-show=""
33
+ _noFocus=""
25
34
  }}
26
35
  </div>
27
36
  {{/if}}
@@ -1 +1,20 @@
1
- {{> components/button/button_transparent _showIcon="true" _title="Mediaplayer schließen" _icon="arrow-up" _iconmap="icons"_addIconClass="w-3 h-3 fill-current" _addClass="md:hidden absolute top-full right-0 z-20" _x-show="avStart" _alpineClick=(loca "close_button_alpine_click" _playerId)}}
1
+ {{> components/button/button_transparent
2
+ _showIcon="true"
3
+ _title="Mediaplayer schließen"
4
+ _icon="arrow-up"
5
+ _iconmap="icons"
6
+ _addIconClass="w-3 h-3 fill-current"
7
+ _addClass="md:hidden absolute top-full right-0 z-20"
8
+ _x-show="avStart"
9
+ _alpineClick=(loca "close_button_alpine_click" _playerId)
10
+
11
+ _isButton="true"
12
+ _buttonColor=""
13
+ _label=""
14
+ _srOnly=true
15
+ _aria=""
16
+ _name=""
17
+ _value=""
18
+ _webview=""
19
+ _noFocus=""
20
+ }}
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.11.6",
9
+ "version": "1.11.7",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "start-storybook -p 6006 public",
@@ -10,7 +10,17 @@
10
10
  {{~#if _noFocus}} tabindex="-1"{{/if}}
11
11
  >
12
12
  {{~#if _showIcon~}}
13
- {{> components/base/image/icon _icon=_icon _iconmap=_iconmap _addClass=_addIconClass _webview=_webview}}
13
+ {{> components/base/image/icon
14
+ _icon=_icon
15
+ _iconmap=_iconmap
16
+ _addClass=_addIconClass
17
+ _webview=_webview
18
+ _ariaHidden=false
19
+ _iconTitle=false
20
+ _iconDesc=false
21
+ _iconText=false
22
+ _overlayIcon=false
23
+ }}
14
24
  {{/if~}}
15
25
  {{~#if _label~}}
16
26
  <span {{#if _srOnly}}class="sr-only"{{/if}}>
@@ -11,17 +11,26 @@
11
11
  {{~> components/base/image/responsive_image this.teaserImage _type=(if this.teaserType this.teaserType 'story') _variant=(if this.content.imageVariant this.content.imageVariant '100-copytext') _addClassImg="ar__content" _noDelay=this.dontLazyload ~}}
12
12
  {{/with}}
13
13
  {{> components/button/button_round
14
- _isButton="true"
15
- _addClass='absolute bottom-0 right-0 fill-white hover:text-white ds-focus rounded-full js-mediaplayer__button cy-mediaplayer-trigger'
16
- _buttonColor=(if _isLivestream ' text-orange-spicyCarrot hover:fill-orange-spicyCarrot' ' text-media-button hover:fill-media-button')
17
- _teaserType=_teaserType
18
- _teaserSize=_teaserSize
19
- _isMobile1to1=_isMobile1to1
20
- _showIcon=true
21
- _icon=_mediaButtonIcon
22
- _label=_mediaButtonLabel
23
- _srOnly="true"
24
- _alpineClick="avStart = !avStart; $dispatch('player_start')"
14
+ _isButton="true"
15
+ _addClass='absolute bottom-0 right-0 fill-white hover:text-white ds-focus rounded-full js-mediaplayer__button cy-mediaplayer-trigger'
16
+ _buttonColor=(if _isLivestream ' text-orange-spicyCarrot hover:fill-orange-spicyCarrot' ' text-media-button hover:fill-media-button')
17
+ _teaserType=_teaserType
18
+ _teaserSize=_teaserSize
19
+ _isMobile1to1=_isMobile1to1
20
+ _showIcon=true
21
+ _icon=_mediaButtonIcon
22
+ _label=_mediaButtonLabel
23
+ _srOnly="true"
24
+ _alpineClick="avStart = !avStart; $dispatch('player_start')"
25
+ _aria=""
26
+ _title=""
27
+ _name=""
28
+ _value=""
29
+ _iconmap="icons"
30
+ _addIconClass=""
31
+ _webview=""
32
+ _x-show=""
33
+ _noFocus=""
25
34
  }}
26
35
  </div>
27
36
  {{/if}}
@@ -1 +1,20 @@
1
- {{> components/button/button_transparent _showIcon="true" _title="Mediaplayer schließen" _icon="arrow-up" _iconmap="icons"_addIconClass="w-3 h-3 fill-current" _addClass="md:hidden absolute top-full right-0 z-20" _x-show="avStart" _alpineClick=(loca "close_button_alpine_click" _playerId)}}
1
+ {{> components/button/button_transparent
2
+ _showIcon="true"
3
+ _title="Mediaplayer schließen"
4
+ _icon="arrow-up"
5
+ _iconmap="icons"
6
+ _addIconClass="w-3 h-3 fill-current"
7
+ _addClass="md:hidden absolute top-full right-0 z-20"
8
+ _x-show="avStart"
9
+ _alpineClick=(loca "close_button_alpine_click" _playerId)
10
+
11
+ _isButton="true"
12
+ _buttonColor=""
13
+ _label=""
14
+ _srOnly=true
15
+ _aria=""
16
+ _name=""
17
+ _value=""
18
+ _webview=""
19
+ _noFocus=""
20
+ }}