@cosmicdrift/kumiko-server-runtime 0.188.0 → 0.189.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmicdrift/kumiko-server-runtime",
3
- "version": "0.188.0",
3
+ "version": "0.189.0",
4
4
  "description": "Production server-boot runtime for Kumiko apps: connections, schema-drift-gate, seeds, lifecycle, graceful shutdown. Symmetric to kumiko-dev-server's runDevApp, without dev/scaffold/codegen tooling.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -76,8 +76,8 @@
76
76
  }
77
77
  },
78
78
  "dependencies": {
79
- "@cosmicdrift/kumiko-bundled-features": "0.188.0",
80
- "@cosmicdrift/kumiko-framework": "0.188.0",
79
+ "@cosmicdrift/kumiko-bundled-features": "0.189.0",
80
+ "@cosmicdrift/kumiko-framework": "0.189.0",
81
81
  "temporal-polyfill": "^0.3.2"
82
82
  },
83
83
  "publishConfig": {
@@ -92,11 +92,13 @@ export type BuildInfo = {
92
92
  // Hat keine Asset-Placeholder, weil der Default-Pfad für vanilla apps
93
93
  // (nur public/) gedacht ist — wer JS/CSS will, schreibt ein eigenes
94
94
  // index.html mit den richtigen Placeholder-Tags.
95
+ // interactive-widget=resizes-content (fw#1918): keeps `position: fixed`
96
+ // bottom bars anchored above a mobile keyboard instead of behind it.
95
97
  const DEFAULT_HTML = `<!doctype html>
96
98
  <html lang="en">
97
99
  <head>
98
100
  <meta charset="utf-8" />
99
- <meta name="viewport" content="width=device-width,initial-scale=1" />
101
+ <meta name="viewport" content="width=device-width,initial-scale=1,interactive-widget=resizes-content" />
100
102
  <title>Kumiko</title>
101
103
  </head>
102
104
  <body>