@mindly/ui-components 3.24.1 → 3.25.0

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.
@@ -117,3 +117,7 @@ export * from './lib/TooltipComponent';
117
117
  export { default as DaySlider } from './lib/DaySlider';
118
118
  export * from './lib/DaySlider';
119
119
  export { decOfNum } from './lib/Consultations/utils';
120
+ export { default as BookingScheduleTime } from './lib/Booking/BookingScheduleTime';
121
+ export * from './lib/Booking/BookingScheduleTime';
122
+ export { default as BookingSpecialistInfo } from './lib/Booking/BookingSpecialistInfo';
123
+ export * from './lib/Booking/BookingSpecialistInfo';
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ declare type BookingScheduleTimeProps = {
3
+ items: string[];
4
+ onClick?: (index: number, item: string) => void;
5
+ isLoading?: boolean;
6
+ };
7
+ declare const _default: React.NamedExoticComponent<BookingScheduleTimeProps>;
8
+ export default _default;
@@ -0,0 +1,2 @@
1
+ export declare const BookingScheduleWrapper: import("styled-components").StyledComponent<"ul", any, {}, never>;
2
+ export declare const BookingScheduleButton: import("styled-components").StyledComponent<"button", any, {}, never>;
@@ -0,0 +1 @@
1
+ export { default } from './BookingScheduleTime';
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ declare type BookingSpecialistInfoProps = {
3
+ name: string;
4
+ title?: string;
5
+ subtitle?: string;
6
+ avatar?: string;
7
+ isLoading?: boolean;
8
+ };
9
+ declare const _default: React.NamedExoticComponent<BookingSpecialistInfoProps>;
10
+ export default _default;
@@ -0,0 +1,3 @@
1
+ export declare const SpecialistInfoContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ export declare const SpecialistInfoContainerTitle: import("styled-components").StyledComponent<"div", any, {}, never>;
3
+ export declare const SpecialistInfoContainerSubTitle: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -0,0 +1 @@
1
+ export { default } from './BookingSpecialistInfo';