hr-design-system-handlebars 1.50.15 → 1.50.16
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/content_nav/content_nav.hbs +1 -1
- package/dist/views/components/content_nav/content_nav_dropdown.hbs +1 -1
- package/dist/views/components/teaser/content_nav/teaser_content_nav.hbs +2 -2
- package/dist/views_static/components/content_nav/content_nav.hbs +1 -1
- package/dist/views_static/components/content_nav/content_nav_dropdown.hbs +1 -1
- package/dist/views_static/components/teaser/content_nav/teaser_content_nav.hbs +2 -2
- package/package.json +1 -1
- package/src/stories/views/components/content_nav/content_nav.hbs +1 -1
- package/src/stories/views/components/content_nav/content_nav_dropdown.hbs +1 -1
- package/src/stories/views/components/teaser/content_nav/teaser_content_nav.hbs +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.50.16 (Wed Nov 22 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- prepare content-nav for copytext [#764](https://github.com/mumprod/hr-design-system-handlebars/pull/764) ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.50.15 (Wed Nov 22 2023)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -3088,7 +3088,7 @@ article.indexText ul {
|
|
|
3088
3088
|
border-bottom-color: var(--color-secondary-ds);
|
|
3089
3089
|
}
|
|
3090
3090
|
.counter-reset {
|
|
3091
|
-
counter-reset:
|
|
3091
|
+
counter-reset: cnt1700662128051;
|
|
3092
3092
|
}
|
|
3093
3093
|
.hyphens-auto {
|
|
3094
3094
|
-webkit-hyphens: auto;
|
|
@@ -3349,7 +3349,7 @@ article.indexText ul {
|
|
|
3349
3349
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3350
3350
|
}
|
|
3351
3351
|
.-ordered {
|
|
3352
|
-
counter-increment:
|
|
3352
|
+
counter-increment: cnt1700662128051 1;
|
|
3353
3353
|
}
|
|
3354
3354
|
.-ordered::before {
|
|
3355
3355
|
position: absolute;
|
|
@@ -3365,7 +3365,7 @@ article.indexText ul {
|
|
|
3365
3365
|
letter-spacing: .0125em;
|
|
3366
3366
|
--tw-text-opacity: 1;
|
|
3367
3367
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3368
|
-
content: counter(
|
|
3368
|
+
content: counter(cnt1700662128051);
|
|
3369
3369
|
}
|
|
3370
3370
|
/*! ****************************/
|
|
3371
3371
|
/*! DataPolicy stuff */
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{{#with this.contentNav}}
|
|
2
2
|
{{#if this.isListOrFlow}}
|
|
3
|
-
<nav class="w-full px-5 sm:px-0 c-content-nav {{inline-switch ../_teaserSize '["100","66","50","33","25"]' '[" teaser-size-100"," teaser-size-66"," teaser-size-50"," teaser-size-33"," teaser-size-25", ""]'}}">
|
|
3
|
+
<nav class="w-full {{#if ../_isCopytext~}}px-0{{else}}px-5 sm:px-0{{/if}} c-content-nav {{inline-switch ../_teaserSize '["100","66","50","33","25"]' '[" teaser-size-100"," teaser-size-66"," teaser-size-50"," teaser-size-33"," teaser-size-25", ""]'}}">
|
|
4
4
|
{{> components/content_nav/content_nav_container
|
|
5
5
|
_teaserSize=../_teaserSize
|
|
6
6
|
_maindivclass="flex relative flex-wrap"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<nav class="w-full px-5 sm:px-0 {{inline-switch _teaserSize '["100","66","50","33","25"]' '[" teaser-size-100"," teaser-size-66"," teaser-size-50"," teaser-size-33"," teaser-size-25", ""]'}}"
|
|
1
|
+
<nav class="w-full {{#if ../_isCopytext~}}px-0{{else}}px-5 sm:px-0{{/if}} {{inline-switch _teaserSize '["100","66","50","33","25"]' '[" teaser-size-100"," teaser-size-66"," teaser-size-50"," teaser-size-33"," teaser-size-25", ""]'}}"
|
|
2
2
|
:class="contentNavDropdownIsOpen ? 'h-10' : ''"
|
|
3
3
|
id="dropdown--{{nextRandom}}"
|
|
4
4
|
@click.outside ="contentNavDropdownIsOpen = false; $dispatch('hr:global:resetinputAutoSuggest')"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div id="{{nextRandom}}"
|
|
2
2
|
x-data="{ contentNavDropdownIsOpen: false}"
|
|
3
|
-
class="js-contentNavWrapper col-span-full flex gap-y-3 gap-x-4 js-load {{inline-switch this.teaserSize '["100","66","50","33","25"]' '["flex-col","md:col-span-9 md:flex-row ","md:col-span-6 md:flex-row "," md:col-span-4 md:flex-row "," md:col-span-3 md:flex-row "]'}}"
|
|
3
|
+
class="{{#if _isCopytext~}} my-6 {{/if}}js-contentNavWrapper col-span-full flex gap-y-3 gap-x-4 js-load {{inline-switch this.teaserSize '["100","66","50","33","25"]' '["flex-col","md:col-span-9 md:flex-row ","md:col-span-6 md:flex-row "," md:col-span-4 md:flex-row "," md:col-span-3 md:flex-row "]'}}"
|
|
4
4
|
>
|
|
5
|
-
{{> components/content_nav/content_nav _teaserSize=this.realTeaserSize }}
|
|
5
|
+
{{> components/content_nav/content_nav _teaserSize=this.realTeaserSize _isCopytext=_isCopytext}}
|
|
6
6
|
</div>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{{#with this.contentNav}}
|
|
2
2
|
{{#if this.isListOrFlow}}
|
|
3
|
-
<nav class="w-full px-5 sm:px-0 c-content-nav {{inline-switch ../_teaserSize '["100","66","50","33","25"]' '[" teaser-size-100"," teaser-size-66"," teaser-size-50"," teaser-size-33"," teaser-size-25", ""]'}}">
|
|
3
|
+
<nav class="w-full {{#if ../_isCopytext~}}px-0{{else}}px-5 sm:px-0{{/if}} c-content-nav {{inline-switch ../_teaserSize '["100","66","50","33","25"]' '[" teaser-size-100"," teaser-size-66"," teaser-size-50"," teaser-size-33"," teaser-size-25", ""]'}}">
|
|
4
4
|
{{> components/content_nav/content_nav_container
|
|
5
5
|
_teaserSize=../_teaserSize
|
|
6
6
|
_maindivclass="flex relative flex-wrap"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<nav class="w-full px-5 sm:px-0 {{inline-switch _teaserSize '["100","66","50","33","25"]' '[" teaser-size-100"," teaser-size-66"," teaser-size-50"," teaser-size-33"," teaser-size-25", ""]'}}"
|
|
1
|
+
<nav class="w-full {{#if ../_isCopytext~}}px-0{{else}}px-5 sm:px-0{{/if}} {{inline-switch _teaserSize '["100","66","50","33","25"]' '[" teaser-size-100"," teaser-size-66"," teaser-size-50"," teaser-size-33"," teaser-size-25", ""]'}}"
|
|
2
2
|
:class="contentNavDropdownIsOpen ? 'h-10' : ''"
|
|
3
3
|
id="dropdown--{{nextRandom}}"
|
|
4
4
|
@click.outside ="contentNavDropdownIsOpen = false; $dispatch('hr:global:resetinputAutoSuggest')"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div id="{{nextRandom}}"
|
|
2
2
|
x-data="{ contentNavDropdownIsOpen: false}"
|
|
3
|
-
class="js-contentNavWrapper col-span-full flex gap-y-3 gap-x-4 js-load {{inline-switch this.teaserSize '["100","66","50","33","25"]' '["flex-col","md:col-span-9 md:flex-row ","md:col-span-6 md:flex-row "," md:col-span-4 md:flex-row "," md:col-span-3 md:flex-row "]'}}"
|
|
3
|
+
class="{{#if _isCopytext~}} my-6 {{/if}}js-contentNavWrapper col-span-full flex gap-y-3 gap-x-4 js-load {{inline-switch this.teaserSize '["100","66","50","33","25"]' '["flex-col","md:col-span-9 md:flex-row ","md:col-span-6 md:flex-row "," md:col-span-4 md:flex-row "," md:col-span-3 md:flex-row "]'}}"
|
|
4
4
|
>
|
|
5
|
-
{{> components/content_nav/content_nav _teaserSize=this.realTeaserSize }}
|
|
5
|
+
{{> components/content_nav/content_nav _teaserSize=this.realTeaserSize _isCopytext=_isCopytext}}
|
|
6
6
|
</div>
|
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.50.
|
|
9
|
+
"version": "1.50.16",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{{#with this.contentNav}}
|
|
2
2
|
{{#if this.isListOrFlow}}
|
|
3
|
-
<nav class="w-full px-5 sm:px-0 c-content-nav {{inline-switch ../_teaserSize '["100","66","50","33","25"]' '[" teaser-size-100"," teaser-size-66"," teaser-size-50"," teaser-size-33"," teaser-size-25", ""]'}}">
|
|
3
|
+
<nav class="w-full {{#if ../_isCopytext~}}px-0{{else}}px-5 sm:px-0{{/if}} c-content-nav {{inline-switch ../_teaserSize '["100","66","50","33","25"]' '[" teaser-size-100"," teaser-size-66"," teaser-size-50"," teaser-size-33"," teaser-size-25", ""]'}}">
|
|
4
4
|
{{> components/content_nav/content_nav_container
|
|
5
5
|
_teaserSize=../_teaserSize
|
|
6
6
|
_maindivclass="flex relative flex-wrap"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<nav class="w-full px-5 sm:px-0 {{inline-switch _teaserSize '["100","66","50","33","25"]' '[" teaser-size-100"," teaser-size-66"," teaser-size-50"," teaser-size-33"," teaser-size-25", ""]'}}"
|
|
1
|
+
<nav class="w-full {{#if ../_isCopytext~}}px-0{{else}}px-5 sm:px-0{{/if}} {{inline-switch _teaserSize '["100","66","50","33","25"]' '[" teaser-size-100"," teaser-size-66"," teaser-size-50"," teaser-size-33"," teaser-size-25", ""]'}}"
|
|
2
2
|
:class="contentNavDropdownIsOpen ? 'h-10' : ''"
|
|
3
3
|
id="dropdown--{{nextRandom}}"
|
|
4
4
|
@click.outside ="contentNavDropdownIsOpen = false; $dispatch('hr:global:resetinputAutoSuggest')"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div id="{{nextRandom}}"
|
|
2
2
|
x-data="{ contentNavDropdownIsOpen: false}"
|
|
3
|
-
class="js-contentNavWrapper col-span-full flex gap-y-3 gap-x-4 js-load {{inline-switch this.teaserSize '["100","66","50","33","25"]' '["flex-col","md:col-span-9 md:flex-row ","md:col-span-6 md:flex-row "," md:col-span-4 md:flex-row "," md:col-span-3 md:flex-row "]'}}"
|
|
3
|
+
class="{{#if _isCopytext~}} my-6 {{/if}}js-contentNavWrapper col-span-full flex gap-y-3 gap-x-4 js-load {{inline-switch this.teaserSize '["100","66","50","33","25"]' '["flex-col","md:col-span-9 md:flex-row ","md:col-span-6 md:flex-row "," md:col-span-4 md:flex-row "," md:col-span-3 md:flex-row "]'}}"
|
|
4
4
|
>
|
|
5
|
-
{{> components/content_nav/content_nav _teaserSize=this.realTeaserSize }}
|
|
5
|
+
{{> components/content_nav/content_nav _teaserSize=this.realTeaserSize _isCopytext=_isCopytext}}
|
|
6
6
|
</div>
|