[agent-pipeline] pipe-20260311204151-c4wy round-1
This commit is contained in:
parent
e45f2d6dc6
commit
08ed6b0b53
File diff suppressed because it is too large
Load Diff
|
|
@ -1,11 +1,9 @@
|
||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import React from "react";
|
|
||||||
import { createComponentDefinition } from "../../utils/createComponentDefinition";
|
import { createComponentDefinition } from "../../utils/createComponentDefinition";
|
||||||
import { ComponentCategory } from "@/types/component";
|
import { ComponentCategory } from "@/types/component";
|
||||||
import type { WebType } from "@/types/screen";
|
|
||||||
import { ButtonPrimaryWrapper } from "./ButtonPrimaryComponent";
|
import { ButtonPrimaryWrapper } from "./ButtonPrimaryComponent";
|
||||||
import { ButtonPrimaryConfig } from "./types";
|
import { V2ButtonConfigPanel } from "@/components/v2/config-panels/V2ButtonConfigPanel";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ButtonPrimary 컴포넌트 정의
|
* ButtonPrimary 컴포넌트 정의
|
||||||
|
|
@ -30,7 +28,7 @@ export const V2ButtonPrimaryDefinition = createComponentDefinition({
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
defaultSize: { width: 120, height: 40 },
|
defaultSize: { width: 120, height: 40 },
|
||||||
configPanel: undefined, // 상세 설정 패널(ButtonConfigPanel)이 대신 사용됨
|
configPanel: V2ButtonConfigPanel,
|
||||||
icon: "MousePointer",
|
icon: "MousePointer",
|
||||||
tags: ["버튼", "액션", "클릭"],
|
tags: ["버튼", "액션", "클릭"],
|
||||||
version: "1.0.0",
|
version: "1.0.0",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue