foo-component-jr
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -18,3 +18,3 @@ 'use strict'; | ||
patchBrowser().then(options => { | ||
return index.bootstrapLazy([["my-component.cjs",[[1,"my-component",{"first":[1],"middle":[1],"last":[1]}]]]], options); | ||
return index.bootstrapLazy([["my-component.cjs",[[1,"my-component",{"first":[1],"middle":[1],"last":[1]}]]],["second-component.cjs",[[1,"second-component"]]]], options); | ||
}); |
@@ -17,3 +17,3 @@ 'use strict'; | ||
return patchEsm().then(() => { | ||
return index.bootstrapLazy([["my-component.cjs",[[1,"my-component",{"first":[1],"middle":[1],"last":[1]}]]]], options); | ||
return index.bootstrapLazy([["my-component.cjs",[[1,"my-component",{"first":[1],"middle":[1],"last":[1]}]]],["second-component.cjs",[[1,"second-component"]]]], options); | ||
}); | ||
@@ -20,0 +20,0 @@ }; |
{ | ||
"entries": [ | ||
"./components/my-component/my-component.js" | ||
"./components/my-component/my-component.js", | ||
"./components/second-component/second-component.js" | ||
], | ||
@@ -5,0 +6,0 @@ "compiler": { |
@@ -16,3 +16,3 @@ import { p as promiseResolve, b as bootstrapLazy } from './index-14939342.js'; | ||
patchBrowser().then(options => { | ||
return bootstrapLazy([["my-component",[[1,"my-component",{"first":[1],"middle":[1],"last":[1]}]]]], options); | ||
return bootstrapLazy([["my-component",[[1,"my-component",{"first":[1],"middle":[1],"last":[1]}]]],["second-component",[[1,"second-component"]]]], options); | ||
}); |
@@ -13,3 +13,3 @@ import { p as promiseResolve, b as bootstrapLazy } from './index-14939342.js'; | ||
return patchEsm().then(() => { | ||
return bootstrapLazy([["my-component",[[1,"my-component",{"first":[1],"middle":[1],"last":[1]}]]]], options); | ||
return bootstrapLazy([["my-component",[[1,"my-component",{"first":[1],"middle":[1],"last":[1]}]]],["second-component",[[1,"second-component"]]]], options); | ||
}); | ||
@@ -16,0 +16,0 @@ }; |
@@ -1,1 +0,1 @@ | ||
import{p as t,b as m}from"./p-2b0ad396.js";(()=>{const m=import.meta.url,o={};return""!==m&&(o.resourcesUrl=new URL(".",m).href),t(o)})().then((t=>m([["p-42478e28",[[1,"my-component",{first:[1],middle:[1],last:[1]}]]]],t))); | ||
import{p as o,b as n}from"./p-2b0ad396.js";(()=>{const n=import.meta.url,p={};return""!==n&&(p.resourcesUrl=new URL(".",n).href),o(p)})().then((o=>n([["p-42478e28",[[1,"my-component",{first:[1],middle:[1],last:[1]}]]],["p-51fbf98a",[[1,"second-component"]]]],o))); |
@@ -23,2 +23,4 @@ /* eslint-disable */ | ||
} | ||
interface SecondComponent { | ||
} | ||
} | ||
@@ -32,4 +34,11 @@ declare global { | ||
}; | ||
interface HTMLSecondComponentElement extends Components.SecondComponent, HTMLStencilElement { | ||
} | ||
var HTMLSecondComponentElement: { | ||
prototype: HTMLSecondComponentElement; | ||
new (): HTMLSecondComponentElement; | ||
}; | ||
interface HTMLElementTagNameMap { | ||
"my-component": HTMLMyComponentElement; | ||
"second-component": HTMLSecondComponentElement; | ||
} | ||
@@ -52,4 +61,7 @@ } | ||
} | ||
interface SecondComponent { | ||
} | ||
interface IntrinsicElements { | ||
"my-component": MyComponent; | ||
"second-component": SecondComponent; | ||
} | ||
@@ -62,4 +74,5 @@ } | ||
"my-component": LocalJSX.MyComponent & JSXBase.HTMLAttributes<HTMLMyComponentElement>; | ||
"second-component": LocalJSX.SecondComponent & JSXBase.HTMLAttributes<HTMLSecondComponentElement>; | ||
} | ||
} | ||
} |
{ | ||
"name": "foo-component-jr", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Stencil Component Starter", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.cjs.js", |
290813
53
4408