hr-design-system-handlebars 1.49.0 → 1.49.1
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 +8 -3
- package/dist/views/components/teaser/teaser_indextext.hbs +1 -1
- package/dist/views_static/components/teaser/teaser_indextext.hbs +1 -1
- package/package.json +1 -1
- package/src/assets/css/custom-components.css +5 -0
- package/src/stories/views/components/teaser/teaser_indextext.hbs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.49.1 (Thu Nov 02 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- add style for ul in indextext-teaser [#746](https://github.com/mumprod/hr-design-system-handlebars/pull/746) ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.49.0 (Tue Oct 31 2023)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
package/dist/assets/index.css
CHANGED
|
@@ -997,6 +997,11 @@ video {
|
|
|
997
997
|
white-space: normal;
|
|
998
998
|
}
|
|
999
999
|
}
|
|
1000
|
+
/* -------------------------INDEXTEXT-TEASER ------------------------ */
|
|
1001
|
+
article.indexText ul {
|
|
1002
|
+
list-style-type: disc;
|
|
1003
|
+
padding-left: 1rem;
|
|
1004
|
+
}
|
|
1000
1005
|
.sr-only {
|
|
1001
1006
|
position: absolute;
|
|
1002
1007
|
width: 1px;
|
|
@@ -3044,7 +3049,7 @@ video {
|
|
|
3044
3049
|
border-bottom-color: var(--color-secondary-ds);
|
|
3045
3050
|
}
|
|
3046
3051
|
.counter-reset {
|
|
3047
|
-
counter-reset:
|
|
3052
|
+
counter-reset: cnt1698936630968;
|
|
3048
3053
|
}
|
|
3049
3054
|
.hyphens-auto {
|
|
3050
3055
|
-webkit-hyphens: auto;
|
|
@@ -3307,7 +3312,7 @@ video {
|
|
|
3307
3312
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3308
3313
|
}
|
|
3309
3314
|
.-ordered {
|
|
3310
|
-
counter-increment:
|
|
3315
|
+
counter-increment: cnt1698936630968 1;
|
|
3311
3316
|
}
|
|
3312
3317
|
.-ordered::before {
|
|
3313
3318
|
position: absolute;
|
|
@@ -3323,7 +3328,7 @@ video {
|
|
|
3323
3328
|
letter-spacing: .0125em;
|
|
3324
3329
|
--tw-text-opacity: 1;
|
|
3325
3330
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3326
|
-
content: counter(
|
|
3331
|
+
content: counter(cnt1698936630968);
|
|
3327
3332
|
}
|
|
3328
3333
|
/*! ****************************/
|
|
3329
3334
|
/*! DataPolicy stuff */
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<article
|
|
2
|
-
class='mx-5 sm:mx-0 p-8 md:p-10 relative col-span-12 flex flex-col gap-x-4
|
|
2
|
+
class='indexText mx-5 sm:mx-0 p-8 md:p-10 relative col-span-12 flex flex-col gap-x-4
|
|
3
3
|
{{~inline-switch this.teaserSize '["50"]' '[" md:col-span-6",""]'}}
|
|
4
4
|
{{~inline-switch
|
|
5
5
|
this.teaserType
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<article
|
|
2
|
-
class='mx-5 sm:mx-0 p-8 md:p-10 relative col-span-12 flex flex-col gap-x-4
|
|
2
|
+
class='indexText mx-5 sm:mx-0 p-8 md:p-10 relative col-span-12 flex flex-col gap-x-4
|
|
3
3
|
{{~inline-switch this.teaserSize '["50"]' '[" md:col-span-6",""]'}}
|
|
4
4
|
{{~inline-switch
|
|
5
5
|
this.teaserType
|
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.49.
|
|
9
|
+
"version": "1.49.1",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -290,3 +290,8 @@
|
|
|
290
290
|
#breadcrumb-nav.hide-last-item-below-sm li:nth-last-child(2) > .ds-icon-container {
|
|
291
291
|
@apply sr-only sm:not-sr-only;
|
|
292
292
|
}
|
|
293
|
+
|
|
294
|
+
/* -------------------------INDEXTEXT-TEASER ------------------------ */
|
|
295
|
+
article.indexText ul {
|
|
296
|
+
@apply pl-4 list-disc;
|
|
297
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<article
|
|
2
|
-
class='mx-5 sm:mx-0 p-8 md:p-10 relative col-span-12 flex flex-col gap-x-4
|
|
2
|
+
class='indexText mx-5 sm:mx-0 p-8 md:p-10 relative col-span-12 flex flex-col gap-x-4
|
|
3
3
|
{{~inline-switch this.teaserSize '["50"]' '[" md:col-span-6",""]'}}
|
|
4
4
|
{{~inline-switch
|
|
5
5
|
this.teaserType
|