feat: add responsive tests for Option Settings and Split Panel

- Implemented responsive testing scripts for Option Settings and ResponsiveSplitPanel components.
- Added tests to verify layout behavior across various screen sizes (desktop, tablet, mobile).
- Generated screenshots and reports for visual validation of responsive designs.

Made-with: Cursor
This commit is contained in:
DDD1542
2026-03-12 10:04:26 +09:00
parent 00e15dd9f2
commit 45740c1457
18 changed files with 198 additions and 181 deletions

View File

@@ -679,7 +679,7 @@ export const V2AggregationWidgetConfigPanel: React.FC<V2AggregationWidgetConfigP
<p className="text-xs text-muted-foreground"> </p>
</div>
) : (
<div className="max-h-[300px] space-y-1.5 overflow-y-auto">
<div className="space-y-1.5">
{(config.items || []).map((item, index) => (
<div key={item.id} className="rounded-md border">
<button
@@ -861,7 +861,7 @@ export const V2AggregationWidgetConfigPanel: React.FC<V2AggregationWidgetConfigP
<p className="text-xs text-muted-foreground"> - </p>
</div>
) : (
<div className="max-h-[250px] space-y-2 overflow-y-auto">
<div className="space-y-2">
{(config.filters || []).map((filter, index) => (
<div
key={filter.id}