@apteva/apteva-kit 0.1.106 → 0.1.107

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/index.d.mts CHANGED
@@ -502,6 +502,7 @@ interface InterfaceUpdate {
502
502
  interface KpiWidget extends Widget {
503
503
  type: 'kpi';
504
504
  props: {
505
+ title?: string;
505
506
  label: string;
506
507
  value: string | number;
507
508
  change?: string;
package/dist/index.d.ts CHANGED
@@ -502,6 +502,7 @@ interface InterfaceUpdate {
502
502
  interface KpiWidget extends Widget {
503
503
  type: 'kpi';
504
504
  props: {
505
+ title?: string;
505
506
  label: string;
506
507
  value: string | number;
507
508
  change?: string;
package/dist/index.js CHANGED
@@ -1854,9 +1854,10 @@ var trendIcons = {
1854
1854
  flat: { symbol: "\u2192", color: "text-neutral-400" }
1855
1855
  };
1856
1856
  function Kpi({ widget, onAction }) {
1857
- const { label = "", value = "", change, trend } = widget.props || {};
1857
+ const { title, label = "", value = "", change, trend } = widget.props || {};
1858
1858
  const trendInfo = trend ? trendIcons[trend] : null;
1859
1859
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "border border-neutral-200 dark:border-neutral-700 rounded-xl bg-white dark:bg-neutral-900 p-5", children: [
1860
+ title && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "h3", { className: "!text-base font-semibold !text-neutral-900 dark:!text-white mb-3", children: title }),
1860
1861
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "!text-sm font-medium !text-neutral-500 dark:!text-neutral-400 mb-1", children: label }),
1861
1862
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-end gap-2", children: [
1862
1863
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "!text-2xl font-bold !text-neutral-900 dark:!text-white", children: value }),