@useparagon/connect 2.2.3-experimental-16047.3 → 2.2.3-experimental-16047.4
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/src/ConnectSDK.d.ts +44 -4
- package/dist/src/ConnectSDK.js +1 -1
- package/dist/src/file-picker/integrations/googledrive.d.ts +4 -0
- package/dist/src/index.d.ts +0 -2
- package/dist/src/index.js +1 -1
- package/dist/src/types/connect.d.ts +5 -2
- package/dist/src/types/sdk.d.ts +4 -4
- package/package.json +1 -1
- package/dist/src/InstallFlow.d.ts +0 -39
|
@@ -17,6 +17,10 @@ export declare class GoogleDriveFilePicker extends BaseFilePicker {
|
|
|
17
17
|
* triggers when gapi.load('picker') loads picker successfully
|
|
18
18
|
* */
|
|
19
19
|
private onPickerLoaded;
|
|
20
|
+
/**
|
|
21
|
+
* Creates a DocsView with the common options applied
|
|
22
|
+
*/
|
|
23
|
+
private createDocsView;
|
|
20
24
|
/**
|
|
21
25
|
* triggers when user interacts with google file picker modal
|
|
22
26
|
* */
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import ConnectSDK from './ConnectSDK';
|
|
2
|
-
import { InstallFlow } from './InstallFlow';
|
|
3
2
|
import { ExternalFilePickerConstruct, IConnectSDK } from './types';
|
|
4
3
|
export * from './types/index';
|
|
5
|
-
export { InstallFlow };
|
|
6
4
|
export declare const connectSingleton: ConnectSDK;
|
|
7
5
|
export declare const paragon: IConnectSDK & {
|
|
8
6
|
ExternalFilePicker: ExternalFilePickerConstruct;
|