@adaptabletools/adaptable 13.0.0-canary.2 → 13.0.0-canary.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 (80) 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 +159 -159
  5. package/index.css +1 -0
  6. package/package.json +1 -1
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +42 -14
  10. package/src/AdaptableOptions/GeneralOptions.d.ts +6 -0
  11. package/src/Api/ConditionalStyleApi.d.ts +20 -0
  12. package/src/Api/FormatColumnApi.d.ts +42 -3
  13. package/src/Api/Implementation/ColumnApiImpl.js +3 -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/InternalApiImpl.d.ts +1 -0
  17. package/src/Api/Implementation/InternalApiImpl.js +4 -0
  18. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +0 -2
  19. package/src/Api/Implementation/QueryLanguageApiImpl.js +0 -3
  20. package/src/Api/Implementation/ToolPanelApiImpl.d.ts +3 -1
  21. package/src/Api/Implementation/ToolPanelApiImpl.js +8 -0
  22. package/src/Api/InternalApi.d.ts +1 -0
  23. package/src/Api/QueryLanguageApi.d.ts +0 -5
  24. package/src/Api/ToolPanelApi.d.ts +10 -1
  25. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +1 -1
  26. package/src/PredefinedConfig/Common/AdaptablePredicate.js +37 -37
  27. package/src/PredefinedConfig/FormatColumnState.d.ts +19 -0
  28. package/src/PredefinedConfig/PredefinedConfig.d.ts +1 -0
  29. package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +14 -0
  30. package/src/Redux/ActionsReducers/FormatColumnRedux.js +43 -1
  31. package/src/Redux/Store/AdaptableStore.js +2 -0
  32. package/src/Strategy/ConditionalStyleModule.d.ts +2 -0
  33. package/src/Strategy/ConditionalStyleModule.js +6 -0
  34. package/src/Strategy/FormatColumnModule.d.ts +4 -9
  35. package/src/Strategy/FormatColumnModule.js +51 -1
  36. package/src/Strategy/Interface/IModule.d.ts +1 -0
  37. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +6 -5
  38. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +3 -2
  39. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +4 -1
  40. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +1 -0
  41. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +4 -1
  42. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.d.ts +1 -0
  43. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +4 -1
  44. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +1 -0
  45. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +4 -1
  46. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -0
  47. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +4 -1
  48. package/src/Utilities/Extensions/TypeExtensions.d.ts +1 -0
  49. package/src/Utilities/Extensions/TypeExtensions.js +5 -0
  50. package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +14 -4
  51. package/src/Utilities/Services/LicenseService.js +1 -1
  52. package/src/Utilities/Services/QueryLanguageService.d.ts +5 -3
  53. package/src/Utilities/Services/QueryLanguageService.js +92 -39
  54. package/src/Utilities/license/LicenseDetails.d.ts +1 -1
  55. package/src/Utilities/license/decode.d.ts +1 -0
  56. package/src/Utilities/license/decode.js +1 -1
  57. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +1 -0
  58. package/src/View/ConditionalStyle/ConditionalStylePopupHeader.d.ts +2 -0
  59. package/src/View/ConditionalStyle/ConditionalStylePopupHeader.js +18 -0
  60. package/src/View/FormatColumn/MoveFormatColumn.d.ts +7 -0
  61. package/src/View/FormatColumn/MoveFormatColumn.js +27 -0
  62. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +1 -1
  63. package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.d.ts +9 -0
  64. package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +66 -0
  65. package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +20 -2
  66. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +2 -1
  67. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +14 -0
  68. package/src/View/FormatColumn/Wizard/constants.d.ts +1 -0
  69. package/src/View/FormatColumn/Wizard/constants.js +4 -0
  70. package/src/agGrid/Adaptable.d.ts +5 -0
  71. package/src/agGrid/Adaptable.js +103 -45
  72. package/src/components/ExpressionEditor/BaseEditorInput.d.ts +1 -1
  73. package/src/components/ExpressionEditor/EditorInput.js +1 -1
  74. package/src/components/ExpressionEditor/EditorInputWithWhereClause.js +1 -1
  75. package/src/metamodel/adaptable.metamodel.d.ts +47 -29
  76. package/src/metamodel/adaptable.metamodel.js +1 -1
  77. package/src/parser/src/types.d.ts +6 -3
  78. package/src/types.d.ts +2 -2
  79. package/version.d.ts +1 -1
  80. 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.