tailwind-styled-v4 5.0.18 → 5.0.21
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 +182 -14
- package/dist/engine.js.map +1 -1
- package/dist/engine.mjs +182 -14
- package/dist/engine.mjs.map +1 -1
- package/dist/index-BFqmBxl9.d.mts +102 -0
- package/dist/{index-DJv28Uzq.d.mts → index-DQI6O24n.d.mts} +1 -1
- package/dist/index-DwNErRJ_.d.ts +102 -0
- 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 +182 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +182 -14
- package/dist/index.mjs.map +1 -1
- package/dist/next.js +193 -11
- package/dist/next.js.map +1 -1
- package/dist/next.mjs +193 -11
- package/dist/next.mjs.map +1 -1
- package/dist/plugin-api.d.mts +3 -101
- package/dist/plugin-api.d.ts +3 -101
- package/dist/plugin.d.mts +3 -5
- package/dist/plugin.d.ts +3 -5
- package/dist/plugin.js +0 -97
- package/dist/plugin.js.map +1 -1
- package/dist/plugin.mjs +1 -77
- package/dist/plugin.mjs.map +1 -1
- package/dist/shared.js +177 -10
- package/dist/shared.js.map +1 -1
- package/dist/shared.mjs +177 -10
- package/dist/shared.mjs.map +1 -1
- package/dist/turbopackLoader.js +179 -12
- package/dist/turbopackLoader.js.map +1 -1
- package/dist/turbopackLoader.mjs +179 -12
- 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 +315 -147
- package/dist/vite.js.map +1 -1
- package/dist/vite.mjs +315 -147
- 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/compiler.js
CHANGED
|
@@ -202,8 +202,44 @@ var init_nativeBridge = __esm({
|
|
|
202
202
|
try {
|
|
203
203
|
const binding = _loadNative(result.path);
|
|
204
204
|
if (isValidNativeBridge(binding)) {
|
|
205
|
-
|
|
206
|
-
|
|
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
|
-
|
|
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(
|
|
2166
|
+
const pageMatch = normalized.match(/(?:^|\/)app\/(.+?)\/page\.[tj]sx?$/);
|
|
2019
2167
|
if (pageMatch) return `/${pageMatch[1]}`;
|
|
2020
|
-
const rootPage = normalized.match(
|
|
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;
|