@ornikar/kitt-universal 13.2.1 → 13.3.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ornikar/kitt-universal",
3
- "version": "13.2.1",
3
+ "version": "13.3.0",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "directory": "@ornikar/kitt-universal",
@@ -140,5 +140,5 @@
140
140
  "react-native-svg": "13.4.0",
141
141
  "react-native-web": "0.18.12"
142
142
  },
143
- "gitHead": "9421ebc935266ba483b5c5dedab6f04a877f626e"
143
+ "gitHead": "708346edf92ef06c9d3bdc2c93dd28ec128446c0"
144
144
  }
@@ -27,7 +27,7 @@ declare module 'react-native' {
27
27
 
28
28
  // Based on TransformsStyle from react native
29
29
  // https://github.com/necolas/react-native-web/blob/db9df2b55f34ae03781c7e07e120c4baa4221157/packages/react-native-web/src/types/styles.js#L277
30
- type Transform =
30
+ type TransformWitAdditionalWeb =
31
31
  | (
32
32
  | PerpectiveTransform
33
33
  | RotateTransform
@@ -105,7 +105,7 @@ declare module 'react-native' {
105
105
  transitionDuration?: string | Array<string>;
106
106
  transitionProperty?: string | Array<string>;
107
107
  transitionTimingFunction?: string | Array<string>;
108
- transform?: Transform;
108
+ transform?: TransformWitAdditionalWeb | string;
109
109
  transformOrigin?: TransformOrigin;
110
110
  transformStyle?: TransformStyle;
111
111
  visibility?: string;