sapo-components-ui-rn 1.1.47 → 1.1.49

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.
@@ -15,6 +15,8 @@ export type Props = React.ComponentPropsWithRef<typeof NativeTextInput> & {
15
15
  type?: "integer" | "float";
16
16
  formatDecimal?: 1 | 2 | 3;
17
17
  required?: boolean;
18
+ labelScaleValue?: number;
19
+ labelStyle?: StyleProp<TextStyle>;
18
20
  /**
19
21
  * If true, user won't be able to interact with the component.
20
22
  */
@@ -98,7 +98,7 @@ export type ChildTextInputProps = {
98
98
  suffix?: string;
99
99
  textError?: string;
100
100
  required?: boolean;
101
- labelStyle?: StyleProp<TextProps>;
101
+ labelStyle?: StyleProp<TextStyle>;
102
102
  labelScaleValue?: number;
103
103
  } & $Omit<TextInputTypesWithoutMode, "theme"> & {
104
104
  theme: InternalTheme;