@adaptabletools/adaptable 16.0.6-canary.1 → 16.0.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.
- package/bundle.cjs.js +2 -2
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/Api/EventApi.d.ts +2 -3
- package/src/Api/Events/Fdc3MessageInfo.d.ts +18 -6
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable",
|
|
3
|
-
"version": "16.0.6
|
|
3
|
+
"version": "16.0.6",
|
|
4
4
|
"description": "Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"web-components",
|
package/publishTimestamp.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: 1693679766674;
|
|
2
2
|
export default _default;
|
package/publishTimestamp.js
CHANGED
package/src/Api/EventApi.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { SelectionChangedInfo, LiveDataChangedInfo, DashboardChangedInfo, ThemeChangedInfo, AlertFiredInfo, LayoutChangedInfo, AdaptableReadyInfo, CustomToolbarConfiguredInfo, CellChangedInfo, SystemStatusMessageDisplayedInfo, CheckboxColumnClickedInfo, AdaptableStateChangedInfo, FlashingCellDisplayedInfo, GridDataChangedInfo, TeamSharingEntityChangedInfo, ActionRowSubmittedInfo, DataSetSelectedInfo, AdaptableStateReloadedInfo, GridSortedInfo, QueryRunInfo, ScheduleTriggeredInfo, ChartChangedInfo, ThemeEditedInfo, FilterAppliedInfo } from '../types';
|
|
2
|
-
import { Fdc3MessageInfo } from './Events/Fdc3MessageInfo';
|
|
1
|
+
import { SelectionChangedInfo, LiveDataChangedInfo, DashboardChangedInfo, ThemeChangedInfo, AlertFiredInfo, LayoutChangedInfo, AdaptableReadyInfo, CustomToolbarConfiguredInfo, CellChangedInfo, SystemStatusMessageDisplayedInfo, CheckboxColumnClickedInfo, AdaptableStateChangedInfo, FlashingCellDisplayedInfo, GridDataChangedInfo, TeamSharingEntityChangedInfo, ActionRowSubmittedInfo, DataSetSelectedInfo, AdaptableStateReloadedInfo, GridSortedInfo, QueryRunInfo, ScheduleTriggeredInfo, ChartChangedInfo, ThemeEditedInfo, FilterAppliedInfo, Fdc3MessageInfo } from '../types';
|
|
3
2
|
/**
|
|
4
3
|
* Responsible for publishing the many Events that AdapTable fires
|
|
5
4
|
*/
|
|
@@ -310,7 +309,7 @@ export interface EventApi {
|
|
|
310
309
|
*/
|
|
311
310
|
off(eventName: 'AdaptableReady', callback: (adaptableReadyInfo: AdaptableReadyInfo) => void): void;
|
|
312
311
|
/**
|
|
313
|
-
* Event fired when
|
|
312
|
+
* Event fired when an FDC3 message is sent(Raise Intent or Broadcast Context) or received (Intent or Context)
|
|
314
313
|
*
|
|
315
314
|
* @param eventName Fdc3Message
|
|
316
315
|
* @param callback Fdc3MessageInfo
|
|
@@ -6,37 +6,49 @@ import { AppIdentifier, ContextMetadata } from '@finos/fdc3';
|
|
|
6
6
|
* EventInfo returned by FDC3 Message events
|
|
7
7
|
*/
|
|
8
8
|
export declare type Fdc3MessageInfo = Fdc3MessageSentInfo | Fdc3MessageReceivedInfo;
|
|
9
|
+
/**
|
|
10
|
+
* Event Info for FDC3 Sent Message Event
|
|
11
|
+
*/
|
|
9
12
|
export interface Fdc3MessageSentInfo extends BaseEventInfo {
|
|
13
|
+
/**
|
|
14
|
+
* Direction - always 'sent'
|
|
15
|
+
*/
|
|
10
16
|
direction: 'sent';
|
|
11
17
|
/**
|
|
12
|
-
* Type of Event: `RaiseIntent`, `RaiseIntentForContext
|
|
18
|
+
* Type of Event: `RaiseIntent`, `RaiseIntentForContext, `BroadcastMessage`
|
|
13
19
|
*/
|
|
14
20
|
eventType: 'RaiseIntent' | 'RaiseIntentForContext' | 'BroadcastMessage';
|
|
15
21
|
/**
|
|
16
|
-
*
|
|
22
|
+
* FDC3 Intent which caused Event to fire (if type is `RaiseIntent`)
|
|
17
23
|
*/
|
|
18
24
|
intent?: Fdc3IntentType;
|
|
19
25
|
/**
|
|
20
|
-
* Full FDC3 Context for
|
|
26
|
+
* Full FDC3 Context for object related to the Event
|
|
21
27
|
*/
|
|
22
28
|
context: Fdc3Context;
|
|
23
29
|
/**
|
|
24
|
-
*
|
|
30
|
+
* Target application for the message
|
|
25
31
|
*/
|
|
26
32
|
app?: AppIdentifier;
|
|
27
33
|
}
|
|
34
|
+
/**
|
|
35
|
+
* Event Info for FDC3 Received Message Event
|
|
36
|
+
*/
|
|
28
37
|
export interface Fdc3MessageReceivedInfo extends BaseEventInfo {
|
|
38
|
+
/**
|
|
39
|
+
* Direction - always 'received'
|
|
40
|
+
*/
|
|
29
41
|
direction: 'received';
|
|
30
42
|
/**
|
|
31
43
|
* Type of Event: `IntentRaised`, `ContextBroadcast`
|
|
32
44
|
*/
|
|
33
45
|
eventType: 'IntentRaised' | 'ContextBroadcast';
|
|
34
46
|
/**
|
|
35
|
-
*
|
|
47
|
+
* FDC3 Intent which caused Event to fire (if type is `IntentRaised`)
|
|
36
48
|
*/
|
|
37
49
|
intent?: Fdc3IntentType;
|
|
38
50
|
/**
|
|
39
|
-
* Full FDC3 Context for
|
|
51
|
+
* Full FDC3 Context for object related to the Event
|
|
40
52
|
*/
|
|
41
53
|
context: Fdc3Context;
|
|
42
54
|
/**
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "16.0.6
|
|
1
|
+
declare const _default: "16.0.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 = '16.0.6
|
|
3
|
+
exports.default = '16.0.6'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
|