@adaptabletools/adaptable 20.2.0 → 20.2.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.
Files changed (47) hide show
  1. package/base.css +7 -7
  2. package/base.css.map +1 -1
  3. package/index.css +7 -7
  4. package/index.css.map +1 -1
  5. package/package.json +1 -1
  6. package/src/AdaptableOptions/QuickSearchOptions.d.ts +1 -1
  7. package/src/AdaptableOptions/StateOptions.d.ts +60 -15
  8. package/src/AdaptableState/FormatColumnState.d.ts +11 -6
  9. package/src/AdaptableState/QuickSearchState.d.ts +3 -3
  10. package/src/Api/Implementation/ColumnApiImpl.js +3 -2
  11. package/src/Api/Implementation/StateApiImpl.d.ts +1 -0
  12. package/src/Api/Implementation/StateApiImpl.js +6 -5
  13. package/src/Api/Internal/ColumnInternalApi.d.ts +1 -0
  14. package/src/Api/Internal/ColumnInternalApi.js +5 -0
  15. package/src/Api/Internal/FormatColumnInternalApi.js +5 -5
  16. package/src/Api/StateApi.d.ts +9 -0
  17. package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +14 -18
  18. package/src/Redux/Store/AdaptableStore.d.ts +2 -0
  19. package/src/Redux/Store/AdaptableStore.js +12 -4
  20. package/src/Redux/Store/Interface/IAdaptableStore.d.ts +1 -0
  21. package/src/Redux/Store/Interface/IStorageEngine.d.ts +4 -4
  22. package/src/Redux/Store/buildAdaptableStateFunctionConfig.d.ts +3 -0
  23. package/src/Redux/Store/buildAdaptableStateFunctionConfig.js +9 -0
  24. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +1 -1
  25. package/src/Utilities/Helpers/StyleHelper.d.ts +1 -1
  26. package/src/Utilities/Helpers/StyleHelper.js +11 -0
  27. package/src/Utilities/Services/LicenseService/index.js +1 -1
  28. package/src/Utilities/license/decode.js +1 -1
  29. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +1 -3
  30. package/src/View/Components/EntityRulesEditor/index.js +3 -3
  31. package/src/View/Components/ExpressionWizard.js +1 -1
  32. package/src/View/Export/Wizard/ReportRowsWizardSection.js +1 -1
  33. package/src/View/GridFilter/GridFilterExpressionEditor.js +1 -1
  34. package/src/View/Layout/Wizard/sections/GridFilterSection.js +1 -1
  35. package/src/View/Layout/Wizard/sections/RowGroupingSection.js +2 -2
  36. package/src/View/License/LicenseWatermark.js +1 -1
  37. package/src/View/NamedQuery/Wizard/NamedQueryExpressionWizardSection.js +1 -1
  38. package/src/View/QuickSearch/QuickSearchInput.js +3 -2
  39. package/src/agGrid/AdaptableAgGrid.js +2 -2
  40. package/src/agGrid/AgGridColumnAdapter.d.ts +1 -0
  41. package/src/agGrid/AgGridColumnAdapter.js +29 -9
  42. package/src/agGrid/AgGridExportAdapter.js +22 -10
  43. package/src/env.js +2 -2
  44. package/src/metamodel/adaptable.metamodel.d.ts +33 -16
  45. package/src/metamodel/adaptable.metamodel.js +1 -1
  46. package/src/types.d.ts +1 -1
  47. package/tsconfig.esm.tsbuildinfo +1 -1
package/src/types.d.ts CHANGED
@@ -189,7 +189,7 @@ export type { DashboardState, DashboardTab, AdaptableCoordinate, } from './Adapt
189
189
  export type { ExportState, Report, ReportData, ReportColumn, ReportSchedule, SystemReportName, SystemReportNames, SystemReportFormat, ReportRowScope, ReportColumnScope, ReportNameType, ReportFormatType, } from './AdaptableState/ExportState';
190
190
  export type { ColumnFilter, ColumnFilterPredicate, SystemFilterPredicateIds, SystemFilterPredicateId, PredicatesOperator, } from './AdaptableState/Common/ColumnFilter';
191
191
  export type { GridFilter } from './AdaptableState/Common/GridFilter';
192
- export type { FormatColumn, FormatColumnState, FormatColumnRule, FormatColumnPredicate, SystemFormatColumnPredicateId, SystemFormatColumnPredicateIds, } from './AdaptableState/FormatColumnState';
192
+ export type { FormatColumn, FormatColumnState, FormatColumnRule, FormatColumnPredicate, SystemFormatColumnPredicateId, SystemFormatColumnPredicateIds, CellAlignment, ColumnGroupScope, } from './AdaptableState/FormatColumnState';
193
193
  export type { StyledColumn, StyledColumnState, PercentBarStyle, GradientStyle, CellColorRange, ColumnComparison, CellTextOptions, CellTextOption, NumericStyledColumn, RangeValueType, SparklineStyle, BadgeStyle, BadgeStyleDefinition, BadgeStylePredicate, SystemBadgeStylePredicateId, SystemBadgeStylePredicateIds, } from './AdaptableState/StyledColumnState';
194
194
  export type { FreeTextColumn, FreeTextColumnState, FreeTextStoredValue, FreeTextColumnSettings, } from './AdaptableState/FreeTextColumnState';
195
195
  export type { StatusBarState, AdaptableStatusBar } from './AdaptableState/StatusBarState';