@genesislcap/foundation-store 14.203.0 → 14.203.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/dist/dts/index.d.ts +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/dts/utils/logger.d.ts +4 -0
- package/dist/dts/utils/logger.d.ts.map +1 -1
- package/dist/esm/index.js +1 -0
- package/dist/esm/utils/logger.js +4 -0
- package/dist/foundation-store.api.json +28 -0
- package/dist/foundation-store.d.ts +7 -0
- package/docs/api/foundation-store.logger.md +13 -0
- package/docs/api/foundation-store.md +1 -0
- package/docs/api-report.md +4 -0
- package/package.json +12 -12
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,cAAc,SAAS,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../../../src/utils/logger.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM,iDAAmC,CAAC"}
|
|
1
|
+
{"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../../../src/utils/logger.ts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,eAAO,MAAM,MAAM,iDAAmC,CAAC"}
|
package/dist/esm/index.js
CHANGED
package/dist/esm/utils/logger.js
CHANGED
|
@@ -2023,6 +2023,34 @@
|
|
|
2023
2023
|
"endIndex": 2
|
|
2024
2024
|
}
|
|
2025
2025
|
},
|
|
2026
|
+
{
|
|
2027
|
+
"kind": "Variable",
|
|
2028
|
+
"canonicalReference": "@genesislcap/foundation-store!logger:var",
|
|
2029
|
+
"docComment": "/**\n * Logger for the foundation-store package\n *\n * @public\n */\n",
|
|
2030
|
+
"excerptTokens": [
|
|
2031
|
+
{
|
|
2032
|
+
"kind": "Content",
|
|
2033
|
+
"text": "logger: "
|
|
2034
|
+
},
|
|
2035
|
+
{
|
|
2036
|
+
"kind": "Content",
|
|
2037
|
+
"text": "import(\"@genesislcap/foundation-logger\")."
|
|
2038
|
+
},
|
|
2039
|
+
{
|
|
2040
|
+
"kind": "Reference",
|
|
2041
|
+
"text": "Logger",
|
|
2042
|
+
"canonicalReference": "@genesislcap/foundation-logger!Logger:interface"
|
|
2043
|
+
}
|
|
2044
|
+
],
|
|
2045
|
+
"fileUrlPath": "src/utils/logger.ts",
|
|
2046
|
+
"isReadonly": true,
|
|
2047
|
+
"releaseTag": "Public",
|
|
2048
|
+
"name": "logger",
|
|
2049
|
+
"variableTypeTokenRange": {
|
|
2050
|
+
"startIndex": 1,
|
|
2051
|
+
"endIndex": 3
|
|
2052
|
+
}
|
|
2053
|
+
},
|
|
2026
2054
|
{
|
|
2027
2055
|
"kind": "Variable",
|
|
2028
2056
|
"canonicalReference": "@genesislcap/foundation-store!registerStore:var",
|
|
@@ -5,6 +5,7 @@ import type { EventDetailMap } from '@genesislcap/foundation-events';
|
|
|
5
5
|
import { ExecutionContext } from '@microsoft/fast-element';
|
|
6
6
|
import { InterfaceSymbol } from '@microsoft/fast-foundation';
|
|
7
7
|
import { Key } from '@microsoft/fast-foundation';
|
|
8
|
+
import { Logger } from '@genesislcap/foundation-logger';
|
|
8
9
|
import { Observable } from 'rxjs';
|
|
9
10
|
|
|
10
11
|
/**
|
|
@@ -379,6 +380,12 @@ export declare enum EventListenerType {
|
|
|
379
380
|
*/
|
|
380
381
|
export declare type KeyOrKeys<TEventDetailMaps extends EventDetailMap> = keyof TEventDetailMaps | (keyof TEventDetailMaps)[];
|
|
381
382
|
|
|
383
|
+
/**
|
|
384
|
+
* Logger for the foundation-store package
|
|
385
|
+
* @public
|
|
386
|
+
*/
|
|
387
|
+
export declare const logger: Logger;
|
|
388
|
+
|
|
382
389
|
/**
|
|
383
390
|
* Creates a dependency injection key for the store being registered.
|
|
384
391
|
* @param Base - The store fragment class.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-store](./foundation-store.md) > [logger](./foundation-store.logger.md)
|
|
4
|
+
|
|
5
|
+
## logger variable
|
|
6
|
+
|
|
7
|
+
Logger for the foundation-store package
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
logger: import("@genesislcap/foundation-logger").Logger
|
|
13
|
+
```
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
| Variable | Description |
|
|
27
27
|
| --- | --- |
|
|
28
28
|
| [createErrorMap](./foundation-store.createerrormap.md) | A factory to create the error map. |
|
|
29
|
+
| [logger](./foundation-store.logger.md) | Logger for the foundation-store package |
|
|
29
30
|
| [registerStore](./foundation-store.registerstore.md) | Creates a dependency injection key for the store being registered. |
|
|
30
31
|
|
|
31
32
|
## Type Aliases
|
package/docs/api-report.md
CHANGED
|
@@ -11,6 +11,7 @@ import type { EventDetailMap } from '@genesislcap/foundation-events';
|
|
|
11
11
|
import { ExecutionContext } from '@microsoft/fast-element';
|
|
12
12
|
import { InterfaceSymbol } from '@microsoft/fast-foundation';
|
|
13
13
|
import { Key } from '@microsoft/fast-foundation';
|
|
14
|
+
import { Logger } from '@genesislcap/foundation-logger';
|
|
14
15
|
import { Observable } from 'rxjs';
|
|
15
16
|
|
|
16
17
|
// @public
|
|
@@ -108,6 +109,9 @@ export enum EventListenerType {
|
|
|
108
109
|
// @internal (undocumented)
|
|
109
110
|
export type KeyOrKeys<TEventDetailMaps extends EventDetailMap> = keyof TEventDetailMaps | (keyof TEventDetailMaps)[];
|
|
110
111
|
|
|
112
|
+
// @public
|
|
113
|
+
export const logger: Logger;
|
|
114
|
+
|
|
111
115
|
// @public
|
|
112
116
|
export const registerStore: <K extends Key>(Base: Constructable<Store>, name?: string) => InterfaceSymbol<K>;
|
|
113
117
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-store",
|
|
3
3
|
"description": "Genesis Foundation Store",
|
|
4
|
-
"version": "14.203.
|
|
4
|
+
"version": "14.203.1",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -36,19 +36,19 @@
|
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@genesislcap/foundation-testing": "14.203.
|
|
40
|
-
"@genesislcap/genx": "14.203.
|
|
41
|
-
"@genesislcap/rollup-builder": "14.203.
|
|
42
|
-
"@genesislcap/ts-builder": "14.203.
|
|
43
|
-
"@genesislcap/uvu-playwright-builder": "14.203.
|
|
44
|
-
"@genesislcap/vite-builder": "14.203.
|
|
45
|
-
"@genesislcap/webpack-builder": "14.203.
|
|
39
|
+
"@genesislcap/foundation-testing": "14.203.1",
|
|
40
|
+
"@genesislcap/genx": "14.203.1",
|
|
41
|
+
"@genesislcap/rollup-builder": "14.203.1",
|
|
42
|
+
"@genesislcap/ts-builder": "14.203.1",
|
|
43
|
+
"@genesislcap/uvu-playwright-builder": "14.203.1",
|
|
44
|
+
"@genesislcap/vite-builder": "14.203.1",
|
|
45
|
+
"@genesislcap/webpack-builder": "14.203.1",
|
|
46
46
|
"rimraf": "^5.0.0"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@genesislcap/foundation-events": "14.203.
|
|
50
|
-
"@genesislcap/foundation-logger": "14.203.
|
|
51
|
-
"@genesislcap/foundation-utils": "14.203.
|
|
49
|
+
"@genesislcap/foundation-events": "14.203.1",
|
|
50
|
+
"@genesislcap/foundation-logger": "14.203.1",
|
|
51
|
+
"@genesislcap/foundation-utils": "14.203.1",
|
|
52
52
|
"@microsoft/fast-element": "^1.12.0",
|
|
53
53
|
"@microsoft/fast-foundation": "^2.49.4",
|
|
54
54
|
"@microsoft/fast-web-utilities": "^5.4.1",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"publishConfig": {
|
|
65
65
|
"access": "public"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "2d342adc330f867e7bd44979d1e3d8b4d94b14da"
|
|
68
68
|
}
|