@adaptabletools/adaptable 18.0.0-canary.30 → 18.0.0-canary.31

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 (54) hide show
  1. package/package.json +1 -1
  2. package/src/AdaptableOptions/ActionColumnOptions.d.ts +3 -2
  3. package/src/AdaptableOptions/CustomSortOptions.d.ts +2 -2
  4. package/src/AdaptableOptions/FormatColumnOptions.d.ts +2 -2
  5. package/src/AdaptableOptions/PredicateOptions.d.ts +2 -2
  6. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +2 -2
  7. package/src/Api/FlashingCellApi.d.ts +2 -2
  8. package/src/Api/Implementation/FlashingCellApiImpl.d.ts +2 -2
  9. package/src/Api/Implementation/ScopeApiImpl.d.ts +26 -26
  10. package/src/Api/Internal/AlertInternalApi.d.ts +2 -2
  11. package/src/Api/Internal/FormatColumnInternalApi.d.ts +2 -2
  12. package/src/Api/Internal/FormatColumnInternalApi.js +18 -7
  13. package/src/Api/Internal/PredicateInternalApi.d.ts +6 -6
  14. package/src/Api/Internal/StyledColumnInternalApi.d.ts +2 -2
  15. package/src/Api/Internal/StyledColumnInternalApi.js +3 -4
  16. package/src/Api/ScopeApi.d.ts +26 -26
  17. package/src/PredefinedConfig/AlertState.d.ts +2 -2
  18. package/src/PredefinedConfig/Common/AdaptableObject.d.ts +4 -4
  19. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +2 -2
  20. package/src/PredefinedConfig/Common/{AdaptableScope.d.ts → ColumnScope.d.ts} +1 -1
  21. package/src/PredefinedConfig/Common/RowScope.d.ts +17 -0
  22. package/src/PredefinedConfig/Common/RowScope.js +1 -0
  23. package/src/PredefinedConfig/ExportState.d.ts +2 -2
  24. package/src/PredefinedConfig/FlashingCellState.d.ts +2 -2
  25. package/src/PredefinedConfig/FormatColumnState.d.ts +7 -8
  26. package/src/PredefinedConfig/PlusMinusState.d.ts +2 -2
  27. package/src/PredefinedConfig/ShortcutState.d.ts +2 -2
  28. package/src/PredefinedConfig/StyledColumnState.d.ts +5 -10
  29. package/src/Strategy/StyledColumnModule.js +4 -2
  30. package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.js +4 -3
  31. package/src/Strategy/Utilities/getScopeViewItems.d.ts +2 -2
  32. package/src/Utilities/ObjectFactory.js +1 -1
  33. package/src/View/Alert/Utilities/getAvailablePredicates.d.ts +2 -2
  34. package/src/View/Alert/Utilities/getDefaultAlertDefinition.d.ts +1 -1
  35. package/src/View/Components/EntityRulesEditor/EntityRulePredicatesEditor/EntityRulePredicatesEditor.d.ts +3 -3
  36. package/src/View/Components/EntityRulesEditor/index.d.ts +3 -3
  37. package/src/View/Components/NewScopeComponent.d.ts +5 -5
  38. package/src/View/Components/RangesComponent.d.ts +2 -2
  39. package/src/View/Components/SharedProps/WizardScopeState.d.ts +2 -2
  40. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +4 -1
  41. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.d.ts +2 -2
  42. package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +24 -13
  43. package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.js +32 -12
  44. package/src/agGrid/ActionColumnRenderer.js +41 -4
  45. package/src/agGrid/AgGridColumnAdapter.js +5 -4
  46. package/src/agGrid/BadgeRenderer.d.ts +2 -2
  47. package/src/agGrid/BadgeRenderer.js +21 -13
  48. package/src/agGrid/PercentBarRenderer.js +0 -1
  49. package/src/env.js +2 -2
  50. package/src/metamodel/adaptable.metamodel.d.ts +19 -26
  51. package/src/metamodel/adaptable.metamodel.js +1 -1
  52. package/src/types.d.ts +2 -1
  53. package/tsconfig.esm.tsbuildinfo +1 -1
  54. /package/src/PredefinedConfig/Common/{AdaptableScope.js → ColumnScope.js} +0 -0
package/src/types.d.ts CHANGED
@@ -155,7 +155,8 @@ export type { AdaptableObject, AdaptableObjectTag, AdaptableObjectLookupCriteria
155
155
  export type { SuspendableObject } from './PredefinedConfig/Common/SuspendableObject';
156
156
  export type { AdaptableQuery, AdaptableAggregatedBooleanQuery, AdaptableAggregatedScalarQuery, AdaptableBooleanQuery, AdaptableObservableQuery, AdaptableScalarQuery, } from './PredefinedConfig/Common/AdaptableQuery';
157
157
  export type { AdaptablePredicate, AdaptableColumnPredicate, AdaptablePredicateDef, PredicateModuleScope, PredicateDefHandlerContext, PredicateDefInput, PredicateDefToStringParams, ColumnFilterDef, } from './PredefinedConfig/Common/AdaptablePredicate';
158
- export type { AdaptableScope } from './PredefinedConfig/Common/AdaptableScope';
158
+ export type { ColumnScope } from './PredefinedConfig/Common/ColumnScope';
159
+ export type { RowScope } from './PredefinedConfig/Common/RowScope';
159
160
  export type { AdaptableStyle } from './PredefinedConfig/Common/AdaptableStyle';
160
161
  export type { AdaptableBaseIcon, AdaptableIcon, AdaptableSystemIcon, AdaptableCustomIcon, AdaptableSystemIconName, AdaptableElementIcon, } from './PredefinedConfig/Common/AdaptableIcon';
161
162
  export type { CellHighlightInfo } from './PredefinedConfig/Common/CellHighlightInfo';