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.mjs CHANGED
@@ -3009,7 +3009,11 @@ function extractStaticStateCss(srcDir, options = {}) {
3009
3009
  return result;
3010
3010
  }
3011
3011
  function appendStaticStateCssToSafelist(srcDir, safelistPath, options = {}) {
3012
- const result = extractStaticStateCss(srcDir, options);
3012
+ const result = extractStaticStateCss(srcDir, {
3013
+ verbose: options.verbose,
3014
+ resolvedCss: options.resolvedCss || ""
3015
+ // ← ensure always passed
3016
+ });
3013
3017
  const twClassesDir = path10__default.join(path10__default.dirname(safelistPath), "tw-classes");
3014
3018
  fs9__default.mkdirSync(twClassesDir, { recursive: true });
3015
3019
  const stateFilePath = path10__default.join(twClassesDir, TW_STATE_STATIC_FILENAME);