@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.
Files changed (42) hide show
  1. package/dist/astrology-common.css +1 -1
  2. package/dist/components/CircularMarquee/CircularMarquee.d.ts +1 -1
  3. package/dist/components/ConsultationSlotSelector/types.d.ts +3 -1
  4. package/dist/components/Consultations/AstrologerCard.d.ts +11 -0
  5. package/dist/components/Consultations/AstrologerList.d.ts +18 -0
  6. package/dist/components/Consultations/AstrologerPhoto.d.ts +9 -0
  7. package/dist/components/Consultations/RecommendedBadge.d.ts +7 -0
  8. package/dist/components/Consultations/icons.d.ts +5 -0
  9. package/dist/components/Consultations/index.d.ts +6 -0
  10. package/dist/components/Consultations/mockAstrologers.d.ts +2 -0
  11. package/dist/components/Consultations/types.d.ts +10 -0
  12. package/dist/components/ContactUsSection/ContactUsSection.d.ts +1 -1
  13. package/dist/components/FAQAccordion/FAQAccordion.d.ts +1 -1
  14. package/dist/components/FooterShell/FooterCTAButton.d.ts +1 -1
  15. package/dist/components/FooterShell/FooterShell.d.ts +1 -1
  16. package/dist/components/FormCheckboxWithHelp/FormCheckboxWithHelp.d.ts +1 -1
  17. package/dist/components/FormContainer/FormContainer.d.ts +1 -1
  18. package/dist/components/FormDateInput/FormDateInput.d.ts +1 -1
  19. package/dist/components/FormField/FormField.d.ts +1 -1
  20. package/dist/components/FormFooterNote/FormFooterNote.d.ts +1 -1
  21. package/dist/components/FormLocationInput/FormLocationInput.d.ts +1 -1
  22. package/dist/components/FormSectionHeader/FormSectionHeader.d.ts +1 -1
  23. package/dist/components/FormSegmentedControl/FormSegmentedControl.d.ts +1 -1
  24. package/dist/components/FormTagPills/FormTagPills.d.ts +1 -1
  25. package/dist/components/FormTextInput/FormTextInput.d.ts +1 -1
  26. package/dist/components/FormTimeInput/FormTimeInput.d.ts +1 -1
  27. package/dist/components/MarqueeStrip/MarqueeStrip.d.ts +1 -1
  28. package/dist/components/PageHeader/PageHeader.d.ts +1 -1
  29. package/dist/components/PhoneNumberInput/PhoneNumberInput.d.ts +27 -0
  30. package/dist/components/PhoneNumberInput/countries.d.ts +13 -0
  31. package/dist/components/PhoneNumberInput/icons.d.ts +3 -0
  32. package/dist/components/PhoneNumberInput/index.d.ts +3 -0
  33. package/dist/components/PhoneNumberInput/usePhoneNumberInput.d.ts +22 -0
  34. package/dist/components/PrivacyBanner/PrivacyBanner.d.ts +1 -1
  35. package/dist/components/UserReviewsSection/UserReviewsSection.d.ts +1 -1
  36. package/dist/index.cjs +1 -14
  37. package/dist/index.cjs.map +1 -1
  38. package/dist/index.d.ts +4 -0
  39. package/dist/index.js +1388 -1517
  40. package/dist/index.js.map +1 -1
  41. package/dist/utils/phoneValidation.d.ts +6 -0
  42. 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';