hr-design-system-handlebars 0.48.0 → 0.49.2
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/tabbox/group_tabbox.hbs +16 -0
- package/dist/views/components/teaser/tabbox/teaser_tabbox.hbs +15 -0
- 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/site_header/brandNavigation.inc.json +69 -0
- package/src/assets/fixtures/site_header/sectionNavigation.inc.json +226 -0
- package/src/assets/fixtures/site_header/sectionNavigation_mit_submenu.inc.json +296 -0
- package/src/assets/fixtures/site_header/serviceNavigation.inc.json +275 -0
- package/src/assets/fixtures/site_header/serviceNavigation_mit_warnung.inc.json +288 -0
- package/src/assets/fixtures/site_header/site_header_default.json +14 -0
- package/src/assets/fixtures/site_header/site_header_mit_submenu.json +16 -0
- package/src/assets/fixtures/site_header/site_header_mit_warnung.json +16 -0
- package/src/assets/fixtures/teaser/teaser_group_tabbox.inc.json +102 -0
- package/src/assets/fixtures/teaser/teaser_tabbox.json +35 -0
- 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/site_header/fixtures/site_header_default.json +1 -0
- package/src/stories/views/components/site_header/fixtures/site_header_mit_submenu.json +1 -0
- package/src/stories/views/components/site_header/fixtures/site_header_mit_warnung.json +1 -0
- package/src/stories/views/components/site_header/{header_.stories.mdx → header.stories.mdx} +22 -6
- 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/tailwind.config.js +29 -29
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,39 @@
|
|
|
1
|
+
# v0.49.2 (Tue Jul 05 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- jsoninclude used in header now [#259](https://github.com/mumprod/hr-design-system-handlebars/pull/259) ([@StefanVesper](https://github.com/StefanVesper))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v0.49.1 (Fri Jul 01 2022)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- add json for tabbox [#258](https://github.com/mumprod/hr-design-system-handlebars/pull/258) ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
# v0.49.0 (Thu Jun 30 2022)
|
|
26
|
+
|
|
27
|
+
#### 🚀 Enhancement
|
|
28
|
+
|
|
29
|
+
- Feature/dpe 1655 [#257](https://github.com/mumprod/hr-design-system-handlebars/pull/257) ([@szuelch](https://github.com/szuelch))
|
|
30
|
+
|
|
31
|
+
#### Authors: 1
|
|
32
|
+
|
|
33
|
+
- [@szuelch](https://github.com/szuelch)
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
1
37
|
# v0.48.0 (Wed Jun 29 2022)
|
|
2
38
|
|
|
3
39
|
#### 🚀 Enhancement
|