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.
- package/dist/components/app-phone-input/app-phone-input.d.ts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/app-input/app-input.tsx +10 -2
- package/src/components/app-phone-input/app-phone-input.tsx +7 -2
@@ -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 };
|