@adaptabletools/adaptable-cjs 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 +2 -79
- 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.cjs.tsbuildinfo +1 -1
|
@@ -5644,13 +5644,13 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5644
5644
|
kind: string;
|
|
5645
5645
|
desc: string;
|
|
5646
5646
|
isOpt: boolean;
|
|
5647
|
-
ref
|
|
5647
|
+
ref: string;
|
|
5648
5648
|
} | {
|
|
5649
5649
|
name: string;
|
|
5650
5650
|
kind: string;
|
|
5651
5651
|
desc: string;
|
|
5652
5652
|
isOpt: boolean;
|
|
5653
|
-
ref
|
|
5653
|
+
ref?: undefined;
|
|
5654
5654
|
} | {
|
|
5655
5655
|
name: string;
|
|
5656
5656
|
kind: string;
|