react-frontend-common-components 0.0.9 → 0.0.12
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.ts +11 -1
- package/dist/index.js +10 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/rollup.config.js +2 -0
- package/src/components/app-phone-field/app-phone-field.tsx +37 -34
- package/src/index.ts +1 -2
package/dist/index.d.ts
CHANGED
@@ -418,4 +418,14 @@ interface AppFloatButtonProps extends FloatButtonProps {
|
|
418
418
|
}
|
419
419
|
declare const AppFloatButton: ({ className, onClick, onMouseEnter, ...props }: AppFloatButtonProps) => react_jsx_runtime.JSX.Element;
|
420
420
|
|
421
|
-
|
421
|
+
interface AppPhoneFieldProps {
|
422
|
+
phone: string;
|
423
|
+
setPhone: (phone: string) => void;
|
424
|
+
phoneError: string;
|
425
|
+
setPhoneError: (error: string) => void;
|
426
|
+
setCustomerCountryCode: (code: string) => void;
|
427
|
+
className?: string;
|
428
|
+
}
|
429
|
+
declare const AppPhoneField: ({ phone, setPhone, phoneError, setPhoneError, setCustomerCountryCode, className, }: AppPhoneFieldProps) => react_jsx_runtime.JSX.Element;
|
430
|
+
|
431
|
+
export { AppAvatar, AppBackArrow, AppBadge, AppBreadcrumb, AppButton, AppCard, AppCarousel, AppChart, AppCheckboxText, AppCollapse, AppCustomLoader, AppDivider, AppFloatButton, AppImageBox, AppInput, AppLabel, AppList, AppLoader, AppLocationMap, AppModal, AppOtpField, AppPagination, AppPasswordInput, AppPhoneField, AppPopover, AppProgress, AppRadioGroup, AppSelect, AppSelectAdd, Sidebar as AppSidebar, AppTab, AppTable, AppTag, AppTextarea, AppTitle, AppToggleButton, AppUploadImage, OverViewCard };
|