@applica-software-guru/react-admin 1.0.47 → 1.0.52
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/bitbucket-pipelines.yml +2 -1
- package/dist/components/MainCard.d.ts +70 -1
- package/dist/components/MainCard.d.ts.map +1 -1
- package/dist/components/ra-lists/Datagrid.d.ts +19 -6
- package/dist/components/ra-lists/Datagrid.d.ts.map +1 -1
- package/dist/components/ra-lists/Empty.d.ts +42 -17
- package/dist/components/ra-lists/Empty.d.ts.map +1 -1
- package/dist/components/ra-lists/List.d.ts +8 -6
- package/dist/components/ra-lists/List.d.ts.map +1 -1
- package/dist/components/ra-lists/index.d.ts +1 -1
- package/dist/components/ra-lists/index.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/react-admin.cjs.js +42 -42
- package/dist/react-admin.cjs.js.map +1 -1
- package/dist/react-admin.es.js +5 -3
- package/dist/react-admin.es.js.map +1 -1
- package/dist/react-admin.umd.js +42 -42
- package/dist/react-admin.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/{MainCard.jsx → MainCard.tsx} +74 -3
- package/src/components/ra-lists/{Datagrid.jsx → Datagrid.tsx} +14 -3
- package/src/components/ra-lists/{Empty.jsx → Empty.tsx} +31 -2
- package/src/components/ra-lists/{List.jsx → List.tsx} +3 -2
- package/src/index.jsx +1 -0
- /package/src/components/ra-lists/{index.jsx → index.ts} +0 -0
package/dist/react-admin.es.js
CHANGED
|
@@ -7473,7 +7473,8 @@ const FM = (e) => {
|
|
|
7473
7473
|
...C
|
|
7474
7474
|
},
|
|
7475
7475
|
children: [
|
|
7476
|
-
!l && h &&
|
|
7476
|
+
!l && h && /** @ts-ignore */
|
|
7477
|
+
/* @__PURE__ */ m(
|
|
7477
7478
|
Mu,
|
|
7478
7479
|
{
|
|
7479
7480
|
sx: hC,
|
|
@@ -24130,7 +24131,7 @@ Ab.propTypes = {
|
|
|
24130
24131
|
...ft.propTypes
|
|
24131
24132
|
};
|
|
24132
24133
|
const pU = ie(Jl, {
|
|
24133
|
-
name: "
|
|
24134
|
+
name: "ApplicaDatagrid",
|
|
24134
24135
|
slot: "root"
|
|
24135
24136
|
})(() => ({
|
|
24136
24137
|
// Resolve an issue related to the visualization of the bulk actions toolbar.
|
|
@@ -24181,7 +24182,7 @@ const hU = ie("div")(({ theme: e }) => ({
|
|
|
24181
24182
|
] }),
|
|
24182
24183
|
/* @__PURE__ */ m(hU, { className: Ri.toolbar, children: e })
|
|
24183
24184
|
] });
|
|
24184
|
-
}, pl = "
|
|
24185
|
+
}, pl = "ApplicaEmpty", Ri = {
|
|
24185
24186
|
message: `${pl}-message`,
|
|
24186
24187
|
icon: `${pl}-icon`,
|
|
24187
24188
|
toolbar: `${pl}-toolbar`
|
|
@@ -27916,6 +27917,7 @@ export {
|
|
|
27916
27917
|
Mc as TextInput,
|
|
27917
27918
|
wI as ThemeConfigContext,
|
|
27918
27919
|
TI as ThemeConfigProvider,
|
|
27920
|
+
Eb as ThemeProvider,
|
|
27919
27921
|
Ab as TimeInput,
|
|
27920
27922
|
Yo as Toolbar,
|
|
27921
27923
|
c5 as Tooltip,
|