hr-design-system-handlebars 0.47.19 → 0.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 +36 -0
- package/dist/assets/index.css +2106 -2052
- package/dist/views/components/base/load_dynamic.hbs +3 -0
- package/dist/views/components/teaser/components/teaser_image.hbs +1 -1
- package/dist/views/components/teaser/components/teaser_title_classes.hbs +6 -10
- package/dist/views/components/teaser/components/teaser_topline.hbs +5 -3
- package/dist/views/components/teaser/tabbox/group_tabbox.hbs +16 -0
- package/dist/views/components/teaser/tabbox/teaser_tabbox.hbs +15 -0
- package/dist/views/components/video/video_element.hbs +2 -2
- package/package.json +2 -1
- package/postcss.config.js +1 -1
- package/src/assets/css/custom-base.css +42 -0
- package/src/assets/css/custom-components.css +53 -0
- package/src/assets/css/custom-utilities.css +96 -0
- package/src/assets/fixtures/teaser/teaser_alternative_100_serif.json +1 -1
- package/src/assets/fixtures/teaser/teaser_alternative_25_serif.json +1 -1
- package/src/assets/fixtures/teaser/teaser_alternative_33_serif.json +1 -1
- package/src/assets/fixtures/teaser/teaser_alternative_50_serif.json +1 -1
- package/src/assets/fixtures/teaser/teaser_alternative_hero_serif.json +1 -1
- package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_comments.json +1 -1
- package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_label.json +1 -1
- package/src/assets/fixtures/teaser/teaser_group_tabbox.inc.json +102 -0
- package/src/assets/fixtures/teaser/teaser_poster_lg.json +6 -7
- package/src/assets/fixtures/teaser/teaser_poster_md.json +6 -6
- package/src/assets/fixtures/teaser/teaser_poster_md_label.json +9 -9
- package/src/assets/fixtures/teaser/teaser_tabbox.json +35 -0
- package/src/assets/fixtures/teaser/teasers.inc.json +4 -4
- package/src/assets/tailwind.css +8 -203
- package/src/stories/conventions-and-datastructure.stories.mdx +6 -2
- package/src/stories/views/components/base/load_dynamic.hbs +3 -0
- package/src/stories/views/components/teaser/components/teaser_heading.stories.mdx +3 -3
- package/src/stories/views/components/teaser/components/teaser_image.hbs +1 -1
- package/src/stories/views/components/teaser/components/teaser_title.stories.mdx +21 -12
- package/src/stories/views/components/teaser/components/teaser_title_classes.hbs +6 -10
- package/src/stories/views/components/teaser/components/teaser_topline.hbs +5 -3
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_25_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_33_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_comments.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_label.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_comments_without_teaserinfo.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_index.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_poster_lg.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_poster_md.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_poster_md_label.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif_av_consumption.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif_comments.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif_label.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_tabbox.json +1 -0
- package/src/stories/views/components/teaser/tabbox/group_tabbox.hbs +16 -0
- package/src/stories/views/components/teaser/tabbox/teaser_tabbox.hbs +15 -0
- package/src/stories/views/components/teaser/tabbox/teaser_tabbox.stories.mdx +28 -0
- package/src/stories/views/components/video/video_element.hbs +2 -2
- package/tailwind.config.js +29 -29
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,39 @@
|
|
|
1
|
+
# v0.49.1 (Fri Jul 01 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- add json for tabbox [#258](https://github.com/mumprod/hr-design-system-handlebars/pull/258) ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v0.49.0 (Thu Jun 30 2022)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- Feature/dpe 1655 [#257](https://github.com/mumprod/hr-design-system-handlebars/pull/257) ([@szuelch](https://github.com/szuelch))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- [@szuelch](https://github.com/szuelch)
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
# v0.48.0 (Wed Jun 29 2022)
|
|
26
|
+
|
|
27
|
+
#### 🚀 Enhancement
|
|
28
|
+
|
|
29
|
+
- Feature/dpe 1567 [#255](https://github.com/mumprod/hr-design-system-handlebars/pull/255) ([@szuelch](https://github.com/szuelch))
|
|
30
|
+
|
|
31
|
+
#### Authors: 1
|
|
32
|
+
|
|
33
|
+
- [@szuelch](https://github.com/szuelch)
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
1
37
|
# v0.47.19 (Wed Jun 29 2022)
|
|
2
38
|
|
|
3
39
|
#### 🐛 Bug Fix
|