{"version":3,"file":"/Users/anthonygubler/development/dojo-org/parade/src/Test.tsx","sourceRoot":"","sources":["Test.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,2BAA2B,CAAC;AAExD,MAAM,OAAO,GAAG,MAAM,EAAE,CAAC,UAAU,EAA0B,CAAC;AAE9D,eAAe,OAAO,CAAC,SAAS,IAAI,CAAC,EAAE,UAAU,EAAE;IAClD,MAAM,EAAE,UAAU,EAAE,GAAG,UAAU,EAAE,CAAC;IACpC,OAAO,CACN;QACC,YAAI,OAAO,EAAC,eAAe,YAAW;QACtC,gBACC,OAAO,EAAC,eAAe,EACvB,MAAM,EACL,4EAAmF,EAEpF,GAAG,EAAE,6CAA6C,UAAU,EAAE,GAC7D,CACG,CACN,CAAC;AACH,CAAC,CAAC,CAAC","sourcesContent":["import { create, tsx } from '@dojo/framework/core/vdom';\n\nconst factory = create().properties<{ widgetName: string }>();\n\nexport default factory(function Test({ properties }) {\n\tconst { widgetName } = properties();\n\treturn (\n\t\t<div>\n\t\t\t<h2 classes=\"text-2xl mb-4\">Tests</h2>\n\t\t\t<iframe\n\t\t\t\tclasses=\"w-full iframe\"\n\t\t\t\tonload={\n\t\t\t\t\t\"this.style.height=(this.contentDocument.body.scrollHeight || 10000) +'px';\" as any\n\t\t\t\t}\n\t\t\t\tsrc={`./intern?config=intern/intern.json&widget=${widgetName}`}\n\t\t\t/>\n\t\t</div>\n\t);\n});\n"]}