@uniformdev/context 19.128.1-alpha.12 → 19.128.1-alpha.13

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/dist/index.esm.js CHANGED
@@ -1150,8 +1150,8 @@ function applyCommandsToData(commands, state, inControlGroup) {
1150
1150
  index: command.data.index,
1151
1151
  control: command.data.control
1152
1152
  });
1153
- } else if (existingDef.control !== command.data.control) {
1154
- existingDef.control = command.data.control;
1153
+ } else {
1154
+ console.warn("Overwriting existing control group definition is not allowed");
1155
1155
  }
1156
1156
  break;
1157
1157
  default:
package/dist/index.js CHANGED
@@ -1220,8 +1220,8 @@ function applyCommandsToData(commands, state, inControlGroup) {
1220
1220
  index: command.data.index,
1221
1221
  control: command.data.control
1222
1222
  });
1223
- } else if (existingDef.control !== command.data.control) {
1224
- existingDef.control = command.data.control;
1223
+ } else {
1224
+ console.warn("Overwriting existing control group definition is not allowed");
1225
1225
  }
1226
1226
  break;
1227
1227
  default:
package/dist/index.mjs CHANGED
@@ -1150,8 +1150,8 @@ function applyCommandsToData(commands, state, inControlGroup) {
1150
1150
  index: command.data.index,
1151
1151
  control: command.data.control
1152
1152
  });
1153
- } else if (existingDef.control !== command.data.control) {
1154
- existingDef.control = command.data.control;
1153
+ } else {
1154
+ console.warn("Overwriting existing control group definition is not allowed");
1155
1155
  }
1156
1156
  break;
1157
1157
  default:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/context",
3
- "version": "19.128.1-alpha.12+257ca411a1",
3
+ "version": "19.128.1-alpha.13+43aae451f5",
4
4
  "description": "Uniform Context core package",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -66,5 +66,5 @@
66
66
  "publishConfig": {
67
67
  "access": "public"
68
68
  },
69
- "gitHead": "257ca411a1416b6486147689285a1642546967a0"
69
+ "gitHead": "43aae451f56db9125e3f2c875fe1ce5a95a501f2"
70
70
  }