@adaptabletools/adaptable 22.0.1 → 22.0.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/index.css +18 -8
- package/index.css.map +1 -1
- package/package.json +2 -2
- package/src/AdaptableInterfaces/IAdaptable.d.ts +2 -0
- package/src/Api/Internal/ActionColumnInternalApi.js +9 -0
- package/src/Api/Internal/RowFormInternalApi.js +4 -1
- package/src/Api/Internal/ThemeInternalApi.d.ts +1 -0
- package/src/Api/Internal/ThemeInternalApi.js +3 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +1 -1
- package/src/View/BulkUpdate/BulkUpdatePopup.js +1 -1
- package/src/View/BulkUpdate/BulkUpdateViewPanel.js +1 -1
- package/src/View/Components/ColumnFilter/components/FloatingFilterInputList.js +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +5 -1
- package/src/View/Components/PreviewResultsPanel.js +7 -4
- package/src/View/Layout/Wizard/sections/ColumnsSection.js +1 -1
- package/src/View/SmartEdit/SmartEditViewPanel.js +1 -3
- package/src/agGrid/AdaptableAgGrid.d.ts +2 -1
- package/src/agGrid/AdaptableAgGrid.js +1 -1
- package/src/agGrid/AgGridExportAdapter.js +6 -2
- package/src/components/Dropdown/index.js +3 -3
- package/src/env.js +2 -2
- package/src/layout-manager/src/index.js +6 -5
- package/src/types.d.ts +0 -1
- package/tsconfig.esm.tsbuildinfo +1 -1
- package/src/AdaptableOptions/IPushPullPluginOptions.d.ts +0 -35
- package/src/AdaptableOptions/IPushPullPluginOptions.js +0 -1
- package/src/Utilities/Interface/IPPStyle.d.ts +0 -31
- package/src/Utilities/Interface/IPPStyle.js +0 -1
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Options available in ipushpull plugin; allows users to collborate and share data in powerful ways
|
|
3
|
-
*/
|
|
4
|
-
export interface IPushPullPluginOptions {
|
|
5
|
-
/**
|
|
6
|
-
* The config required to run ipushpull; use your ipushpull credentials
|
|
7
|
-
*/
|
|
8
|
-
ippConfig?: any;
|
|
9
|
-
/**
|
|
10
|
-
* User's ipushpull user name (usually email address); if supplied, pre-populates the login screen's username textbox
|
|
11
|
-
*/
|
|
12
|
-
username?: string;
|
|
13
|
-
/**
|
|
14
|
-
* The user's ipushpull password; if supplied, pre-populates the login screen's password textbox
|
|
15
|
-
*/
|
|
16
|
-
password?: string;
|
|
17
|
-
/**
|
|
18
|
-
* How many miliseconds AdapTable should throttle when sending data updates to ipushpull
|
|
19
|
-
*
|
|
20
|
-
* @defaultValue 2000
|
|
21
|
-
*/
|
|
22
|
-
throttleTime?: number;
|
|
23
|
-
/**
|
|
24
|
-
* Whether AdapTable should try log in to ipushpull automatically at start-up
|
|
25
|
-
*
|
|
26
|
-
* @defaultValue false
|
|
27
|
-
*/
|
|
28
|
-
autoLogin?: boolean;
|
|
29
|
-
/**
|
|
30
|
-
* Whether AdapTable will include System Reports (e.g. 'All Data', 'Selected Cells' etc) in the ipushpull toolbar dropdown
|
|
31
|
-
*
|
|
32
|
-
* @defaultValue true
|
|
33
|
-
*/
|
|
34
|
-
includeSystemReports?: boolean;
|
|
35
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
export interface IPPStyle {
|
|
2
|
-
Header: {
|
|
3
|
-
headerColor: string;
|
|
4
|
-
headerBackColor: string;
|
|
5
|
-
headerFontFamily: string;
|
|
6
|
-
headerFontStyle: string;
|
|
7
|
-
headerFontSize: string;
|
|
8
|
-
headerFontWeight: string;
|
|
9
|
-
height: number;
|
|
10
|
-
Columns: {
|
|
11
|
-
columnFriendlyName: string;
|
|
12
|
-
width: number;
|
|
13
|
-
textAlign: string;
|
|
14
|
-
}[];
|
|
15
|
-
};
|
|
16
|
-
Row: {
|
|
17
|
-
color: string;
|
|
18
|
-
backColor: string;
|
|
19
|
-
altBackColor: string;
|
|
20
|
-
fontFamily: string;
|
|
21
|
-
fontStyle: string;
|
|
22
|
-
fontSize: string;
|
|
23
|
-
fontWeight: string;
|
|
24
|
-
height: number;
|
|
25
|
-
Columns: {
|
|
26
|
-
columnFriendlyName: string;
|
|
27
|
-
width: number;
|
|
28
|
-
textAlign: string;
|
|
29
|
-
}[];
|
|
30
|
-
};
|
|
31
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|