@etsoo/react 1.7.58 → 1.7.60

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.
@@ -43,6 +43,10 @@ export class NotifierReact extends NotificationContainer {
43
43
  const creator = (state, update, props) => {
44
44
  // Hold the current state update
45
45
  this.stateUpdate = update;
46
+ // Debug
47
+ if (this.debug) {
48
+ console.debug('NotifierReact.createProvider.render', state, props);
49
+ }
46
50
  // Aligns collection
47
51
  const aligns = [];
48
52
  for (const align in state) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/react",
3
- "version": "1.7.58",
3
+ "version": "1.7.60",
4
4
  "description": "TypeScript ReactJs UI Independent Framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -50,8 +50,8 @@
50
50
  "@emotion/css": "^11.13.0",
51
51
  "@emotion/react": "^11.13.0",
52
52
  "@emotion/styled": "^11.13.0",
53
- "@etsoo/appscript": "^1.5.0",
54
- "@etsoo/notificationbase": "^1.1.45",
53
+ "@etsoo/appscript": "^1.5.1",
54
+ "@etsoo/notificationbase": "^1.1.46",
55
55
  "@etsoo/shared": "^1.2.44",
56
56
  "react": "^18.3.1",
57
57
  "react-dom": "^18.3.1",
@@ -217,6 +217,15 @@ export abstract class NotifierReact
217
217
  // Hold the current state update
218
218
  this.stateUpdate = update;
219
219
 
220
+ // Debug
221
+ if (this.debug) {
222
+ console.debug(
223
+ 'NotifierReact.createProvider.render',
224
+ state,
225
+ props
226
+ );
227
+ }
228
+
220
229
  // Aligns collection
221
230
  const aligns: React.ReactNode[] = [];
222
231
  for (const align in state) {