@adaptabletools/adaptable 15.0.0-canary.4 → 15.0.0-canary.6

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 (59) hide show
  1. package/base.css +1 -1
  2. package/base.css.map +1 -1
  3. package/bundle.cjs.js +146 -146
  4. package/index.css +1 -1
  5. package/index.css.map +1 -1
  6. package/package.json +1 -1
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableOptions/ExportOptions.d.ts +3 -0
  10. package/src/AdaptableOptions/FilterOptions.d.ts +5 -1
  11. package/src/AdaptableOptions/FinsemblePluginOptions.d.ts +3 -0
  12. package/src/AdaptableOptions/MasterDetailPluginOptions.d.ts +3 -0
  13. package/src/AdaptableOptions/PredicateOptions.d.ts +3 -0
  14. package/src/AdaptableOptions/SettingsPanelOptions.d.ts +3 -0
  15. package/src/AdaptableOptions/TeamSharingOptions.d.ts +31 -5
  16. package/src/Api/Implementation/StyledColumnApiImpl.d.ts +1 -0
  17. package/src/Api/Implementation/StyledColumnApiImpl.js +4 -0
  18. package/src/Api/Implementation/TeamSharingApiImpl.d.ts +8 -2
  19. package/src/Api/Implementation/TeamSharingApiImpl.js +64 -9
  20. package/src/Api/Internal/FilterInternalApi.d.ts +1 -0
  21. package/src/Api/Internal/FilterInternalApi.js +10 -1
  22. package/src/Api/Internal/TeamSharingInternalApi.d.ts +3 -4
  23. package/src/Api/Internal/TeamSharingInternalApi.js +1 -4
  24. package/src/Api/StyledColumnApi.d.ts +4 -0
  25. package/src/Api/TeamSharingApi.d.ts +38 -12
  26. package/src/PredefinedConfig/Common/AdaptablePredicate.js +3 -0
  27. package/src/PredefinedConfig/Common/AggregationColumns.d.ts +9 -0
  28. package/src/PredefinedConfig/Common/RowHighlightInfo.d.ts +3 -0
  29. package/src/PredefinedConfig/Common/RowsHighlightInfo.d.ts +3 -0
  30. package/src/PredefinedConfig/ExportState.d.ts +3 -0
  31. package/src/PredefinedConfig/FormatColumnState.d.ts +3 -0
  32. package/src/PredefinedConfig/TeamSharingState.d.ts +86 -7
  33. package/src/PredefinedConfig/TeamSharingState.js +5 -0
  34. package/src/Redux/ActionsReducers/TeamSharingRedux.d.ts +13 -7
  35. package/src/Redux/ActionsReducers/TeamSharingRedux.js +8 -1
  36. package/src/Redux/Store/AdaptableStore.js +56 -13
  37. package/src/Strategy/TeamSharingModule.d.ts +3 -3
  38. package/src/Strategy/TeamSharingModule.js +6 -7
  39. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +5 -2
  40. package/src/Utilities/Services/Interface/ITeamSharingService.d.ts +7 -6
  41. package/src/Utilities/Services/TeamSharingService.d.ts +7 -6
  42. package/src/Utilities/Services/TeamSharingService.js +23 -5
  43. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.d.ts +2 -2
  44. package/src/View/Components/Buttons/ButtonShare.d.ts +2 -2
  45. package/src/View/Components/Buttons/EntityListActionButtons.d.ts +2 -2
  46. package/src/View/Components/ModuleSummary/ModuleDetail.d.ts +2 -2
  47. package/src/View/Components/Popups/AdaptablePopupTeamSharing.d.ts +2 -2
  48. package/src/View/Components/SharedProps/ConfigEntityRowProps.d.ts +2 -2
  49. package/src/View/Components/SharedProps/ModuleSummaryProps.d.ts +2 -2
  50. package/src/View/TeamSharing/SharedEntityDependencies.d.ts +3 -3
  51. package/src/View/TeamSharing/SharedEntityObjectView.d.ts +4 -4
  52. package/src/View/TeamSharing/SharedEntityObjectView.js +5 -6
  53. package/src/View/Theme/ThemePopup.js +2 -3
  54. package/src/agGrid/Adaptable.js +4 -0
  55. package/src/metamodel/adaptable.metamodel.d.ts +218 -10
  56. package/src/metamodel/adaptable.metamodel.js +1 -1
  57. package/src/types.d.ts +2 -2
  58. package/version.d.ts +1 -1
  59. package/version.js +1 -1
package/src/types.d.ts CHANGED
@@ -33,7 +33,7 @@ export type { AggregationColumns, WeightedAverageAggregation, } from './Predefin
33
33
  export type { AccessLevel, Entitlement } from './PredefinedConfig/Common/Entitlement';
34
34
  export type { FilterActionOnDataChange } from './PredefinedConfig/Common/FilterActionOnDataChange';
35
35
  export type { ConfigState } from './PredefinedConfig/ConfigState';
36
- export type { TeamSharingOptions } from './AdaptableOptions/TeamSharingOptions';
36
+ export type { TeamSharingOptions, SharedEntitiesContext, } from './AdaptableOptions/TeamSharingOptions';
37
37
  export type { ToolPanelOptions, CustomToolPanel, ToolPanelButtonContext, CustomToolPanelButtonContext, } from './AdaptableOptions/ToolPanelOptions';
38
38
  export type { UserInterfaceOptions, BasePermittedValues, PermittedValues, EditLookUpPermittedValues, FilterPermittedValues, CustomSortPermittedValues, BulkUpdatePermittedValues, EditLookUpContext, PermittedValuesContext, FilterPermittedValuesContext, BulkUpdatePermittedValuesContext, GridInfoSections, GridInfoSection, ObjectTagsContext, CustomDisplayFormatter, CustomDisplayFormatterContext, } from './AdaptableOptions/UserInterfaceOptions';
39
39
  export type { MenuOptions } from './AdaptableOptions/MenuOptions';
@@ -178,7 +178,7 @@ export type { SelectedCellInfo } from './PredefinedConfig/Selection/SelectedCell
178
178
  export type { SelectedRowInfo } from './PredefinedConfig/Selection/SelectedRowInfo';
179
179
  export type { GridCellRange } from './PredefinedConfig/Selection/GridCellRange';
180
180
  export type { Shortcut, ShortcutState, ShortcutScopeDataType, } from './PredefinedConfig/ShortcutState';
181
- export type { SharedEntity, TeamSharingImportInfo, TeamSharingState, SharedEntityType, SharedEntityConfig, } from './PredefinedConfig/TeamSharingState';
181
+ export type { SharedEntity, AdaptableSharedEntity, CustomSharedEntity, TeamSharingState, SharedEntityType, AdaptableSharedEntityConfig, CustomSharedEntityConfig, } from './PredefinedConfig/TeamSharingState';
182
182
  export type { AdaptableTheme, ThemeState } from './PredefinedConfig/ThemeState';
183
183
  export type { ToolPanelState, AdaptableToolPanelDefinition, ToolPanelVisibilityMode, } from './PredefinedConfig/ToolPanelState';
184
184
  export type { AdaptableFrameworkComponent, AngularFrameworkComponent, ReactFrameworkComponent, CustomRenderContext, } from './AdaptableOptions/AdaptableFrameworkComponent';
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "15.0.0-canary.4";
1
+ declare const _default: "15.0.0-canary.6";
2
2
  export default _default;
package/version.js CHANGED
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = '15.0.0-canary.4'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
3
+ exports.default = '15.0.0-canary.6'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version