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