hr-design-system-handlebars 1.105.2 → 1.106.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.
@@ -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,15 @@
1
+ # v1.106.0 (Wed Oct 09 2024)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - Feature/dpe 3387 [#1096](https://github.com/mumprod/hr-design-system-handlebars/pull/1096) ([@szuelch](https://github.com/szuelch))
6
+
7
+ #### Authors: 1
8
+
9
+ - [@szuelch](https://github.com/szuelch)
10
+
11
+ ---
12
+
1
13
  # v1.105.2 (Wed Oct 09 2024)
2
14
 
3
15
  #### 🐛 Bug Fix