native-pytech 1.0.115 → 1.0.118
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.
|
@@ -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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "native-pytech",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.118",
|
|
4
4
|
"description": "Libreria de React Native Pytech",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,8 +10,7 @@
|
|
|
10
10
|
"build": "node scripts/build.js",
|
|
11
11
|
"typecheck": "tsc --noEmit",
|
|
12
12
|
"prepublishOnly": "npm run build",
|
|
13
|
-
"release": "dev git && npm version patch && npm publish && dev git"
|
|
14
|
-
"postinstall": "node scripts/post_install.js"
|
|
13
|
+
"release": "dev git && npm version patch && npm publish && dev git"
|
|
15
14
|
},
|
|
16
15
|
"files": [
|
|
17
16
|
"dist",
|