@adaptabletools/adaptable 22.0.0-canary.2 → 22.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 (61) hide show
  1. package/index.css +52 -23
  2. package/index.css.map +1 -1
  3. package/package.json +1 -1
  4. package/src/AdaptableInterfaces/IAdaptable.d.ts +2 -2
  5. package/src/AdaptableState/Common/AdaptableStyle.d.ts +8 -0
  6. package/src/AdaptableState/FormatColumnState.d.ts +0 -8
  7. package/src/Api/DataSetApi.d.ts +1 -1
  8. package/src/Api/GridApi.d.ts +3 -3
  9. package/src/Api/Implementation/GridApiImpl.d.ts +9 -9
  10. package/src/Api/Implementation/GridApiImpl.js +16 -16
  11. package/src/Api/Internal/ColumnInternalApi.js +1 -1
  12. package/src/Api/Internal/FormatColumnInternalApi.d.ts +0 -10
  13. package/src/Api/Internal/FormatColumnInternalApi.js +1 -19
  14. package/src/Redux/ActionsReducers/NoteRedux.js +1 -1
  15. package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.js +0 -3
  16. package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +2 -2
  17. package/src/Utilities/Constants/DocumentationLinkConstants.js +2 -2
  18. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +3 -3
  19. package/src/Utilities/Helpers/StyleHelper.js +14 -0
  20. package/src/Utilities/ObjectFactory.js +1 -1
  21. package/src/Utilities/Services/AnnotationsService.js +1 -1
  22. package/src/Utilities/Services/ModuleService.js +3 -3
  23. package/src/View/AdaptablePopover/index.d.ts +1 -0
  24. package/src/View/AdaptablePopover/index.js +1 -1
  25. package/src/View/Alert/ActiveAlertsPanel.js +8 -0
  26. package/src/View/Alert/AlertViewPanel.js +13 -9
  27. package/src/View/Alert/Utilities/getAlertButtonStyle.d.ts +1 -0
  28. package/src/View/Alert/Utilities/getAlertButtonStyle.js +8 -0
  29. package/src/View/BulkUpdate/BulkUpdateViewPanel.js +23 -11
  30. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +2 -2
  31. package/src/View/CellSummary/CellSummaryViewPanel.js +15 -17
  32. package/src/View/Components/AdaptableDateInput/index.js +1 -1
  33. package/src/View/Components/Buttons/ButtonApply.js +1 -1
  34. package/src/View/Components/Buttons/ButtonClear.d.ts +1 -0
  35. package/src/View/Components/Selectors/BulkUpdateValueSelector.js +19 -18
  36. package/src/View/Components/StyleComponent.js +20 -1
  37. package/src/View/Dashboard/DashboardPopup.js +4 -5
  38. package/src/View/Export/ExportDestinationPicker.js +1 -1
  39. package/src/View/Export/ExportStatusBar.js +4 -2
  40. package/src/View/Export/ExportViewPanel.js +25 -18
  41. package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +0 -23
  42. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +2 -2
  43. package/src/View/GridInfo/GridInfoPopup/GridInfoPopup.js +57 -65
  44. package/src/View/QuickSearch/QuickSearchPopup.js +4 -1
  45. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +2 -2
  46. package/src/View/UIHelper.d.ts +2 -0
  47. package/src/View/UIHelper.js +15 -0
  48. package/src/agGrid/AdaptableAgGrid.d.ts +2 -2
  49. package/src/agGrid/AdaptableAgGrid.js +5 -5
  50. package/src/agGrid/AgGridColumnAdapter.js +3 -18
  51. package/src/components/Dashboard/DashboardToolbar.js +1 -1
  52. package/src/components/ExpressionEditor/EditorInput.js +19 -3
  53. package/src/components/Tree/TreeDropdown/index.js +1 -1
  54. package/src/env.js +2 -2
  55. package/src/metamodel/adaptable.metamodel.d.ts +9 -7
  56. package/src/metamodel/adaptable.metamodel.js +1 -1
  57. package/src/migration/AdaptableUpgradeHelper.js +2 -0
  58. package/src/migration/VersionUpgrade22.d.ts +6 -0
  59. package/src/migration/VersionUpgrade22.js +27 -0
  60. package/src/types.d.ts +1 -1
  61. package/tsconfig.esm.tsbuildinfo +1 -1
@@ -1000,12 +1000,19 @@ export declare const ADAPTABLE_METAMODEL: {
1000
1000
  name: string;
1001
1001
  kind: string;
1002
1002
  desc: string;
1003
- props: {
1003
+ props: ({
1004
1004
  name: string;
1005
1005
  kind: string;
1006
1006
  desc: string;
1007
1007
  isOpt: boolean;
1008
- }[];
1008
+ ref: string;
1009
+ } | {
1010
+ name: string;
1011
+ kind: string;
1012
+ desc: string;
1013
+ isOpt: boolean;
1014
+ ref?: undefined;
1015
+ })[];
1009
1016
  };
1010
1017
  AdaptableSystemColumnMenuItem: {
1011
1018
  name: string;
@@ -1712,11 +1719,6 @@ export declare const ADAPTABLE_METAMODEL: {
1712
1719
  kind: string;
1713
1720
  desc: string;
1714
1721
  };
1715
- CellAlignment: {
1716
- name: string;
1717
- kind: string;
1718
- desc: string;
1719
- };
1720
1722
  CellColorRange: {
1721
1723
  name: string;
1722
1724
  kind: string;