@recursica/mui-adapter 0.12.0 → 0.13.0
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/CHANGELOG.md +12 -0
- package/dist/mui-adapter.cjs +1 -1
- package/dist/mui-adapter.cjs.map +1 -1
- package/dist/mui-adapter.js +13 -5
- package/dist/mui-adapter.js.map +1 -1
- package/package.json +1 -1
package/dist/mui-adapter.js
CHANGED
|
@@ -7218,14 +7218,22 @@ const ff = [
|
|
|
7218
7218
|
function D(e) {
|
|
7219
7219
|
if (!it || typeof e != "function" && !(e && e.$$typeof))
|
|
7220
7220
|
return e;
|
|
7221
|
-
const t = ue.forwardRef((
|
|
7222
|
-
const { overStyled:
|
|
7221
|
+
const t = ue.forwardRef((o, n) => {
|
|
7222
|
+
const { overStyled: a } = o, s = nf(), i = ue.createElement(
|
|
7223
7223
|
e,
|
|
7224
|
-
{ ...
|
|
7224
|
+
{ ...o, ref: n }
|
|
7225
7225
|
);
|
|
7226
|
-
return
|
|
7226
|
+
return a && s ? /* @__PURE__ */ p("div", { className: "recursica-over-styled", children: i }) : i;
|
|
7227
7227
|
});
|
|
7228
|
-
|
|
7228
|
+
t.displayName = e.displayName || e.name || "Component";
|
|
7229
|
+
const r = Object.keys(e);
|
|
7230
|
+
for (const o of r) {
|
|
7231
|
+
if (o === "render" || o === "$$typeof")
|
|
7232
|
+
continue;
|
|
7233
|
+
const n = e[o];
|
|
7234
|
+
(typeof n == "function" || n && n.$$typeof) && o[0] === o[0].toUpperCase() ? t[o] = D(n) : t[o] = n;
|
|
7235
|
+
}
|
|
7236
|
+
return t;
|
|
7229
7237
|
}
|
|
7230
7238
|
const hf = ii, yf = un, _f = pn, gf = En, bf = cn, vf = pr, Cf = Hi, $f = Ki, Sf = D(
|
|
7231
7239
|
Yt
|