zudoku 0.3.0-dev.29 → 0.3.0-dev.30

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/dist/app/demo.js CHANGED
@@ -17,7 +17,7 @@ const navigation = [
17
17
  const apiUrl = new URL(window.location.href).searchParams.get("api-url");
18
18
  logger.info(`API URL: ${apiUrl}`);
19
19
  createRoot(document.getElementById("root")).render(_jsx(StrictMode, { children: _jsx(DevPortal, { page: {
20
- logo: "https://cdn.zuplo.com/www/favicon.png",
20
+ logo: "https://cdn.zudoku.dev/logos/icon.svg",
21
21
  pageTitle: "Developer Portal",
22
22
  }, navigation: navigation, plugins: [openApiPlugin({ type: "url", input: apiUrl, path: "/demo" })] }) }));
23
23
  //# sourceMappingURL=demo.js.map
package/dist/app/main.js CHANGED
@@ -16,11 +16,11 @@ import { DevPortal } from "zudoku/components";
16
16
  // IMPORTANT: This component must not contain tailwind classes
17
17
  // This directory is not processed by the tailwind plugin
18
18
  createRoot(document.getElementById("root")).render(_jsx(StrictMode, { children: _jsx(DevPortal, { page: {
19
- logo: config.page?.logo ?? "https://cdn.zuplo.com/www/favicon.png",
19
+ logo: config.page?.logo ?? "https://cdn.zudoku.dev/logos/icon.svg",
20
20
  pageTitle: "Developer Portal",
21
21
  ...config.page,
22
22
  }, metadata: {
23
- favicon: "https://cdn.zuplo.com/www/favicon.png",
23
+ favicon: "https://cdn.zudoku.dev/logos/icon.svg",
24
24
  title: "%s | Developer Portal",
25
25
  ...config.metadata,
26
26
  }, navigation: config.navigation ?? [], authentication: configuredAuthProvider, mdxComponents: config.mdx?.components, plugins: [
@@ -21,7 +21,7 @@ const navigation = [
21
21
  },
22
22
  ];
23
23
  createRoot(root).render(_jsx(StrictMode, { children: _jsx(DevPortal, { page: {
24
- logo: logoUrl ?? "https://cdn.zuplo.com/www/favicon.png",
24
+ logo: logoUrl ?? "https://cdn.zudoku.dev/logos/icon.svg",
25
25
  // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
26
26
  pageTitle: pageTitle ?? "Developer Portal",
27
27
  }, navigation: navigation, plugins: [openApiPlugin({ type: "url", input: apiUrl, path: "/" })] }) }));
package/dist/vite/html.js CHANGED
@@ -17,7 +17,6 @@ export function getBuildHtml({ jsEntry, cssEntry, }) {
17
17
  <html lang="en">
18
18
  <head>
19
19
  <meta charset="UTF-8" />
20
- <link rel="icon" type="image/svg+xml" href="/vite.svg" />
21
20
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
22
21
  <title>Vite + React + TS</title>
23
22
  <script type="module" crossorigin src="${jsEntry}"></script>
@@ -1 +1 @@
1
- {"version":3,"file":"html.js","sourceRoot":"","sources":["../../src/vite/html.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,UAAU,CAAC,OAAe;IACxC,OAAO;;;;;;;;iCAQwB,OAAO;;;CAGvC,CAAC;AACF,CAAC;AAED,MAAM,UAAU,YAAY,CAAC,EAC3B,OAAO,EACP,QAAQ,GAIT;IACC,OAAO;;;;;;;6CAOoC,OAAO;+CACL,QAAQ;;;;;QAK/C,CAAC;AACT,CAAC"}
1
+ {"version":3,"file":"html.js","sourceRoot":"","sources":["../../src/vite/html.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,UAAU,CAAC,OAAe;IACxC,OAAO;;;;;;;;iCAQwB,OAAO;;;CAGvC,CAAC;AACF,CAAC;AAED,MAAM,UAAU,YAAY,CAAC,EAC3B,OAAO,EACP,QAAQ,GAIT;IACC,OAAO;;;;;;6CAMoC,OAAO;+CACL,QAAQ;;;;;QAK/C,CAAC;AACT,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zudoku",
3
- "version": "0.3.0-dev.29",
3
+ "version": "0.3.0-dev.30",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -2,7 +2,11 @@
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="UTF-8" />
5
- <link rel="icon" type="image/svg+xml" href="/vite.svg" />
5
+ <link
6
+ rel="icon"
7
+ type="image/svg+xml"
8
+ href="https://cdn.zudoku.dev/logos/icon.svg"
9
+ />
6
10
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
11
  <title>Zudoku Demo</title>
8
12
  <script
package/src/app/demo.html CHANGED
@@ -2,7 +2,11 @@
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="UTF-8" />
5
- <link rel="icon" type="image/svg+xml" href="/vite.svg" />
5
+ <link
6
+ rel="icon"
7
+ type="image/svg+xml"
8
+ href="https://cdn.zudoku.dev/logos/icon.svg"
9
+ />
6
10
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
11
  <title>Zudoku Demo</title>
8
12
  <script type="module" crossorigin src="./demo.js"></script>
package/src/app/demo.tsx CHANGED
@@ -25,7 +25,7 @@ createRoot(document.getElementById("root")!).render(
25
25
  <StrictMode>
26
26
  <DevPortal
27
27
  page={{
28
- logo: "https://cdn.zuplo.com/www/favicon.png",
28
+ logo: "https://cdn.zudoku.dev/logos/icon.svg",
29
29
  pageTitle: "Developer Portal",
30
30
  }}
31
31
  navigation={navigation}
package/src/app/main.tsx CHANGED
@@ -25,12 +25,12 @@ createRoot(document.getElementById("root")!).render(
25
25
  <StrictMode>
26
26
  <DevPortal
27
27
  page={{
28
- logo: config.page?.logo ?? "https://cdn.zuplo.com/www/favicon.png",
28
+ logo: config.page?.logo ?? "https://cdn.zudoku.dev/logos/icon.svg",
29
29
  pageTitle: "Developer Portal",
30
30
  ...config.page,
31
31
  }}
32
32
  metadata={{
33
- favicon: "https://cdn.zuplo.com/www/favicon.png",
33
+ favicon: "https://cdn.zudoku.dev/logos/icon.svg",
34
34
  title: "%s | Developer Portal",
35
35
  ...config.metadata,
36
36
  }}
@@ -2,7 +2,11 @@
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="UTF-8" />
5
- <link rel="icon" type="image/svg+xml" href="/vite.svg" />
5
+ <link
6
+ rel="icon"
7
+ type="image/svg+xml"
8
+ href="https://cdn.zudoku.dev/logos/icon.svg"
9
+ />
6
10
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
11
  <title>Dev Portal</title>
8
12
  <script type="module" crossorigin src="./main.js"></script>
@@ -31,7 +31,7 @@ createRoot(root).render(
31
31
  <StrictMode>
32
32
  <DevPortal
33
33
  page={{
34
- logo: logoUrl ?? "https://cdn.zuplo.com/www/favicon.png",
34
+ logo: logoUrl ?? "https://cdn.zudoku.dev/logos/icon.svg",
35
35
  // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
36
36
  pageTitle: pageTitle ?? "Developer Portal",
37
37
  }}