@softize/opus 12.5.1 → 12.5.3
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/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,22 @@ Depois de qualquer bump, rode os gates (`typecheck` · `test` · `opus check` ·
|
|
|
7
7
|
`opus copy --check` · `base copy check` · `manifest:check`) — eles apontam o que a
|
|
8
8
|
mudança cobra do seu código.
|
|
9
9
|
|
|
10
|
+
## 12.5.3 — 2026-08-24
|
|
11
|
+
|
|
12
|
+
O roving tabindex da `Dock` sobrevive ao re-render do consumidor. Antes o efeito devolvia o ponto
|
|
13
|
+
de entrada ao primeiro ícone a cada render da tela em volta, tirando do Tab justamente o botão em
|
|
14
|
+
foco — a barra prometia um ponto de entrada e entregava outro assim que qualquer estado mudava.
|
|
15
|
+
|
|
16
|
+
## 12.5.2 — 2026-08-24
|
|
17
|
+
|
|
18
|
+
`SidebarItem` aplica `className` sempre na linha, recolhida ou aberta. Antes a prop mudava de alvo
|
|
19
|
+
conforme o rail — ia para o botão no modo recolhido e para a linha no aberto —, e o consumidor não
|
|
20
|
+
tinha como saber o que estava estilizando.
|
|
21
|
+
|
|
22
|
+
O controle de desdobrar também deixa de depender de `icon`. Um item com `onToggle` e sem ícone
|
|
23
|
+
perdia o chevron em silêncio; agora ele ocupa sozinho o lugar do leading e fica visível, já que não
|
|
24
|
+
há ícone para revezar com ele no hover.
|
|
25
|
+
|
|
10
26
|
## 12.5.1 — 2026-08-24
|
|
11
27
|
|
|
12
28
|
`Dock` passa a fazer o roving tabindex que uma `toolbar` promete: a barra tem um único ponto de
|
package/package.json
CHANGED
|
@@ -45,7 +45,10 @@ export function Dock({ position = 'bottom', label, className, children }: DockPr
|
|
|
45
45
|
}, [])
|
|
46
46
|
|
|
47
47
|
React.useEffect(() => {
|
|
48
|
-
|
|
48
|
+
// Passa o foco corrente: sem isto, todo re-render do consumidor devolvia o ponto de entrada
|
|
49
|
+
// ao primeiro ícone e tirava do Tab quem estava focado.
|
|
50
|
+
const ativo = document.activeElement
|
|
51
|
+
roving(ativo instanceof HTMLElement ? ativo : undefined)
|
|
49
52
|
})
|
|
50
53
|
|
|
51
54
|
// Navegação de toolbar: as setas andam entre as ações, e Home/End vão às pontas. Sem isso
|
|
@@ -76,28 +76,31 @@ export function SidebarItem({ label, icon, badge, active = false, disabled = fal
|
|
|
76
76
|
const { ref: labelRef, overflowing: labelCut } = useOverflowing<HTMLSpanElement>(label)
|
|
77
77
|
if (collapsed) {
|
|
78
78
|
const button = (
|
|
79
|
-
<button type="button" disabled={disabled} aria-current={active ? 'page' : undefined} onClick={onClick} className={cn('mx-auto grid size-9 place-items-center rounded-md transition-colors disabled:pointer-events-none disabled:opacity-40', 'outline-none focus-visible:ring-2 focus-visible:ring-ring/50', active ? 'bg-muted font-medium text-foreground' : 'text-foreground/80 hover:bg-muted/60'
|
|
79
|
+
<button type="button" disabled={disabled} aria-current={active ? 'page' : undefined} onClick={onClick} className={cn('mx-auto grid size-9 place-items-center rounded-md transition-colors disabled:pointer-events-none disabled:opacity-40', 'outline-none focus-visible:ring-2 focus-visible:ring-ring/50', active ? 'bg-muted font-medium text-foreground' : 'text-foreground/80 hover:bg-muted/60')}>
|
|
80
80
|
{icon}
|
|
81
81
|
</button>
|
|
82
82
|
)
|
|
83
|
-
|
|
83
|
+
// `className` vai no MESMO elemento nos dois modos — a linha —, senão a prop mudaria de alvo
|
|
84
|
+
// conforme o rail estivesse recolhido, e o consumidor não teria como saber o que estilizou.
|
|
85
|
+
return <div data-slot="sidebar-item" className={className} {...dragProps}><Tooltip><TooltipTrigger asChild>{button}</TooltipTrigger><TooltipContent side="right">{label}{tooltipHint}</TooltipContent></Tooltip></div>
|
|
84
86
|
}
|
|
85
87
|
|
|
86
88
|
return (
|
|
87
89
|
<div data-slot="sidebar-item" className={cn('group/sidebar-item relative flex items-center rounded-md transition-colors', disabled ? 'text-muted-foreground/50 opacity-40' : 'hover:bg-muted/60', active && 'bg-muted', dropPosition === 'inside' && 'bg-primary/5 ring-2 ring-inset ring-primary/60', className)} {...dragProps}>
|
|
88
90
|
{(dropPosition === 'before' || dropPosition === 'after') && <span data-slot="sidebar-item-drop-indicator" className={cn('pointer-events-none absolute inset-x-1 z-20 h-0.5 rounded-full bg-primary before:absolute before:-left-1 before:top-1/2 before:size-2 before:-translate-y-1/2 before:rounded-full before:border-2 before:border-primary before:bg-background', dropPosition === 'before' ? '-top-px' : '-bottom-px')} />}
|
|
89
|
-
{icon !== undefined && (
|
|
91
|
+
{(icon !== undefined || onToggle !== undefined) && (
|
|
90
92
|
<span data-slot="sidebar-item-leading" className="pointer-events-none absolute left-2.5 top-1/2 z-10 grid size-4 -translate-y-1/2 place-items-center">
|
|
91
|
-
|
|
93
|
+
{/* Sem ícone, o chevron não se esconde: ele é o único ocupante do lugar. */}
|
|
94
|
+
{icon !== undefined && <span className={cn('absolute inset-0 flex items-center justify-center transition-opacity', onToggle !== undefined && 'group-hover/sidebar-item:opacity-0 group-has-[[data-slot=sidebar-item-toggle]:focus-visible]/sidebar-item:opacity-0')}>{icon}</span>}
|
|
92
95
|
{onToggle !== undefined && (
|
|
93
|
-
<button type="button" data-slot="sidebar-item-toggle" onClick={onToggle} aria-label={expanded ? `Fechar ${label}` : `Abrir ${label}`} aria-expanded={expanded} className=
|
|
96
|
+
<button type="button" data-slot="sidebar-item-toggle" onClick={onToggle} aria-label={expanded ? `Fechar ${label}` : `Abrir ${label}`} aria-expanded={expanded} className={cn('absolute inset-0 grid place-items-center rounded-sm text-muted-foreground transition-[color,opacity] outline-none hover:text-foreground focus-visible:pointer-events-auto focus-visible:opacity-100 focus-visible:ring-2 focus-visible:ring-ring/50', icon === undefined ? 'pointer-events-auto opacity-100' : 'pointer-events-none opacity-0 group-hover/sidebar-item:pointer-events-auto group-hover/sidebar-item:opacity-100')}>
|
|
94
97
|
<ChevronRight className={cn('size-3 transition-transform', expanded && 'rotate-90')} />
|
|
95
98
|
</button>
|
|
96
99
|
)}
|
|
97
100
|
</span>
|
|
98
101
|
)}
|
|
99
102
|
<button type="button" disabled={disabled} aria-current={active ? 'page' : undefined} onClick={onClick} className={cn('flex min-w-0 flex-1 items-center gap-2.5 rounded-md px-2.5 py-1.5 text-left text-sm disabled:pointer-events-none', 'outline-none focus-visible:ring-2 focus-visible:ring-ring/50', disabled ? 'text-muted-foreground/50' : active ? 'font-medium text-foreground' : 'text-foreground/80')}>
|
|
100
|
-
{icon !== undefined && <span data-slot="sidebar-item-leading-space" aria-hidden className="size-4 shrink-0" />}
|
|
103
|
+
{(icon !== undefined || onToggle !== undefined) && <span data-slot="sidebar-item-leading-space" aria-hidden className="size-4 shrink-0" />}
|
|
101
104
|
<span ref={labelRef} data-slot="sidebar-item-label" className={cn('min-w-0 flex-1 overflow-hidden whitespace-nowrap group-has-[[data-slot=dot]]/sidebar-item:mr-[1.1875rem]', labelCut && 'truncate-fade')}>{label}</span>
|
|
102
105
|
{badge !== undefined && <span data-slot="sidebar-item-badge" className={cn('shrink-0 transition-opacity has-[[data-slot=dot]]:absolute has-[[data-slot=dot]]:right-1 has-[[data-slot=dot]]:top-1/2 has-[[data-slot=dot]]:z-10 has-[[data-slot=dot]]:grid has-[[data-slot=dot]]:size-6 has-[[data-slot=dot]]:-translate-y-1/2 has-[[data-slot=dot]]:place-items-center', hasActions && 'group-hover/sidebar-item:has-[[data-slot=dot]]:opacity-0')}>{badge}</span>}
|
|
103
106
|
</button>
|