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.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/shared/models/components/common.model.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/shared/models/components/common.model.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
@@ -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;
|