jornada-ui 0.4.18 → 0.4.19
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/lib/commonjs/components/list-supplies/index.js +132 -111
- package/lib/commonjs/components/list-supplies/index.js.map +1 -1
- package/lib/commonjs/components/notification-details-card/index.js +6 -6
- package/lib/commonjs/components/trip-details-card/index.js +218 -182
- package/lib/commonjs/components/trip-details-card/index.js.map +1 -1
- package/lib/commonjs/index.js +32 -32
- package/lib/module/components/list-supplies/index.js +134 -113
- package/lib/module/components/list-supplies/index.js.map +1 -1
- package/lib/module/components/notification-details-card/index.js +6 -6
- package/lib/module/components/trip-details-card/index.js +221 -184
- package/lib/module/components/trip-details-card/index.js.map +1 -1
- package/lib/module/index.js +4 -4
- package/lib/module/index.js.map +1 -1
- package/lib/typescript/commonjs/src/components/list-supplies/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/trip-details-card/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/index.d.ts +4 -4
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
- package/lib/typescript/module/src/components/list-supplies/index.d.ts.map +1 -1
- package/lib/typescript/module/src/components/trip-details-card/index.d.ts.map +1 -1
- package/lib/typescript/module/src/index.d.ts +4 -4
- package/lib/typescript/module/src/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/list-supplies/index.tsx +178 -153
- package/src/components/notification-details-card/index.tsx +180 -180
- package/src/components/trip-details-card/index.tsx +65 -32
- package/src/index.tsx +4 -4
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
/**
|
|
4
|
-
* IMPORTS
|
|
3
|
+
/**
|
|
4
|
+
* IMPORTS
|
|
5
5
|
*/
|
|
6
|
-
import React, { useEffect } from "react";
|
|
7
|
-
import { Image, View,
|
|
6
|
+
import React, { useEffect, useRef } from "react";
|
|
7
|
+
import { Animated, Image, View, Easing } from "react-native";
|
|
8
8
|
|
|
9
9
|
// components
|
|
10
10
|
import Box from "../../components/box/index.js";
|
|
@@ -25,139 +25,160 @@ const ListSupplies = ({
|
|
|
25
25
|
imagemUrl,
|
|
26
26
|
corBarra
|
|
27
27
|
}) => {
|
|
28
|
+
// 🔹 Valor de animação para fade + slide
|
|
29
|
+
const fadeAnim = useRef(new Animated.Value(0)).current;
|
|
30
|
+
const slideAnim = useRef(new Animated.Value(20)).current;
|
|
28
31
|
useEffect(() => {
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
32
|
+
// 🔹 Animação ao montar o componente
|
|
33
|
+
Animated.timing(fadeAnim, {
|
|
34
|
+
toValue: 1,
|
|
35
|
+
duration: 400,
|
|
36
|
+
easing: Easing.out(Easing.ease),
|
|
37
|
+
useNativeDriver: true
|
|
38
|
+
}).start();
|
|
39
|
+
Animated.timing(slideAnim, {
|
|
40
|
+
toValue: 0,
|
|
41
|
+
duration: 400,
|
|
42
|
+
easing: Easing.out(Easing.ease),
|
|
43
|
+
useNativeDriver: true
|
|
44
|
+
}).start();
|
|
45
|
+
}, [fadeAnim, slideAnim]);
|
|
46
|
+
return /*#__PURE__*/_jsx(Animated.View, {
|
|
47
|
+
style: {
|
|
48
|
+
opacity: fadeAnim,
|
|
49
|
+
transform: [{
|
|
50
|
+
translateY: slideAnim
|
|
51
|
+
}]
|
|
37
52
|
},
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
borderRadius: theme.borderWidths.thick_medium
|
|
41
|
-
},
|
|
42
|
-
children: [/*#__PURE__*/_jsx(View, {
|
|
43
|
-
style: {
|
|
44
|
-
width: 15,
|
|
45
|
-
backgroundColor: corBarra ?? theme.colors.blue[375],
|
|
46
|
-
borderTopLeftRadius: theme.borderWidths.thick_medium,
|
|
47
|
-
borderBottomLeftRadius: theme.borderWidths.thick_medium
|
|
48
|
-
}
|
|
49
|
-
}), /*#__PURE__*/_jsxs(Box, {
|
|
53
|
+
children: /*#__PURE__*/_jsxs(Box, {
|
|
54
|
+
width: "100%",
|
|
50
55
|
flexStyle: {
|
|
51
|
-
|
|
56
|
+
flexDirection: "row"
|
|
52
57
|
},
|
|
53
|
-
|
|
54
|
-
|
|
58
|
+
backgroundColor: theme.colors.neutral[25],
|
|
59
|
+
borderStyled: {
|
|
60
|
+
borderRadius: theme.borderWidths.thick_medium
|
|
55
61
|
},
|
|
56
|
-
children: [/*#__PURE__*/_jsx(
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
},
|
|
64
|
-
children: /*#__PURE__*/_jsx(Typography, {
|
|
65
|
-
text: `${namePosto || "Não informado"}`,
|
|
66
|
-
color: theme.colors.black[25],
|
|
67
|
-
fontFamily: theme.fonts.inter_medium_500,
|
|
68
|
-
size: theme.fontSizes.sm
|
|
69
|
-
})
|
|
62
|
+
children: [/*#__PURE__*/_jsx(View, {
|
|
63
|
+
style: {
|
|
64
|
+
width: 15,
|
|
65
|
+
backgroundColor: corBarra ?? theme.colors.blue[375],
|
|
66
|
+
borderTopLeftRadius: theme.borderWidths.thick_medium,
|
|
67
|
+
borderBottomLeftRadius: theme.borderWidths.thick_medium
|
|
68
|
+
}
|
|
70
69
|
}), /*#__PURE__*/_jsxs(Box, {
|
|
71
|
-
marginStyle: {
|
|
72
|
-
marginBottom: theme.margins.fn
|
|
73
|
-
},
|
|
74
70
|
flexStyle: {
|
|
75
|
-
|
|
76
|
-
|
|
71
|
+
flex: 1
|
|
72
|
+
},
|
|
73
|
+
paddingStyle: {
|
|
74
|
+
padding: theme.paddings["2xs"]
|
|
77
75
|
},
|
|
78
|
-
children: [/*#__PURE__*/_jsx(
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
76
|
+
children: [/*#__PURE__*/_jsx(Box, {
|
|
77
|
+
marginStyle: {
|
|
78
|
+
marginBottom: theme.margins.fn
|
|
79
|
+
},
|
|
80
|
+
flexStyle: {
|
|
81
|
+
flexDirection: "row",
|
|
82
|
+
justifyContent: "flex-start"
|
|
83
|
+
},
|
|
84
|
+
children: /*#__PURE__*/_jsx(Typography, {
|
|
85
|
+
text: `${namePosto || "Não informado"}`,
|
|
86
|
+
color: theme.colors.black[25],
|
|
87
|
+
fontFamily: theme.fonts.inter_medium_500,
|
|
88
|
+
size: theme.fontSizes.sm
|
|
89
|
+
})
|
|
83
90
|
}), /*#__PURE__*/_jsxs(Box, {
|
|
91
|
+
marginStyle: {
|
|
92
|
+
marginBottom: theme.margins.fn
|
|
93
|
+
},
|
|
84
94
|
flexStyle: {
|
|
85
95
|
flexDirection: "row",
|
|
86
96
|
justifyContent: "flex-start"
|
|
87
97
|
},
|
|
88
98
|
children: [/*#__PURE__*/_jsx(Typography, {
|
|
89
|
-
text:
|
|
99
|
+
text: "Litragem: ",
|
|
90
100
|
color: theme.colors.black[25],
|
|
91
|
-
fontFamily: theme.fonts.
|
|
101
|
+
fontFamily: theme.fonts.inter_medium_500,
|
|
102
|
+
size: theme.fontSizes.sm
|
|
103
|
+
}), /*#__PURE__*/_jsxs(Box, {
|
|
104
|
+
flexStyle: {
|
|
105
|
+
flexDirection: "row",
|
|
106
|
+
justifyContent: "flex-start"
|
|
107
|
+
},
|
|
108
|
+
children: [/*#__PURE__*/_jsx(Typography, {
|
|
109
|
+
text: `${litragem || "Não informado"}`,
|
|
110
|
+
color: theme.colors.black[25],
|
|
111
|
+
fontFamily: theme.fonts.inter_regular_400,
|
|
112
|
+
size: theme.fontSizes.sm
|
|
113
|
+
}), /*#__PURE__*/_jsx(Typography, {
|
|
114
|
+
text: ` LT`,
|
|
115
|
+
color: theme.colors.red[400],
|
|
116
|
+
fontFamily: theme.fonts.inter_regular_400,
|
|
117
|
+
size: theme.fontSizes.sm
|
|
118
|
+
})]
|
|
119
|
+
})]
|
|
120
|
+
}), /*#__PURE__*/_jsxs(Box, {
|
|
121
|
+
marginStyle: {
|
|
122
|
+
marginBottom: theme.margins.fn
|
|
123
|
+
},
|
|
124
|
+
flexStyle: {
|
|
125
|
+
flexDirection: "row",
|
|
126
|
+
justifyContent: "flex-start"
|
|
127
|
+
},
|
|
128
|
+
children: [/*#__PURE__*/_jsx(Typography, {
|
|
129
|
+
text: "Valor: ",
|
|
130
|
+
color: theme.colors.black[25],
|
|
131
|
+
fontFamily: theme.fonts.inter_medium_500,
|
|
92
132
|
size: theme.fontSizes.sm
|
|
93
133
|
}), /*#__PURE__*/_jsx(Typography, {
|
|
94
|
-
text: `
|
|
95
|
-
color: theme.colors.
|
|
134
|
+
text: `R$ ${valor || "Não informado"}`,
|
|
135
|
+
color: theme.colors.gray[700],
|
|
96
136
|
fontFamily: theme.fonts.inter_regular_400,
|
|
97
137
|
size: theme.fontSizes.sm
|
|
98
138
|
})]
|
|
99
|
-
})
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
marginBottom: theme.margins.fn
|
|
103
|
-
},
|
|
104
|
-
flexStyle: {
|
|
105
|
-
flexDirection: "row",
|
|
106
|
-
justifyContent: "flex-start"
|
|
107
|
-
},
|
|
108
|
-
children: [/*#__PURE__*/_jsx(Typography, {
|
|
109
|
-
text: "Valor: ",
|
|
110
|
-
color: theme.colors.black[25],
|
|
111
|
-
fontFamily: theme.fonts.inter_medium_500,
|
|
112
|
-
size: theme.fontSizes.sm
|
|
113
|
-
}), /*#__PURE__*/_jsx(Typography, {
|
|
114
|
-
text: `R$ ${valor || "Não informado"}`,
|
|
115
|
-
color: theme.colors.gray[700],
|
|
116
|
-
fontFamily: theme.fonts.inter_regular_400,
|
|
117
|
-
size: theme.fontSizes.sm
|
|
118
|
-
})]
|
|
119
|
-
}), /*#__PURE__*/_jsxs(Box, {
|
|
120
|
-
marginStyle: {
|
|
121
|
-
marginBottom: theme.margins.fn
|
|
122
|
-
},
|
|
123
|
-
flexStyle: {
|
|
124
|
-
flexDirection: "row",
|
|
125
|
-
justifyContent: "flex-start"
|
|
126
|
-
},
|
|
127
|
-
children: [/*#__PURE__*/_jsx(Typography, {
|
|
128
|
-
text: "Data: ",
|
|
129
|
-
color: theme.colors.black[25],
|
|
130
|
-
fontFamily: theme.fonts.inter_medium_500,
|
|
131
|
-
size: theme.fontSizes.sm
|
|
132
|
-
}), /*#__PURE__*/_jsx(Typography, {
|
|
133
|
-
text: `${dataRegistro || "Não informado"}`,
|
|
134
|
-
color: theme.colors.gray[700],
|
|
135
|
-
fontFamily: theme.fonts.inter_regular_400,
|
|
136
|
-
size: theme.fontSizes.sm
|
|
137
|
-
})]
|
|
138
|
-
}), /*#__PURE__*/_jsx(Box, {
|
|
139
|
-
borderStyled: {
|
|
140
|
-
borderWidth: 1,
|
|
141
|
-
borderColor: theme.colors.black[25],
|
|
142
|
-
borderRadius: theme.borderWidths.thick_medium
|
|
143
|
-
},
|
|
144
|
-
flexStyle: {
|
|
145
|
-
justifyContent: "center",
|
|
146
|
-
alignItems: "center"
|
|
147
|
-
},
|
|
148
|
-
children: /*#__PURE__*/_jsx(Image, {
|
|
149
|
-
source: {
|
|
150
|
-
uri: imagemUrl ?? "https://placehold.co/300x300"
|
|
139
|
+
}), /*#__PURE__*/_jsxs(Box, {
|
|
140
|
+
marginStyle: {
|
|
141
|
+
marginBottom: theme.margins.fn
|
|
151
142
|
},
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
143
|
+
flexStyle: {
|
|
144
|
+
flexDirection: "row",
|
|
145
|
+
justifyContent: "flex-start"
|
|
146
|
+
},
|
|
147
|
+
children: [/*#__PURE__*/_jsx(Typography, {
|
|
148
|
+
text: "Data: ",
|
|
149
|
+
color: theme.colors.black[25],
|
|
150
|
+
fontFamily: theme.fonts.inter_medium_500,
|
|
151
|
+
size: theme.fontSizes.sm
|
|
152
|
+
}), /*#__PURE__*/_jsx(Typography, {
|
|
153
|
+
text: `${dataRegistro || "Não informado"}`,
|
|
154
|
+
color: theme.colors.gray[700],
|
|
155
|
+
fontFamily: theme.fonts.inter_regular_400,
|
|
156
|
+
size: theme.fontSizes.sm
|
|
157
|
+
})]
|
|
158
|
+
}), /*#__PURE__*/_jsx(Box, {
|
|
159
|
+
borderStyled: {
|
|
160
|
+
borderWidth: 1,
|
|
161
|
+
borderColor: theme.colors.black[25],
|
|
155
162
|
borderRadius: theme.borderWidths.thick_medium
|
|
156
163
|
},
|
|
157
|
-
|
|
158
|
-
|
|
164
|
+
flexStyle: {
|
|
165
|
+
justifyContent: "center",
|
|
166
|
+
alignItems: "center"
|
|
167
|
+
},
|
|
168
|
+
children: /*#__PURE__*/_jsx(Image, {
|
|
169
|
+
source: {
|
|
170
|
+
uri: imagemUrl ?? "https://placehold.co/300x300"
|
|
171
|
+
},
|
|
172
|
+
style: {
|
|
173
|
+
width: "100%",
|
|
174
|
+
height: 139,
|
|
175
|
+
borderRadius: theme.borderWidths.thick_medium
|
|
176
|
+
},
|
|
177
|
+
resizeMode: "cover"
|
|
178
|
+
})
|
|
179
|
+
})]
|
|
159
180
|
})]
|
|
160
|
-
})
|
|
181
|
+
})
|
|
161
182
|
});
|
|
162
183
|
};
|
|
163
184
|
ListSupplies.displayName = "ListSupplies";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","useEffect","
|
|
1
|
+
{"version":3,"names":["React","useEffect","useRef","Animated","Image","View","Easing","Box","Typography","theme","asBaseComponent","jsx","_jsx","jsxs","_jsxs","ListSupplies","dataRegistro","namePosto","litragem","valor","imagemUrl","corBarra","fadeAnim","Value","current","slideAnim","timing","toValue","duration","easing","out","ease","useNativeDriver","start","style","opacity","transform","translateY","children","width","flexStyle","flexDirection","backgroundColor","colors","neutral","borderStyled","borderRadius","borderWidths","thick_medium","blue","borderTopLeftRadius","borderBottomLeftRadius","flex","paddingStyle","padding","paddings","marginStyle","marginBottom","margins","fn","justifyContent","text","color","black","fontFamily","fonts","inter_medium_500","size","fontSizes","sm","inter_regular_400","red","gray","borderWidth","borderColor","alignItems","source","uri","height","resizeMode","displayName"],"sourceRoot":"..\\..\\..\\..\\src","sources":["components/list-supplies/index.tsx"],"mappings":";;AAAA;AACA;AACA;AACA,OAAOA,KAAK,IAAIC,SAAS,EAAEC,MAAM,QAAQ,OAAO;AAChD,SAASC,QAAQ,EAAEC,KAAK,EAAEC,IAAI,EAAEC,MAAM,QAAQ,cAAc;;AAE5D;AACA,OAAOC,GAAG,MAAM,+BAAsB;AACtC,OAAOC,UAAU,MAAM,sCAA6B;;AAEpD;AACA,SAASC,KAAK,QAAQ,6BAA0B;;AAEhD;;AAEA,SAASC,eAAe,QAAQ,mCAAgC;AAAC,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAEjE,MAAMC,YAAqC,GAAGA,CAAC;EAC7CC,YAAY;EACZC,SAAS;EACTC,QAAQ;EACRC,KAAK;EACLC,SAAS;EACTC;AACF,CAAC,KAAK;EACJ;EACA,MAAMC,QAAQ,GAAGpB,MAAM,CAAC,IAAIC,QAAQ,CAACoB,KAAK,CAAC,CAAC,CAAC,CAAC,CAACC,OAAO;EACtD,MAAMC,SAAS,GAAGvB,MAAM,CAAC,IAAIC,QAAQ,CAACoB,KAAK,CAAC,EAAE,CAAC,CAAC,CAACC,OAAO;EAExDvB,SAAS,CAAC,MAAM;IACd;IACAE,QAAQ,CAACuB,MAAM,CAACJ,QAAQ,EAAE;MACxBK,OAAO,EAAE,CAAC;MACVC,QAAQ,EAAE,GAAG;MACbC,MAAM,EAAEvB,MAAM,CAACwB,GAAG,CAACxB,MAAM,CAACyB,IAAI,CAAC;MAC/BC,eAAe,EAAE;IACnB,CAAC,CAAC,CAACC,KAAK,CAAC,CAAC;IAEV9B,QAAQ,CAACuB,MAAM,CAACD,SAAS,EAAE;MACzBE,OAAO,EAAE,CAAC;MACVC,QAAQ,EAAE,GAAG;MACbC,MAAM,EAAEvB,MAAM,CAACwB,GAAG,CAACxB,MAAM,CAACyB,IAAI,CAAC;MAC/BC,eAAe,EAAE;IACnB,CAAC,CAAC,CAACC,KAAK,CAAC,CAAC;EACZ,CAAC,EAAE,CAACX,QAAQ,EAAEG,SAAS,CAAC,CAAC;EAEzB,oBACEb,IAAA,CAACT,QAAQ,CAACE,IAAI;IACZ6B,KAAK,EAAE;MACLC,OAAO,EAAEb,QAAQ;MACjBc,SAAS,EAAE,CAAC;QAAEC,UAAU,EAAEZ;MAAU,CAAC;IACvC,CAAE;IAAAa,QAAA,eAEFxB,KAAA,CAACP,GAAG;MACFgC,KAAK,EAAE,MAAO;MACdC,SAAS,EAAE;QAAEC,aAAa,EAAE;MAAM,CAAE;MACpCC,eAAe,EAAEjC,KAAK,CAACkC,MAAM,CAACC,OAAO,CAAC,EAAE,CAAE;MAC1CC,YAAY,EAAE;QAAEC,YAAY,EAAErC,KAAK,CAACsC,YAAY,CAACC;MAAa,CAAE;MAAAV,QAAA,gBAGhE1B,IAAA,CAACP,IAAI;QACH6B,KAAK,EAAE;UACLK,KAAK,EAAE,EAAE;UACTG,eAAe,EAAErB,QAAQ,IAAIZ,KAAK,CAACkC,MAAM,CAACM,IAAI,CAAC,GAAG,CAAC;UACnDC,mBAAmB,EAAEzC,KAAK,CAACsC,YAAY,CAACC,YAAY;UACpDG,sBAAsB,EAAE1C,KAAK,CAACsC,YAAY,CAACC;QAC7C;MAAE,CACH,CAAC,eAEFlC,KAAA,CAACP,GAAG;QAACiC,SAAS,EAAE;UAAEY,IAAI,EAAE;QAAE,CAAE;QAACC,YAAY,EAAE;UAAEC,OAAO,EAAE7C,KAAK,CAAC8C,QAAQ,CAAC,KAAK;QAAE,CAAE;QAAAjB,QAAA,gBAE5E1B,IAAA,CAACL,GAAG;UACFiD,WAAW,EAAE;YAAEC,YAAY,EAAEhD,KAAK,CAACiD,OAAO,CAACC;UAAG,CAAE;UAChDnB,SAAS,EAAE;YAAEC,aAAa,EAAE,KAAK;YAAEmB,cAAc,EAAE;UAAa,CAAE;UAAAtB,QAAA,eAElE1B,IAAA,CAACJ,UAAU;YACTqD,IAAI,EAAE,GAAG5C,SAAS,IAAI,eAAe,EAAG;YACxC6C,KAAK,EAAErD,KAAK,CAACkC,MAAM,CAACoB,KAAK,CAAC,EAAE,CAAE;YAC9BC,UAAU,EAAEvD,KAAK,CAACwD,KAAK,CAACC,gBAAiB;YACzCC,IAAI,EAAE1D,KAAK,CAAC2D,SAAS,CAACC;UAAG,CAC1B;QAAC,CACC,CAAC,eAGNvD,KAAA,CAACP,GAAG;UACFiD,WAAW,EAAE;YAAEC,YAAY,EAAEhD,KAAK,CAACiD,OAAO,CAACC;UAAG,CAAE;UAChDnB,SAAS,EAAE;YAAEC,aAAa,EAAE,KAAK;YAAEmB,cAAc,EAAE;UAAa,CAAE;UAAAtB,QAAA,gBAElE1B,IAAA,CAACJ,UAAU;YACTqD,IAAI,EAAC,YAAY;YACjBC,KAAK,EAAErD,KAAK,CAACkC,MAAM,CAACoB,KAAK,CAAC,EAAE,CAAE;YAC9BC,UAAU,EAAEvD,KAAK,CAACwD,KAAK,CAACC,gBAAiB;YACzCC,IAAI,EAAE1D,KAAK,CAAC2D,SAAS,CAACC;UAAG,CAC1B,CAAC,eACFvD,KAAA,CAACP,GAAG;YAACiC,SAAS,EAAE;cAAEC,aAAa,EAAE,KAAK;cAAEmB,cAAc,EAAE;YAAa,CAAE;YAAAtB,QAAA,gBACrE1B,IAAA,CAACJ,UAAU;cACTqD,IAAI,EAAE,GAAG3C,QAAQ,IAAI,eAAe,EAAG;cACvC4C,KAAK,EAAErD,KAAK,CAACkC,MAAM,CAACoB,KAAK,CAAC,EAAE,CAAE;cAC9BC,UAAU,EAAEvD,KAAK,CAACwD,KAAK,CAACK,iBAAkB;cAC1CH,IAAI,EAAE1D,KAAK,CAAC2D,SAAS,CAACC;YAAG,CAC1B,CAAC,eACFzD,IAAA,CAACJ,UAAU;cACTqD,IAAI,EAAE,KAAM;cACZC,KAAK,EAAErD,KAAK,CAACkC,MAAM,CAAC4B,GAAG,CAAC,GAAG,CAAE;cAC7BP,UAAU,EAAEvD,KAAK,CAACwD,KAAK,CAACK,iBAAkB;cAC1CH,IAAI,EAAE1D,KAAK,CAAC2D,SAAS,CAACC;YAAG,CAC1B,CAAC;UAAA,CACC,CAAC;QAAA,CACH,CAAC,eAGNvD,KAAA,CAACP,GAAG;UACFiD,WAAW,EAAE;YAAEC,YAAY,EAAEhD,KAAK,CAACiD,OAAO,CAACC;UAAG,CAAE;UAChDnB,SAAS,EAAE;YAAEC,aAAa,EAAE,KAAK;YAAEmB,cAAc,EAAE;UAAa,CAAE;UAAAtB,QAAA,gBAElE1B,IAAA,CAACJ,UAAU;YACTqD,IAAI,EAAC,SAAS;YACdC,KAAK,EAAErD,KAAK,CAACkC,MAAM,CAACoB,KAAK,CAAC,EAAE,CAAE;YAC9BC,UAAU,EAAEvD,KAAK,CAACwD,KAAK,CAACC,gBAAiB;YACzCC,IAAI,EAAE1D,KAAK,CAAC2D,SAAS,CAACC;UAAG,CAC1B,CAAC,eACFzD,IAAA,CAACJ,UAAU;YACTqD,IAAI,EAAE,MAAM1C,KAAK,IAAI,eAAe,EAAG;YACvC2C,KAAK,EAAErD,KAAK,CAACkC,MAAM,CAAC6B,IAAI,CAAC,GAAG,CAAE;YAC9BR,UAAU,EAAEvD,KAAK,CAACwD,KAAK,CAACK,iBAAkB;YAC1CH,IAAI,EAAE1D,KAAK,CAAC2D,SAAS,CAACC;UAAG,CAC1B,CAAC;QAAA,CACC,CAAC,eAGNvD,KAAA,CAACP,GAAG;UACFiD,WAAW,EAAE;YAAEC,YAAY,EAAEhD,KAAK,CAACiD,OAAO,CAACC;UAAG,CAAE;UAChDnB,SAAS,EAAE;YAAEC,aAAa,EAAE,KAAK;YAAEmB,cAAc,EAAE;UAAa,CAAE;UAAAtB,QAAA,gBAElE1B,IAAA,CAACJ,UAAU;YACTqD,IAAI,EAAE,QAAS;YACfC,KAAK,EAAErD,KAAK,CAACkC,MAAM,CAACoB,KAAK,CAAC,EAAE,CAAE;YAC9BC,UAAU,EAAEvD,KAAK,CAACwD,KAAK,CAACC,gBAAiB;YACzCC,IAAI,EAAE1D,KAAK,CAAC2D,SAAS,CAACC;UAAG,CAC1B,CAAC,eACFzD,IAAA,CAACJ,UAAU;YACTqD,IAAI,EAAE,GAAG7C,YAAY,IAAI,eAAe,EAAG;YAC3C8C,KAAK,EAAErD,KAAK,CAACkC,MAAM,CAAC6B,IAAI,CAAC,GAAG,CAAE;YAC9BR,UAAU,EAAEvD,KAAK,CAACwD,KAAK,CAACK,iBAAkB;YAC1CH,IAAI,EAAE1D,KAAK,CAAC2D,SAAS,CAACC;UAAG,CAC1B,CAAC;QAAA,CACC,CAAC,eAGNzD,IAAA,CAACL,GAAG;UACFsC,YAAY,EAAE;YACZ4B,WAAW,EAAE,CAAC;YACdC,WAAW,EAAEjE,KAAK,CAACkC,MAAM,CAACoB,KAAK,CAAC,EAAE,CAAC;YACnCjB,YAAY,EAAErC,KAAK,CAACsC,YAAY,CAACC;UACnC,CAAE;UACFR,SAAS,EAAE;YACToB,cAAc,EAAE,QAAQ;YACxBe,UAAU,EAAE;UACd,CAAE;UAAArC,QAAA,eAEF1B,IAAA,CAACR,KAAK;YACJwE,MAAM,EAAE;cAAEC,GAAG,EAAEzD,SAAS,IAAI;YAA+B,CAAE;YAC7Dc,KAAK,EAAE;cACLK,KAAK,EAAE,MAAM;cACbuC,MAAM,EAAE,GAAG;cACXhC,YAAY,EAAErC,KAAK,CAACsC,YAAY,CAACC;YACnC,CAAE;YACF+B,UAAU,EAAC;UAAO,CACnB;QAAC,CACC,CAAC;MAAA,CACH,CAAC;IAAA,CACH;EAAC,CACO,CAAC;AAEpB,CAAC;AAEDhE,YAAY,CAACiE,WAAW,GAAG,cAAc;AACzC,eAAetE,eAAe,CAACK,YAAY,CAAC","ignoreList":[]}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
/**
|
|
4
|
-
* IMPORTS
|
|
3
|
+
/**
|
|
4
|
+
* IMPORTS
|
|
5
5
|
*/
|
|
6
6
|
import React, { forwardRef, useState } from "react";
|
|
7
7
|
import { Modal, TouchableOpacity, Image, View } from "react-native";
|
|
@@ -20,8 +20,8 @@ import { asBaseComponent } from "../../@types/as-base-component.js";
|
|
|
20
20
|
// styles / theme
|
|
21
21
|
import { theme } from "../../styles/theme/theme.js";
|
|
22
22
|
|
|
23
|
-
/**
|
|
24
|
-
* Componente NotificationDetailCard
|
|
23
|
+
/**
|
|
24
|
+
* Componente NotificationDetailCard
|
|
25
25
|
*/
|
|
26
26
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
27
27
|
const NotificationDetailCard = /*#__PURE__*/forwardRef(({
|
|
@@ -176,8 +176,8 @@ const NotificationDetailCard = /*#__PURE__*/forwardRef(({
|
|
|
176
176
|
});
|
|
177
177
|
NotificationDetailCard.displayName = "NotificationDetailCard";
|
|
178
178
|
|
|
179
|
-
/**
|
|
180
|
-
* EXPORTS
|
|
179
|
+
/**
|
|
180
|
+
* EXPORTS
|
|
181
181
|
*/
|
|
182
182
|
export default asBaseComponent(NotificationDetailCard);
|
|
183
183
|
//# sourceMappingURL=index.js.map
|