@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.
- package/dist/chunk-4CWSZPXH.cjs.map +1 -1
- package/dist/{chunk-BXPH5SOL.js → chunk-GIQZAYY5.js} +25 -12
- package/dist/{chunk-BXPH5SOL.js.map → chunk-GIQZAYY5.js.map} +1 -1
- package/dist/{chunk-E6AWU7EI.cjs → chunk-IMDXOVYD.cjs} +25 -12
- package/dist/chunk-IMDXOVYD.cjs.map +1 -0
- package/dist/chunk-OII2IERE.cjs.map +1 -1
- package/dist/chunk-UC43NICZ.cjs.map +1 -1
- package/dist/chunk-V2FNIPZJ.cjs.map +1 -1
- package/dist/chunk-VJTFBYVG.cjs.map +1 -1
- package/dist/chunk-VRHGVLSL.cjs.map +1 -1
- package/dist/chunk-WZW7C7TF.cjs.map +1 -1
- package/dist/chunk-XQFFGR6U.cjs.map +1 -1
- package/dist/components/chart.d.ts +7 -14
- package/dist/components/chart.d.ts.map +1 -1
- package/dist/components/features/board/ticket-card-skeleton.d.ts.map +1 -1
- package/dist/components/features/board/ticket-card.d.ts.map +1 -1
- package/dist/components/features/index.cjs +2 -2
- package/dist/components/features/index.cjs.map +1 -1
- package/dist/components/features/index.js +1 -1
- package/dist/components/icons/index.cjs.map +1 -1
- package/dist/components/icons-v2-generated/index.cjs.map +1 -1
- package/dist/components/index.cjs +2 -2
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.js +1 -1
- package/dist/components/navigation/index.cjs +2 -2
- package/dist/components/navigation/index.cjs.map +1 -1
- package/dist/components/navigation/index.js +1 -1
- package/dist/components/resizable.d.ts +1 -1
- package/dist/components/toast/index.cjs.map +1 -1
- package/dist/components/ui/file-manager/index.cjs.map +1 -1
- package/dist/components/ui/index.cjs +2 -2
- package/dist/components/ui/index.cjs.map +1 -1
- package/dist/components/ui/index.js +1 -1
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/tailwind.config.cjs +7 -7
- package/dist/tailwind.config.cjs.map +1 -1
- package/dist/tailwind.config.js +7 -7
- package/dist/tailwind.config.js.map +1 -1
- package/package.json +1 -1
- package/src/components/features/board/ticket-card-skeleton.tsx +16 -4
- package/src/components/features/board/ticket-card.tsx +6 -4
- package/dist/chunk-E6AWU7EI.cjs.map +0 -1
|
@@ -17,11 +17,23 @@ export const TicketCardSkeleton = React.forwardRef<HTMLDivElement, TicketCardSke
|
|
|
17
17
|
{...props}
|
|
18
18
|
>
|
|
19
19
|
<div className="flex items-start gap-[var(--spacing-system-sf)]">
|
|
20
|
-
<div className="flex flex-1 flex-col gap-[var(--spacing-system-
|
|
21
|
-
<
|
|
22
|
-
|
|
20
|
+
<div className="flex min-w-0 flex-1 flex-col gap-[var(--spacing-system-xxs)]">
|
|
21
|
+
<div className="text-h3 flex items-center">
|
|
22
|
+
<Skeleton className="h-4 w-3/4" />
|
|
23
|
+
</div>
|
|
24
|
+
<div className="text-h6 flex items-center gap-[var(--spacing-system-xxs)]">
|
|
25
|
+
<Skeleton className="size-4 shrink-0 rounded-sm" />
|
|
26
|
+
<Skeleton className="h-3 w-1/2" />
|
|
27
|
+
</div>
|
|
23
28
|
</div>
|
|
24
|
-
<
|
|
29
|
+
<div className="flex shrink-0 items-center gap-[var(--spacing-system-xsf)]">
|
|
30
|
+
<Skeleton className="size-4 rounded-sm" />
|
|
31
|
+
<Skeleton className="size-8 rounded-full" />
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|
|
34
|
+
<div className="flex h-8 items-center gap-[var(--spacing-system-xxs)]">
|
|
35
|
+
<Skeleton className="h-8 w-16 rounded-md" />
|
|
36
|
+
<Skeleton className="h-8 w-12 rounded-md" />
|
|
25
37
|
</div>
|
|
26
38
|
</div>
|
|
27
39
|
),
|
|
@@ -99,7 +99,7 @@ export function TicketCard({
|
|
|
99
99
|
const body = (
|
|
100
100
|
<>
|
|
101
101
|
<div className="flex items-start gap-[var(--spacing-system-sf)]">
|
|
102
|
-
<div className="flex min-w-0 flex-1 flex-col gap-[var(--spacing-system-
|
|
102
|
+
<div className="flex min-w-0 flex-1 flex-col gap-[var(--spacing-system-zero)]">
|
|
103
103
|
<p className="text-h3 truncate text-ods-text-primary">{ticket.title}</p>
|
|
104
104
|
{showDeviceRow && (
|
|
105
105
|
<div className="flex min-w-0 items-center gap-[var(--spacing-system-xxs)] text-h6 text-ods-text-secondary">
|
|
@@ -129,10 +129,12 @@ export function TicketCard({
|
|
|
129
129
|
...(isOverlay ? {} : sortable.listeners),
|
|
130
130
|
}
|
|
131
131
|
|
|
132
|
+
const innerWrapperClass = 'relative z-10 flex flex-col gap-[var(--spacing-system-sf)]'
|
|
133
|
+
|
|
132
134
|
if (isOverlay) {
|
|
133
135
|
return (
|
|
134
136
|
<div {...outerProps}>
|
|
135
|
-
<div className=
|
|
137
|
+
<div className={innerWrapperClass}>{body}</div>
|
|
136
138
|
</div>
|
|
137
139
|
)
|
|
138
140
|
}
|
|
@@ -148,7 +150,7 @@ export function TicketCard({
|
|
|
148
150
|
aria-label={ticket.title}
|
|
149
151
|
className="absolute inset-0 z-0 rounded-md focus-visible:outline-none"
|
|
150
152
|
/>
|
|
151
|
-
<div className=
|
|
153
|
+
<div className={cn('pointer-events-none', innerWrapperClass)}>{body}</div>
|
|
152
154
|
</div>
|
|
153
155
|
)
|
|
154
156
|
}
|
|
@@ -161,7 +163,7 @@ export function TicketCard({
|
|
|
161
163
|
aria-label={ticket.title}
|
|
162
164
|
className="absolute inset-0 z-0 cursor-pointer rounded-md focus-visible:outline-none"
|
|
163
165
|
/>
|
|
164
|
-
<div className=
|
|
166
|
+
<div className={cn('pointer-events-none', innerWrapperClass)}>{body}</div>
|
|
165
167
|
</div>
|
|
166
168
|
)
|
|
167
169
|
}
|