native-pytech 1.0.116 → 1.0.119
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.
|
@@ -6,9 +6,15 @@ import { type ColorSchemeType } from '../../constants';
|
|
|
6
6
|
*/
|
|
7
7
|
type Props = {
|
|
8
8
|
text: string;
|
|
9
|
-
|
|
9
|
+
/**
|
|
10
|
+
@default true
|
|
11
|
+
*/
|
|
12
|
+
enabled?: boolean;
|
|
10
13
|
fontScale?: string;
|
|
11
|
-
|
|
14
|
+
/**
|
|
15
|
+
@default {}
|
|
16
|
+
*/
|
|
17
|
+
style?: StyleProp<TextStyle>;
|
|
12
18
|
};
|
|
13
19
|
declare const _default: React.MemoExoticComponent<({ ...props }: Props & {
|
|
14
20
|
colorScheme?: ColorSchemeType;
|
|
@@ -5,18 +5,20 @@ import OptionProps from "../Option/types";
|
|
|
5
5
|
import { DeleteIcon, DragIcon, Icon, Image, Text, TextInput, TextInputCurrency, TextView } from '../OptionComponents';
|
|
6
6
|
export type Props = OptionProps & {
|
|
7
7
|
id: string;
|
|
8
|
-
isAnimated: boolean;
|
|
9
8
|
/**
|
|
10
|
-
|
|
11
|
-
Es un dict con { left: 17, right: 16 } por defecto.
|
|
9
|
+
@default false
|
|
12
10
|
*/
|
|
13
|
-
|
|
11
|
+
isAnimated?: boolean;
|
|
12
|
+
/**
|
|
13
|
+
@default '{ left: left, right: right, shownTop: null, shownBottom: null, color: null }'
|
|
14
|
+
*/
|
|
15
|
+
borders?: {
|
|
14
16
|
color: string | null;
|
|
15
17
|
shownTop: boolean | null;
|
|
16
18
|
shownBottom: boolean | null;
|
|
17
19
|
left: number;
|
|
18
20
|
right: number;
|
|
19
|
-
}
|
|
21
|
+
};
|
|
20
22
|
} & ViewProps;
|
|
21
23
|
export type OptionComponent = React.MemoExoticComponent<React.FC<Props & {
|
|
22
24
|
colorScheme?: ColorSchemeType;
|