@ -80,17 +80,17 @@ class SvelteComponent extends SvelteComponentDev {
const{ctx}=this.$$;
constprops=options.props||{};
if(ctx.name===undefined&&!('name'inprops)){
console.warn("<SvelteComponent> was created without expected prop 'name'");
console.warn("<Component> was created without expected prop 'name'");
}
}
getname(){
thrownewError("<SvelteComponent>: Props cannot be read directly from the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
thrownewError("<Component>: Props cannot be read directly from the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
}
setname(value){
thrownewError("<SvelteComponent>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
thrownewError("<Component>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
@ -169,50 +169,50 @@ class SvelteComponent extends SvelteComponentDev {
const{ctx}=this.$$;
constprops=options.props||{};
if(ctx.things===undefined&&!('things'inprops)){
console.warn("<SvelteComponent> was created without expected prop 'things'");
console.warn("<Component> was created without expected prop 'things'");
}
if(ctx.foo===undefined&&!('foo'inprops)){
console.warn("<SvelteComponent> was created without expected prop 'foo'");
console.warn("<Component> was created without expected prop 'foo'");
}
if(ctx.bar===undefined&&!('bar'inprops)){
console.warn("<SvelteComponent> was created without expected prop 'bar'");
console.warn("<Component> was created without expected prop 'bar'");
}
if(ctx.baz===undefined&&!('baz'inprops)){
console.warn("<SvelteComponent> was created without expected prop 'baz'");
console.warn("<Component> was created without expected prop 'baz'");
}
}
getthings(){
thrownewError("<SvelteComponent>: Props cannot be read directly from the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
thrownewError("<Component>: Props cannot be read directly from the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
}
setthings(value){
thrownewError("<SvelteComponent>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
thrownewError("<Component>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
}
getfoo(){
thrownewError("<SvelteComponent>: Props cannot be read directly from the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
thrownewError("<Component>: Props cannot be read directly from the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
}
setfoo(value){
thrownewError("<SvelteComponent>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
thrownewError("<Component>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
}
getbar(){
thrownewError("<SvelteComponent>: Props cannot be read directly from the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
thrownewError("<Component>: Props cannot be read directly from the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
}
setbar(value){
thrownewError("<SvelteComponent>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
thrownewError("<Component>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
}
getbaz(){
thrownewError("<SvelteComponent>: Props cannot be read directly from the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
thrownewError("<Component>: Props cannot be read directly from the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
}
setbaz(value){
thrownewError("<SvelteComponent>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
thrownewError("<Component>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
@ -167,28 +167,28 @@ class SvelteComponent extends SvelteComponentDev {
const{ctx}=this.$$;
constprops=options.props||{};
if(ctx.things===undefined&&!('things'inprops)){
console.warn("<SvelteComponent> was created without expected prop 'things'");
console.warn("<Component> was created without expected prop 'things'");
}
if(ctx.foo===undefined&&!('foo'inprops)){
console.warn("<SvelteComponent> was created without expected prop 'foo'");
console.warn("<Component> was created without expected prop 'foo'");
}
}
getthings(){
thrownewError("<SvelteComponent>: Props cannot be read directly from the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
thrownewError("<Component>: Props cannot be read directly from the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
}
setthings(value){
thrownewError("<SvelteComponent>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
thrownewError("<Component>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
}
getfoo(){
thrownewError("<SvelteComponent>: Props cannot be read directly from the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
thrownewError("<Component>: Props cannot be read directly from the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
}
setfoo(value){
thrownewError("<SvelteComponent>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
thrownewError("<Component>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
@ -86,17 +86,17 @@ class SvelteComponent extends SvelteComponentDev {
const{ctx}=this.$$;
constprops=options.props||{};
if(ctx.foo===undefined&&!('foo'inprops)){
console.warn("<SvelteComponent> was created without expected prop 'foo'");
console.warn("<Component> was created without expected prop 'foo'");
}
}
getfoo(){
thrownewError("<SvelteComponent>: Props cannot be read directly from the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
thrownewError("<Component>: Props cannot be read directly from the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
}
setfoo(value){
thrownewError("<SvelteComponent>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");
thrownewError("<Component>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'");