From 79428883ecac8047a5b4e97f8a7c76976d42ae21 Mon Sep 17 00:00:00 2001 From: libo429 Date: Tue, 23 Jan 2024 14:45:58 +0800 Subject: [PATCH] config info Signed-off-by: libo429 --- compiler/components/embedded_component.json | 9 +++++++++ compiler/tsconfig.esm.json | 6 ++++++ compiler/tsconfig.json | 6 ++++++ 3 files changed, 21 insertions(+) create mode 100644 compiler/components/embedded_component.json diff --git a/compiler/components/embedded_component.json b/compiler/components/embedded_component.json new file mode 100644 index 0000000..d70f672 --- /dev/null +++ b/compiler/components/embedded_component.json @@ -0,0 +1,9 @@ +{ + "name": "EmbeddedComponent", + "attrs": [ + "onTerminated", + "onError" + ], + "atomic": true, + "systemApi": true +} \ No newline at end of file diff --git a/compiler/tsconfig.esm.json b/compiler/tsconfig.esm.json index 0e29e51..145b3c2 100644 --- a/compiler/tsconfig.esm.json +++ b/compiler/tsconfig.esm.json @@ -28,6 +28,7 @@ "DatePicker", "Divider", "Ellipse", + "EmbeddedComponent", "Flex", "FormComponent", "Gauge", @@ -206,6 +207,11 @@ "type": "EllipseAttribute", "instance": "EllipseInstance" }, + { + "name": "EmbeddedComponent", + "type": "EmbeddedComponentAttribute", + "instance": "EmbeddedComponentInstance" + }, { "name": "Flex", "type": "FlexAttribute", diff --git a/compiler/tsconfig.json b/compiler/tsconfig.json index 65cd87b..3943167 100644 --- a/compiler/tsconfig.json +++ b/compiler/tsconfig.json @@ -28,6 +28,7 @@ "DatePicker", "Divider", "Ellipse", + "EmbeddedComponent", "Flex", "FormComponent", "Gauge", @@ -206,6 +207,11 @@ "type": "EllipseAttribute", "instance": "EllipseInstance" }, + { + "name": "EmbeddedComponent", + "type": "EmbeddedComponentAttribute", + "instance": "EmbeddedComponentInstance" + }, { "name": "Flex", "type": "FlexAttribute", -- Gitee