@adaptabletools/adaptable 16.0.6-canary.0 → 16.0.6-canary.1
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.
- package/bundle.cjs.js +8 -8
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +1 -1
- package/src/AdaptableOptions/MenuOptions.d.ts +14 -4
- package/src/Api/EventApi.d.ts +15 -1
- package/src/Api/Events/Fdc3MessageInfo.d.ts +46 -0
- package/src/Api/Events/Fdc3MessageInfo.js +2 -0
- package/src/Api/GridApi.d.ts +2 -2
- package/src/Api/Implementation/GridApiImpl.d.ts +1 -1
- package/src/Api/Implementation/GridApiImpl.js +2 -2
- package/src/Api/Implementation/LayoutApiImpl.js +1 -1
- package/src/Api/Internal/LayoutInternalApi.js +1 -1
- package/src/Strategy/LayoutModule.js +1 -1
- package/src/Utilities/Services/Fdc3Service.d.ts +1 -2
- package/src/Utilities/Services/Fdc3Service.js +16 -0
- package/src/agGrid/Adaptable.d.ts +2 -2
- package/src/agGrid/Adaptable.js +6 -3
- package/src/agGrid/agGridMenuHelper.js +41 -6
- package/src/metamodel/adaptable.metamodel.d.ts +11 -0
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +2 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/src/types.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ export type { AdaptableComment, CommentsState, AdaptableComments, CommentGridCel
|
|
|
45
45
|
export type { TeamSharingOptions, SharedEntitiesContext, } from './AdaptableOptions/TeamSharingOptions';
|
|
46
46
|
export type { ToolPanelOptions, CustomToolPanel, ToolPanelButtonContext, CustomToolPanelButtonContext, } from './AdaptableOptions/ToolPanelOptions';
|
|
47
47
|
export type { UserInterfaceOptions, BasePermittedValues, PermittedValues, EditLookUpPermittedValues, FilterPermittedValues, CustomSortPermittedValues, BulkUpdatePermittedValues, EditLookUpContext, PermittedValuesContext, FilterPermittedValuesContext, BulkUpdatePermittedValuesContext, GridInfoSections, GridInfoSection, ObjectTagsContext, CustomIcon, } from './AdaptableOptions/UserInterfaceOptions';
|
|
48
|
-
export type { MenuOptions } from './AdaptableOptions/MenuOptions';
|
|
48
|
+
export type { MenuOptions, MenuOrderContext } from './AdaptableOptions/MenuOptions';
|
|
49
49
|
export type { CustomSettingsPanel, SettingsPanelOptions, } from './AdaptableOptions/SettingsPanelOptions';
|
|
50
50
|
export type { EntitlementOptions, EntitlementContext, DefaultAccessLevelContext, } from './AdaptableOptions/EntitlementOptions';
|
|
51
51
|
export type { EvaluateExpressionExternallyContext, ExpressionOptions, ModuleExpressionFunctions, ModuleExpressionFunctionsMap, GlobalExpressionFunctionsContext, ModuleExpressionFunctionsContext, CustomQueryVariableContext, QueryableColumnContext, } from './AdaptableOptions/ExpressionOptions';
|
|
@@ -130,6 +130,7 @@ export type { ThemeEditedInfo } from './Api/Events/ThemeEdited';
|
|
|
130
130
|
export type { DashboardChangedInfo } from './Api/Events/DashboardChanged';
|
|
131
131
|
export type { ScheduleTriggeredInfo } from './Api/Events/ScheduleTriggered';
|
|
132
132
|
export type { AdaptableStateChangedInfo } from './Api/Events/AdaptableStateChanged';
|
|
133
|
+
export type { Fdc3MessageInfo, Fdc3MessageSentInfo, Fdc3MessageReceivedInfo, } from './Api/Events/Fdc3MessageInfo';
|
|
133
134
|
export type { AdaptableState, AdaptablePersistentState } from './PredefinedConfig/AdaptableState';
|
|
134
135
|
export type { AlertDefinition, AlertProperties, AlertState, AlertButtonForm, AlertButton, AdaptableAlertAction, AlertDefinitionPredicate, AlertRule, AdaptableAlertQuery, SystemAlertPredicateId, SystemAlertPredicateIds, } from './PredefinedConfig/AlertState';
|
|
135
136
|
export type { ApplicationDataEntry, ApplicationState } from './PredefinedConfig/ApplicationState';
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "16.0.6-canary.
|
|
1
|
+
declare const _default: "16.0.6-canary.1";
|
|
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 = '16.0.6-canary.
|
|
3
|
+
exports.default = '16.0.6-canary.1'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
|