react-crud-mobile 1.3.47 → 1.3.48

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.3.47",
2
+ "version": "1.3.48",
3
3
  "license": "MIT",
4
4
  "description": "Uma biblioteca de componentes para React Native",
5
5
  "main": "dist/index.js",
@@ -122,40 +122,6 @@ export default function UISelect(props: ChildType) {
122
122
  </View>
123
123
  </ScrollView>
124
124
  </SafeAreaView>
125
-
126
- <SafeAreaView style={style('modalTop')} />
127
- <SafeAreaView style={style('modalSafe')}>
128
- <View style={scope.getStyle('header', headerStyle)}>
129
- <TouchableOpacity
130
- onPress={() => setModalVisible(false)}
131
- style={style('modalCloseButton')}
132
- >
133
- <Ionicons
134
- name="close"
135
- size={24}
136
- color={modalColor}
137
- style={style('modalCloseText', defaults)}
138
- />
139
- </TouchableOpacity>
140
- <Text style={style('modalTitle')}>{placeholder}</Text>
141
- </View>
142
- <View style={style('modalContent')}>
143
- <UI.List
144
- data={items}
145
- name={scope.getName('list')}
146
- layout="card"
147
- click={onClick}
148
- rowStyle={{
149
- paddingLeft: 15,
150
- paddinRight: 15,
151
- ...scope.original?.rowStyle,
152
- }}
153
- {...scope.original?.listProps}
154
- >
155
- <UI.Value value="#{@this.label}" />
156
- </UI.List>
157
- </View>
158
- </SafeAreaView>
159
125
  </Modal>
160
126
  </View>
161
127
  );