@adaptabletools/adaptable 16.1.1-canary.2 → 16.2.0-canary.1

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 (81) hide show
  1. package/base.css +6 -1
  2. package/base.css.map +1 -1
  3. package/bundle.cjs.js +195 -197
  4. package/index.css +10 -1
  5. package/index.css.map +1 -1
  6. package/package.json +2 -2
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableOptions/AdaptableOptions.d.ts +1 -1
  10. package/src/AdaptableOptions/DataImportOptions.d.ts +17 -5
  11. package/src/AdaptableOptions/GroupingOptions.d.ts +1 -1
  12. package/src/AdaptableOptions/MenuOptions.d.ts +1 -1
  13. package/src/Api/ColumnApi.d.ts +3 -3
  14. package/src/Api/EventApi.d.ts +13 -2
  15. package/src/Api/Events/DataImported.d.ts +22 -0
  16. package/src/Api/Events/DataImported.js +2 -0
  17. package/src/Api/Internal/AlertInternalApi.d.ts +3 -2
  18. package/src/Api/Internal/AlertInternalApi.js +35 -5
  19. package/src/Api/Internal/DataImportInternalApi.d.ts +5 -0
  20. package/src/Api/Internal/DataImportInternalApi.js +28 -10
  21. package/src/Api/Internal/FilterInternalApi.d.ts +1 -1
  22. package/src/Api/Internal/FilterInternalApi.js +1 -1
  23. package/src/Api/Internal/GridInternalApi.js +1 -0
  24. package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +3 -3
  25. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +1 -1
  26. package/src/PredefinedConfig/Common/Fdc3Intent.d.ts +4 -4
  27. package/src/PredefinedConfig/Common/Fdc3Intent.js +4 -19
  28. package/src/PredefinedConfig/Common/Menu.d.ts +2 -2
  29. package/src/PredefinedConfig/DashboardState.d.ts +4 -0
  30. package/src/Redux/ActionsReducers/DashboardRedux.d.ts +11 -0
  31. package/src/Redux/ActionsReducers/DashboardRedux.js +14 -1
  32. package/src/Strategy/AlertModule.js +14 -31
  33. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +3 -1
  34. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +2 -0
  35. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +14 -2
  36. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +1 -1
  37. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +93 -1
  38. package/src/Utilities/Services/AlertService.js +13 -6
  39. package/src/Utilities/Services/DataService.d.ts +4 -1
  40. package/src/Utilities/Services/DataService.js +10 -5
  41. package/src/Utilities/Services/Interface/IAlertService.d.ts +12 -3
  42. package/src/Utilities/Services/Interface/IAlertService.js +9 -0
  43. package/src/Utilities/Services/Interface/IDataService.d.ts +3 -0
  44. package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +2 -1
  45. package/src/Utilities/Services/ModuleService.js +2 -0
  46. package/src/Utilities/Services/QueryLanguageService.d.ts +2 -2
  47. package/src/View/Components/Selectors/ColumnSelector.js +0 -5
  48. package/src/View/Dashboard/{CustomToolbarWrapper.d.ts → CustomToolbar.d.ts} +1 -0
  49. package/src/View/Dashboard/{CustomToolbarWrapper.js → CustomToolbar.js} +36 -33
  50. package/src/View/Dashboard/Dashboard.d.ts +2 -2
  51. package/src/View/Dashboard/Dashboard.js +20 -24
  52. package/src/View/Dashboard/DashboardPopup.d.ts +2 -1
  53. package/src/View/Dashboard/DashboardPopup.js +7 -3
  54. package/src/View/Dashboard/DashboardToolbarFactory.d.ts +7 -0
  55. package/src/View/Dashboard/DashboardToolbarFactory.js +46 -0
  56. package/src/View/Dashboard/PinnedDashboard.d.ts +5 -0
  57. package/src/View/Dashboard/PinnedDashboard.js +21 -0
  58. package/src/View/Dashboard/PinnedToolbarsSelector.d.ts +5 -0
  59. package/src/View/Dashboard/PinnedToolbarsSelector.js +52 -0
  60. package/src/View/DataImport/DataImportPopup.js +1 -1
  61. package/src/View/DataImport/DataImportWizard/DataImportWizard.d.ts +6 -1
  62. package/src/View/DataImport/DataImportWizard/DataImportWizard.js +71 -9
  63. package/src/View/DataImport/DataImportWizard/sections/ColumnsSection.d.ts +8 -0
  64. package/src/View/DataImport/DataImportWizard/sections/ColumnsSection.js +119 -0
  65. package/src/View/DataImport/DataImportWizard/sections/DataPreview.d.ts +2 -1
  66. package/src/View/DataImport/DataImportWizard/sections/DataPreview.js +13 -17
  67. package/src/View/DataImport/DataImportWizard/sections/ValidationSection.d.ts +2 -1
  68. package/src/View/DataImport/DataImportWizard/sections/ValidationSection.js +1 -1
  69. package/src/View/QuickSearch/QuickSearchInput.js +1 -1
  70. package/src/components/Dashboard/Dashboard.d.ts +1 -0
  71. package/src/components/Dashboard/Dashboard.js +2 -1
  72. package/src/components/DragAndDropContext/ModuleManager.js +1 -1
  73. package/src/components/DragAndDropContext/TabList.js +1 -1
  74. package/src/components/ExpressionEditor/editorButtonsObservable.js +10 -0
  75. package/src/metamodel/adaptable.metamodel.d.ts +20 -0
  76. package/src/metamodel/adaptable.metamodel.js +1 -1
  77. package/src/parser/src/index.js +4 -1
  78. package/src/parser/src/tokenizer.js +5 -2
  79. package/src/types.d.ts +2 -0
  80. package/version.d.ts +1 -1
  81. 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.