@applica-software-guru/react-admin 1.4.196 → 1.4.198
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/components/Layout/Provider.d.ts.map +1 -1
- package/dist/components/MenuPopover/styles.d.ts.map +1 -1
- package/dist/react-admin.cjs.js +1 -1
- package/dist/react-admin.cjs.js.map +1 -1
- package/dist/react-admin.es.js +6 -3
- package/dist/react-admin.es.js.map +1 -1
- package/dist/react-admin.umd.js +34 -34
- package/dist/react-admin.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Layout/Provider.tsx +2 -1
- package/src/components/MenuPopover/styles.jsx +7 -3
package/dist/react-admin.es.js
CHANGED
|
@@ -3299,7 +3299,7 @@ const G5 = (e) => {
|
|
|
3299
3299
|
let t;
|
|
3300
3300
|
return e < 1 ? t = 5.11916 * e ** 2 : t = 4.5 * Math.log(e + 1) + 2, (t / 100).toFixed(2);
|
|
3301
3301
|
}, _E = G5, K5 = le("span")(({ arrow: e, theme: t }) => {
|
|
3302
|
-
const o = `solid 1px ${Ge(t.palette.grey[500], 0.12)}`, a = {
|
|
3302
|
+
const o = t.palette.mode === "dark" ? `solid 1px ${t.palette.grey[100]}` : `solid 1px ${Ge(t.palette.grey[500], 0.12)}`, a = {
|
|
3303
3303
|
borderRadius: "0 0 3px 0",
|
|
3304
3304
|
top: -6,
|
|
3305
3305
|
borderBottom: o,
|
|
@@ -3316,7 +3316,7 @@ const G5 = (e) => {
|
|
|
3316
3316
|
borderRight: o
|
|
3317
3317
|
}, u = {
|
|
3318
3318
|
borderRadius: "0 0 0 3px",
|
|
3319
|
-
right: -6,
|
|
3319
|
+
right: -6 - 1,
|
|
3320
3320
|
borderBottom: o,
|
|
3321
3321
|
borderLeft: o
|
|
3322
3322
|
};
|
|
@@ -3330,7 +3330,10 @@ const G5 = (e) => {
|
|
|
3330
3330
|
display: "block",
|
|
3331
3331
|
position: "absolute",
|
|
3332
3332
|
transform: "rotate(-135deg)",
|
|
3333
|
-
background: t.palette.background.paper
|
|
3333
|
+
background: t.palette.background.paper,
|
|
3334
|
+
backgroundImage: "inherit",
|
|
3335
|
+
borderLeft: o,
|
|
3336
|
+
borderBottom: o
|
|
3334
3337
|
},
|
|
3335
3338
|
// Top
|
|
3336
3339
|
...e === "top-left" && { ...a, left: 20 },
|