@ornikar/kitt-universal 9.46.2 → 9.47.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": "9.46.2",
3
+ "version": "9.47.0",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "directory": "@ornikar/kitt-universal",
@@ -72,7 +72,7 @@
72
72
  "@floating-ui/react-native": "0.8.0",
73
73
  "@linaria/react": "^4.1.3",
74
74
  "@ornikar/eslint-config-kitt": "^1.0.3",
75
- "@ornikar/kitt-icons": "^4.4.0",
75
+ "@ornikar/kitt-icons": "^4.5.0",
76
76
  "@react-native-community/datetimepicker": "^6.0.0",
77
77
  "libphonenumber-js": "1.10.19",
78
78
  "native-base": "3.4.18",
@@ -144,5 +144,5 @@
144
144
  "react-native-web": "0.17.7",
145
145
  "styled-components": "5.3.5"
146
146
  },
147
- "gitHead": "f0cbbf35055e0fa99f2797604edea17a1c2c8918"
147
+ "gitHead": "4ea5d04bfe66939a81918ca2e85f3ec1f0e81a50"
148
148
  }
@@ -113,6 +113,10 @@ declare module 'react-native' {
113
113
  background?: string;
114
114
  /** web only - allow custom boxShadow */
115
115
  boxShadow?: string;
116
+ /** web only - allow custom gridTemplateColumns */
117
+ gridTemplateColumns?: string;
118
+ /** web only - allow custom gridGap */
119
+ gridGap?: string;
116
120
  }
117
121
 
118
122
  // https://github.com/necolas/react-native-web/blob/db9df2b55f34ae03781c7e07e120c4baa4221157/packages/react-native-web/src/exports/View/types.js#L27