diff --git a/compiler/components/dynamic_component.json b/compiler/components/dynamic_component.json new file mode 100644 index 0000000..fef273f --- /dev/null +++ b/compiler/components/dynamic_component.json @@ -0,0 +1,6 @@ +{ + "name": "DynamicComponent", + "attrs": [ + "onError" + ] +} \ No newline at end of file diff --git a/compiler/tsconfig.esm.json b/compiler/tsconfig.esm.json index 0e29e51..952b593 100644 --- a/compiler/tsconfig.esm.json +++ b/compiler/tsconfig.esm.json @@ -27,6 +27,7 @@ "DataPanel", "DatePicker", "Divider", + "DynamicComponent", "Ellipse", "Flex", "FormComponent", @@ -201,6 +202,11 @@ "type": "DividerAttribute", "instance": "DividerInstance" }, + { + "name": "DynamicComponent", + "type": "DynamicComponentAttribute", + "instance": "DynamicComponentInstance" + }, { "name": "Ellipse", "type": "EllipseAttribute", diff --git a/compiler/tsconfig.json b/compiler/tsconfig.json index 65cd87b..d5c7e8c 100644 --- a/compiler/tsconfig.json +++ b/compiler/tsconfig.json @@ -27,6 +27,7 @@ "DataPanel", "DatePicker", "Divider", + "DynamicComponent", "Ellipse", "Flex", "FormComponent", @@ -201,6 +202,11 @@ "type": "DividerAttribute", "instance": "DividerInstance" }, + { + "name": "DynamicComponent", + "type": "DynamicComponentAttribute", + "instance": "DynamicComponentInstance" + }, { "name": "Ellipse", "type": "EllipseAttribute",