@mindly/ui-components 0.1.42 → 0.1.43
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 +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/index.d.ts +2 -2
- package/dist/cjs/types/lib/tab-bar/TabBar.d.ts +6 -0
- package/dist/cjs/types/lib/tab-bar/TabBar.style.d.ts +5 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/index.d.ts +2 -2
- package/dist/esm/types/lib/tab-bar/TabBar.d.ts +6 -0
- package/dist/esm/types/lib/tab-bar/TabBar.style.d.ts +5 -0
- package/dist/index.d.ts +4 -4
- package/package.json +1 -1
- package/dist/cjs/types/lib/global-styles/GlobalStyles.style.d.ts +0 -5
- package/dist/esm/types/lib/global-styles/GlobalStyles.style.d.ts +0 -5
|
@@ -13,5 +13,5 @@ import { NoInternetConnection } from './lib/no-internet-connection/NoInternetCon
|
|
|
13
13
|
import { TherapistInformationComponent } from './lib/therapist-information-component/TherapistInformationComponent';
|
|
14
14
|
import { Input } from './lib/input/Input';
|
|
15
15
|
import { ScrollTabs } from './lib/scroll-tabs/ScrollTabs';
|
|
16
|
-
import {
|
|
17
|
-
export { ArchivedConsultationCard, DatePicker, Button, FloatingButton, FooterForBooking, ListButton, NavigationBar, ConsultationCard, ContentCard, TherapistCard, toast, NoInternetConnection, TherapistInformationComponent, Input, ScrollTabs,
|
|
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, };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import React, { ReactNode } from 'react';
|
|
2
|
-
import * as styled_components from 'styled-components';
|
|
3
2
|
|
|
4
3
|
interface ButtonProps {
|
|
5
4
|
buttonType: 'primary' | 'secondary' | 'actionButton' | 'actionButtonDisabled' | 'secondaryWithStroke' | 'secondaryCancel' | 'actionButtonActive';
|
|
@@ -141,9 +140,10 @@ interface ScrollTabsProps {
|
|
|
141
140
|
}
|
|
142
141
|
declare const ScrollTabs: React.FC<ScrollTabsProps>;
|
|
143
142
|
|
|
144
|
-
interface
|
|
143
|
+
interface TabBarProps {
|
|
144
|
+
children: ReactNode;
|
|
145
145
|
isIos: boolean;
|
|
146
146
|
}
|
|
147
|
-
declare const
|
|
147
|
+
declare const TabBar: React.FC<TabBarProps>;
|
|
148
148
|
|
|
149
|
-
export { ArchivedConsultationCard, Button, ConsultationCard, ContentCard, DatePicker, FloatingButton, FooterForBooking,
|
|
149
|
+
export { ArchivedConsultationCard, Button, ConsultationCard, ContentCard, DatePicker, FloatingButton, FooterForBooking, Input, ListButton, NavigationBar, NoInternetConnection, ScrollTabs, TabBar, TherapistCard, TherapistInformationComponent, toast };
|
package/package.json
CHANGED