@etsoo/react 1.7.59 → 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.
package/lib/notifier/Notifier.js
CHANGED
|
@@ -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
package/src/notifier/Notifier.ts
CHANGED
|
@@ -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) {
|