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/index.mjs CHANGED
@@ -3527,7 +3527,11 @@ function extractStaticStateCss(srcDir, options = {}) {
3527
3527
  return result;
3528
3528
  }
3529
3529
  function appendStaticStateCssToSafelist(srcDir, safelistPath, options = {}) {
3530
- const result = extractStaticStateCss(srcDir, options);
3530
+ const result = extractStaticStateCss(srcDir, {
3531
+ verbose: options.verbose,
3532
+ resolvedCss: options.resolvedCss || ""
3533
+ // ← ensure always passed
3534
+ });
3531
3535
  const twClassesDir = path9__default.join(path9__default.dirname(safelistPath), "tw-classes");
3532
3536
  fs3__default.mkdirSync(twClassesDir, { recursive: true });
3533
3537
  const stateFilePath = path9__default.join(twClassesDir, TW_STATE_STATIC_FILENAME);