@adaptabletools/adaptable 12.1.3 → 12.1.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 (107) hide show
  1. package/bundle.cjs.js +116 -143
  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 +10 -4
  6. package/src/AdaptableOptions/FilterOptions.d.ts +7 -0
  7. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +31 -24
  8. package/src/Api/ColumnApi.d.ts +7 -1
  9. package/src/Api/Events/SearchChanged.d.ts +1 -0
  10. package/src/Api/FilterApi.d.ts +6 -0
  11. package/src/Api/FormatColumnApi.d.ts +5 -3
  12. package/src/Api/Implementation/ColumnApiImpl.d.ts +3 -1
  13. package/src/Api/Implementation/ColumnApiImpl.js +17 -2
  14. package/src/Api/Implementation/DataSetApiImpl.js +1 -1
  15. package/src/Api/Implementation/FilterApiImpl.d.ts +1 -0
  16. package/src/Api/Implementation/FilterApiImpl.js +10 -1
  17. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +5 -3
  18. package/src/Api/Implementation/FormatColumnApiImpl.js +40 -11
  19. package/src/Api/Implementation/GridApiImpl.js +4 -4
  20. package/src/Api/Implementation/LayoutApiImpl.d.ts +1 -1
  21. package/src/Api/Implementation/LayoutApiImpl.js +4 -3
  22. package/src/Api/Implementation/QueryApiImpl.js +1 -1
  23. package/src/Api/Implementation/TeamSharingApiImpl.js +1 -1
  24. package/src/Api/LayoutApi.d.ts +1 -1
  25. package/src/PredefinedConfig/AlertState.d.ts +2 -2
  26. package/src/PredefinedConfig/Common/AdaptableColumn.js +3 -2
  27. package/src/PredefinedConfig/Common/AdaptablePredicate.js +9 -1
  28. package/src/PredefinedConfig/Common/Types.d.ts +1 -0
  29. package/src/PredefinedConfig/Common/Types.js +38 -1
  30. package/src/PredefinedConfig/FlashingCellState.d.ts +1 -1
  31. package/src/PredefinedConfig/FormatColumnState.d.ts +2 -2
  32. package/src/Redux/Store/AdaptableStore.js +18 -10
  33. package/src/Strategy/AlertModule.js +1 -1
  34. package/src/Strategy/BulkUpdateModule.js +1 -1
  35. package/src/Strategy/CalculatedColumnModule.js +1 -1
  36. package/src/Strategy/CellSummaryModule.js +1 -1
  37. package/src/Strategy/ChartingModule.js +1 -1
  38. package/src/Strategy/ConditionalStyleModule.js +1 -1
  39. package/src/Strategy/CustomSortModule.js +1 -1
  40. package/src/Strategy/DashboardModule.js +1 -1
  41. package/src/Strategy/DataChangeHistoryModule.js +1 -1
  42. package/src/Strategy/DataSetModule.js +1 -1
  43. package/src/Strategy/ExportModule.js +1 -1
  44. package/src/Strategy/FilterModule.js +1 -1
  45. package/src/Strategy/FlashingCellModule.js +1 -1
  46. package/src/Strategy/FormatColumnModule.js +1 -1
  47. package/src/Strategy/FreeTextColumnModule.js +1 -1
  48. package/src/Strategy/GridInfoModule.js +1 -1
  49. package/src/Strategy/LayoutModule.js +3 -3
  50. package/src/Strategy/PlusMinusModule.js +1 -1
  51. package/src/Strategy/QueryModule.js +1 -1
  52. package/src/Strategy/QuickSearchModule.js +1 -1
  53. package/src/Strategy/ScheduleModule.js +1 -1
  54. package/src/Strategy/ShortcutModule.js +1 -1
  55. package/src/Strategy/SmartEditModule.js +1 -1
  56. package/src/Strategy/StateManagementModule.js +1 -1
  57. package/src/Strategy/StatusBarModule.js +1 -1
  58. package/src/Strategy/SystemStatusModule.js +1 -1
  59. package/src/Strategy/TeamSharingModule.js +1 -1
  60. package/src/Strategy/ThemeModule.js +1 -1
  61. package/src/Strategy/ToolPanelModule.js +1 -1
  62. package/src/Utilities/Constants/ModuleConstants.d.ts +68 -0
  63. package/src/Utilities/Constants/ModuleConstants.js +70 -1
  64. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +3 -1
  65. package/src/Utilities/Extensions/ArrayExtensions.js +6 -0
  66. package/src/Utilities/Services/Interface/IMetamodelService.d.ts +5 -0
  67. package/src/Utilities/Services/MetamodelService.d.ts +4 -4
  68. package/src/Utilities/Services/MetamodelService.js +19 -12
  69. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +193 -135
  70. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +23 -15
  71. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.js +3 -7
  72. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/EntitlementsForm.d.ts +2 -2
  73. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/EntitlementsForm.js +148 -8
  74. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/GridOptionsForm.js +0 -7
  75. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsActionColumnsForm.d.ts +6 -0
  76. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsActionColumnsForm.js +33 -0
  77. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsSidebarForm.d.ts +6 -0
  78. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsSidebarForm.js +82 -0
  79. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsStatusbarForm.d.ts +6 -0
  80. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsStatusbarForm.js +109 -0
  81. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UiOptionsForm.d.ts +8 -0
  82. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UiOptionsForm.js +16 -0
  83. package/src/View/AdaptableWizardView/Wizard.js +2 -1
  84. package/src/View/AdaptableWizardView/helper.d.ts +1 -1
  85. package/src/View/AdaptableWizardView/helper.js +3 -10
  86. package/src/View/Components/FilterForm/FilterForm.js +4 -2
  87. package/src/View/Components/FilterForm/QuickFilterForm.js +2 -1
  88. package/src/View/Components/RangesComponent.js +1 -1
  89. package/src/View/Layout/Wizard/sections/AggregationsSection.js +1 -1
  90. package/src/View/Layout/Wizard/sections/ColumnsSection.js +8 -4
  91. package/src/View/Layout/Wizard/sections/PivotColumnsSection.js +3 -2
  92. package/src/View/Layout/Wizard/sections/RowGroupingSection.js +1 -1
  93. package/src/View/Layout/Wizard/sections/SettingsSection.js +2 -2
  94. package/src/View/Layout/Wizard/sections/SortSection.js +1 -1
  95. package/src/agGrid/Adaptable.d.ts +2 -1
  96. package/src/agGrid/Adaptable.js +19 -12
  97. package/src/agGrid/PercentBarRenderer.d.ts +2 -1
  98. package/src/agGrid/PercentBarRenderer.js +3 -3
  99. package/src/agGrid/agGridHelper.d.ts +1 -1
  100. package/src/agGrid/agGridHelper.js +2 -2
  101. package/src/components/ProgressIndicator/ProgressIndicator.js +10 -12
  102. package/src/metamodel/adaptable.metamodel.d.ts +74 -6
  103. package/src/metamodel/adaptable.metamodel.js +1 -1
  104. package/src/parser/src/types.d.ts +1 -1
  105. package/src/types.d.ts +1 -1
  106. package/version.d.ts +1 -1
  107. package/version.js +1 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.