tailwind-styled-v4 5.0.20 → 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/next.js CHANGED
@@ -3031,7 +3031,11 @@ function extractStaticStateCss(srcDir, options = {}) {
3031
3031
  return result;
3032
3032
  }
3033
3033
  function appendStaticStateCssToSafelist(srcDir, safelistPath, options = {}) {
3034
- const result = extractStaticStateCss(srcDir, options);
3034
+ const result = extractStaticStateCss(srcDir, {
3035
+ verbose: options.verbose,
3036
+ resolvedCss: options.resolvedCss || ""
3037
+ // ← ensure always passed
3038
+ });
3035
3039
  const twClassesDir = path10__namespace.default.join(path10__namespace.default.dirname(safelistPath), "tw-classes");
3036
3040
  fs9__namespace.default.mkdirSync(twClassesDir, { recursive: true });
3037
3041
  const stateFilePath = path10__namespace.default.join(twClassesDir, TW_STATE_STATIC_FILENAME);