mg-library 1.0.650 → 1.0.652
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/blocks.js +2 -1
- package/components.js +2 -1
- package/functions.js +2 -1
- package/gluestack.config.js +137 -0
- package/mg-library.rar +0 -0
- package/package.json +1 -1
- package/library.zip +0 -0
package/blocks.js
CHANGED
|
@@ -5,7 +5,8 @@ import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityI
|
|
|
5
5
|
import * as ImageManipulator from 'expo-image-manipulator';
|
|
6
6
|
import { Camera, CameraType, CameraView } from 'expo-camera';
|
|
7
7
|
import axios from 'axios';
|
|
8
|
-
import { Divider,
|
|
8
|
+
import { Divider, Button as NBButton, Icon as NBIcon, Popover as NBPopover, Input as NBInput } from 'native-base';
|
|
9
|
+
import { Box } from '@gluestack-ui/themed';
|
|
9
10
|
import { uploadFile } from '@uploadcare/upload-client';
|
|
10
11
|
import { useSafeAreaInsets } from 'react-native-safe-area-context';
|
|
11
12
|
|
package/components.js
CHANGED
package/functions.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import Toast from 'react-native-root-toast';
|
|
2
2
|
import { StyleSheet, View, Dimensions } from 'react-native';
|
|
3
3
|
import AsyncStorage from '@react-native-async-storage/async-storage';
|
|
4
|
-
import {
|
|
4
|
+
import { Button as NBButton, Icon as NBIcon } from 'native-base';
|
|
5
|
+
import { Box } from '@gluestack-ui/themed';
|
|
5
6
|
import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons';
|
|
6
7
|
import moment from 'moment';
|
|
7
8
|
import 'moment/locale/es';
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import { config as base } from '@gluestack-ui/config';
|
|
2
|
+
|
|
3
|
+
const palette = {
|
|
4
|
+
primary: {
|
|
5
|
+
100: '#FDEACD',
|
|
6
|
+
200: '#FCCF9D',
|
|
7
|
+
300: '#F8AD6B',
|
|
8
|
+
400: '#F28B46',
|
|
9
|
+
500: '#EA570D',
|
|
10
|
+
600: '#C93D09',
|
|
11
|
+
700: '#A82706',
|
|
12
|
+
800: '#871604',
|
|
13
|
+
900: '#700B02',
|
|
14
|
+
},
|
|
15
|
+
success: {
|
|
16
|
+
100: '#EDFCD2',
|
|
17
|
+
200: '#D6FAA7',
|
|
18
|
+
300: '#B6F279',
|
|
19
|
+
400: '#96E656',
|
|
20
|
+
500: '#68D624',
|
|
21
|
+
600: '#4DB81A',
|
|
22
|
+
700: '#359A12',
|
|
23
|
+
800: '#227C0B',
|
|
24
|
+
900: '#146606',
|
|
25
|
+
},
|
|
26
|
+
info: {
|
|
27
|
+
100: '#CBF4FC',
|
|
28
|
+
200: '#98E4FA',
|
|
29
|
+
300: '#63C9F1',
|
|
30
|
+
400: '#3CAAE3',
|
|
31
|
+
500: '#047FD1',
|
|
32
|
+
600: '#0262B3',
|
|
33
|
+
700: '#024996',
|
|
34
|
+
800: '#013479',
|
|
35
|
+
900: '#002564',
|
|
36
|
+
},
|
|
37
|
+
warning: {
|
|
38
|
+
100: '#FEF9CC',
|
|
39
|
+
200: '#FEF29A',
|
|
40
|
+
300: '#FEE868',
|
|
41
|
+
400: '#FDDE43',
|
|
42
|
+
500: '#FCCF05',
|
|
43
|
+
600: '#D8AD03',
|
|
44
|
+
700: '#B58E02',
|
|
45
|
+
800: '#926F01',
|
|
46
|
+
900: '#785900',
|
|
47
|
+
},
|
|
48
|
+
danger: {
|
|
49
|
+
100: '#FEE9DA',
|
|
50
|
+
200: '#FECEB6',
|
|
51
|
+
300: '#FDAC92',
|
|
52
|
+
400: '#FB8C76',
|
|
53
|
+
500: '#fa584a',
|
|
54
|
+
600: '#D73636',
|
|
55
|
+
700: '#B32531',
|
|
56
|
+
800: '#90172B',
|
|
57
|
+
900: '#770E28',
|
|
58
|
+
},
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
const gsConfig = {
|
|
62
|
+
...base,
|
|
63
|
+
tokens: {
|
|
64
|
+
...base.tokens,
|
|
65
|
+
colors: {
|
|
66
|
+
...base.tokens.colors,
|
|
67
|
+
primary100: palette.primary[100],
|
|
68
|
+
primary200: palette.primary[200],
|
|
69
|
+
primary300: palette.primary[300],
|
|
70
|
+
primary400: palette.primary[400],
|
|
71
|
+
primary500: palette.primary[500],
|
|
72
|
+
primary600: palette.primary[600],
|
|
73
|
+
primary700: palette.primary[700],
|
|
74
|
+
primary800: palette.primary[800],
|
|
75
|
+
primary900: palette.primary[900],
|
|
76
|
+
success100: palette.success[100],
|
|
77
|
+
success200: palette.success[200],
|
|
78
|
+
success300: palette.success[300],
|
|
79
|
+
success400: palette.success[400],
|
|
80
|
+
success500: palette.success[500],
|
|
81
|
+
success600: palette.success[600],
|
|
82
|
+
success700: palette.success[700],
|
|
83
|
+
success800: palette.success[800],
|
|
84
|
+
success900: palette.success[900],
|
|
85
|
+
info100: palette.info[100],
|
|
86
|
+
info200: palette.info[200],
|
|
87
|
+
info300: palette.info[300],
|
|
88
|
+
info400: palette.info[400],
|
|
89
|
+
info500: palette.info[500],
|
|
90
|
+
info600: palette.info[600],
|
|
91
|
+
info700: palette.info[700],
|
|
92
|
+
info800: palette.info[800],
|
|
93
|
+
info900: palette.info[900],
|
|
94
|
+
warning100: palette.warning[100],
|
|
95
|
+
warning200: palette.warning[200],
|
|
96
|
+
warning300: palette.warning[300],
|
|
97
|
+
warning400: palette.warning[400],
|
|
98
|
+
warning500: palette.warning[500],
|
|
99
|
+
warning600: palette.warning[600],
|
|
100
|
+
warning700: palette.warning[700],
|
|
101
|
+
warning800: palette.warning[800],
|
|
102
|
+
warning900: palette.warning[900],
|
|
103
|
+
danger100: palette.danger[100],
|
|
104
|
+
danger200: palette.danger[200],
|
|
105
|
+
danger300: palette.danger[300],
|
|
106
|
+
danger400: palette.danger[400],
|
|
107
|
+
danger500: palette.danger[500],
|
|
108
|
+
danger600: palette.danger[600],
|
|
109
|
+
danger700: palette.danger[700],
|
|
110
|
+
danger800: palette.danger[800],
|
|
111
|
+
danger900: palette.danger[900],
|
|
112
|
+
error100: palette.danger[100],
|
|
113
|
+
error200: palette.danger[200],
|
|
114
|
+
error300: palette.danger[300],
|
|
115
|
+
error400: palette.danger[400],
|
|
116
|
+
error500: palette.danger[500],
|
|
117
|
+
error600: palette.danger[600],
|
|
118
|
+
error700: palette.danger[700],
|
|
119
|
+
error800: palette.danger[800],
|
|
120
|
+
error900: palette.danger[900],
|
|
121
|
+
//
|
|
122
|
+
primary0: palette.primary[500],
|
|
123
|
+
primary50: palette.primary[100],
|
|
124
|
+
success0: palette.success[500],
|
|
125
|
+
success50: palette.success[100],
|
|
126
|
+
error0: palette.danger[500],
|
|
127
|
+
error50: palette.danger[100],
|
|
128
|
+
warning0: palette.warning[500],
|
|
129
|
+
warning50: palette.warning[100],
|
|
130
|
+
info0: palette.info[500],
|
|
131
|
+
info50: palette.info[100],
|
|
132
|
+
},
|
|
133
|
+
},
|
|
134
|
+
|
|
135
|
+
};
|
|
136
|
+
|
|
137
|
+
export default gsConfig;
|
package/mg-library.rar
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/library.zip
DELETED
|
Binary file
|