@reactables/forms 2.0.0-beta.5 → 2.0.0-beta.6
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -388,7 +388,7 @@ var checkKeys = function (oldObj, newObj) {
|
|
|
388
388
|
var oldKeys = Object.keys(oldObj).slice().sort().join();
|
|
389
389
|
var newKeys = Object.keys(newObj).slice().sort().join();
|
|
390
390
|
if (oldKeys !== newKeys) {
|
|
391
|
-
console.warn("You are trying to update multiple controls but
|
|
391
|
+
console.warn("You are trying to update multiple controls but the keys don't match. It is recommended your keys match. Old keys: ".concat(oldKeys, ". New Keys: ").concat(newKeys, " "));
|
|
392
392
|
}
|
|
393
393
|
};
|
|
394
394
|
var updateDescendantValues = function (form, _a, providers) {
|