@mindly/ui-components 0.1.55 → 1.0.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.
@@ -14,4 +14,5 @@ import { TherapistInformationComponent } from './lib/therapist-information-compo
14
14
  import { Input } from './lib/input/Input';
15
15
  import { ScrollTabs } from './lib/scroll-tabs/ScrollTabs';
16
16
  import { TabBar } from './lib/tab-bar/TabBar';
17
- export { ArchivedConsultationCard, DatePicker, Button, FloatingButton, FooterForBooking, ListButton, NavigationBar, ConsultationCard, ContentCard, TherapistCard, toast, NoInternetConnection, TherapistInformationComponent, Input, ScrollTabs, TabBar, };
17
+ import { YourLocalTimeBlock } from './lib/your-local-time-block/YourLocalTimeBlock';
18
+ export { ArchivedConsultationCard, DatePicker, Button, FloatingButton, FooterForBooking, ListButton, NavigationBar, ConsultationCard, ContentCard, TherapistCard, toast, NoInternetConnection, TherapistInformationComponent, Input, ScrollTabs, TabBar, YourLocalTimeBlock, };
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ import '../Theme/global.css';
3
+ export interface YourLocalTimeBlockProps {
4
+ text?: string;
5
+ }
6
+ export declare const YourLocalTimeBlock: React.FC<YourLocalTimeBlockProps>;
@@ -0,0 +1,2 @@
1
+ export declare const StyledContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ export declare const StyledTextWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
package/dist/index.d.ts CHANGED
@@ -155,4 +155,9 @@ interface TabBarProps {
155
155
  }
156
156
  declare const TabBar: React.FC<TabBarProps>;
157
157
 
158
- export { ArchivedConsultationCard, Button, ConsultationCard, ContentCard, DatePicker, FloatingButton, FooterForBooking, Input, ListButton, NavigationBar, NoInternetConnection, ScrollTabs, TabBar, TherapistCard, TherapistInformationComponent, toast };
158
+ interface YourLocalTimeBlockProps {
159
+ text?: string;
160
+ }
161
+ declare const YourLocalTimeBlock: React.FC<YourLocalTimeBlockProps>;
162
+
163
+ export { ArchivedConsultationCard, Button, ConsultationCard, ContentCard, DatePicker, FloatingButton, FooterForBooking, Input, ListButton, 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": "0.1.55",
3
+ "version": "1.0.1",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "start": "react-scripts start",