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.
Files changed (26) hide show
  1. package/lib/commonjs/components/list-supplies/index.js +132 -111
  2. package/lib/commonjs/components/list-supplies/index.js.map +1 -1
  3. package/lib/commonjs/components/notification-details-card/index.js +6 -6
  4. package/lib/commonjs/components/trip-details-card/index.js +218 -182
  5. package/lib/commonjs/components/trip-details-card/index.js.map +1 -1
  6. package/lib/commonjs/index.js +32 -32
  7. package/lib/module/components/list-supplies/index.js +134 -113
  8. package/lib/module/components/list-supplies/index.js.map +1 -1
  9. package/lib/module/components/notification-details-card/index.js +6 -6
  10. package/lib/module/components/trip-details-card/index.js +221 -184
  11. package/lib/module/components/trip-details-card/index.js.map +1 -1
  12. package/lib/module/index.js +4 -4
  13. package/lib/module/index.js.map +1 -1
  14. package/lib/typescript/commonjs/src/components/list-supplies/index.d.ts.map +1 -1
  15. package/lib/typescript/commonjs/src/components/trip-details-card/index.d.ts.map +1 -1
  16. package/lib/typescript/commonjs/src/index.d.ts +4 -4
  17. package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
  18. package/lib/typescript/module/src/components/list-supplies/index.d.ts.map +1 -1
  19. package/lib/typescript/module/src/components/trip-details-card/index.d.ts.map +1 -1
  20. package/lib/typescript/module/src/index.d.ts +4 -4
  21. package/lib/typescript/module/src/index.d.ts.map +1 -1
  22. package/package.json +1 -1
  23. package/src/components/list-supplies/index.tsx +178 -153
  24. package/src/components/notification-details-card/index.tsx +180 -180
  25. package/src/components/trip-details-card/index.tsx +65 -32
  26. 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, UIManager, Platform } from "react-native";
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
- if (Platform.OS === "android" && UIManager.setLayoutAnimationEnabledExperimental) {
30
- UIManager.setLayoutAnimationEnabledExperimental(true);
31
- }
32
- }, []);
33
- return /*#__PURE__*/_jsxs(Box, {
34
- width: "100%",
35
- flexStyle: {
36
- flexDirection: "row"
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
- backgroundColor: theme.colors.neutral[25],
39
- borderStyled: {
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
- flex: 1
56
+ flexDirection: "row"
52
57
  },
53
- paddingStyle: {
54
- padding: theme.paddings["2xs"]
58
+ backgroundColor: theme.colors.neutral[25],
59
+ borderStyled: {
60
+ borderRadius: theme.borderWidths.thick_medium
55
61
  },
56
- children: [/*#__PURE__*/_jsx(Box, {
57
- marginStyle: {
58
- marginBottom: theme.margins.fn
59
- },
60
- flexStyle: {
61
- flexDirection: "row",
62
- justifyContent: "flex-start"
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
- flexDirection: "row",
76
- justifyContent: "flex-start"
71
+ flex: 1
72
+ },
73
+ paddingStyle: {
74
+ padding: theme.paddings["2xs"]
77
75
  },
78
- children: [/*#__PURE__*/_jsx(Typography, {
79
- text: "Litragem: ",
80
- color: theme.colors.black[25],
81
- fontFamily: theme.fonts.inter_medium_500,
82
- size: theme.fontSizes.sm
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: `${litragem || "Não informado"}`,
99
+ text: "Litragem: ",
90
100
  color: theme.colors.black[25],
91
- fontFamily: theme.fonts.inter_regular_400,
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: ` LT`,
95
- color: theme.colors.red[400],
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
- }), /*#__PURE__*/_jsxs(Box, {
101
- marginStyle: {
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
- style: {
153
- width: "100%",
154
- height: 139,
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
- resizeMode: "cover"
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","Image","View","UIManager","Platform","Box","Typography","theme","asBaseComponent","jsx","_jsx","jsxs","_jsxs","ListSupplies","dataRegistro","namePosto","litragem","valor","imagemUrl","corBarra","OS","setLayoutAnimationEnabledExperimental","width","flexStyle","flexDirection","backgroundColor","colors","neutral","borderStyled","borderRadius","borderWidths","thick_medium","children","style","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":"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","ignoreList":[]}
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":"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","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