@flamingo-stack/openframe-frontend-core 0.0.196 → 0.0.197

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.
Files changed (45) hide show
  1. package/dist/chunk-4CWSZPXH.cjs.map +1 -1
  2. package/dist/{chunk-BXPH5SOL.js → chunk-GIQZAYY5.js} +25 -12
  3. package/dist/{chunk-BXPH5SOL.js.map → chunk-GIQZAYY5.js.map} +1 -1
  4. package/dist/{chunk-E6AWU7EI.cjs → chunk-IMDXOVYD.cjs} +25 -12
  5. package/dist/chunk-IMDXOVYD.cjs.map +1 -0
  6. package/dist/chunk-OII2IERE.cjs.map +1 -1
  7. package/dist/chunk-UC43NICZ.cjs.map +1 -1
  8. package/dist/chunk-V2FNIPZJ.cjs.map +1 -1
  9. package/dist/chunk-VJTFBYVG.cjs.map +1 -1
  10. package/dist/chunk-VRHGVLSL.cjs.map +1 -1
  11. package/dist/chunk-WZW7C7TF.cjs.map +1 -1
  12. package/dist/chunk-XQFFGR6U.cjs.map +1 -1
  13. package/dist/components/chart.d.ts +7 -14
  14. package/dist/components/chart.d.ts.map +1 -1
  15. package/dist/components/features/board/ticket-card-skeleton.d.ts.map +1 -1
  16. package/dist/components/features/board/ticket-card.d.ts.map +1 -1
  17. package/dist/components/features/index.cjs +2 -2
  18. package/dist/components/features/index.cjs.map +1 -1
  19. package/dist/components/features/index.js +1 -1
  20. package/dist/components/icons/index.cjs.map +1 -1
  21. package/dist/components/icons-v2-generated/index.cjs.map +1 -1
  22. package/dist/components/index.cjs +2 -2
  23. package/dist/components/index.cjs.map +1 -1
  24. package/dist/components/index.js +1 -1
  25. package/dist/components/navigation/index.cjs +2 -2
  26. package/dist/components/navigation/index.cjs.map +1 -1
  27. package/dist/components/navigation/index.js +1 -1
  28. package/dist/components/resizable.d.ts +1 -1
  29. package/dist/components/toast/index.cjs.map +1 -1
  30. package/dist/components/ui/file-manager/index.cjs.map +1 -1
  31. package/dist/components/ui/index.cjs +2 -2
  32. package/dist/components/ui/index.cjs.map +1 -1
  33. package/dist/components/ui/index.js +1 -1
  34. package/dist/hooks/index.cjs.map +1 -1
  35. package/dist/index.cjs +2 -2
  36. package/dist/index.cjs.map +1 -1
  37. package/dist/index.js +1 -1
  38. package/dist/tailwind.config.cjs +7 -7
  39. package/dist/tailwind.config.cjs.map +1 -1
  40. package/dist/tailwind.config.js +7 -7
  41. package/dist/tailwind.config.js.map +1 -1
  42. package/package.json +1 -1
  43. package/src/components/features/board/ticket-card-skeleton.tsx +16 -4
  44. package/src/components/features/board/ticket-card.tsx +6 -4
  45. package/dist/chunk-E6AWU7EI.cjs.map +0 -1
@@ -33306,7 +33306,7 @@ function TicketCard({
33306
33306
  ] }) : null;
33307
33307
  const body = /* @__PURE__ */ jsxs243(Fragment45, { children: [
33308
33308
  /* @__PURE__ */ jsxs243("div", { className: "flex items-start gap-[var(--spacing-system-sf)]", children: [
33309
- /* @__PURE__ */ jsxs243("div", { className: "flex min-w-0 flex-1 flex-col gap-[var(--spacing-system-xxs)]", children: [
33309
+ /* @__PURE__ */ jsxs243("div", { className: "flex min-w-0 flex-1 flex-col gap-[var(--spacing-system-zero)]", children: [
33310
33310
  /* @__PURE__ */ jsx296("p", { className: "text-h3 truncate text-ods-text-primary", children: ticket.title }),
33311
33311
  showDeviceRow && /* @__PURE__ */ jsxs243("div", { className: "flex min-w-0 items-center gap-[var(--spacing-system-xxs)] text-h6 text-ods-text-secondary", children: [
33312
33312
  /* @__PURE__ */ jsx296(LaptopIcon, { className: "size-4 shrink-0" }),
@@ -33330,8 +33330,9 @@ function TicketCard({
33330
33330
  ...isOverlay ? {} : sortable.attributes,
33331
33331
  ...isOverlay ? {} : sortable.listeners
33332
33332
  };
33333
+ const innerWrapperClass = "relative z-10 flex flex-col gap-[var(--spacing-system-sf)]";
33333
33334
  if (isOverlay) {
33334
- return /* @__PURE__ */ jsx296("div", { ...outerProps, children: /* @__PURE__ */ jsx296("div", { className: "relative z-10", children: body }) });
33335
+ return /* @__PURE__ */ jsx296("div", { ...outerProps, children: /* @__PURE__ */ jsx296("div", { className: innerWrapperClass, children: body }) });
33335
33336
  }
33336
33337
  if (href) {
33337
33338
  return /* @__PURE__ */ jsxs243("div", { ...outerProps, children: [
@@ -33346,7 +33347,7 @@ function TicketCard({
33346
33347
  className: "absolute inset-0 z-0 rounded-md focus-visible:outline-none"
33347
33348
  }
33348
33349
  ),
33349
- /* @__PURE__ */ jsx296("div", { className: "pointer-events-none relative z-10", children: body })
33350
+ /* @__PURE__ */ jsx296("div", { className: cn("pointer-events-none", innerWrapperClass), children: body })
33350
33351
  ] });
33351
33352
  }
33352
33353
  return /* @__PURE__ */ jsxs243("div", { ...outerProps, children: [
@@ -33359,7 +33360,7 @@ function TicketCard({
33359
33360
  className: "absolute inset-0 z-0 cursor-pointer rounded-md focus-visible:outline-none"
33360
33361
  }
33361
33362
  ),
33362
- /* @__PURE__ */ jsx296("div", { className: "pointer-events-none relative z-10", children: body })
33363
+ /* @__PURE__ */ jsx296("div", { className: cn("pointer-events-none", innerWrapperClass), children: body })
33363
33364
  ] });
33364
33365
  }
33365
33366
  function TicketTagRow({ tags }) {
@@ -33376,7 +33377,7 @@ import * as React100 from "react";
33376
33377
  init_cn();
33377
33378
  import { jsx as jsx297, jsxs as jsxs244 } from "react/jsx-runtime";
33378
33379
  var TicketCardSkeleton = React100.forwardRef(
33379
- ({ className, ...props }, ref) => /* @__PURE__ */ jsx297(
33380
+ ({ className, ...props }, ref) => /* @__PURE__ */ jsxs244(
33380
33381
  "div",
33381
33382
  {
33382
33383
  ref,
@@ -33385,13 +33386,25 @@ var TicketCardSkeleton = React100.forwardRef(
33385
33386
  className
33386
33387
  ),
33387
33388
  ...props,
33388
- children: /* @__PURE__ */ jsxs244("div", { className: "flex items-start gap-[var(--spacing-system-sf)]", children: [
33389
- /* @__PURE__ */ jsxs244("div", { className: "flex flex-1 flex-col gap-[var(--spacing-system-xsf)]", children: [
33390
- /* @__PURE__ */ jsx297(Skeleton, { className: "h-5 w-3/4" }),
33391
- /* @__PURE__ */ jsx297(Skeleton, { className: "h-4 w-1/2" })
33389
+ children: [
33390
+ /* @__PURE__ */ jsxs244("div", { className: "flex items-start gap-[var(--spacing-system-sf)]", children: [
33391
+ /* @__PURE__ */ jsxs244("div", { className: "flex min-w-0 flex-1 flex-col gap-[var(--spacing-system-xxs)]", children: [
33392
+ /* @__PURE__ */ jsx297("div", { className: "text-h3 flex items-center", children: /* @__PURE__ */ jsx297(Skeleton, { className: "h-4 w-3/4" }) }),
33393
+ /* @__PURE__ */ jsxs244("div", { className: "text-h6 flex items-center gap-[var(--spacing-system-xxs)]", children: [
33394
+ /* @__PURE__ */ jsx297(Skeleton, { className: "size-4 shrink-0 rounded-sm" }),
33395
+ /* @__PURE__ */ jsx297(Skeleton, { className: "h-3 w-1/2" })
33396
+ ] })
33397
+ ] }),
33398
+ /* @__PURE__ */ jsxs244("div", { className: "flex shrink-0 items-center gap-[var(--spacing-system-xsf)]", children: [
33399
+ /* @__PURE__ */ jsx297(Skeleton, { className: "size-4 rounded-sm" }),
33400
+ /* @__PURE__ */ jsx297(Skeleton, { className: "size-8 rounded-full" })
33401
+ ] })
33392
33402
  ] }),
33393
- /* @__PURE__ */ jsx297(Skeleton, { className: "size-8 rounded-full" })
33394
- ] })
33403
+ /* @__PURE__ */ jsxs244("div", { className: "flex h-8 items-center gap-[var(--spacing-system-xxs)]", children: [
33404
+ /* @__PURE__ */ jsx297(Skeleton, { className: "h-8 w-16 rounded-md" }),
33405
+ /* @__PURE__ */ jsx297(Skeleton, { className: "h-8 w-12 rounded-md" })
33406
+ ] })
33407
+ ]
33395
33408
  }
33396
33409
  )
33397
33410
  );
@@ -34472,4 +34485,4 @@ export {
34472
34485
  TMCG_SOCIAL_PLATFORMS,
34473
34486
  assets
34474
34487
  };
34475
- //# sourceMappingURL=chunk-BXPH5SOL.js.map
34488
+ //# sourceMappingURL=chunk-GIQZAYY5.js.map