forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Zero-cost AccessibilityState and AccessibilityTrait. (facebook#364)
- Loading branch information
Showing
26 changed files
with
163 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
type t = string; | ||
|
||
[@bs.inline] | ||
let selected = "selected"; | ||
|
||
[@bs.inline] | ||
let disabled = "disabled"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
type t; | ||
|
||
[@bs.inline "selected"] | ||
let selected: t; | ||
|
||
[@bs.inline "disabled"] | ||
let disabled: t; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
type t = string; | ||
|
||
[@bs.inline] | ||
let none = "none"; | ||
|
||
[@bs.inline] | ||
let button = "button"; | ||
|
||
[@bs.inline] | ||
let link = "link"; | ||
|
||
[@bs.inline] | ||
let header = "header"; | ||
|
||
[@bs.inline] | ||
let search = "search"; | ||
|
||
[@bs.inline] | ||
let image = "image"; | ||
|
||
[@bs.inline] | ||
let selected = "selected"; | ||
|
||
[@bs.inline] | ||
let plays = "plays"; | ||
|
||
[@bs.inline] | ||
let key = "key"; | ||
|
||
[@bs.inline] | ||
let text = "text"; | ||
|
||
[@bs.inline] | ||
let summary = "summary"; | ||
|
||
[@bs.inline] | ||
let disabled = "disabled"; | ||
|
||
[@bs.inline] | ||
let frequentUpdates = "frequentUpdates"; | ||
|
||
[@bs.inline] | ||
let startsMedia = "startsMedia"; | ||
|
||
[@bs.inline] | ||
let adjustable = "adjustable"; | ||
|
||
[@bs.inline] | ||
let allowsDirectInteraction = "allowsDirectInteraction"; | ||
|
||
[@bs.inline] | ||
let pageTurn = "pageTurn"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
type t; | ||
|
||
[@bs.inline "none"] | ||
let none: t; | ||
|
||
[@bs.inline "button"] | ||
let button: t; | ||
|
||
[@bs.inline "link"] | ||
let link: t; | ||
|
||
[@bs.inline "header"] | ||
let header: t; | ||
|
||
[@bs.inline "search"] | ||
let search: t; | ||
|
||
[@bs.inline "image"] | ||
let image: t; | ||
|
||
[@bs.inline "selected"] | ||
let selected: t; | ||
|
||
[@bs.inline "plays"] | ||
let plays: t; | ||
|
||
[@bs.inline "key"] | ||
let key: t; | ||
|
||
[@bs.inline "text"] | ||
let text: t; | ||
|
||
[@bs.inline "summary"] | ||
let summary: t; | ||
|
||
[@bs.inline "disabled"] | ||
let disabled: t; | ||
|
||
[@bs.inline "frequentUpdates"] | ||
let frequentUpdates: t; | ||
|
||
[@bs.inline "startsMedia"] | ||
let startsMedia: t; | ||
|
||
[@bs.inline "adjustable"] | ||
let adjustable: t; | ||
|
||
[@bs.inline "allowsDirectInteraction"] | ||
let allowsDirectInteraction: t; | ||
|
||
[@bs.inline "pageTurn"] | ||
let pageTurn: t; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[@bs.deriving abstract] | ||
type insets = { | ||
left: float, | ||
right: float, | ||
top: float, | ||
bottom: float, | ||
}; | ||
|
||
[@bs.deriving abstract] | ||
type point = { | ||
x: float, | ||
y: float, | ||
}; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.