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.
Files changed (66) 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 +38 -2
  14. package/dist/atomic.js.map +1 -1
  15. package/dist/atomic.mjs +38 -2
  16. package/dist/atomic.mjs.map +1 -1
  17. package/dist/cli.js +43 -6
  18. package/dist/cli.js.map +1 -1
  19. package/dist/cli.mjs +43 -6
  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 +172 -10
  24. package/dist/compiler.js.map +1 -1
  25. package/dist/compiler.mjs +159 -11
  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 +177 -13
  30. package/dist/engine.js.map +1 -1
  31. package/dist/engine.mjs +177 -13
  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.d.mts +2 -2
  36. package/dist/index.d.ts +2 -2
  37. package/dist/index.js +177 -13
  38. package/dist/index.js.map +1 -1
  39. package/dist/index.mjs +177 -13
  40. package/dist/index.mjs.map +1 -1
  41. package/dist/next.js +188 -10
  42. package/dist/next.js.map +1 -1
  43. package/dist/next.mjs +188 -10
  44. package/dist/next.mjs.map +1 -1
  45. package/dist/shared.js +172 -9
  46. package/dist/shared.js.map +1 -1
  47. package/dist/shared.mjs +172 -9
  48. package/dist/shared.mjs.map +1 -1
  49. package/dist/turbopackLoader.js +172 -9
  50. package/dist/turbopackLoader.js.map +1 -1
  51. package/dist/turbopackLoader.mjs +172 -9
  52. package/dist/turbopackLoader.mjs.map +1 -1
  53. package/dist/tw.js +43 -6
  54. package/dist/tw.js.map +1 -1
  55. package/dist/tw.mjs +43 -6
  56. package/dist/tw.mjs.map +1 -1
  57. package/dist/vite.js +310 -146
  58. package/dist/vite.js.map +1 -1
  59. package/dist/vite.mjs +310 -146
  60. package/dist/vite.mjs.map +1 -1
  61. package/dist/webpackLoader.js +38 -2
  62. package/dist/webpackLoader.js.map +1 -1
  63. package/dist/webpackLoader.mjs +38 -2
  64. package/dist/webpackLoader.mjs.map +1 -1
  65. package/native/tailwind-styled-native.node +0 -0
  66. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -4410,7 +4410,7 @@ async function requireNativeBinding() {
4410
4410
  runtimeDir,
4411
4411
  candidates,
4412
4412
  isValid: isAnalyzerModule,
4413
- invalidExportMessage: "Module loaded but missing `analyzeClasses` export."
4413
+ invalidExportMessage: "Module loaded but missing `analyzeClasses` or `analyzeClassesWorkspace` export."
4414
4414
  });
4415
4415
  const lines = [
4416
4416
  "Native analyzer binding not found. Ensure `tailwind_styled_parser.node` is built."
@@ -4437,7 +4437,7 @@ var init_binding = __esm({
4437
4437
  init_utils();
4438
4438
  isAnalyzerModule = (module) => {
4439
4439
  const candidate = module;
4440
- return typeof candidate?.analyzeClasses === "function";
4440
+ return typeof candidate?.analyzeClasses === "function" || typeof candidate?.analyzeClassesWorkspace === "function";
4441
4441
  };
4442
4442
  createAnalyzerBindingLoader = () => {
4443
4443
  const _state = { bindingPromise: null };
@@ -4456,7 +4456,7 @@ var init_binding = __esm({
4456
4456
  runtimeDir,
4457
4457
  candidates,
4458
4458
  isValid: isAnalyzerModule,
4459
- invalidExportMessage: "Module loaded but missing `analyzeClasses` export."
4459
+ invalidExportMessage: "Module loaded but missing `analyzeClasses` or `analyzeClassesWorkspace` export."
4460
4460
  });
4461
4461
  if (binding) {
4462
4462
  debugLog(`native binding loaded from: ${loadedPath}`);
@@ -4935,7 +4935,8 @@ async function analyzeWorkspace(root, options = {}) {
4935
4935
  );
4936
4936
  const nativeReport = (() => {
4937
4937
  try {
4938
- const report = binding.analyzeClasses(filesJson, resolvedRoot, topLimit);
4938
+ const fn = binding.analyzeClassesWorkspace || binding.analyzeClasses;
4939
+ const report = fn(filesJson, resolvedRoot, topLimit);
4939
4940
  if (!report) {
4940
4941
  throw new Error(`Native analyzer returned no report for "${resolvedRoot}".`);
4941
4942
  }
@@ -6093,8 +6094,44 @@ var init_nativeBridge = __esm({
6093
6094
  try {
6094
6095
  const binding = _loadNative(result.path);
6095
6096
  if (isValidNativeBridge(binding)) {
6096
- nativeBridge = binding;
6097
- log3("Native bridge loaded successfully from:", result.path);
6097
+ const toCamelCase = (str) => {
6098
+ return str.replace(/_([a-z0-9])/g, (_, g) => g.toUpperCase());
6099
+ };
6100
+ nativeBridge = new Proxy(binding, {
6101
+ get(target, prop) {
6102
+ if (typeof prop === "string") {
6103
+ if (prop in target) {
6104
+ return target[prop];
6105
+ }
6106
+ const camelKey = toCamelCase(prop);
6107
+ if (camelKey in target) {
6108
+ const val = target[camelKey];
6109
+ if (typeof val === "function") {
6110
+ return val.bind(target);
6111
+ }
6112
+ return val;
6113
+ }
6114
+ const napiKey = `${camelKey}Napi`;
6115
+ if (napiKey in target) {
6116
+ const val = target[napiKey];
6117
+ if (typeof val === "function") {
6118
+ return val.bind(target);
6119
+ }
6120
+ return val;
6121
+ }
6122
+ const napiInnerKey = `${camelKey}NapiInner`;
6123
+ if (napiInnerKey in target) {
6124
+ const val = target[napiInnerKey];
6125
+ if (typeof val === "function") {
6126
+ return val.bind(target);
6127
+ }
6128
+ return val;
6129
+ }
6130
+ }
6131
+ return target[prop];
6132
+ }
6133
+ });
6134
+ log3("Native bridge loaded successfully and proxy-wrapped from:", result.path);
6098
6135
  return nativeBridge;
6099
6136
  }
6100
6137
  } catch (e) {