@bluemarble/bm-components 1.12.0 → 1.12.2
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.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3258,7 +3258,8 @@ function FormikInputMask(_a) {
|
|
|
3258
3258
|
formikSaveFunction.current = setFieldValue;
|
|
3259
3259
|
return /* @__PURE__ */ React11.createElement(
|
|
3260
3260
|
BaseInput,
|
|
3261
|
-
__spreadProps(__spreadValues(
|
|
3261
|
+
__spreadProps(__spreadValues({}, rest), {
|
|
3262
|
+
name: field.name,
|
|
3262
3263
|
inputRef: ref,
|
|
3263
3264
|
error: Boolean(error),
|
|
3264
3265
|
helperText: error
|
|
@@ -4901,6 +4902,8 @@ function useGrid({
|
|
|
4901
4902
|
};
|
|
4902
4903
|
}
|
|
4903
4904
|
function searchKeysForValue(row, compare) {
|
|
4905
|
+
if (typeof row === "undefined")
|
|
4906
|
+
return false;
|
|
4904
4907
|
const rowKeys = Object.keys(row);
|
|
4905
4908
|
let match = false;
|
|
4906
4909
|
const isNumberOrString = (value) => ["number", "string"].includes(typeof value);
|