@etsoo/react 1.3.54 → 1.3.55

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.
@@ -67,7 +67,7 @@ export class UserState {
67
67
  this.provider = provider;
68
68
  }
69
69
  getChangedFields(input, init) {
70
- return Utils.getDataChanges(input, init, [
70
+ return Utils.objectUpdated(input, init, [
71
71
  'seconds',
72
72
  'lastChangedFields'
73
73
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/react",
3
- "version": "1.3.54",
3
+ "version": "1.3.55",
4
4
  "description": "TypeScript ReactJs framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -52,7 +52,7 @@
52
52
  "@emotion/styled": "^11.6.0",
53
53
  "@etsoo/appscript": "^1.1.79",
54
54
  "@etsoo/notificationbase": "^1.0.94",
55
- "@etsoo/shared": "^1.0.76",
55
+ "@etsoo/shared": "^1.0.78",
56
56
  "@mui/icons-material": "^5.2.4",
57
57
  "@mui/material": "^5.2.4",
58
58
  "@reach/router": "^1.3.4",
@@ -123,7 +123,7 @@ export class UserState<D extends IUser> {
123
123
  }
124
124
 
125
125
  private getChangedFields(input: {}, init: {}) {
126
- return Utils.getDataChanges(input, init, [
126
+ return Utils.objectUpdated(input, init, [
127
127
  'seconds',
128
128
  'lastChangedFields'
129
129
  ]);