@tamagui/types 1.63.0 → 1.64.1
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
|
@@ -55,6 +55,14 @@ export interface TamaguiOptions {
|
|
|
55
55
|
* Custom prefix for the timing logs
|
|
56
56
|
*/
|
|
57
57
|
prefixLogs?: string
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* (Advanced) Enables Tamagui to try and evaluate components outside the `components` option.
|
|
61
|
+
* When true, Tamagui will bundle and load components as its running across every file,
|
|
62
|
+
* if it loads them successfully it will perform all optimiziations inline.
|
|
63
|
+
*/
|
|
64
|
+
enableDynamicEvaluation?: boolean
|
|
65
|
+
|
|
58
66
|
/**
|
|
59
67
|
* Completely disable tamagui for these files
|
|
60
68
|
*/
|
|
@@ -81,8 +89,6 @@ export interface TamaguiOptions {
|
|
|
81
89
|
*/
|
|
82
90
|
disableExtractVariables?: boolean | 'theme'
|
|
83
91
|
|
|
84
|
-
// probably non user options
|
|
85
|
-
disableExtractFoundComponents?: boolean | string[]
|
|
86
92
|
evaluateVars?: boolean
|
|
87
93
|
cssPath?: string
|
|
88
94
|
cssData?: any
|