@tamagui/types 1.63.0 → 1.64.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +8 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/types",
3
- "version": "1.63.0",
3
+ "version": "1.64.0",
4
4
  "types": "./types.d.ts",
5
5
  "files": [
6
6
  "types.d.ts"
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