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/compiler.mjs
CHANGED
|
@@ -180,8 +180,44 @@ var init_nativeBridge = __esm({
|
|
|
180
180
|
try {
|
|
181
181
|
const binding = _loadNative(result.path);
|
|
182
182
|
if (isValidNativeBridge(binding)) {
|
|
183
|
-
|
|
184
|
-
|
|
183
|
+
const toCamelCase = (str) => {
|
|
184
|
+
return str.replace(/_([a-z0-9])/g, (_, g) => g.toUpperCase());
|
|
185
|
+
};
|
|
186
|
+
nativeBridge = new Proxy(binding, {
|
|
187
|
+
get(target, prop) {
|
|
188
|
+
if (typeof prop === "string") {
|
|
189
|
+
if (prop in target) {
|
|
190
|
+
return target[prop];
|
|
191
|
+
}
|
|
192
|
+
const camelKey = toCamelCase(prop);
|
|
193
|
+
if (camelKey in target) {
|
|
194
|
+
const val = target[camelKey];
|
|
195
|
+
if (typeof val === "function") {
|
|
196
|
+
return val.bind(target);
|
|
197
|
+
}
|
|
198
|
+
return val;
|
|
199
|
+
}
|
|
200
|
+
const napiKey = `${camelKey}Napi`;
|
|
201
|
+
if (napiKey in target) {
|
|
202
|
+
const val = target[napiKey];
|
|
203
|
+
if (typeof val === "function") {
|
|
204
|
+
return val.bind(target);
|
|
205
|
+
}
|
|
206
|
+
return val;
|
|
207
|
+
}
|
|
208
|
+
const napiInnerKey = `${camelKey}NapiInner`;
|
|
209
|
+
if (napiInnerKey in target) {
|
|
210
|
+
const val = target[napiInnerKey];
|
|
211
|
+
if (typeof val === "function") {
|
|
212
|
+
return val.bind(target);
|
|
213
|
+
}
|
|
214
|
+
return val;
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
return target[prop];
|
|
218
|
+
}
|
|
219
|
+
});
|
|
220
|
+
log("Native bridge loaded successfully and proxy-wrapped from:", result.path);
|
|
185
221
|
return nativeBridge;
|
|
186
222
|
}
|
|
187
223
|
} catch (e) {
|
|
@@ -235,8 +271,8 @@ async function generateCssNative(classes, options) {
|
|
|
235
271
|
return css;
|
|
236
272
|
}
|
|
237
273
|
function getCacheStats() {
|
|
274
|
+
const native = getNativeBridge();
|
|
238
275
|
try {
|
|
239
|
-
const native = getNativeBridge();
|
|
240
276
|
if (!native?.getCacheStats) {
|
|
241
277
|
return null;
|
|
242
278
|
}
|
|
@@ -247,8 +283,8 @@ function getCacheStats() {
|
|
|
247
283
|
}
|
|
248
284
|
}
|
|
249
285
|
function clearThemeCache() {
|
|
286
|
+
const native = getNativeBridge();
|
|
250
287
|
try {
|
|
251
|
-
const native = getNativeBridge();
|
|
252
288
|
if (!native?.clearThemeCache) {
|
|
253
289
|
return;
|
|
254
290
|
}
|
|
@@ -256,6 +292,16 @@ function clearThemeCache() {
|
|
|
256
292
|
} catch {
|
|
257
293
|
}
|
|
258
294
|
}
|
|
295
|
+
function resetCacheStats() {
|
|
296
|
+
const native = getNativeBridge();
|
|
297
|
+
try {
|
|
298
|
+
if (!native?.resetCacheStats) {
|
|
299
|
+
return;
|
|
300
|
+
}
|
|
301
|
+
native.resetCacheStats();
|
|
302
|
+
} catch {
|
|
303
|
+
}
|
|
304
|
+
}
|
|
259
305
|
var init_cssGeneratorNative = __esm({
|
|
260
306
|
"packages/domain/compiler/src/compiler/cssGeneratorNative.ts"() {
|
|
261
307
|
init_nativeBridge();
|
|
@@ -381,6 +427,16 @@ function minifyCss(css) {
|
|
|
381
427
|
if (!native?.minify_css) throw new Error("minify_css not available");
|
|
382
428
|
return native.minify_css(css);
|
|
383
429
|
}
|
|
430
|
+
function generateCss(ruleJson, minify) {
|
|
431
|
+
const native = getNativeBridge();
|
|
432
|
+
if (!native?.generate_css) throw new Error("generate_css not available");
|
|
433
|
+
return native.generate_css(ruleJson, minify);
|
|
434
|
+
}
|
|
435
|
+
function generateCssBatch(rulesJson, minify) {
|
|
436
|
+
const native = getNativeBridge();
|
|
437
|
+
if (!native?.generate_css_batch) throw new Error("generate_css_batch not available");
|
|
438
|
+
return native.generate_css_batch(rulesJson, minify);
|
|
439
|
+
}
|
|
384
440
|
function compileAnimation(animationName, from, to) {
|
|
385
441
|
const native = getNativeBridge();
|
|
386
442
|
if (!native?.compile_animation) throw new Error("compile_animation not available");
|
|
@@ -818,7 +874,7 @@ function postProcessWithLightning(rawCss) {
|
|
|
818
874
|
}
|
|
819
875
|
return result.css;
|
|
820
876
|
}
|
|
821
|
-
async function runCssPipeline(classes, cssEntryContent, root, minify = true) {
|
|
877
|
+
async function runCssPipeline(classes, cssEntryContent, root, minify = true, minifier = "lightning") {
|
|
822
878
|
const filtered = classes.filter(Boolean);
|
|
823
879
|
const uniqueMap = /* @__PURE__ */ new Map();
|
|
824
880
|
filtered.forEach((cls) => uniqueMap.set(cls, cls));
|
|
@@ -826,7 +882,7 @@ async function runCssPipeline(classes, cssEntryContent, root, minify = true) {
|
|
|
826
882
|
if (unique.length === 0) {
|
|
827
883
|
return { css: "", classes: [], sizeBytes: 0, optimized: false };
|
|
828
884
|
}
|
|
829
|
-
const cacheKey = _getCacheKey(unique, minify, cssEntryContent, root)
|
|
885
|
+
const cacheKey = _getCacheKey(unique, minify, cssEntryContent, root) + `|${minifier}`;
|
|
830
886
|
const cached = _cssCache.get(cacheKey);
|
|
831
887
|
if (cached) {
|
|
832
888
|
_cacheHits++;
|
|
@@ -843,7 +899,14 @@ async function runCssPipeline(classes, cssEntryContent, root, minify = true) {
|
|
|
843
899
|
const theme = getThemeConfig();
|
|
844
900
|
rawCss = await generateCssNative(unique, { theme });
|
|
845
901
|
usedRustCompiler = true;
|
|
846
|
-
|
|
902
|
+
let finalCss = rawCss;
|
|
903
|
+
if (minify) {
|
|
904
|
+
if (minifier === "fast") {
|
|
905
|
+
finalCss = minifyCss(rawCss);
|
|
906
|
+
} else {
|
|
907
|
+
finalCss = postProcessWithLightning(rawCss);
|
|
908
|
+
}
|
|
909
|
+
}
|
|
847
910
|
if (process.env.DEBUG?.includes("compiler")) {
|
|
848
911
|
console.log(
|
|
849
912
|
`[Compiler] Generated CSS from ${unique.length} classes (${usedRustCompiler ? "Rust" : "JavaScript"})`,
|
|
@@ -879,6 +942,7 @@ var init_tailwindEngine = __esm({
|
|
|
879
942
|
"packages/domain/compiler/src/compiler/tailwindEngine.ts"() {
|
|
880
943
|
init_nativeBridge();
|
|
881
944
|
init_cssGeneratorNative();
|
|
945
|
+
init_cssCompilationNative();
|
|
882
946
|
createRequire(import.meta.url);
|
|
883
947
|
_cssCache = /* @__PURE__ */ new Map();
|
|
884
948
|
_cacheHits = 0;
|
|
@@ -912,9 +976,10 @@ __export(parser_exports, {
|
|
|
912
976
|
mergeClassesStatic: () => mergeClassesStatic,
|
|
913
977
|
normalizeAndDedupClasses: () => normalizeAndDedupClasses,
|
|
914
978
|
normalizeClasses: () => normalizeClasses,
|
|
979
|
+
parseClass: () => parseClass,
|
|
915
980
|
parseClasses: () => parseClasses
|
|
916
981
|
});
|
|
917
|
-
var parseClasses, extractAllClasses, extractClassesFromSource, astExtractClasses, normalizeClasses, mergeClassesStatic, normalizeAndDedupClasses, extractComponentUsage, batchExtractClasses, checkAgainstSafelist, diffClassLists;
|
|
982
|
+
var parseClasses, parseClass, extractAllClasses, extractClassesFromSource, astExtractClasses, normalizeClasses, mergeClassesStatic, normalizeAndDedupClasses, extractComponentUsage, batchExtractClasses, checkAgainstSafelist, diffClassLists;
|
|
918
983
|
var init_parser = __esm({
|
|
919
984
|
"packages/domain/compiler/src/parser/index.ts"() {
|
|
920
985
|
init_nativeBridge();
|
|
@@ -925,6 +990,14 @@ var init_parser = __esm({
|
|
|
925
990
|
}
|
|
926
991
|
return native.parseClasses(raw) || [];
|
|
927
992
|
};
|
|
993
|
+
parseClass = (input) => {
|
|
994
|
+
const native = getNativeBridge();
|
|
995
|
+
if (!native?.parseClass) {
|
|
996
|
+
throw new Error("FATAL: Native binding 'parseClass' is required but not available.");
|
|
997
|
+
}
|
|
998
|
+
const result = native.parseClass(input);
|
|
999
|
+
return typeof result === "string" ? JSON.parse(result) : result;
|
|
1000
|
+
};
|
|
928
1001
|
extractAllClasses = (source) => {
|
|
929
1002
|
const native = getNativeBridge();
|
|
930
1003
|
if (!native?.extractAllClasses) {
|
|
@@ -1056,6 +1129,35 @@ function mergeCssDeclarationsNative(cssChunks) {
|
|
|
1056
1129
|
if (!native?.mergeCssDeclarations) throw new Error("mergeCssDeclarations not available");
|
|
1057
1130
|
return native.mergeCssDeclarations(cssChunks);
|
|
1058
1131
|
}
|
|
1132
|
+
function getWeek6FeaturesStatus() {
|
|
1133
|
+
const native = getNativeBridge();
|
|
1134
|
+
if (!native?.getWeek6FeaturesStatus) throw new Error("getWeek6FeaturesStatus not available");
|
|
1135
|
+
const resultJson = native.getWeek6FeaturesStatus();
|
|
1136
|
+
return JSON.parse(resultJson);
|
|
1137
|
+
}
|
|
1138
|
+
function getMemoryStatsNative() {
|
|
1139
|
+
const native = getNativeBridge();
|
|
1140
|
+
if (!native?.getMemoryStatsNative) throw new Error("getMemoryStatsNative not available");
|
|
1141
|
+
const resultJson = native.getMemoryStatsNative();
|
|
1142
|
+
return JSON.parse(resultJson);
|
|
1143
|
+
}
|
|
1144
|
+
function getMemoryRecommendationsNative() {
|
|
1145
|
+
const native = getNativeBridge();
|
|
1146
|
+
if (!native?.getMemoryRecommendationsNative) throw new Error("getMemoryRecommendationsNative not available");
|
|
1147
|
+
const resultJson = native.getMemoryRecommendationsNative();
|
|
1148
|
+
return JSON.parse(resultJson);
|
|
1149
|
+
}
|
|
1150
|
+
function estimateOptimalCacheConfigNative(workloadType, expectedEntries) {
|
|
1151
|
+
const native = getNativeBridge();
|
|
1152
|
+
if (!native?.estimateOptimalCacheConfigNative) throw new Error("estimateOptimalCacheConfigNative not available");
|
|
1153
|
+
const resultJson = native.estimateOptimalCacheConfigNative(workloadType, expectedEntries);
|
|
1154
|
+
return JSON.parse(resultJson);
|
|
1155
|
+
}
|
|
1156
|
+
function resetMemoryStats() {
|
|
1157
|
+
const native = getNativeBridge();
|
|
1158
|
+
if (!native?.resetMemoryStats) throw new Error("resetMemoryStats not available");
|
|
1159
|
+
native.resetMemoryStats();
|
|
1160
|
+
}
|
|
1059
1161
|
var init_analyzerNative = __esm({
|
|
1060
1162
|
"packages/domain/compiler/src/analyzer/analyzerNative.ts"() {
|
|
1061
1163
|
init_nativeBridge();
|
|
@@ -1345,6 +1447,52 @@ function cachePriority(mtimeMs, sizeBytes, hitCount) {
|
|
|
1345
1447
|
if (!native?.cache_priority) throw new Error("cache_priority not available");
|
|
1346
1448
|
return native.cache_priority(mtimeMs, sizeBytes, hitCount);
|
|
1347
1449
|
}
|
|
1450
|
+
function getResolverPoolStats() {
|
|
1451
|
+
const native = getNativeBridge();
|
|
1452
|
+
if (!native?.getResolverPoolStats) throw new Error("getResolverPoolStats not available");
|
|
1453
|
+
const statsJson = native.getResolverPoolStats();
|
|
1454
|
+
try {
|
|
1455
|
+
return JSON.parse(statsJson);
|
|
1456
|
+
} catch {
|
|
1457
|
+
return {
|
|
1458
|
+
hits: 0,
|
|
1459
|
+
misses: 0,
|
|
1460
|
+
total: 0,
|
|
1461
|
+
hit_rate: 0,
|
|
1462
|
+
cached_resolvers: 0
|
|
1463
|
+
};
|
|
1464
|
+
}
|
|
1465
|
+
}
|
|
1466
|
+
function clearResolverPool() {
|
|
1467
|
+
const native = getNativeBridge();
|
|
1468
|
+
if (!native?.clearResolverPool) throw new Error("clearResolverPool not available");
|
|
1469
|
+
const resultJson = native.clearResolverPool();
|
|
1470
|
+
try {
|
|
1471
|
+
return JSON.parse(resultJson);
|
|
1472
|
+
} catch {
|
|
1473
|
+
return { status: "error" };
|
|
1474
|
+
}
|
|
1475
|
+
}
|
|
1476
|
+
function resolveColorCached(themeId, color, configJson) {
|
|
1477
|
+
const native = getNativeBridge();
|
|
1478
|
+
if (!native?.resolveColorCached) throw new Error("resolveColorCached not available");
|
|
1479
|
+
return native.resolveColorCached(themeId, color, configJson);
|
|
1480
|
+
}
|
|
1481
|
+
function resolveSpacingCached(themeId, spacing, configJson) {
|
|
1482
|
+
const native = getNativeBridge();
|
|
1483
|
+
if (!native?.resolveSpacingCached) throw new Error("resolveSpacingCached not available");
|
|
1484
|
+
return native.resolveSpacingCached(themeId, spacing, configJson);
|
|
1485
|
+
}
|
|
1486
|
+
function resolveFontSizeCached(themeId, size, configJson) {
|
|
1487
|
+
const native = getNativeBridge();
|
|
1488
|
+
if (!native?.resolveFontSizeCached) throw new Error("resolveFontSizeCached not available");
|
|
1489
|
+
return native.resolveFontSizeCached(themeId, size, configJson);
|
|
1490
|
+
}
|
|
1491
|
+
function resetResolverPoolStats() {
|
|
1492
|
+
const native = getNativeBridge();
|
|
1493
|
+
if (!native?.resetResolverPoolStats) throw new Error("resetResolverPoolStats not available");
|
|
1494
|
+
native.resetResolverPoolStats();
|
|
1495
|
+
}
|
|
1348
1496
|
var init_cacheNative = __esm({
|
|
1349
1497
|
"packages/domain/compiler/src/cache/cacheNative.ts"() {
|
|
1350
1498
|
init_nativeBridge();
|
|
@@ -1993,9 +2141,9 @@ var init_src2 = __esm({
|
|
|
1993
2141
|
if (normalized.includes("/layout.") || normalized.includes("/loading.") || normalized.includes("/error.")) {
|
|
1994
2142
|
return "__global";
|
|
1995
2143
|
}
|
|
1996
|
-
const pageMatch = normalized.match(
|
|
2144
|
+
const pageMatch = normalized.match(/(?:^|\/)app\/(.+?)\/page\.[tj]sx?$/);
|
|
1997
2145
|
if (pageMatch) return `/${pageMatch[1]}`;
|
|
1998
|
-
const rootPage = normalized.match(
|
|
2146
|
+
const rootPage = normalized.match(/(?:^|\/)app\/page\.[tj]sx?$/);
|
|
1999
2147
|
if (rootPage) return "/";
|
|
2000
2148
|
return null;
|
|
2001
2149
|
};
|
|
@@ -2132,6 +2280,6 @@ ${source}`;
|
|
|
2132
2280
|
// src/umbrella/compiler.ts
|
|
2133
2281
|
init_src2();
|
|
2134
2282
|
|
|
2135
|
-
export { BucketEngine, IncrementalEngine, adaptNativeResult, analyzeClassUsageNative, analyzeClasses, analyzeClassesNative, analyzeFile, analyzeRscNative, analyzeVariantUsage, astExtractClasses, atomicRegistrySize, batchExtractClasses, batchExtractClassesNative, bucketSort, buildStyleTag, cachePriority, cacheRead, cacheWrite, checkAgainstSafelist, checkAgainstSafelistNative, classifyAndSortClassesNative, classifyNode, clearAllCaches, clearAtomicRegistry, clearCompileCache, clearCssGenCache, clearParseCache, clearResolveCache, clearThemeCache, collectFiles, compileAnimation, compileClass, compileClasses, compileCssFromClasses, compileCssLightning, compileCssNative2, compileKeyframes, compileTheme, compileToCss, compileToCssBatch, compileVariantTableNative, computeIncrementalDiff, createFingerprint, detectConflicts, detectDeadCode, diffClassLists, eliminateDeadCss, eliminateDeadCssNative, emitPluginHook, estimateOptimalCacheConfig, extractAllClasses, extractAndGenerateStateCss, extractAndGenerateStateCssNative, extractClassesFromSource, extractClassesFromSourceNative, extractComponentUsage, extractContainerCssFromSource, extractTwContainerConfigs, extractTwStateConfigs, extractTwStateConfigsNative, fileToRoute, findDeadVariants, generateAtomicCss, generateCssForClasses, generateCssNative, generateSafelist, generateStaticStateCss, generateStaticStateCssNative, generateSubComponentTypes, getAllRoutes, getBucketEngine, getCacheOptimizationHints, getCacheStatistics, getCacheStats, getCompilationMetrics, getCompilerDiagnostics, getContentPaths, getIncrementalEngine, getNativeBridge, getPluginHooks, getRouteClasses, getWatchStats, hasTwUsage, hashContent, hoistComponentsNative, idRegistryActiveCount, idRegistryCreate, idRegistryDestroy, idRegistryExport, idRegistryGenerate, idRegistryImport, idRegistryLookup, idRegistryNext, idRegistryReset, idRegistrySnapshot, injectClientDirective, injectServerOnlyComment, injectStateHash, isAlreadyTransformed, isWatchRunning, layoutClassesToCss, loadSafelist, loadTailwindConfig, mergeClassesStatic, mergeCssDeclarationsNative, minifyCss, normalizeAndDedupClasses, normalizeClasses, optimizeCssNative, parseAtomicClass, parseClasses, pollWatchEvents, processFileChange, processTailwindCssLightning, propertyIdToString, pruneStaleCacheEntries, rebuildWorkspaceResult, redisCacheClear, redisCacheHitRate, redisCacheKeyCount, redisCacheSize, redisCacheSync, redisClusterStatus, redisDelete, redisDiagnose, redisDisableCacheWarming, redisDisableCluster, redisDisablePersistence, redisEnableCacheWarming, redisEnableCluster, redisEnablePersistence, redisExists, redisExpirationGet, redisExpirationSet, redisFlushAll, redisFlushDb, redisGet, redisGetEvictionPolicy, redisInfo, redisMemoryStats, redisMget, redisMonitor, redisMset, redisOptimizeMemory, redisPing, redisPoolConnect, redisPoolReconnect, redisPoolStats, redisPublish, redisReplicate, redisReplicationStatus, redisSet, redisSetEvictionPolicy, redisSnapshot, redisSubscribe, registerFileClasses, registerGlobalClasses, registerPluginHook, registerPropertyName, registerValueName, resetBucketEngine, resetCompilationMetrics, resetIncrementalEngine, resetNativeBridgeCache, resolveCascade, resolveClassNames, resolveConflictGroup, resolveSimpleVariants, resolveThemeValue, resolveVariants, reverseLookupProperty, reverseLookupValue, runCssPipeline, runElimination, runLoaderTransform, scanCacheOptimizations, scanFile, scanFileNative, scanFilesBatchNative, scanProjectUsage, scanWorkspace, shouldProcess, shouldSkipFile, startWatch, stopWatch, toAtomicClasses, transformSource, twMerge, twMergeMany, twMergeManyWithSeparator, twMergeRaw, twMergeWithSeparator, unregisterPluginHook, validateCssOutput, validateThemeConfig, valueIdToString, walkAndPrefilterSourceFiles, watchAddPattern, watchClearAll, watchEventTypeToString, watchGetActiveHandles, watchPause, watchRemovePattern, watchResume };
|
|
2283
|
+
export { BucketEngine, IncrementalEngine, adaptNativeResult, analyzeClassUsageNative, analyzeClasses, analyzeClassesNative, analyzeFile, analyzeRscNative, analyzeVariantUsage, astExtractClasses, atomicRegistrySize, batchExtractClasses, batchExtractClassesNative, bucketSort, buildStyleTag, cachePriority, cacheRead, cacheWrite, checkAgainstSafelist, checkAgainstSafelistNative, classifyAndSortClassesNative, classifyNode, clearAllCaches, clearAtomicRegistry, clearCompileCache, clearCssGenCache, clearParseCache, clearResolveCache, clearResolverPool, clearThemeCache, collectFiles, compileAnimation, compileClass, compileClasses, compileCssFromClasses, compileCssLightning, compileCssNative2, compileKeyframes, compileTheme, compileToCss, compileToCssBatch, compileVariantTableNative, computeIncrementalDiff, createFingerprint, detectConflicts, detectDeadCode, diffClassLists, eliminateDeadCss, eliminateDeadCssNative, emitPluginHook, estimateOptimalCacheConfig, estimateOptimalCacheConfigNative, extractAllClasses, extractAndGenerateStateCss, extractAndGenerateStateCssNative, extractClassesFromSource, extractClassesFromSourceNative, extractComponentUsage, extractContainerCssFromSource, extractTwContainerConfigs, extractTwStateConfigs, extractTwStateConfigsNative, fileToRoute, findDeadVariants, generateAtomicCss, generateCss, generateCssBatch, generateCssForClasses, generateCssNative, generateSafelist, generateStaticStateCss, generateStaticStateCssNative, generateSubComponentTypes, getAllRoutes, getBucketEngine, getCacheOptimizationHints, getCacheStatistics, getCacheStats, getCompilationMetrics, getCompilerDiagnostics, getContentPaths, getIncrementalEngine, getMemoryRecommendationsNative, getMemoryStatsNative, getNativeBridge, getPluginHooks, getResolverPoolStats, getRouteClasses, getWatchStats, getWeek6FeaturesStatus, hasTwUsage, hashContent, hoistComponentsNative, idRegistryActiveCount, idRegistryCreate, idRegistryDestroy, idRegistryExport, idRegistryGenerate, idRegistryImport, idRegistryLookup, idRegistryNext, idRegistryReset, idRegistrySnapshot, injectClientDirective, injectServerOnlyComment, injectStateHash, isAlreadyTransformed, isWatchRunning, layoutClassesToCss, loadSafelist, loadTailwindConfig, mergeClassesStatic, mergeCssDeclarationsNative, minifyCss, normalizeAndDedupClasses, normalizeClasses, optimizeCssNative, parseAtomicClass, parseClass, parseClasses, pollWatchEvents, processFileChange, processTailwindCssLightning, propertyIdToString, pruneStaleCacheEntries, rebuildWorkspaceResult, redisCacheClear, redisCacheHitRate, redisCacheKeyCount, redisCacheSize, redisCacheSync, redisClusterStatus, redisDelete, redisDiagnose, redisDisableCacheWarming, redisDisableCluster, redisDisablePersistence, redisEnableCacheWarming, redisEnableCluster, redisEnablePersistence, redisExists, redisExpirationGet, redisExpirationSet, redisFlushAll, redisFlushDb, redisGet, redisGetEvictionPolicy, redisInfo, redisMemoryStats, redisMget, redisMonitor, redisMset, redisOptimizeMemory, redisPing, redisPoolConnect, redisPoolReconnect, redisPoolStats, redisPublish, redisReplicate, redisReplicationStatus, redisSet, redisSetEvictionPolicy, redisSnapshot, redisSubscribe, registerFileClasses, registerGlobalClasses, registerPluginHook, registerPropertyName, registerValueName, resetBucketEngine, resetCacheStats, resetCompilationMetrics, resetIncrementalEngine, resetMemoryStats, resetNativeBridgeCache, resetResolverPoolStats, resolveCascade, resolveClassNames, resolveColorCached, resolveConflictGroup, resolveFontSizeCached, resolveSimpleVariants, resolveSpacingCached, resolveThemeValue, resolveVariants, reverseLookupProperty, reverseLookupValue, runCssPipeline, runElimination, runLoaderTransform, scanCacheOptimizations, scanFile, scanFileNative, scanFilesBatchNative, scanProjectUsage, scanWorkspace, shouldProcess, shouldSkipFile, startWatch, stopWatch, toAtomicClasses, transformSource, twMerge, twMergeMany, twMergeManyWithSeparator, twMergeRaw, twMergeWithSeparator, unregisterPluginHook, validateCssOutput, validateThemeConfig, valueIdToString, walkAndPrefilterSourceFiles, watchAddPattern, watchClearAll, watchEventTypeToString, watchGetActiveHandles, watchPause, watchRemovePattern, watchResume };
|
|
2136
2284
|
//# sourceMappingURL=compiler.mjs.map
|
|
2137
2285
|
//# sourceMappingURL=compiler.mjs.map
|