zudoku 0.4.4-dev.0 → 0.4.4-dev.1

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.
@@ -4,7 +4,7 @@ const i = (t, e) => Object.entries(t).flatMap(([a, s]) => {
4
4
  return o ? {
5
5
  path: o,
6
6
  lazy: async () => {
7
- const { MdxPage: r } = await import("./MdxPage-DKD6W5vO.js"), { default: p, ...m } = await s();
7
+ const { MdxPage: r } = await import("./MdxPage-BvyW3LcO.js"), { default: p, ...m } = await s();
8
8
  return {
9
9
  element: /* @__PURE__ */ c.jsx(
10
10
  r,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zudoku",
3
- "version": "0.4.4-dev.0",
3
+ "version": "0.4.4-dev.1",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -7,7 +7,10 @@
7
7
  type="image/svg+xml"
8
8
  href="https://cdn.zudoku.dev/logos/favicon.svg"
9
9
  />
10
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
10
+ <meta
11
+ name="viewport"
12
+ content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
13
+ />
11
14
  <title>Zudoku Demo</title>
12
15
  <script
13
16
  type="module"
package/src/app/demo.html CHANGED
@@ -7,7 +7,10 @@
7
7
  type="image/svg+xml"
8
8
  href="https://cdn.zudoku.dev/logos/favicon.svg"
9
9
  />
10
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
10
+ <meta
11
+ name="viewport"
12
+ content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
13
+ />
11
14
  <title>Zudoku Demo</title>
12
15
  <script type="module" crossorigin src="./demo.js"></script>
13
16
  <link rel="stylesheet" crossorigin href="./style.css" />
@@ -7,8 +7,11 @@
7
7
  type="image/svg+xml"
8
8
  href="https://cdn.zudoku.dev/logos/favicon.svg"
9
9
  />
10
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
11
- <title>Dev Portal</title>
10
+ <meta
11
+ name="viewport"
12
+ content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
13
+ />
14
+ <title>Zudoku</title>
12
15
  <script type="module" crossorigin src="./main.js"></script>
13
16
  <link rel="stylesheet" crossorigin href="./style.css" />
14
17
  </head>
@@ -60,7 +60,7 @@ export const Header = memo(function HeaderInner() {
60
60
  return (
61
61
  <header className="sticky top-0 z-10 bg-background/80 backdrop-blur w-full">
62
62
  <div className="max-w-screen-2xl mx-auto">
63
- <div className="grid grid-cols-[calc(var(--side-nav-width))_1fr] lg:gap-12 items-center border-b px-12 h-[--top-header-height]">
63
+ <div className="grid lg:grid-cols-[calc(var(--side-nav-width))_1fr] lg:gap-12 items-center border-b px-12 h-[--top-header-height]">
64
64
  <div className="flex">
65
65
  <Link to="/">
66
66
  <div className="flex items-center gap-3.5">
@@ -85,11 +85,11 @@ export const MdxPage = ({
85
85
  {!hidePager && (
86
86
  <>
87
87
  <hr />
88
- <div className="not-prose flex items-center justify-between gap-8">
88
+ <div className="not-prose flex flex-wrap items-center justify-between gap-8">
89
89
  {prev ? (
90
90
  <Link
91
91
  to={prev.id}
92
- className="flex flex-col items-stretch gap-2 flex-1 truncate border rounded px-6 py-4 text-start hover:border-primary/85 transition shadow-sm hover:shadow-md"
92
+ className="flex flex-col items-stretch gap-2 flex-1 min-w-max border rounded px-6 py-4 text-start hover:border-primary/85 transition shadow-sm hover:shadow-md"
93
93
  title={prev.label}
94
94
  >
95
95
  <div className="text-sm text-muted-foreground">
@@ -105,7 +105,7 @@ export const MdxPage = ({
105
105
  {next ? (
106
106
  <Link
107
107
  to={next.id}
108
- className="flex flex-col items-stretch gap-2 flex-1 truncate border rounded px-6 py-4 text-end hover:border-primary/85 transition shadow-sm hover:shadow-md"
108
+ className="flex flex-col items-stretch gap-2 flex-1 min-w-max border rounded px-6 py-4 text-end hover:border-primary/85 transition shadow-sm hover:shadow-md"
109
109
  title={next.label}
110
110
  >
111
111
  <div className="text-sm text-muted-foreground">