@novie/ui 0.1.33 → 0.1.35

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.js CHANGED
@@ -10876,11 +10876,12 @@ function Kv({ className: e, selected: t, onSelect: n, month: r, onMonthChange: s
10876
10876
  }
10877
10877
  //#endregion
10878
10878
  //#region src/components/ui/skeleton.tsx
10879
- function qv({ className: e, ...t }) {
10879
+ function qv({ className: e, active: t = !1, ...n }) {
10880
10880
  return /* @__PURE__ */ i("div", {
10881
10881
  "data-slot": "skeleton",
10882
- className: w("animate-pulse rounded-md bg-muted", e),
10883
- ...t
10882
+ "data-active": t || void 0,
10883
+ className: w("rounded-md bg-muted", t ? "relative overflow-hidden before:absolute before:inset-0 before:-translate-x-full before:bg-gradient-to-r before:from-transparent before:via-white/30 before:to-transparent before:animate-skeleton-shimmer before:content-['']" : "animate-pulse", e),
10884
+ ...n
10884
10885
  });
10885
10886
  }
10886
10887
  //#endregion