@genesislcap/foundation-fdc3 14.203.0 → 14.203.2-alpha-9f2807c.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/esm/index.js +1 -0
- package/dist/foundation-fdc3.api.json +28 -0
- package/dist/foundation-fdc3.d.ts +7 -0
- package/docs/api/foundation-fdc3.logger.md +13 -0
- package/docs/api/foundation-fdc3.md +1 -0
- package/docs/api-report.md +4 -0
- package/package.json +14 -14
package/dist/dts/index.d.ts
CHANGED
package/dist/dts/index.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAEtD,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,MAAM;QACd,EAAE,EAAE,gBAAgB,CAAC,GAAG,CAAC;KAC1B;CACF;AAGD,cAAc,QAAQ,CAAC;AACvB,cAAc,sBAAsB,CAAC;AACrC,cAAc,QAAQ,CAAC;AACvB,cAAc,gDAAgD,CAAC"}
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAEtD,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,MAAM;QACd,EAAE,EAAE,gBAAgB,CAAC,GAAG,CAAC;KAC1B;CACF;AAGD,cAAc,QAAQ,CAAC;AACvB,cAAc,sBAAsB,CAAC;AACrC,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,gDAAgD,CAAC"}
|
package/dist/esm/index.js
CHANGED
@@ -1687,6 +1687,34 @@
|
|
1687
1687
|
"endIndex": 2
|
1688
1688
|
},
|
1689
1689
|
"implementsTokenRanges": []
|
1690
|
+
},
|
1691
|
+
{
|
1692
|
+
"kind": "Variable",
|
1693
|
+
"canonicalReference": "@genesislcap/foundation-fdc3!logger:var",
|
1694
|
+
"docComment": "/**\n * Logger for the foundation-fdc3 package\n *\n * @public\n */\n",
|
1695
|
+
"excerptTokens": [
|
1696
|
+
{
|
1697
|
+
"kind": "Content",
|
1698
|
+
"text": "logger: "
|
1699
|
+
},
|
1700
|
+
{
|
1701
|
+
"kind": "Content",
|
1702
|
+
"text": "import(\"@genesislcap/foundation-logger\")."
|
1703
|
+
},
|
1704
|
+
{
|
1705
|
+
"kind": "Reference",
|
1706
|
+
"text": "Logger",
|
1707
|
+
"canonicalReference": "@genesislcap/foundation-logger!Logger:interface"
|
1708
|
+
}
|
1709
|
+
],
|
1710
|
+
"fileUrlPath": "src/utils.ts",
|
1711
|
+
"isReadonly": true,
|
1712
|
+
"releaseTag": "Public",
|
1713
|
+
"name": "logger",
|
1714
|
+
"variableTypeTokenRange": {
|
1715
|
+
"startIndex": 1,
|
1716
|
+
"endIndex": 3
|
1717
|
+
}
|
1690
1718
|
}
|
1691
1719
|
]
|
1692
1720
|
}
|
@@ -12,6 +12,7 @@ import { Intents } from '@finos/fdc3';
|
|
12
12
|
import { InterfaceSymbol } from '@microsoft/fast-foundation';
|
13
13
|
import { IOConnectDesktop } from '@interopio/desktop';
|
14
14
|
import { LayoutCacheContainer } from '@genesislcap/foundation-utils';
|
15
|
+
import { Logger } from '@genesislcap/foundation-logger';
|
15
16
|
import { NotificationDataRow } from '@genesislcap/foundation-notifications';
|
16
17
|
import { NotificationListener } from '@genesislcap/foundation-ui';
|
17
18
|
import { Observable } from 'rxjs';
|
@@ -1632,6 +1633,12 @@ export declare class InteropNotificationsListener extends NotificationListener {
|
|
1632
1633
|
protected showNotificationToast(row: NotificationDataRow): void;
|
1633
1634
|
}
|
1634
1635
|
|
1636
|
+
/**
|
1637
|
+
* Logger for the foundation-fdc3 package
|
1638
|
+
* @public
|
1639
|
+
*/
|
1640
|
+
export declare const logger: Logger;
|
1641
|
+
|
1635
1642
|
/**
|
1636
1643
|
* System channel listener config. System channels are also known as color channels
|
1637
1644
|
* @alpha
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-fdc3](./foundation-fdc3.md) > [logger](./foundation-fdc3.logger.md)
|
4
|
+
|
5
|
+
## logger variable
|
6
|
+
|
7
|
+
Logger for the foundation-fdc3 package
|
8
|
+
|
9
|
+
**Signature:**
|
10
|
+
|
11
|
+
```typescript
|
12
|
+
logger: import("@genesislcap/foundation-logger").Logger
|
13
|
+
```
|
@@ -25,6 +25,7 @@
|
|
25
25
|
| Variable | Description |
|
26
26
|
| --- | --- |
|
27
27
|
| [interopFoundationNotificationListener](./foundation-fdc3.interopfoundationnotificationlistener.md) | The Foundation Interop Notification Listener |
|
28
|
+
| [logger](./foundation-fdc3.logger.md) | Logger for the foundation-fdc3 package |
|
28
29
|
|
29
30
|
## Type Aliases
|
30
31
|
|
package/docs/api-report.md
CHANGED
@@ -18,6 +18,7 @@ import { Intents } from '@finos/fdc3';
|
|
18
18
|
import { InterfaceSymbol } from '@microsoft/fast-foundation';
|
19
19
|
import { IOConnectDesktop } from '@interopio/desktop';
|
20
20
|
import { LayoutCacheContainer } from '@genesislcap/foundation-utils';
|
21
|
+
import { Logger } from '@genesislcap/foundation-logger';
|
21
22
|
import { NotificationDataRow } from '@genesislcap/foundation-notifications';
|
22
23
|
import { NotificationListener } from '@genesislcap/foundation-ui';
|
23
24
|
import { Observable } from 'rxjs';
|
@@ -234,6 +235,9 @@ export class InteropNotificationsListener extends NotificationListener {
|
|
234
235
|
protected showNotificationToast(row: NotificationDataRow): void;
|
235
236
|
}
|
236
237
|
|
238
|
+
// @public
|
239
|
+
export const logger: Logger;
|
240
|
+
|
237
241
|
// @alpha
|
238
242
|
export interface SystemChannelListenerConfig {
|
239
243
|
// (undocumented)
|
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.203.0",
|
4
|
+
"version": "14.203.2-alpha-9f2807c.0",
|
5
5
|
"sideEffects": false,
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
7
7
|
"main": "dist/esm/index.js",
|
@@ -59,23 +59,23 @@
|
|
59
59
|
}
|
60
60
|
},
|
61
61
|
"devDependencies": {
|
62
|
-
"@genesislcap/foundation-testing": "14.203.0",
|
63
|
-
"@genesislcap/genx": "14.203.0",
|
64
|
-
"@genesislcap/rollup-builder": "14.203.0",
|
65
|
-
"@genesislcap/ts-builder": "14.203.0",
|
66
|
-
"@genesislcap/uvu-playwright-builder": "14.203.0",
|
67
|
-
"@genesislcap/vite-builder": "14.203.0",
|
68
|
-
"@genesislcap/webpack-builder": "14.203.0",
|
62
|
+
"@genesislcap/foundation-testing": "14.203.2-alpha-9f2807c.0",
|
63
|
+
"@genesislcap/genx": "14.203.2-alpha-9f2807c.0",
|
64
|
+
"@genesislcap/rollup-builder": "14.203.2-alpha-9f2807c.0",
|
65
|
+
"@genesislcap/ts-builder": "14.203.2-alpha-9f2807c.0",
|
66
|
+
"@genesislcap/uvu-playwright-builder": "14.203.2-alpha-9f2807c.0",
|
67
|
+
"@genesislcap/vite-builder": "14.203.2-alpha-9f2807c.0",
|
68
|
+
"@genesislcap/webpack-builder": "14.203.2-alpha-9f2807c.0",
|
69
69
|
"rimraf": "^5.0.0",
|
70
70
|
"sinon": "^17.0.1"
|
71
71
|
},
|
72
72
|
"dependencies": {
|
73
73
|
"@finos/fdc3": "^1.2.0",
|
74
|
-
"@genesislcap/foundation-logger": "14.203.0",
|
75
|
-
"@genesislcap/foundation-notifications": "14.203.0",
|
76
|
-
"@genesislcap/foundation-ui": "14.203.0",
|
77
|
-
"@genesislcap/foundation-utils": "14.203.0",
|
78
|
-
"@genesislcap/web-core": "14.203.0",
|
74
|
+
"@genesislcap/foundation-logger": "14.203.2-alpha-9f2807c.0",
|
75
|
+
"@genesislcap/foundation-notifications": "14.203.2-alpha-9f2807c.0",
|
76
|
+
"@genesislcap/foundation-ui": "14.203.2-alpha-9f2807c.0",
|
77
|
+
"@genesislcap/foundation-utils": "14.203.2-alpha-9f2807c.0",
|
78
|
+
"@genesislcap/web-core": "14.203.2-alpha-9f2807c.0",
|
79
79
|
"@interopio/desktop": "^6.3.1",
|
80
80
|
"@microsoft/fast-element": "^1.12.0",
|
81
81
|
"@microsoft/fast-foundation": "^2.49.4",
|
@@ -90,5 +90,5 @@
|
|
90
90
|
"publishConfig": {
|
91
91
|
"access": "public"
|
92
92
|
},
|
93
|
-
"gitHead": "
|
93
|
+
"gitHead": "387e4c10a1ada9189d6cb3bed778a7aabdda6ee5"
|
94
94
|
}
|