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
|
@@ -13,8 +13,8 @@ var _asBaseComponent = require("../../@types/as-base-component.js");
|
|
|
13
13
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
14
14
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
15
15
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
16
|
-
/**
|
|
17
|
-
* IMPORTS
|
|
16
|
+
/**
|
|
17
|
+
* IMPORTS
|
|
18
18
|
*/
|
|
19
19
|
|
|
20
20
|
// components
|
|
@@ -31,139 +31,160 @@ const ListSupplies = ({
|
|
|
31
31
|
imagemUrl,
|
|
32
32
|
corBarra
|
|
33
33
|
}) => {
|
|
34
|
+
// 🔹 Valor de animação para fade + slide
|
|
35
|
+
const fadeAnim = (0, _react.useRef)(new _reactNative.Animated.Value(0)).current;
|
|
36
|
+
const slideAnim = (0, _react.useRef)(new _reactNative.Animated.Value(20)).current;
|
|
34
37
|
(0, _react.useEffect)(() => {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
38
|
+
// 🔹 Animação ao montar o componente
|
|
39
|
+
_reactNative.Animated.timing(fadeAnim, {
|
|
40
|
+
toValue: 1,
|
|
41
|
+
duration: 400,
|
|
42
|
+
easing: _reactNative.Easing.out(_reactNative.Easing.ease),
|
|
43
|
+
useNativeDriver: true
|
|
44
|
+
}).start();
|
|
45
|
+
_reactNative.Animated.timing(slideAnim, {
|
|
46
|
+
toValue: 0,
|
|
47
|
+
duration: 400,
|
|
48
|
+
easing: _reactNative.Easing.out(_reactNative.Easing.ease),
|
|
49
|
+
useNativeDriver: true
|
|
50
|
+
}).start();
|
|
51
|
+
}, [fadeAnim, slideAnim]);
|
|
52
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Animated.View, {
|
|
53
|
+
style: {
|
|
54
|
+
opacity: fadeAnim,
|
|
55
|
+
transform: [{
|
|
56
|
+
translateY: slideAnim
|
|
57
|
+
}]
|
|
43
58
|
},
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
borderRadius: _theme.theme.borderWidths.thick_medium
|
|
47
|
-
},
|
|
48
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
49
|
-
style: {
|
|
50
|
-
width: 15,
|
|
51
|
-
backgroundColor: corBarra ?? _theme.theme.colors.blue[375],
|
|
52
|
-
borderTopLeftRadius: _theme.theme.borderWidths.thick_medium,
|
|
53
|
-
borderBottomLeftRadius: _theme.theme.borderWidths.thick_medium
|
|
54
|
-
}
|
|
55
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_index.default, {
|
|
59
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_index.default, {
|
|
60
|
+
width: "100%",
|
|
56
61
|
flexStyle: {
|
|
57
|
-
|
|
62
|
+
flexDirection: "row"
|
|
58
63
|
},
|
|
59
|
-
|
|
60
|
-
|
|
64
|
+
backgroundColor: _theme.theme.colors.neutral[25],
|
|
65
|
+
borderStyled: {
|
|
66
|
+
borderRadius: _theme.theme.borderWidths.thick_medium
|
|
61
67
|
},
|
|
62
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
},
|
|
70
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.default, {
|
|
71
|
-
text: `${namePosto || "Não informado"}`,
|
|
72
|
-
color: _theme.theme.colors.black[25],
|
|
73
|
-
fontFamily: _theme.theme.fonts.inter_medium_500,
|
|
74
|
-
size: _theme.theme.fontSizes.sm
|
|
75
|
-
})
|
|
68
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
69
|
+
style: {
|
|
70
|
+
width: 15,
|
|
71
|
+
backgroundColor: corBarra ?? _theme.theme.colors.blue[375],
|
|
72
|
+
borderTopLeftRadius: _theme.theme.borderWidths.thick_medium,
|
|
73
|
+
borderBottomLeftRadius: _theme.theme.borderWidths.thick_medium
|
|
74
|
+
}
|
|
76
75
|
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_index.default, {
|
|
77
|
-
marginStyle: {
|
|
78
|
-
marginBottom: _theme.theme.margins.fn
|
|
79
|
-
},
|
|
80
76
|
flexStyle: {
|
|
81
|
-
|
|
82
|
-
|
|
77
|
+
flex: 1
|
|
78
|
+
},
|
|
79
|
+
paddingStyle: {
|
|
80
|
+
padding: _theme.theme.paddings["2xs"]
|
|
83
81
|
},
|
|
84
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
82
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_index.default, {
|
|
83
|
+
marginStyle: {
|
|
84
|
+
marginBottom: _theme.theme.margins.fn
|
|
85
|
+
},
|
|
86
|
+
flexStyle: {
|
|
87
|
+
flexDirection: "row",
|
|
88
|
+
justifyContent: "flex-start"
|
|
89
|
+
},
|
|
90
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.default, {
|
|
91
|
+
text: `${namePosto || "Não informado"}`,
|
|
92
|
+
color: _theme.theme.colors.black[25],
|
|
93
|
+
fontFamily: _theme.theme.fonts.inter_medium_500,
|
|
94
|
+
size: _theme.theme.fontSizes.sm
|
|
95
|
+
})
|
|
89
96
|
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_index.default, {
|
|
97
|
+
marginStyle: {
|
|
98
|
+
marginBottom: _theme.theme.margins.fn
|
|
99
|
+
},
|
|
90
100
|
flexStyle: {
|
|
91
101
|
flexDirection: "row",
|
|
92
102
|
justifyContent: "flex-start"
|
|
93
103
|
},
|
|
94
104
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.default, {
|
|
95
|
-
text:
|
|
105
|
+
text: "Litragem: ",
|
|
96
106
|
color: _theme.theme.colors.black[25],
|
|
97
|
-
fontFamily: _theme.theme.fonts.
|
|
107
|
+
fontFamily: _theme.theme.fonts.inter_medium_500,
|
|
108
|
+
size: _theme.theme.fontSizes.sm
|
|
109
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_index.default, {
|
|
110
|
+
flexStyle: {
|
|
111
|
+
flexDirection: "row",
|
|
112
|
+
justifyContent: "flex-start"
|
|
113
|
+
},
|
|
114
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.default, {
|
|
115
|
+
text: `${litragem || "Não informado"}`,
|
|
116
|
+
color: _theme.theme.colors.black[25],
|
|
117
|
+
fontFamily: _theme.theme.fonts.inter_regular_400,
|
|
118
|
+
size: _theme.theme.fontSizes.sm
|
|
119
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.default, {
|
|
120
|
+
text: ` LT`,
|
|
121
|
+
color: _theme.theme.colors.red[400],
|
|
122
|
+
fontFamily: _theme.theme.fonts.inter_regular_400,
|
|
123
|
+
size: _theme.theme.fontSizes.sm
|
|
124
|
+
})]
|
|
125
|
+
})]
|
|
126
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_index.default, {
|
|
127
|
+
marginStyle: {
|
|
128
|
+
marginBottom: _theme.theme.margins.fn
|
|
129
|
+
},
|
|
130
|
+
flexStyle: {
|
|
131
|
+
flexDirection: "row",
|
|
132
|
+
justifyContent: "flex-start"
|
|
133
|
+
},
|
|
134
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.default, {
|
|
135
|
+
text: "Valor: ",
|
|
136
|
+
color: _theme.theme.colors.black[25],
|
|
137
|
+
fontFamily: _theme.theme.fonts.inter_medium_500,
|
|
98
138
|
size: _theme.theme.fontSizes.sm
|
|
99
139
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.default, {
|
|
100
|
-
text: `
|
|
101
|
-
color: _theme.theme.colors.
|
|
140
|
+
text: `R$ ${valor || "Não informado"}`,
|
|
141
|
+
color: _theme.theme.colors.gray[700],
|
|
102
142
|
fontFamily: _theme.theme.fonts.inter_regular_400,
|
|
103
143
|
size: _theme.theme.fontSizes.sm
|
|
104
144
|
})]
|
|
105
|
-
})
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
marginBottom: _theme.theme.margins.fn
|
|
109
|
-
},
|
|
110
|
-
flexStyle: {
|
|
111
|
-
flexDirection: "row",
|
|
112
|
-
justifyContent: "flex-start"
|
|
113
|
-
},
|
|
114
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.default, {
|
|
115
|
-
text: "Valor: ",
|
|
116
|
-
color: _theme.theme.colors.black[25],
|
|
117
|
-
fontFamily: _theme.theme.fonts.inter_medium_500,
|
|
118
|
-
size: _theme.theme.fontSizes.sm
|
|
119
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.default, {
|
|
120
|
-
text: `R$ ${valor || "Não informado"}`,
|
|
121
|
-
color: _theme.theme.colors.gray[700],
|
|
122
|
-
fontFamily: _theme.theme.fonts.inter_regular_400,
|
|
123
|
-
size: _theme.theme.fontSizes.sm
|
|
124
|
-
})]
|
|
125
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_index.default, {
|
|
126
|
-
marginStyle: {
|
|
127
|
-
marginBottom: _theme.theme.margins.fn
|
|
128
|
-
},
|
|
129
|
-
flexStyle: {
|
|
130
|
-
flexDirection: "row",
|
|
131
|
-
justifyContent: "flex-start"
|
|
132
|
-
},
|
|
133
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.default, {
|
|
134
|
-
text: "Data: ",
|
|
135
|
-
color: _theme.theme.colors.black[25],
|
|
136
|
-
fontFamily: _theme.theme.fonts.inter_medium_500,
|
|
137
|
-
size: _theme.theme.fontSizes.sm
|
|
138
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.default, {
|
|
139
|
-
text: `${dataRegistro || "Não informado"}`,
|
|
140
|
-
color: _theme.theme.colors.gray[700],
|
|
141
|
-
fontFamily: _theme.theme.fonts.inter_regular_400,
|
|
142
|
-
size: _theme.theme.fontSizes.sm
|
|
143
|
-
})]
|
|
144
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.default, {
|
|
145
|
-
borderStyled: {
|
|
146
|
-
borderWidth: 1,
|
|
147
|
-
borderColor: _theme.theme.colors.black[25],
|
|
148
|
-
borderRadius: _theme.theme.borderWidths.thick_medium
|
|
149
|
-
},
|
|
150
|
-
flexStyle: {
|
|
151
|
-
justifyContent: "center",
|
|
152
|
-
alignItems: "center"
|
|
153
|
-
},
|
|
154
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Image, {
|
|
155
|
-
source: {
|
|
156
|
-
uri: imagemUrl ?? "https://placehold.co/300x300"
|
|
145
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_index.default, {
|
|
146
|
+
marginStyle: {
|
|
147
|
+
marginBottom: _theme.theme.margins.fn
|
|
157
148
|
},
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
149
|
+
flexStyle: {
|
|
150
|
+
flexDirection: "row",
|
|
151
|
+
justifyContent: "flex-start"
|
|
152
|
+
},
|
|
153
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.default, {
|
|
154
|
+
text: "Data: ",
|
|
155
|
+
color: _theme.theme.colors.black[25],
|
|
156
|
+
fontFamily: _theme.theme.fonts.inter_medium_500,
|
|
157
|
+
size: _theme.theme.fontSizes.sm
|
|
158
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.default, {
|
|
159
|
+
text: `${dataRegistro || "Não informado"}`,
|
|
160
|
+
color: _theme.theme.colors.gray[700],
|
|
161
|
+
fontFamily: _theme.theme.fonts.inter_regular_400,
|
|
162
|
+
size: _theme.theme.fontSizes.sm
|
|
163
|
+
})]
|
|
164
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.default, {
|
|
165
|
+
borderStyled: {
|
|
166
|
+
borderWidth: 1,
|
|
167
|
+
borderColor: _theme.theme.colors.black[25],
|
|
161
168
|
borderRadius: _theme.theme.borderWidths.thick_medium
|
|
162
169
|
},
|
|
163
|
-
|
|
164
|
-
|
|
170
|
+
flexStyle: {
|
|
171
|
+
justifyContent: "center",
|
|
172
|
+
alignItems: "center"
|
|
173
|
+
},
|
|
174
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Image, {
|
|
175
|
+
source: {
|
|
176
|
+
uri: imagemUrl ?? "https://placehold.co/300x300"
|
|
177
|
+
},
|
|
178
|
+
style: {
|
|
179
|
+
width: "100%",
|
|
180
|
+
height: 139,
|
|
181
|
+
borderRadius: _theme.theme.borderWidths.thick_medium
|
|
182
|
+
},
|
|
183
|
+
resizeMode: "cover"
|
|
184
|
+
})
|
|
185
|
+
})]
|
|
165
186
|
})]
|
|
166
|
-
})
|
|
187
|
+
})
|
|
167
188
|
});
|
|
168
189
|
};
|
|
169
190
|
ListSupplies.displayName = "ListSupplies";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_index","_interopRequireDefault","_index2","_theme","_asBaseComponent","_jsxRuntime","e","__esModule","default","t","WeakMap","r","n","o","i","f","__proto__","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","ListSupplies","dataRegistro","namePosto","litragem","valor","imagemUrl","corBarra","useEffect","
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_index","_interopRequireDefault","_index2","_theme","_asBaseComponent","_jsxRuntime","e","__esModule","default","t","WeakMap","r","n","o","i","f","__proto__","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","ListSupplies","dataRegistro","namePosto","litragem","valor","imagemUrl","corBarra","fadeAnim","useRef","Animated","Value","current","slideAnim","useEffect","timing","toValue","duration","easing","Easing","out","ease","useNativeDriver","start","jsx","View","style","opacity","transform","translateY","children","jsxs","width","flexStyle","flexDirection","backgroundColor","theme","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","Image","source","uri","height","resizeMode","displayName","_default","exports","asBaseComponent"],"sourceRoot":"..\\..\\..\\..\\src","sources":["components/list-supplies/index.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -13,14 +13,14 @@ var _asBaseComponent = require("../../@types/as-base-component.js");
|
|
|
13
13
|
var _theme = require("../../styles/theme/theme.js");
|
|
14
14
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
15
15
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
16
|
-
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); } /**
|
|
17
|
-
* IMPORTS
|
|
16
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); } /**
|
|
17
|
+
* IMPORTS
|
|
18
18
|
*/ // commons / icons
|
|
19
19
|
// components
|
|
20
20
|
// typings
|
|
21
21
|
// styles / theme
|
|
22
|
-
/**
|
|
23
|
-
* Componente NotificationDetailCard
|
|
22
|
+
/**
|
|
23
|
+
* Componente NotificationDetailCard
|
|
24
24
|
*/
|
|
25
25
|
const NotificationDetailCard = /*#__PURE__*/(0, _react.forwardRef)(({
|
|
26
26
|
title,
|
|
@@ -174,8 +174,8 @@ const NotificationDetailCard = /*#__PURE__*/(0, _react.forwardRef)(({
|
|
|
174
174
|
});
|
|
175
175
|
NotificationDetailCard.displayName = "NotificationDetailCard";
|
|
176
176
|
|
|
177
|
-
/**
|
|
178
|
-
* EXPORTS
|
|
177
|
+
/**
|
|
178
|
+
* EXPORTS
|
|
179
179
|
*/
|
|
180
180
|
var _default = exports.default = (0, _asBaseComponent.asBaseComponent)(NotificationDetailCard);
|
|
181
181
|
//# sourceMappingURL=index.js.map
|