@townco/gui-template 0.1.3 → 0.1.4

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": "@townco/gui-template",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -20,14 +20,14 @@
20
20
  "check": "tsc --noEmit"
21
21
  },
22
22
  "dependencies": {
23
- "@townco/ui": "workspace:*",
23
+ "@townco/ui": "0.1.7",
24
24
  "lucide-react": "^0.552.0",
25
25
  "react": "^19.2.0",
26
26
  "react-dom": "^19.2.0"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@tailwindcss/postcss": "^4.1.17",
30
- "@townco/tsconfig": "workspace:*",
30
+ "@townco/tsconfig": "0.1.4",
31
31
  "@types/react": "^19.2.2",
32
32
  "@types/react-dom": "^19.2.2",
33
33
  "@vitejs/plugin-react": "^5.1.0",
package/src/App.tsx CHANGED
@@ -1,4 +1,4 @@
1
- import { AcpClient } from "@town/ui";
1
+ import { AcpClient } from "@townco/ui";
2
2
  import { useEffect, useState } from "react";
3
3
  import { ChatView } from "./ChatView.js";
4
4
  import { config } from "./config.js";
package/src/ChatView.tsx CHANGED
@@ -3,7 +3,7 @@ import {
3
3
  useChatMessages,
4
4
  useChatSession,
5
5
  useChatStore,
6
- } from "@town/ui";
6
+ } from "@townco/ui";
7
7
  import {
8
8
  ChatInputField,
9
9
  ChatInputRoot,
@@ -15,7 +15,7 @@ import {
15
15
  Message,
16
16
  MessageContent,
17
17
  type TodoItem,
18
- } from "@town/ui/gui";
18
+ } from "@townco/ui/gui";
19
19
  import { ChevronDown, SendIcon } from "lucide-react";
20
20
  import { useEffect, useRef, useState } from "react";
21
21
 
package/src/main.tsx CHANGED
@@ -1,7 +1,7 @@
1
1
  import React from "react";
2
2
  import ReactDOM from "react-dom/client";
3
3
  import App from "./App.js";
4
- import "@town/ui/styles/global.css";
4
+ import "@townco/ui/styles/global.css";
5
5
 
6
6
  const rootElement = document.getElementById("root");
7
7
  if (!rootElement) throw new Error("Root element not found");