@kayleai/ui 0.0.7 → 0.0.8

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/logo.d.ts CHANGED
@@ -1,4 +1,5 @@
1
- export declare function Logo({ className, variant, }: Readonly<{
1
+ export declare function Logo({ title, className, variant, }: Readonly<{
2
+ title?: string;
2
3
  className?: string;
3
4
  variant?: "default" | "small";
4
5
  }>): import("react/jsx-runtime").JSX.Element;
@@ -1 +1 @@
1
- {"version":3,"file":"logo.d.ts","sourceRoot":"","sources":["../src/logo.tsx"],"names":[],"mappings":"AAEA,wBAAgB,IAAI,CAAC,EACnB,SAAS,EACT,OAAmB,GACpB,EAAE,QAAQ,CAAC;IACV,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,SAAS,GAAG,OAAO,CAAC;CAC/B,CAAC,2CAeD;AAED,wBAAgB,QAAQ,CAAC,EACvB,SAAS,GACV,EAAE,QAAQ,CAAC;IACV,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC,2CAsBD"}
1
+ {"version":3,"file":"logo.d.ts","sourceRoot":"","sources":["../src/logo.tsx"],"names":[],"mappings":"AAEA,wBAAgB,IAAI,CAAC,EACnB,KAAe,EACf,SAAS,EACT,OAAmB,GACpB,EAAE,QAAQ,CAAC;IACV,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,SAAS,GAAG,OAAO,CAAC;CAC/B,CAAC,2CAeD;AAED,wBAAgB,QAAQ,CAAC,EACvB,SAAS,GACV,EAAE,QAAQ,CAAC;IACV,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC,2CAsBD"}
package/dist/logo.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import clsx from "clsx";
3
- export function Logo({ className, variant = "default", }) {
4
- return (_jsxs("div", { className: clsx("relative isolate flex items-center", className), children: [_jsx(Logomark, { className: "size-6" }), _jsx("span", { className: clsx("ml-2 select-none font-medium tracking-tight", variant === "small" && "text-lg", variant === "default" && "text-xl"), children: "Kayle ID" })] }));
3
+ export function Logo({ title = "Kayle", className, variant = "default", }) {
4
+ return (_jsxs("div", { className: clsx("relative isolate flex items-center", className), children: [_jsx(Logomark, { className: "size-6" }), _jsx("span", { className: clsx("ml-2 select-none font-medium tracking-tight", variant === "small" && "text-lg", variant === "default" && "text-xl"), children: title })] }));
5
5
  }
6
6
  export function Logomark({ className, }) {
7
7
  return (_jsxs("svg", { className: className, height: "24", viewBox: "0 0 41.8 39.4", width: "24", xmlns: "http://www.w3.org/2000/svg", children: [_jsx("title", {}), _jsx("g", { fill: "currentColor", fillRule: "evenodd", id: "kayle-icon", stroke: "currentColor", strokeLinecap: "round", strokeWidth: "0mm", children: _jsx("path", { d: "M 0 15.9 L 2.5 9.3 L 15.2 13.6 C 16.5 14.1 17.1 15.6 17.9 16.7 L 19.3 15.7 C 18.5 14.6 17.3 13.4 17.3 12.1 C 17.3 12.1 17.2 0 17.2 0 L 24.2 0 C 24.2 0 24.5 12.1 24.5 12.1 C 24.5 13.4 23.3 14.6 22.5 15.7 L 23.9 16.7 C 24.7 15.6 25.4 14.1 26.6 13.6 L 39.3 9.3 C 39.3 9.3 41.8 15.9 41.8 15.9 L 28.1 21.1 C 26.9 21.6 25.4 20.8 24.1 20.4 C 24.1 20.4 23.6 22.1 23.6 22.1 C 24.9 22.5 26.6 22.6 27.4 23.7 C 27.4 23.7 36.2 35.2 36.2 35.2 C 36.2 35.2 30.6 39.4 30.6 39.4 C 30.6 39.4 22.3 29.2 22.3 29.2 C 21.5 28.2 21.8 26.6 21.8 25.2 L 20 25.2 C 20 26.6 20.3 28.2 19.5 29.2 L 11.3 39.4 C 11.3 39.4 5.7 35.2 5.7 35.2 C 5.7 35.2 14.5 23.7 14.5 23.7 C 15.3 22.6 17 22.5 18.2 22.1 C 18.2 22.1 17.8 20.4 17.8 20.4 C 16.5 20.8 15 21.6 13.7 21.1 L 0 15.9 Z" }) })] }));
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@kayleai/ui",
3
3
  "description": "Kayle's UI library",
4
4
  "author": "Arsen Shkrumelyak <arsen@kayle.ai>",
5
- "version": "0.0.7",
5
+ "version": "0.0.8",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
@@ -43,7 +43,7 @@
43
43
  "husky": "9.1.7",
44
44
  "react": "19.2.0",
45
45
  "react-dom": "19.2.0",
46
- "typescript": "^5",
46
+ "typescript": "5.9.3",
47
47
  "ultracite": "6.4.1"
48
48
  },
49
49
  "peerDependencies": {
@@ -65,7 +65,6 @@
65
65
  "react-day-picker": "9.12.0",
66
66
  "react-resizable-panels": "3.0.6",
67
67
  "recharts": "2.15.4",
68
- "shadcn": "3.6.1",
69
68
  "sonner": "2.0.7",
70
69
  "tailwind-merge": "3.4.0",
71
70
  "tailwindcss": "4.0.6",