@adaptabletools/adaptable 22.0.2 → 22.0.4
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 -6
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/src/AdaptableState/InitialState.d.ts +0 -94
- package/src/Api/AdaptableApi.d.ts +1 -1
- package/src/Api/Implementation/RowFormApiImpl.d.ts +3 -3
- package/src/Api/Implementation/RowFormApiImpl.js +8 -6
- package/src/Api/Implementation/StateApiImpl.d.ts +0 -3
- package/src/Api/Implementation/StateApiImpl.js +0 -8
- package/src/Api/Internal/GridInternalApi.d.ts +1 -1
- package/src/Api/Internal/RowFormInternalApi.d.ts +2 -2
- package/src/Api/Internal/RowFormInternalApi.js +23 -19
- package/src/Api/RowFormApi.d.ts +3 -3
- package/src/Api/StateApi.d.ts +1 -9
- package/src/agGrid/AdaptableAgGrid.d.ts +1 -0
- package/src/agGrid/AdaptableAgGrid.js +7 -1
- package/src/env.js +2 -2
- package/src/layout-manager/src/destructurePivotColumnId.js +13 -7
- package/src/layout-manager/src/index.js +14 -2
- package/src/metamodel/adaptable.metamodel.d.ts +27 -18
- 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
|
@@ -198,7 +198,7 @@ export type { Layout, LayoutState, LayoutArray, LayoutBase, TableLayout, PivotLa
|
|
|
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';
|
|
201
|
-
export type {
|
|
201
|
+
export type { InitialState } from './AdaptableState/InitialState';
|
|
202
202
|
export type { NamedQuery, NamedQueryState } from './AdaptableState/NamedQueryState';
|
|
203
203
|
export type { QuickSearchState } from './AdaptableState/QuickSearchState';
|
|
204
204
|
export type { ReminderSchedule, ScheduleState } from './AdaptableState/ScheduleState';
|