@genesislcap/foundation-store 14.96.0 → 14.97.0

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.
@@ -256,7 +256,7 @@ export class AbstractStore {
256
256
  */
257
257
  logEvent(key, isAsyncHandler) {
258
258
  if (isDev()) {
259
- logger.info(`'${this.name}': Handle '${String(key)}' store event ${isAsyncHandler ? '[async]' : ''}`);
259
+ logger.debug(`'${this.name}': Handle '${String(key)}' store event ${isAsyncHandler ? '[async]' : ''}`);
260
260
  }
261
261
  }
262
262
  /**
@@ -313,7 +313,7 @@ export class AbstractStore {
313
313
  const [key, detail] = args;
314
314
  const hasDetail = detail !== undefined;
315
315
  if (isDev()) {
316
- logger.info(`'${this.name}': Emit '${key}' store event${hasDetail ? ` with ${logValue(detail)}` : ''}`);
316
+ logger.debug(`'${this.name}': Emit '${key}' store event${hasDetail ? ` with ${logValue(detail)}` : ''}`);
317
317
  }
318
318
  this.root.element.dispatchEvent(new CustomEvent(key, Object.assign({ detail }, internalEmitOptions)));
319
319
  }
@@ -4,7 +4,7 @@
4
4
 
5
5
  ## AbstractStore.commit property
6
6
 
7
- > This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
7
+ > This API is provided as a beta preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
8
8
  >
9
9
 
10
10
  The value commit proxy.
@@ -4,7 +4,7 @@
4
4
 
5
5
  ## AbstractStore.commitValue() method
6
6
 
7
- > This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
7
+ > This API is provided as a beta preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
8
8
  >
9
9
 
10
10
  Alternative value commit api.
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.96.0",
4
+ "version": "14.97.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -25,13 +25,13 @@
25
25
  "serve": "genx serve"
26
26
  },
27
27
  "devDependencies": {
28
- "@genesislcap/genx": "14.96.0",
28
+ "@genesislcap/genx": "14.97.0",
29
29
  "rimraf": "^3.0.2"
30
30
  },
31
31
  "dependencies": {
32
- "@genesislcap/foundation-events": "14.96.0",
33
- "@genesislcap/foundation-logger": "14.96.0",
34
- "@genesislcap/foundation-utils": "14.96.0",
32
+ "@genesislcap/foundation-events": "14.97.0",
33
+ "@genesislcap/foundation-logger": "14.97.0",
34
+ "@genesislcap/foundation-utils": "14.97.0",
35
35
  "@microsoft/fast-element": "^1.7.0",
36
36
  "@microsoft/fast-foundation": "^2.33.2",
37
37
  "fast-safe-stringify": "^2.1.1",
@@ -46,5 +46,5 @@
46
46
  "publishConfig": {
47
47
  "access": "public"
48
48
  },
49
- "gitHead": "65b7a0ee750748ce8a8a5ac374e56fd50623118e"
49
+ "gitHead": "8a8a410a437d11bd1ada9d540411d3701f1382e5"
50
50
  }