@bigbinary/neeto-integrations-frontend 1.3.0 → 1.5.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/README.md +1 -0
- package/dist/index.cjs.js +50 -19
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +51 -21
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +19 -10
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export function Card(props: {
|
|
|
26
26
|
tooltipProps?: Partial<TooltipProps>;
|
|
27
27
|
customDropDown?: React.ReactNode;
|
|
28
28
|
children?: ReactNode;
|
|
29
|
-
})
|
|
29
|
+
}): JSX.Element;
|
|
30
30
|
|
|
31
31
|
export function Modal(props: {
|
|
32
32
|
isOpen: (...args: any[]) => any;
|
|
@@ -38,9 +38,9 @@ export function Modal(props: {
|
|
|
38
38
|
isCompleted: boolean;
|
|
39
39
|
};
|
|
40
40
|
children?: React.ReactNode;
|
|
41
|
-
})
|
|
41
|
+
}): JSX.Element;
|
|
42
42
|
|
|
43
|
-
export function Connect(props:{
|
|
43
|
+
export function Connect(props: {
|
|
44
44
|
Icon: React.ReactNode;
|
|
45
45
|
title: string;
|
|
46
46
|
description: string;
|
|
@@ -55,26 +55,26 @@ export function Finish(props: {
|
|
|
55
55
|
buttonProps?: Partial<ButtonProps>;
|
|
56
56
|
secondaryButtonProps?: Partial<ButtonProps>;
|
|
57
57
|
children?: React.ReactNode;
|
|
58
|
-
})
|
|
58
|
+
}): JSX.Element;
|
|
59
59
|
|
|
60
60
|
export function Demo(props: {
|
|
61
61
|
onClose: () => void;
|
|
62
62
|
videoUrl: string;
|
|
63
63
|
children?: React.ReactNode;
|
|
64
|
-
})
|
|
64
|
+
}): JSX.Element;
|
|
65
65
|
|
|
66
66
|
export function ZapierForm(props: {
|
|
67
|
-
|
|
67
|
+
newlyCreatedApiKey: string;
|
|
68
68
|
videoUrl: string;
|
|
69
|
-
|
|
69
|
+
apiKeys: any[];
|
|
70
70
|
isGenerating: boolean;
|
|
71
71
|
isLoading: boolean;
|
|
72
72
|
isDeleting: boolean;
|
|
73
73
|
deleteApiKey: (...args: any[]) => any;
|
|
74
|
-
handleGenerateApiKey:(...args: any[]) => any;
|
|
75
|
-
|
|
74
|
+
handleGenerateApiKey: (...args: any[]) => any;
|
|
75
|
+
setNewlyCreatedApiKey: (...args: any[]) => any;
|
|
76
76
|
setIsDemoModalOpen: (...args: any[]) => any;
|
|
77
|
-
})
|
|
77
|
+
}): JSX.Element;
|
|
78
78
|
|
|
79
79
|
export function WalkthroughModal(props: {
|
|
80
80
|
videoUrl: string;
|
|
@@ -82,3 +82,12 @@ export function WalkthroughModal(props: {
|
|
|
82
82
|
onClose: () => void;
|
|
83
83
|
children?: React.ReactNode;
|
|
84
84
|
}): JSX.Element;
|
|
85
|
+
|
|
86
|
+
export const DisconnectAlert: React.FC<{
|
|
87
|
+
isOpen: boolean;
|
|
88
|
+
isDisconnecting?: boolean;
|
|
89
|
+
title: string;
|
|
90
|
+
message?: string;
|
|
91
|
+
onClose: (...args: any[]) => any;
|
|
92
|
+
onDisconnect: (...args: any[]) => any;
|
|
93
|
+
}>;
|