tailwind-styled-v4 5.0.18 → 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.
- package/dist/{analyzeWorkspace-CopJNGmi.d.ts → analyzeWorkspace-B1_XRfdl.d.ts} +1 -0
- package/dist/{analyzeWorkspace-DpVPccjz.d.mts → analyzeWorkspace-hYfu4Hg3.d.mts} +1 -0
- package/dist/analyzer.d.mts +2 -2
- package/dist/analyzer.d.ts +2 -2
- package/dist/analyzer.js +5 -4
- package/dist/analyzer.js.map +1 -1
- package/dist/analyzer.mjs +5 -4
- package/dist/analyzer.mjs.map +1 -1
- package/dist/animate.js +3 -3
- package/dist/animate.js.map +1 -1
- package/dist/animate.mjs +3 -3
- package/dist/animate.mjs.map +1 -1
- package/dist/atomic.js +38 -2
- package/dist/atomic.js.map +1 -1
- package/dist/atomic.mjs +38 -2
- package/dist/atomic.mjs.map +1 -1
- package/dist/cli.js +43 -6
- package/dist/cli.js.map +1 -1
- package/dist/cli.mjs +43 -6
- package/dist/cli.mjs.map +1 -1
- package/dist/compiler.d.mts +177 -2
- package/dist/compiler.d.ts +177 -2
- package/dist/compiler.js +172 -10
- package/dist/compiler.js.map +1 -1
- package/dist/compiler.mjs +159 -11
- package/dist/compiler.mjs.map +1 -1
- package/dist/engine.d.mts +3 -3
- package/dist/engine.d.ts +3 -3
- package/dist/engine.js +177 -13
- package/dist/engine.js.map +1 -1
- package/dist/engine.mjs +177 -13
- package/dist/engine.mjs.map +1 -1
- package/dist/{index-DJv28Uzq.d.mts → index-DQI6O24n.d.mts} +1 -1
- package/dist/{index-BDQw13kn.d.ts → index-UkYbyBkR.d.ts} +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +177 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +177 -13
- package/dist/index.mjs.map +1 -1
- package/dist/next.js +188 -10
- package/dist/next.js.map +1 -1
- package/dist/next.mjs +188 -10
- package/dist/next.mjs.map +1 -1
- package/dist/shared.js +172 -9
- package/dist/shared.js.map +1 -1
- package/dist/shared.mjs +172 -9
- package/dist/shared.mjs.map +1 -1
- package/dist/turbopackLoader.js +172 -9
- package/dist/turbopackLoader.js.map +1 -1
- package/dist/turbopackLoader.mjs +172 -9
- package/dist/turbopackLoader.mjs.map +1 -1
- package/dist/tw.js +43 -6
- package/dist/tw.js.map +1 -1
- package/dist/tw.mjs +43 -6
- package/dist/tw.mjs.map +1 -1
- package/dist/vite.js +310 -146
- package/dist/vite.js.map +1 -1
- package/dist/vite.mjs +310 -146
- package/dist/vite.mjs.map +1 -1
- package/dist/webpackLoader.js +38 -2
- package/dist/webpackLoader.js.map +1 -1
- package/dist/webpackLoader.mjs +38 -2
- package/dist/webpackLoader.mjs.map +1 -1
- package/native/tailwind-styled-native.node +0 -0
- package/package.json +1 -1
package/dist/shared.js
CHANGED
|
@@ -1043,8 +1043,44 @@ var init_nativeBridge = __esm({
|
|
|
1043
1043
|
try {
|
|
1044
1044
|
const binding = _loadNative(result.path);
|
|
1045
1045
|
if (isValidNativeBridge(binding)) {
|
|
1046
|
-
|
|
1047
|
-
|
|
1046
|
+
const toCamelCase = (str) => {
|
|
1047
|
+
return str.replace(/_([a-z0-9])/g, (_, g) => g.toUpperCase());
|
|
1048
|
+
};
|
|
1049
|
+
nativeBridge = new Proxy(binding, {
|
|
1050
|
+
get(target, prop) {
|
|
1051
|
+
if (typeof prop === "string") {
|
|
1052
|
+
if (prop in target) {
|
|
1053
|
+
return target[prop];
|
|
1054
|
+
}
|
|
1055
|
+
const camelKey = toCamelCase(prop);
|
|
1056
|
+
if (camelKey in target) {
|
|
1057
|
+
const val = target[camelKey];
|
|
1058
|
+
if (typeof val === "function") {
|
|
1059
|
+
return val.bind(target);
|
|
1060
|
+
}
|
|
1061
|
+
return val;
|
|
1062
|
+
}
|
|
1063
|
+
const napiKey = `${camelKey}Napi`;
|
|
1064
|
+
if (napiKey in target) {
|
|
1065
|
+
const val = target[napiKey];
|
|
1066
|
+
if (typeof val === "function") {
|
|
1067
|
+
return val.bind(target);
|
|
1068
|
+
}
|
|
1069
|
+
return val;
|
|
1070
|
+
}
|
|
1071
|
+
const napiInnerKey = `${camelKey}NapiInner`;
|
|
1072
|
+
if (napiInnerKey in target) {
|
|
1073
|
+
const val = target[napiInnerKey];
|
|
1074
|
+
if (typeof val === "function") {
|
|
1075
|
+
return val.bind(target);
|
|
1076
|
+
}
|
|
1077
|
+
return val;
|
|
1078
|
+
}
|
|
1079
|
+
}
|
|
1080
|
+
return target[prop];
|
|
1081
|
+
}
|
|
1082
|
+
});
|
|
1083
|
+
log("Native bridge loaded successfully and proxy-wrapped from:", result.path);
|
|
1048
1084
|
return nativeBridge;
|
|
1049
1085
|
}
|
|
1050
1086
|
} catch (e) {
|
|
@@ -1092,8 +1128,8 @@ async function generateCssNative(classes, options) {
|
|
|
1092
1128
|
return css;
|
|
1093
1129
|
}
|
|
1094
1130
|
function clearThemeCache() {
|
|
1131
|
+
const native = getNativeBridge();
|
|
1095
1132
|
try {
|
|
1096
|
-
const native = getNativeBridge();
|
|
1097
1133
|
if (!native?.clearThemeCache) {
|
|
1098
1134
|
return;
|
|
1099
1135
|
}
|
|
@@ -1101,6 +1137,16 @@ function clearThemeCache() {
|
|
|
1101
1137
|
} catch {
|
|
1102
1138
|
}
|
|
1103
1139
|
}
|
|
1140
|
+
function resetCacheStats() {
|
|
1141
|
+
const native = getNativeBridge();
|
|
1142
|
+
try {
|
|
1143
|
+
if (!native?.resetCacheStats) {
|
|
1144
|
+
return;
|
|
1145
|
+
}
|
|
1146
|
+
native.resetCacheStats();
|
|
1147
|
+
} catch {
|
|
1148
|
+
}
|
|
1149
|
+
}
|
|
1104
1150
|
var init_cssGeneratorNative = __esm({
|
|
1105
1151
|
"packages/domain/compiler/src/compiler/cssGeneratorNative.ts"() {
|
|
1106
1152
|
init_nativeBridge();
|
|
@@ -1226,6 +1272,16 @@ function minifyCss(css) {
|
|
|
1226
1272
|
if (!native?.minify_css) throw new Error("minify_css not available");
|
|
1227
1273
|
return native.minify_css(css);
|
|
1228
1274
|
}
|
|
1275
|
+
function generateCss(ruleJson, minify) {
|
|
1276
|
+
const native = getNativeBridge();
|
|
1277
|
+
if (!native?.generate_css) throw new Error("generate_css not available");
|
|
1278
|
+
return native.generate_css(ruleJson, minify);
|
|
1279
|
+
}
|
|
1280
|
+
function generateCssBatch(rulesJson, minify) {
|
|
1281
|
+
const native = getNativeBridge();
|
|
1282
|
+
if (!native?.generate_css_batch) throw new Error("generate_css_batch not available");
|
|
1283
|
+
return native.generate_css_batch(rulesJson, minify);
|
|
1284
|
+
}
|
|
1229
1285
|
function compileAnimation(animationName, from, to) {
|
|
1230
1286
|
const native = getNativeBridge();
|
|
1231
1287
|
if (!native?.compile_animation) throw new Error("compile_animation not available");
|
|
@@ -1663,7 +1719,7 @@ function postProcessWithLightning(rawCss) {
|
|
|
1663
1719
|
}
|
|
1664
1720
|
return result.css;
|
|
1665
1721
|
}
|
|
1666
|
-
async function runCssPipeline(classes, cssEntryContent, root, minify = true) {
|
|
1722
|
+
async function runCssPipeline(classes, cssEntryContent, root, minify = true, minifier = "lightning") {
|
|
1667
1723
|
const filtered = classes.filter(Boolean);
|
|
1668
1724
|
const uniqueMap = /* @__PURE__ */ new Map();
|
|
1669
1725
|
filtered.forEach((cls) => uniqueMap.set(cls, cls));
|
|
@@ -1671,7 +1727,7 @@ async function runCssPipeline(classes, cssEntryContent, root, minify = true) {
|
|
|
1671
1727
|
if (unique.length === 0) {
|
|
1672
1728
|
return { css: "", classes: [], sizeBytes: 0, optimized: false };
|
|
1673
1729
|
}
|
|
1674
|
-
const cacheKey = _getCacheKey(unique, minify, cssEntryContent, root)
|
|
1730
|
+
const cacheKey = _getCacheKey(unique, minify, cssEntryContent, root) + `|${minifier}`;
|
|
1675
1731
|
const cached = _cssCache.get(cacheKey);
|
|
1676
1732
|
if (cached) {
|
|
1677
1733
|
_cacheHits++;
|
|
@@ -1688,7 +1744,14 @@ async function runCssPipeline(classes, cssEntryContent, root, minify = true) {
|
|
|
1688
1744
|
const theme = getThemeConfig();
|
|
1689
1745
|
rawCss = await generateCssNative(unique, { theme });
|
|
1690
1746
|
usedRustCompiler = true;
|
|
1691
|
-
|
|
1747
|
+
let finalCss = rawCss;
|
|
1748
|
+
if (minify) {
|
|
1749
|
+
if (minifier === "fast") {
|
|
1750
|
+
finalCss = minifyCss(rawCss);
|
|
1751
|
+
} else {
|
|
1752
|
+
finalCss = postProcessWithLightning(rawCss);
|
|
1753
|
+
}
|
|
1754
|
+
}
|
|
1692
1755
|
if (process.env.DEBUG?.includes("compiler")) {
|
|
1693
1756
|
console.log(
|
|
1694
1757
|
`[Compiler] Generated CSS from ${unique.length} classes (${usedRustCompiler ? "Rust" : "JavaScript"})`,
|
|
@@ -1724,6 +1787,7 @@ var init_tailwindEngine = __esm({
|
|
|
1724
1787
|
"packages/domain/compiler/src/compiler/tailwindEngine.ts"() {
|
|
1725
1788
|
init_nativeBridge();
|
|
1726
1789
|
init_cssGeneratorNative();
|
|
1790
|
+
init_cssCompilationNative();
|
|
1727
1791
|
module$1.createRequire((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('shared.js', document.baseURI).href)));
|
|
1728
1792
|
_cssCache = /* @__PURE__ */ new Map();
|
|
1729
1793
|
_cacheHits = 0;
|
|
@@ -1756,9 +1820,10 @@ __export(parser_exports, {
|
|
|
1756
1820
|
mergeClassesStatic: () => mergeClassesStatic,
|
|
1757
1821
|
normalizeAndDedupClasses: () => normalizeAndDedupClasses,
|
|
1758
1822
|
normalizeClasses: () => normalizeClasses,
|
|
1823
|
+
parseClass: () => parseClass,
|
|
1759
1824
|
parseClasses: () => parseClasses
|
|
1760
1825
|
});
|
|
1761
|
-
var parseClasses, extractAllClasses, extractClassesFromSource, astExtractClasses, normalizeClasses, mergeClassesStatic, normalizeAndDedupClasses, extractComponentUsage, batchExtractClasses, checkAgainstSafelist, diffClassLists;
|
|
1826
|
+
var parseClasses, parseClass, extractAllClasses, extractClassesFromSource, astExtractClasses, normalizeClasses, mergeClassesStatic, normalizeAndDedupClasses, extractComponentUsage, batchExtractClasses, checkAgainstSafelist, diffClassLists;
|
|
1762
1827
|
var init_parser = __esm({
|
|
1763
1828
|
"packages/domain/compiler/src/parser/index.ts"() {
|
|
1764
1829
|
init_nativeBridge();
|
|
@@ -1769,6 +1834,14 @@ var init_parser = __esm({
|
|
|
1769
1834
|
}
|
|
1770
1835
|
return native.parseClasses(raw) || [];
|
|
1771
1836
|
};
|
|
1837
|
+
parseClass = (input) => {
|
|
1838
|
+
const native = getNativeBridge();
|
|
1839
|
+
if (!native?.parseClass) {
|
|
1840
|
+
throw new Error("FATAL: Native binding 'parseClass' is required but not available.");
|
|
1841
|
+
}
|
|
1842
|
+
const result = native.parseClass(input);
|
|
1843
|
+
return typeof result === "string" ? JSON.parse(result) : result;
|
|
1844
|
+
};
|
|
1772
1845
|
extractAllClasses = (source) => {
|
|
1773
1846
|
const native = getNativeBridge();
|
|
1774
1847
|
if (!native?.extractAllClasses) {
|
|
@@ -1900,6 +1973,35 @@ function mergeCssDeclarationsNative(cssChunks) {
|
|
|
1900
1973
|
if (!native?.mergeCssDeclarations) throw new Error("mergeCssDeclarations not available");
|
|
1901
1974
|
return native.mergeCssDeclarations(cssChunks);
|
|
1902
1975
|
}
|
|
1976
|
+
function getWeek6FeaturesStatus() {
|
|
1977
|
+
const native = getNativeBridge();
|
|
1978
|
+
if (!native?.getWeek6FeaturesStatus) throw new Error("getWeek6FeaturesStatus not available");
|
|
1979
|
+
const resultJson = native.getWeek6FeaturesStatus();
|
|
1980
|
+
return JSON.parse(resultJson);
|
|
1981
|
+
}
|
|
1982
|
+
function getMemoryStatsNative() {
|
|
1983
|
+
const native = getNativeBridge();
|
|
1984
|
+
if (!native?.getMemoryStatsNative) throw new Error("getMemoryStatsNative not available");
|
|
1985
|
+
const resultJson = native.getMemoryStatsNative();
|
|
1986
|
+
return JSON.parse(resultJson);
|
|
1987
|
+
}
|
|
1988
|
+
function getMemoryRecommendationsNative() {
|
|
1989
|
+
const native = getNativeBridge();
|
|
1990
|
+
if (!native?.getMemoryRecommendationsNative) throw new Error("getMemoryRecommendationsNative not available");
|
|
1991
|
+
const resultJson = native.getMemoryRecommendationsNative();
|
|
1992
|
+
return JSON.parse(resultJson);
|
|
1993
|
+
}
|
|
1994
|
+
function estimateOptimalCacheConfigNative(workloadType, expectedEntries) {
|
|
1995
|
+
const native = getNativeBridge();
|
|
1996
|
+
if (!native?.estimateOptimalCacheConfigNative) throw new Error("estimateOptimalCacheConfigNative not available");
|
|
1997
|
+
const resultJson = native.estimateOptimalCacheConfigNative(workloadType, expectedEntries);
|
|
1998
|
+
return JSON.parse(resultJson);
|
|
1999
|
+
}
|
|
2000
|
+
function resetMemoryStats() {
|
|
2001
|
+
const native = getNativeBridge();
|
|
2002
|
+
if (!native?.resetMemoryStats) throw new Error("resetMemoryStats not available");
|
|
2003
|
+
native.resetMemoryStats();
|
|
2004
|
+
}
|
|
1903
2005
|
var init_analyzerNative = __esm({
|
|
1904
2006
|
"packages/domain/compiler/src/analyzer/analyzerNative.ts"() {
|
|
1905
2007
|
init_nativeBridge();
|
|
@@ -2189,6 +2291,52 @@ function cachePriority(mtimeMs, sizeBytes, hitCount) {
|
|
|
2189
2291
|
if (!native?.cache_priority) throw new Error("cache_priority not available");
|
|
2190
2292
|
return native.cache_priority(mtimeMs, sizeBytes, hitCount);
|
|
2191
2293
|
}
|
|
2294
|
+
function getResolverPoolStats() {
|
|
2295
|
+
const native = getNativeBridge();
|
|
2296
|
+
if (!native?.getResolverPoolStats) throw new Error("getResolverPoolStats not available");
|
|
2297
|
+
const statsJson = native.getResolverPoolStats();
|
|
2298
|
+
try {
|
|
2299
|
+
return JSON.parse(statsJson);
|
|
2300
|
+
} catch {
|
|
2301
|
+
return {
|
|
2302
|
+
hits: 0,
|
|
2303
|
+
misses: 0,
|
|
2304
|
+
total: 0,
|
|
2305
|
+
hit_rate: 0,
|
|
2306
|
+
cached_resolvers: 0
|
|
2307
|
+
};
|
|
2308
|
+
}
|
|
2309
|
+
}
|
|
2310
|
+
function clearResolverPool() {
|
|
2311
|
+
const native = getNativeBridge();
|
|
2312
|
+
if (!native?.clearResolverPool) throw new Error("clearResolverPool not available");
|
|
2313
|
+
const resultJson = native.clearResolverPool();
|
|
2314
|
+
try {
|
|
2315
|
+
return JSON.parse(resultJson);
|
|
2316
|
+
} catch {
|
|
2317
|
+
return { status: "error" };
|
|
2318
|
+
}
|
|
2319
|
+
}
|
|
2320
|
+
function resolveColorCached(themeId, color, configJson) {
|
|
2321
|
+
const native = getNativeBridge();
|
|
2322
|
+
if (!native?.resolveColorCached) throw new Error("resolveColorCached not available");
|
|
2323
|
+
return native.resolveColorCached(themeId, color, configJson);
|
|
2324
|
+
}
|
|
2325
|
+
function resolveSpacingCached(themeId, spacing, configJson) {
|
|
2326
|
+
const native = getNativeBridge();
|
|
2327
|
+
if (!native?.resolveSpacingCached) throw new Error("resolveSpacingCached not available");
|
|
2328
|
+
return native.resolveSpacingCached(themeId, spacing, configJson);
|
|
2329
|
+
}
|
|
2330
|
+
function resolveFontSizeCached(themeId, size, configJson) {
|
|
2331
|
+
const native = getNativeBridge();
|
|
2332
|
+
if (!native?.resolveFontSizeCached) throw new Error("resolveFontSizeCached not available");
|
|
2333
|
+
return native.resolveFontSizeCached(themeId, size, configJson);
|
|
2334
|
+
}
|
|
2335
|
+
function resetResolverPoolStats() {
|
|
2336
|
+
const native = getNativeBridge();
|
|
2337
|
+
if (!native?.resetResolverPoolStats) throw new Error("resetResolverPoolStats not available");
|
|
2338
|
+
native.resetResolverPoolStats();
|
|
2339
|
+
}
|
|
2192
2340
|
var init_cacheNative = __esm({
|
|
2193
2341
|
"packages/domain/compiler/src/cache/cacheNative.ts"() {
|
|
2194
2342
|
init_nativeBridge();
|
|
@@ -2837,9 +2985,9 @@ var init_src = __esm({
|
|
|
2837
2985
|
if (normalized.includes("/layout.") || normalized.includes("/loading.") || normalized.includes("/error.")) {
|
|
2838
2986
|
return "__global";
|
|
2839
2987
|
}
|
|
2840
|
-
const pageMatch = normalized.match(
|
|
2988
|
+
const pageMatch = normalized.match(/(?:^|\/)app\/(.+?)\/page\.[tj]sx?$/);
|
|
2841
2989
|
if (pageMatch) return `/${pageMatch[1]}`;
|
|
2842
|
-
const rootPage = normalized.match(
|
|
2990
|
+
const rootPage = normalized.match(/(?:^|\/)app\/page\.[tj]sx?$/);
|
|
2843
2991
|
if (rootPage) return "/";
|
|
2844
2992
|
return null;
|
|
2845
2993
|
};
|
|
@@ -2998,6 +3146,7 @@ __export(internal_exports, {
|
|
|
2998
3146
|
clearCssGenCache: () => clearCssGenCache,
|
|
2999
3147
|
clearParseCache: () => clearParseCache,
|
|
3000
3148
|
clearResolveCache: () => clearResolveCache,
|
|
3149
|
+
clearResolverPool: () => clearResolverPool,
|
|
3001
3150
|
clearThemeCache: () => clearThemeCache,
|
|
3002
3151
|
collectFiles: () => collectFiles,
|
|
3003
3152
|
compileAnimation: () => compileAnimation,
|
|
@@ -3020,6 +3169,7 @@ __export(internal_exports, {
|
|
|
3020
3169
|
eliminateDeadCssNative: () => eliminateDeadCssNative,
|
|
3021
3170
|
emitPluginHook: () => emitPluginHook,
|
|
3022
3171
|
estimateOptimalCacheConfig: () => estimateOptimalCacheConfig,
|
|
3172
|
+
estimateOptimalCacheConfigNative: () => estimateOptimalCacheConfigNative,
|
|
3023
3173
|
extractAllClasses: () => extractAllClasses,
|
|
3024
3174
|
extractAndGenerateStateCss: () => extractAndGenerateStateCss,
|
|
3025
3175
|
extractAndGenerateStateCssNative: () => extractAndGenerateStateCssNative,
|
|
@@ -3033,6 +3183,8 @@ __export(internal_exports, {
|
|
|
3033
3183
|
fileToRoute: () => fileToRoute,
|
|
3034
3184
|
findDeadVariants: () => findDeadVariants,
|
|
3035
3185
|
generateAtomicCss: () => generateAtomicCss,
|
|
3186
|
+
generateCss: () => generateCss,
|
|
3187
|
+
generateCssBatch: () => generateCssBatch,
|
|
3036
3188
|
generateCssForClasses: () => generateCssForClasses,
|
|
3037
3189
|
generateCssNative: () => generateCssNative,
|
|
3038
3190
|
generateSafelist: () => generateSafelist,
|
|
@@ -3048,10 +3200,14 @@ __export(internal_exports, {
|
|
|
3048
3200
|
getCompilerDiagnostics: () => getCompilerDiagnostics,
|
|
3049
3201
|
getContentPaths: () => getContentPaths,
|
|
3050
3202
|
getIncrementalEngine: () => getIncrementalEngine,
|
|
3203
|
+
getMemoryRecommendationsNative: () => getMemoryRecommendationsNative,
|
|
3204
|
+
getMemoryStatsNative: () => getMemoryStatsNative,
|
|
3051
3205
|
getNativeBridge: () => getNativeBridge,
|
|
3052
3206
|
getPluginHooks: () => getPluginHooks,
|
|
3207
|
+
getResolverPoolStats: () => getResolverPoolStats,
|
|
3053
3208
|
getRouteClasses: () => getRouteClasses,
|
|
3054
3209
|
getWatchStats: () => getWatchStats,
|
|
3210
|
+
getWeek6FeaturesStatus: () => getWeek6FeaturesStatus,
|
|
3055
3211
|
hasTwUsage: () => hasTwUsage,
|
|
3056
3212
|
hashContent: () => hashContent,
|
|
3057
3213
|
hoistComponentsNative: () => hoistComponentsNative,
|
|
@@ -3080,6 +3236,7 @@ __export(internal_exports, {
|
|
|
3080
3236
|
normalizeClasses: () => normalizeClasses,
|
|
3081
3237
|
optimizeCssNative: () => optimizeCssNative,
|
|
3082
3238
|
parseAtomicClass: () => parseAtomicClass,
|
|
3239
|
+
parseClass: () => parseClass,
|
|
3083
3240
|
parseClasses: () => parseClasses,
|
|
3084
3241
|
pollWatchEvents: () => pollWatchEvents,
|
|
3085
3242
|
processFileChange: () => processFileChange,
|
|
@@ -3131,12 +3288,18 @@ __export(internal_exports, {
|
|
|
3131
3288
|
registerPropertyName: () => registerPropertyName,
|
|
3132
3289
|
registerValueName: () => registerValueName,
|
|
3133
3290
|
resetBucketEngine: () => resetBucketEngine,
|
|
3291
|
+
resetCacheStats: () => resetCacheStats,
|
|
3134
3292
|
resetCompilationMetrics: () => resetCompilationMetrics,
|
|
3135
3293
|
resetIncrementalEngine: () => resetIncrementalEngine,
|
|
3294
|
+
resetMemoryStats: () => resetMemoryStats,
|
|
3295
|
+
resetResolverPoolStats: () => resetResolverPoolStats,
|
|
3136
3296
|
resolveCascade: () => resolveCascade,
|
|
3137
3297
|
resolveClassNames: () => resolveClassNames,
|
|
3298
|
+
resolveColorCached: () => resolveColorCached,
|
|
3138
3299
|
resolveConflictGroup: () => resolveConflictGroup,
|
|
3300
|
+
resolveFontSizeCached: () => resolveFontSizeCached,
|
|
3139
3301
|
resolveSimpleVariants: () => resolveSimpleVariants,
|
|
3302
|
+
resolveSpacingCached: () => resolveSpacingCached,
|
|
3140
3303
|
resolveThemeValue: () => resolveThemeValue,
|
|
3141
3304
|
resolveVariants: () => resolveVariants,
|
|
3142
3305
|
reverseLookupProperty: () => reverseLookupProperty,
|