hr-design-system-handlebars 0.117.12 → 0.117.13
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 +13 -0
- package/dist/assets/index.css +6 -3
- package/dist/views/components/button/button_pseudo.inc.hbs +1 -1
- package/dist/views/components/teaser/tabbox/group_tabbox.hbs +2 -2
- package/package.json +1 -1
- package/src/stories/views/components/button/button_pseudo.inc.hbs +1 -1
- package/src/stories/views/components/teaser/tabbox/group_tabbox.hbs +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# v0.117.13 (Fri Jan 13 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- truncate button-text in ClusterTeaser & Tabbox [#477](https://github.com/mumprod/hr-design-system-handlebars/pull/477) (saad.elbaciri@hr.de [@selbaciri](https://github.com/selbaciri))
|
|
6
|
+
|
|
7
|
+
#### Authors: 2
|
|
8
|
+
|
|
9
|
+
- Saad El Baciri ([@selbaciri](https://github.com/selbaciri))
|
|
10
|
+
- selbaciri (saad.elbaciri@hr.de)
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
1
14
|
# v0.117.12 (Fri Jan 13 2023)
|
|
2
15
|
|
|
3
16
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -1125,6 +1125,9 @@ video {
|
|
|
1125
1125
|
.max-w-xs {
|
|
1126
1126
|
max-width: 20rem;
|
|
1127
1127
|
}
|
|
1128
|
+
.flex-1 {
|
|
1129
|
+
flex: 1 1 0%;
|
|
1130
|
+
}
|
|
1128
1131
|
.flex-initial {
|
|
1129
1132
|
flex: 0 1 auto;
|
|
1130
1133
|
}
|
|
@@ -2227,7 +2230,7 @@ video {
|
|
|
2227
2230
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
2228
2231
|
}
|
|
2229
2232
|
.counter-reset {
|
|
2230
|
-
counter-reset:
|
|
2233
|
+
counter-reset: cnt1673622799030;
|
|
2231
2234
|
}
|
|
2232
2235
|
.line-clamp-4 {
|
|
2233
2236
|
overflow: hidden;
|
|
@@ -2459,7 +2462,7 @@ video {
|
|
|
2459
2462
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
2460
2463
|
}
|
|
2461
2464
|
.-ordered {
|
|
2462
|
-
counter-increment:
|
|
2465
|
+
counter-increment: cnt1673622799030 1;
|
|
2463
2466
|
}
|
|
2464
2467
|
.-ordered::before {
|
|
2465
2468
|
position: absolute;
|
|
@@ -2475,7 +2478,7 @@ video {
|
|
|
2475
2478
|
letter-spacing: .0125em;
|
|
2476
2479
|
--tw-text-opacity: 1;
|
|
2477
2480
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
2478
|
-
content: counter(
|
|
2481
|
+
content: counter(cnt1673622799030);
|
|
2479
2482
|
}
|
|
2480
2483
|
/*! ****************************/
|
|
2481
2484
|
/*! text-shadow */
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
{{~> components/teaser/teaser_logic/teaser_logic ~}}
|
|
21
21
|
</div>
|
|
22
22
|
{{~#if this.link~}}
|
|
23
|
-
<div class="flex justify-center pt-8">
|
|
24
|
-
{{~> components/button/button_pseudo _type="hollow" _addClass="h-4 w-4 ml-2 fill-current" _showIcon="true" _icon="arrow-right" _withLink="true" _buttonText=(loca "group_tabbed_more" this.title) ~}}
|
|
23
|
+
<div class="flex justify-center min-w-0 pt-8 mx-5">
|
|
24
|
+
{{~> components/button/button_pseudo _type="hollow" _addClass="h-4 w-4 ml-2 fill-current" _showIcon="true" _icon="arrow-right" _withLink="true" _buttonText=(loca "group_tabbed_more" this.title) _buttonCss="truncate" _linkCss="flex min-w-0" ~}}
|
|
25
25
|
</div>
|
|
26
26
|
{{~/if~}}
|
|
27
27
|
</section>
|
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": "0.117.
|
|
9
|
+
"version": "0.117.13",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "start-storybook -p 6006 public",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
{{~> components/teaser/teaser_logic/teaser_logic ~}}
|
|
21
21
|
</div>
|
|
22
22
|
{{~#if this.link~}}
|
|
23
|
-
<div class="flex justify-center pt-8">
|
|
24
|
-
{{~> components/button/button_pseudo _type="hollow" _addClass="h-4 w-4 ml-2 fill-current" _showIcon="true" _icon="arrow-right" _withLink="true" _buttonText=(loca "group_tabbed_more" this.title) ~}}
|
|
23
|
+
<div class="flex justify-center min-w-0 pt-8 mx-5">
|
|
24
|
+
{{~> components/button/button_pseudo _type="hollow" _addClass="h-4 w-4 ml-2 fill-current" _showIcon="true" _icon="arrow-right" _withLink="true" _buttonText=(loca "group_tabbed_more" this.title) _buttonCss="truncate" _linkCss="flex min-w-0" ~}}
|
|
25
25
|
</div>
|
|
26
26
|
{{~/if~}}
|
|
27
27
|
</section>
|