@adaptabletools/adaptable 13.0.0-canary.1 → 13.0.0-canary.3

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 (124) hide show
  1. package/agGrid.d.ts +23 -1
  2. package/agGrid.js +23 -1
  3. package/base.css +1 -0
  4. package/bundle.cjs.js +158 -158
  5. package/index.css +1 -0
  6. package/package.json +3 -3
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableInterfaces/IAdaptable.d.ts +3 -0
  10. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +42 -14
  11. package/src/Api/ConditionalStyleApi.d.ts +20 -0
  12. package/src/Api/FormatColumnApi.d.ts +42 -3
  13. package/src/Api/Implementation/DashboardApiImpl.js +2 -3
  14. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +17 -1
  15. package/src/Api/Implementation/FormatColumnApiImpl.js +94 -14
  16. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +0 -2
  17. package/src/Api/Implementation/QueryLanguageApiImpl.js +0 -3
  18. package/src/Api/QueryLanguageApi.d.ts +0 -5
  19. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +1 -1
  20. package/src/PredefinedConfig/Common/AdaptablePredicate.js +37 -37
  21. package/src/PredefinedConfig/FormatColumnState.d.ts +19 -0
  22. package/src/PredefinedConfig/PredefinedConfig.d.ts +1 -0
  23. package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +14 -0
  24. package/src/Redux/ActionsReducers/FormatColumnRedux.js +43 -1
  25. package/src/Redux/Store/AdaptableStore.js +2 -0
  26. package/src/Strategy/FormatColumnModule.d.ts +2 -9
  27. package/src/Strategy/FormatColumnModule.js +5 -1
  28. package/src/Strategy/Interface/IModule.d.ts +10 -10
  29. package/src/Strategy/Utilities/Alert/getAlertBehaviourViewItems.d.ts +2 -2
  30. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +5 -5
  31. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +3 -2
  32. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +4 -1
  33. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +1 -0
  34. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +4 -1
  35. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.d.ts +1 -0
  36. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +4 -1
  37. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +1 -0
  38. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +4 -1
  39. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -0
  40. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +4 -1
  41. package/src/Utilities/Extensions/TypeExtensions.d.ts +1 -0
  42. package/src/Utilities/Extensions/TypeExtensions.js +5 -0
  43. package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +14 -4
  44. package/src/Utilities/Services/LicenseService.js +1 -1
  45. package/src/Utilities/Services/QueryLanguageService.d.ts +5 -3
  46. package/src/Utilities/Services/QueryLanguageService.js +92 -39
  47. package/src/Utilities/license/LicenseDetails.d.ts +1 -1
  48. package/src/Utilities/license/decode.d.ts +1 -0
  49. package/src/Utilities/license/decode.js +1 -1
  50. package/src/View/AdaptablePopover/index.d.ts +2 -2
  51. package/src/View/AdaptableView.d.ts +3 -3
  52. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/Components/FormBox.d.ts +1 -1
  53. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.d.ts +1 -1
  54. package/src/View/AdaptableWizardView/index.d.ts +1 -1
  55. package/src/View/ColorPicker.d.ts +1 -5
  56. package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
  57. package/src/View/Components/Buttons/ButtonEdit.d.ts +1 -1
  58. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.d.ts +1 -1
  59. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.d.ts +2 -2
  60. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.d.ts +1 -1
  61. package/src/View/Components/Popups/AdaptablePopup/Navigation.d.ts +1 -1
  62. package/src/View/Components/Popups/AdaptablePopup/PopupPanel.d.ts +1 -1
  63. package/src/View/Components/Popups/AdaptablePopup/TopBar.d.ts +1 -1
  64. package/src/View/Components/Popups/AdaptablePopupPrompt.d.ts +1 -1
  65. package/src/View/FormatColumn/MoveFormatColumn.d.ts +7 -0
  66. package/src/View/FormatColumn/MoveFormatColumn.js +27 -0
  67. package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.d.ts +9 -0
  68. package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +66 -0
  69. package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +20 -2
  70. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +2 -1
  71. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +14 -0
  72. package/src/View/FormatColumn/Wizard/constants.d.ts +1 -0
  73. package/src/View/FormatColumn/Wizard/constants.js +4 -0
  74. package/src/View/Layout/Wizard/sections/AggregationsSection.js +1 -1
  75. package/src/View/Layout/Wizard/sections/SettingsSection.d.ts +2 -2
  76. package/src/View/License/LicenseWatermark.d.ts +1 -1
  77. package/src/View/StateManagement/components/ClearButton.d.ts +1 -1
  78. package/src/View/StateManagement/components/LoadButton.d.ts +1 -1
  79. package/src/View/StatusBar/StatusBarPanel.d.ts +4 -4
  80. package/src/View/Wizard/OnePageAdaptableWizard.d.ts +3 -3
  81. package/src/View/Wizard/OnePageAdaptableWizard.js +2 -2
  82. package/src/View/Wizard/OnePageWizards.d.ts +3 -3
  83. package/src/View/Wizard/OnePageWizards.js +2 -2
  84. package/src/agGrid/Adaptable.d.ts +11 -0
  85. package/src/agGrid/Adaptable.js +134 -66
  86. package/src/agGrid/FilterWrapper.js +4 -5
  87. package/src/agGrid/FloatingFilterWrapper.js +3 -4
  88. package/src/agGrid/createAgStatusPanelComponent.d.ts +1 -0
  89. package/src/agGrid/createAgStatusPanelComponent.js +3 -3
  90. package/src/components/CheckBox/index.d.ts +1 -1
  91. package/src/components/Datepicker/index.d.ts +1 -1
  92. package/src/components/Dialog/index.d.ts +4 -2
  93. package/src/components/Dialog/index.js +2 -2
  94. package/src/components/DropdownButton/index.d.ts +21 -4
  95. package/src/components/DropdownButton/index.js +5 -6
  96. package/src/components/ExpressionEditor/BaseEditorInput.d.ts +1 -1
  97. package/src/components/ExpressionEditor/EditorInput.js +1 -1
  98. package/src/components/ExpressionEditor/EditorInputWithWhereClause.js +1 -1
  99. package/src/components/Input/index.d.ts +1 -1
  100. package/src/components/List/ListGroupItem/index.d.ts +4 -2
  101. package/src/components/Loader/Loader.d.ts +2 -2
  102. package/src/components/Logo/index.d.ts +1 -1
  103. package/src/components/Modal/index.d.ts +1 -1
  104. package/src/components/PopupWithFooter.d.ts +2 -2
  105. package/src/components/ProgressIndicator/ProgressIndicator.d.ts +1 -1
  106. package/src/components/SelectList.d.ts +1 -1
  107. package/src/components/SimpleButton/index.d.ts +4 -5
  108. package/src/components/SimpleButton/index.js +3 -2
  109. package/src/components/StylePreview.d.ts +1 -1
  110. package/src/components/Tag/Tag.d.ts +1 -1
  111. package/src/components/Textarea/index.d.ts +6 -4
  112. package/src/components/ToggleButton/index.d.ts +1 -1
  113. package/src/components/WindowModal/WindowModal.d.ts +1 -1
  114. package/src/components/icons/index.d.ts +3 -2
  115. package/src/components/icons/layout.d.ts +2 -1
  116. package/src/components/utils/useContainerScrollObserver/index.d.ts +1 -1
  117. package/src/metamodel/adaptable.metamodel.d.ts +47 -29
  118. package/src/metamodel/adaptable.metamodel.js +1 -1
  119. package/src/parser/src/types.d.ts +6 -3
  120. package/src/renderReactRoot.d.ts +3 -0
  121. package/src/renderReactRoot.js +54 -0
  122. package/src/types.d.ts +2 -2
  123. package/version.d.ts +1 -1
  124. 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.