@adaptabletools/adaptable-plugin-ipushpull-cjs 21.2.2 → 21.2.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,13 +1,2 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
|
|
3
|
-
import { IPushPullDomain } from "@adaptabletools/adaptable-cjs/src/AdaptableState/IPushPullState";
|
|
4
|
-
interface IPushPullAddPagePopupProps {
|
|
5
|
-
IPushPullDomainsPages: IPushPullDomain[] | undefined;
|
|
6
|
-
onAddPage: (folder: string, page: string) => IPushPullRedux.IPushPullAddPageAction;
|
|
7
|
-
onCancel: () => any;
|
|
8
|
-
}
|
|
9
|
-
export declare let IPushPullAddPagePopup: import("react-redux").ConnectedComponent<(props: IPushPullAddPagePopupProps) => React.JSX.Element, {
|
|
10
|
-
context?: React.Context<import("react-redux").ReactReduxContextValue<any, import("redux").UnknownAction>>;
|
|
11
|
-
store?: import("redux").Store<any, import("redux").UnknownAction, unknown>;
|
|
12
|
-
}>;
|
|
13
|
-
export {};
|
|
2
|
+
export declare let IPushPullAddPagePopup: React.ComponentType;
|
|
@@ -1,14 +1,2 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
|
|
3
|
-
interface IPushPullLoginPopupProps {
|
|
4
|
-
pushpullLogin: string | undefined;
|
|
5
|
-
pushpullPassword: string | undefined;
|
|
6
|
-
pushpullLoginErrorMessage: string | undefined;
|
|
7
|
-
onLogin: (login: string, password: string) => IPushPullRedux.IPushPullLoginAction;
|
|
8
|
-
onCancel: () => any;
|
|
9
|
-
}
|
|
10
|
-
export declare let IPushPullLoginPopup: import("react-redux").ConnectedComponent<(props: IPushPullLoginPopupProps) => React.JSX.Element, {
|
|
11
|
-
context?: React.Context<import("react-redux").ReactReduxContextValue<any, import("redux").UnknownAction>>;
|
|
12
|
-
store?: import("redux").Store<any, import("redux").UnknownAction, unknown>;
|
|
13
|
-
}>;
|
|
14
|
-
export {};
|
|
2
|
+
export declare let IPushPullLoginPopup: React.ComponentType;
|
|
@@ -1,26 +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: import("react-redux").ConnectedComponent<typeof IPushPullPopupComponent, {
|
|
23
|
-
context?: React.Context<import("react-redux").ReactReduxContextValue<any, Redux.UnknownAction>>;
|
|
24
|
-
store?: Redux.Store<any, Redux.UnknownAction, unknown>;
|
|
25
|
-
}>;
|
|
26
|
-
export {};
|
|
2
|
+
export declare let IPushPullPopup: React.ComponentType<any>;
|
|
@@ -25,7 +25,4 @@ export interface IPushPullViewPanelComponentProps extends ViewPanelProps {
|
|
|
25
25
|
onCurrentIPushPullFolderChange: (folder: string) => IPushPullRedux.IPushPullSetCurrentFolderAction;
|
|
26
26
|
onCurrentIPushPullPageChange: (page: string) => IPushPullRedux.IPushPullSetCurrentPageAction;
|
|
27
27
|
}
|
|
28
|
-
export declare const IPushPullViewPanelControl:
|
|
29
|
-
context?: React.Context<import("react-redux").ReactReduxContextValue<any, import("redux").UnknownAction>>;
|
|
30
|
-
store?: import("redux").Store<any, import("redux").UnknownAction, unknown>;
|
|
31
|
-
}>;
|
|
28
|
+
export declare const IPushPullViewPanelControl: React.ComponentType<any>;
|