react-crud-mobile 1.3.376 → 1.3.377
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/dist/react-crud-mobile.cjs.development.js +3 -6
- package/dist/react-crud-mobile.cjs.development.js.map +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js.map +1 -1
- package/dist/react-crud-mobile.esm.js +3 -6
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIOrder.tsx +0 -3
package/package.json
CHANGED
@@ -194,9 +194,6 @@ export default function UIOrder(props: ChildType) {
|
|
194
194
|
|
195
195
|
return (
|
196
196
|
<View style={styles.container}>
|
197
|
-
<Text style={styles.title}>
|
198
|
-
Lista Dragável (Esperando que a correção final funcione 🙏)
|
199
|
-
</Text>
|
200
197
|
<View style={{ height: items.length * ITEM_HEIGHT, width: '100%' }}>
|
201
198
|
{items.map(item => {
|
202
199
|
const y = positions[item.value];
|