@tamagui/helpers-node 1.0.1-beta.175 → 1.0.1-beta.177

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/dist/types.js.map CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../src/types.ts"],
4
- "sourcesContent": ["export interface TamaguiOptions {\n // module paths you want to compile with tamagui (for example ['tamagui'])\n components: string[]\n // your tamagui.config.ts\n config?: string\n evaluateVars?: boolean\n importsWhitelist?: string[]\n disable?: boolean\n disableExtraction?: boolean\n disableFlattening?: boolean\n disableDebugAttr?: boolean\n disableExtractInlineMedia?: boolean\n disableExtractVariables?: boolean\n disableExtractFoundComponents?: boolean\n excludeReactNativeWebExports?: string[]\n exclude?: RegExp\n logTimings?: boolean\n prefixLogs?: string\n\n // probably non user options\n cssPath?: string\n cssData?: any\n deoptProps?: Set<string>\n excludeProps?: Set<string>\n inlineProps?: Set<string>\n forceExtractStyleDefinitions?: boolean\n}\n"],
4
+ "sourcesContent": ["export interface TamaguiOptions {\n // module paths you want to compile with tamagui (for example ['tamagui'])\n components: string[]\n // your tamagui.config.ts\n config?: string\n evaluateVars?: boolean\n importsWhitelist?: string[]\n disable?: boolean\n disableExtraction?: boolean\n disableFlattening?: boolean\n disableDebugAttr?: boolean\n disableExtractInlineMedia?: boolean\n disableExtractVariables?: boolean | 'theme'\n disableExtractFoundComponents?: boolean\n excludeReactNativeWebExports?: string[]\n exclude?: RegExp\n logTimings?: boolean\n prefixLogs?: string\n\n // probably non user options\n cssPath?: string\n cssData?: any\n deoptProps?: Set<string>\n excludeProps?: Set<string>\n inlineProps?: Set<string>\n forceExtractStyleDefinitions?: boolean\n}\n"],
5
5
  "mappings": ";;;;;;;;;;;;;;AAAA;AAAA;",
6
6
  "names": []
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/helpers-node",
3
- "version": "1.0.1-beta.175",
3
+ "version": "1.0.1-beta.177",
4
4
  "source": "src/index.ts",
5
5
  "types": "./types/index.d.ts",
6
6
  "main": "./dist",
@@ -16,7 +16,7 @@
16
16
  "clean:build": "tamagui-build clean:build"
17
17
  },
18
18
  "devDependencies": {
19
- "@tamagui/build": "^1.0.1-beta.175",
19
+ "@tamagui/build": "^1.0.1-beta.177",
20
20
  "fs-extra": "^10.1.0"
21
21
  },
22
22
  "publishConfig": {
package/src/types.ts CHANGED
@@ -10,7 +10,7 @@ export interface TamaguiOptions {
10
10
  disableFlattening?: boolean
11
11
  disableDebugAttr?: boolean
12
12
  disableExtractInlineMedia?: boolean
13
- disableExtractVariables?: boolean
13
+ disableExtractVariables?: boolean | 'theme'
14
14
  disableExtractFoundComponents?: boolean
15
15
  excludeReactNativeWebExports?: string[]
16
16
  exclude?: RegExp
package/types/types.d.ts CHANGED
@@ -8,7 +8,7 @@ export interface TamaguiOptions {
8
8
  disableFlattening?: boolean;
9
9
  disableDebugAttr?: boolean;
10
10
  disableExtractInlineMedia?: boolean;
11
- disableExtractVariables?: boolean;
11
+ disableExtractVariables?: boolean | 'theme';
12
12
  disableExtractFoundComponents?: boolean;
13
13
  excludeReactNativeWebExports?: string[];
14
14
  exclude?: RegExp;