@mindly/ui-components 4.3.3 → 4.3.5

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.
@@ -1,3 +1,7 @@
1
- import * as React from "react";
2
- declare const iconLanguage: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
- export default iconLanguage;
1
+ import * as React from 'react';
2
+ interface IconProps extends React.SVGAttributes<SVGElement> {
3
+ size?: number | string;
4
+ color?: string;
5
+ }
6
+ export declare function IconLanguage({ color, size, ...other }: IconProps): JSX.Element;
7
+ export {};
@@ -1,6 +1,5 @@
1
1
  import { FC } from 'react';
2
2
  type AppHeaderProps = {
3
- fullwidth?: boolean;
4
3
  className?: string;
5
4
  };
6
5
  declare const AppHeader_v2: FC<AppHeaderProps>;
package/dist/index.d.ts CHANGED
@@ -1502,7 +1502,6 @@ type BadgeProps = React.ComponentPropsWithoutRef<'span'> & {
1502
1502
  declare const _default: React.NamedExoticComponent<BadgeProps>;
1503
1503
 
1504
1504
  type AppHeaderProps = {
1505
- fullwidth?: boolean;
1506
1505
  className?: string;
1507
1506
  };
1508
1507
  declare const AppHeader_v2: FC<AppHeaderProps>;
@@ -1541,17 +1540,23 @@ declare const ThemeProvider: FC<ThemeProviderProps>;
1541
1540
 
1542
1541
  declare function useDomRef<T extends HTMLElement = HTMLElement>(ref: React.RefObject<T | null> | React.ForwardedRef<T | null>): React.RefObject<T>;
1543
1542
 
1543
+ interface IconProps$2 extends React.SVGAttributes<SVGElement> {
1544
+ size?: number | string;
1545
+ color?: string;
1546
+ }
1547
+ declare function IconCheckboxChecked({ color, size, ...other }: IconProps$2): JSX.Element;
1548
+
1544
1549
  interface IconProps$1 extends React.SVGAttributes<SVGElement> {
1545
1550
  size?: number | string;
1546
1551
  color?: string;
1547
1552
  }
1548
- declare function IconCheckboxChecked({ color, size, ...other }: IconProps$1): JSX.Element;
1553
+ declare function IconCheckboxUnchecked({ color, size, ...other }: IconProps$1): JSX.Element;
1549
1554
 
1550
1555
  interface IconProps extends React.SVGAttributes<SVGElement> {
1551
1556
  size?: number | string;
1552
1557
  color?: string;
1553
1558
  }
1554
- declare function IconCheckboxUnchecked({ color, size, ...other }: IconProps): JSX.Element;
1559
+ declare function IconLanguage({ color, size, ...other }: IconProps): JSX.Element;
1555
1560
 
1556
1561
  type CountryOfOriginModalProps = {
1557
1562
  countries: string[];
@@ -1578,4 +1583,4 @@ type ChangeLanguageModalProps = JSX$1.IonModal & {
1578
1583
 
1579
1584
  declare function ChangeLanguageModal({ title, onModalClose, onSelect, selected, languages, ...props }: ChangeLanguageModalProps): JSX.Element;
1580
1585
 
1581
- export { AppFooter, _default$5 as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$4 as Avatar_v2, _default as Badge, _default$j as BookingScheduleTime, _default$i as BookingSpecialistInfo, Button, Button_v2, CancelSession, ChangeLangModal, ChangeLanguageModal, _default$E as ChatListItem, _default$C as ChatListSkeleton, _default$D as ChatMessage, ChatMessageSkeleton, _default$d as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, _default$v as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$s as ConsultationModal, _default$q as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountryOfOriginModal, CustomButton, _default$e as CustomCheckbox, CustomRadioButton, _default$f as CustomSelect, _default$g as CustomTextarea, DatePicker, _default$o as DaySlider, DayToRender, _default$k as EducationCard, _default$B as EmptyChatList, EmptyChatMessages, _default$t as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$a as Flag, FlagTypes, _default$2 as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconCheckboxChecked, IconCheckboxUnchecked, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, LanguagesList, _default$I as LetterAvatar, _default$b as LineFileInput, ListBox, ListBoxItem, ListButton, ListItemType, ListOption, ListSelect, ListSelectProps, LouseConnect, _default$F as MediaPlayer, Modal, ModalCalendar, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$H as PersonDateTimeCard, _default$1 as Picture, _default$9 as ProfileInformation, _default$m as ProfileView, _default$c as ProgressBar, Range, _default$p as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$G as SelectImpressionEmoji, _default$u as SignUpSessionButton, _default$r as SignUpSessionModal, Skeleton, _default$3 as Skeleton_v2, _default$l as SpecialistAbout, SpecialistCard, _default$z as SpecialistEducationCard, SpecialistLangs, _default$8 as SpecialistMatch, _default$y as SpecialistProfileViewCard, _default$7 as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$h as TextInput, _default$A as Textarea, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastProps, Toggle, TooltipComponent, _default$6 as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, _default$w as VideoCallInfo, _default$x as VideoPlayer, _default$n as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, toast, useDomRef };
1586
+ export { AppFooter, _default$5 as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$4 as Avatar_v2, _default as Badge, _default$j as BookingScheduleTime, _default$i as BookingSpecialistInfo, Button, Button_v2, CancelSession, ChangeLangModal, ChangeLanguageModal, _default$E as ChatListItem, _default$C as ChatListSkeleton, _default$D as ChatMessage, ChatMessageSkeleton, _default$d as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, _default$v as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$s as ConsultationModal, _default$q as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountryOfOriginModal, CustomButton, _default$e as CustomCheckbox, CustomRadioButton, _default$f as CustomSelect, _default$g as CustomTextarea, DatePicker, _default$o as DaySlider, DayToRender, _default$k as EducationCard, _default$B as EmptyChatList, EmptyChatMessages, _default$t as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$a as Flag, FlagTypes, _default$2 as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconCheckboxChecked, IconCheckboxUnchecked, IconLanguage, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, LanguagesList, _default$I as LetterAvatar, _default$b as LineFileInput, ListBox, ListBoxItem, ListButton, ListItemType, ListOption, ListSelect, ListSelectProps, LouseConnect, _default$F as MediaPlayer, Modal, ModalCalendar, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$H as PersonDateTimeCard, _default$1 as Picture, _default$9 as ProfileInformation, _default$m as ProfileView, _default$c as ProgressBar, Range, _default$p as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$G as SelectImpressionEmoji, _default$u as SignUpSessionButton, _default$r as SignUpSessionModal, Skeleton, _default$3 as Skeleton_v2, _default$l as SpecialistAbout, SpecialistCard, _default$z as SpecialistEducationCard, SpecialistLangs, _default$8 as SpecialistMatch, _default$y as SpecialistProfileViewCard, _default$7 as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$h as TextInput, _default$A as Textarea, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastProps, Toggle, TooltipComponent, _default$6 as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, _default$w as VideoCallInfo, _default$x as VideoPlayer, _default$n as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, toast, useDomRef };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "4.3.3",
3
+ "version": "4.3.5",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",