fln-espranza 0.0.35 → 0.0.37
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/.expo/README.md +15 -15
- package/.expo/settings.json +8 -8
- package/components/Avatar.tsx +43 -43
- package/components/BaseLayout.tsx +174 -174
- package/components/Drawer.tsx +116 -116
- package/components/EBadge.tsx +24 -24
- package/components/EButton.tsx +70 -71
- package/components/EDateAndTimeCard.tsx +51 -51
- package/components/EDateInput.tsx +55 -55
- package/components/EEmptyPlaceholder.tsx +21 -21
- package/components/EErrorText.tsx +19 -19
- package/components/EInfoBox.tsx +41 -41
- package/components/EInput.tsx +54 -52
- package/components/ELabel.tsx +15 -15
- package/components/EListPerson.tsx +52 -52
- package/components/EListSchool.tsx +35 -35
- package/components/EOption.tsx +98 -98
- package/components/EOtpInputBox.tsx +49 -49
- package/components/EPageDescription.tsx +19 -19
- package/components/EPillButton.tsx +33 -33
- package/components/EProfile.tsx +62 -62
- package/components/EProfileScreenLayout.tsx +111 -111
- package/components/EProgressBar.tsx +33 -33
- package/components/EQuestionSerialNumberLabel.tsx +17 -17
- package/components/EQuestionText.tsx +14 -14
- package/components/ESegment.tsx +36 -36
- package/components/EText.tsx +41 -41
- package/components/ETextArea.tsx +53 -53
- package/components/ETimeInput.tsx +54 -55
- package/components/ETimeLineCard.tsx +66 -66
- package/components/ListFormView.tsx +36 -36
- package/components/Loader.tsx +31 -31
- package/components/MenuItems.tsx +46 -46
- package/components/PageHeader.tsx +123 -123
- package/components/ProfileHeader.tsx +85 -85
- package/components/SecondaryBaseLayout.tsx +106 -106
- package/components/Timer.tsx +56 -56
- package/components/icons/EIconAdd.jsx +19 -19
- package/components/icons/EIconAddCircle.jsx +21 -21
- package/components/icons/EIconApplicationStatus.jsx +20 -20
- package/components/icons/EIconArrowDown.jsx +20 -20
- package/components/icons/EIconArrowLeft.jsx +21 -21
- package/components/icons/EIconArrowRight.jsx +21 -21
- package/components/icons/EIconArrowUp.jsx +20 -20
- package/components/icons/EIconBadge.jsx +20 -20
- package/components/icons/EIconBell.jsx +19 -19
- package/components/icons/EIconCalendar.jsx +21 -21
- package/components/icons/EIconCalendarCheck.jsx +24 -24
- package/components/icons/EIconCamera.jsx +20 -20
- package/components/icons/EIconCameraRotate.jsx +23 -23
- package/components/icons/EIconCheck.jsx +19 -19
- package/components/icons/EIconCheckCircle.jsx +20 -20
- package/components/icons/EIconCheckFill.jsx +19 -19
- package/components/icons/EIconChevronDown.jsx +19 -19
- package/components/icons/EIconChevronLeft.jsx +19 -19
- package/components/icons/EIconChevronRight.jsx +19 -19
- package/components/icons/EIconChevronUp.jsx +19 -19
- package/components/icons/EIconClock.jsx +19 -19
- package/components/icons/EIconClose.jsx +19 -19
- package/components/icons/EIconDashboard.jsx +20 -20
- package/components/icons/EIconDocumentCheck.jsx +14 -14
- package/components/icons/EIconEdit.jsx +19 -19
- package/components/icons/EIconFemale.jsx +20 -20
- package/components/icons/EIconFile.jsx +21 -21
- package/components/icons/EIconInfo.jsx +20 -20
- package/components/icons/EIconLogout.jsx +19 -19
- package/components/icons/EIconMale.jsx +21 -21
- package/components/icons/EIconMenu.jsx +19 -19
- package/components/icons/EIconMinus.jsx +19 -19
- package/components/icons/EIconPin.jsx +19 -19
- package/components/icons/EIconProfile.jsx +19 -19
- package/components/icons/EIconSchool.jsx +24 -24
- package/components/icons/EIconSearch.jsx +19 -19
- package/components/icons/EIconSettings.jsx +20 -20
- package/components/icons/EIconShare.jsx +21 -21
- package/components/icons/EIconStudent.jsx +23 -23
- package/components/icons/EIconSubject.jsx +21 -21
- package/components/icons/EIconTeach.jsx +21 -21
- package/components/icons/EIconTrash.jsx +19 -19
- package/components/icons/EIconUserCard.jsx +19 -19
- package/components/icons/EIconUserCheck.jsx +20 -20
- package/components/icons/EIconUsers.jsx +19 -19
- package/components/index.tsx +65 -65
- package/index.ts +180 -180
- package/package.json +26 -26
- package/utils/Color.ts +14 -14
package/package.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "fln-espranza",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "All components used inside FLN Project of Espranza Innovations",
|
|
5
|
-
"main": "index.ts",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
-
},
|
|
9
|
-
"author": "",
|
|
10
|
-
"license": "ISC",
|
|
11
|
-
"peerDependencies": {
|
|
12
|
-
"@react-native-community/datetimepicker": "6.1.2",
|
|
13
|
-
"@react-navigation/drawer": "^6.5.0",
|
|
14
|
-
"@react-navigation/native": "^6.0.10",
|
|
15
|
-
"@react-navigation/native-stack": "^6.6.2",
|
|
16
|
-
"expo": "~45.0.0",
|
|
17
|
-
"expo-status-bar": "~1.3.0",
|
|
18
|
-
"moment": "^2.29.4",
|
|
19
|
-
"react": "17.0.2",
|
|
20
|
-
"react-native": "0.68.2",
|
|
21
|
-
"react-native-heroicons": "^
|
|
22
|
-
"react-native-reanimated": "~2.8.0",
|
|
23
|
-
"react-native-safe-area-context": "4.2.4",
|
|
24
|
-
"twrnc": "^3.3.2"
|
|
25
|
-
}
|
|
26
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "fln-espranza",
|
|
3
|
+
"version": "0.0.37",
|
|
4
|
+
"description": "All components used inside FLN Project of Espranza Innovations",
|
|
5
|
+
"main": "index.ts",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"author": "",
|
|
10
|
+
"license": "ISC",
|
|
11
|
+
"peerDependencies": {
|
|
12
|
+
"@react-native-community/datetimepicker": "6.1.2",
|
|
13
|
+
"@react-navigation/drawer": "^6.5.0",
|
|
14
|
+
"@react-navigation/native": "^6.0.10",
|
|
15
|
+
"@react-navigation/native-stack": "^6.6.2",
|
|
16
|
+
"expo": "~45.0.0",
|
|
17
|
+
"expo-status-bar": "~1.3.0",
|
|
18
|
+
"moment": "^2.29.4",
|
|
19
|
+
"react": "17.0.2",
|
|
20
|
+
"react-native": "0.68.2",
|
|
21
|
+
"react-native-heroicons": "^3.2.0",
|
|
22
|
+
"react-native-reanimated": "~2.8.0",
|
|
23
|
+
"react-native-safe-area-context": "4.2.4",
|
|
24
|
+
"twrnc": "^3.3.2"
|
|
25
|
+
}
|
|
26
|
+
}
|
package/utils/Color.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export const Colors = {
|
|
2
|
-
"primary-base": '#218C74',
|
|
3
|
-
"primary-light": '#F4F9F8',
|
|
4
|
-
"secondary-base": '#3F3D84',
|
|
5
|
-
"secondary-light": '#F5F5F9',
|
|
6
|
-
"blue": '#0993BF',
|
|
7
|
-
"border": '#E0E6EC',
|
|
8
|
-
"warning": '#FFCB66',
|
|
9
|
-
"success": '#00BE9B',
|
|
10
|
-
"text-primary": '#2D3A5D',
|
|
11
|
-
"text-body": '#64748B',
|
|
12
|
-
"text-placeholder": '#CBD5E1',
|
|
13
|
-
"text-secondary": "#585F68",
|
|
14
|
-
"white": '#FFFFFF',
|
|
1
|
+
export const Colors = {
|
|
2
|
+
"primary-base": '#218C74',
|
|
3
|
+
"primary-light": '#F4F9F8',
|
|
4
|
+
"secondary-base": '#3F3D84',
|
|
5
|
+
"secondary-light": '#F5F5F9',
|
|
6
|
+
"blue": '#0993BF',
|
|
7
|
+
"border": '#E0E6EC',
|
|
8
|
+
"warning": '#FFCB66',
|
|
9
|
+
"success": '#00BE9B',
|
|
10
|
+
"text-primary": '#2D3A5D',
|
|
11
|
+
"text-body": '#64748B',
|
|
12
|
+
"text-placeholder": '#CBD5E1',
|
|
13
|
+
"text-secondary": "#585F68",
|
|
14
|
+
"white": '#FFFFFF',
|
|
15
15
|
};
|