@mindly/ui-components 3.29.0 → 3.29.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/cjs/index.js +13 -13
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/Inputs/ImageInput/ImageInput.d.ts +1 -5
- package/dist/cjs/types/lib/Inputs/PasswordInput/PasswordInput.d.ts +1 -5
- package/dist/cjs/types/lib/Inputs/TextInput/TextInput.d.ts +1 -4
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/Inputs/ImageInput/ImageInput.d.ts +1 -5
- package/dist/esm/types/lib/Inputs/PasswordInput/PasswordInput.d.ts +1 -5
- package/dist/esm/types/lib/Inputs/TextInput/TextInput.d.ts +1 -4
- package/dist/index.d.ts +4 -15
- package/package.json +1 -1
|
@@ -1,7 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
declare
|
|
3
|
-
ref?: React.Ref<HTMLInputElement> | null;
|
|
4
|
-
dimension?: number;
|
|
5
|
-
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'>;
|
|
6
|
-
declare const ImageInput: React.FC<ImageInputProps>;
|
|
2
|
+
declare const ImageInput: React.FC;
|
|
7
3
|
export default ImageInput;
|
|
@@ -1,7 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
declare
|
|
3
|
-
ref?: React.Ref<HTMLInputElement> | null;
|
|
4
|
-
error?: string | null;
|
|
5
|
-
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'>;
|
|
6
|
-
declare const PasswordInput: React.FC<PasswordInputProps>;
|
|
2
|
+
declare const PasswordInput: React.FC;
|
|
7
3
|
export default PasswordInput;
|
|
@@ -1,6 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
declare
|
|
3
|
-
ref?: React.Ref<HTMLInputElement> | null;
|
|
4
|
-
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'>;
|
|
5
|
-
declare const TextInput: React.FC<TextInputProps>;
|
|
2
|
+
declare const TextInput: React.FC;
|
|
6
3
|
export default TextInput;
|
package/dist/index.d.ts
CHANGED
|
@@ -882,21 +882,10 @@ declare type SpecialistCardProps = {
|
|
|
882
882
|
};
|
|
883
883
|
declare const SpecialistCard: React.FC<SpecialistCardProps>;
|
|
884
884
|
|
|
885
|
-
declare
|
|
886
|
-
ref?: React.Ref<HTMLInputElement> | null;
|
|
887
|
-
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'>;
|
|
888
|
-
declare const TextInput: React.FC<TextInputProps>;
|
|
885
|
+
declare const TextInput: React.FC;
|
|
889
886
|
|
|
890
|
-
declare
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'>;
|
|
894
|
-
declare const ImageInput: React.FC<ImageInputProps>;
|
|
895
|
-
|
|
896
|
-
declare type PasswordInputProps = {
|
|
897
|
-
ref?: React.Ref<HTMLInputElement> | null;
|
|
898
|
-
error?: string | null;
|
|
899
|
-
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'>;
|
|
900
|
-
declare const PasswordInput: React.FC<PasswordInputProps>;
|
|
887
|
+
declare const ImageInput: React.FC;
|
|
888
|
+
|
|
889
|
+
declare const PasswordInput: React.FC;
|
|
901
890
|
|
|
902
891
|
export { AppFooter, AppHeader, ArchivedConsultationCard, Avatar, AvatarProps, _default$1 as BookingScheduleTime, _default as BookingSpecialistInfo, Button, CancelSession, _default$k as ChatListItem, _default$i as ChatListSkeleton, _default$j as ChatMessage, ChatMessageSkeleton, _default$b as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$8 as ConsultationModal, _default$6 as ConsultationSpecialistCard, Container, ContentCard, DatePicker, _default$4 as DaySlider, DayToRender, _default$2 as EducationCard, _default$h as EmptyChatList, EmptyChatMessages, _default$9 as EmptyConsultations, EntryNotFound, EntryNotFoundProps, FloatingButton, FooterForBooking, HorizontalCalendar, HorizontalCalendarProps, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, _default$o as LetterAvatar, ListButton, ListSelect, LouseConnect, _default$l as MediaPlayer, Modal, ModalCalendar, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$n as PersonDateTimeCard, _default$3 as ProfileView, Range, _default$5 as ReSchedule, ReScheduleSuccess, RoundButton, RowSelect, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$m as SelectImpressionEmoji, _default$a as SignUpSessionButton, _default$7 as SignUpSessionModal, Skeleton, SpecialistAbout, SpecialistCard, _default$f as SpecialistEducationCard, _default$e as SpecialistProfileViewCard, SpecialistStatisticsCard, SpecialistWorkDirections, StatisticsScroll, StatusTag, SwitchDeviceCard, TabBar, Tag, TextInput, _default$g as Textarea, TherapistCard, TherapistInformationComponent, Toggle, TooltipComponent, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, _default$c as VideoCallInfo, _default$d as VideoPlayer, WorkDirections, YourLocalTimeBlock, decOfNum, toast };
|