@tamagui/types 1.92.1 → 1.93.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 +1 -1
- package/types.d.ts +8 -2
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export interface TamaguiBuildOptions {
|
|
|
2
2
|
/**
|
|
3
3
|
* module paths you want to compile with tamagui (for example ['tamagui'])
|
|
4
4
|
* */
|
|
5
|
-
components
|
|
5
|
+
components?: string[]
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* relative path to your tamagui.config.ts
|
|
@@ -140,10 +140,16 @@ export interface TamaguiBuildOptions {
|
|
|
140
140
|
* combine all css files into one file
|
|
141
141
|
*/
|
|
142
142
|
emitSingleCSSFile?: boolean
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* @deprecated Deprecated, just leave it off
|
|
146
|
+
*/
|
|
147
|
+
useReactNativeWebLite?: boolean | 'without-animated'
|
|
148
|
+
disableWatchTamaguiConfig?: boolean
|
|
143
149
|
}
|
|
144
150
|
|
|
145
151
|
export interface TamaguiOptions extends TamaguiBuildOptions {
|
|
146
|
-
platform
|
|
152
|
+
platform?: 'native' | 'web'
|
|
147
153
|
}
|
|
148
154
|
|
|
149
155
|
// for cli
|