@rolder/kit 3.0.0-alpha.30 → 3.0.0-alpha.31

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.
@@ -1,4 +1,4 @@
1
- export declare const Input: {
1
+ export declare const ChatInput: {
2
2
  Root: ({ children, className, onSubmit, isUploading, accept, ...props }: import("./Root").ChatInputRootProps) => import("react/jsx-runtime").JSX.Element;
3
3
  Textarea: (props: import("@mantine/core").TextareaProps) => import("react/jsx-runtime").JSX.Element;
4
4
  Footer: (props: import("@mantine/core").GroupProps) => import("react/jsx-runtime").JSX.Element;
@@ -3,11 +3,11 @@ import { Footer } from "./Footer.js";
3
3
  import { Root } from "./Root.js";
4
4
  import { Submit } from "./Submit.js";
5
5
  import { Textarea } from "./Textarea.js";
6
- const Input = {
6
+ const ChatInput = {
7
7
  Root: Root,
8
8
  Textarea: Textarea,
9
9
  Footer: Footer,
10
10
  Submit: Submit,
11
11
  File: File
12
12
  };
13
- export { Input };
13
+ export { ChatInput };
@@ -10,4 +10,4 @@ export declare const Chat: {
10
10
  Loader: (props: import("@mantine/core").LoaderProps) => import("react/jsx-runtime").JSX.Element | null;
11
11
  Empty: () => import("react/jsx-runtime").JSX.Element | null;
12
12
  };
13
- export { Input } from './chatInput';
13
+ export { ChatInput } from './chatInput';
@@ -4,7 +4,7 @@ import { Loader } from "./Loader.js";
4
4
  import { Message } from "./Message.js";
5
5
  import { Messages } from "./Messages.js";
6
6
  import { Root } from "./Root.js";
7
- import { Input } from "./chatInput/index.js";
7
+ import { ChatInput } from "./chatInput/index.js";
8
8
  const Chat = {
9
9
  Root: Root,
10
10
  Messages: Messages,
@@ -13,4 +13,4 @@ const Chat = {
13
13
  Loader: Loader,
14
14
  Empty: Empty
15
15
  };
16
- export { Chat, Input };
16
+ export { Chat, ChatInput };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rolder/kit",
3
- "version": "3.0.0-alpha.30",
3
+ "version": "3.0.0-alpha.31",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {