You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-6Lines changed: 2 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@
11
11
- ⚡ Fully native input and display components (Supports New Architecture only)
12
12
- 💻 HTML-based parsing with live, synchronous text styling
13
13
- 🎨 Fully customizable styles for seamless UI integration
14
-
- 🌐 Solid mobile support with an experimental Web implementation
14
+
- 🌐 Solid mobile and web support
15
15
16
16
`EnrichedTextInput`, the rich text input component is an uncontrolled input. This means that it doesn't use any state or props to store its value, but instead directly interacts with the underlying platform-specific components. Thanks to this, the component is really performant and simple to use while offering complex and advanced features no other solution has.
17
17
@@ -46,7 +46,7 @@ We can help you build your next dream product –
46
46
47
47
## Prerequisites
48
48
49
-
-`react-native-enriched-html` currently supports Android and iOS, Web implementation is still experimental.
49
+
-`react-native-enriched-html` currently supports Android, iOS and Web.
50
50
- It works only with [the React Native New Architecture (Fabric)](https://reactnative.dev/architecture/landing-page) and supports following React Native releases: `0.81`, `0.82`, `0.83`, `0.84`, `0.85` and `0.86`.
51
51
52
52
## Installation
@@ -379,10 +379,6 @@ See the [EnrichedText API Reference](docs/TEXT_API_REFERENCE.md) for the `Enrich
379
379
380
380
- Only one level of lists is supported. We currently do not support nested lists.
381
381
382
-
## Future Plans
383
-
384
-
- Web support: currently in the experimental stage. Details in [docs/WEB.md](docs/WEB.md).
385
-
386
382
## Contributing
387
383
388
384
See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.
Copy file name to clipboardExpand all lines: docs/WEB.md
+1-29Lines changed: 1 addition & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,28 +1,7 @@
1
-
# Web Support (Experimental)
2
-
3
-
Web support is still experimental. APIs and behavior can change in future releases without a major version bump. Expect breaking changes until the web path is stabilized.
- Submit props: `submitBehavior` and `onSubmitEditing`. `returnKeyType` is only a hint, it maps to [enterkeyhint](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/enterkeyhint) (`done`, `go`, `next`, `previous`, `search`, `send`, `default`/`enter`). Not all values of `ReturnKeyTypeOptions` are supported, the behavior of this prop is heavily dependent on the browser's capabilities.
20
-
- Input theming via `placeholderTextColor`, `cursorColor` and `selectionColor` props
21
-
- Keyboard shortcuts for formatting
22
-
-`useHtmlNormalizer`
23
-
- Setting text alignment via `setTextAlignment()`
24
-
-`textShortcuts`
25
-
26
5
### Keyboard shortcuts
27
6
28
7
See [Web Keyboard Shortcuts](./INPUT_API_REFERENCE.md#web-keyboard-shortcuts) for the up-to-date list of Web keyboard shortcuts.
@@ -36,13 +15,6 @@ See [Web Keyboard Shortcuts](./INPUT_API_REFERENCE.md#web-keyboard-shortcuts) fo
36
15
37
16
## Enriched Text
38
17
39
-
### What works
40
-
41
-
- Customizing the styling using props: `style`, `htmlStyle`, `selectionColor`.
0 commit comments