Skip to content

Commit

Permalink
test: mark unsupported examples in TextInputExample
Browse files Browse the repository at this point in the history
  • Loading branch information
aleclarson committed Feb 27, 2019
1 parent 687f12f commit 8e6345b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions RNTester/js/TextInputExample.macos.js
Original file line number Diff line number Diff line change
Expand Up @@ -605,12 +605,14 @@ exports.examples = [
},
},
{
unsupported: true,
title: 'Keyboard Accessory View',
render: function() {
return <TextInputAccessoryViewExample />;
},
},
{
unsupported: true,
title: 'Auto-capitalize',
render: function() {
return (
Expand All @@ -632,6 +634,7 @@ exports.examples = [
},
},
{
unsupported: true,
title: 'Auto-correct',
render: function() {
return (
Expand Down Expand Up @@ -673,6 +676,7 @@ exports.examples = [
},
},
{
unsupported: true,
title: 'Keyboard types',
render: function() {
const keyboardTypes = [
Expand Down Expand Up @@ -700,6 +704,7 @@ exports.examples = [
},
},
{
unsupported: true,
title: 'Keyboard appearance',
render: function() {
const keyboardAppearance = ['default', 'light', 'dark'];
Expand All @@ -714,6 +719,7 @@ exports.examples = [
},
},
{
unsupported: true,
title: 'Return key types',
render: function() {
const returnKeyTypes = [
Expand All @@ -740,6 +746,7 @@ exports.examples = [
},
},
{
unsupported: true,
title: 'Enable return key automatically',
render: function() {
return (
Expand Down Expand Up @@ -784,6 +791,7 @@ exports.examples = [
},
},
{
unsupported: true,
title: 'Colored highlight/cursor for text input',
render: function() {
return (
Expand All @@ -803,6 +811,7 @@ exports.examples = [
},
},
{
unsupported: true,
title: 'Clear button mode',
render: function() {
const clearButtonModes = [
Expand Down Expand Up @@ -870,12 +879,14 @@ exports.examples = [
},
},
{
unsupported: true,
title: 'Blur on submit',
render: function(): React.Element<any> {
return <BlurOnSubmitExample />;
},
},
{
unsupported: true,
title: 'Multiline blur on submit',
render: function() {
return (
Expand Down

0 comments on commit 8e6345b

Please sign in to comment.