diff --git a/src/schemes/components/Link.json b/src/schemes/components/Link.json index 7e577e2..cc7bf03 100644 --- a/src/schemes/components/Link.json +++ b/src/schemes/components/Link.json @@ -13,9 +13,9 @@ }, "style": "", "class": "", - "visible": true, "slots": {}, "disable": true, + "visible": true, "events": {}, "loop": {}, "children": [] diff --git a/src/type/IComponent.ts b/src/type/IComponent.ts index fcc4f8a..22b4c43 100644 --- a/src/type/IComponent.ts +++ b/src/type/IComponent.ts @@ -11,5 +11,7 @@ export interface IComponent { slots:IComponent[]; orchestrations:JSON; version:string; - loop:JSON + loop:JSON; + disable: boolean, + visible: boolean, } \ No newline at end of file