@tamagui/static 1.100.5 → 1.101.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,353 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf, __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __export = (target, all) => {
8
+ for (var name in all)
9
+ __defProp(target, name, { get: all[name], enumerable: !0 });
10
+ }, __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from == "object" || typeof from == "function")
12
+ for (let key of __getOwnPropNames(from))
13
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ return to;
15
+ };
16
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
17
+ // If the importer is in node compatibility mode or this is not an ESM
18
+ // file that has been converted to a CommonJS file using a Babel-
19
+ // compatible transform (i.e. "__esModule" has not been set), then set
20
+ // "default" to the CommonJS "module.exports" for node compatibility.
21
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
22
+ mod
23
+ )), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
24
+ var extractToNative_exports = {};
25
+ __export(extractToNative_exports, {
26
+ extractToNative: () => extractToNative,
27
+ getBabelParseDefinition: () => getBabelParseDefinition,
28
+ getBabelPlugin: () => getBabelPlugin
29
+ });
30
+ module.exports = __toCommonJS(extractToNative_exports);
31
+ var import_node_path = require("node:path"), import_core = require("@babel/core"), import_generator = __toESM(require("@babel/generator")), import_helper_plugin_utils = require("@babel/helper-plugin-utils"), import_parser = require("@babel/parser"), import_template = __toESM(require("@babel/template")), t = __toESM(require("@babel/types")), import_static = require("@tamagui/static");
32
+ function _array_like_to_array(arr, len) {
33
+ (len == null || len > arr.length) && (len = arr.length);
34
+ for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
35
+ return arr2;
36
+ }
37
+ function _array_without_holes(arr) {
38
+ if (Array.isArray(arr)) return _array_like_to_array(arr);
39
+ }
40
+ function _define_property(obj, key, value) {
41
+ return key in obj ? Object.defineProperty(obj, key, {
42
+ value,
43
+ enumerable: !0,
44
+ configurable: !0,
45
+ writable: !0
46
+ }) : obj[key] = value, obj;
47
+ }
48
+ function _instanceof(left, right) {
49
+ return right != null && typeof Symbol < "u" && right[Symbol.hasInstance] ? !!right[Symbol.hasInstance](left) : left instanceof right;
50
+ }
51
+ function _iterable_to_array(iter) {
52
+ if (typeof Symbol < "u" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
53
+ }
54
+ function _non_iterable_spread() {
55
+ throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
56
+ }
57
+ function _object_spread(target) {
58
+ for (var i = 1; i < arguments.length; i++) {
59
+ var source = arguments[i] != null ? arguments[i] : {}, ownKeys2 = Object.keys(source);
60
+ typeof Object.getOwnPropertySymbols == "function" && (ownKeys2 = ownKeys2.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
61
+ return Object.getOwnPropertyDescriptor(source, sym).enumerable;
62
+ }))), ownKeys2.forEach(function(key) {
63
+ _define_property(target, key, source[key]);
64
+ });
65
+ }
66
+ return target;
67
+ }
68
+ function ownKeys(object, enumerableOnly) {
69
+ var keys = Object.keys(object);
70
+ if (Object.getOwnPropertySymbols) {
71
+ var symbols = Object.getOwnPropertySymbols(object);
72
+ enumerableOnly && (symbols = symbols.filter(function(sym) {
73
+ return Object.getOwnPropertyDescriptor(object, sym).enumerable;
74
+ })), keys.push.apply(keys, symbols);
75
+ }
76
+ return keys;
77
+ }
78
+ function _object_spread_props(target, source) {
79
+ return source = source ?? {}, Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function(key) {
80
+ Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
81
+ }), target;
82
+ }
83
+ function _to_consumable_array(arr) {
84
+ return _array_without_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array(arr) || _non_iterable_spread();
85
+ }
86
+ function _unsupported_iterable_to_array(o, minLen) {
87
+ if (o) {
88
+ if (typeof o == "string") return _array_like_to_array(o, minLen);
89
+ var n = Object.prototype.toString.call(o).slice(8, -1);
90
+ if (n === "Object" && o.constructor && (n = o.constructor.name), n === "Map" || n === "Set") return Array.from(n);
91
+ if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
92
+ }
93
+ }
94
+ var importNativeView = (0, import_template.default)(`
95
+ const __ReactNativeView = require('react-native').View;
96
+ const __ReactNativeText = require('react-native').Text;
97
+ `), importStyleSheet = (0, import_template.default)(`
98
+ const __ReactNativeStyleSheet = require('react-native').StyleSheet;
99
+ `), importWithStyle = (0, import_template.default)(`
100
+ const __withStableStyle = require('@tamagui/core')._withStableStyle;
101
+ `), extractor = (0, import_static.createExtractor)({
102
+ platform: "native"
103
+ }), tamaguiBuildOptionsLoaded;
104
+ function extractToNative(sourceFileName, sourceCode, options) {
105
+ var ast = (0, import_parser.parse)(sourceCode, {
106
+ sourceType: "module",
107
+ plugins: [
108
+ "jsx",
109
+ "typescript"
110
+ ]
111
+ }), babelPlugin = getBabelPlugin(), out = (0, import_core.transformFromAstSync)(ast, sourceCode, {
112
+ plugins: [
113
+ [
114
+ babelPlugin,
115
+ options
116
+ ]
117
+ ],
118
+ configFile: !1,
119
+ sourceFileName,
120
+ filename: sourceFileName
121
+ });
122
+ if (!out)
123
+ throw new Error("No output returned");
124
+ return out;
125
+ }
126
+ function getBabelPlugin() {
127
+ return (0, import_helper_plugin_utils.declare)(function(api, options) {
128
+ return api.assertVersion(7), getBabelParseDefinition(options);
129
+ });
130
+ }
131
+ function getBabelParseDefinition(options) {
132
+ return {
133
+ name: "tamagui",
134
+ visitor: {
135
+ Program: {
136
+ enter: function(root) {
137
+ var _process_env_SOURCE_ROOT, _root_node_body__leadingComments, _root_node_body_, sourcePath = this.file.opts.filename;
138
+ if (sourcePath != null && sourcePath.includes("node_modules") || !(sourcePath != null && sourcePath.endsWith(".jsx")) && !(sourcePath != null && sourcePath.endsWith(".tsx")))
139
+ return;
140
+ !((_process_env_SOURCE_ROOT = process.env.SOURCE_ROOT) === null || _process_env_SOURCE_ROOT === void 0) && _process_env_SOURCE_ROOT.endsWith("ios") && (sourcePath = sourcePath.replace("/ios", ""));
141
+ var hasImportedView = !1, hasImportedViewWrapper = !1, sheetStyles = {}, sheetIdentifier = root.scope.generateUidIdentifier("sheet"), _root_node_body__leadingComments_map_join, firstCommentContents = (_root_node_body__leadingComments_map_join = (_root_node_body_ = root.node.body[0]) === null || _root_node_body_ === void 0 || (_root_node_body__leadingComments = _root_node_body_.leadingComments) === null || _root_node_body__leadingComments === void 0 ? void 0 : _root_node_body__leadingComments.map(function(comment) {
142
+ return (comment == null ? void 0 : comment.value) || " ";
143
+ }).join(" ")) !== null && _root_node_body__leadingComments_map_join !== void 0 ? _root_node_body__leadingComments_map_join : "", firstComment = firstCommentContents ? "//".concat(firstCommentContents) : "", _getPragmaOptions = (0, import_static.getPragmaOptions)({
144
+ source: firstComment,
145
+ path: sourcePath
146
+ }), shouldPrintDebug = _getPragmaOptions.shouldPrintDebug, shouldDisable = _getPragmaOptions.shouldDisable;
147
+ if (shouldDisable)
148
+ return;
149
+ !options.config && !options.components && (tamaguiBuildOptionsLoaded || (tamaguiBuildOptionsLoaded = (0, import_static.loadTamaguiBuildConfigSync)({})));
150
+ var finalOptions = _object_spread({
151
+ // @ts-ignore just in case they leave it out
152
+ platform: "native"
153
+ }, tamaguiBuildOptionsLoaded, options), printLog = (0, import_static.createLogger)(sourcePath, finalOptions);
154
+ function addSheetStyle(style, node) {
155
+ var styleIndex = "".concat(Object.keys(sheetStyles).length), key = "".concat(styleIndex);
156
+ if (process.env.NODE_ENV === "development") {
157
+ var lineNumbers = node.loc ? node.loc.start.line + (node.loc.start.line !== node.loc.end.line ? "-".concat(node.loc.end.line) : "") : "";
158
+ key += ":".concat((0, import_node_path.basename)(sourcePath), ":").concat(lineNumbers);
159
+ }
160
+ return sheetStyles[key] = style, readStyleExpr(key);
161
+ }
162
+ function readStyleExpr(key) {
163
+ return (0, import_template.default)("SHEET['KEY']")({
164
+ SHEET: sheetIdentifier.name,
165
+ KEY: key
166
+ }).expression;
167
+ }
168
+ var res;
169
+ try {
170
+ res = extractor.parseSync(root, _object_spread_props(_object_spread({
171
+ importsWhitelist: [
172
+ "constants.js",
173
+ "colors.js"
174
+ ],
175
+ extractStyledDefinitions: options.forceExtractStyleDefinitions,
176
+ excludeProps: /* @__PURE__ */ new Set([
177
+ "className",
178
+ "userSelect",
179
+ "whiteSpace",
180
+ "textOverflow",
181
+ "cursor",
182
+ "contain"
183
+ ]),
184
+ shouldPrintDebug
185
+ }, finalOptions), {
186
+ // disable this extraction for now at least, need to figure out merging theme vs non-theme
187
+ // because theme need to stay in render(), whereas non-theme can be extracted
188
+ // for now just turn it off entirely at a small perf loss
189
+ disableExtractInlineMedia: !0,
190
+ // disable extracting variables as no native concept of them (only theme values)
191
+ disableExtractVariables: options.experimentalFlattenThemesOnNative ? !1 : "theme",
192
+ sourcePath,
193
+ // disabling flattening for now
194
+ // it's flattening a plain <Paragraph>hello</Paragraph> which breaks things because themes
195
+ // thinking it's not really worth the effort to do much compilation on native
196
+ // for now just disable flatten as it can only run in narrow places on native
197
+ // disableFlattening: 'styled',
198
+ getFlattenedNode: function(param) {
199
+ var isTextView = param.isTextView;
200
+ return hasImportedView || (hasImportedView = !0, root.unshiftContainer("body", importNativeView())), isTextView ? "__ReactNativeText" : "__ReactNativeView";
201
+ },
202
+ onExtractTag: function(props) {
203
+ var isFlattened = props.isFlattened;
204
+ if (!isFlattened)
205
+ return;
206
+ assertValidTag(props.node);
207
+ var stylesExpr = t.arrayExpression([]), hocStylesExpr = t.arrayExpression([]), expressions = [], finalAttrs = [], themeKeysUsed = /* @__PURE__ */ new Set();
208
+ function getStyleExpression(style) {
209
+ if (style) {
210
+ var _splitThemeStyles = splitThemeStyles(style), plain = _splitThemeStyles.plain, themed = _splitThemeStyles.themed, themeExpr = null;
211
+ if (themed && options.experimentalFlattenThemesOnNative) {
212
+ for (var key in themed)
213
+ themeKeysUsed.add(themed[key].split("$")[1]);
214
+ themeExpr = getThemedStyleExpression(themed);
215
+ }
216
+ var ident = addSheetStyle(plain, props.node);
217
+ return themeExpr ? (addStyleExpression(ident), addStyleExpression(ident, !0), themeExpr) : ident;
218
+ }
219
+ }
220
+ function addStyleExpression(expr) {
221
+ var HOC = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : !1;
222
+ if (Array.isArray(expr)) {
223
+ var _elements;
224
+ (_elements = (HOC ? hocStylesExpr : stylesExpr).elements).push.apply(_elements, _to_consumable_array(expr));
225
+ } else
226
+ (HOC ? hocStylesExpr : stylesExpr).elements.push(expr);
227
+ }
228
+ function getThemedStyleExpression(styles) {
229
+ var themedStylesAst = (0, import_static.literalToAst)(styles);
230
+ return themedStylesAst.properties.forEach(function(_) {
231
+ var prop = _;
232
+ prop.value.type === "StringLiteral" && (prop.value = t.memberExpression(t.identifier("theme"), t.identifier(prop.value.value.slice(1) + ".get()")));
233
+ }), themedStylesAst;
234
+ }
235
+ var hasDynamicStyle = !1, _iteratorNormalCompletion = !0, _didIteratorError = !1, _iteratorError = void 0;
236
+ try {
237
+ for (var _iterator = props.attrs[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = !0) {
238
+ var attr = _step.value;
239
+ switch (attr.type) {
240
+ case "style": {
241
+ var styleExpr = getStyleExpression(attr.value);
242
+ addStyleExpression(styleExpr), options.experimentalFlattenThemesOnNative && addStyleExpression(styleExpr, !0);
243
+ break;
244
+ }
245
+ case "ternary": {
246
+ var _attr_value = attr.value, consequent = _attr_value.consequent, alternate = _attr_value.alternate, consExpr = getStyleExpression(consequent), altExpr = getStyleExpression(alternate);
247
+ options.experimentalFlattenThemesOnNative && (expressions.push(attr.value.test), addStyleExpression(t.conditionalExpression(t.identifier("_expressions[".concat(expressions.length - 1, "]")), consExpr || t.nullLiteral(), altExpr || t.nullLiteral()), !0));
248
+ var styleExpr1 = t.conditionalExpression(attr.value.test, consExpr || t.nullLiteral(), altExpr || t.nullLiteral());
249
+ addStyleExpression(styleExpr1);
250
+ break;
251
+ }
252
+ case "dynamic-style": {
253
+ hasDynamicStyle = !0, expressions.push(attr.value), options.experimentalFlattenDynamicValues ? addStyleExpression(t.objectExpression([
254
+ t.objectProperty(t.identifier(attr.name), t.identifier("_expressions[".concat(expressions.length - 1, "]")))
255
+ ]), !0) : addStyleExpression(t.objectExpression([
256
+ t.objectProperty(t.identifier(attr.name), attr.value)
257
+ ]));
258
+ break;
259
+ }
260
+ case "attr": {
261
+ t.isJSXSpreadAttribute(attr.value) && (0, import_static.isSimpleSpread)(attr.value) && (stylesExpr.elements.push(t.memberExpression(attr.value.argument, t.identifier("style"))), options.experimentalFlattenThemesOnNative && hocStylesExpr.elements.push(t.memberExpression(attr.value.argument, t.identifier("style")))), finalAttrs.push(attr.value);
262
+ break;
263
+ }
264
+ }
265
+ }
266
+ } catch (err) {
267
+ _didIteratorError = !0, _iteratorError = err;
268
+ } finally {
269
+ try {
270
+ !_iteratorNormalCompletion && _iterator.return != null && _iterator.return();
271
+ } finally {
272
+ if (_didIteratorError)
273
+ throw _iteratorError;
274
+ }
275
+ }
276
+ if (props.node.attributes = finalAttrs, props.isFlattened)
277
+ if (options.experimentalFlattenThemesOnNative && (themeKeysUsed.size || hocStylesExpr.elements.length > 1 || hasDynamicStyle)) {
278
+ hasImportedViewWrapper || (root.unshiftContainer("body", importWithStyle()), hasImportedViewWrapper = !0);
279
+ var name = props.node.name.name, WrapperIdentifier = root.scope.generateUidIdentifier(name + "Wrapper");
280
+ root.pushContainer("body", t.variableDeclaration("const", [
281
+ t.variableDeclarator(WrapperIdentifier, t.callExpression(t.identifier("__withStableStyle"), [
282
+ t.identifier(name),
283
+ t.arrowFunctionExpression([
284
+ t.identifier("theme"),
285
+ t.identifier("_expressions")
286
+ ], t.blockStatement([
287
+ t.returnStatement(t.callExpression(t.memberExpression(t.identifier("React"), t.identifier("useMemo")), [
288
+ t.arrowFunctionExpression([], t.blockStatement([
289
+ t.returnStatement(t.arrayExpression(_to_consumable_array(hocStylesExpr.elements)))
290
+ ])),
291
+ t.arrayExpression([
292
+ t.spreadElement(t.identifier("_expressions"))
293
+ ])
294
+ ]))
295
+ ]))
296
+ ]))
297
+ ])), props.node.name = WrapperIdentifier, props.jsxPath.node.closingElement && (props.jsxPath.node.closingElement.name = WrapperIdentifier), expressions.length && props.node.attributes.push(t.jsxAttribute(t.jsxIdentifier("expressions"), t.jsxExpressionContainer(t.arrayExpression(expressions))));
298
+ } else
299
+ props.node.attributes.push(t.jsxAttribute(t.jsxIdentifier("style"), t.jsxExpressionContainer(stylesExpr.elements.length === 1 ? stylesExpr.elements[0] : stylesExpr)));
300
+ }
301
+ }));
302
+ } catch (err) {
303
+ if (_instanceof(err, Error)) {
304
+ var message = "".concat(shouldPrintDebug === "verbose" ? err : err.message);
305
+ message.includes("Unexpected return value from visitor method") && (message = "Unexpected return value from visitor method"), console.warn("Error in Tamagui parse, skipping", message, err.stack);
306
+ return;
307
+ }
308
+ }
309
+ if (!Object.keys(sheetStyles).length) {
310
+ shouldPrintDebug && console.info("END no styles"), res && printLog(res);
311
+ return;
312
+ }
313
+ var sheetObject = (0, import_static.literalToAst)(sheetStyles), sheetOuter = (0, import_template.default)("const SHEET = __ReactNativeStyleSheet.create(null)")({
314
+ SHEET: sheetIdentifier.name
315
+ });
316
+ sheetOuter.declarations[0].init.arguments[0] = sheetObject, root.unshiftContainer("body", sheetOuter), root.unshiftContainer("body", importStyleSheet()), shouldPrintDebug && (console.info(`
317
+ -------- output code -------
318
+ `), console.info((0, import_generator.default)(root.parent).code.split(`
319
+ `).filter(function(x) {
320
+ return !x.startsWith("//");
321
+ }).join(`
322
+ `))), res && printLog(res);
323
+ }
324
+ }
325
+ }
326
+ };
327
+ }
328
+ function assertValidTag(node) {
329
+ if (node.attributes.find(function(x) {
330
+ return x.type === "JSXAttribute" && x.name.name === "style";
331
+ })) {
332
+ var _process_env_DEBUG;
333
+ !((_process_env_DEBUG = process.env.DEBUG) === null || _process_env_DEBUG === void 0) && _process_env_DEBUG.startsWith("tamagui") && console.warn("\u26A0\uFE0F Cannot pass style attribute to extracted style");
334
+ }
335
+ }
336
+ function splitThemeStyles(style) {
337
+ var themed = {}, plain = {}, noTheme = !0;
338
+ for (var key in style) {
339
+ var val = style[key];
340
+ val && val[0] === "$" ? (themed[key] = val, noTheme = !1) : plain[key] = val;
341
+ }
342
+ return {
343
+ themed: noTheme ? null : themed,
344
+ plain
345
+ };
346
+ }
347
+ // Annotate the CommonJS export names for ESM import in node:
348
+ 0 && (module.exports = {
349
+ extractToNative,
350
+ getBabelParseDefinition,
351
+ getBabelPlugin
352
+ });
353
+ //# sourceMappingURL=extractToNative.js.map
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/extractor/Users/n8/tamagui/packages/static/src/extractor/extractToNative.ts"],
4
+ "mappings": "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",
5
+ "names": ["importNativeView", "template", "importStyleSheet", "importWithStyle", "extractor", "createExtractor", "platform", "tamaguiBuildOptionsLoaded", "extractToNative", "sourceFileName", "sourceCode", "options", "ast", "parse", "sourceType", "plugins", "babelPlugin", "getBabelPlugin", "out", "transformFromAstSync", "configFile", "filename", "Error", "declare", "api", "assertVersion", "getBabelParseDefinition", "name", "visitor", "Program", "enter", "root", "process", "sourcePath", "file", "opts", "includes", "endsWith", "env", "SOURCE_ROOT", "replace", "hasImportedView", "hasImportedViewWrapper", "sheetStyles", "sheetIdentifier", "scope", "generateUidIdentifier", "firstCommentContents", "node", "body", "leadingComments", "map", "comment", "value", "join", "firstComment", "getPragmaOptions", "source", "path", "shouldPrintDebug", "shouldDisable", "config", "components", "loadTamaguiBuildConfigSync", "finalOptions", "printLog", "createLogger", "addSheetStyle", "style", "styleIndex", "Object", "keys", "length", "key", "NODE_ENV", "lineNumbers", "loc", "start", "line", "end", "basename", "readStyleExpr", "SHEET", "KEY", "res", "parseSync", "importsWhitelist", "extractStyledDefinitions", "forceExtractStyleDefinitions", "excludeProps", "Set", "disableExtractInlineMedia", "disableExtractVariables", "experimentalFlattenThemesOnNative", "getFlattenedNode", "isTextView", "unshiftContainer", "onExtractTag", "props", "isFlattened", "assertValidTag", "stylesExpr", "t", "arrayExpression", "hocStylesExpr", "expressions", "finalAttrs", "themeKeysUsed", "getStyleExpression", "splitThemeStyles", "plain", "themed", "themeExpr", "add", "split", "getThemedStyleExpression", "ident", "addStyleExpression", "expr", "HOC", "Array", "isArray", "elements", "push", "styles", "themedStylesAst", "literalToAst", "properties", "forEach", "_", "prop", "type", "memberExpression", "identifier", "slice", "hasDynamicStyle", "attrs", "attr", "styleExpr", "consequent", "alternate", "consExpr", "altExpr", "test", "conditionalExpression", "nullLiteral", "experimentalFlattenDynamicValues", "objectExpression", "objectProperty", "isJSXSpreadAttribute", "isSimpleSpread", "argument", "attributes", "size", "WrapperIdentifier", "pushContainer", "variableDeclaration", "variableDeclarator", "callExpression", "arrowFunctionExpression", "blockStatement", "returnStatement", "spreadElement", "jsxPath", "closingElement", "jsxAttribute", "jsxIdentifier", "jsxExpressionContainer", "err", "message", "console", "warn", "stack", "info", "sheetObject", "sheetOuter", "declarations", "init", "arguments", "generator", "parent", "code", "filter", "x", "startsWith", "find", "DEBUG", "noTheme", "val"]
6
+ }
package/dist/cjs/index.js CHANGED
@@ -25,6 +25,7 @@ __reExport(src_exports, require("./types"), module.exports);
25
25
  var import_createExtractor = require("./extractor/createExtractor"), import_literalToAst = require("./extractor/literalToAst");
26
26
  __reExport(src_exports, require("./constants"), module.exports);
27
27
  __reExport(src_exports, require("./extractor/extractToClassNames"), module.exports);
28
+ __reExport(src_exports, require("./extractor/extractToNative"), module.exports);
28
29
  __reExport(src_exports, require("./extractor/extractHelpers"), module.exports);
29
30
  __reExport(src_exports, require("./extractor/loadTamagui"), module.exports);
30
31
  __reExport(src_exports, require("./extractor/watchTamaguiConfig"), module.exports);
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/index.ts"],
4
- "mappings": ";;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAO;AACP,wBAAc,wBADd;AAEA,wBAAc,wBAFd;AAGA,wBAAc,oBAHd;AAIA,6BAAgC,wCAChC,sBAA6B;AAC7B,wBAAc,wBANd;AAOA,wBAAc,4CAPd;AAQA,wBAAc,uCARd;AASA,wBAAc,oCATd;AAUA,wBAAc,2CAVd;AAWA,wBAAc,qCAXd;AAYA,wBAAc,8BAZd;AAaA,wBAAc,+BAbd;",
4
+ "mappings": ";;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAO;AACP,wBAAc,wBADd;AAEA,wBAAc,wBAFd;AAGA,wBAAc,oBAHd;AAIA,6BAAgC,wCAChC,sBAA6B;AAC7B,wBAAc,wBANd;AAOA,wBAAc,4CAPd;AAQA,wBAAc,wCARd;AASA,wBAAc,uCATd;AAUA,wBAAc,oCAVd;AAWA,wBAAc,2CAXd;AAYA,wBAAc,qCAZd;AAaA,wBAAc,8BAbd;AAcA,wBAAc,+BAdd;",
5
5
  "names": []
6
6
  }
@@ -26,6 +26,7 @@ __reExport(src_exports, require("./types"), module.exports);
26
26
  var import_createExtractor = require("./extractor/createExtractor"), import_literalToAst = require("./extractor/literalToAst");
27
27
  __reExport(src_exports, require("./constants"), module.exports);
28
28
  __reExport(src_exports, require("./extractor/extractToClassNames"), module.exports);
29
+ __reExport(src_exports, require("./extractor/extractToNative"), module.exports);
29
30
  __reExport(src_exports, require("./extractor/extractHelpers"), module.exports);
30
31
  __reExport(src_exports, require("./extractor/loadTamagui"), module.exports);
31
32
  __reExport(src_exports, require("./extractor/watchTamaguiConfig"), module.exports);
@@ -41,6 +42,7 @@ __reExport(src_exports, require("./getPragmaOptions"), module.exports);
41
42
  ...require("./types"),
42
43
  ...require("./constants"),
43
44
  ...require("./extractor/extractToClassNames"),
45
+ ...require("./extractor/extractToNative"),
44
46
  ...require("./extractor/extractHelpers"),
45
47
  ...require("./extractor/loadTamagui"),
46
48
  ...require("./extractor/watchTamaguiConfig"),
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/Users/n8/tamagui/packages/static/src/index.ts"],
4
- "mappings": ";;;;;;;;;;;;;;;AAAA;;;;;;mBAAO;AACP,wBAAc,wBADd;AAEA,wBAAc,wBAFd;AAGA,wBAAc,oBAHd;AAIA,6BAAgC,wCAChC,sBAA6B;AAC7B,wBAAc,wBANd;AAOA,wBAAc,4CAPd;AAQA,wBAAc,uCARd;AASA,wBAAc,oCATd;AAUA,wBAAc,2CAVd;AAWA,wBAAc,qCAXd;AAYA,wBAAc,8BAZd;AAaA,wBAAc,+BAbd;",
4
+ "mappings": ";;;;;;;;;;;;;;;AAAA;;;;;;mBAAO;AACP,wBAAc,wBADd;AAEA,wBAAc,wBAFd;AAGA,wBAAc,oBAHd;AAIA,6BAAgC,wCAChC,sBAA6B;AAC7B,wBAAc,wBANd;AAOA,wBAAc,4CAPd;AAQA,wBAAc,wCARd;AASA,wBAAc,uCATd;AAUA,wBAAc,oCAVd;AAWA,wBAAc,2CAXd;AAYA,wBAAc,qCAZd;AAaA,wBAAc,8BAbd;AAcA,wBAAc,+BAdd;",
5
5
  "names": []
6
6
  }