패널 정리 중간 커밋

This commit is contained in:
kjs
2025-10-28 17:33:03 +09:00
parent b5605d93da
commit 743ae6dbf1
43 changed files with 1191 additions and 1666 deletions

View File

@@ -298,7 +298,7 @@ export const ButtonConfigPanel: React.FC<ButtonConfigPanelProps> = ({
variant="outline"
role="combobox"
aria-expanded={modalScreenOpen}
className="h-10 w-full justify-between"
className="h-6 w-full px-2 py-0 justify-between" style={{ fontSize: "12px" }}
disabled={screensLoading}
>
{config.action?.targetScreenId
@@ -372,7 +372,7 @@ export const ButtonConfigPanel: React.FC<ButtonConfigPanelProps> = ({
variant="outline"
role="combobox"
aria-expanded={modalScreenOpen}
className="h-10 w-full justify-between"
className="h-6 w-full px-2 py-0 justify-between" style={{ fontSize: "12px" }}
disabled={screensLoading}
>
{config.action?.targetScreenId
@@ -526,7 +526,7 @@ export const ButtonConfigPanel: React.FC<ButtonConfigPanelProps> = ({
variant="outline"
role="combobox"
aria-expanded={displayColumnOpen}
className="mt-2 h-8 w-full justify-between text-xs"
className="mt-2 h-8 w-full justify-between text-xs" style={{ fontSize: "12px" }}
disabled={columnsLoading || tableColumns.length === 0}
>
{columnsLoading
@@ -541,9 +541,9 @@ export const ButtonConfigPanel: React.FC<ButtonConfigPanelProps> = ({
</PopoverTrigger>
<PopoverContent className="p-0" style={{ width: "var(--radix-popover-trigger-width)" }} align="start">
<Command>
<CommandInput placeholder="컬럼 검색..." className="text-sm" />
<CommandInput placeholder="컬럼 검색..." className="text-xs" style={{ fontSize: "12px" }} />
<CommandList>
<CommandEmpty className="text-sm"> .</CommandEmpty>
<CommandEmpty className="text-xs" style={{ fontSize: "12px" }}> .</CommandEmpty>
<CommandGroup>
{tableColumns.map((column) => (
<CommandItem
@@ -553,7 +553,7 @@ export const ButtonConfigPanel: React.FC<ButtonConfigPanelProps> = ({
onUpdateProperty("componentConfig.action.historyDisplayColumn", currentValue);
setDisplayColumnOpen(false);
}}
className="text-sm"
className="text-xs" style={{ fontSize: "12px" }}
>
<Check
className={cn(
@@ -586,7 +586,7 @@ export const ButtonConfigPanel: React.FC<ButtonConfigPanelProps> = ({
variant="outline"
role="combobox"
aria-expanded={navScreenOpen}
className="h-10 w-full justify-between"
className="h-6 w-full px-2 py-0 justify-between" style={{ fontSize: "12px" }}
disabled={screensLoading}
>
{config.action?.targetScreenId
@@ -659,7 +659,7 @@ export const ButtonConfigPanel: React.FC<ButtonConfigPanelProps> = ({
setLocalInputs((prev) => ({ ...prev, targetUrl: newValue }));
onUpdateProperty("componentConfig.action.targetUrl", newValue);
}}
className="h-8 text-xs"
className="h-6 w-full px-2 py-0 text-xs" style={{ fontSize: "12px" }}
/>
<p className="mt-1 text-xs text-gray-500">URL을 </p>
</div>