hr-design-system-handlebars 1.105.2 β†’ 1.107.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.
Files changed (25) hide show
  1. package/.storybook/preview-head.html +1 -1
  2. package/CHANGELOG.md +24 -0
  3. package/dist/assets/index.css +427 -453
  4. package/dist/assets/js/components/event/filtererDs.feature.js +11 -11
  5. package/dist/assets/js/components/event/nativeScrollDs.feature.js +6 -6
  6. package/dist/views/components/button/utilities/button_variation_classes.hbs +4 -4
  7. package/dist/views/components/event/calendar/event_calendar_footer.hbs +1 -1
  8. package/dist/views/components/event/calendar/event_calendar_nav.hbs +6 -6
  9. package/dist/views/components/event/calendar/event_calendar_nav_item.hbs +2 -2
  10. package/dist/views/components/event/event_details.hbs +2 -2
  11. package/dist/views_static/components/button/utilities/button_variation_classes.hbs +4 -4
  12. package/dist/views_static/components/event/calendar/event_calendar_footer.hbs +1 -1
  13. package/dist/views_static/components/event/calendar/event_calendar_nav.hbs +6 -6
  14. package/dist/views_static/components/event/calendar/event_calendar_nav_item.hbs +2 -2
  15. package/dist/views_static/components/event/event_details.hbs +2 -2
  16. package/package.json +1 -4
  17. package/src/assets/css/custom-utilities.css +27 -31
  18. package/src/stories/views/components/button/utilities/button_variation_classes.hbs +4 -4
  19. package/src/stories/views/components/event/calendar/event_calendar_footer.hbs +1 -1
  20. package/src/stories/views/components/event/calendar/event_calendar_nav.hbs +6 -6
  21. package/src/stories/views/components/event/calendar/event_calendar_nav_item.hbs +2 -2
  22. package/src/stories/views/components/event/event_details.hbs +2 -2
  23. package/src/stories/views/components/event/filtererDs.feature.js +11 -11
  24. package/src/stories/views/components/event/nativeScrollDs.feature.js +6 -6
  25. package/tailwind.config.js +21 -45
@@ -11,7 +11,7 @@
11
11
  // Javascript workaround damit darkmode nur in der Webview in Delivery funktioniert
12
12
  // todo bessere LΓΆsung finden !
13
13
  function setColorScheme(e) {
14
- e.matches ? document.getElementsByTagName("html")[0].classList.add("tw-dark") : document.getElementsByTagName("html")[0].classList.remove("tw-dark")
14
+ e.matches ? document.getElementsByTagName("html")[0].classList.add("dark") : document.getElementsByTagName("html")[0].classList.remove("dark")
15
15
  }
16
16
  const darkModePreference = window.matchMedia("(prefers-color-scheme: dark)");
17
17
  darkModePreference.addEventListener("change", setColorScheme);
package/CHANGELOG.md CHANGED
@@ -1,3 +1,27 @@
1
+ # v1.107.0 (Wed Oct 09 2024)
2
+
3
+ #### πŸš€ Enhancement
4
+
5
+ - Feature/dpe 2883 [#1097](https://github.com/mumprod/hr-design-system-handlebars/pull/1097) ([@szuelch](https://github.com/szuelch))
6
+
7
+ #### Authors: 1
8
+
9
+ - [@szuelch](https://github.com/szuelch)
10
+
11
+ ---
12
+
13
+ # v1.106.0 (Wed Oct 09 2024)
14
+
15
+ #### πŸš€ Enhancement
16
+
17
+ - Feature/dpe 3387 [#1096](https://github.com/mumprod/hr-design-system-handlebars/pull/1096) ([@szuelch](https://github.com/szuelch))
18
+
19
+ #### Authors: 1
20
+
21
+ - [@szuelch](https://github.com/szuelch)
22
+
23
+ ---
24
+
1
25
  # v1.105.2 (Wed Oct 09 2024)
2
26
 
3
27
  #### πŸ› Bug Fix