dfh-ui-library 1.13.79 → 1.13.80

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.
@@ -276,6 +276,7 @@ export interface PhoneNumberInputProps {
276
276
  export interface SsnInputProps {
277
277
  value: string;
278
278
  onChange: (value: string) => void;
279
+ onBlur?: (event: React.FocusEvent<HTMLInputElement>) => void;
279
280
  placeholder?: string;
280
281
  additionalClasses?: string | undefined;
281
282
  error?: string;
package/dist/index.d.ts CHANGED
@@ -254,6 +254,7 @@ interface PhoneNumberInputProps {
254
254
  interface SsnInputProps {
255
255
  value: string;
256
256
  onChange: (value: string) => void;
257
+ onBlur?: (event: React.FocusEvent<HTMLInputElement>) => void;
257
258
  placeholder?: string;
258
259
  additionalClasses?: string | undefined;
259
260
  error?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.13.79",
3
+ "version": "1.13.80",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",