hr-design-system-handlebars 1.91.0 → 1.92.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 +24 -0
- package/dist/assets/index.css +4 -10
- package/dist/assets/js/components/event/filtererDs.feature.js +3 -3
- package/dist/views/components/event/calendar/event_calendar_nav.hbs +1 -1
- package/dist/views_static/components/event/calendar/event_calendar_nav.hbs +1 -1
- package/package.json +1 -1
- package/src/assets/css/custom-components.css +1 -7
- package/src/stories/views/components/event/calendar/event_calendar_nav.hbs +1 -1
- package/src/stories/views/components/event/filtererDs.feature.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v1.92.0 (Wed Aug 14 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- :bug: Set an initial height in copytext-ds__icon class so that [#1048](https://github.com/mumprod/hr-design-system-handlebars/pull/1048) ([@szuelch](https://github.com/szuelch))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- [@szuelch](https://github.com/szuelch)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v1.91.1 (Tue Aug 13 2024)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- :lipstick: Modify font color post UX review [#1047](https://github.com/mumprod/hr-design-system-handlebars/pull/1047) ([@Sunny1112358](https://github.com/Sunny1112358))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- [@Sunny1112358](https://github.com/Sunny1112358)
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v1.91.0 (Fri Aug 09 2024)
|
|
2
26
|
|
|
3
27
|
#### 🚀 Enhancement
|
package/dist/assets/index.css
CHANGED
|
@@ -1027,11 +1027,9 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
1027
1027
|
margin-top: -0.125rem;
|
|
1028
1028
|
margin-left: 0.25rem;
|
|
1029
1029
|
display: inline;
|
|
1030
|
-
fill: currentColor;
|
|
1031
|
-
}
|
|
1032
|
-
.copytext-ds__box .copytext-ds__icon {
|
|
1033
1030
|
height: 1.25rem;
|
|
1034
1031
|
width: 1.25rem;
|
|
1032
|
+
fill: currentColor;
|
|
1035
1033
|
}
|
|
1036
1034
|
.copytext-ds__paragraph .copytext-ds__icon {
|
|
1037
1035
|
height: 1.5rem;
|
|
@@ -3104,10 +3102,6 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3104
3102
|
color: #606060;
|
|
3105
3103
|
color: var(--color-secondary-ds);
|
|
3106
3104
|
}
|
|
3107
|
-
.text-slate-500 {
|
|
3108
|
-
--tw-text-opacity: 1;
|
|
3109
|
-
color: rgba(100, 116, 139, var(--tw-text-opacity));
|
|
3110
|
-
}
|
|
3111
3105
|
.text-stageLink {
|
|
3112
3106
|
color: #006eb7;
|
|
3113
3107
|
color: var(--color-stage-link);
|
|
@@ -3338,7 +3332,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3338
3332
|
border-bottom-color: var(--color-secondary-ds);
|
|
3339
3333
|
}
|
|
3340
3334
|
.counter-reset {
|
|
3341
|
-
counter-reset:
|
|
3335
|
+
counter-reset: cnt1723623542167;
|
|
3342
3336
|
}
|
|
3343
3337
|
.hyphens-auto {
|
|
3344
3338
|
-webkit-hyphens: auto;
|
|
@@ -3746,7 +3740,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3746
3740
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3747
3741
|
}
|
|
3748
3742
|
.-ordered {
|
|
3749
|
-
counter-increment:
|
|
3743
|
+
counter-increment: cnt1723623542167 1;
|
|
3750
3744
|
}
|
|
3751
3745
|
.-ordered::before {
|
|
3752
3746
|
position: absolute;
|
|
@@ -3762,7 +3756,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3762
3756
|
letter-spacing: .0125em;
|
|
3763
3757
|
--tw-text-opacity: 1;
|
|
3764
3758
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3765
|
-
content: counter(
|
|
3759
|
+
content: counter(cnt1723623542167);
|
|
3766
3760
|
}
|
|
3767
3761
|
/*! ****************************/
|
|
3768
3762
|
/*! DataPolicy stuff */
|
|
@@ -83,7 +83,7 @@ const Filterer = (context) => {
|
|
|
83
83
|
if (monthWrapper) {
|
|
84
84
|
|
|
85
85
|
if (monthName) {
|
|
86
|
-
monthName.classList.remove('text-
|
|
86
|
+
monthName.classList.remove('text-gray-scorpion')
|
|
87
87
|
monthName.classList.remove('bg-white')
|
|
88
88
|
monthName.classList.add('text-white');
|
|
89
89
|
monthName.classList.add('bg-black');
|
|
@@ -103,7 +103,7 @@ const Filterer = (context) => {
|
|
|
103
103
|
// hacky die würde bald verändert
|
|
104
104
|
currentMonth.classList.remove('text-white');
|
|
105
105
|
currentMonth.classList.remove('bg-black');
|
|
106
|
-
currentMonth.classList.add('text-
|
|
106
|
+
currentMonth.classList.add('text-gray-scorpion');
|
|
107
107
|
currentMonth.classList.add('bg-white');
|
|
108
108
|
|
|
109
109
|
|
|
@@ -112,7 +112,7 @@ const Filterer = (context) => {
|
|
|
112
112
|
// hacky die würde bald verändert
|
|
113
113
|
triggerDomNode.closest('.js-ns-month').firstElementChild.classList.remove('text-white');
|
|
114
114
|
triggerDomNode.closest('.js-ns-month').firstElementChild.classList.remove('bg-black');
|
|
115
|
-
triggerDomNode.closest('.js-ns-month').firstElementChild.classList.add('text-
|
|
115
|
+
triggerDomNode.closest('.js-ns-month').firstElementChild.classList.add('text-gray-scorpion');
|
|
116
116
|
triggerDomNode.closest('.js-ns-month').firstElementChild.classList.add('bg-white');
|
|
117
117
|
triggerDomNode.classList.remove(navItemSelectedCssTrigger)
|
|
118
118
|
})
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<div class="inline-block items-center justify-center border-event-calendar-secondary border-l js-ns-month {{#if
|
|
12
12
|
this.hasFutureEventsFromNow}} -selected{{else}} js-fr-reload-trigger{{/if}}">
|
|
13
13
|
<span class="js-monthName block font-heading font-bold w-16 sticky left-0 px-2 py-3 {{#if
|
|
14
|
-
this.isCurrentMonth}} -currentMonth{{else}}text-
|
|
14
|
+
this.isCurrentMonth}} -currentMonth{{else}}text-gray-scorpion{{/if}}">{{this.date.monthNameShort}} {{this.date.yearShort}}</span>
|
|
15
15
|
<ul class="flex">
|
|
16
16
|
{{#each this.days}}
|
|
17
17
|
<li class="inline-block h-full group cursor-pointer js-ns-item{{#if
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<div class="inline-block items-center justify-center border-event-calendar-secondary border-l js-ns-month {{#if
|
|
12
12
|
this.hasFutureEventsFromNow}} -selected{{else}} js-fr-reload-trigger{{/if}}">
|
|
13
13
|
<span class="js-monthName block font-heading font-bold w-16 sticky left-0 px-2 py-3 {{#if
|
|
14
|
-
this.isCurrentMonth}} -currentMonth{{else}}text-
|
|
14
|
+
this.isCurrentMonth}} -currentMonth{{else}}text-gray-scorpion{{/if}}">{{this.date.monthNameShort}} {{this.date.yearShort}}</span>
|
|
15
15
|
<ul class="flex">
|
|
16
16
|
{{#each this.days}}
|
|
17
17
|
<li class="inline-block h-full group cursor-pointer js-ns-item{{#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.
|
|
9
|
+
"version": "1.92.0",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -316,13 +316,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
316
316
|
}
|
|
317
317
|
|
|
318
318
|
&__icon {
|
|
319
|
-
@apply inline -mt-0.5 fill-current ml-1;
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
&__box {
|
|
323
|
-
.copytext-ds__icon {
|
|
324
|
-
@apply w-5 h-5;
|
|
325
|
-
}
|
|
319
|
+
@apply inline w-5 h-5 -mt-0.5 fill-current ml-1;
|
|
326
320
|
}
|
|
327
321
|
|
|
328
322
|
&__paragraph {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<div class="inline-block items-center justify-center border-event-calendar-secondary border-l js-ns-month {{#if
|
|
12
12
|
this.hasFutureEventsFromNow}} -selected{{else}} js-fr-reload-trigger{{/if}}">
|
|
13
13
|
<span class="js-monthName block font-heading font-bold w-16 sticky left-0 px-2 py-3 {{#if
|
|
14
|
-
this.isCurrentMonth}} -currentMonth{{else}}text-
|
|
14
|
+
this.isCurrentMonth}} -currentMonth{{else}}text-gray-scorpion{{/if}}">{{this.date.monthNameShort}} {{this.date.yearShort}}</span>
|
|
15
15
|
<ul class="flex">
|
|
16
16
|
{{#each this.days}}
|
|
17
17
|
<li class="inline-block h-full group cursor-pointer js-ns-item{{#if
|
|
@@ -83,7 +83,7 @@ const Filterer = (context) => {
|
|
|
83
83
|
if (monthWrapper) {
|
|
84
84
|
|
|
85
85
|
if (monthName) {
|
|
86
|
-
monthName.classList.remove('text-
|
|
86
|
+
monthName.classList.remove('text-gray-scorpion')
|
|
87
87
|
monthName.classList.remove('bg-white')
|
|
88
88
|
monthName.classList.add('text-white');
|
|
89
89
|
monthName.classList.add('bg-black');
|
|
@@ -103,7 +103,7 @@ const Filterer = (context) => {
|
|
|
103
103
|
// hacky die würde bald verändert
|
|
104
104
|
currentMonth.classList.remove('text-white');
|
|
105
105
|
currentMonth.classList.remove('bg-black');
|
|
106
|
-
currentMonth.classList.add('text-
|
|
106
|
+
currentMonth.classList.add('text-gray-scorpion');
|
|
107
107
|
currentMonth.classList.add('bg-white');
|
|
108
108
|
|
|
109
109
|
|
|
@@ -112,7 +112,7 @@ const Filterer = (context) => {
|
|
|
112
112
|
// hacky die würde bald verändert
|
|
113
113
|
triggerDomNode.closest('.js-ns-month').firstElementChild.classList.remove('text-white');
|
|
114
114
|
triggerDomNode.closest('.js-ns-month').firstElementChild.classList.remove('bg-black');
|
|
115
|
-
triggerDomNode.closest('.js-ns-month').firstElementChild.classList.add('text-
|
|
115
|
+
triggerDomNode.closest('.js-ns-month').firstElementChild.classList.add('text-gray-scorpion');
|
|
116
116
|
triggerDomNode.closest('.js-ns-month').firstElementChild.classList.add('bg-white');
|
|
117
117
|
triggerDomNode.classList.remove(navItemSelectedCssTrigger)
|
|
118
118
|
})
|