@xyd-js/host 0.0.0-build-1ec9d41-20250820094256 → 0.0.0-build-31b39ec-20250820101539

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 CHANGED
@@ -1,24 +1,24 @@
1
1
  # @xyd-js/host
2
2
 
3
- ## 0.0.0-build-1ec9d41-20250820094256
3
+ ## 0.0.0-build-31b39ec-20250820101539
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - update all packages
8
8
  - Updated dependencies
9
- - @xyd-js/analytics@0.0.0-build-1ec9d41-20250820094256
10
- - @xyd-js/atlas@0.0.0-build-1ec9d41-20250820094256
11
- - @xyd-js/components@0.0.0-build-1ec9d41-20250820094256
12
- - @xyd-js/composer@0.0.0-build-1ec9d41-20250820094256
13
- - @xyd-js/content@0.0.0-build-1ec9d41-20250820094256
14
- - @xyd-js/core@0.0.0-build-1ec9d41-20250820094256
15
- - @xyd-js/framework@0.0.0-build-1ec9d41-20250820094256
16
- - @xyd-js/plugin-algolia@0.0.0-build-1ec9d41-20250820094256
17
- - @xyd-js/plugin-orama@0.0.0-build-1ec9d41-20250820094256
18
- - @xyd-js/theme-cosmo@0.0.0-build-1ec9d41-20250820094256
19
- - @xyd-js/theme-gusto@0.0.0-build-1ec9d41-20250820094256
20
- - @xyd-js/theme-opener@0.0.0-build-1ec9d41-20250820094256
21
- - @xyd-js/theme-picasso@0.0.0-build-1ec9d41-20250820094256
22
- - @xyd-js/theme-poetry@0.0.0-build-1ec9d41-20250820094256
23
- - @xyd-js/theme-solar@0.0.0-build-1ec9d41-20250820094256
24
- - @xyd-js/themes@0.0.0-build-1ec9d41-20250820094256
9
+ - @xyd-js/analytics@0.0.0-build-31b39ec-20250820101539
10
+ - @xyd-js/atlas@0.0.0-build-31b39ec-20250820101539
11
+ - @xyd-js/components@0.0.0-build-31b39ec-20250820101539
12
+ - @xyd-js/composer@0.0.0-build-31b39ec-20250820101539
13
+ - @xyd-js/content@0.0.0-build-31b39ec-20250820101539
14
+ - @xyd-js/core@0.0.0-build-31b39ec-20250820101539
15
+ - @xyd-js/framework@0.0.0-build-31b39ec-20250820101539
16
+ - @xyd-js/plugin-algolia@0.0.0-build-31b39ec-20250820101539
17
+ - @xyd-js/plugin-orama@0.0.0-build-31b39ec-20250820101539
18
+ - @xyd-js/theme-cosmo@0.0.0-build-31b39ec-20250820101539
19
+ - @xyd-js/theme-gusto@0.0.0-build-31b39ec-20250820101539
20
+ - @xyd-js/theme-opener@0.0.0-build-31b39ec-20250820101539
21
+ - @xyd-js/theme-picasso@0.0.0-build-31b39ec-20250820101539
22
+ - @xyd-js/theme-poetry@0.0.0-build-31b39ec-20250820101539
23
+ - @xyd-js/theme-solar@0.0.0-build-31b39ec-20250820101539
24
+ - @xyd-js/themes@0.0.0-build-31b39ec-20250820101539
package/app/root.tsx CHANGED
@@ -108,6 +108,8 @@ function clientColorScheme() {
108
108
  }
109
109
  } else if (theme === 'light') {
110
110
  return "light"
111
+ } else if (theme === 'dark') {
112
+ return "dark"
111
113
  }
112
114
  } catch (e) {
113
115
  // Fallback to system preference if localStorage fails
@@ -128,7 +130,6 @@ function getPathname(url: string) {
128
130
  return parsedUrl.pathname.replace(/^\//, '');
129
131
  }
130
132
 
131
-
132
133
  function DefaultMetas() {
133
134
  return <>
134
135
  <meta charSet="utf-8" />
@@ -13,6 +13,8 @@
13
13
  }
14
14
  } else if (theme === 'light') {
15
15
  document.documentElement.setAttribute('data-color-scheme', 'light');
16
+ } else if (theme === 'dark') {
17
+ document.documentElement.setAttribute('data-color-scheme', 'dark');
16
18
  }
17
19
  } catch (e) {
18
20
  // Fallback to system preference if localStorage fails
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyd-js/host",
3
- "version": "0.0.0-build-1ec9d41-20250820094256",
3
+ "version": "0.0.0-build-31b39ec-20250820101539",
4
4
  "type": "module",
5
5
  "dependencies": {
6
6
  "katex": "^0.16.22",
@@ -13,22 +13,22 @@
13
13
  "@react-router/serve": "^7.7.1",
14
14
  "openux-js": "0.0.0-pre.1",
15
15
  "pluganalytics": "0.0.0-pre.3",
16
- "@xyd-js/analytics": "0.0.0-build-1ec9d41-20250820094256",
17
- "@xyd-js/core": "0.0.0-build-1ec9d41-20250820094256",
18
- "@xyd-js/components": "0.0.0-build-1ec9d41-20250820094256",
19
- "@xyd-js/content": "0.0.0-build-1ec9d41-20250820094256",
20
- "@xyd-js/framework": "0.0.0-build-1ec9d41-20250820094256",
21
- "@xyd-js/composer": "0.0.0-build-1ec9d41-20250820094256",
22
- "@xyd-js/themes": "0.0.0-build-1ec9d41-20250820094256",
23
- "@xyd-js/atlas": "0.0.0-build-1ec9d41-20250820094256",
24
- "@xyd-js/theme-poetry": "0.0.0-build-1ec9d41-20250820094256",
25
- "@xyd-js/theme-cosmo": "0.0.0-build-1ec9d41-20250820094256",
26
- "@xyd-js/theme-opener": "0.0.0-build-1ec9d41-20250820094256",
27
- "@xyd-js/theme-picasso": "0.0.0-build-1ec9d41-20250820094256",
28
- "@xyd-js/theme-gusto": "0.0.0-build-1ec9d41-20250820094256",
29
- "@xyd-js/theme-solar": "0.0.0-build-1ec9d41-20250820094256",
30
- "@xyd-js/plugin-orama": "0.0.0-build-1ec9d41-20250820094256",
31
- "@xyd-js/plugin-algolia": "0.0.0-build-1ec9d41-20250820094256"
16
+ "@xyd-js/core": "0.0.0-build-31b39ec-20250820101539",
17
+ "@xyd-js/analytics": "0.0.0-build-31b39ec-20250820101539",
18
+ "@xyd-js/components": "0.0.0-build-31b39ec-20250820101539",
19
+ "@xyd-js/content": "0.0.0-build-31b39ec-20250820101539",
20
+ "@xyd-js/framework": "0.0.0-build-31b39ec-20250820101539",
21
+ "@xyd-js/themes": "0.0.0-build-31b39ec-20250820101539",
22
+ "@xyd-js/atlas": "0.0.0-build-31b39ec-20250820101539",
23
+ "@xyd-js/theme-poetry": "0.0.0-build-31b39ec-20250820101539",
24
+ "@xyd-js/theme-cosmo": "0.0.0-build-31b39ec-20250820101539",
25
+ "@xyd-js/theme-opener": "0.0.0-build-31b39ec-20250820101539",
26
+ "@xyd-js/composer": "0.0.0-build-31b39ec-20250820101539",
27
+ "@xyd-js/theme-picasso": "0.0.0-build-31b39ec-20250820101539",
28
+ "@xyd-js/theme-solar": "0.0.0-build-31b39ec-20250820101539",
29
+ "@xyd-js/theme-gusto": "0.0.0-build-31b39ec-20250820101539",
30
+ "@xyd-js/plugin-orama": "0.0.0-build-31b39ec-20250820101539",
31
+ "@xyd-js/plugin-algolia": "0.0.0-build-31b39ec-20250820101539"
32
32
  },
33
33
  "devDependencies": {
34
34
  "autoprefixer": "^10.4.20",