hr-design-system-handlebars 1.81.3 → 1.81.4
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.81.4 (Thu Jul 11 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- DPE-3232- Data-Attribute fehlen bei Bildergalerie-Link [#1004](https://github.com/mumprod/hr-design-system-handlebars/pull/1004) ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.81.3 (Thu Jul 11 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -3306,7 +3306,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3306
3306
|
border-bottom-color: var(--color-secondary-ds);
|
|
3307
3307
|
}
|
|
3308
3308
|
.counter-reset {
|
|
3309
|
-
counter-reset:
|
|
3309
|
+
counter-reset: cnt1720705682439;
|
|
3310
3310
|
}
|
|
3311
3311
|
.hyphens-auto {
|
|
3312
3312
|
-webkit-hyphens: auto;
|
|
@@ -3704,7 +3704,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3704
3704
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3705
3705
|
}
|
|
3706
3706
|
.-ordered {
|
|
3707
|
-
counter-increment:
|
|
3707
|
+
counter-increment: cnt1720705682439 1;
|
|
3708
3708
|
}
|
|
3709
3709
|
.-ordered::before {
|
|
3710
3710
|
position: absolute;
|
|
@@ -3720,7 +3720,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3720
3720
|
letter-spacing: .0125em;
|
|
3721
3721
|
--tw-text-opacity: 1;
|
|
3722
3722
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3723
|
-
content: counter(
|
|
3723
|
+
content: counter(cnt1720705682439);
|
|
3724
3724
|
}
|
|
3725
3725
|
/*! ****************************/
|
|
3726
3726
|
/*! DataPolicy stuff */
|
|
@@ -3,7 +3,12 @@
|
|
|
3
3
|
{{~> @partial-block ~}}
|
|
4
4
|
</a>
|
|
5
5
|
{{~else~}}
|
|
6
|
-
<a {{#
|
|
6
|
+
<a {{#if _link.isWebview}}
|
|
7
|
+
data-webviewurl="{{_link.webviewUrl}}"
|
|
8
|
+
data-primary-type='{{_link.primaryType}}'
|
|
9
|
+
data-json-url='{{_link.jsonUrl}}'
|
|
10
|
+
{{/if}}
|
|
11
|
+
{{#if _link.isStaticUrl}}href="{{#if _link.site}}{{resourceUrl _link.url _site=_link.site}}{{else}}{{resourceUrl _link.url}}{{/if}}{{else}}href="{{_link.url}}{{/if}}{{#if this.hasComments}}#commentList{{/if}}"
|
|
7
12
|
class="sb-link ds-link js-load{{#if _link.isUserConsentNeeded}} js-user-consent-needed{{/if}} {{#if _isSelected}} {{defaultIfEmpty _selectedCssClass "-current"}}{{/if}}{{#if _css}} {{_css}}{{/if}} {{#> css}}{{/css}}"
|
|
8
13
|
{{#if _link.isTargetBlank}} target="_blank" rel="noopener{{#if _link.hasNoReferrerFlag}} noreferrer{{/if}}"{{/if}}
|
|
9
14
|
{{#if _isAriaHidden}} aria-hidden="true" tabindex="-1"{{/if}}
|
|
@@ -3,7 +3,12 @@
|
|
|
3
3
|
{{~> @partial-block ~}}
|
|
4
4
|
</a>
|
|
5
5
|
{{~else~}}
|
|
6
|
-
<a {{#
|
|
6
|
+
<a {{#if _link.isWebview}}
|
|
7
|
+
data-webviewurl="{{_link.webviewUrl}}"
|
|
8
|
+
data-primary-type='{{_link.primaryType}}'
|
|
9
|
+
data-json-url='{{_link.jsonUrl}}'
|
|
10
|
+
{{/if}}
|
|
11
|
+
{{#if _link.isStaticUrl}}href="{{#if _link.site}}{{resourceUrl _link.url _site=_link.site}}{{else}}{{resourceUrl _link.url}}{{/if}}{{else}}href="{{_link.url}}{{/if}}{{#if this.hasComments}}#commentList{{/if}}"
|
|
7
12
|
class="sb-link ds-link js-load{{#if _link.isUserConsentNeeded}} js-user-consent-needed{{/if}} {{#if _isSelected}} {{defaultIfEmpty _selectedCssClass "-current"}}{{/if}}{{#if _css}} {{_css}}{{/if}} {{#> css}}{{/css}}"
|
|
8
13
|
{{#if _link.isTargetBlank}} target="_blank" rel="noopener{{#if _link.hasNoReferrerFlag}} noreferrer{{/if}}"{{/if}}
|
|
9
14
|
{{#if _isAriaHidden}} aria-hidden="true" tabindex="-1"{{/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": "1.81.
|
|
9
|
+
"version": "1.81.4",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -3,7 +3,12 @@
|
|
|
3
3
|
{{~> @partial-block ~}}
|
|
4
4
|
</a>
|
|
5
5
|
{{~else~}}
|
|
6
|
-
<a {{#
|
|
6
|
+
<a {{#if _link.isWebview}}
|
|
7
|
+
data-webviewurl="{{_link.webviewUrl}}"
|
|
8
|
+
data-primary-type='{{_link.primaryType}}'
|
|
9
|
+
data-json-url='{{_link.jsonUrl}}'
|
|
10
|
+
{{/if}}
|
|
11
|
+
{{#if _link.isStaticUrl}}href="{{#if _link.site}}{{resourceUrl _link.url _site=_link.site}}{{else}}{{resourceUrl _link.url}}{{/if}}{{else}}href="{{_link.url}}{{/if}}{{#if this.hasComments}}#commentList{{/if}}"
|
|
7
12
|
class="sb-link ds-link js-load{{#if _link.isUserConsentNeeded}} js-user-consent-needed{{/if}} {{#if _isSelected}} {{defaultIfEmpty _selectedCssClass "-current"}}{{/if}}{{#if _css}} {{_css}}{{/if}} {{#> css}}{{/css}}"
|
|
8
13
|
{{#if _link.isTargetBlank}} target="_blank" rel="noopener{{#if _link.hasNoReferrerFlag}} noreferrer{{/if}}"{{/if}}
|
|
9
14
|
{{#if _isAriaHidden}} aria-hidden="true" tabindex="-1"{{/if}}
|