@adaptabletools/adaptable 12.0.1 → 12.0.4

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 (91) hide show
  1. package/bundle.cjs.js +96 -96
  2. package/package.json +1 -1
  3. package/publishTimestamp.d.ts +1 -1
  4. package/publishTimestamp.js +1 -1
  5. package/src/AdaptableInterfaces/IAdaptable.d.ts +4 -2
  6. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +1 -1
  7. package/src/AdaptableOptions/EditOptions.d.ts +6 -9
  8. package/src/AdaptableOptions/ExportOptions.d.ts +15 -0
  9. package/src/AdaptableOptions/Glue42PluginOptions.d.ts +1 -1
  10. package/src/AdaptableOptions/IPushPullPluginOptions.d.ts +1 -3
  11. package/src/AdaptableOptions/StateOptions.d.ts +9 -23
  12. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +34 -1
  13. package/src/Api/ChartingApi.d.ts +19 -2
  14. package/src/Api/Events/SearchChanged.d.ts +1 -1
  15. package/src/Api/FinanceApi.d.ts +8 -8
  16. package/src/Api/FormatColumnApi.d.ts +11 -6
  17. package/src/Api/GridApi.d.ts +1 -1
  18. package/src/Api/Implementation/ChartingApiImpl.d.ts +6 -0
  19. package/src/Api/Implementation/ChartingApiImpl.js +17 -0
  20. package/src/Api/Implementation/ConfigApiImpl.d.ts +2 -0
  21. package/src/Api/Implementation/ConfigApiImpl.js +11 -0
  22. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +4 -3
  23. package/src/Api/Implementation/FormatColumnApiImpl.js +36 -12
  24. package/src/Api/Implementation/GridApiImpl.d.ts +1 -1
  25. package/src/Api/Implementation/GridApiImpl.js +2 -2
  26. package/src/Api/Implementation/InternalApiImpl.js +1 -2
  27. package/src/Api/Implementation/LayoutApiImpl.d.ts +1 -0
  28. package/src/Api/Implementation/LayoutApiImpl.js +7 -1
  29. package/src/Api/LayoutApi.d.ts +5 -0
  30. package/src/Api/StatusBarApi.d.ts +3 -0
  31. package/src/PredefinedConfig/AdaptableState.d.ts +2 -0
  32. package/src/PredefinedConfig/CalculatedColumnState.d.ts +0 -5
  33. package/src/PredefinedConfig/ChartingState.d.ts +20 -0
  34. package/src/PredefinedConfig/ChartingState.js +2 -0
  35. package/src/PredefinedConfig/Common/CellSummary.d.ts +3 -0
  36. package/src/PredefinedConfig/Common/ColumnFilter.d.ts +9 -0
  37. package/src/PredefinedConfig/Common/FDC3Context.d.ts +12 -3
  38. package/src/PredefinedConfig/Common/FilterActionOnDataChange.d.ts +1 -2
  39. package/src/PredefinedConfig/Common/FilterActionOnDataChange.js +1 -2
  40. package/src/PredefinedConfig/Common/Types.d.ts +1 -1
  41. package/src/PredefinedConfig/ExportState.d.ts +6 -0
  42. package/src/PredefinedConfig/FormatColumnState.d.ts +4 -1
  43. package/src/PredefinedConfig/IPushPullState.d.ts +16 -5
  44. package/src/PredefinedConfig/LayoutState.d.ts +1 -1
  45. package/src/PredefinedConfig/PredefinedConfig.d.ts +5 -0
  46. package/src/PredefinedConfig/ScheduleState.d.ts +1 -1
  47. package/src/PredefinedConfig/ShortcutState.d.ts +1 -1
  48. package/src/PredefinedConfig/TeamSharingState.d.ts +6 -0
  49. package/src/Redux/ActionsReducers/ChartingRedux.d.ts +23 -0
  50. package/src/Redux/ActionsReducers/ChartingRedux.js +38 -0
  51. package/src/Redux/ActionsReducers/GridRedux.d.ts +30 -1
  52. package/src/Redux/ActionsReducers/GridRedux.js +105 -2
  53. package/src/Redux/ActionsReducers/LayoutRedux.d.ts +10 -11
  54. package/src/Redux/ActionsReducers/LayoutRedux.js +10 -10
  55. package/src/Redux/Store/AdaptableStore.js +45 -8
  56. package/src/Strategy/AlertModule.js +3 -3
  57. package/src/Strategy/ChartingModule.js +1 -1
  58. package/src/Strategy/FlashingCellModule.js +3 -3
  59. package/src/Strategy/FormatColumnModule.js +1 -1
  60. package/src/Strategy/LayoutModule.js +2 -1
  61. package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
  62. package/src/Utilities/Constants/GeneralConstants.js +3 -2
  63. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +3 -0
  64. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +3 -0
  65. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.d.ts +3 -0
  66. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +23 -1
  67. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +3 -0
  68. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +3 -0
  69. package/src/Utilities/Helpers/FormatHelper.d.ts +1 -1
  70. package/src/Utilities/Helpers/FormatHelper.js +9 -4
  71. package/src/Utilities/Helpers/Helper.js +1 -1
  72. package/src/Utilities/ObjectFactory.d.ts +5 -1
  73. package/src/Utilities/ObjectFactory.js +12 -2
  74. package/src/Utilities/Services/Interface/IReportService.d.ts +1 -1
  75. package/src/Utilities/Services/ReportService.d.ts +1 -1
  76. package/src/Utilities/Services/ReportService.js +5 -5
  77. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +2 -9
  78. package/src/View/Filter/FilterSummary.d.ts +1 -1
  79. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.d.ts +1 -2
  80. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +38 -31
  81. package/src/View/Layout/LayoutViewPanel.d.ts +2 -2
  82. package/src/View/Layout/LayoutViewPanel.js +5 -5
  83. package/src/View/Layout/SaveLayoutButton.d.ts +2 -0
  84. package/src/View/Layout/SaveLayoutButton.js +30 -0
  85. package/src/agGrid/Adaptable.d.ts +4 -2
  86. package/src/agGrid/Adaptable.js +36 -20
  87. package/src/metamodel/adaptable.metamodel.d.ts +219 -2
  88. package/src/metamodel/adaptable.metamodel.js +1 -1
  89. package/src/types.d.ts +4 -2
  90. package/version.d.ts +1 -1
  91. package/version.js +1 -1
package/src/types.d.ts CHANGED
@@ -32,7 +32,7 @@ export type { FilterActionOnDataChange } from './PredefinedConfig/Common/FilterA
32
32
  export type { ConfigState } from './PredefinedConfig/ConfigState';
33
33
  export type { TeamSharingOptions } from './AdaptableOptions/TeamSharingOptions';
34
34
  export type { ToolPanelOptions, CustomToolPanel, ToolPanelButtonContext, CustomToolPanelButtonContext, } from './AdaptableOptions/ToolPanelOptions';
35
- export type { UserInterfaceOptions, CellValuesList, BasePermittedValues, PermittedValues, EditLookUpPermittedValues, FilterPermittedValues, CustomSortPermittedValues, BulkUpdatePermittedValues, EditLookUpContext, PermittedValuesContext, FilterPermittedValuesContext, BulkUpdatePermittedValuesContext, GridInfoSections, GridInfoSection, ObjectTagsContext, CustomDisplayFormatter, } from './AdaptableOptions/UserInterfaceOptions';
35
+ export type { UserInterfaceOptions, CellValuesList, BasePermittedValues, PermittedValues, EditLookUpPermittedValues, FilterPermittedValues, CustomSortPermittedValues, BulkUpdatePermittedValues, EditLookUpContext, PermittedValuesContext, FilterPermittedValuesContext, BulkUpdatePermittedValuesContext, GridInfoSections, GridInfoSection, ObjectTagsContext, CustomDisplayFormatter, CustomDisplayFormatterContext, } from './AdaptableOptions/UserInterfaceOptions';
36
36
  export type { MenuOptions } from './AdaptableOptions/MenuOptions';
37
37
  export type { CustomSettingsPanel, SettingsPanelOptions, } from './AdaptableOptions/SettingsPanelOptions';
38
38
  export type { EntitlementOptions, EntitlementContext } from './AdaptableOptions/EntitlementOptions';
@@ -47,6 +47,7 @@ export type { CalculatedColumnApi } from './Api/CalculatedColumnApi';
47
47
  export type { CellSummaryApi } from './Api/CellSummaryApi';
48
48
  export type { ColumnApi } from './Api/ColumnApi';
49
49
  export type { ActionApi } from './Api/ActionApi';
50
+ export type { ChartingApi } from './Api/ChartingApi';
50
51
  export type { ConditionalStyleApi } from './Api/ConditionalStyleApi';
51
52
  export type { ConfigApi } from './Api/ConfigApi';
52
53
  export type { CustomSortApi } from './Api/CustomSortApi';
@@ -119,7 +120,7 @@ export type { AdaptableObject, AdaptableObjectTag, } from './PredefinedConfig/Co
119
120
  export type { SuspendableObject } from './PredefinedConfig/Common/SuspendableObject';
120
121
  export type { AdaptableQuery, AdaptableAggregatedBooleanQuery, AdaptableAggregatedScalarQuery, AdaptableBooleanQuery, AdaptableObservableQuery, AdaptableScalarQuery, } from './PredefinedConfig/Common/AdaptableQuery';
121
122
  export type { AdaptablePredicate, AdaptablePredicateDef, ModuleScope, PredicateDefHandlerParams, PredicateDefInput, PredicateDefToStringParams, } from './PredefinedConfig/Common/AdaptablePredicate';
122
- export type { FDC3Context, InstrumentContext, InstrumentListContext, PositionContext, PortfolioContext, ContactContext, ContactListContext, CountryContext, OrganizationContext, AdaptableFDC3EventInfo, ContextType, CustomFDC3Context, } from './PredefinedConfig/Common/FDC3Context';
123
+ export type { FDC3Context, InstrumentContext, InstrumentListContext, PositionContext, PortfolioContext, ContactContext, ContactListContext, CountryContext, OrganizationContext, AdaptableFDC3EventInfo, FDC3ContextType, CustomFDC3Context, } from './PredefinedConfig/Common/FDC3Context';
123
124
  export type { AdaptableScope } from './PredefinedConfig/Common/AdaptableScope';
124
125
  export type { AdaptableStyle } from './PredefinedConfig/Common/AdaptableStyle';
125
126
  export type { AdaptableBaseIcon, AdaptableIcon, AdaptableInternalIcon, AdaptableExternalIcon, AdaptableInternalIconName, AdaptableElementIcon, } from './PredefinedConfig/Common/AdaptableIcon';
@@ -139,6 +140,7 @@ export type { Schedule } from './PredefinedConfig/Common/Schedule';
139
140
  export type { ButtonStyle } from './PredefinedConfig/Common/ButtonStyle';
140
141
  export type { AdaptableModule, AdaptableToolPanel, AdaptableQLModule, AdaptableSettingsPanel, AdaptableDashboardToolbar, AdaptableStatusBarPanel, AdaptableColumnType, } from './PredefinedConfig/Common/Types';
141
142
  export type { ConditionalStyle, ConditionalStyleRule, ConditionalStyleState, } from './PredefinedConfig/ConditionalStyleState';
143
+ export type { ChartDefinition, ChartingState } from './PredefinedConfig/ChartingState';
142
144
  export type { CustomSort, CustomSortState } from './PredefinedConfig/CustomSortState';
143
145
  export type { DashboardState, DashboardTab, AdaptableCoordinate, } from './PredefinedConfig/DashboardState';
144
146
  export type { ExportState, Report, ReportData, ReportSchedule, SystemReportName, SystemReportNames, } from './PredefinedConfig/ExportState';
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "12.0.1";
1
+ declare const _default: "12.0.4";
2
2
  export default _default;
package/version.js CHANGED
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = '12.0.1'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
3
+ exports.default = '12.0.4'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version