@mindly/ui-components 3.74.1 → 3.75.1
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 +6 -6
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/index.d.ts +2 -0
- package/dist/cjs/types/lib/Inputs/CustomRadioButton/CustomRadioButton.d.ts +10 -0
- package/dist/cjs/types/lib/Inputs/CustomRadioButton/CustomRadioButton.style.d.ts +1 -0
- package/dist/cjs/types/lib/Inputs/CustomRadioButton/index.d.ts +1 -0
- package/dist/esm/index.js +6 -6
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/index.d.ts +2 -0
- package/dist/esm/types/lib/Inputs/CustomRadioButton/CustomRadioButton.d.ts +10 -0
- package/dist/esm/types/lib/Inputs/CustomRadioButton/CustomRadioButton.style.d.ts +1 -0
- package/dist/esm/types/lib/Inputs/CustomRadioButton/index.d.ts +1 -0
- package/dist/index.d.ts +10 -1
- package/package.json +1 -1
|
@@ -185,3 +185,5 @@ export { default as Refresher } from './lib/Refresher';
|
|
|
185
185
|
export * from './lib/Refresher';
|
|
186
186
|
export { default as Toast } from './lib/Toast';
|
|
187
187
|
export * from './lib/Toast';
|
|
188
|
+
export { default as CustomRadioButton } from './lib/Inputs/CustomRadioButton';
|
|
189
|
+
export * from './lib/Inputs/CustomRadioButton';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React, { ChangeEvent } from 'react';
|
|
2
|
+
declare type CustomRadioButtonProps = {
|
|
3
|
+
label: string;
|
|
4
|
+
name?: string;
|
|
5
|
+
value?: string;
|
|
6
|
+
checked?: boolean;
|
|
7
|
+
onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
8
|
+
};
|
|
9
|
+
declare const CustomRadioButton: React.ForwardRefExoticComponent<CustomRadioButtonProps & React.RefAttributes<HTMLInputElement>>;
|
|
10
|
+
export default CustomRadioButton;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const RadioButtonLabel: import("styled-components").StyledComponent<"label", any, {}, never>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './CustomRadioButton';
|
package/dist/index.d.ts
CHANGED
|
@@ -1370,4 +1370,13 @@ declare type ToastProps = {
|
|
|
1370
1370
|
buttons?: Array<ToastButton>;
|
|
1371
1371
|
} & HTMLAttributes<HTMLDivElement>;
|
|
1372
1372
|
|
|
1373
|
-
|
|
1373
|
+
declare type CustomRadioButtonProps = {
|
|
1374
|
+
label: string;
|
|
1375
|
+
name?: string;
|
|
1376
|
+
value?: string;
|
|
1377
|
+
checked?: boolean;
|
|
1378
|
+
onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
1379
|
+
};
|
|
1380
|
+
declare const CustomRadioButton: React.ForwardRefExoticComponent<CustomRadioButtonProps & React.RefAttributes<HTMLInputElement>>;
|
|
1381
|
+
|
|
1382
|
+
export { AppFooter, AppHeader, ArchivedConsultationCard, Avatar, AvatarProps, _default$c as BookingScheduleTime, _default$b as BookingSpecialistInfo, Button, CancelSession, ChangeLangModal, _default$x as ChatListItem, _default$v as ChatListSkeleton, _default$w as ChatMessage, ChatMessageSkeleton, _default$6 as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, _default$o as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$l as ConsultationModal, _default$j as ConsultationSpecialistCard, Container, ContentCard, CustomButton, _default$7 as CustomCheckbox, CustomRadioButton, _default$8 as CustomSelect, _default$9 as CustomTextarea, DatePicker, _default$h as DaySlider, DayToRender, _default$d as EducationCard, _default$u as EmptyChatList, EmptyChatMessages, _default$m as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$3 as Flag, FlagTypes, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, LanguagesList, _default$B as LetterAvatar, _default$4 as LineFileInput, ListButton, ListSelect, LouseConnect, _default$y as MediaPlayer, Modal, ModalCalendar, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$A as PersonDateTimeCard, _default$2 as ProfileInformation, _default$f as ProfileView, _default$5 as ProgressBar, Range, _default$i as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowSelect, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$z as SelectImpressionEmoji, _default$n as SignUpSessionButton, _default$k as SignUpSessionModal, Skeleton, _default$e as SpecialistAbout, SpecialistCard, _default$s as SpecialistEducationCard, SpecialistLangs, _default$1 as SpecialistMatch, _default$r as SpecialistProfileViewCard, _default as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$a as TextInput, _default$t as Textarea, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastProps, Toggle, TooltipComponent, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, _default$p as VideoCallInfo, _default$q as VideoPlayer, _default$g as WorkDirections, YourLocalTimeBlock, decOfNum, toast };
|