@almadar/ui 2.50.0 → 2.50.1
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
CHANGED
|
@@ -44627,7 +44627,7 @@ var Timeline = ({
|
|
|
44627
44627
|
title && /* @__PURE__ */ jsxRuntime.jsx(Typography, { variant: "h5", weight: "semibold", children: title }),
|
|
44628
44628
|
/* @__PURE__ */ jsxRuntime.jsx(VStack, { gap: "none", className: "relative", children: items.map((item, idx) => {
|
|
44629
44629
|
const status = item.status || "pending";
|
|
44630
|
-
const style = STATUS_STYLES3[status];
|
|
44630
|
+
const style = STATUS_STYLES3[status] || STATUS_STYLES3.pending;
|
|
44631
44631
|
const ItemIcon = item.icon || style.icon;
|
|
44632
44632
|
const isLast = idx === items.length - 1;
|
|
44633
44633
|
return /* @__PURE__ */ jsxRuntime.jsxs(HStack, { gap: "md", align: "start", className: "relative", children: [
|
package/dist/avl/index.js
CHANGED
|
@@ -44581,7 +44581,7 @@ var Timeline = ({
|
|
|
44581
44581
|
title && /* @__PURE__ */ jsx(Typography, { variant: "h5", weight: "semibold", children: title }),
|
|
44582
44582
|
/* @__PURE__ */ jsx(VStack, { gap: "none", className: "relative", children: items.map((item, idx) => {
|
|
44583
44583
|
const status = item.status || "pending";
|
|
44584
|
-
const style = STATUS_STYLES3[status];
|
|
44584
|
+
const style = STATUS_STYLES3[status] || STATUS_STYLES3.pending;
|
|
44585
44585
|
const ItemIcon = item.icon || style.icon;
|
|
44586
44586
|
const isLast = idx === items.length - 1;
|
|
44587
44587
|
return /* @__PURE__ */ jsxs(HStack, { gap: "md", align: "start", className: "relative", children: [
|
|
@@ -34914,7 +34914,7 @@ var Timeline = ({
|
|
|
34914
34914
|
title && /* @__PURE__ */ jsxRuntime.jsx(exports.Typography, { variant: "h5", weight: "semibold", children: title }),
|
|
34915
34915
|
/* @__PURE__ */ jsxRuntime.jsx(VStack, { gap: "none", className: "relative", children: items.map((item, idx) => {
|
|
34916
34916
|
const status = item.status || "pending";
|
|
34917
|
-
const style = STATUS_STYLES3[status];
|
|
34917
|
+
const style = STATUS_STYLES3[status] || STATUS_STYLES3.pending;
|
|
34918
34918
|
const ItemIcon = item.icon || style.icon;
|
|
34919
34919
|
const isLast = idx === items.length - 1;
|
|
34920
34920
|
return /* @__PURE__ */ jsxRuntime.jsxs(HStack, { gap: "md", align: "start", className: "relative", children: [
|
package/dist/components/index.js
CHANGED
|
@@ -34869,7 +34869,7 @@ var Timeline = ({
|
|
|
34869
34869
|
title && /* @__PURE__ */ jsx(Typography, { variant: "h5", weight: "semibold", children: title }),
|
|
34870
34870
|
/* @__PURE__ */ jsx(VStack, { gap: "none", className: "relative", children: items.map((item, idx) => {
|
|
34871
34871
|
const status = item.status || "pending";
|
|
34872
|
-
const style = STATUS_STYLES3[status];
|
|
34872
|
+
const style = STATUS_STYLES3[status] || STATUS_STYLES3.pending;
|
|
34873
34873
|
const ItemIcon = item.icon || style.icon;
|
|
34874
34874
|
const isLast = idx === items.length - 1;
|
|
34875
34875
|
return /* @__PURE__ */ jsxs(HStack, { gap: "md", align: "start", className: "relative", children: [
|
package/dist/runtime/index.cjs
CHANGED
|
@@ -32022,7 +32022,7 @@ var Timeline = ({
|
|
|
32022
32022
|
title && /* @__PURE__ */ jsxRuntime.jsx(Typography, { variant: "h5", weight: "semibold", children: title }),
|
|
32023
32023
|
/* @__PURE__ */ jsxRuntime.jsx(VStack, { gap: "none", className: "relative", children: items.map((item, idx) => {
|
|
32024
32024
|
const status = item.status || "pending";
|
|
32025
|
-
const style = STATUS_STYLES3[status];
|
|
32025
|
+
const style = STATUS_STYLES3[status] || STATUS_STYLES3.pending;
|
|
32026
32026
|
const ItemIcon = item.icon || style.icon;
|
|
32027
32027
|
const isLast = idx === items.length - 1;
|
|
32028
32028
|
return /* @__PURE__ */ jsxRuntime.jsxs(HStack, { gap: "md", align: "start", className: "relative", children: [
|
package/dist/runtime/index.js
CHANGED
|
@@ -31977,7 +31977,7 @@ var Timeline = ({
|
|
|
31977
31977
|
title && /* @__PURE__ */ jsx(Typography, { variant: "h5", weight: "semibold", children: title }),
|
|
31978
31978
|
/* @__PURE__ */ jsx(VStack, { gap: "none", className: "relative", children: items.map((item, idx) => {
|
|
31979
31979
|
const status = item.status || "pending";
|
|
31980
|
-
const style = STATUS_STYLES3[status];
|
|
31980
|
+
const style = STATUS_STYLES3[status] || STATUS_STYLES3.pending;
|
|
31981
31981
|
const ItemIcon = item.icon || style.icon;
|
|
31982
31982
|
const isLast = idx === items.length - 1;
|
|
31983
31983
|
return /* @__PURE__ */ jsxs(HStack, { gap: "md", align: "start", className: "relative", children: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/ui",
|
|
3
|
-
"version": "2.50.
|
|
3
|
+
"version": "2.50.1",
|
|
4
4
|
"description": "React UI components, hooks, and providers for Almadar",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/components/index.js",
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"@almadar/evaluator": ">=2.5.4",
|
|
123
123
|
"@almadar/patterns": ">=2.10.0",
|
|
124
124
|
"@almadar/std": ">=5.2.0",
|
|
125
|
-
"@almadar/syntax": ">=1.2.
|
|
125
|
+
"@almadar/syntax": ">=1.2.1",
|
|
126
126
|
"@almadar/runtime": ">=2.0.0",
|
|
127
127
|
"@xyflow/react": "12.10.1",
|
|
128
128
|
"clsx": "^2.1.0",
|