@adaptabletools/adaptable 20.0.0 → 20.0.2-canary.0
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/README.md +1 -1
- package/agGrid.d.ts +1 -0
- package/agGrid.js +2 -1
- package/base.css +50 -33
- package/base.css.map +1 -1
- package/index.css +47 -32
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/src/AdaptableOptions/ColumnMenuOptions.d.ts +3 -0
- package/src/AdaptableOptions/ContextMenuOptions.d.ts +9 -0
- package/src/AdaptableOptions/ExportOptions.d.ts +6 -0
- package/src/AdaptableOptions/FilterOptions.d.ts +5 -5
- package/src/AdaptableOptions/RowFormOptions.d.ts +7 -1
- package/src/AdaptableState/Common/AdaptableColumn.d.ts +3 -0
- package/src/AdaptableState/Common/AdaptableObject.d.ts +6 -0
- package/src/AdaptableState/Common/AggregationColumns.d.ts +6 -0
- package/src/AdaptableState/Common/Menu.d.ts +6 -0
- package/src/AdaptableState/ExportState.d.ts +9 -0
- package/src/AdaptableState/FlashingCellState.d.ts +5 -2
- package/src/AdaptableState/InitialState.d.ts +4 -3
- package/src/AdaptableState/LayoutState.d.ts +2 -2
- package/src/AdaptableState/ThemeState.d.ts +14 -2
- package/src/Api/ColumnFilterApi.d.ts +1 -1
- package/src/Api/StateApi.d.ts +2 -2
- package/src/Redux/ActionsReducers/PluginsRedux.d.ts +0 -93
- package/src/Redux/ActionsReducers/PluginsRedux.js +0 -93
- package/src/Redux/ActionsReducers/ScheduleRedux.d.ts +0 -42
- package/src/Redux/ActionsReducers/ScheduleRedux.js +0 -42
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -1
- package/src/Utilities/Services/ThemeService.js +3 -3
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +1 -2
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/EntitlementsForm.js +11 -9
- package/src/View/ColumnInfo/ColumnInfo.js +12 -10
- package/src/View/Comments/CommentsPopup.js +11 -9
- package/src/View/Components/ColumnFilter/components/FloatingFilterValues.js +7 -0
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +1 -1
- package/src/View/Layout/PivotDetailsPopoup.js +6 -5
- package/src/View/Layout/Wizard/sections/ColumnsSection.js +6 -5
- package/src/View/Note/NotePopup.js +12 -10
- package/src/View/StateManagement/StateManagementViewPanel.d.ts +2 -2
- package/src/View/Theme/ThemeEditor.js +9 -7
- package/src/View/Theme/VariantSelector.d.ts +1 -0
- package/src/View/Theme/VariantSelector.js +6 -3
- package/src/agGrid/AdaptableAgGrid.js +6 -2
- package/src/agGrid/AgGridAdapter.js +5 -0
- package/src/agGrid/AgGridColumnAdapter.js +0 -7
- package/src/agGrid/AgGridThemeAdapter.js +2 -2
- package/src/agGrid/FloatingFilterWrapper.js +1 -0
- package/src/agGrid/index.d.ts +2 -0
- package/src/agGrid/index.js +2 -1
- package/src/components/ExpressionEditor/BaseEditorInput.js +1 -1
- package/src/components/Select/Select.js +2 -3
- package/src/env.js +2 -2
- package/src/layout-manager/src/LayoutManagerModel.d.ts +1 -1
- package/src/metamodel/adaptable.metamodel.d.ts +104 -2
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/migration/AdaptableUpgradeHelper.d.ts +3 -3
- package/src/types.d.ts +1 -0
- package/tsconfig.esm.tsbuildinfo +1 -1
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { VersionUpgrade } from './VersionUpgrade';
|
|
2
2
|
import { AdaptableState } from '../AdaptableState/AdaptableState';
|
|
3
3
|
/**
|
|
4
|
-
*
|
|
4
|
+
* Config object used by State Auto-migration Wizard
|
|
5
5
|
*/
|
|
6
6
|
export interface UpgradeConfig {
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* AdapTable version to upgrade from
|
|
9
9
|
*/
|
|
10
10
|
fromVersion: number;
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
12
|
+
* AdapTable version to upgrade to
|
|
13
13
|
*
|
|
14
14
|
* @defaultValue The current version
|
|
15
15
|
*/
|
package/src/types.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export type { ExpressionFunction, ExpressionFunctionDocBlock, ExpressionFunctionHandler, ExpressionContext, ExpressionFunctionMap, ExpressionCategory, ExpressionFunctionInputType, AggregatedExpressionFunction, AggregatedExpressionReducerContext, AggregatedExpressionProcessAggValueContext, AggregatedExpressionPrepareRowValueContext, AggregatedExpressionFilterRowContext, AST, AST_Function, AST_Expression, Token, } from './../src/parser/src/types';
|
|
2
|
+
export type { AdaptableLogger } from './../src/agGrid/AdaptableLogger';
|
|
2
3
|
export type { AgGridConfig } from './AdaptableInterfaces/IAdaptable';
|
|
3
4
|
export type { AdaptableConfig } from './View/AdaptableWizardView/AdaptableConfigurationDialog/AdaptableConfig';
|
|
4
5
|
export type { AdaptableNoCodeWizardOptions, IAdaptableNoCodeWizard, } from './AdaptableInterfaces/AdaptableNoCodeWizard';
|