Update .gitignore, incentro.Autosearch.mpk, and 3 more files...

This commit is contained in:
2022-04-08 17:09:52 +02:00
parent 1eb1993e6b
commit e663626780
5 changed files with 11 additions and 15 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
node_modules

Binary file not shown.

View File

@@ -244,16 +244,13 @@ __webpack_require__.r(__webpack_exports__);
const defaultStyle = { const defaultStyle = {
container: {}, container: {},
label: { label: {
color: "#003C85" color: "#5997C0"
},
input: {
borderBottomWidth: 1,
borderBottomColor: '#5997C0',
}, },
input: {},
text: { text: {
color: "#003C85", color: "#5997C0",
fontSize: 18, fontSize: 15,
paddingBottom: 6, padding: 10,
} }
}; };
class Autosearch extends react__WEBPACK_IMPORTED_MODULE_0__["Component"] { class Autosearch extends react__WEBPACK_IMPORTED_MODULE_0__["Component"] {
@@ -269,7 +266,7 @@ class Autosearch extends react__WEBPACK_IMPORTED_MODULE_0__["Component"] {
} }
render() { render() {
return (Object(react__WEBPACK_IMPORTED_MODULE_0__["createElement"])(react_native__WEBPACK_IMPORTED_MODULE_1__["View"], { style: this.styles.input }, return (Object(react__WEBPACK_IMPORTED_MODULE_0__["createElement"])(react_native__WEBPACK_IMPORTED_MODULE_1__["View"], { style: this.styles.input },
Object(react__WEBPACK_IMPORTED_MODULE_0__["createElement"])(react_native__WEBPACK_IMPORTED_MODULE_1__["TextInput"], { style: this.styles.text, value: this.state.textboxValue, onChangeText: this.onChangeHandler, onTouchStart: this.onTouchStart, onEndEditing: this.onEndHandler, placeholder: 'Zoeken...', placeholderTextColor: "#5997C0", editable: this.props.editable }))); Object(react__WEBPACK_IMPORTED_MODULE_0__["createElement"])(react_native__WEBPACK_IMPORTED_MODULE_1__["TextInput"], { style: this.styles.text, value: this.state.textboxValue, onChangeText: this.onChangeHandler, onTouchStart: this.onTouchStart, onEndEditing: this.onEndHandler, placeholder: 'Zoeken naar monumentenborden', placeholderTextColor: "#5997C0", editable: this.props.editable })));
} }
onChange(text) { onChange(text) {
this.setState({ textboxValue: text }); this.setState({ textboxValue: text });

File diff suppressed because one or more lines are too long

View File

@@ -22,13 +22,11 @@ const defaultStyle: AutosearchStyle = {
color: "#003C85" color: "#003C85"
}, },
input: { input: {
borderBottomWidth: 1,
borderBottomColor: '#5997C0',
}, },
text: { text: {
color: "#003C85", color: "#003C85",
fontSize: 18, fontSize: 15,
paddingBottom: 6, padding: 10,
} }
}; };
@@ -53,7 +51,7 @@ export class Autosearch extends Component<AutosearchProps<AutosearchStyle>, Stat
onChangeText={this.onChangeHandler} onChangeText={this.onChangeHandler}
onTouchStart={this.onTouchStart} onTouchStart={this.onTouchStart}
onEndEditing={this.onEndHandler} onEndEditing={this.onEndHandler}
placeholder={'Zoeken...'} placeholder={'Zoeken naar monumentenborden'}
placeholderTextColor="#5997C0" placeholderTextColor="#5997C0"
editable={this.props.editable} editable={this.props.editable}
> >