@adaptabletools/adaptable 14.1.0 → 15.0.0-canary.0

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 (71) hide show
  1. package/bundle.cjs.js +177 -177
  2. package/package.json +1 -1
  3. package/publishTimestamp.d.ts +1 -1
  4. package/publishTimestamp.js +1 -1
  5. package/src/AdaptableOptions/ChartingOptions.d.ts +6 -0
  6. package/src/Api/ChartingApi.d.ts +7 -8
  7. package/src/Api/DashboardApi.d.ts +4 -6
  8. package/src/Api/Events/ChartChanged.d.ts +30 -1
  9. package/src/Api/Events/DashboardChanged.d.ts +8 -0
  10. package/src/Api/Implementation/ChartingApiImpl.d.ts +1 -0
  11. package/src/Api/Implementation/ChartingApiImpl.js +3 -0
  12. package/src/Api/Implementation/DashboardApiImpl.d.ts +0 -1
  13. package/src/Api/Implementation/DashboardApiImpl.js +3 -18
  14. package/src/Api/Implementation/StyledColumnApiImpl.d.ts +2 -0
  15. package/src/Api/Implementation/StyledColumnApiImpl.js +6 -0
  16. package/src/Api/Implementation/ThemeApiImpl.js +4 -1
  17. package/src/Api/Internal/DashboardInternalApi.d.ts +1 -0
  18. package/src/Api/Internal/DashboardInternalApi.js +28 -3
  19. package/src/Api/Internal/ExportInternalApi.d.ts +1 -0
  20. package/src/Api/Internal/ExportInternalApi.js +6 -0
  21. package/src/Api/Internal/LayoutInternalApi.d.ts +1 -0
  22. package/src/Api/Internal/LayoutInternalApi.js +7 -0
  23. package/src/Api/StyledColumnApi.d.ts +10 -0
  24. package/src/Redux/ActionsReducers/AlertRedux.d.ts +14 -0
  25. package/src/Redux/ActionsReducers/AlertRedux.js +23 -1
  26. package/src/Redux/ActionsReducers/CustomSortRedux.d.ts +14 -0
  27. package/src/Redux/ActionsReducers/CustomSortRedux.js +23 -1
  28. package/src/Redux/ActionsReducers/FlashingCellRedux.d.ts +15 -1
  29. package/src/Redux/ActionsReducers/FlashingCellRedux.js +23 -1
  30. package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +14 -0
  31. package/src/Redux/ActionsReducers/FormatColumnRedux.js +26 -1
  32. package/src/Redux/ActionsReducers/PlusMinusRedux.d.ts +14 -0
  33. package/src/Redux/ActionsReducers/PlusMinusRedux.js +23 -1
  34. package/src/Redux/ActionsReducers/ScheduleRedux.d.ts +70 -0
  35. package/src/Redux/ActionsReducers/ScheduleRedux.js +112 -2
  36. package/src/Redux/ActionsReducers/ShortcutRedux.d.ts +14 -0
  37. package/src/Redux/ActionsReducers/ShortcutRedux.js +23 -1
  38. package/src/Redux/ActionsReducers/StyledColumnRedux.d.ts +14 -0
  39. package/src/Redux/ActionsReducers/StyledColumnRedux.js +23 -1
  40. package/src/Redux/ActionsReducers/utils.d.ts +2 -0
  41. package/src/Redux/ActionsReducers/utils.js +20 -2
  42. package/src/Redux/Store/AdaptableStore.js +45 -4
  43. package/src/Strategy/AlertModule.js +2 -0
  44. package/src/Strategy/CustomSortModule.d.ts +2 -0
  45. package/src/Strategy/CustomSortModule.js +2 -0
  46. package/src/Strategy/FlashingCellModule.js +2 -0
  47. package/src/Strategy/FormatColumnModule.js +2 -0
  48. package/src/Strategy/PlusMinusModule.js +2 -0
  49. package/src/Strategy/ShortcutModule.js +2 -0
  50. package/src/Strategy/StyledColumnModule.js +2 -0
  51. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +1 -0
  52. package/src/Utilities/Services/AlertService.d.ts +2 -0
  53. package/src/Utilities/Services/AlertService.js +6 -0
  54. package/src/Utilities/Services/Interface/IAlertService.d.ts +2 -0
  55. package/src/Utilities/license/hashing.js +1 -1
  56. package/src/Utilities/logDeprecation.d.ts +1 -1
  57. package/src/View/Alert/Wizard/AlertMessageWizardSection.js +2 -2
  58. package/src/View/Charting/ShowChartButton.js +3 -2
  59. package/src/View/Charting/useChartingElements.js +6 -5
  60. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +22 -1
  61. package/src/View/Export/ExportSelector.js +1 -0
  62. package/src/View/Export/ExportViewPanel.js +1 -0
  63. package/src/View/Export/ReportExportDropdown.js +1 -0
  64. package/src/View/Theme/ThemePopup.d.ts +0 -3
  65. package/src/View/Theme/ThemePopup.js +1 -9
  66. package/src/View/Theme/ThemeViewPanel.js +4 -3
  67. package/src/metamodel/adaptable.metamodel.d.ts +36 -0
  68. package/src/metamodel/adaptable.metamodel.js +1 -1
  69. package/src/types.d.ts +2 -2
  70. package/version.d.ts +1 -1
  71. package/version.js +1 -1
@@ -1652,6 +1652,13 @@ export declare const ADAPTABLE_METAMODEL: {
1652
1652
  name: string;
1653
1653
  kind: string;
1654
1654
  description: string;
1655
+ properties: {
1656
+ name: string;
1657
+ kind: string;
1658
+ description: string;
1659
+ uiLabel: string;
1660
+ reference: string;
1661
+ }[];
1655
1662
  };
1656
1663
  ChartContainer: {
1657
1664
  name: string;
@@ -1691,6 +1698,24 @@ export declare const ADAPTABLE_METAMODEL: {
1691
1698
  reference?: undefined;
1692
1699
  })[];
1693
1700
  };
1701
+ ChartDisplayedInfo: {
1702
+ name: string;
1703
+ kind: string;
1704
+ description: string;
1705
+ properties: ({
1706
+ name: string;
1707
+ kind: string;
1708
+ description: string;
1709
+ uiLabel: string;
1710
+ reference: string;
1711
+ } | {
1712
+ name: string;
1713
+ kind: string;
1714
+ description: string;
1715
+ uiLabel: string;
1716
+ reference?: undefined;
1717
+ })[];
1718
+ };
1694
1719
  ChartingAggFunc: {
1695
1720
  name: string;
1696
1721
  kind: string;
@@ -1707,6 +1732,17 @@ export declare const ADAPTABLE_METAMODEL: {
1707
1732
  uiLabel: string;
1708
1733
  }[];
1709
1734
  };
1735
+ ChartingOpenState: {
1736
+ name: string;
1737
+ kind: string;
1738
+ description: string;
1739
+ properties: {
1740
+ name: string;
1741
+ kind: string;
1742
+ description: string;
1743
+ uiLabel: string;
1744
+ }[];
1745
+ };
1710
1746
  ChartingOptions: {
1711
1747
  name: string;
1712
1748
  kind: string;