hr-design-system-handlebars 1.59.23 → 1.59.24
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/site_header/navigation_flyout/navigation_flyout.hbs +2 -2
- package/dist/views/components/site_header/navigation_flyout/navigation_flyout_item.hbs +1 -1
- package/dist/views_static/components/site_header/navigation_flyout/navigation_flyout.hbs +2 -2
- package/dist/views_static/components/site_header/navigation_flyout/navigation_flyout_item.hbs +1 -1
- package/package.json +1 -1
- package/src/stories/views/components/site_header/navigation_flyout/navigation_flyout.hbs +2 -2
- package/src/stories/views/components/site_header/navigation_flyout/navigation_flyout_item.hbs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.59.24 (Wed Mar 06 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- 🐛 fix Bug in SubNavigation [#874](https://github.com/mumprod/hr-design-system-handlebars/pull/874) ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.59.23 (Wed Mar 06 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -3316,7 +3316,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3316
3316
|
border-bottom-color: var(--color-secondary-ds);
|
|
3317
3317
|
}
|
|
3318
3318
|
.counter-reset {
|
|
3319
|
-
counter-reset:
|
|
3319
|
+
counter-reset: cnt1709723830125;
|
|
3320
3320
|
}
|
|
3321
3321
|
.hyphens-auto {
|
|
3322
3322
|
-webkit-hyphens: auto;
|
|
@@ -3622,7 +3622,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3622
3622
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3623
3623
|
}
|
|
3624
3624
|
.-ordered {
|
|
3625
|
-
counter-increment:
|
|
3625
|
+
counter-increment: cnt1709723830125 1;
|
|
3626
3626
|
}
|
|
3627
3627
|
.-ordered::before {
|
|
3628
3628
|
position: absolute;
|
|
@@ -3638,7 +3638,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3638
3638
|
letter-spacing: .0125em;
|
|
3639
3639
|
--tw-text-opacity: 1;
|
|
3640
3640
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3641
|
-
content: counter(
|
|
3641
|
+
content: counter(cnt1709723830125);
|
|
3642
3642
|
}
|
|
3643
3643
|
/*! ****************************/
|
|
3644
3644
|
/*! DataPolicy stuff */
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
{{~#if ../_isSectionNav}} relative md:top-auto md:left-auto lg:mt-10 w-full transition-all duration-500 ease-in-out
|
|
12
12
|
{{#unless this.showAsFlyout}}
|
|
13
13
|
{{#if ../this.selected}}
|
|
14
|
-
isSelectedAndOpen lg:ml-0 z-100 lg:border-b lg:border-primary lg:filter-none lg:left-0
|
|
14
|
+
isSelectedAndOpen lg:ml-0 z-100 lg:border-b lg:border-primary lg:filter-none lg:left-0 justify-center grid grid-page
|
|
15
15
|
{{else}} z-120 lg:left-auto lg:w-auto {{/if}}
|
|
16
16
|
{{else}} z-120 lg:left-auto lg:w-auto divide-y divide-gray-200{{/unless}}
|
|
17
17
|
{{else}} z-120 lg:rounded-b absolute w-full top-10 left-0 md:w-80 lg:w-92 md:top-12 lg:px-4 md:mt-0 md:left-0 lg:top-15 lg:left-0 divide-y divide-gray-200 tablet:w-half-screen tablet:ml-half-screen tablet:right-0 tablet:left-auto {{/if}}
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
{{/if}}
|
|
41
41
|
{{/if}}
|
|
42
42
|
|
|
43
|
-
<div class="{{#if this.showAsFlyout}}lg:flex lg:flex-row -columnCount--{{this.columnCount}} lg:divide-x lg:divide-gray-200 {{else}} {{#if ../this.selected}}
|
|
43
|
+
<div class="{{#if this.showAsFlyout}}lg:flex lg:flex-row -columnCount--{{this.columnCount}} lg:divide-x lg:divide-gray-200 {{else}} {{#if ../this.selected}} lg:grid-cols-12 lg:px-9.5 col-main {{/if}}{{/if}}">
|
|
44
44
|
{{#if this.showAsFlyout}}
|
|
45
45
|
{{#each this.columns}}
|
|
46
46
|
{{> components/site_header/navigation_flyout/navigation_flyout_column _count=../this.columnCount _navtype=../../_navigationType _parent=../../_parent _flyout=true~}}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<li :class="dropped ? 'h-auto' : 'h-10'"
|
|
2
|
-
class="lg:border-0 sb-navigation-flyout-item pl-
|
|
2
|
+
class="lg:border-0 sb-navigation-flyout-item pl-5 {{#if _flyout}}lg:px-0 {{else}}lg:px-2 lg:first-of-type:pl-0 {{/if}}{{#if _parentselected}}lg:whitespace-nowrap{{/if}} flex h-auto text-base leading-6 border-b border-gray-200 first:border-t md:first:border-t-0 last:border-b last:border-navigation-border-color lg:last:border-0 text-primary justify-start hover:underline">
|
|
3
3
|
{{~#with this}}
|
|
4
4
|
{{~#> components/base/link _link=this.link _css=(inline-switch _fromNav '["RubrikNavigation","ServiceNavigation","SubNavInRubrikNav"]' '["link-focus-inset py-2 w-full","link-focus py-2 md:pl-0 lg:pl-0 lg:pr-0 break-words w-full","link-focus-inset py-2 md:pl-0 lg:pl-0 lg:pr-0 break-words w-full"]') ~}}
|
|
5
5
|
{{this.text}}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
{{~#if ../_isSectionNav}} relative md:top-auto md:left-auto lg:mt-10 w-full transition-all duration-500 ease-in-out
|
|
12
12
|
{{#unless this.showAsFlyout}}
|
|
13
13
|
{{#if ../this.selected}}
|
|
14
|
-
isSelectedAndOpen lg:ml-0 z-100 lg:border-b lg:border-primary lg:filter-none lg:left-0
|
|
14
|
+
isSelectedAndOpen lg:ml-0 z-100 lg:border-b lg:border-primary lg:filter-none lg:left-0 justify-center grid grid-page
|
|
15
15
|
{{else}} z-120 lg:left-auto lg:w-auto {{/if}}
|
|
16
16
|
{{else}} z-120 lg:left-auto lg:w-auto divide-y divide-gray-200{{/unless}}
|
|
17
17
|
{{else}} z-120 lg:rounded-b absolute w-full top-10 left-0 md:w-80 lg:w-92 md:top-12 lg:px-4 md:mt-0 md:left-0 lg:top-15 lg:left-0 divide-y divide-gray-200 tablet:w-half-screen tablet:ml-half-screen tablet:right-0 tablet:left-auto {{/if}}
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
{{/if}}
|
|
41
41
|
{{/if}}
|
|
42
42
|
|
|
43
|
-
<div class="{{#if this.showAsFlyout}}lg:flex lg:flex-row -columnCount--{{this.columnCount}} lg:divide-x lg:divide-gray-200 {{else}} {{#if ../this.selected}}
|
|
43
|
+
<div class="{{#if this.showAsFlyout}}lg:flex lg:flex-row -columnCount--{{this.columnCount}} lg:divide-x lg:divide-gray-200 {{else}} {{#if ../this.selected}} lg:grid-cols-12 lg:px-9.5 col-main {{/if}}{{/if}}">
|
|
44
44
|
{{#if this.showAsFlyout}}
|
|
45
45
|
{{#each this.columns}}
|
|
46
46
|
{{> components/site_header/navigation_flyout/navigation_flyout_column _count=../this.columnCount _navtype=../../_navigationType _parent=../../_parent _flyout=true~}}
|
package/dist/views_static/components/site_header/navigation_flyout/navigation_flyout_item.hbs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<li :class="dropped ? 'h-auto' : 'h-10'"
|
|
2
|
-
class="lg:border-0 sb-navigation-flyout-item pl-
|
|
2
|
+
class="lg:border-0 sb-navigation-flyout-item pl-5 {{#if _flyout}}lg:px-0 {{else}}lg:px-2 lg:first-of-type:pl-0 {{/if}}{{#if _parentselected}}lg:whitespace-nowrap{{/if}} flex h-auto text-base leading-6 border-b border-gray-200 first:border-t md:first:border-t-0 last:border-b last:border-navigation-border-color lg:last:border-0 text-primary justify-start hover:underline">
|
|
3
3
|
{{~#with this}}
|
|
4
4
|
{{~#> components/base/link _link=this.link _css=(inline-switch _fromNav '["RubrikNavigation","ServiceNavigation","SubNavInRubrikNav"]' '["link-focus-inset py-2 w-full","link-focus py-2 md:pl-0 lg:pl-0 lg:pr-0 break-words w-full","link-focus-inset py-2 md:pl-0 lg:pl-0 lg:pr-0 break-words w-full"]') ~}}
|
|
5
5
|
{{this.text}}
|
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.59.
|
|
9
|
+
"version": "1.59.24",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
{{~#if ../_isSectionNav}} relative md:top-auto md:left-auto lg:mt-10 w-full transition-all duration-500 ease-in-out
|
|
12
12
|
{{#unless this.showAsFlyout}}
|
|
13
13
|
{{#if ../this.selected}}
|
|
14
|
-
isSelectedAndOpen lg:ml-0 z-100 lg:border-b lg:border-primary lg:filter-none lg:left-0
|
|
14
|
+
isSelectedAndOpen lg:ml-0 z-100 lg:border-b lg:border-primary lg:filter-none lg:left-0 justify-center grid grid-page
|
|
15
15
|
{{else}} z-120 lg:left-auto lg:w-auto {{/if}}
|
|
16
16
|
{{else}} z-120 lg:left-auto lg:w-auto divide-y divide-gray-200{{/unless}}
|
|
17
17
|
{{else}} z-120 lg:rounded-b absolute w-full top-10 left-0 md:w-80 lg:w-92 md:top-12 lg:px-4 md:mt-0 md:left-0 lg:top-15 lg:left-0 divide-y divide-gray-200 tablet:w-half-screen tablet:ml-half-screen tablet:right-0 tablet:left-auto {{/if}}
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
{{/if}}
|
|
41
41
|
{{/if}}
|
|
42
42
|
|
|
43
|
-
<div class="{{#if this.showAsFlyout}}lg:flex lg:flex-row -columnCount--{{this.columnCount}} lg:divide-x lg:divide-gray-200 {{else}} {{#if ../this.selected}}
|
|
43
|
+
<div class="{{#if this.showAsFlyout}}lg:flex lg:flex-row -columnCount--{{this.columnCount}} lg:divide-x lg:divide-gray-200 {{else}} {{#if ../this.selected}} lg:grid-cols-12 lg:px-9.5 col-main {{/if}}{{/if}}">
|
|
44
44
|
{{#if this.showAsFlyout}}
|
|
45
45
|
{{#each this.columns}}
|
|
46
46
|
{{> components/site_header/navigation_flyout/navigation_flyout_column _count=../this.columnCount _navtype=../../_navigationType _parent=../../_parent _flyout=true~}}
|
package/src/stories/views/components/site_header/navigation_flyout/navigation_flyout_item.hbs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<li :class="dropped ? 'h-auto' : 'h-10'"
|
|
2
|
-
class="lg:border-0 sb-navigation-flyout-item pl-
|
|
2
|
+
class="lg:border-0 sb-navigation-flyout-item pl-5 {{#if _flyout}}lg:px-0 {{else}}lg:px-2 lg:first-of-type:pl-0 {{/if}}{{#if _parentselected}}lg:whitespace-nowrap{{/if}} flex h-auto text-base leading-6 border-b border-gray-200 first:border-t md:first:border-t-0 last:border-b last:border-navigation-border-color lg:last:border-0 text-primary justify-start hover:underline">
|
|
3
3
|
{{~#with this}}
|
|
4
4
|
{{~#> components/base/link _link=this.link _css=(inline-switch _fromNav '["RubrikNavigation","ServiceNavigation","SubNavInRubrikNav"]' '["link-focus-inset py-2 w-full","link-focus py-2 md:pl-0 lg:pl-0 lg:pr-0 break-words w-full","link-focus-inset py-2 md:pl-0 lg:pl-0 lg:pr-0 break-words w-full"]') ~}}
|
|
5
5
|
{{this.text}}
|