@jsonui/core 0.7.2 → 0.7.4

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/esm/index.js CHANGED
@@ -6711,7 +6711,7 @@ var ReduxPathTypeEnum;
6711
6711
  ReduxPathTypeEnum["TOUCH"] = "TOUCH";
6712
6712
  ReduxPathTypeEnum["NORMAL"] = "NORMAL";
6713
6713
  })(ReduxPathTypeEnum || (ReduxPathTypeEnum = {}));const getState = (state) => state === null || state === void 0 ? void 0 : state.root;
6714
- const getValue = (state, store, path) => jsonPointerGet(state[store], path) || null;
6714
+ const getValue = (state, store, path) => jsonPointerGet(state[store], path);
6715
6715
  const getStoreNameFromType = (store, type) =>
6716
6716
  // eslint-disable-next-line no-nested-ternary
6717
6717
  type === ReduxPathTypeEnum.ERROR ? `${store}${STORE_ERROR_POSTFIX}` : type === ReduxPathTypeEnum.TOUCH ? `${store}${STORE_TOUCH_POSTFIX}` : `${store}`;