@@ -30,26 +30,27 @@ external unsafeGetMultiple: array(string) => Color.t = "PlatformColor";
|
30 | 30 | |
31 | 31 | module Ios = { |
32 | 32 | type t = [ |
| 33 | +| `clearColor |
| 34 | +| `darkText |
33 | 35 | | `label |
34 | | -| `secondaryLabel |
35 | | -| `tertiaryLabel |
| 36 | +| `lightText |
| 37 | +| `link |
| 38 | +| `opaqueSeparator |
| 39 | +| `placeholderText |
36 | 40 | | `quaternaryLabel |
37 | | -| `systemFill |
38 | | -| `secondarySystemFill |
39 | | -| `tertiarySystemFill |
40 | 41 | | `quaternarySystemFill |
41 | | -| `placeholderText |
42 | | -| `systemBackground |
| 42 | +| `secondaryLabel |
43 | 43 | | `secondarySystemBackground |
44 | | -| `tertiarySystemBackground |
45 | | -| `systemGroupedBackground |
| 44 | +| `secondarySystemFill |
46 | 45 | | `secondarySystemGroupedBackground |
47 | | -| `tertiarySystemGroupedBackground |
48 | 46 | | `separator |
49 | | -| `opaqueSeparator |
50 | | -| `link |
51 | | -| `darkText |
52 | | -| `lightText |
| 47 | +| `systemBackground |
| 48 | +| `systemFill |
| 49 | +| `systemGroupedBackground |
| 50 | +| `tertiaryLabel |
| 51 | +| `tertiarySystemBackground |
| 52 | +| `tertiarySystemFill |
| 53 | +| `tertiarySystemGroupedBackground |
53 | 54 | ]; |
54 | 55 | [@bs.module "react-native"] external get: t => Color.t = "PlatformColor"; |
55 | 56 | [@bs.module "react-native"] |
|