@docyrus/ui-pro-ai-assistant 0.4.2 → 0.4.3

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/styles.css CHANGED
@@ -1158,6 +1158,9 @@
1158
1158
  .max-h-72 {
1159
1159
  max-height: calc(var(--spacing) * 72);
1160
1160
  }
1161
+ .max-h-80 {
1162
+ max-height: calc(var(--spacing) * 80);
1163
+ }
1161
1164
  .max-h-84 {
1162
1165
  max-height: calc(var(--spacing) * 84);
1163
1166
  }
@@ -0,0 +1,12 @@
1
+ import { type ToolActionEvent } from '../types';
2
+ interface CreateRecordProps {
3
+ dataSourceId: string;
4
+ record?: string | Record<string, any> | null;
5
+ records?: string | Array<Record<string, any>> | null;
6
+ state: string;
7
+ toolName?: string;
8
+ toolCallId: string;
9
+ onToolAction: (event: ToolActionEvent) => void;
10
+ }
11
+ export declare function CreateRecord({ dataSourceId, record, records, state, toolName, toolCallId, onToolAction }: CreateRecordProps): import("react/jsx-runtime").JSX.Element;
12
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docyrus/ui-pro-ai-assistant",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "Docyrus AI Assistant component — full-featured chat UI with canvas, projects, and i18n support.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",