@etsoo/react 1.3.59 → 1.3.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.
@@ -30,6 +30,7 @@ export class UserState {
30
30
  const lastChangedFields = state.authorized && action.user
31
31
  ? this.getChangedFields(action.user, state)
32
32
  : [];
33
+ console.log('UserState', state, action.user, lastChangedFields);
33
34
  return {
34
35
  ...action.user,
35
36
  authorized: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/react",
3
- "version": "1.3.59",
3
+ "version": "1.3.60",
4
4
  "description": "TypeScript ReactJs framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -78,6 +78,12 @@ export class UserState<D extends IUser> {
78
78
  state.authorized && action.user
79
79
  ? this.getChangedFields(action.user, state)
80
80
  : [];
81
+ console.log(
82
+ 'UserState',
83
+ state,
84
+ action.user,
85
+ lastChangedFields
86
+ );
81
87
  return {
82
88
  ...action.user!,
83
89
  authorized: true,