bolt-devtools
Advanced tools
Comparing version
@@ -1,1 +0,1 @@ | ||
import{p as t,b as e}from"./p-2227ce75.js";t().then(t=>e([["p-utwrnqla",[[1,"bolt-dev-tools",{isOpen:[32],activeComponent:[32]}],[1,"bolt-app-details"],[1,"bolt-meta"],[1,"bolt-registration",{email:[32],error:[32],isSubmitting:[32],message:[32],username:[32]}]]]],t)); | ||
import{p as t,b as e}from"./p-2227ce75.js";t().then(t=>e([["p-cq9ehstb",[[1,"bolt-dev-tools",{isOpen:[32],activeComponent:[32]}],[1,"bolt-app-details"],[1,"bolt-limits"],[1,"bolt-meta"],[1,"bolt-registration",{email:[32],error:[32],isSubmitting:[32],message:[32],username:[32]}]]]],t)); |
@@ -1,1 +0,1 @@ | ||
System.register(["./p-ad784f87.system.js"],(function(){"use strict";var t,e;return{setters:[function(s){t=s.p;e=s.b}],execute:function(){t().then((function(t){return e([["p-ydckgxvj.system",[[1,"bolt-dev-tools",{isOpen:[32],activeComponent:[32]}],[1,"bolt-app-details"],[1,"bolt-meta"],[1,"bolt-registration",{email:[32],error:[32],isSubmitting:[32],message:[32],username:[32]}]]]],t)}))}}})); | ||
System.register(["./p-ad784f87.system.js"],(function(){"use strict";var t,e;return{setters:[function(s){t=s.p;e=s.b}],execute:function(){t().then((function(t){return e([["p-nfhfbioy.system",[[1,"bolt-dev-tools",{isOpen:[32],activeComponent:[32]}],[1,"bolt-app-details"],[1,"bolt-limits"],[1,"bolt-meta"],[1,"bolt-registration",{email:[32],error:[32],isSubmitting:[32],message:[32],username:[32]}]]]],t)}))}}})); |
@@ -6,3 +6,3 @@ 'use strict'; | ||
core.patchBrowser().then(options => { | ||
return core.bootstrapLazy([["bolt-app-details_4.cjs",[[1,"bolt-dev-tools",{"isOpen":[32],"activeComponent":[32]}],[1,"bolt-app-details"],[1,"bolt-meta"],[1,"bolt-registration",{"email":[32],"error":[32],"isSubmitting":[32],"message":[32],"username":[32]}]]]], options); | ||
return core.bootstrapLazy([["bolt-app-details_5.cjs",[[1,"bolt-dev-tools",{"isOpen":[32],"activeComponent":[32]}],[1,"bolt-app-details"],[1,"bolt-limits"],[1,"bolt-meta"],[1,"bolt-registration",{"email":[32],"error":[32],"isSubmitting":[32],"message":[32],"username":[32]}]]]], options); | ||
}); |
@@ -9,3 +9,3 @@ 'use strict'; | ||
return core.patchEsm().then(() => { | ||
core.bootstrapLazy([["bolt-app-details_4.cjs",[[1,"bolt-dev-tools",{"isOpen":[32],"activeComponent":[32]}],[1,"bolt-app-details"],[1,"bolt-meta"],[1,"bolt-registration",{"email":[32],"error":[32],"isSubmitting":[32],"message":[32],"username":[32]}]]]], options); | ||
core.bootstrapLazy([["bolt-app-details_5.cjs",[[1,"bolt-dev-tools",{"isOpen":[32],"activeComponent":[32]}],[1,"bolt-app-details"],[1,"bolt-limits"],[1,"bolt-meta"],[1,"bolt-registration",{"email":[32],"error":[32],"isSubmitting":[32],"message":[32],"username":[32]}]]]], options); | ||
}); | ||
@@ -12,0 +12,0 @@ }; |
{ | ||
"entries": [ | ||
"components/registration/registration.js", | ||
"components/dev-tools/dev-tools.js", | ||
"components/limits/limits.js", | ||
"components/meta/meta.js", | ||
"components/app-details/app-details.js", | ||
"components/dev-tools/dev-tools.js", | ||
"components/meta/meta.js" | ||
"components/registration/registration.js" | ||
], | ||
@@ -8,0 +9,0 @@ "compiler": { |
@@ -18,4 +18,6 @@ import { Host, h } from "@stencil/core"; | ||
h("li", null, | ||
h("button", { class: this.activeComponent === 'appDetails' ? 'active' : '', onClick: this.onNav.bind(this, 'appDetails') }, "App info")), | ||
h("button", { class: this.activeComponent === 'appDetails' ? 'active' : '', onClick: this.onNav.bind(this, 'appDetails') }, "Site")), | ||
h("li", null, | ||
h("button", { class: this.activeComponent === 'limits' ? 'active' : '', onClick: this.onNav.bind(this, 'limits') }, "Limits")), | ||
h("li", null, | ||
h("button", { class: this.activeComponent === 'meta' ? 'active' : '', onClick: this.onNav.bind(this, 'meta') }, "Meta")), | ||
@@ -26,2 +28,3 @@ h("li", null, | ||
this.activeComponent === 'appDetails' ? h("bolt-app-details", null) : null, | ||
this.activeComponent === 'limits' ? h("bolt-limits", null) : null, | ||
this.activeComponent === 'meta' ? h("bolt-meta", null) : null, | ||
@@ -28,0 +31,0 @@ this.activeComponent === 'register' ? h("bolt-registration", null) : null))); |
@@ -15,2 +15,3 @@ /* eslint-disable */ | ||
interface BoltDevTools {} | ||
interface BoltLimits {} | ||
interface BoltMeta {} | ||
@@ -35,2 +36,8 @@ interface BoltRegistration {} | ||
interface HTMLBoltLimitsElement extends Components.BoltLimits, HTMLStencilElement {} | ||
var HTMLBoltLimitsElement: { | ||
prototype: HTMLBoltLimitsElement; | ||
new (): HTMLBoltLimitsElement; | ||
}; | ||
interface HTMLBoltMetaElement extends Components.BoltMeta, HTMLStencilElement {} | ||
@@ -50,2 +57,3 @@ var HTMLBoltMetaElement: { | ||
'bolt-dev-tools': HTMLBoltDevToolsElement; | ||
'bolt-limits': HTMLBoltLimitsElement; | ||
'bolt-meta': HTMLBoltMetaElement; | ||
@@ -59,2 +67,3 @@ 'bolt-registration': HTMLBoltRegistrationElement; | ||
interface BoltDevTools {} | ||
interface BoltLimits {} | ||
interface BoltMeta {} | ||
@@ -66,2 +75,3 @@ interface BoltRegistration {} | ||
'bolt-dev-tools': BoltDevTools; | ||
'bolt-limits': BoltLimits; | ||
'bolt-meta': BoltMeta; | ||
@@ -80,2 +90,3 @@ 'bolt-registration': BoltRegistration; | ||
'bolt-dev-tools': LocalJSX.BoltDevTools & JSXBase.HTMLAttributes<HTMLBoltDevToolsElement>; | ||
'bolt-limits': LocalJSX.BoltLimits & JSXBase.HTMLAttributes<HTMLBoltLimitsElement>; | ||
'bolt-meta': LocalJSX.BoltMeta & JSXBase.HTMLAttributes<HTMLBoltMetaElement>; | ||
@@ -82,0 +93,0 @@ 'bolt-registration': LocalJSX.BoltRegistration & JSXBase.HTMLAttributes<HTMLBoltRegistrationElement>; |
{ | ||
"name": "bolt-devtools", | ||
"version": "0.0.8", | ||
"version": "0.0.9", | ||
"description": "Stencil Component Starter", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1121002
1.92%82
3.8%20166
1.05%