@adaptabletools/adaptable-cjs 22.0.1-canary.3 → 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.
Files changed (30) hide show
  1. package/index.css +18 -8
  2. package/index.css.map +1 -1
  3. package/package.json +2 -2
  4. package/src/AdaptableInterfaces/IAdaptable.d.ts +2 -0
  5. package/src/Api/Internal/ActionColumnInternalApi.js +9 -0
  6. package/src/Api/Internal/ColumnFilterInternalApi.js +1 -1
  7. package/src/Api/Internal/RowFormInternalApi.js +4 -1
  8. package/src/Api/Internal/ThemeInternalApi.d.ts +1 -0
  9. package/src/Api/Internal/ThemeInternalApi.js +3 -0
  10. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +1 -1
  11. package/src/View/BulkUpdate/BulkUpdatePopup.js +1 -1
  12. package/src/View/BulkUpdate/BulkUpdateViewPanel.js +1 -1
  13. package/src/View/Components/ColumnFilter/components/FloatingFilterInputList.js +1 -1
  14. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +1 -1
  15. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +5 -1
  16. package/src/View/Components/PreviewResultsPanel.js +7 -4
  17. package/src/View/Layout/Wizard/sections/ColumnsSection.js +1 -1
  18. package/src/View/SmartEdit/SmartEditViewPanel.js +1 -3
  19. package/src/agGrid/AdaptableAgGrid.d.ts +2 -1
  20. package/src/agGrid/AdaptableAgGrid.js +10 -4
  21. package/src/agGrid/AgGridExportAdapter.js +6 -2
  22. package/src/components/Dropdown/index.js +3 -3
  23. package/src/env.js +2 -2
  24. package/src/layout-manager/src/index.js +6 -5
  25. package/src/types.d.ts +0 -1
  26. package/tsconfig.cjs.tsbuildinfo +1 -1
  27. package/src/AdaptableOptions/IPushPullPluginOptions.d.ts +0 -35
  28. package/src/AdaptableOptions/IPushPullPluginOptions.js +0 -2
  29. package/src/Utilities/Interface/IPPStyle.d.ts +0 -31
  30. package/src/Utilities/Interface/IPPStyle.js +0 -2
@@ -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,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -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,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });