@genesislcap/foundation-fdc3 14.192.0 → 14.192.2
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/dist/dts/util/fdc3-context-listener.d.ts +329 -2
- package/dist/dts/util/fdc3-context-listener.d.ts.map +1 -1
- package/dist/dts/util/fdc3-listener.d.ts +329 -2
- package/dist/dts/util/fdc3-listener.d.ts.map +1 -1
- package/dist/dts/util/fdc3-raise-intent.d.ts +329 -2
- package/dist/dts/util/fdc3-raise-intent.d.ts.map +1 -1
- package/dist/esm/util/fdc3-context-listener.js +16 -2
- package/dist/esm/util/fdc3-listener.js +25 -2
- package/dist/esm/util/fdc3-raise-intent.js +11 -3
- package/dist/foundation-fdc3.d.ts +667 -14
- package/docs/api-report.md +10 -3
- package/package.json +14 -14
package/docs/api-report.md
CHANGED
|
@@ -10,7 +10,6 @@ import { Context } from '@finos/fdc3';
|
|
|
10
10
|
import { ContextHandler } from '@finos/fdc3';
|
|
11
11
|
import { Controller } from '@microsoft/fast-element';
|
|
12
12
|
import { DOMContainer } from '@genesislcap/foundation-utils';
|
|
13
|
-
import { FASTElement } from '@genesislcap/web-core';
|
|
14
13
|
import { FoundationElement } from '@genesislcap/web-core';
|
|
15
14
|
import { FoundationElementRegistry } from '@microsoft/fast-foundation';
|
|
16
15
|
import { FoundationLayoutContainer } from '@genesislcap/foundation-utils';
|
|
@@ -128,23 +127,31 @@ export interface FDC3IntentResolution extends IntentResolution {
|
|
|
128
127
|
// @public (undocumented)
|
|
129
128
|
export type FDC3Intents = Intents;
|
|
130
129
|
|
|
130
|
+
// Warning: (ae-forgotten-export) The symbol "Fdc3Listener_base" needs to be exported by the entry point index.d.ts
|
|
131
|
+
//
|
|
131
132
|
// @alpha
|
|
132
|
-
export class Fdc3Listener extends
|
|
133
|
+
export class Fdc3Listener extends Fdc3Listener_base {
|
|
133
134
|
// (undocumented)
|
|
134
135
|
channelConfig: ChannelConfig[];
|
|
135
136
|
// (undocumented)
|
|
136
137
|
connectedCallback(): void;
|
|
137
138
|
// (undocumented)
|
|
139
|
+
deepClone(): Node;
|
|
140
|
+
// (undocumented)
|
|
138
141
|
fdc3: FDC3;
|
|
139
142
|
// (undocumented)
|
|
140
143
|
intentConfig: IntentConfig[];
|
|
141
144
|
}
|
|
142
145
|
|
|
146
|
+
// Warning: (ae-forgotten-export) The symbol "Fdc3RaiseIntent_base" needs to be exported by the entry point index.d.ts
|
|
147
|
+
//
|
|
143
148
|
// @alpha
|
|
144
|
-
export class Fdc3RaiseIntent extends
|
|
149
|
+
export class Fdc3RaiseIntent extends Fdc3RaiseIntent_base {
|
|
145
150
|
// (undocumented)
|
|
146
151
|
connectedCallback(): void;
|
|
147
152
|
// (undocumented)
|
|
153
|
+
deepClone(): Node;
|
|
154
|
+
// (undocumented)
|
|
148
155
|
disconnectedCallback(): void;
|
|
149
156
|
// (undocumented)
|
|
150
157
|
eventName: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-fdc3",
|
|
3
3
|
"description": "Genesis Foundation FDC3",
|
|
4
|
-
"version": "14.192.
|
|
4
|
+
"version": "14.192.2",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -59,22 +59,22 @@
|
|
|
59
59
|
}
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@genesislcap/foundation-testing": "14.192.
|
|
63
|
-
"@genesislcap/genx": "14.192.
|
|
64
|
-
"@genesislcap/rollup-builder": "14.192.
|
|
65
|
-
"@genesislcap/ts-builder": "14.192.
|
|
66
|
-
"@genesislcap/uvu-playwright-builder": "14.192.
|
|
67
|
-
"@genesislcap/vite-builder": "14.192.
|
|
68
|
-
"@genesislcap/webpack-builder": "14.192.
|
|
62
|
+
"@genesislcap/foundation-testing": "14.192.2",
|
|
63
|
+
"@genesislcap/genx": "14.192.2",
|
|
64
|
+
"@genesislcap/rollup-builder": "14.192.2",
|
|
65
|
+
"@genesislcap/ts-builder": "14.192.2",
|
|
66
|
+
"@genesislcap/uvu-playwright-builder": "14.192.2",
|
|
67
|
+
"@genesislcap/vite-builder": "14.192.2",
|
|
68
|
+
"@genesislcap/webpack-builder": "14.192.2",
|
|
69
69
|
"rimraf": "^5.0.0"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
72
|
"@finos/fdc3": "^1.2.0",
|
|
73
|
-
"@genesislcap/foundation-logger": "14.192.
|
|
74
|
-
"@genesislcap/foundation-notifications": "14.192.
|
|
75
|
-
"@genesislcap/foundation-ui": "14.192.
|
|
76
|
-
"@genesislcap/foundation-utils": "14.192.
|
|
77
|
-
"@genesislcap/web-core": "14.192.
|
|
73
|
+
"@genesislcap/foundation-logger": "14.192.2",
|
|
74
|
+
"@genesislcap/foundation-notifications": "14.192.2",
|
|
75
|
+
"@genesislcap/foundation-ui": "14.192.2",
|
|
76
|
+
"@genesislcap/foundation-utils": "14.192.2",
|
|
77
|
+
"@genesislcap/web-core": "14.192.2",
|
|
78
78
|
"@interopio/desktop": "^6.3.1",
|
|
79
79
|
"@microsoft/fast-element": "^1.12.0",
|
|
80
80
|
"@microsoft/fast-foundation": "^2.49.4",
|
|
@@ -88,5 +88,5 @@
|
|
|
88
88
|
"publishConfig": {
|
|
89
89
|
"access": "public"
|
|
90
90
|
},
|
|
91
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "13ed924325bd278f45f1ec1437d78ea26542d27c"
|
|
92
92
|
}
|