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/vite.mjs CHANGED
@@ -3052,7 +3052,11 @@ function extractStaticStateCss(srcDir, options = {}) {
3052
3052
  return result;
3053
3053
  }
3054
3054
  function appendStaticStateCssToSafelist(srcDir, safelistPath, options = {}) {
3055
- const result = extractStaticStateCss(srcDir, options);
3055
+ const result = extractStaticStateCss(srcDir, {
3056
+ verbose: options.verbose,
3057
+ resolvedCss: options.resolvedCss || ""
3058
+ // ← ensure always passed
3059
+ });
3056
3060
  const twClassesDir = path9__default.join(path9__default.dirname(safelistPath), "tw-classes");
3057
3061
  fs13__default.mkdirSync(twClassesDir, { recursive: true });
3058
3062
  const stateFilePath = path9__default.join(twClassesDir, TW_STATE_STATIC_FILENAME);