@almadar/ui 4.50.8 → 4.50.9
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/avl/index.cjs +4 -2
- package/dist/avl/index.js +4 -2
- package/dist/components/index.cjs +4 -2
- package/dist/components/index.js +4 -2
- package/dist/providers/index.cjs +4 -2
- package/dist/providers/index.js +4 -2
- package/dist/runtime/index.cjs +4 -2
- package/dist/runtime/index.js +4 -2
- package/package.json +1 -1
package/dist/avl/index.cjs
CHANGED
|
@@ -25379,7 +25379,8 @@ function DataGrid({
|
|
|
25379
25379
|
return /* @__PURE__ */ jsxRuntime.jsx(Box, { className: "text-center py-8", children: /* @__PURE__ */ jsxRuntime.jsx(Typography, { variant: "body", color: "error", children: error.message }) });
|
|
25380
25380
|
}
|
|
25381
25381
|
if (data.length === 0) {
|
|
25382
|
-
|
|
25382
|
+
const emptyNode = /* @__PURE__ */ jsxRuntime.jsx(Box, { className: "text-center py-12", children: /* @__PURE__ */ jsxRuntime.jsx(Typography, { variant: "body", color: "secondary", children: t("empty.noItems") || "No items found" }) });
|
|
25383
|
+
return dnd.enabled ? /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: dnd.wrapContainer(emptyNode) }) : emptyNode;
|
|
25383
25384
|
}
|
|
25384
25385
|
const allIds = data.map((item, i) => item.id || String(i));
|
|
25385
25386
|
const allSelected = allIds.length > 0 && allIds.every((id) => selectedIds.has(id));
|
|
@@ -25764,7 +25765,8 @@ function DataList({
|
|
|
25764
25765
|
return /* @__PURE__ */ jsxRuntime.jsx(Box, { className: "text-center py-8", children: /* @__PURE__ */ jsxRuntime.jsx(Typography, { variant: "body", color: "error", children: error.message }) });
|
|
25765
25766
|
}
|
|
25766
25767
|
if (data.length === 0) {
|
|
25767
|
-
|
|
25768
|
+
const emptyNode = /* @__PURE__ */ jsxRuntime.jsx(Box, { className: "text-center py-12", children: /* @__PURE__ */ jsxRuntime.jsx(Typography, { variant: "body", color: "secondary", children: t("empty.noItems") || "No items found" }) });
|
|
25769
|
+
return dnd.enabled ? /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: dnd.wrapContainer(emptyNode) }) : emptyNode;
|
|
25768
25770
|
}
|
|
25769
25771
|
const gapClass = {
|
|
25770
25772
|
none: "",
|
package/dist/avl/index.js
CHANGED
|
@@ -25333,7 +25333,8 @@ function DataGrid({
|
|
|
25333
25333
|
return /* @__PURE__ */ jsx(Box, { className: "text-center py-8", children: /* @__PURE__ */ jsx(Typography, { variant: "body", color: "error", children: error.message }) });
|
|
25334
25334
|
}
|
|
25335
25335
|
if (data.length === 0) {
|
|
25336
|
-
|
|
25336
|
+
const emptyNode = /* @__PURE__ */ jsx(Box, { className: "text-center py-12", children: /* @__PURE__ */ jsx(Typography, { variant: "body", color: "secondary", children: t("empty.noItems") || "No items found" }) });
|
|
25337
|
+
return dnd.enabled ? /* @__PURE__ */ jsx(Fragment, { children: dnd.wrapContainer(emptyNode) }) : emptyNode;
|
|
25337
25338
|
}
|
|
25338
25339
|
const allIds = data.map((item, i) => item.id || String(i));
|
|
25339
25340
|
const allSelected = allIds.length > 0 && allIds.every((id) => selectedIds.has(id));
|
|
@@ -25718,7 +25719,8 @@ function DataList({
|
|
|
25718
25719
|
return /* @__PURE__ */ jsx(Box, { className: "text-center py-8", children: /* @__PURE__ */ jsx(Typography, { variant: "body", color: "error", children: error.message }) });
|
|
25719
25720
|
}
|
|
25720
25721
|
if (data.length === 0) {
|
|
25721
|
-
|
|
25722
|
+
const emptyNode = /* @__PURE__ */ jsx(Box, { className: "text-center py-12", children: /* @__PURE__ */ jsx(Typography, { variant: "body", color: "secondary", children: t("empty.noItems") || "No items found" }) });
|
|
25723
|
+
return dnd.enabled ? /* @__PURE__ */ jsx(Fragment, { children: dnd.wrapContainer(emptyNode) }) : emptyNode;
|
|
25722
25724
|
}
|
|
25723
25725
|
const gapClass = {
|
|
25724
25726
|
none: "",
|
|
@@ -20546,7 +20546,8 @@ function DataGrid({
|
|
|
20546
20546
|
return /* @__PURE__ */ jsxRuntime.jsx(exports.Box, { className: "text-center py-8", children: /* @__PURE__ */ jsxRuntime.jsx(exports.Typography, { variant: "body", color: "error", children: error.message }) });
|
|
20547
20547
|
}
|
|
20548
20548
|
if (data.length === 0) {
|
|
20549
|
-
|
|
20549
|
+
const emptyNode = /* @__PURE__ */ jsxRuntime.jsx(exports.Box, { className: "text-center py-12", children: /* @__PURE__ */ jsxRuntime.jsx(exports.Typography, { variant: "body", color: "secondary", children: t("empty.noItems") || "No items found" }) });
|
|
20550
|
+
return dnd.enabled ? /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: dnd.wrapContainer(emptyNode) }) : emptyNode;
|
|
20550
20551
|
}
|
|
20551
20552
|
const allIds = data.map((item, i) => item.id || String(i));
|
|
20552
20553
|
const allSelected = allIds.length > 0 && allIds.every((id) => selectedIds.has(id));
|
|
@@ -20931,7 +20932,8 @@ function DataList({
|
|
|
20931
20932
|
return /* @__PURE__ */ jsxRuntime.jsx(exports.Box, { className: "text-center py-8", children: /* @__PURE__ */ jsxRuntime.jsx(exports.Typography, { variant: "body", color: "error", children: error.message }) });
|
|
20932
20933
|
}
|
|
20933
20934
|
if (data.length === 0) {
|
|
20934
|
-
|
|
20935
|
+
const emptyNode = /* @__PURE__ */ jsxRuntime.jsx(exports.Box, { className: "text-center py-12", children: /* @__PURE__ */ jsxRuntime.jsx(exports.Typography, { variant: "body", color: "secondary", children: t("empty.noItems") || "No items found" }) });
|
|
20936
|
+
return dnd.enabled ? /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: dnd.wrapContainer(emptyNode) }) : emptyNode;
|
|
20935
20937
|
}
|
|
20936
20938
|
const gapClass = {
|
|
20937
20939
|
none: "",
|
package/dist/components/index.js
CHANGED
|
@@ -20500,7 +20500,8 @@ function DataGrid({
|
|
|
20500
20500
|
return /* @__PURE__ */ jsx(Box, { className: "text-center py-8", children: /* @__PURE__ */ jsx(Typography, { variant: "body", color: "error", children: error.message }) });
|
|
20501
20501
|
}
|
|
20502
20502
|
if (data.length === 0) {
|
|
20503
|
-
|
|
20503
|
+
const emptyNode = /* @__PURE__ */ jsx(Box, { className: "text-center py-12", children: /* @__PURE__ */ jsx(Typography, { variant: "body", color: "secondary", children: t("empty.noItems") || "No items found" }) });
|
|
20504
|
+
return dnd.enabled ? /* @__PURE__ */ jsx(Fragment, { children: dnd.wrapContainer(emptyNode) }) : emptyNode;
|
|
20504
20505
|
}
|
|
20505
20506
|
const allIds = data.map((item, i) => item.id || String(i));
|
|
20506
20507
|
const allSelected = allIds.length > 0 && allIds.every((id) => selectedIds.has(id));
|
|
@@ -20885,7 +20886,8 @@ function DataList({
|
|
|
20885
20886
|
return /* @__PURE__ */ jsx(Box, { className: "text-center py-8", children: /* @__PURE__ */ jsx(Typography, { variant: "body", color: "error", children: error.message }) });
|
|
20886
20887
|
}
|
|
20887
20888
|
if (data.length === 0) {
|
|
20888
|
-
|
|
20889
|
+
const emptyNode = /* @__PURE__ */ jsx(Box, { className: "text-center py-12", children: /* @__PURE__ */ jsx(Typography, { variant: "body", color: "secondary", children: t("empty.noItems") || "No items found" }) });
|
|
20890
|
+
return dnd.enabled ? /* @__PURE__ */ jsx(Fragment, { children: dnd.wrapContainer(emptyNode) }) : emptyNode;
|
|
20889
20891
|
}
|
|
20890
20892
|
const gapClass = {
|
|
20891
20893
|
none: "",
|
package/dist/providers/index.cjs
CHANGED
|
@@ -21791,7 +21791,8 @@ function DataGrid({
|
|
|
21791
21791
|
return /* @__PURE__ */ jsxRuntime.jsx(Box, { className: "text-center py-8", children: /* @__PURE__ */ jsxRuntime.jsx(Typography, { variant: "body", color: "error", children: error.message }) });
|
|
21792
21792
|
}
|
|
21793
21793
|
if (data.length === 0) {
|
|
21794
|
-
|
|
21794
|
+
const emptyNode = /* @__PURE__ */ jsxRuntime.jsx(Box, { className: "text-center py-12", children: /* @__PURE__ */ jsxRuntime.jsx(Typography, { variant: "body", color: "secondary", children: t("empty.noItems") || "No items found" }) });
|
|
21795
|
+
return dnd.enabled ? /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: dnd.wrapContainer(emptyNode) }) : emptyNode;
|
|
21795
21796
|
}
|
|
21796
21797
|
const allIds = data.map((item, i) => item.id || String(i));
|
|
21797
21798
|
const allSelected = allIds.length > 0 && allIds.every((id) => selectedIds.has(id));
|
|
@@ -22176,7 +22177,8 @@ function DataList({
|
|
|
22176
22177
|
return /* @__PURE__ */ jsxRuntime.jsx(Box, { className: "text-center py-8", children: /* @__PURE__ */ jsxRuntime.jsx(Typography, { variant: "body", color: "error", children: error.message }) });
|
|
22177
22178
|
}
|
|
22178
22179
|
if (data.length === 0) {
|
|
22179
|
-
|
|
22180
|
+
const emptyNode = /* @__PURE__ */ jsxRuntime.jsx(Box, { className: "text-center py-12", children: /* @__PURE__ */ jsxRuntime.jsx(Typography, { variant: "body", color: "secondary", children: t("empty.noItems") || "No items found" }) });
|
|
22181
|
+
return dnd.enabled ? /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: dnd.wrapContainer(emptyNode) }) : emptyNode;
|
|
22180
22182
|
}
|
|
22181
22183
|
const gapClass = {
|
|
22182
22184
|
none: "",
|
package/dist/providers/index.js
CHANGED
|
@@ -21745,7 +21745,8 @@ function DataGrid({
|
|
|
21745
21745
|
return /* @__PURE__ */ jsx(Box, { className: "text-center py-8", children: /* @__PURE__ */ jsx(Typography, { variant: "body", color: "error", children: error.message }) });
|
|
21746
21746
|
}
|
|
21747
21747
|
if (data.length === 0) {
|
|
21748
|
-
|
|
21748
|
+
const emptyNode = /* @__PURE__ */ jsx(Box, { className: "text-center py-12", children: /* @__PURE__ */ jsx(Typography, { variant: "body", color: "secondary", children: t("empty.noItems") || "No items found" }) });
|
|
21749
|
+
return dnd.enabled ? /* @__PURE__ */ jsx(Fragment, { children: dnd.wrapContainer(emptyNode) }) : emptyNode;
|
|
21749
21750
|
}
|
|
21750
21751
|
const allIds = data.map((item, i) => item.id || String(i));
|
|
21751
21752
|
const allSelected = allIds.length > 0 && allIds.every((id) => selectedIds.has(id));
|
|
@@ -22130,7 +22131,8 @@ function DataList({
|
|
|
22130
22131
|
return /* @__PURE__ */ jsx(Box, { className: "text-center py-8", children: /* @__PURE__ */ jsx(Typography, { variant: "body", color: "error", children: error.message }) });
|
|
22131
22132
|
}
|
|
22132
22133
|
if (data.length === 0) {
|
|
22133
|
-
|
|
22134
|
+
const emptyNode = /* @__PURE__ */ jsx(Box, { className: "text-center py-12", children: /* @__PURE__ */ jsx(Typography, { variant: "body", color: "secondary", children: t("empty.noItems") || "No items found" }) });
|
|
22135
|
+
return dnd.enabled ? /* @__PURE__ */ jsx(Fragment, { children: dnd.wrapContainer(emptyNode) }) : emptyNode;
|
|
22134
22136
|
}
|
|
22135
22137
|
const gapClass = {
|
|
22136
22138
|
none: "",
|
package/dist/runtime/index.cjs
CHANGED
|
@@ -21560,7 +21560,8 @@ function DataGrid({
|
|
|
21560
21560
|
return /* @__PURE__ */ jsxRuntime.jsx(Box, { className: "text-center py-8", children: /* @__PURE__ */ jsxRuntime.jsx(Typography, { variant: "body", color: "error", children: error.message }) });
|
|
21561
21561
|
}
|
|
21562
21562
|
if (data.length === 0) {
|
|
21563
|
-
|
|
21563
|
+
const emptyNode = /* @__PURE__ */ jsxRuntime.jsx(Box, { className: "text-center py-12", children: /* @__PURE__ */ jsxRuntime.jsx(Typography, { variant: "body", color: "secondary", children: t("empty.noItems") || "No items found" }) });
|
|
21564
|
+
return dnd.enabled ? /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: dnd.wrapContainer(emptyNode) }) : emptyNode;
|
|
21564
21565
|
}
|
|
21565
21566
|
const allIds = data.map((item, i) => item.id || String(i));
|
|
21566
21567
|
const allSelected = allIds.length > 0 && allIds.every((id) => selectedIds.has(id));
|
|
@@ -21945,7 +21946,8 @@ function DataList({
|
|
|
21945
21946
|
return /* @__PURE__ */ jsxRuntime.jsx(Box, { className: "text-center py-8", children: /* @__PURE__ */ jsxRuntime.jsx(Typography, { variant: "body", color: "error", children: error.message }) });
|
|
21946
21947
|
}
|
|
21947
21948
|
if (data.length === 0) {
|
|
21948
|
-
|
|
21949
|
+
const emptyNode = /* @__PURE__ */ jsxRuntime.jsx(Box, { className: "text-center py-12", children: /* @__PURE__ */ jsxRuntime.jsx(Typography, { variant: "body", color: "secondary", children: t("empty.noItems") || "No items found" }) });
|
|
21950
|
+
return dnd.enabled ? /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: dnd.wrapContainer(emptyNode) }) : emptyNode;
|
|
21949
21951
|
}
|
|
21950
21952
|
const gapClass = {
|
|
21951
21953
|
none: "",
|
package/dist/runtime/index.js
CHANGED
|
@@ -21514,7 +21514,8 @@ function DataGrid({
|
|
|
21514
21514
|
return /* @__PURE__ */ jsx(Box, { className: "text-center py-8", children: /* @__PURE__ */ jsx(Typography, { variant: "body", color: "error", children: error.message }) });
|
|
21515
21515
|
}
|
|
21516
21516
|
if (data.length === 0) {
|
|
21517
|
-
|
|
21517
|
+
const emptyNode = /* @__PURE__ */ jsx(Box, { className: "text-center py-12", children: /* @__PURE__ */ jsx(Typography, { variant: "body", color: "secondary", children: t("empty.noItems") || "No items found" }) });
|
|
21518
|
+
return dnd.enabled ? /* @__PURE__ */ jsx(Fragment, { children: dnd.wrapContainer(emptyNode) }) : emptyNode;
|
|
21518
21519
|
}
|
|
21519
21520
|
const allIds = data.map((item, i) => item.id || String(i));
|
|
21520
21521
|
const allSelected = allIds.length > 0 && allIds.every((id) => selectedIds.has(id));
|
|
@@ -21899,7 +21900,8 @@ function DataList({
|
|
|
21899
21900
|
return /* @__PURE__ */ jsx(Box, { className: "text-center py-8", children: /* @__PURE__ */ jsx(Typography, { variant: "body", color: "error", children: error.message }) });
|
|
21900
21901
|
}
|
|
21901
21902
|
if (data.length === 0) {
|
|
21902
|
-
|
|
21903
|
+
const emptyNode = /* @__PURE__ */ jsx(Box, { className: "text-center py-12", children: /* @__PURE__ */ jsx(Typography, { variant: "body", color: "secondary", children: t("empty.noItems") || "No items found" }) });
|
|
21904
|
+
return dnd.enabled ? /* @__PURE__ */ jsx(Fragment, { children: dnd.wrapContainer(emptyNode) }) : emptyNode;
|
|
21903
21905
|
}
|
|
21904
21906
|
const gapClass = {
|
|
21905
21907
|
none: "",
|