@tamagui/types 3.0.0-beta.807.1 → 3.0.0-beta.881.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.
Files changed (3) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +4 -8
  3. package/types.ts +4 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/types",
3
- "version": "3.0.0-beta.807.1",
3
+ "version": "3.0.0-beta.881.1",
4
4
  "files": [
5
5
  "types.ts",
6
6
  "types.d.ts"
package/types.d.ts CHANGED
@@ -2,8 +2,10 @@ export interface TamaguiBuildOptions {
2
2
  /** Project root used to resolve compiler config and component modules. */
3
3
  root?: string
4
4
  /**
5
- * module paths you want to compile with tamagui (for example ['tamagui'])
6
- * */
5
+ * Component packages to evaluate up front (default ['tamagui']). The compiler
6
+ * discovers any other package a JSX element or styled() base imports from as
7
+ * it compiles, so this is an optional warm-up, not a requirement.
8
+ */
7
9
  components?: string[]
8
10
  /**
9
11
  * Dangerous escape hatch for runtime-only modules that the compiler should
@@ -67,12 +69,6 @@ export interface TamaguiBuildOptions {
67
69
  * Custom prefix for the timing logs
68
70
  */
69
71
  prefixLogs?: string
70
- /**
71
- * (Advanced) Enables Tamagui to try and evaluate components outside the `components` option.
72
- * When true, Tamagui will bundle and load components as its running across every file,
73
- * if it loads them successfully it will perform all optimiziations inline.
74
- */
75
- enableDynamicEvaluation?: boolean
76
72
  /**
77
73
  * Completely disable tamagui for these files
78
74
  */
package/types.ts CHANGED
@@ -3,8 +3,10 @@ export interface TamaguiBuildOptions {
3
3
  root?: string
4
4
 
5
5
  /**
6
- * module paths you want to compile with tamagui (for example ['tamagui'])
7
- * */
6
+ * Component packages to evaluate up front (default ['tamagui']). The compiler
7
+ * discovers any other package a JSX element or styled() base imports from as
8
+ * it compiles, so this is an optional warm-up, not a requirement.
9
+ */
8
10
  components?: string[]
9
11
 
10
12
  /**
@@ -79,13 +81,6 @@ export interface TamaguiBuildOptions {
79
81
  */
80
82
  prefixLogs?: string
81
83
 
82
- /**
83
- * (Advanced) Enables Tamagui to try and evaluate components outside the `components` option.
84
- * When true, Tamagui will bundle and load components as its running across every file,
85
- * if it loads them successfully it will perform all optimiziations inline.
86
- */
87
- enableDynamicEvaluation?: boolean
88
-
89
84
  /**
90
85
  * Completely disable tamagui for these files
91
86
  */