@adaptabletools/adaptable 13.0.4-canary.2 → 13.0.5

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 (47) hide show
  1. package/README.md +3 -3
  2. package/bundle.cjs.js +193 -193
  3. package/package.json +1 -1
  4. package/publishTimestamp.d.ts +1 -1
  5. package/publishTimestamp.js +1 -1
  6. package/src/AdaptableInterfaces/IAdaptable.d.ts +1 -0
  7. package/src/AdaptableOptions/ActionOptions.d.ts +1 -5
  8. package/src/AdaptableOptions/GeneralOptions.d.ts +33 -5
  9. package/src/Api/AdaptableApi.d.ts +5 -0
  10. package/src/Api/CalendarApi.d.ts +29 -0
  11. package/src/Api/CalendarApi.js +2 -0
  12. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -0
  13. package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
  14. package/src/Api/Implementation/CalendarApiImpl.d.ts +9 -0
  15. package/src/Api/Implementation/CalendarApiImpl.js +55 -0
  16. package/src/Api/Implementation/InternalApiImpl.d.ts +1 -0
  17. package/src/Api/Implementation/InternalApiImpl.js +8 -0
  18. package/src/Api/Implementation/LayoutApiImpl.d.ts +7 -0
  19. package/src/Api/Implementation/LayoutApiImpl.js +15 -0
  20. package/src/Api/Implementation/QueryApiImpl.js +3 -8
  21. package/src/Api/InternalApi.d.ts +1 -0
  22. package/src/Api/LayoutApi.d.ts +11 -0
  23. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +1 -1
  24. package/src/PredefinedConfig/Common/AdaptablePredicate.js +55 -41
  25. package/src/PredefinedConfig/StyledColumnState.d.ts +16 -24
  26. package/src/Redux/ActionsReducers/PopupRedux.js +10 -2
  27. package/src/Strategy/FilterModule.js +2 -2
  28. package/src/Strategy/LayoutModule.d.ts +3 -0
  29. package/src/Strategy/LayoutModule.js +98 -4
  30. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +1 -2
  31. package/src/Utilities/Defaults/DefaultSettingsPanel.js +18 -15
  32. package/src/View/Components/Popups/WindowPopups/windowFactory.d.ts +1 -0
  33. package/src/View/Components/Popups/WindowPopups/windowFactory.js +4 -1
  34. package/src/View/Layout/PivotDetailsPopoup.d.ts +3 -0
  35. package/src/View/Layout/PivotDetailsPopoup.js +43 -0
  36. package/src/View/Layout/Wizard/LayoutWizard.js +6 -1
  37. package/src/View/Layout/Wizard/sections/SortSection.js +1 -4
  38. package/src/agGrid/Adaptable.d.ts +1 -0
  39. package/src/agGrid/Adaptable.js +10 -13
  40. package/src/components/Modal/index.js +0 -2
  41. package/src/metamodel/adaptable.metamodel.d.ts +53 -23
  42. package/src/metamodel/adaptable.metamodel.js +1 -1
  43. package/src/types.d.ts +3 -2
  44. package/version.d.ts +1 -1
  45. package/version.js +1 -1
  46. package/src/Utilities/Helpers/CalendarHelper.d.ts +0 -25
  47. package/src/Utilities/Helpers/CalendarHelper.js +0 -342
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
- # adaptable (core)
1
+ # adaptable (vanilla)
2
2
 
3
- Repository for the 'Core' AdapTable package - developed by Adaptable Tools.
3
+ Repository for the vanilla version of AdapTable - the AG Grid add-on developed by Adaptable Tools.
4
4
 
5
5
  There are also [AdapTable React](https://docs.adaptabletools.com/guide/react-overview)
6
- and [AdapTable Angular](https://docs.adaptabletools.com/guide/angular-overview) versions available for those who wish to access AdapTable (when running with AG Grid) using their preferred Framework.
6
+ and [AdapTable Angular](https://docs.adaptabletools.com/guide/angular-overview) versions available for those who wish to access AdapTable using their preferred Framework.
7
7
 
8
8
  ## Documentation
9
9