dfh-ui-library 1.2.16 → 1.2.17
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/components/PhoneNumberInput/index.d.ts +1 -0
- package/dist/cjs/types/components/index.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/PhoneNumberInput/index.d.ts +1 -0
- package/dist/esm/types/components/index.d.ts +1 -0
- package/dist/index.d.ts +7 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as PhoneNumberInput } from "./PhoneNumberInput";
|
package/dist/index.d.ts
CHANGED
|
@@ -80,6 +80,10 @@ interface CustomDatePickerProps {
|
|
|
80
80
|
selectedDate: Date | null;
|
|
81
81
|
onChange: (date: Date | null) => void;
|
|
82
82
|
}
|
|
83
|
+
interface PhoneNumberInputProps {
|
|
84
|
+
value: string;
|
|
85
|
+
onChange: (value: string) => void;
|
|
86
|
+
}
|
|
83
87
|
|
|
84
88
|
interface IButtonProps extends IChildrenProp, IAdditionalClassesProp, IIconTypeProp, IOnClickEventProps {
|
|
85
89
|
/**
|
|
@@ -456,6 +460,8 @@ interface RowProps {
|
|
|
456
460
|
}
|
|
457
461
|
declare const Row: React$1.FC<RowProps>;
|
|
458
462
|
|
|
463
|
+
declare const PhoneNumberInput: React$1.FC<PhoneNumberInputProps>;
|
|
464
|
+
|
|
459
465
|
interface UseSchemaProcessorProps {
|
|
460
466
|
schema: ISchema[];
|
|
461
467
|
externalSetComponents: (data: IComponent[]) => void;
|
|
@@ -464,4 +470,4 @@ declare const useSchemaProcessor: ({ schema, externalSetComponents, }: UseSchema
|
|
|
464
470
|
componentsRtn: IComponent[] | undefined;
|
|
465
471
|
};
|
|
466
472
|
|
|
467
|
-
export { Breadcrumb, Button, Card, Checkbox as CheckBox, DFHFormProvider as ComponentProvider, CustomDatePicker as DatePicker, IconInput, ImagePreview, Input, type InputType, InputValidation, Label, LoadingSpinner, Logo, type LogoProps, Message, type MessageProps, NavBar, RadioButton, Row, Select, Textarea, Typhography, useSchemaProcessor as UseSchemaProcessor };
|
|
473
|
+
export { Breadcrumb, Button, Card, Checkbox as CheckBox, DFHFormProvider as ComponentProvider, CustomDatePicker as DatePicker, IconInput, ImagePreview, Input, type InputType, InputValidation, Label, LoadingSpinner, Logo, type LogoProps, Message, type MessageProps, NavBar, PhoneNumberInput, RadioButton, Row, Select, Textarea, Typhography, useSchemaProcessor as UseSchemaProcessor };
|