@geminilight/mindos 0.6.12 → 0.6.13
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.
|
@@ -16,7 +16,7 @@ export default function StepDots({ step, setStep, stepTitles, disabled }: StepDo
|
|
|
16
16
|
<button onClick={() => setStep(i)}
|
|
17
17
|
aria-current={i === step ? 'step' : undefined}
|
|
18
18
|
aria-label={title}
|
|
19
|
-
className="flex items-center gap-1
|
|
19
|
+
className="flex flex-col items-center gap-1 p-1 -m-1 disabled:cursor-not-allowed disabled:opacity-60"
|
|
20
20
|
disabled={disabled || i >= step}>
|
|
21
21
|
<div
|
|
22
22
|
className="w-6 h-6 rounded-full text-xs font-medium flex items-center justify-center transition-colors"
|
|
@@ -27,7 +27,7 @@ export default function StepDots({ step, setStep, stepTitles, disabled }: StepDo
|
|
|
27
27
|
}}>
|
|
28
28
|
{i + 1}
|
|
29
29
|
</div>
|
|
30
|
-
<span className="text-
|
|
30
|
+
<span className="text-[10px] leading-tight hidden sm:inline max-w-[4rem] text-center truncate"
|
|
31
31
|
style={{ color: i === step ? 'var(--foreground)' : 'var(--muted-foreground)', opacity: i <= step ? 1 : 0.5 }}>
|
|
32
32
|
{title}
|
|
33
33
|
</span>
|
package/package.json
CHANGED