@adaptabletools/adaptable 22.1.0-canary.0 → 22.1.0-canary.1
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 +0 -14
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/src/AdaptableOptions/DashboardOptions.d.ts +2 -2
- package/src/AdaptableState/LayoutState.d.ts +42 -45
- package/src/Api/Implementation/ColumnApiImpl.d.ts +1 -0
- package/src/Api/Implementation/ColumnApiImpl.js +14 -0
- package/src/Strategy/SmartEditModule.js +1 -1
- package/src/View/Layout/Wizard/sections/ColumnsSection.js +31 -19
- package/src/View/Layout/Wizard/sections/RowGroupingSection.js +1 -1
- package/src/View/Layout/Wizard/sections/RowSelectionSection.js +30 -31
- package/src/agGrid/AdaptableAgGrid.js +1 -1
- package/src/env.js +2 -2
- package/src/layout-manager/src/index.d.ts +1 -0
- package/src/layout-manager/src/index.js +60 -4
- package/src/metamodel/adaptable.metamodel.d.ts +19 -0
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +1 -1
- package/tsconfig.esm.tsbuildinfo +1 -1
package/src/types.d.ts
CHANGED
|
@@ -194,7 +194,7 @@ export type { StyledColumn, StyledColumnState, PercentBarStyle, GradientStyle, C
|
|
|
194
194
|
export type { FreeTextColumn, FreeTextColumnState, FreeTextStoredValue, FreeTextColumnSettings, } from './AdaptableState/FreeTextColumnState';
|
|
195
195
|
export type { StatusBarState, AdaptableStatusBar } from './AdaptableState/StatusBarState';
|
|
196
196
|
export type { IPushPullDomain, IPushPullReport, IPushPullSchedule, IPushPullState, } from './AdaptableState/IPushPullState';
|
|
197
|
-
export type { Layout, LayoutState, LayoutArray, LayoutBase, TableLayout, PivotLayout, RowGroupValues, ColumnGroupValues, RowGroupValuesWithExceptionKeys, GroupKeys, ColumnGroupValuesWithExceptionKeys, ColumnStringMap, ColumnNumberMap, ColumnBooleanFalseMap, ColumnDirectionMap, ColumnSizingMap, ColumnSizingDefinition, PivotTotalPosition, } from './AdaptableState/LayoutState';
|
|
197
|
+
export type { Layout, LayoutState, LayoutArray, LayoutBase, TableLayout, PivotLayout, RowGroupValues, ColumnGroupValues, RowGroupValuesWithExceptionKeys, GroupKeys, ColumnGroupValuesWithExceptionKeys, ColumnStringMap, ColumnNumberMap, ColumnBooleanFalseMap, ColumnDirectionMap, ColumnSizingMap, ColumnSizingDefinition, PivotTotalPosition, LayoutRowSelection, } from './AdaptableState/LayoutState';
|
|
198
198
|
export type { RowSummary, RowSummaryPosition } from './AdaptableState/Common/RowSummary';
|
|
199
199
|
export type { OpenFinReport, OpenFinSchedule, OpenFinState } from './AdaptableState/OpenFinState';
|
|
200
200
|
export type { PlusMinusNudge, PlusMinusState } from './AdaptableState/PlusMinusState';
|