@expo/ui 55.0.8 → 55.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/android/build.gradle +2 -2
  3. package/android/src/main/java/expo/modules/ui/BadgeView.kt +74 -0
  4. package/android/src/main/java/expo/modules/ui/BadgedBoxView.kt +24 -0
  5. package/android/src/main/java/expo/modules/ui/ExpoUIModule.kt +21 -0
  6. package/android/src/main/java/expo/modules/ui/SlotView.kt +8 -0
  7. package/android/src/main/java/expo/modules/ui/TooltipView.kt +177 -0
  8. package/build/jetpack-compose/Badge/index.d.ts +31 -0
  9. package/build/jetpack-compose/Badge/index.d.ts.map +1 -0
  10. package/build/jetpack-compose/BadgedBox/index.d.ts +29 -0
  11. package/build/jetpack-compose/BadgedBox/index.d.ts.map +1 -0
  12. package/build/jetpack-compose/Tooltip/index.d.ts +100 -0
  13. package/build/jetpack-compose/Tooltip/index.d.ts.map +1 -0
  14. package/build/jetpack-compose/index.d.ts +3 -0
  15. package/build/jetpack-compose/index.d.ts.map +1 -1
  16. package/build/swift-ui/modifiers/index.d.ts +31 -1
  17. package/build/swift-ui/modifiers/index.d.ts.map +1 -1
  18. package/expo-module.config.json +1 -1
  19. package/ios/Modifiers/ScrollTargetBehaviorModifier.swift +26 -0
  20. package/ios/Modifiers/ScrollTargetLayoutModifier.swift +14 -0
  21. package/ios/Modifiers/TextContentTypeModifier.swift +191 -0
  22. package/ios/Modifiers/TextInputAutocapitalizationModifier.swift +28 -0
  23. package/ios/Modifiers/ViewModifierRegistry.swift +16 -0
  24. package/local-maven-repo/expo/modules/ui/expo.modules.ui/{55.0.8/expo.modules.ui-55.0.8-sources.jar → 55.0.10/expo.modules.ui-55.0.10-sources.jar} +0 -0
  25. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.10/expo.modules.ui-55.0.10-sources.jar.md5 +1 -0
  26. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.10/expo.modules.ui-55.0.10-sources.jar.sha1 +1 -0
  27. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.10/expo.modules.ui-55.0.10-sources.jar.sha256 +1 -0
  28. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.10/expo.modules.ui-55.0.10-sources.jar.sha512 +1 -0
  29. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.10/expo.modules.ui-55.0.10.aar +0 -0
  30. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.10/expo.modules.ui-55.0.10.aar.md5 +1 -0
  31. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.10/expo.modules.ui-55.0.10.aar.sha1 +1 -0
  32. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.10/expo.modules.ui-55.0.10.aar.sha256 +1 -0
  33. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.10/expo.modules.ui-55.0.10.aar.sha512 +1 -0
  34. package/local-maven-repo/expo/modules/ui/expo.modules.ui/{55.0.8/expo.modules.ui-55.0.8.module → 55.0.10/expo.modules.ui-55.0.10.module} +22 -22
  35. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.10/expo.modules.ui-55.0.10.module.md5 +1 -0
  36. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.10/expo.modules.ui-55.0.10.module.sha1 +1 -0
  37. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.10/expo.modules.ui-55.0.10.module.sha256 +1 -0
  38. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.10/expo.modules.ui-55.0.10.module.sha512 +1 -0
  39. package/local-maven-repo/expo/modules/ui/expo.modules.ui/{55.0.8/expo.modules.ui-55.0.8.pom → 55.0.10/expo.modules.ui-55.0.10.pom} +1 -1
  40. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.10/expo.modules.ui-55.0.10.pom.md5 +1 -0
  41. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.10/expo.modules.ui-55.0.10.pom.sha1 +1 -0
  42. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.10/expo.modules.ui-55.0.10.pom.sha256 +1 -0
  43. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.10/expo.modules.ui-55.0.10.pom.sha512 +1 -0
  44. package/local-maven-repo/expo/modules/ui/expo.modules.ui/maven-metadata.xml +4 -4
  45. package/local-maven-repo/expo/modules/ui/expo.modules.ui/maven-metadata.xml.md5 +1 -1
  46. package/local-maven-repo/expo/modules/ui/expo.modules.ui/maven-metadata.xml.sha1 +1 -1
  47. package/local-maven-repo/expo/modules/ui/expo.modules.ui/maven-metadata.xml.sha256 +1 -1
  48. package/local-maven-repo/expo/modules/ui/expo.modules.ui/maven-metadata.xml.sha512 +1 -1
  49. package/package.json +2 -2
  50. package/src/jetpack-compose/Badge/index.tsx +49 -0
  51. package/src/jetpack-compose/BadgedBox/index.tsx +58 -0
  52. package/src/jetpack-compose/Tooltip/index.tsx +176 -0
  53. package/src/jetpack-compose/index.ts +3 -0
  54. package/src/swift-ui/modifiers/index.ts +88 -0
  55. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.8/expo.modules.ui-55.0.8-sources.jar.md5 +0 -1
  56. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.8/expo.modules.ui-55.0.8-sources.jar.sha1 +0 -1
  57. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.8/expo.modules.ui-55.0.8-sources.jar.sha256 +0 -1
  58. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.8/expo.modules.ui-55.0.8-sources.jar.sha512 +0 -1
  59. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.8/expo.modules.ui-55.0.8.aar +0 -0
  60. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.8/expo.modules.ui-55.0.8.aar.md5 +0 -1
  61. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.8/expo.modules.ui-55.0.8.aar.sha1 +0 -1
  62. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.8/expo.modules.ui-55.0.8.aar.sha256 +0 -1
  63. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.8/expo.modules.ui-55.0.8.aar.sha512 +0 -1
  64. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.8/expo.modules.ui-55.0.8.module.md5 +0 -1
  65. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.8/expo.modules.ui-55.0.8.module.sha1 +0 -1
  66. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.8/expo.modules.ui-55.0.8.module.sha256 +0 -1
  67. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.8/expo.modules.ui-55.0.8.module.sha512 +0 -1
  68. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.8/expo.modules.ui-55.0.8.pom.md5 +0 -1
  69. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.8/expo.modules.ui-55.0.8.pom.sha1 +0 -1
  70. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.8/expo.modules.ui-55.0.8.pom.sha256 +0 -1
  71. package/local-maven-repo/expo/modules/ui/expo.modules.ui/55.0.8/expo.modules.ui-55.0.8.pom.sha512 +0 -1
@@ -0,0 +1,58 @@
1
+ import { requireNativeView } from 'expo';
2
+
3
+ import { type ModifierConfig } from '../../types';
4
+ import { createViewModifierEventListener } from '../modifiers/utils';
5
+
6
+ export type BadgedBoxProps = {
7
+ /**
8
+ * Modifiers for the component.
9
+ */
10
+ modifiers?: ModifierConfig[];
11
+ /**
12
+ * Children containing the main content and a `BadgedBox.Badge` slot.
13
+ */
14
+ children?: React.ReactNode;
15
+ };
16
+
17
+ type SlotProps = {
18
+ slotName: string;
19
+ children: React.ReactNode;
20
+ };
21
+
22
+ const BadgedBoxNativeView: React.ComponentType<BadgedBoxProps> = requireNativeView(
23
+ 'ExpoUI',
24
+ 'BadgedBoxView'
25
+ );
26
+
27
+ const SlotNativeView: React.ComponentType<SlotProps> = requireNativeView('ExpoUI', 'SlotView');
28
+
29
+ function transformProps(props: BadgedBoxProps): BadgedBoxProps {
30
+ const { modifiers, ...restProps } = props;
31
+ return {
32
+ modifiers,
33
+ ...(modifiers ? createViewModifierEventListener(modifiers) : undefined),
34
+ ...restProps,
35
+ };
36
+ }
37
+
38
+ /**
39
+ * Slot for the badge overlay. Place a `Badge` component inside.
40
+ */
41
+ function BadgeSlot(props: { children: React.ReactNode }) {
42
+ return <SlotNativeView slotName="badge">{props.children}</SlotNativeView>;
43
+ }
44
+
45
+ /**
46
+ * A badged box matching Compose's `BadgedBox`.
47
+ * Overlays a badge on top of content (for example, an icon).
48
+ *
49
+ * @see [Jetpack Compose BadgedBox](https://developer.android.com/develop/ui/compose/components/badges)
50
+ */
51
+ function BadgedBoxComponent(props: BadgedBoxProps) {
52
+ const { children, ...restProps } = props;
53
+ return <BadgedBoxNativeView {...transformProps(restProps)}>{children}</BadgedBoxNativeView>;
54
+ }
55
+
56
+ BadgedBoxComponent.Badge = BadgeSlot;
57
+
58
+ export { BadgedBoxComponent as BadgedBox };
@@ -0,0 +1,176 @@
1
+ import { requireNativeView } from 'expo';
2
+ import { type Ref } from 'react';
3
+ import { type ColorValue } from 'react-native';
4
+
5
+ import { type ModifierConfig } from '../../types';
6
+ import { createViewModifierEventListener } from '../modifiers/utils';
7
+
8
+ export type TooltipBoxRef = {
9
+ /**
10
+ * Programmatically shows the tooltip.
11
+ */
12
+ show: () => Promise<void>;
13
+ /**
14
+ * Programmatically dismisses the tooltip.
15
+ */
16
+ dismiss: () => Promise<void>;
17
+ };
18
+
19
+ export type TooltipBoxProps = {
20
+ /**
21
+ * Ref to imperatively show/dismiss the tooltip.
22
+ */
23
+ ref?: Ref<TooltipBoxRef>;
24
+ /**
25
+ * Whether the tooltip persists instead of auto-dismissing after a short timeout.
26
+ * @default false
27
+ */
28
+ isPersistent?: boolean;
29
+ /**
30
+ * Whether the tooltip contains an action. Affects accessibility and dismiss behavior.
31
+ * When not specified, this is automatically derived from the presence of a `RichTooltip.Action` slot.
32
+ */
33
+ hasAction?: boolean;
34
+ /**
35
+ * Whether user input (long-press, hover) triggers the tooltip.
36
+ * @default true
37
+ */
38
+ enableUserInput?: boolean;
39
+ /**
40
+ * Whether the tooltip popup is focusable.
41
+ * @default false
42
+ */
43
+ focusable?: boolean;
44
+ /**
45
+ * Modifiers for the component.
46
+ */
47
+ modifiers?: ModifierConfig[];
48
+ /**
49
+ * Children containing a `TooltipBox.PlainTooltip` or `TooltipBox.RichTooltip` slot and the anchor/trigger content.
50
+ * The anchor content triggers the tooltip on long-press.
51
+ */
52
+ children: React.ReactNode;
53
+ };
54
+
55
+ const TooltipBoxNativeView: React.ComponentType<TooltipBoxProps> = requireNativeView(
56
+ 'ExpoUI',
57
+ 'TooltipBoxView'
58
+ );
59
+
60
+ const SlotNativeView: React.ComponentType<{ slotName: string; children: React.ReactNode }> =
61
+ requireNativeView('ExpoUI', 'SlotView');
62
+
63
+ function transformProps(
64
+ props: Omit<TooltipBoxProps, 'children'>
65
+ ): Omit<TooltipBoxProps, 'children'> {
66
+ const { modifiers, ...restProps } = props;
67
+ return {
68
+ modifiers,
69
+ ...(modifiers ? createViewModifierEventListener(modifiers) : undefined),
70
+ ...restProps,
71
+ isPersistent: props.isPersistent ?? false,
72
+ enableUserInput: props.enableUserInput ?? true,
73
+ focusable: props.focusable ?? false,
74
+ };
75
+ }
76
+
77
+ // --- PlainTooltip (compound component of TooltipBox) ---
78
+
79
+ export type PlainTooltipProps = {
80
+ containerColor?: ColorValue;
81
+ contentColor?: ColorValue;
82
+ modifiers?: ModifierConfig[];
83
+ children: React.ReactNode;
84
+ };
85
+
86
+ const PlainTooltipNativeView: React.ComponentType<PlainTooltipProps> = requireNativeView(
87
+ 'ExpoUI',
88
+ 'PlainTooltipView'
89
+ );
90
+
91
+ /**
92
+ * A simple tooltip. Place inside `TooltipBox` as `TooltipBox.PlainTooltip`.
93
+ * Children become the tooltip content.
94
+ */
95
+ function PlainTooltipComponent(props: PlainTooltipProps) {
96
+ const { children, modifiers, ...restProps } = props;
97
+ return (
98
+ <SlotNativeView slotName="tooltip">
99
+ <PlainTooltipNativeView
100
+ modifiers={modifiers}
101
+ {...(modifiers ? createViewModifierEventListener(modifiers) : undefined)}
102
+ {...restProps}>
103
+ {children}
104
+ </PlainTooltipNativeView>
105
+ </SlotNativeView>
106
+ );
107
+ }
108
+
109
+ // --- RichTooltip (compound component of TooltipBox) ---
110
+
111
+ export type RichTooltipProps = {
112
+ containerColor?: ColorValue;
113
+ contentColor?: ColorValue;
114
+ titleContentColor?: ColorValue;
115
+ actionContentColor?: ColorValue;
116
+ modifiers?: ModifierConfig[];
117
+ children: React.ReactNode;
118
+ };
119
+
120
+ const RichTooltipNativeView: React.ComponentType<RichTooltipProps> = requireNativeView(
121
+ 'ExpoUI',
122
+ 'RichTooltipView'
123
+ );
124
+
125
+ function RichTooltipTitle(props: { children: React.ReactNode }) {
126
+ return <SlotNativeView slotName="title">{props.children}</SlotNativeView>;
127
+ }
128
+
129
+ function RichTooltipText(props: { children: React.ReactNode }) {
130
+ return <SlotNativeView slotName="text">{props.children}</SlotNativeView>;
131
+ }
132
+
133
+ function RichTooltipAction(props: { children: React.ReactNode }) {
134
+ return <SlotNativeView slotName="action">{props.children}</SlotNativeView>;
135
+ }
136
+
137
+ /**
138
+ * A detailed tooltip with optional title, body text, and action. Place inside `TooltipBox` as `TooltipBox.RichTooltip`.
139
+ * Content is provided via sub-components: `TooltipBox.RichTooltip.Title`, `TooltipBox.RichTooltip.Text`, `TooltipBox.RichTooltip.Action`.
140
+ */
141
+ function RichTooltipComponent(props: RichTooltipProps) {
142
+ const { children, modifiers, ...restProps } = props;
143
+ return (
144
+ <SlotNativeView slotName="tooltip">
145
+ <RichTooltipNativeView
146
+ modifiers={modifiers}
147
+ {...(modifiers ? createViewModifierEventListener(modifiers) : undefined)}
148
+ {...restProps}>
149
+ {children}
150
+ </RichTooltipNativeView>
151
+ </SlotNativeView>
152
+ );
153
+ }
154
+
155
+ RichTooltipComponent.Title = RichTooltipTitle;
156
+ RichTooltipComponent.Text = RichTooltipText;
157
+ RichTooltipComponent.Action = RichTooltipAction;
158
+
159
+ // --- TooltipBox ---
160
+
161
+ /**
162
+ * A container that wraps anchor content and shows a tooltip on long-press.
163
+ * Provide the tooltip content via `TooltipBox.PlainTooltip` or `TooltipBox.RichTooltip`.
164
+ * All other children are the anchor/trigger.
165
+ *
166
+ * Use `ref` to imperatively `show()` or `dismiss()` the tooltip.
167
+ */
168
+ function TooltipBoxComponent(props: TooltipBoxProps) {
169
+ const { children, ...restProps } = props;
170
+ return <TooltipBoxNativeView {...transformProps(restProps)}>{children}</TooltipBoxNativeView>;
171
+ }
172
+
173
+ TooltipBoxComponent.PlainTooltip = PlainTooltipComponent;
174
+ TooltipBoxComponent.RichTooltip = RichTooltipComponent;
175
+
176
+ export { TooltipBoxComponent as TooltipBox };
@@ -1,6 +1,8 @@
1
1
  import './MaterialSymbolsAssetsTransformer.fx';
2
2
 
3
3
  export * from './AlertDialog';
4
+ export * from './Badge';
5
+ export * from './BadgedBox';
4
6
  export { BasicAlertDialog, type BasicAlertDialogProps } from './BasicAlertDialog';
5
7
  export * from './Card';
6
8
  export * from './Checkbox';
@@ -33,6 +35,7 @@ export * from './PullToRefreshBox';
33
35
  export * from './RadioButton';
34
36
  export * from './Surface';
35
37
  export { type TextProps, Text } from './Text';
38
+ export * from './Tooltip';
36
39
 
37
40
  export * from './AnimatedVisibility';
38
41
  export * from './Box';
@@ -607,6 +607,24 @@ export const defaultScrollAnchorForRole = (
607
607
  role: 'initialOffset' | 'sizeChanges' | 'alignment'
608
608
  ) => createModifier('defaultScrollAnchorForRole', { anchor, role });
609
609
 
610
+ /**
611
+ * Sets the scroll snapping behavior for scrollable views.
612
+ * Use with `scrollTargetLayout` on the content container.
613
+ * @param behavior - `'paging'` for container-aligned snapping, `'viewAligned'` for view-aligned snapping.
614
+ * @platform ios 17.0+
615
+ * @see Official [SwiftUI documentation](https://developer.apple.com/documentation/swiftui/view/scrolltargetbehavior(_:)).
616
+ */
617
+ export const scrollTargetBehavior = (behavior: 'paging' | 'viewAligned') =>
618
+ createModifier('scrollTargetBehavior', { behavior });
619
+
620
+ /**
621
+ * Configures a layout container as a scroll target layout for view-aligned snapping.
622
+ * Apply to `VStack` or `HStack` inside a `ScrollView`.
623
+ * @platform ios 17.0+
624
+ * @see Official [SwiftUI documentation](https://developer.apple.com/documentation/swiftui/view/scrolltargetlayout(isenabled:)).
625
+ */
626
+ export const scrollTargetLayout = () => createModifier('scrollTargetLayout', {});
627
+
610
628
  /**
611
629
  * Disables the move action for a view in a list.
612
630
  * Apply to items within a `ForEach` to prevent them from being moved.
@@ -999,6 +1017,72 @@ export const submitLabel = (
999
1017
  submitLabel: 'continue' | 'done' | 'go' | 'join' | 'next' | 'return' | 'route' | 'search' | 'send'
1000
1018
  ) => createModifier('submitLabel', { submitLabel });
1001
1019
 
1020
+ /**
1021
+ * Sets how often the shift key in the keyboard is automatically enabled.
1022
+ * @param autocapitalization - The autocapitalization behavior.
1023
+ * @platform ios 15.0+
1024
+ * @see Official [SwiftUI documentation](https://developer.apple.com/documentation/swiftui/view/textinputautocapitalization(_:)).
1025
+ */
1026
+ export const textInputAutocapitalization = (
1027
+ autocapitalization: 'never' | 'words' | 'sentences' | 'characters'
1028
+ ) => createModifier('textInputAutocapitalization', { autocapitalization });
1029
+
1030
+ /**
1031
+ * Sets the text content type for input text, which the system uses to offer
1032
+ * suggestions (like autofill) while the user enters text.
1033
+ * @param textContentType - The semantic meaning of the text input area.
1034
+ * @platform ios 13.0+
1035
+ * @see Official [SwiftUI documentation](https://developer.apple.com/documentation/swiftui/view/textcontenttype(_:)-ufdv).
1036
+ */
1037
+ export const textContentType = (
1038
+ textContentType:
1039
+ | 'URL'
1040
+ | 'namePrefix'
1041
+ | 'name'
1042
+ | 'nameSuffix'
1043
+ | 'givenName'
1044
+ | 'middleName'
1045
+ | 'familyName'
1046
+ | 'nickname'
1047
+ | 'organizationName'
1048
+ | 'jobTitle'
1049
+ | 'location'
1050
+ | 'fullStreetAddress'
1051
+ | 'streetAddressLine1'
1052
+ | 'streetAddressLine2'
1053
+ | 'addressCity'
1054
+ | 'addressCityAndState'
1055
+ | 'addressState'
1056
+ | 'postalCode'
1057
+ | 'sublocality'
1058
+ | 'countryName'
1059
+ | 'username'
1060
+ | 'password'
1061
+ | 'newPassword'
1062
+ | 'oneTimeCode'
1063
+ | 'emailAddress'
1064
+ | 'telephoneNumber'
1065
+ | 'cellularEID'
1066
+ | 'cellularIMEI'
1067
+ | 'creditCardNumber'
1068
+ | 'creditCardExpiration'
1069
+ | 'creditCardExpirationMonth'
1070
+ | 'creditCardExpirationYear'
1071
+ | 'creditCardSecurityCode'
1072
+ | 'creditCardType'
1073
+ | 'creditCardName'
1074
+ | 'creditCardGivenName'
1075
+ | 'creditCardMiddleName'
1076
+ | 'creditCardFamilyName'
1077
+ | 'birthdate'
1078
+ | 'birthdateDay'
1079
+ | 'birthdateMonth'
1080
+ | 'birthdateYear'
1081
+ | 'dateTime'
1082
+ | 'flightNumber'
1083
+ | 'shipmentTrackingNumber'
1084
+ ) => createModifier('textContentType', { textContentType });
1085
+
1002
1086
  /**
1003
1087
  * Sets the content transition type for a view.
1004
1088
  * Useful for animating changes in text content, especially numeric text.
@@ -1130,6 +1214,8 @@ export type BuiltInModifier =
1130
1214
  | ReturnType<typeof scrollDisabled>
1131
1215
  | ReturnType<typeof defaultScrollAnchor>
1132
1216
  | ReturnType<typeof defaultScrollAnchorForRole>
1217
+ | ReturnType<typeof scrollTargetBehavior>
1218
+ | ReturnType<typeof scrollTargetLayout>
1133
1219
  | ReturnType<typeof moveDisabled>
1134
1220
  | ReturnType<typeof deleteDisabled>
1135
1221
  | ReturnType<typeof environment>
@@ -1156,6 +1242,8 @@ export type BuiltInModifier =
1156
1242
  | ReturnType<typeof gridColumnAlignment>
1157
1243
  | ReturnType<typeof gridCellAnchor>
1158
1244
  | ReturnType<typeof submitLabel>
1245
+ | ReturnType<typeof textInputAutocapitalization>
1246
+ | ReturnType<typeof textContentType>
1159
1247
  | ReturnType<typeof datePickerStyle>
1160
1248
  | ReturnType<typeof progressViewStyle>
1161
1249
  | ReturnType<typeof gaugeStyle>
@@ -1 +0,0 @@
1
- b2262e6bc6fdbba4542a361ca47cc99466fff958
@@ -1 +0,0 @@
1
- 2b50b26af7df4c5211dcb3fb2e0bcbc1e67b9d7643be03944ebdc2ff624283d7
@@ -1 +0,0 @@
1
- 1498e7baba58e8b17988e3f84b24561032849f1a353da509c8bafcd50abe67027889e2e54b2e5473fa055fbf08dc9cf9b728c3c108e16fc8b9bc20bde019039a
@@ -1 +0,0 @@
1
- 6f7ed7560ebf12a44e7ab271ea245771
@@ -1 +0,0 @@
1
- aef8c546077f395d701e22459b9557564b60fca0
@@ -1 +0,0 @@
1
- f73a8257262c66e8ca0af6247db6e20b17a895d6e88cec7861c967d4336c4e71
@@ -1 +0,0 @@
1
- fc12d4f1223dc477347edf00a0ac9884ec8c05935e172588b7a02b4862a2ffaf349bfb3e41e945a60fc426660f421ccffe254bf0f4746503a9a621182aede9b7
@@ -1 +0,0 @@
1
- 0fb19752cbcb266f74e76036d3cef74203a9a4eb
@@ -1 +0,0 @@
1
- 9a63c2d7b1e9a3c979fb96fda599f1e9b14b3de71871d2c02fc36903aefc819f
@@ -1 +0,0 @@
1
- c708991b4b1a7d877cb9005157be52a5dcbacfd25a422f72644f685801a433e8358318d8f7173f653b6d2acd1b22b64d945dac181e59a2d1e9c367334ab62fb7
@@ -1 +0,0 @@
1
- a31b7c5717adf18fe84c85cdefcd0fb5
@@ -1 +0,0 @@
1
- 8b11a53b5d9ac4dad5ad3f7476eb1c1afe64a84f
@@ -1 +0,0 @@
1
- a2eff80dd6b361f49c98929155e1a73d2889a31899b971962477a7dbacc9d32d
@@ -1 +0,0 @@
1
- f643fc246aa36733fdbc844da05a798063146dd49cff5b38ac98eec20bf6cc0ffe992ed5f9d906daf8e3872054cfc8947b1f38ce6968fd6046b012a5b1577bb5