fln-espranza 0.0.3 → 0.0.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/components/EDateAndTimeCard.tsx +1 -1
- package/components/icons/{add.jsx → EIconAdd.jsx} +0 -0
- package/components/icons/{add-circle.jsx → EIconAddCircle.jsx} +0 -0
- package/components/icons/{application-status.jsx → EIconApplicationStatus.jsx} +0 -0
- package/components/icons/{arrow-down.jsx → EIconArrowDown.jsx} +0 -0
- package/components/icons/{arrow-left.jsx → EIconArrowLeft.jsx} +0 -0
- package/components/icons/{arrow-right.jsx → EIconArrowRight.jsx} +0 -0
- package/components/icons/{arrow-up.jsx → EIconArrowUp.jsx} +0 -0
- package/components/icons/{badge.jsx → EIconBadge.jsx} +0 -0
- package/components/icons/{bell.jsx → EIconBell.jsx} +0 -0
- package/components/icons/{calendar.jsx → EIconCalendar.jsx} +0 -0
- package/components/icons/{calendar-check.jsx → EIconCalendarCheck.jsx} +0 -0
- package/components/icons/{camera.jsx → EIconCamera.jsx} +0 -0
- package/components/icons/{camera-rotate.jsx → EIconCameraRotate.jsx} +0 -0
- package/components/icons/{check.jsx → EIconCheck.jsx} +0 -0
- package/components/icons/{check-circle.jsx → EIconCheckCircle.jsx} +0 -0
- package/components/icons/{check-fill.jsx → EIconCheckFill.jsx} +0 -0
- package/components/icons/{chevron-down.jsx → EIconChevronDown.jsx} +0 -0
- package/components/icons/{chevron-left.jsx → EIconChevronLeft.jsx} +0 -0
- package/components/icons/{chevron-right.jsx → EIconChevronRight.jsx} +0 -0
- package/components/icons/{chevron-up.jsx → EIconChevronUp.jsx} +0 -0
- package/components/icons/{clock.jsx → EIconClock.jsx} +0 -0
- package/components/icons/{close.jsx → EIconClose.jsx} +0 -0
- package/components/icons/{dashboard.jsx → EIconDashboard.jsx} +0 -0
- package/components/icons/{edit.jsx → EIconEdit.jsx} +0 -0
- package/components/icons/{file.jsx → EIconFile.jsx} +0 -0
- package/components/icons/{info.jsx → EIconInfo.jsx} +0 -0
- package/components/icons/{logout.jsx → EIconLogout.jsx} +0 -0
- package/components/icons/{menu.jsx → EIconMenu.jsx} +0 -0
- package/components/icons/{minus.jsx → EIconMinus.jsx} +0 -0
- package/components/icons/{pin.jsx → EIconPin.jsx} +0 -0
- package/components/icons/{profile.jsx → EIconProfile.jsx} +0 -0
- package/components/icons/{school.jsx → EIconSchool.jsx} +0 -0
- package/components/icons/{search.jsx → EIconSearch.jsx} +0 -0
- package/components/icons/{settings.jsx → EIconSettings.jsx} +0 -0
- package/components/icons/{share.jsx → EIconShare.jsx} +0 -0
- package/components/icons/{student.jsx → EIconStudent.jsx} +0 -0
- package/components/icons/{subject.jsx → EIconSubject.jsx} +0 -0
- package/components/icons/{teach.jsx → EIconTeach.jsx} +0 -0
- package/components/icons/{trash.jsx → EIconTrash.jsx} +0 -0
- package/components/icons/{user-card.jsx → EIconUserCard.jsx} +0 -0
- package/components/icons/{user-check.jsx → EIconUserCheck.jsx} +0 -0
- package/components/icons/{users.jsx → EIconUsers.jsx} +0 -0
- package/index.ts +90 -1
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import { View } from "react-native";
|
|
|
3
3
|
import tw from "../lib/tailwind";
|
|
4
4
|
import { Colors } from "../utils/Color";
|
|
5
5
|
import EText from "./EText";
|
|
6
|
-
import EIconClock from "./icons/
|
|
6
|
+
import EIconClock from "./icons/EIconClock";
|
|
7
7
|
|
|
8
8
|
interface IProps{
|
|
9
9
|
date: string;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/index.ts
CHANGED
|
@@ -35,6 +35,50 @@ import EErrorText from "./components/EErrorText";
|
|
|
35
35
|
import EListPerson from "./components/EListPerson";
|
|
36
36
|
import EListSchool from "./components/EListSchool";
|
|
37
37
|
|
|
38
|
+
// ICONS
|
|
39
|
+
import EIconAdd from "./components/icons/EIconAdd";
|
|
40
|
+
import EIconAddCircle from "./components/icons/EIconAddCircle";
|
|
41
|
+
import EIconApplicationStatus from "./components/icons/EIconApplicationStatus";
|
|
42
|
+
import EIconArrowDown from "./components/icons/EIconArrowDown";
|
|
43
|
+
import EIconArrowLeft from "./components/icons/EIconArrowLeft";
|
|
44
|
+
import EIconArrowRight from "./components/icons/EIconArrowRight";
|
|
45
|
+
import EIconArrowUp from "./components/icons/EIconArrowUp";
|
|
46
|
+
import EIconBadge from "./components/icons/EIconBadge";
|
|
47
|
+
import EIconBell from "./components/icons/EIconBell";
|
|
48
|
+
import EIconCalendar from "./components/icons/EIconCalendar";
|
|
49
|
+
import EIconCalendarCheck from "./components/icons/EIconCalendarCheck";
|
|
50
|
+
import EIconCamera from "./components/icons/EIconCamera";
|
|
51
|
+
import EIconCameraRotate from "./components/icons/EIconCameraRotate";
|
|
52
|
+
import EIconCheck from "./components/icons/EIconCheck";
|
|
53
|
+
import EIconCheckCircle from "./components/icons/EIconCheckCircle";
|
|
54
|
+
import EIconCheckFill from "./components/icons/EIconCheckFill";
|
|
55
|
+
import EIconChevronDown from "./components/icons/EIconChevronDown";
|
|
56
|
+
import EIconChevronLeft from "./components/icons/EIconChevronLeft";
|
|
57
|
+
import EIconChevronRight from "./components/icons/EIconChevronRight";
|
|
58
|
+
import EIconChevronUp from "./components/icons/EIconChevronUp";
|
|
59
|
+
import EIconClock from "./components/icons/EIconClock";
|
|
60
|
+
import EIconClose from "./components/icons/EIconClose";
|
|
61
|
+
import EIconDashboard from "./components/icons/EIconDashboard";
|
|
62
|
+
import EIconEdit from "./components/icons/EIconEdit";
|
|
63
|
+
import EIconFile from "./components/icons/EIconFile";
|
|
64
|
+
import EIconInfo from "./components/icons/EIconInfo";
|
|
65
|
+
import EIconLogout from "./components/icons/EIconLogout";
|
|
66
|
+
import EIconMenu from "./components/icons/EIconMenu";
|
|
67
|
+
import EIconMinus from "./components/icons/EIconMinus";
|
|
68
|
+
import EIconPin from "./components/icons/EIconPin";
|
|
69
|
+
import EIconProfile from "./components/icons/EIconProfile";
|
|
70
|
+
import EIconSchool from "./components/icons/EIconSchool";
|
|
71
|
+
import EIconSearch from "./components/icons/EIconSearch";
|
|
72
|
+
import EIconSettings from "./components/icons/EIconSettings";
|
|
73
|
+
import EIconShare from "./components/icons/EIconShare";
|
|
74
|
+
import EIconStudent from "./components/icons/EIconStudent";
|
|
75
|
+
import EIconSubject from "./components/icons/EIconSubject";
|
|
76
|
+
import EIconTeach from "./components/icons/EIconTeach";
|
|
77
|
+
import EIconTrash from "./components/icons/EIconTrash";
|
|
78
|
+
import EIconUserCard from "./components/icons/EIconUserCard";
|
|
79
|
+
import EIconUserCheck from "./components/icons/EIconUserCheck";
|
|
80
|
+
import EIconUsers from "./components/icons/EIconUsers";
|
|
81
|
+
|
|
38
82
|
export {
|
|
39
83
|
Avatar,
|
|
40
84
|
BaseLayout,
|
|
@@ -71,6 +115,51 @@ export {
|
|
|
71
115
|
EErrorText,
|
|
72
116
|
Colors,
|
|
73
117
|
EListPerson,
|
|
74
|
-
EListSchool
|
|
118
|
+
EListSchool,
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
// ICONS
|
|
122
|
+
EIconAdd,
|
|
123
|
+
EIconAddCircle,
|
|
124
|
+
EIconApplicationStatus,
|
|
125
|
+
EIconArrowDown,
|
|
126
|
+
EIconArrowLeft,
|
|
127
|
+
EIconArrowRight,
|
|
128
|
+
EIconArrowUp,
|
|
129
|
+
EIconBadge,
|
|
130
|
+
EIconBell,
|
|
131
|
+
EIconCalendar,
|
|
132
|
+
EIconCalendarCheck,
|
|
133
|
+
EIconCamera,
|
|
134
|
+
EIconCameraRotate,
|
|
135
|
+
EIconCheck,
|
|
136
|
+
EIconCheckCircle,
|
|
137
|
+
EIconCheckFill,
|
|
138
|
+
EIconChevronDown,
|
|
139
|
+
EIconChevronLeft,
|
|
140
|
+
EIconChevronRight,
|
|
141
|
+
EIconChevronUp,
|
|
142
|
+
EIconClock,
|
|
143
|
+
EIconClose,
|
|
144
|
+
EIconDashboard,
|
|
145
|
+
EIconEdit,
|
|
146
|
+
EIconFile,
|
|
147
|
+
EIconInfo,
|
|
148
|
+
EIconLogout,
|
|
149
|
+
EIconMenu,
|
|
150
|
+
EIconMinus,
|
|
151
|
+
EIconPin,
|
|
152
|
+
EIconProfile,
|
|
153
|
+
EIconSchool,
|
|
154
|
+
EIconSearch,
|
|
155
|
+
EIconSettings,
|
|
156
|
+
EIconShare,
|
|
157
|
+
EIconStudent,
|
|
158
|
+
EIconSubject,
|
|
159
|
+
EIconTeach,
|
|
160
|
+
EIconTrash,
|
|
161
|
+
EIconUserCard,
|
|
162
|
+
EIconUserCheck,
|
|
163
|
+
EIconUsers
|
|
75
164
|
|
|
76
165
|
};
|