@adaptabletools/adaptable 20.2.7 → 20.2.9
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/base.css +55 -62
- package/base.css.map +1 -1
- package/index.css +55 -57
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/src/AdaptableState/LayoutState.d.ts +4 -4
- package/src/Api/Events/LayoutChanged.d.ts +5 -1
- package/src/Api/Implementation/ColumnApiImpl.js +6 -1
- package/src/Api/Implementation/LayoutApiImpl.d.ts +1 -5
- package/src/Api/Implementation/LayoutApiImpl.js +38 -39
- package/src/Api/Implementation/LayoutHelpers.js +0 -2
- package/src/Api/Internal/EventInternalApi.d.ts +2 -1
- package/src/Api/LayoutApi.d.ts +8 -29
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +1 -16
- package/src/Redux/ActionsReducers/LayoutRedux.js +1 -75
- package/src/Redux/Store/AdaptableStore.js +1 -3
- package/src/Strategy/LayoutModule.d.ts +1 -0
- package/src/Strategy/LayoutModule.js +10 -3
- package/src/View/Components/ColumnFilter/components/FloatingFilterValues.js +38 -1
- package/src/View/Layout/Wizard/sections/ColumnsSection.js +3 -1
- package/src/agGrid/AdaptableAgGrid.js +5 -1
- package/src/components/ColorPicker/ColorPicker.js +15 -2
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +2 -2
- 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
|
@@ -121,7 +121,7 @@ export type { SystemStatusMessageDisplayedInfo } from './Api/Events/SystemStatus
|
|
|
121
121
|
export type { CellChangedInfo } from './Api/Events/CellChanged';
|
|
122
122
|
export type { TeamSharingEntityChangedInfo } from './Api/Events/TeamSharingEntityChanged';
|
|
123
123
|
export type { RowChangedInfo } from './Api/Events/RowChanged';
|
|
124
|
-
export type { LayoutChangedInfo } from './Api/Events/LayoutChanged';
|
|
124
|
+
export type { LayoutChangedInfo, LayoutChangedAction } from './Api/Events/LayoutChanged';
|
|
125
125
|
export type { CalculatedColumnChangedInfo } from './Api/Events/CalculatedColumnChanged';
|
|
126
126
|
export type { CustomToolbarConfiguredInfo } from './Api/Events/CustomToolbarConfigured';
|
|
127
127
|
export type { LiveDataChangedInfo, LiveReport } from './Api/Events/LiveDataChanged';
|