diff --git a/compiler/components/embedded_component.json b/compiler/components/embedded_component.json new file mode 100644 index 0000000000000000000000000000000000000000..b1ac98c2776baa97cbcca16d7312b09fa5ec115e --- /dev/null +++ b/compiler/components/embedded_component.json @@ -0,0 +1,9 @@ +{ + "name": "EmbeddedComponent", + "attrs": [ + "onTerminated", + "onError" + ], + "atomic": true +} + diff --git a/compiler/tsconfig.esm.json b/compiler/tsconfig.esm.json index 99699f253ab18ca24be670c3b159aed133102877..013ff56143f1c8d39fd41da37057c5caa53f78dc 100644 --- a/compiler/tsconfig.esm.json +++ b/compiler/tsconfig.esm.json @@ -122,6 +122,7 @@ "Divider", "EffectComponent", "Ellipse", + "EmbeddedComponent", "Flex", "FormComponent", "Gauge", @@ -328,6 +329,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 37efd66f9a4f4227148f63124b5438174fbea664..dbe0913ae7ed19d817d9d545d2062e98bdbffd62 100644 --- a/compiler/tsconfig.json +++ b/compiler/tsconfig.json @@ -118,6 +118,7 @@ "Divider", "EffectComponent", "Ellipse", + "EmbeddedComponent", "Flex", "FolderStack", "FormComponent", @@ -330,6 +331,11 @@ "type": "EllipseAttribute", "instance": "EllipseInstance" }, + { + "name": "EmbeddedComponent", + "type": "EmbeddedComponentAttribute", + "instance": "EmbeddedComponentInstance" + }, { "name": "Flex", "type": "FlexAttribute",