@magemetrics/ai 0.3.0 → 0.3.2
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/react/ai.js +22958 -22924
- package/dist/react/index.d.ts +4 -4
- package/dist/styles.css +1 -1
- package/dist/web-component/index.d.ts +4 -4
- package/dist/web-component/web-component.es.js +45468 -45432
- package/package.json +2 -2
package/dist/react/index.d.ts
CHANGED
|
@@ -26,10 +26,6 @@ export declare type CellContentProps = {
|
|
|
26
26
|
|
|
27
27
|
export declare const Chat: React.FC<ConversationContentProps>;
|
|
28
28
|
|
|
29
|
-
export declare const ChatLayoutProvider: default_2.FC<{
|
|
30
|
-
children: default_2.ReactNode;
|
|
31
|
-
}>;
|
|
32
|
-
|
|
33
29
|
declare interface ColumnSort {
|
|
34
30
|
desc: boolean;
|
|
35
31
|
id: string;
|
|
@@ -48,9 +44,11 @@ export declare interface Components {
|
|
|
48
44
|
dataReportTable?: (props: DataReportMessageProps) => default_2.ReactNode;
|
|
49
45
|
dataReportMessageActions?: (props: {
|
|
50
46
|
report: FrontendReport;
|
|
47
|
+
isSelected: boolean;
|
|
51
48
|
}) => default_2.ReactNode;
|
|
52
49
|
visualizationMessageActions?: (props: {
|
|
53
50
|
visualization: FrontendVisualization | V1FrontendVisualization;
|
|
51
|
+
isSelected: boolean;
|
|
54
52
|
}) => default_2.ReactNode;
|
|
55
53
|
dataReportPanelActions?: (props: {
|
|
56
54
|
report: FrontendReport;
|
|
@@ -779,6 +777,7 @@ declare interface ManagedModalProps extends ModalProps {
|
|
|
779
777
|
apiKey: string;
|
|
780
778
|
externalJwt: string;
|
|
781
779
|
apiUrl: string;
|
|
780
|
+
disableCanvas?: boolean;
|
|
782
781
|
persist?: PersistenceOptions;
|
|
783
782
|
components?: Components;
|
|
784
783
|
}
|
|
@@ -818,6 +817,7 @@ export declare const StandaloneConversationModal: React.FC<StandaloneConversatio
|
|
|
818
817
|
declare type StandaloneConversationModalProps = {
|
|
819
818
|
opened: boolean;
|
|
820
819
|
flowId: string;
|
|
820
|
+
disableCanvas?: boolean;
|
|
821
821
|
onOpenChange?: (open: boolean) => void;
|
|
822
822
|
};
|
|
823
823
|
|