@citron-systems/citron-ui 1.15.0 → 1.16.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/dist/index.d.cts +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -36,6 +36,13 @@ interface AssistantPanelProps extends Omit<GlobalAssistantChatProps, 'className'
|
|
|
36
36
|
subtitle?: string;
|
|
37
37
|
className?: string;
|
|
38
38
|
}
|
|
39
|
+
/**
|
|
40
|
+
* Inline assistant panel that pushes layout content to the left on desktop.
|
|
41
|
+
* On screens < 768px it falls back to a fixed overlay.
|
|
42
|
+
*
|
|
43
|
+
* Must be placed as a direct flex child alongside the main content area
|
|
44
|
+
* (e.g. inside AppLayout's <main> or a custom flex wrapper).
|
|
45
|
+
*/
|
|
39
46
|
declare function AssistantPanel({ open, onOpenChange, title, subtitle, className, ...chatProps }: AssistantPanelProps): react_jsx_runtime.JSX.Element;
|
|
40
47
|
|
|
41
48
|
interface CenteredAssistantChatProps extends GlobalAssistantChatProps {
|
package/dist/index.d.ts
CHANGED
|
@@ -36,6 +36,13 @@ interface AssistantPanelProps extends Omit<GlobalAssistantChatProps, 'className'
|
|
|
36
36
|
subtitle?: string;
|
|
37
37
|
className?: string;
|
|
38
38
|
}
|
|
39
|
+
/**
|
|
40
|
+
* Inline assistant panel that pushes layout content to the left on desktop.
|
|
41
|
+
* On screens < 768px it falls back to a fixed overlay.
|
|
42
|
+
*
|
|
43
|
+
* Must be placed as a direct flex child alongside the main content area
|
|
44
|
+
* (e.g. inside AppLayout's <main> or a custom flex wrapper).
|
|
45
|
+
*/
|
|
39
46
|
declare function AssistantPanel({ open, onOpenChange, title, subtitle, className, ...chatProps }: AssistantPanelProps): react_jsx_runtime.JSX.Element;
|
|
40
47
|
|
|
41
48
|
interface CenteredAssistantChatProps extends GlobalAssistantChatProps {
|