@cosmicdrift/kumiko-renderer-web 0.19.1 → 0.21.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/LICENSE CHANGED
@@ -21,7 +21,7 @@ managed offering of the Licensed Work.
21
21
  This restriction does not apply to the Licensor, any entity controlled by,
22
22
  controlling, or under common control with the Licensor ("Affiliates"), or
23
23
  contractors acting on their behalf. The Licensor remains free to use the
24
- Licensed Work for any purpose, including for the operation of kumiko.so.
24
+ Licensed Work for any purpose, including for the operation of kumiko.rocks.
25
25
 
26
26
  Change Date: 2030-05-05
27
27
  Change License: Apache License, Version 2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmicdrift/kumiko-renderer-web",
3
- "version": "0.19.1",
3
+ "version": "0.21.0",
4
4
  "description": "Web-platform bindings for @cosmicdrift/kumiko-renderer. HTML default-primitives, browser history-based navigation, EventSource-backed live events, and a one-call createKumikoApp that mounts the whole stack via react-dom.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -62,7 +62,7 @@
62
62
  "url": "git+https://github.com/CosmicDriftGameStudio/kumiko-framework.git",
63
63
  "directory": "packages/renderer-web"
64
64
  },
65
- "homepage": "https://kumiko.so",
65
+ "homepage": "https://kumiko.rocks",
66
66
  "bugs": {
67
67
  "url": "https://github.com/CosmicDriftGameStudio/kumiko-framework/issues"
68
68
  },
@@ -49,14 +49,14 @@ describe("ToastProvider + useToast", () => {
49
49
  {
50
50
  title: "Konflikt",
51
51
  variant: "destructive",
52
- docsUrl: "https://docs.kumiko.so/errors/stale_state",
52
+ docsUrl: "https://docs.kumiko.rocks/errors/stale_state",
53
53
  },
54
54
  ]}
55
55
  />
56
56
  </ToastProvider>,
57
57
  );
58
58
  const link = screen.getByRole("link", { name: /Mehr erfahren/i });
59
- expect(link.getAttribute("href")).toBe("https://docs.kumiko.so/errors/stale_state");
59
+ expect(link.getAttribute("href")).toBe("https://docs.kumiko.rocks/errors/stale_state");
60
60
  expect(link.getAttribute("target")).toBe("_blank");
61
61
  expect(link.getAttribute("rel")).toBe("noopener noreferrer");
62
62
  });
@@ -68,7 +68,7 @@ describe("ToastProvider + useToast", () => {
68
68
  options={[
69
69
  {
70
70
  title: "Conflict",
71
- docsUrl: "https://docs.kumiko.so/errors/stale_state",
71
+ docsUrl: "https://docs.kumiko.rocks/errors/stale_state",
72
72
  docsLinkLabel: "Learn more",
73
73
  },
74
74
  ]}