Skip to content

Commit

Permalink
beta
Browse files Browse the repository at this point in the history
  • Loading branch information
junwatu committed Aug 1, 2020
1 parent 1e85379 commit 8647ccc
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
20 changes: 10 additions & 10 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1465,7 +1465,7 @@

function create_fragment(ctx) {
let span;
let t0_value = LatinKeAksara(/*tutur*/ ctx[0]) + "";
let t0_value = LatinKeAksara(/*latin*/ ctx[0]) + "";
let t0;
let t1;
let slot;
Expand All @@ -1485,7 +1485,7 @@
insert(target, slot, anchor);
},
p(ctx, [dirty]) {
if (dirty & /*tutur*/ 1 && t0_value !== (t0_value = LatinKeAksara(/*tutur*/ ctx[0]) + "")) set_data(t0, t0_value);
if (dirty & /*latin*/ 1 && t0_value !== (t0_value = LatinKeAksara(/*latin*/ ctx[0]) + "")) set_data(t0, t0_value);
},
i: noop,
o: noop,
Expand All @@ -1498,19 +1498,19 @@
}

function instance($$self, $$props, $$invalidate) {
let { tutur = "Aksara HTML" } = $$props;
let { latin = "Aksara HTML" } = $$props;

$$self.$set = $$props => {
if ("tutur" in $$props) $$invalidate(0, tutur = $$props.tutur);
if ("latin" in $$props) $$invalidate(0, latin = $$props.latin);
};

return [tutur];
return [latin];
}

class Component extends SvelteElement {
constructor(options) {
super();
init(this, { target: this.shadowRoot }, instance, create_fragment, safe_not_equal, { tutur: 0 });
init(this, { target: this.shadowRoot }, instance, create_fragment, safe_not_equal, { latin: 0 });

if (options) {
if (options.target) {
Expand All @@ -1525,15 +1525,15 @@
}

static get observedAttributes() {
return ["tutur"];
return ["latin"];
}

get tutur() {
get latin() {
return this.$$.ctx[0];
}

set tutur(tutur) {
this.$set({ tutur });
set latin(latin) {
this.$set({ latin });
flush();
}
}
Expand Down
20 changes: 10 additions & 10 deletions dist/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1460,7 +1460,7 @@ function LatinKeAksara(str) {

function create_fragment(ctx) {
let span;
let t0_value = LatinKeAksara(/*tutur*/ ctx[0]) + "";
let t0_value = LatinKeAksara(/*latin*/ ctx[0]) + "";
let t0;
let t1;
let slot;
Expand All @@ -1480,7 +1480,7 @@ function create_fragment(ctx) {
insert(target, slot, anchor);
},
p(ctx, [dirty]) {
if (dirty & /*tutur*/ 1 && t0_value !== (t0_value = LatinKeAksara(/*tutur*/ ctx[0]) + "")) set_data(t0, t0_value);
if (dirty & /*latin*/ 1 && t0_value !== (t0_value = LatinKeAksara(/*latin*/ ctx[0]) + "")) set_data(t0, t0_value);
},
i: noop,
o: noop,
Expand All @@ -1493,19 +1493,19 @@ function create_fragment(ctx) {
}

function instance($$self, $$props, $$invalidate) {
let { tutur = "Aksara HTML" } = $$props;
let { latin = "Aksara HTML" } = $$props;

$$self.$set = $$props => {
if ("tutur" in $$props) $$invalidate(0, tutur = $$props.tutur);
if ("latin" in $$props) $$invalidate(0, latin = $$props.latin);
};

return [tutur];
return [latin];
}

class Component extends SvelteElement {
constructor(options) {
super();
init(this, { target: this.shadowRoot }, instance, create_fragment, safe_not_equal, { tutur: 0 });
init(this, { target: this.shadowRoot }, instance, create_fragment, safe_not_equal, { latin: 0 });

if (options) {
if (options.target) {
Expand All @@ -1520,15 +1520,15 @@ class Component extends SvelteElement {
}

static get observedAttributes() {
return ["tutur"];
return ["latin"];
}

get tutur() {
get latin() {
return this.$$.ctx[0];
}

set tutur(tutur) {
this.$set({ tutur });
set latin(latin) {
this.$set({ latin });
flush();
}
}
Expand Down

0 comments on commit 8647ccc

Please sign in to comment.