@mindly/ui-components 6.0.0-dev.2 → 6.0.0-dev.4
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 +17 -16
- package/dist/cjs/index.js +18 -19
- package/dist/cjs/lib/CustomButton/CustomButton.d.ts +3 -0
- package/dist/cjs/lib/Filters/ListSelect/ListSelect.style.d.ts +1 -1
- package/dist/cjs/lib2/shared/ui/Button_v2/Button_v2.style.d.ts +1 -1
- package/dist/esm/index.d.ts +17 -16
- package/dist/esm/index.js +18 -19
- package/dist/esm/lib/CustomButton/CustomButton.d.ts +3 -0
- package/dist/esm/lib/Filters/ListSelect/ListSelect.style.d.ts +1 -1
- package/dist/esm/lib2/shared/ui/Button_v2/Button_v2.style.d.ts +1 -1
- package/dist/index.d.ts +186 -220
- package/package.json +1 -1
package/dist/cjs/index.d.ts
CHANGED
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
import { Button } from './deprecated/button/Button';
|
|
2
|
-
import { FloatingButton } from './lib/floating-button/FloatingButton';
|
|
3
|
-
import { ListButton } from './lib/list-button/ListButton';
|
|
4
2
|
import { NavigationBar } from './lib/navigation-bar/NavigationBar';
|
|
5
|
-
import { ContentCard } from './lib/content-card/ContentCard';
|
|
6
3
|
import { toast } from './deprecated/toast/toast';
|
|
7
|
-
import { DatePicker } from './lib/date-picker/DatePicker';
|
|
8
4
|
import { NoInternetConnection } from './lib/no-internet-connection/NoInternetConnection';
|
|
9
5
|
import { TherapistInformationComponent } from './lib/therapist-information-component/TherapistInformationComponent';
|
|
10
6
|
import { Input } from './deprecated/input/Input';
|
|
11
7
|
import { ScrollTabs } from './lib/scroll-tabs/ScrollTabs';
|
|
12
8
|
import { TabBar } from './lib/tab-bar/TabBar';
|
|
13
9
|
import { YourLocalTimeBlock } from './lib/your-local-time-block/YourLocalTimeBlock';
|
|
14
|
-
import { ModalCalendar } from './lib/ModalCalendar/ModalCalendar';
|
|
15
|
-
import { HorizontalCalendar } from './lib/HorisontalCalendar';
|
|
16
10
|
import ImpressionEmojiEnum from './lib/SelectImpressionEmoji/ImpressionEmojiEnum';
|
|
17
11
|
import LetterAvatar from './deprecated/LetterAvatar/LetterAvatar';
|
|
18
12
|
import ImageWithFallback from './lib/ImageWithFallback/ImageWithFallback';
|
|
@@ -28,26 +22,35 @@ import '@ionic/react/css/ionic-swiper.css';
|
|
|
28
22
|
import './lib2/shared/css/variables.css';
|
|
29
23
|
import './lib2/shared/css/tailwind.css';
|
|
30
24
|
import './lib2/shared/css/ionic.css';
|
|
31
|
-
export {
|
|
32
|
-
export * from './lib/EntryNotFound';
|
|
33
|
-
export * from './lib/Avatar';
|
|
25
|
+
export { Button, NavigationBar, toast, NoInternetConnection, TherapistInformationComponent, Input, ScrollTabs, TabBar, YourLocalTimeBlock, ImpressionEmojiEnum, LetterAvatar, ImageWithFallback, PersonDateTimeCard, UsersPsychologistScrollList, NotesEditor, NotesCardText, Range, Toggle, };
|
|
34
26
|
export { default as AppHeader } from './lib/AppHeader';
|
|
35
27
|
export * from './lib/AppHeader';
|
|
36
28
|
export { default as Container } from './lib/Container';
|
|
37
29
|
export * from './lib/Container';
|
|
38
30
|
export { default as Segment } from './lib/Segment';
|
|
39
31
|
export * from './lib/Segment';
|
|
40
|
-
export { default as Modal } from './lib/Modal';
|
|
41
|
-
export * from './lib/Modal';
|
|
42
32
|
export { default as SelectImpressionEmoji } from './lib/SelectImpressionEmoji';
|
|
43
33
|
export * from './lib/SelectImpressionEmoji/SelectImpressionEmojiProps';
|
|
44
|
-
export * from './lib/HorisontalCalendar';
|
|
45
|
-
export { default as FooterForBooking } from './lib/footer-for-booking';
|
|
46
|
-
export * from './lib/footer-for-booking';
|
|
47
34
|
export { default as StatusTag } from './lib/StatusTag';
|
|
48
35
|
export * from './lib/StatusTag';
|
|
36
|
+
export { default as MediaPlayer } from './lib/AgoraMediaPlayer';
|
|
37
|
+
export * from './lib/AgoraMediaPlayer';
|
|
49
38
|
export { default as RoundButton } from './lib/RoundButton';
|
|
50
39
|
export * from './lib/RoundButton';
|
|
40
|
+
export { default as ChatListItem } from './lib/Chat/ChatListItem';
|
|
41
|
+
export * from './lib/Chat/ChatListItem';
|
|
42
|
+
export { default as ChatMessage } from './lib/Chat/ChatMessage';
|
|
43
|
+
export * from './lib/Chat/ChatMessage';
|
|
44
|
+
export { default as ChatMessageSkeleton } from './lib/Chat/ChatMessageSkeleton';
|
|
45
|
+
export * from './lib/Chat/ChatMessageSkeleton';
|
|
46
|
+
export { default as ChatListSkeleton } from './lib/Chat/ChatListSkeleton';
|
|
47
|
+
export * from './lib/Chat/ChatListSkeleton';
|
|
48
|
+
export { default as EmptyChatList } from './lib/Chat/EmptyChatList';
|
|
49
|
+
export * from './lib/Chat/EmptyChatList';
|
|
50
|
+
export { default as EmptyChatMessages } from './lib/Chat/EmptyChatMessages';
|
|
51
|
+
export * from './lib/Chat/EmptyChatMessages';
|
|
52
|
+
export { default as Textarea } from './lib/Chat/Textarea';
|
|
53
|
+
export * from './lib/Chat/Textarea';
|
|
51
54
|
export { default as UpdatesCard } from './lib/UpdatesCard';
|
|
52
55
|
export * from './lib/UpdatesCard';
|
|
53
56
|
export { default as SwitchDeviceCard } from './lib/SwitchDeviceCard';
|
|
@@ -131,8 +134,6 @@ export { default as LineFileInput } from './lib/Inputs/LineFileInput';
|
|
|
131
134
|
export * from './lib/Inputs/LineFileInput';
|
|
132
135
|
export { default as SuccessScreen } from './lib/SuccessScreen';
|
|
133
136
|
export * from './lib/SuccessScreen';
|
|
134
|
-
export { default as Flag } from './lib/Flag';
|
|
135
|
-
export * from './lib/Flag';
|
|
136
137
|
export { default as SpecialistLangs } from './lib/SpecialistProfile/SpecialistLangs';
|
|
137
138
|
export * from './lib/SpecialistProfile/SpecialistLangs';
|
|
138
139
|
export { default as ProfileInformation } from './lib/SpecialistProfile/ProfileInformation';
|