tailwind-styled-v4 5.0.17 → 5.0.20

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 (82) hide show
  1. package/dist/{analyzeWorkspace-CopJNGmi.d.ts → analyzeWorkspace-B1_XRfdl.d.ts} +1 -0
  2. package/dist/{analyzeWorkspace-DpVPccjz.d.mts → analyzeWorkspace-hYfu4Hg3.d.mts} +1 -0
  3. package/dist/analyzer.d.mts +2 -2
  4. package/dist/analyzer.d.ts +2 -2
  5. package/dist/analyzer.js +5 -4
  6. package/dist/analyzer.js.map +1 -1
  7. package/dist/analyzer.mjs +5 -4
  8. package/dist/analyzer.mjs.map +1 -1
  9. package/dist/animate.js +3 -3
  10. package/dist/animate.js.map +1 -1
  11. package/dist/animate.mjs +3 -3
  12. package/dist/animate.mjs.map +1 -1
  13. package/dist/atomic.js +52 -16
  14. package/dist/atomic.js.map +1 -1
  15. package/dist/atomic.mjs +52 -16
  16. package/dist/atomic.mjs.map +1 -1
  17. package/dist/cli.js +57 -20
  18. package/dist/cli.js.map +1 -1
  19. package/dist/cli.mjs +57 -20
  20. package/dist/cli.mjs.map +1 -1
  21. package/dist/compiler.d.mts +177 -2
  22. package/dist/compiler.d.ts +177 -2
  23. package/dist/compiler.js +186 -24
  24. package/dist/compiler.js.map +1 -1
  25. package/dist/compiler.mjs +173 -25
  26. package/dist/compiler.mjs.map +1 -1
  27. package/dist/engine.d.mts +3 -3
  28. package/dist/engine.d.ts +3 -3
  29. package/dist/engine.js +191 -27
  30. package/dist/engine.js.map +1 -1
  31. package/dist/engine.mjs +191 -27
  32. package/dist/engine.mjs.map +1 -1
  33. package/dist/{index-DJv28Uzq.d.mts → index-DQI6O24n.d.mts} +1 -1
  34. package/dist/{index-BDQw13kn.d.ts → index-UkYbyBkR.d.ts} +1 -1
  35. package/dist/index.browser.mjs +5 -66
  36. package/dist/index.browser.mjs.map +1 -1
  37. package/dist/index.d.mts +2 -2
  38. package/dist/index.d.ts +2 -2
  39. package/dist/index.js +241 -118
  40. package/dist/index.js.map +1 -1
  41. package/dist/index.mjs +241 -118
  42. package/dist/index.mjs.map +1 -1
  43. package/dist/next.js +202 -24
  44. package/dist/next.js.map +1 -1
  45. package/dist/next.mjs +202 -24
  46. package/dist/next.mjs.map +1 -1
  47. package/dist/plugin.d.mts +3 -3
  48. package/dist/plugin.d.ts +3 -3
  49. package/dist/plugin.js.map +1 -1
  50. package/dist/plugin.mjs.map +1 -1
  51. package/dist/shared.d.mts +2 -3
  52. package/dist/shared.d.ts +2 -3
  53. package/dist/shared.js +186 -23
  54. package/dist/shared.js.map +1 -1
  55. package/dist/shared.mjs +186 -23
  56. package/dist/shared.mjs.map +1 -1
  57. package/dist/svelte.js +24 -42
  58. package/dist/svelte.js.map +1 -1
  59. package/dist/svelte.mjs +24 -42
  60. package/dist/svelte.mjs.map +1 -1
  61. package/dist/turbopackLoader.js +186 -23
  62. package/dist/turbopackLoader.js.map +1 -1
  63. package/dist/turbopackLoader.mjs +186 -23
  64. package/dist/turbopackLoader.mjs.map +1 -1
  65. package/dist/tw.js +57 -20
  66. package/dist/tw.js.map +1 -1
  67. package/dist/tw.mjs +57 -20
  68. package/dist/tw.mjs.map +1 -1
  69. package/dist/vite.js +324 -160
  70. package/dist/vite.js.map +1 -1
  71. package/dist/vite.mjs +324 -160
  72. package/dist/vite.mjs.map +1 -1
  73. package/dist/vue.js +24 -42
  74. package/dist/vue.js.map +1 -1
  75. package/dist/vue.mjs +24 -42
  76. package/dist/vue.mjs.map +1 -1
  77. package/dist/webpackLoader.js +52 -16
  78. package/dist/webpackLoader.js.map +1 -1
  79. package/dist/webpackLoader.mjs +52 -16
  80. package/dist/webpackLoader.mjs.map +1 -1
  81. package/native/tailwind-styled-native.node +0 -0
  82. package/package.json +1 -4
package/dist/compiler.js CHANGED
@@ -75,15 +75,27 @@ function resolveNativeBinary(runtimeDir) {
75
75
  }
76
76
  tried.push(`env:${envPath} (not found)`);
77
77
  }
78
+ const prebuiltPkgs = PLATFORM_MAP[platform] ?? [];
79
+ for (const pkg of prebuiltPkgs) {
80
+ try {
81
+ const candidate = _require.resolve(`${pkg}/tailwind_styled_parser.node`);
82
+ if (fs__namespace.existsSync(candidate)) {
83
+ return { path: candidate, source: "prebuilt", platform, tried };
84
+ }
85
+ tried.push(`prebuilt:${pkg} (resolved but missing)`);
86
+ } catch {
87
+ tried.push(`prebuilt:${pkg} (not installed)`);
88
+ }
89
+ }
78
90
  const napiPlatform = platform === "linux-x64" ? "linux-x64-gnu" : platform === "linux-arm64" ? "linux-arm64-gnu" : platform;
79
- const BINARY_NAMES_SELF = ["tailwind-styled-native", "tailwind_styled_parser", "index"];
91
+ const BINARY_NAMES_SELF = ["tailwind-styled-native", "tailwind_styled_parser"];
80
92
  if (runtimeDir) {
81
93
  for (const depth of ["..", path__namespace.join("..", ".."), path__namespace.join("..", "..", "..")]) {
82
94
  const pkgRoot = path__namespace.resolve(runtimeDir, depth);
83
95
  for (const bin of BINARY_NAMES_SELF) {
84
96
  for (const suffix of ["", `.${platform}`, `.${napiPlatform}`]) {
85
97
  const candidate = path__namespace.resolve(pkgRoot, "native", `${bin}${suffix}.node`);
86
- tried.push(`native:${candidate}`);
98
+ tried.push(`self-bundled:${candidate}`);
87
99
  if (fs__namespace.existsSync(candidate)) {
88
100
  return { path: candidate, source: "prebuilt", platform, tried };
89
101
  }
@@ -91,18 +103,6 @@ function resolveNativeBinary(runtimeDir) {
91
103
  }
92
104
  }
93
105
  }
94
- const prebuiltPkgs = PLATFORM_MAP[platform] ?? [];
95
- for (const pkg of prebuiltPkgs) {
96
- try {
97
- const candidate = _require.resolve(`${pkg}/tailwind_styled_parser.node`);
98
- if (fs__namespace.existsSync(candidate)) {
99
- return { path: candidate, source: "prebuilt", platform, tried };
100
- }
101
- tried.push(`prebuilt:${pkg} (resolved but missing)`);
102
- } catch {
103
- tried.push(`prebuilt:${pkg} (not installed)`);
104
- }
105
- }
106
106
  const cwd = process.cwd();
107
107
  const base = runtimeDir ?? cwd;
108
108
  const BINARY_NAMES = ["tailwind-styled-native", "tailwind_styled_parser"];
@@ -202,8 +202,44 @@ var init_nativeBridge = __esm({
202
202
  try {
203
203
  const binding = _loadNative(result.path);
204
204
  if (isValidNativeBridge(binding)) {
205
- nativeBridge = binding;
206
- log("Native bridge loaded successfully from:", result.path);
205
+ const toCamelCase = (str) => {
206
+ return str.replace(/_([a-z0-9])/g, (_, g) => g.toUpperCase());
207
+ };
208
+ nativeBridge = new Proxy(binding, {
209
+ get(target, prop) {
210
+ if (typeof prop === "string") {
211
+ if (prop in target) {
212
+ return target[prop];
213
+ }
214
+ const camelKey = toCamelCase(prop);
215
+ if (camelKey in target) {
216
+ const val = target[camelKey];
217
+ if (typeof val === "function") {
218
+ return val.bind(target);
219
+ }
220
+ return val;
221
+ }
222
+ const napiKey = `${camelKey}Napi`;
223
+ if (napiKey in target) {
224
+ const val = target[napiKey];
225
+ if (typeof val === "function") {
226
+ return val.bind(target);
227
+ }
228
+ return val;
229
+ }
230
+ const napiInnerKey = `${camelKey}NapiInner`;
231
+ if (napiInnerKey in target) {
232
+ const val = target[napiInnerKey];
233
+ if (typeof val === "function") {
234
+ return val.bind(target);
235
+ }
236
+ return val;
237
+ }
238
+ }
239
+ return target[prop];
240
+ }
241
+ });
242
+ log("Native bridge loaded successfully and proxy-wrapped from:", result.path);
207
243
  return nativeBridge;
208
244
  }
209
245
  } catch (e) {
@@ -257,8 +293,8 @@ async function generateCssNative(classes, options) {
257
293
  return css;
258
294
  }
259
295
  function getCacheStats() {
296
+ const native = exports.getNativeBridge();
260
297
  try {
261
- const native = exports.getNativeBridge();
262
298
  if (!native?.getCacheStats) {
263
299
  return null;
264
300
  }
@@ -269,8 +305,8 @@ function getCacheStats() {
269
305
  }
270
306
  }
271
307
  function clearThemeCache() {
308
+ const native = exports.getNativeBridge();
272
309
  try {
273
- const native = exports.getNativeBridge();
274
310
  if (!native?.clearThemeCache) {
275
311
  return;
276
312
  }
@@ -278,6 +314,16 @@ function clearThemeCache() {
278
314
  } catch {
279
315
  }
280
316
  }
317
+ function resetCacheStats() {
318
+ const native = exports.getNativeBridge();
319
+ try {
320
+ if (!native?.resetCacheStats) {
321
+ return;
322
+ }
323
+ native.resetCacheStats();
324
+ } catch {
325
+ }
326
+ }
281
327
  var init_cssGeneratorNative = __esm({
282
328
  "packages/domain/compiler/src/compiler/cssGeneratorNative.ts"() {
283
329
  init_nativeBridge();
@@ -403,6 +449,16 @@ function minifyCss(css) {
403
449
  if (!native?.minify_css) throw new Error("minify_css not available");
404
450
  return native.minify_css(css);
405
451
  }
452
+ function generateCss(ruleJson, minify) {
453
+ const native = exports.getNativeBridge();
454
+ if (!native?.generate_css) throw new Error("generate_css not available");
455
+ return native.generate_css(ruleJson, minify);
456
+ }
457
+ function generateCssBatch(rulesJson, minify) {
458
+ const native = exports.getNativeBridge();
459
+ if (!native?.generate_css_batch) throw new Error("generate_css_batch not available");
460
+ return native.generate_css_batch(rulesJson, minify);
461
+ }
406
462
  function compileAnimation(animationName, from, to) {
407
463
  const native = exports.getNativeBridge();
408
464
  if (!native?.compile_animation) throw new Error("compile_animation not available");
@@ -840,7 +896,7 @@ function postProcessWithLightning(rawCss) {
840
896
  }
841
897
  return result.css;
842
898
  }
843
- async function runCssPipeline(classes, cssEntryContent, root, minify = true) {
899
+ async function runCssPipeline(classes, cssEntryContent, root, minify = true, minifier = "lightning") {
844
900
  const filtered = classes.filter(Boolean);
845
901
  const uniqueMap = /* @__PURE__ */ new Map();
846
902
  filtered.forEach((cls) => uniqueMap.set(cls, cls));
@@ -848,7 +904,7 @@ async function runCssPipeline(classes, cssEntryContent, root, minify = true) {
848
904
  if (unique.length === 0) {
849
905
  return { css: "", classes: [], sizeBytes: 0, optimized: false };
850
906
  }
851
- const cacheKey = _getCacheKey(unique, minify, cssEntryContent, root);
907
+ const cacheKey = _getCacheKey(unique, minify, cssEntryContent, root) + `|${minifier}`;
852
908
  const cached = _cssCache.get(cacheKey);
853
909
  if (cached) {
854
910
  _cacheHits++;
@@ -865,7 +921,14 @@ async function runCssPipeline(classes, cssEntryContent, root, minify = true) {
865
921
  const theme = getThemeConfig();
866
922
  rawCss = await generateCssNative(unique, { theme });
867
923
  usedRustCompiler = true;
868
- const finalCss = minify ? postProcessWithLightning(rawCss) : rawCss;
924
+ let finalCss = rawCss;
925
+ if (minify) {
926
+ if (minifier === "fast") {
927
+ finalCss = minifyCss(rawCss);
928
+ } else {
929
+ finalCss = postProcessWithLightning(rawCss);
930
+ }
931
+ }
869
932
  if (process.env.DEBUG?.includes("compiler")) {
870
933
  console.log(
871
934
  `[Compiler] Generated CSS from ${unique.length} classes (${usedRustCompiler ? "Rust" : "JavaScript"})`,
@@ -901,6 +964,7 @@ var init_tailwindEngine = __esm({
901
964
  "packages/domain/compiler/src/compiler/tailwindEngine.ts"() {
902
965
  init_nativeBridge();
903
966
  init_cssGeneratorNative();
967
+ init_cssCompilationNative();
904
968
  module$1.createRequire((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('compiler.js', document.baseURI).href)));
905
969
  _cssCache = /* @__PURE__ */ new Map();
906
970
  _cacheHits = 0;
@@ -934,9 +998,10 @@ __export(parser_exports, {
934
998
  mergeClassesStatic: () => exports.mergeClassesStatic,
935
999
  normalizeAndDedupClasses: () => exports.normalizeAndDedupClasses,
936
1000
  normalizeClasses: () => exports.normalizeClasses,
1001
+ parseClass: () => exports.parseClass,
937
1002
  parseClasses: () => exports.parseClasses
938
1003
  });
939
- exports.parseClasses = void 0; exports.extractAllClasses = void 0; exports.extractClassesFromSource = void 0; exports.astExtractClasses = void 0; exports.normalizeClasses = void 0; exports.mergeClassesStatic = void 0; exports.normalizeAndDedupClasses = void 0; exports.extractComponentUsage = void 0; exports.batchExtractClasses = void 0; exports.checkAgainstSafelist = void 0; exports.diffClassLists = void 0;
1004
+ exports.parseClasses = void 0; exports.parseClass = void 0; exports.extractAllClasses = void 0; exports.extractClassesFromSource = void 0; exports.astExtractClasses = void 0; exports.normalizeClasses = void 0; exports.mergeClassesStatic = void 0; exports.normalizeAndDedupClasses = void 0; exports.extractComponentUsage = void 0; exports.batchExtractClasses = void 0; exports.checkAgainstSafelist = void 0; exports.diffClassLists = void 0;
940
1005
  var init_parser = __esm({
941
1006
  "packages/domain/compiler/src/parser/index.ts"() {
942
1007
  init_nativeBridge();
@@ -947,6 +1012,14 @@ var init_parser = __esm({
947
1012
  }
948
1013
  return native.parseClasses(raw) || [];
949
1014
  };
1015
+ exports.parseClass = (input) => {
1016
+ const native = exports.getNativeBridge();
1017
+ if (!native?.parseClass) {
1018
+ throw new Error("FATAL: Native binding 'parseClass' is required but not available.");
1019
+ }
1020
+ const result = native.parseClass(input);
1021
+ return typeof result === "string" ? JSON.parse(result) : result;
1022
+ };
950
1023
  exports.extractAllClasses = (source) => {
951
1024
  const native = exports.getNativeBridge();
952
1025
  if (!native?.extractAllClasses) {
@@ -1078,6 +1151,35 @@ function mergeCssDeclarationsNative(cssChunks) {
1078
1151
  if (!native?.mergeCssDeclarations) throw new Error("mergeCssDeclarations not available");
1079
1152
  return native.mergeCssDeclarations(cssChunks);
1080
1153
  }
1154
+ function getWeek6FeaturesStatus() {
1155
+ const native = exports.getNativeBridge();
1156
+ if (!native?.getWeek6FeaturesStatus) throw new Error("getWeek6FeaturesStatus not available");
1157
+ const resultJson = native.getWeek6FeaturesStatus();
1158
+ return JSON.parse(resultJson);
1159
+ }
1160
+ function getMemoryStatsNative() {
1161
+ const native = exports.getNativeBridge();
1162
+ if (!native?.getMemoryStatsNative) throw new Error("getMemoryStatsNative not available");
1163
+ const resultJson = native.getMemoryStatsNative();
1164
+ return JSON.parse(resultJson);
1165
+ }
1166
+ function getMemoryRecommendationsNative() {
1167
+ const native = exports.getNativeBridge();
1168
+ if (!native?.getMemoryRecommendationsNative) throw new Error("getMemoryRecommendationsNative not available");
1169
+ const resultJson = native.getMemoryRecommendationsNative();
1170
+ return JSON.parse(resultJson);
1171
+ }
1172
+ function estimateOptimalCacheConfigNative(workloadType, expectedEntries) {
1173
+ const native = exports.getNativeBridge();
1174
+ if (!native?.estimateOptimalCacheConfigNative) throw new Error("estimateOptimalCacheConfigNative not available");
1175
+ const resultJson = native.estimateOptimalCacheConfigNative(workloadType, expectedEntries);
1176
+ return JSON.parse(resultJson);
1177
+ }
1178
+ function resetMemoryStats() {
1179
+ const native = exports.getNativeBridge();
1180
+ if (!native?.resetMemoryStats) throw new Error("resetMemoryStats not available");
1181
+ native.resetMemoryStats();
1182
+ }
1081
1183
  var init_analyzerNative = __esm({
1082
1184
  "packages/domain/compiler/src/analyzer/analyzerNative.ts"() {
1083
1185
  init_nativeBridge();
@@ -1367,6 +1469,52 @@ function cachePriority(mtimeMs, sizeBytes, hitCount) {
1367
1469
  if (!native?.cache_priority) throw new Error("cache_priority not available");
1368
1470
  return native.cache_priority(mtimeMs, sizeBytes, hitCount);
1369
1471
  }
1472
+ function getResolverPoolStats() {
1473
+ const native = exports.getNativeBridge();
1474
+ if (!native?.getResolverPoolStats) throw new Error("getResolverPoolStats not available");
1475
+ const statsJson = native.getResolverPoolStats();
1476
+ try {
1477
+ return JSON.parse(statsJson);
1478
+ } catch {
1479
+ return {
1480
+ hits: 0,
1481
+ misses: 0,
1482
+ total: 0,
1483
+ hit_rate: 0,
1484
+ cached_resolvers: 0
1485
+ };
1486
+ }
1487
+ }
1488
+ function clearResolverPool() {
1489
+ const native = exports.getNativeBridge();
1490
+ if (!native?.clearResolverPool) throw new Error("clearResolverPool not available");
1491
+ const resultJson = native.clearResolverPool();
1492
+ try {
1493
+ return JSON.parse(resultJson);
1494
+ } catch {
1495
+ return { status: "error" };
1496
+ }
1497
+ }
1498
+ function resolveColorCached(themeId, color, configJson) {
1499
+ const native = exports.getNativeBridge();
1500
+ if (!native?.resolveColorCached) throw new Error("resolveColorCached not available");
1501
+ return native.resolveColorCached(themeId, color, configJson);
1502
+ }
1503
+ function resolveSpacingCached(themeId, spacing, configJson) {
1504
+ const native = exports.getNativeBridge();
1505
+ if (!native?.resolveSpacingCached) throw new Error("resolveSpacingCached not available");
1506
+ return native.resolveSpacingCached(themeId, spacing, configJson);
1507
+ }
1508
+ function resolveFontSizeCached(themeId, size, configJson) {
1509
+ const native = exports.getNativeBridge();
1510
+ if (!native?.resolveFontSizeCached) throw new Error("resolveFontSizeCached not available");
1511
+ return native.resolveFontSizeCached(themeId, size, configJson);
1512
+ }
1513
+ function resetResolverPoolStats() {
1514
+ const native = exports.getNativeBridge();
1515
+ if (!native?.resetResolverPoolStats) throw new Error("resetResolverPoolStats not available");
1516
+ native.resetResolverPoolStats();
1517
+ }
1370
1518
  var init_cacheNative = __esm({
1371
1519
  "packages/domain/compiler/src/cache/cacheNative.ts"() {
1372
1520
  init_nativeBridge();
@@ -2015,9 +2163,9 @@ var init_src2 = __esm({
2015
2163
  if (normalized.includes("/layout.") || normalized.includes("/loading.") || normalized.includes("/error.")) {
2016
2164
  return "__global";
2017
2165
  }
2018
- const pageMatch = normalized.match(/\/app\/(.+?)\/page\.[tj]sx?$/);
2166
+ const pageMatch = normalized.match(/(?:^|\/)app\/(.+?)\/page\.[tj]sx?$/);
2019
2167
  if (pageMatch) return `/${pageMatch[1]}`;
2020
- const rootPage = normalized.match(/\/app\/page\.[tj]sx?$/);
2168
+ const rootPage = normalized.match(/(?:^|\/)app\/page\.[tj]sx?$/);
2021
2169
  if (rootPage) return "/";
2022
2170
  return null;
2023
2171
  };
@@ -2170,6 +2318,7 @@ exports.clearCompileCache = clearCompileCache;
2170
2318
  exports.clearCssGenCache = clearCssGenCache;
2171
2319
  exports.clearParseCache = clearParseCache;
2172
2320
  exports.clearResolveCache = clearResolveCache;
2321
+ exports.clearResolverPool = clearResolverPool;
2173
2322
  exports.clearThemeCache = clearThemeCache;
2174
2323
  exports.collectFiles = collectFiles;
2175
2324
  exports.compileAnimation = compileAnimation;
@@ -2188,12 +2337,15 @@ exports.detectDeadCode = detectDeadCode;
2188
2337
  exports.eliminateDeadCssNative = eliminateDeadCssNative;
2189
2338
  exports.emitPluginHook = emitPluginHook;
2190
2339
  exports.estimateOptimalCacheConfig = estimateOptimalCacheConfig;
2340
+ exports.estimateOptimalCacheConfigNative = estimateOptimalCacheConfigNative;
2191
2341
  exports.extractAndGenerateStateCssNative = extractAndGenerateStateCssNative;
2192
2342
  exports.extractClassesFromSourceNative = extractClassesFromSourceNative;
2193
2343
  exports.extractContainerCssFromSource = extractContainerCssFromSource;
2194
2344
  exports.extractTwContainerConfigs = extractTwContainerConfigs;
2195
2345
  exports.extractTwStateConfigsNative = extractTwStateConfigsNative;
2196
2346
  exports.generateAtomicCss = generateAtomicCss;
2347
+ exports.generateCss = generateCss;
2348
+ exports.generateCssBatch = generateCssBatch;
2197
2349
  exports.generateCssNative = generateCssNative;
2198
2350
  exports.generateStaticStateCssNative = generateStaticStateCssNative;
2199
2351
  exports.generateSubComponentTypes = generateSubComponentTypes;
@@ -2202,8 +2354,12 @@ exports.getCacheStatistics = getCacheStatistics;
2202
2354
  exports.getCacheStats = getCacheStats;
2203
2355
  exports.getCompilationMetrics = getCompilationMetrics;
2204
2356
  exports.getCompilerDiagnostics = getCompilerDiagnostics;
2357
+ exports.getMemoryRecommendationsNative = getMemoryRecommendationsNative;
2358
+ exports.getMemoryStatsNative = getMemoryStatsNative;
2205
2359
  exports.getPluginHooks = getPluginHooks;
2360
+ exports.getResolverPoolStats = getResolverPoolStats;
2206
2361
  exports.getWatchStats = getWatchStats;
2362
+ exports.getWeek6FeaturesStatus = getWeek6FeaturesStatus;
2207
2363
  exports.hashContent = hashContent;
2208
2364
  exports.hoistComponentsNative = hoistComponentsNative;
2209
2365
  exports.idRegistryActiveCount = idRegistryActiveCount;
@@ -2270,11 +2426,17 @@ exports.redisSubscribe = redisSubscribe;
2270
2426
  exports.registerPluginHook = registerPluginHook;
2271
2427
  exports.registerPropertyName = registerPropertyName;
2272
2428
  exports.registerValueName = registerValueName;
2429
+ exports.resetCacheStats = resetCacheStats;
2273
2430
  exports.resetCompilationMetrics = resetCompilationMetrics;
2431
+ exports.resetMemoryStats = resetMemoryStats;
2432
+ exports.resetResolverPoolStats = resetResolverPoolStats;
2274
2433
  exports.resolveCascade = resolveCascade;
2275
2434
  exports.resolveClassNames = resolveClassNames;
2435
+ exports.resolveColorCached = resolveColorCached;
2276
2436
  exports.resolveConflictGroup = resolveConflictGroup;
2437
+ exports.resolveFontSizeCached = resolveFontSizeCached;
2277
2438
  exports.resolveSimpleVariants = resolveSimpleVariants;
2439
+ exports.resolveSpacingCached = resolveSpacingCached;
2278
2440
  exports.resolveThemeValue = resolveThemeValue;
2279
2441
  exports.resolveVariants = resolveVariants;
2280
2442
  exports.reverseLookupProperty = reverseLookupProperty;