fln-espranza 0.0.2 → 0.0.3

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.
Files changed (73) hide show
  1. package/.expo/README.md +15 -15
  2. package/.expo/settings.json +8 -8
  3. package/components/BaseLayout.tsx +174 -174
  4. package/components/Drawer.tsx +96 -96
  5. package/components/EBadge.tsx +23 -23
  6. package/components/EButton.tsx +73 -73
  7. package/components/EDateAndTimeCard.tsx +51 -50
  8. package/components/EDateInput.tsx +55 -55
  9. package/components/EErrorText.tsx +19 -19
  10. package/components/EInfoBox.tsx +41 -41
  11. package/components/EInput.tsx +52 -52
  12. package/components/ELabel.tsx +15 -15
  13. package/components/EListPerson.tsx +40 -40
  14. package/components/EListSchool.tsx +35 -35
  15. package/components/EOtpInputBox.tsx +49 -49
  16. package/components/EPageDescription.tsx +19 -19
  17. package/components/EPillButton.tsx +26 -26
  18. package/components/EProfile.tsx +42 -42
  19. package/components/ESegment.tsx +36 -36
  20. package/components/ETimeInput.tsx +55 -55
  21. package/components/ETimeLineCard.tsx +68 -68
  22. package/components/ListFormView.tsx +36 -36
  23. package/components/Loader.tsx +31 -31
  24. package/components/MenuItems.tsx +46 -46
  25. package/components/PageHeader.tsx +129 -129
  26. package/components/ProgressBar.tsx +33 -33
  27. package/components/SecondaryBaseLayout.tsx +120 -120
  28. package/components/Timer.tsx +56 -56
  29. package/components/icons/add-circle.jsx +21 -0
  30. package/components/icons/add.jsx +19 -0
  31. package/components/icons/application-status.jsx +20 -0
  32. package/components/icons/arrow-down.jsx +20 -0
  33. package/components/icons/arrow-left.jsx +21 -0
  34. package/components/icons/arrow-right.jsx +21 -0
  35. package/components/icons/arrow-up.jsx +20 -0
  36. package/components/icons/badge.jsx +20 -0
  37. package/components/icons/bell.jsx +19 -0
  38. package/components/icons/calendar-check.jsx +24 -0
  39. package/components/icons/calendar.jsx +21 -0
  40. package/components/icons/camera-rotate.jsx +23 -0
  41. package/components/icons/camera.jsx +20 -0
  42. package/components/icons/check-circle.jsx +20 -0
  43. package/components/icons/check-fill.jsx +19 -0
  44. package/components/icons/check.jsx +19 -0
  45. package/components/icons/chevron-down.jsx +19 -0
  46. package/components/icons/chevron-left.jsx +19 -0
  47. package/components/icons/chevron-right.jsx +19 -0
  48. package/components/icons/chevron-up.jsx +19 -0
  49. package/components/icons/clock.jsx +19 -0
  50. package/components/icons/close.jsx +19 -0
  51. package/components/icons/dashboard.jsx +20 -0
  52. package/components/icons/edit.jsx +19 -0
  53. package/components/icons/file.jsx +21 -0
  54. package/components/icons/info.jsx +20 -0
  55. package/components/icons/logout.jsx +19 -0
  56. package/components/icons/menu.jsx +19 -0
  57. package/components/icons/minus.jsx +19 -0
  58. package/components/icons/pin.jsx +19 -0
  59. package/components/icons/profile.jsx +19 -0
  60. package/components/icons/school.jsx +24 -0
  61. package/components/icons/search.jsx +19 -0
  62. package/components/icons/settings.jsx +20 -0
  63. package/components/icons/share.jsx +21 -0
  64. package/components/icons/student.jsx +24 -0
  65. package/components/icons/subject.jsx +21 -0
  66. package/components/icons/teach.jsx +21 -0
  67. package/components/icons/trash.jsx +19 -0
  68. package/components/icons/user-card.jsx +19 -0
  69. package/components/icons/user-check.jsx +20 -0
  70. package/components/icons/users.jsx +19 -0
  71. package/index.ts +76 -76
  72. package/package.json +26 -26
  73. package/utils/Color.ts +14 -14
@@ -0,0 +1,20 @@
1
+ import * as React from "react"
2
+ import Svg, { G, Path } from "react-native-svg"
3
+
4
+ function EIconUserCheck(props) {
5
+ const size = props.size || '100%';
6
+ return (
7
+ <Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
8
+ <G
9
+ fill="currentColor"
10
+ fillRule="evenodd"
11
+ clipRule="evenodd"
12
+ >
13
+ <Path d="M16.75 14.25a3.5 3.5 0 100 7 3.5 3.5 0 000-7zm-5 3.5a5 5 0 1110 0 5 5 0 01-10 0z" />
14
+ <Path d="M18.71 16.378a.75.75 0 010 1.061l-1.786 1.784a.75.75 0 01-1.06 0l-1.073-1.07a.75.75 0 011.06-1.062l.542.542 1.256-1.255a.75.75 0 011.06 0zM2.25 19A4.75 4.75 0 017 14.25h3a.75.75 0 010 1.5H7A3.25 3.25 0 003.75 19v1a.75.75 0 01-1.5 0v-1zM11 3.75a3.25 3.25 0 100 6.5 3.25 3.25 0 000-6.5zM6.25 7a4.75 4.75 0 119.5 0 4.75 4.75 0 01-9.5 0z" />
15
+ </G>
16
+ </Svg>
17
+ )
18
+ }
19
+
20
+ export default EIconUserCheck;
@@ -0,0 +1,19 @@
1
+ import * as React from "react"
2
+ import Svg, { G, Path } from "react-native-svg"
3
+
4
+ function EIconUsers(props) {
5
+ const size = props.size || '100%';
6
+ return (
7
+ <Svg height={size} width={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
8
+ <Path
9
+ fillRule="evenodd"
10
+ clipRule="evenodd"
11
+ d="M6.25 7.5a2.75 2.75 0 115.5 0 2.75 2.75 0 01-5.5 0zM9 3.25a4.25 4.25 0 100 8.5 4.25 4.25 0 000-8.5zm-2.5 11a4.25 4.25 0 00-4.25 4.25v.5a.75.75 0 001.5 0v-.5a2.75 2.75 0 012.75-2.75h5a2.75 2.75 0 012.75 2.75v.5a.75.75 0 001.5 0v-.5a4.25 4.25 0 00-4.25-4.25h-5zm10.75.75a.75.75 0 01.75-.75h.5a4.25 4.25 0 014.25 4.25v.5a.75.75 0 01-1.5 0v-.5a2.75 2.75 0 00-2.75-2.75H18a.75.75 0 01-.75-.75zM16 3.25a.75.75 0 000 1.5 2.75 2.75 0 110 5.5.75.75 0 000 1.5 4.25 4.25 0 000-8.5z"
12
+ fill="currentColor"
13
+ className=""
14
+ />
15
+ </Svg>
16
+ )
17
+ }
18
+
19
+ export default EIconUsers;
package/index.ts CHANGED
@@ -1,76 +1,76 @@
1
- import Avatar from "./components/Avatar";
2
- import BaseLayout from "./components/BaseLayout";
3
- import Container from "./components/Container";
4
- import Drawer from "./components/Drawer";
5
- import EBadge from "./components/EBadge";
6
- import EButton from "./components/EButton";
7
- import EButtonIcon from "./components/EButtonIcon";
8
- import EDateAndTimeCard from "./components/EDateAndTimeCard";
9
- import EIcon from "./components/EIcon";
10
- import EInfoBox from "./components/EInfoBox";
11
- import EInput from "./components/EInput";
12
- import ELabel from "./components/ELabel";
13
- import EOtpInput from "./components/EOtpInputBox";
14
- import EPageDescription from "./components/EPageDescription";
15
- import EPillButton from "./components/EPillButton";
16
- import EProfile from "./components/EProfile";
17
- import ESegment from "./components/ESegment";
18
- import { ESegmentItem } from "./components/ESegment";
19
- import ETimeLineCard from "./components/ETimeLineCard";
20
- import ListFormView from "./components/ListFormView";
21
- import MenuItems from "./components/MenuItems";
22
- import SecondaryBaseLayout from "./components/SecondaryBaseLayout";
23
- import Timer from "./components/Timer";
24
- import EText from "./components/EText";
25
- import ModalLayout from "./components/ModalLayout";
26
- import PageHeader from "./components/PageHeader";
27
- import PageHeaderSecondary from "./components/PageHeaderSecondary";
28
- import Spacer from "./components/Spacer";
29
- import { Colors } from "./utils/Color";
30
- import ProgressBar from "./components/ProgressBar";
31
- import Loader from "./components/Loader";
32
- import ETimeInput from "./components/ETimeInput";
33
- import EDateInput from "./components/EDateInput";
34
- import EErrorText from "./components/EErrorText";
35
- import EListPerson from "./components/EListPerson";
36
- import EListSchool from "./components/EListSchool";
37
-
38
- export {
39
- Avatar,
40
- BaseLayout,
41
- Container,
42
- Drawer,
43
- EButton,
44
- EButtonIcon,
45
- EIcon,
46
- EInput,
47
- EText,
48
- ModalLayout,
49
- PageHeader,
50
- PageHeaderSecondary,
51
- ESegment,
52
- ESegmentItem,
53
- Spacer,
54
- EInfoBox,
55
- EBadge,
56
- EDateAndTimeCard,
57
- ELabel,
58
- EOtpInput,
59
- EPageDescription,
60
- ETimeLineCard,
61
- ListFormView,
62
- MenuItems,
63
- EPillButton,
64
- EProfile,
65
- SecondaryBaseLayout,
66
- Timer,
67
- ProgressBar,
68
- Loader,
69
- ETimeInput,
70
- EDateInput,
71
- EErrorText,
72
- Colors,
73
- EListPerson,
74
- EListSchool
75
-
76
- };
1
+ import Avatar from "./components/Avatar";
2
+ import BaseLayout from "./components/BaseLayout";
3
+ import Container from "./components/Container";
4
+ import Drawer from "./components/Drawer";
5
+ import EBadge from "./components/EBadge";
6
+ import EButton from "./components/EButton";
7
+ import EButtonIcon from "./components/EButtonIcon";
8
+ import EDateAndTimeCard from "./components/EDateAndTimeCard";
9
+ import EIcon from "./components/EIcon";
10
+ import EInfoBox from "./components/EInfoBox";
11
+ import EInput from "./components/EInput";
12
+ import ELabel from "./components/ELabel";
13
+ import EOtpInput from "./components/EOtpInputBox";
14
+ import EPageDescription from "./components/EPageDescription";
15
+ import EPillButton from "./components/EPillButton";
16
+ import EProfile from "./components/EProfile";
17
+ import ESegment from "./components/ESegment";
18
+ import { ESegmentItem } from "./components/ESegment";
19
+ import ETimeLineCard from "./components/ETimeLineCard";
20
+ import ListFormView from "./components/ListFormView";
21
+ import MenuItems from "./components/MenuItems";
22
+ import SecondaryBaseLayout from "./components/SecondaryBaseLayout";
23
+ import Timer from "./components/Timer";
24
+ import EText from "./components/EText";
25
+ import ModalLayout from "./components/ModalLayout";
26
+ import PageHeader from "./components/PageHeader";
27
+ import PageHeaderSecondary from "./components/PageHeaderSecondary";
28
+ import Spacer from "./components/Spacer";
29
+ import { Colors } from "./utils/Color";
30
+ import ProgressBar from "./components/ProgressBar";
31
+ import Loader from "./components/Loader";
32
+ import ETimeInput from "./components/ETimeInput";
33
+ import EDateInput from "./components/EDateInput";
34
+ import EErrorText from "./components/EErrorText";
35
+ import EListPerson from "./components/EListPerson";
36
+ import EListSchool from "./components/EListSchool";
37
+
38
+ export {
39
+ Avatar,
40
+ BaseLayout,
41
+ Container,
42
+ Drawer,
43
+ EButton,
44
+ EButtonIcon,
45
+ EIcon,
46
+ EInput,
47
+ EText,
48
+ ModalLayout,
49
+ PageHeader,
50
+ PageHeaderSecondary,
51
+ ESegment,
52
+ ESegmentItem,
53
+ Spacer,
54
+ EInfoBox,
55
+ EBadge,
56
+ EDateAndTimeCard,
57
+ ELabel,
58
+ EOtpInput,
59
+ EPageDescription,
60
+ ETimeLineCard,
61
+ ListFormView,
62
+ MenuItems,
63
+ EPillButton,
64
+ EProfile,
65
+ SecondaryBaseLayout,
66
+ Timer,
67
+ ProgressBar,
68
+ Loader,
69
+ ETimeInput,
70
+ EDateInput,
71
+ EErrorText,
72
+ Colors,
73
+ EListPerson,
74
+ EListSchool
75
+
76
+ };
package/package.json CHANGED
@@ -1,26 +1,26 @@
1
- {
2
- "name": "fln-espranza",
3
- "version": "0.0.2",
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
- "expo": "~45.0.0",
13
- "expo-status-bar": "~1.3.0",
14
- "react": "17.0.2",
15
- "react-native": "0.68.2",
16
- "react-native-safe-area-context": "4.2.4",
17
- "twrnc": "^3.3.2",
18
- "@react-navigation/drawer": "^6.5.0",
19
- "@react-navigation/native": "^6.0.10",
20
- "@react-navigation/native-stack": "^6.6.2",
21
- "react-native-heroicons": "^2.2.0",
22
- "moment": "^2.29.4",
23
- "@react-native-community/datetimepicker": "6.1.2",
24
- "react-native-reanimated": "~2.8.0"
25
- }
26
- }
1
+ {
2
+ "name": "fln-espranza",
3
+ "version": "0.0.3",
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
+ "expo": "~45.0.0",
13
+ "expo-status-bar": "~1.3.0",
14
+ "react": "17.0.2",
15
+ "react-native": "0.68.2",
16
+ "react-native-safe-area-context": "4.2.4",
17
+ "twrnc": "^3.3.2",
18
+ "@react-navigation/drawer": "^6.5.0",
19
+ "@react-navigation/native": "^6.0.10",
20
+ "@react-navigation/native-stack": "^6.6.2",
21
+ "react-native-heroicons": "^2.2.0",
22
+ "moment": "^2.29.4",
23
+ "@react-native-community/datetimepicker": "6.1.2",
24
+ "react-native-reanimated": "~2.8.0"
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
  };