react-frontend-common-components 0.0.68 → 0.0.70
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 +2 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/app-input/app-input.css +0 -2
- package/src/components/app-password-input/app-password-input.css +0 -1
- package/src/components/app-phone-input/app-phone-input.tsx +14 -3
- package/src/components/app-select/app-select.css +2 -1
package/dist/index.d.ts
CHANGED
@@ -435,10 +435,11 @@ declare const AppFloatButton: ({ className, onClick, onMouseEnter, ...props }: A
|
|
435
435
|
interface AppPhoneInputProps {
|
436
436
|
value: string;
|
437
437
|
countryCode?: string;
|
438
|
+
phone: string;
|
438
439
|
handleChange: (phone: string, countryCode: string, uniCode: string) => void;
|
439
440
|
className: string;
|
440
441
|
id: string;
|
441
442
|
}
|
442
|
-
declare const AppPhoneInput: ({ value, handleChange, countryCode, className, id, }: AppPhoneInputProps) => react_jsx_runtime.JSX.Element;
|
443
|
+
declare const AppPhoneInput: ({ value, handleChange, countryCode, phone, className, id, }: AppPhoneInputProps) => react_jsx_runtime.JSX.Element;
|
443
444
|
|
444
445
|
export { AppAvatar, AppBackArrow, AppBadge, AppBreadcrumb, AppButton, AppCard, AppCarousel, AppChart, AppCheckboxText, AppCollapse, AppCustomLoader, AppDivider, AppFloatButton, AppImageBox, AppInput, AppLabel, AppList, AppLoader, AppLocationMap, AppModal, AppOtpField, AppPagination, AppPasswordInput, AppPhoneInput, AppPopover, AppProgress, AppRadioGroup, AppSelect, AppSelectAdd, Sidebar as AppSidebar, AppTab, AppTable, AppTag, AppTextarea, AppTitle, AppToggleButton, AppUploadImage, OverViewCard };
|