[Text-Editor] v5.7.14 Can not input new line on iOS

I have a problem when using text-editor in iOS
When input data into text-editor and enter to create new line,
the cursor can not go to new line
Also, the inputted data is out side of <div> generated

  • Framework7 version: 5.7.14
  • Vue.js version: 2
  • Platform and Target: iOS Cordova app (checked on iOS version >= 13)
<template>
<f7-page>
  <f7-navbar title="Text Editor"></f7-navbar>

  <f7-block-title>With Default Value</f7-block-title>
  <f7-text-editor
    placeholder="Enter text..."
    @texteditor:change="(v) => customValue = v"
  ></f7-text-editor>

  <span> {{ customValue }} </span>
</f7-page>
</template>
<script>
export default {
  data () {
    return {
      customValue: ''
    }
  }
}
</script>

Screenshots

Found the reason,
Having some css

*:not(input):not(textarea) {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
}

Just remove it and worked.