sapo-components-ui-rn 1.1.47 → 1.1.48

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.
@@ -1,5 +1,5 @@
1
1
  import React from "react";
2
- import { StyleProp, TextInput as NativeTextInput, TextStyle, ViewStyle } from "react-native";
2
+ import { StyleProp, TextInput as NativeTextInput, TextStyle, ViewStyle, TextProps } from "react-native";
3
3
  import { Props as TextInputAffixProps } from "./Adornment/TextInputAffix";
4
4
  import type { RenderProps, TextInputLabelProp } from "./types";
5
5
  import type { ThemeProp } from "../../types";
@@ -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<TextProps>;
18
20
  /**
19
21
  * If true, user won't be able to interact with the component.
20
22
  */