@srimandir/astrology-common 7.2.0 → 7.2.2
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/astrology-common.css +1 -1
- package/dist/components/CircularMarquee/CircularMarquee.d.ts +1 -1
- package/dist/components/ConsultationSlotSelector/types.d.ts +3 -1
- package/dist/components/Consultations/AstrologerCard.d.ts +11 -0
- package/dist/components/Consultations/AstrologerList.d.ts +18 -0
- package/dist/components/Consultations/AstrologerPhoto.d.ts +9 -0
- package/dist/components/Consultations/RecommendedBadge.d.ts +7 -0
- package/dist/components/Consultations/icons.d.ts +5 -0
- package/dist/components/Consultations/index.d.ts +6 -0
- package/dist/components/Consultations/mockAstrologers.d.ts +2 -0
- package/dist/components/Consultations/types.d.ts +10 -0
- package/dist/components/ContactUsSection/ContactUsSection.d.ts +1 -1
- package/dist/components/FAQAccordion/FAQAccordion.d.ts +1 -1
- package/dist/components/FooterShell/FooterCTAButton.d.ts +1 -1
- package/dist/components/FooterShell/FooterShell.d.ts +1 -1
- package/dist/components/FormCheckboxWithHelp/FormCheckboxWithHelp.d.ts +1 -1
- package/dist/components/FormContainer/FormContainer.d.ts +1 -1
- package/dist/components/FormDateInput/FormDateInput.d.ts +1 -1
- package/dist/components/FormField/FormField.d.ts +1 -1
- package/dist/components/FormFooterNote/FormFooterNote.d.ts +1 -1
- package/dist/components/FormLocationInput/FormLocationInput.d.ts +1 -1
- package/dist/components/FormSectionHeader/FormSectionHeader.d.ts +1 -1
- package/dist/components/FormSegmentedControl/FormSegmentedControl.d.ts +1 -1
- package/dist/components/FormTagPills/FormTagPills.d.ts +1 -1
- package/dist/components/FormTextInput/FormTextInput.d.ts +1 -1
- package/dist/components/FormTimeInput/FormTimeInput.d.ts +1 -1
- package/dist/components/MarqueeStrip/MarqueeStrip.d.ts +1 -1
- package/dist/components/PageHeader/PageHeader.d.ts +1 -1
- package/dist/components/PhoneNumberInput/PhoneNumberInput.d.ts +27 -0
- package/dist/components/PhoneNumberInput/countries.d.ts +13 -0
- package/dist/components/PhoneNumberInput/icons.d.ts +3 -0
- package/dist/components/PhoneNumberInput/index.d.ts +3 -0
- package/dist/components/PhoneNumberInput/usePhoneNumberInput.d.ts +22 -0
- package/dist/components/PrivacyBanner/PrivacyBanner.d.ts +1 -1
- package/dist/components/UserReviewsSection/UserReviewsSection.d.ts +1 -1
- package/dist/index.cjs +1 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1388 -1517
- package/dist/index.js.map +1 -1
- package/dist/utils/phoneValidation.d.ts +6 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -16,3 +16,7 @@ export { ContactUsSection } from './components/ContactUsSection';
|
|
|
16
16
|
export type { ContactUsSectionProps } from './components/ContactUsSection';
|
|
17
17
|
export { ConsultationSlotSelector, PhoneNumberSection, AstrologyProfilesSection, formatSlotTime, formatSlotDayLabel, CONSULTATION_PERIOD_ORDER, CONSULTATION_LANGUAGE_OPTIONS, MOCK_SLOT_DAYS, MOCK_SLOT_DAYS_EMPTY, } from './components/ConsultationSlotSelector';
|
|
18
18
|
export type { ConsultationSlotSelectorProps, PhoneNumberSectionProps, AstrologyProfilesSectionProps, AstrologyProfile, ConsultationSlot, ConsultationSlotDay, ConsultationSlotPeriod, ConsultationSlotDateLabel, ConsultationLanguageOption, } from './components/ConsultationSlotSelector';
|
|
19
|
+
export { PhoneNumberInput, validatePhoneByCountryCode, getMaxLengthForCountry, DEFAULT_COUNTRIES, getFlagEmoji, } from './components/PhoneNumberInput';
|
|
20
|
+
export type { PhoneNumberInputProps, Country, } from './components/PhoneNumberInput';
|
|
21
|
+
export { AstrologerCard, AstrologerPhoto, RecommendedBadge, AstrologerList, MOCK_ASTROLOGERS, } from './components/Consultations';
|
|
22
|
+
export type { AstrologerCardProps, AstrologerPhotoProps, RecommendedBadgeProps, AstrologerListProps, AstrologerListItem, } from './components/Consultations';
|