@adaptabletools/adaptable-cjs 22.0.0-canary.4 → 22.0.0-canary.6

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 (108) hide show
  1. package/index.css +46 -26
  2. package/index.css.map +1 -1
  3. package/package.json +1 -1
  4. package/src/AdaptableOptions/CustomSortOptions.d.ts +1 -2
  5. package/src/AdaptableState/AlertState.d.ts +6 -2
  6. package/src/AdaptableState/ChartingState.d.ts +5 -5
  7. package/src/AdaptableState/Common/AdaptableObject.d.ts +0 -9
  8. package/src/AdaptableState/Common/AdaptableStyle.d.ts +1 -1
  9. package/src/AdaptableState/Common/ColumnHighlightInfo.d.ts +18 -0
  10. package/src/AdaptableState/Common/Schedule.d.ts +6 -2
  11. package/src/AdaptableState/CustomSortState.d.ts +6 -2
  12. package/src/AdaptableState/DashboardState.d.ts +3 -3
  13. package/src/AdaptableState/ExportState.d.ts +3 -3
  14. package/src/AdaptableState/FlashingCellState.d.ts +6 -2
  15. package/src/AdaptableState/FormatColumnState.d.ts +6 -2
  16. package/src/AdaptableState/InternalState.d.ts +2 -0
  17. package/src/AdaptableState/LayoutState.d.ts +4 -4
  18. package/src/AdaptableState/NamedQueryState.d.ts +3 -3
  19. package/src/AdaptableState/PlusMinusState.d.ts +6 -2
  20. package/src/AdaptableState/ShortcutState.d.ts +6 -2
  21. package/src/AdaptableState/ThemeState.d.ts +3 -3
  22. package/src/Api/GridApi.d.ts +18 -3
  23. package/src/Api/Implementation/GridApiImpl.d.ts +4 -0
  24. package/src/Api/Implementation/GridApiImpl.js +14 -0
  25. package/src/Api/Implementation/LayoutHelpers.js +4 -4
  26. package/src/Redux/ActionsReducers/InternalRedux.d.ts +15 -0
  27. package/src/Redux/ActionsReducers/InternalRedux.js +42 -3
  28. package/src/Redux/Store/AdaptableStore.js +21 -0
  29. package/src/View/Alert/Utilities/getDefaultAlertDefinition.d.ts +2 -2
  30. package/src/View/Components/ColumnFilter/FloatingFilter.js +41 -3
  31. package/src/View/Components/ColumnFilter/components/ColumnFilterMenu.js +54 -2
  32. package/src/View/Components/StyleComponent.d.ts +1 -0
  33. package/src/View/Components/StyleComponent.js +84 -33
  34. package/src/View/GridFilter/GridFilterExpressionEditor.js +6 -1
  35. package/src/View/GridFilter/GridFilterViewPanel.js +33 -70
  36. package/src/View/Layout/Wizard/sections/PivotColumnsSection.js +2 -2
  37. package/src/agGrid/AdaptableAgGrid.js +9 -0
  38. package/src/agGrid/AgGridColumnAdapter.d.ts +1 -0
  39. package/src/agGrid/AgGridColumnAdapter.js +14 -3
  40. package/src/components/ColorPicker/ColorPicker.js +5 -4
  41. package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +1 -1
  42. package/src/components/Select/Select.js +77 -14
  43. package/src/env.js +2 -2
  44. package/src/layout-manager/src/LayoutManagerModel.d.ts +1 -1
  45. package/src/layout-manager/src/index.js +5 -5
  46. package/src/layout-manager/src/normalizeLayoutModel.js +2 -2
  47. package/src/metamodel/adaptable.metamodel.d.ts +25 -18
  48. package/src/metamodel/adaptable.metamodel.js +1 -1
  49. package/src/types.d.ts +2 -2
  50. package/tsconfig.cjs.tsbuildinfo +1 -1
  51. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.d.ts +0 -1
  52. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.js +0 -633
  53. package/src/View/Alert/AlertEntityRow.d.ts +0 -11
  54. package/src/View/Alert/AlertEntityRow.js +0 -33
  55. package/src/View/CalculatedColumn/CalculatedColumnSummary.d.ts +0 -21
  56. package/src/View/CalculatedColumn/CalculatedColumnSummary.js +0 -63
  57. package/src/View/Components/Buttons/ButtonFunction.d.ts +0 -7
  58. package/src/View/Components/Buttons/ButtonFunction.js +0 -13
  59. package/src/View/Components/Buttons/ButtonGeneral.d.ts +0 -5
  60. package/src/View/Components/Buttons/ButtonGeneral.js +0 -12
  61. package/src/View/Components/Buttons/ButtonPreviewDelete.d.ts +0 -4
  62. package/src/View/Components/Buttons/ButtonPreviewDelete.js +0 -8
  63. package/src/View/Components/Buttons/ButtonShow.d.ts +0 -5
  64. package/src/View/Components/Buttons/ButtonShow.js +0 -12
  65. package/src/View/Components/Buttons/ButtonShowChart.d.ts +0 -5
  66. package/src/View/Components/Buttons/ButtonShowChart.js +0 -12
  67. package/src/View/Components/Buttons/ButtonUndo.d.ts +0 -5
  68. package/src/View/Components/Buttons/ButtonUndo.js +0 -12
  69. package/src/View/Components/ExpressionWizard.d.ts +0 -24
  70. package/src/View/Components/ExpressionWizard.js +0 -82
  71. package/src/View/Components/FilterForm/Waiting.d.ts +0 -10
  72. package/src/View/Components/FilterForm/Waiting.js +0 -19
  73. package/src/View/Components/Panels/PanelFooter.d.ts +0 -10
  74. package/src/View/Components/Panels/PanelFooter.js +0 -14
  75. package/src/View/Components/Panels/PanelWithTwoButtons.d.ts +0 -12
  76. package/src/View/Components/Panels/PanelWithTwoButtons.js +0 -20
  77. package/src/View/Components/Panels/ToolPanelSettingsPanel.d.ts +0 -8
  78. package/src/View/Components/Panels/ToolPanelSettingsPanel.js +0 -31
  79. package/src/View/Components/Selectors/ColumnSelectorOld.d.ts +0 -18
  80. package/src/View/Components/Selectors/ColumnSelectorOld.js +0 -50
  81. package/src/View/Components/SharedProps/WizardScopeState.d.ts +0 -4
  82. package/src/View/Components/WizardSummaryRow.d.ts +0 -9
  83. package/src/View/Components/WizardSummaryRow.js +0 -16
  84. package/src/View/CustomSort/CustomSortSummary.d.ts +0 -23
  85. package/src/View/CustomSort/CustomSortSummary.js +0 -110
  86. package/src/View/DataImport/DataImportWizard/sections/ImportSection.d.ts +0 -9
  87. package/src/View/DataImport/DataImportWizard/sections/ImportSection.js +0 -24
  88. package/src/View/Export/Wizard/ReportColumnTypeWizard.d.ts +0 -19
  89. package/src/View/Export/Wizard/ReportColumnTypeWizard.js +0 -73
  90. package/src/View/Export/Wizard/ReportRowTypeWizard.d.ts +0 -19
  91. package/src/View/Export/Wizard/ReportRowTypeWizard.js +0 -73
  92. package/src/View/Export/Wizard/ReportSettingsWizard.d.ts +0 -21
  93. package/src/View/Export/Wizard/ReportSettingsWizard.js +0 -61
  94. package/src/View/Export/Wizard/ReportSummaryWizard.d.ts +0 -15
  95. package/src/View/Export/Wizard/ReportSummaryWizard.js +0 -40
  96. package/src/View/Filter/FilterSummary.d.ts +0 -18
  97. package/src/View/Filter/FilterSummary.js +0 -53
  98. package/src/View/FormatColumn/FormatColumnSummary.d.ts +0 -22
  99. package/src/View/FormatColumn/FormatColumnSummary.js +0 -95
  100. package/src/View/FreeTextColumn/FreeTextColumnSummary.d.ts +0 -22
  101. package/src/View/FreeTextColumn/FreeTextColumnSummary.js +0 -93
  102. package/src/View/GridInfo/GridInfoPopup/AdaptableOptionsComponent.d.ts +0 -7
  103. package/src/View/GridInfo/GridInfoPopup/AdaptableOptionsComponent.js +0 -99
  104. package/src/View/PlusMinus/PlusMinusSummary.d.ts +0 -22
  105. package/src/View/PlusMinus/PlusMinusSummary.js +0 -100
  106. package/src/View/Wizard/WizardLegend.d.ts +0 -12
  107. package/src/View/Wizard/WizardLegend.js +0 -28
  108. /package/src/{View/Components/SharedProps/WizardScopeState.js → AdaptableState/Common/ColumnHighlightInfo.js} +0 -0
package/src/types.d.ts CHANGED
@@ -141,7 +141,7 @@ export type { ScheduleTriggeredInfo } from './Api/Events/ScheduleTriggered';
141
141
  export type { AdaptableStateChangedInfo } from './Api/Events/AdaptableStateChanged';
142
142
  export type { CommentChangedInfo } from './Api/Events/CommentChanged';
143
143
  export type { Fdc3MessageInfo, Fdc3MessageSentInfo, Fdc3MessageReceivedInfo, } from './Api/Events/Fdc3MessageInfo';
144
- export type { AdaptableState, AdaptablePersistentState } from './AdaptableState/AdaptableState';
144
+ export type { AdaptableState, AdaptablePersistentState, AdaptableTransientState, } from './AdaptableState/AdaptableState';
145
145
  export type { AlertDefinition, AlertProperties, AlertState, AlertButtonForm, AlertButton, AdaptableAlertCommand, AlertDefinitionPredicate, AlertRule, AdaptableAlertQuery, SystemAlertPredicateId, SystemAlertPredicateIds, } from './AdaptableState/AlertState';
146
146
  export type { ApplicationDataEntry, ApplicationState } from './AdaptableState/ApplicationState';
147
147
  export type { SpecialColumnSettings } from './AdaptableState/Common/SpecialColumnSettings';
@@ -157,7 +157,7 @@ export type { SystemStatusMessageInfo } from './AdaptableState/Common/SystemStat
157
157
  export type { AlternativeModuleName } from './AdaptableState/Common/AlternativeModuleName';
158
158
  export type { AdaptableFormat, DateFormatterOptions, NumberFormatterOptions, StringFormatterOptions, } from './AdaptableState/Common/AdaptableFormat';
159
159
  export type { AdaptableMessageType } from './AdaptableState/Common/AdaptableMessageType';
160
- export type { Identifiable, AdaptableObject, AdaptableObjectTag, AdaptableObjectLookupCriteria, AdaptableVersion, SuspendableObject, NamedObject, } from './AdaptableState/Common/AdaptableObject';
160
+ export type { Identifiable, AdaptableObject, AdaptableObjectTag, AdaptableObjectLookupCriteria, AdaptableVersion, SuspendableObject, } from './AdaptableState/Common/AdaptableObject';
161
161
  export type { AdaptableQuery, AdaptableAggregatedBooleanQuery, AdaptableAggregatedScalarQuery, AdaptableBooleanQuery, AdaptableObservableQuery, AdaptableScalarQuery, } from './AdaptableState/Common/AdaptableQuery';
162
162
  export type { AdaptablePredicate, AdaptableColumnPredicate, AdaptablePredicateDef, PredicateModuleScope, PredicateDefHandlerContext, PredicateDefInput, PredicateDefToStringParams, ColumnFilterDef, } from './AdaptableState/Common/AdaptablePredicate';
163
163
  export type { ColumnScope } from './AdaptableState/Common/ColumnScope';