@adaptabletools/adaptable-plugin-ipushpull-cjs 22.0.0-canary.2 → 22.0.0-canary.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/package.json
CHANGED
|
@@ -1,12 +1,2 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
|
|
3
|
-
import * as IPushPullRedux from '../Redux/ActionReducers/IPushPullRedux';
|
|
4
|
-
import { IPushPullDomain } from "@adaptabletools/adaptable-cjs/src/AdaptableState/IPushPullState";
|
|
5
|
-
interface IPushPullAddPagePopupProps {
|
|
6
|
-
IPushPullDomainsPages: IPushPullDomain[] | undefined;
|
|
7
|
-
onAddPage: (folder: string, page: string) => IPushPullRedux.IPushPullAddPageAction;
|
|
8
|
-
onCancel: () => any;
|
|
9
|
-
}
|
|
10
|
-
declare const IPushPullAddPageComponent: (props: IPushPullAddPagePopupProps) => React.JSX.Element;
|
|
11
|
-
export declare let IPushPullAddPagePopup: ConnectedComponent<typeof IPushPullAddPageComponent, Omit<IPushPullAddPagePopupProps, "IPushPullDomainsPages" | "onAddPage" | "onCancel">>;
|
|
12
|
-
export {};
|
|
2
|
+
export declare let IPushPullAddPagePopup: React.ComponentType;
|
|
@@ -1,13 +1,2 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
|
|
3
|
-
import * as IPushPullRedux from '../Redux/ActionReducers/IPushPullRedux';
|
|
4
|
-
interface IPushPullLoginPopupProps {
|
|
5
|
-
pushpullLogin: string | undefined;
|
|
6
|
-
pushpullPassword: string | undefined;
|
|
7
|
-
pushpullLoginErrorMessage: string | undefined;
|
|
8
|
-
onLogin: (login: string, password: string) => IPushPullRedux.IPushPullLoginAction;
|
|
9
|
-
onCancel: () => any;
|
|
10
|
-
}
|
|
11
|
-
declare const IPushPullLoginComponent: (props: IPushPullLoginPopupProps) => React.JSX.Element;
|
|
12
|
-
export declare let IPushPullLoginPopup: ConnectedComponent<typeof IPushPullLoginComponent, Omit<IPushPullLoginPopupProps, "pushpullLoginErrorMessage" | "onLogin" | "onCancel">>;
|
|
13
|
-
export {};
|
|
2
|
+
export declare let IPushPullLoginPopup: React.ComponentType;
|
|
@@ -1,23 +1,2 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
|
|
3
|
-
import * as IPushPullRedux from '../Redux/ActionReducers/IPushPullRedux';
|
|
4
|
-
import { ModuleViewPopupProps } from "@adaptabletools/adaptable-cjs/src/View/Components/SharedProps/ModuleViewPopupProps";
|
|
5
|
-
import * as TeamSharingRedux from "@adaptabletools/adaptable-cjs/src/Redux/ActionsReducers/TeamSharingRedux";
|
|
6
|
-
import { EditableConfigEntityState } from "@adaptabletools/adaptable-cjs/src/View/Components/SharedProps/EditableConfigEntityState";
|
|
7
|
-
import { AdaptableObject } from "@adaptabletools/adaptable-cjs/src/AdaptableState/Common/AdaptableObject";
|
|
8
|
-
import { IPushPullReport } from "@adaptabletools/adaptable-cjs/src/AdaptableState/IPushPullState";
|
|
9
|
-
import { AdaptableSharedEntityConfig } from "@adaptabletools/adaptable-cjs/src/AdaptableState/TeamSharingState";
|
|
10
|
-
interface IPushPullPopupProps extends ModuleViewPopupProps<IPushPullPopupComponent> {
|
|
11
|
-
onIPushPullSendSnapshot: (iPushPulleport: IPushPullReport) => IPushPullRedux.IPushPullSendSnapshotAction;
|
|
12
|
-
onIPushPullStopLiveData: () => IPushPullRedux.IPushPullStopLiveDataAction;
|
|
13
|
-
onShare: (entity: AdaptableObject, config: AdaptableSharedEntityConfig) => TeamSharingRedux.TeamSharingShareAction;
|
|
14
|
-
}
|
|
15
|
-
declare class IPushPullPopupComponent extends React.Component<IPushPullPopupProps, EditableConfigEntityState> {
|
|
16
|
-
constructor(props: IPushPullPopupProps);
|
|
17
|
-
shouldClosePopupOnFinishWizard: boolean;
|
|
18
|
-
componentDidMount(): void;
|
|
19
|
-
render(): React.JSX.Element;
|
|
20
|
-
onApplyExport(iPushPullReport: IPushPullReport): void;
|
|
21
|
-
}
|
|
22
|
-
export declare let IPushPullPopup: ConnectedComponent<typeof IPushPullPopupComponent, IPushPullPopupProps>;
|
|
23
|
-
export {};
|
|
2
|
+
export declare let IPushPullPopup: React.ComponentType<any>;
|
|
@@ -5,7 +5,6 @@ import * as PopupRedux from "@adaptabletools/adaptable-cjs/src/Redux/ActionsRedu
|
|
|
5
5
|
import { AdaptableColumn } from "@adaptabletools/adaptable-cjs/src/AdaptableState/Common/AdaptableColumn";
|
|
6
6
|
import { Report } from "@adaptabletools/adaptable-cjs/src/AdaptableState/ExportState";
|
|
7
7
|
import * as React from 'react';
|
|
8
|
-
import { ConnectedComponent } from 'react-redux';
|
|
9
8
|
export interface IPushPullViewPanelComponentProps extends ViewPanelProps {
|
|
10
9
|
onIPushPullSendSnapshot: (iPushPulleport: IPushPullReport) => IPushPullRedux.IPushPullSendSnapshotAction;
|
|
11
10
|
onIPushPullStartLiveData: (iPushPulleport: IPushPullReport) => IPushPullRedux.IPushPullStartLiveDataAction;
|
|
@@ -26,6 +25,4 @@ export interface IPushPullViewPanelComponentProps extends ViewPanelProps {
|
|
|
26
25
|
onCurrentIPushPullFolderChange: (folder: string) => IPushPullRedux.IPushPullSetCurrentFolderAction;
|
|
27
26
|
onCurrentIPushPullPageChange: (page: string) => IPushPullRedux.IPushPullSetCurrentPageAction;
|
|
28
27
|
}
|
|
29
|
-
declare const
|
|
30
|
-
export declare const IPushPullViewPanelControl: ConnectedComponent<typeof IPushPullViewPanelComponent, IPushPullViewPanelComponentProps>;
|
|
31
|
-
export {};
|
|
28
|
+
export declare const IPushPullViewPanelControl: React.ComponentType<any>;
|