@mindly/ui-components 6.0.0-dev.4 → 6.0.0-dev.5
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.d.ts +5 -1
- package/dist/cjs/index.js +7 -7
- package/dist/cjs/lib/Avatar/Avatar.d.ts +0 -3
- package/dist/esm/index.d.ts +5 -1
- package/dist/esm/index.js +7 -7
- package/dist/esm/lib/Avatar/Avatar.d.ts +0 -3
- package/dist/index.d.ts +126 -87
- package/package.json +1 -1
package/dist/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Button } from './deprecated/button/Button';
|
|
2
2
|
import { NavigationBar } from './lib/navigation-bar/NavigationBar';
|
|
3
3
|
import { toast } from './deprecated/toast/toast';
|
|
4
|
+
import { DatePicker } from './lib/date-picker/DatePicker';
|
|
4
5
|
import { NoInternetConnection } from './lib/no-internet-connection/NoInternetConnection';
|
|
5
6
|
import { TherapistInformationComponent } from './lib/therapist-information-component/TherapistInformationComponent';
|
|
6
7
|
import { Input } from './deprecated/input/Input';
|
|
@@ -22,7 +23,8 @@ import '@ionic/react/css/ionic-swiper.css';
|
|
|
22
23
|
import './lib2/shared/css/variables.css';
|
|
23
24
|
import './lib2/shared/css/tailwind.css';
|
|
24
25
|
import './lib2/shared/css/ionic.css';
|
|
25
|
-
export { Button, NavigationBar, toast, NoInternetConnection, TherapistInformationComponent, Input, ScrollTabs, TabBar, YourLocalTimeBlock, ImpressionEmojiEnum, LetterAvatar, ImageWithFallback, PersonDateTimeCard, UsersPsychologistScrollList, NotesEditor, NotesCardText, Range, Toggle, };
|
|
26
|
+
export { DatePicker, Button, NavigationBar, toast, NoInternetConnection, TherapistInformationComponent, Input, ScrollTabs, TabBar, YourLocalTimeBlock, ImpressionEmojiEnum, LetterAvatar, ImageWithFallback, PersonDateTimeCard, UsersPsychologistScrollList, NotesEditor, NotesCardText, Range, Toggle, };
|
|
27
|
+
export * from './lib/Avatar';
|
|
26
28
|
export { default as AppHeader } from './lib/AppHeader';
|
|
27
29
|
export * from './lib/AppHeader';
|
|
28
30
|
export { default as Container } from './lib/Container';
|
|
@@ -134,6 +136,8 @@ export { default as LineFileInput } from './lib/Inputs/LineFileInput';
|
|
|
134
136
|
export * from './lib/Inputs/LineFileInput';
|
|
135
137
|
export { default as SuccessScreen } from './lib/SuccessScreen';
|
|
136
138
|
export * from './lib/SuccessScreen';
|
|
139
|
+
export { default as Flag } from './lib/Flag';
|
|
140
|
+
export * from './lib/Flag';
|
|
137
141
|
export { default as SpecialistLangs } from './lib/SpecialistProfile/SpecialistLangs';
|
|
138
142
|
export * from './lib/SpecialistProfile/SpecialistLangs';
|
|
139
143
|
export { default as ProfileInformation } from './lib/SpecialistProfile/ProfileInformation';
|