@mindly/ui-components 1.3.0 → 1.4.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.
@@ -17,4 +17,5 @@ import { TabBar } from './lib/tab-bar/TabBar';
17
17
  import { YourLocalTimeBlock } from './lib/your-local-time-block/YourLocalTimeBlock';
18
18
  import { HorizontalCalendar } from './lib/HorisontalCalendar/HorizontalCalendar';
19
19
  import { ModalCalendar } from './lib/ModalCalendar/ModalCalendar';
20
- export { ArchivedConsultationCard, DatePicker, Button, FloatingButton, FooterForBooking, ListButton, NavigationBar, ConsultationCard, ContentCard, TherapistCard, toast, NoInternetConnection, TherapistInformationComponent, Input, ScrollTabs, TabBar, YourLocalTimeBlock, HorizontalCalendar, ModalCalendar };
20
+ export { ArchivedConsultationCard, DatePicker, Button, FloatingButton, FooterForBooking, ListButton, NavigationBar, ConsultationCard, ContentCard, TherapistCard, toast, NoInternetConnection, TherapistInformationComponent, Input, ScrollTabs, TabBar, YourLocalTimeBlock, HorizontalCalendar, ModalCalendar, };
21
+ export * from './lib/EntryNotFound';
@@ -0,0 +1,5 @@
1
+ import { FC } from 'react';
2
+ export declare type EntryNotFoundProps = {
3
+ title?: string;
4
+ };
5
+ export declare const EntryNotFound: FC<EntryNotFoundProps>;
@@ -0,0 +1,2 @@
1
+ export declare const EntryNodFoundContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ export declare const EntryNotFoundTitle: import("styled-components").StyledComponent<"span", any, {}, never>;
@@ -0,0 +1 @@
1
+ export * from './EntryNotFound';
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import React, { ReactNode } from 'react';
1
+ import React, { ReactNode, FC } from 'react';
2
2
 
3
3
  interface ButtonProps {
4
4
  buttonType: 'primary' | 'secondary' | 'actionButton' | 'actionButtonDisabled' | 'secondaryWithStroke' | 'secondaryCancel' | 'actionButtonActive' | 'actionButtonGreen';
@@ -204,4 +204,9 @@ declare type ModalCalendarProps = {
204
204
  };
205
205
  declare const ModalCalendar: React.FC<ModalCalendarProps>;
206
206
 
207
- export { ArchivedConsultationCard, Button, ConsultationCard, ContentCard, DatePicker, FloatingButton, FooterForBooking, HorizontalCalendar, Input, ListButton, ModalCalendar, NavigationBar, NoInternetConnection, ScrollTabs, TabBar, TherapistCard, TherapistInformationComponent, YourLocalTimeBlock, toast };
207
+ declare type EntryNotFoundProps = {
208
+ title?: string;
209
+ };
210
+ declare const EntryNotFound: FC<EntryNotFoundProps>;
211
+
212
+ export { ArchivedConsultationCard, Button, ConsultationCard, ContentCard, DatePicker, EntryNotFound, EntryNotFoundProps, FloatingButton, FooterForBooking, HorizontalCalendar, Input, ListButton, ModalCalendar, NavigationBar, NoInternetConnection, ScrollTabs, TabBar, TherapistCard, TherapistInformationComponent, YourLocalTimeBlock, toast };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "start": "react-scripts start",