@adaptabletools/adaptable 20.2.11 → 20.3.0-canary.0

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 (74) hide show
  1. package/agGrid.d.ts +4 -0
  2. package/agGrid.js +5 -1
  3. package/base.css +6 -6
  4. package/base.css.map +1 -1
  5. package/index.css +6 -6
  6. package/index.css.map +1 -1
  7. package/package.json +1 -1
  8. package/src/AdaptableInterfaces/IAdaptable.d.ts +1 -0
  9. package/src/AdaptableOptions/ColumnOptions.d.ts +3 -2
  10. package/src/AdaptableOptions/DefaultAdaptableOptions.js +1 -0
  11. package/src/AdaptableOptions/PredicateOptions.d.ts +2 -1
  12. package/src/AdaptableState/Common/AdaptableColumn.d.ts +3 -2
  13. package/src/AdaptableState/Common/AdaptableColumn.js +1 -0
  14. package/src/AdaptableState/Common/AdaptableFormat.d.ts +4 -0
  15. package/src/AdaptableState/Common/AdaptablePredicate.d.ts +4 -0
  16. package/src/AdaptableState/Common/AdaptablePredicate.js +17 -2
  17. package/src/AdaptableState/Common/ColumnScope.d.ts +1 -1
  18. package/src/AdaptableState/Common/CustomWindowConfig.d.ts +40 -0
  19. package/src/AdaptableState/Common/ProgressIndicatorConfig.d.ts +8 -1
  20. package/src/AdaptableState/Common/RowScope.d.ts +4 -0
  21. package/src/AdaptableState/FormatColumnState.d.ts +10 -0
  22. package/src/AdaptableState/StyledColumnState.d.ts +4 -0
  23. package/src/Api/ColumnApi.d.ts +6 -0
  24. package/src/Api/GridApi.d.ts +8 -3
  25. package/src/Api/Implementation/ColumnApiImpl.d.ts +2 -1
  26. package/src/Api/Implementation/ColumnApiImpl.js +14 -0
  27. package/src/Api/Implementation/GridApiImpl.d.ts +1 -0
  28. package/src/Api/Implementation/GridApiImpl.js +3 -0
  29. package/src/Api/Implementation/PredicateApiImpl.d.ts +1 -1
  30. package/src/Api/Implementation/PredicateApiImpl.js +25 -1
  31. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +3 -1
  32. package/src/Api/Implementation/UserInterfaceApiImpl.js +6 -0
  33. package/src/Api/Internal/ColumnInternalApi.d.ts +1 -0
  34. package/src/Api/Internal/ColumnInternalApi.js +3 -0
  35. package/src/Api/Internal/FormatColumnInternalApi.d.ts +13 -4
  36. package/src/Api/Internal/FormatColumnInternalApi.js +33 -6
  37. package/src/Api/UserInterfaceApi.d.ts +16 -4
  38. package/src/Redux/ActionsReducers/PopupRedux.js +1 -0
  39. package/src/Strategy/StyledColumnModule.js +8 -3
  40. package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.js +6 -0
  41. package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
  42. package/src/Utilities/Constants/GeneralConstants.js +1 -0
  43. package/src/Utilities/Helpers/FormatHelper.js +3 -0
  44. package/src/Utilities/getScopeViewItems.js +1 -1
  45. package/src/View/Components/ColumnFilter/utils.js +9 -4
  46. package/src/View/Components/Popups/AdaptablePopupConfirmation.js +3 -4
  47. package/src/View/Components/Popups/AdaptablePopupPrompt.js +3 -4
  48. package/src/View/Components/Popups/WindowPopups/WindowPopups.js +1 -5
  49. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +1 -0
  50. package/src/View/Export/Wizard/ReportColumnsWizardSection.js +1 -1
  51. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +16 -1
  52. package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +67 -23
  53. package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +34 -2
  54. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +1 -1
  55. package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.js +18 -21
  56. package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +1 -1
  57. package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.js +22 -2
  58. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBadgePreview.js +6 -13
  59. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBadgeSettings.d.ts +5 -0
  60. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBadgeSettings.js +29 -0
  61. package/src/agGrid/AdaptableAgGrid.d.ts +1 -0
  62. package/src/agGrid/AdaptableAgGrid.js +28 -2
  63. package/src/agGrid/AgGridAdapter.js +3 -7
  64. package/src/agGrid/AgGridColumnAdapter.d.ts +4 -1
  65. package/src/agGrid/AgGridColumnAdapter.js +109 -10
  66. package/src/agGrid/cellRenderers/ActionColumnRenderer.js +14 -2
  67. package/src/agGrid/cellRenderers/BadgeRenderer.js +27 -13
  68. package/src/components/ProgressIndicator/ProgressIndicator.js +18 -4
  69. package/src/env.js +2 -2
  70. package/src/layout-manager/src/index.js +2 -2
  71. package/src/metamodel/adaptable.metamodel.d.ts +43 -0
  72. package/src/metamodel/adaptable.metamodel.js +1 -1
  73. package/src/types.d.ts +2 -2
  74. 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, CellAlignment, ColumnGroupScope, } from './AdaptableState/FormatColumnState';
192
+ export type { FormatColumn, FormatColumnState, FormatColumnRule, FormatColumnPredicate, SystemFormatColumnPredicateId, SystemFormatColumnPredicateIds, CellAlignment, ColumnGroupScope, FormatColumnTarget, } 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';
@@ -216,5 +216,5 @@ export type { Fdc3Options, GridDataContextMapping, ActionColumnDefaultConfigurat
216
216
  export type { CommentState, CommentThread, AdaptableComment } from './AdaptableState/CommentState';
217
217
  export type { UpgradeConfig } from '../agGrid';
218
218
  export type { ProgressIndicatorConfig } from './AdaptableState/Common/ProgressIndicatorConfig';
219
- export type { CustomWindowConfig } from './AdaptableState/Common/CustomWindowConfig';
219
+ export type { CustomWindowConfig, WindowPosition, WindowSize, } from './AdaptableState/Common/CustomWindowConfig';
220
220
  export type { TransposeConfig } from './AdaptableState/Common/TransposeConfig';