@alfalab/core-components-phone-input 7.3.9 → 7.3.10

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/Component.js CHANGED
@@ -109,5 +109,6 @@ var PhoneInput = React__default.default.forwardRef(function (_a, ref) {
109
109
  }, [clearableCountryCode]);
110
110
  return (React__default.default.createElement(coreComponentsMaskedInput.MaskedInput, tslib.__assign({}, restProps, { defaultValue: clearableCountryCode ? restProps.defaultValue : countryPrefix, mask: mask, onBeforeDisplay: handleBeforeDisplay, type: 'tel', ref: mergeRefs__default.default([ref, inputRef]) })));
111
111
  });
112
+ PhoneInput.displayName = 'PhoneInputs';
112
113
 
113
114
  exports.PhoneInput = PhoneInput;
package/cssm/Component.js CHANGED
@@ -109,5 +109,6 @@ var PhoneInput = React__default.default.forwardRef(function (_a, ref) {
109
109
  }, [clearableCountryCode]);
110
110
  return (React__default.default.createElement(coreComponentsMaskedInput.MaskedInput, tslib.__assign({}, restProps, { defaultValue: clearableCountryCode ? restProps.defaultValue : countryPrefix, mask: mask, onBeforeDisplay: handleBeforeDisplay, type: 'tel', ref: mergeRefs__default.default([ref, inputRef]) })));
111
111
  });
112
+ PhoneInput.displayName = 'PhoneInputs';
112
113
 
113
114
  exports.PhoneInput = PhoneInput;
package/esm/Component.js CHANGED
@@ -100,5 +100,6 @@ var PhoneInput = React.forwardRef(function (_a, ref) {
100
100
  }, [clearableCountryCode]);
101
101
  return (React.createElement(MaskedInput, __assign({}, restProps, { defaultValue: clearableCountryCode ? restProps.defaultValue : countryPrefix, mask: mask, onBeforeDisplay: handleBeforeDisplay, type: 'tel', ref: mergeRefs([ref, inputRef]) })));
102
102
  });
103
+ PhoneInput.displayName = 'PhoneInputs';
103
104
 
104
105
  export { PhoneInput };
@@ -99,5 +99,6 @@ const PhoneInput = React.forwardRef(({ clearableCountryCode = true, ...restProps
99
99
  }, [clearableCountryCode]);
100
100
  return (React.createElement(MaskedInput, { ...restProps, defaultValue: clearableCountryCode ? restProps.defaultValue : countryPrefix, mask: mask, onBeforeDisplay: handleBeforeDisplay, type: 'tel', ref: mergeRefs([ref, inputRef]) }));
101
101
  });
102
+ PhoneInput.displayName = 'PhoneInputs';
102
103
 
103
104
  export { PhoneInput };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfalab/core-components-phone-input",
3
- "version": "7.3.9",
3
+ "version": "7.3.10",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "MIT",
@@ -14,7 +14,7 @@
14
14
  "react": "^16.9.0 || ^17.0.1 || ^18.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@alfalab/core-components-masked-input": "^6.3.8",
17
+ "@alfalab/core-components-masked-input": "^6.3.9",
18
18
  "react-merge-refs": "^1.1.0",
19
19
  "text-mask-core": "^5.1.2",
20
20
  "tslib": "^2.4.0"
package/src/Component.tsx CHANGED
@@ -147,3 +147,5 @@ export const PhoneInput = React.forwardRef<HTMLInputElement, PhoneInputProps>(
147
147
  );
148
148
  },
149
149
  );
150
+
151
+ PhoneInput.displayName = 'PhoneInputs';