react-frontend-common-components 0.0.97 → 0.0.99

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.
@@ -4,9 +4,10 @@ interface AppPhoneInputProps {
4
4
  countryIsoCode?: string;
5
5
  countryCode?: string;
6
6
  phone: string;
7
+ placeholder?: string;
7
8
  handleChange: (phone: string, countryCode: string, countryIsoCode: string, uniCode: string) => void;
8
9
  className: string;
9
10
  id: string;
10
11
  }
11
- declare const AppPhoneInput: ({ handleChange, countryIsoCode, phone, className, id, }: AppPhoneInputProps) => import("react/jsx-runtime").JSX.Element;
12
+ declare const AppPhoneInput: ({ handleChange, countryIsoCode, phone, placeholder, className, id, }: AppPhoneInputProps) => import("react/jsx-runtime").JSX.Element;
12
13
  export default AppPhoneInput;
package/dist/index.d.ts CHANGED
@@ -442,10 +442,11 @@ interface AppPhoneInputProps {
442
442
  countryIsoCode?: string;
443
443
  countryCode?: string;
444
444
  phone: string;
445
+ placeholder?: string;
445
446
  handleChange: (phone: string, countryCode: string, countryIsoCode: string, uniCode: string) => void;
446
447
  className: string;
447
448
  id: string;
448
449
  }
449
- declare const AppPhoneInput: ({ handleChange, countryIsoCode, phone, className, id, }: AppPhoneInputProps) => react_jsx_runtime.JSX.Element;
450
+ declare const AppPhoneInput: ({ handleChange, countryIsoCode, phone, placeholder, className, id, }: AppPhoneInputProps) => react_jsx_runtime.JSX.Element;
450
451
 
451
452
  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 };