wrec 0.31.5 → 0.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{wrec-fWpfp5nc.js → wrec-Cpci7nM6.js} +95 -74
- package/dist/wrec-ssr.es.js +1 -1
- package/dist/wrec.es.js +1 -1
- package/package.json +3 -1
- package/scripts/template.ts +20 -0
|
@@ -167,7 +167,7 @@ var f = () => /* @__PURE__ */ new Map(), p = new Set([
|
|
|
167
167
|
whenDefined: () => Promise.reject(/* @__PURE__ */ Error("customElements is not available in this environment"))
|
|
168
168
|
}, g = class extends Error {}, _ = /([a-zA-Z-]+)\s*:\s*([^;}]+)/g, v = "a-zA-Z_$", y = `[${v}][${v + "0-9"}]*`, b = RegExp(`this\\.(${y})\\s*\\(`, "g"), x = /<!--\s*(.*?)\s*-->/, S = /<(\w+)(?:\s[^>]*)?>((?:[^<]|<(?!\w))*?)<\/\1>/g, C = RegExp(`^this\\.${y}$`), w = RegExp(`this\\.${y}(\\.${y})*`, "g"), T = RegExp(`this\\.${y}(\\.${y})*`), E = 5;
|
|
169
169
|
function D(e) {
|
|
170
|
-
return e instanceof HTMLButtonElement || e instanceof HTMLFieldSetElement || e instanceof HTMLInputElement || e instanceof HTMLSelectElement || e instanceof HTMLTextAreaElement || e instanceof
|
|
170
|
+
return e instanceof HTMLButtonElement || e instanceof HTMLFieldSetElement || e instanceof HTMLInputElement || e instanceof HTMLSelectElement || e instanceof HTMLTextAreaElement || e instanceof X;
|
|
171
171
|
}
|
|
172
172
|
function O(e, t, n) {
|
|
173
173
|
let r = document.createElement(e);
|
|
@@ -180,65 +180,79 @@ function j(e) {
|
|
|
180
180
|
for (; n;) t.push(n), n.shadowRoot && t.push(...j(n.shadowRoot)), n.firstElementChild && t.push(...j(n)), n = n.nextElementSibling;
|
|
181
181
|
return t;
|
|
182
182
|
}
|
|
183
|
-
|
|
184
|
-
|
|
183
|
+
function M(e, t) {
|
|
184
|
+
let n = e;
|
|
185
|
+
for (; n;) {
|
|
186
|
+
let e = Object.getOwnPropertyDescriptor(n, t);
|
|
187
|
+
if (e) return e;
|
|
188
|
+
n = Object.getPrototypeOf(n);
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
var N = (e) => e.substring(E).split(".")[0];
|
|
192
|
+
function P(e) {
|
|
193
|
+
return e.substring(4).trim();
|
|
194
|
+
}
|
|
195
|
+
function F(e, t) {
|
|
185
196
|
let n = e[0];
|
|
186
197
|
return t.forEach((t, r) => {
|
|
187
198
|
n += t + e[r + 1];
|
|
188
199
|
}), n;
|
|
189
200
|
}
|
|
190
|
-
function
|
|
201
|
+
function I(e) {
|
|
191
202
|
return e instanceof HTMLInputElement && e.type === "checkbox";
|
|
192
203
|
}
|
|
193
|
-
function
|
|
204
|
+
function L(e) {
|
|
205
|
+
return e.startsWith("get ");
|
|
206
|
+
}
|
|
207
|
+
function R(e) {
|
|
194
208
|
let t = typeof e;
|
|
195
209
|
return t === "string" || t === "number" || t === "boolean";
|
|
196
210
|
}
|
|
197
|
-
function
|
|
211
|
+
function z(e) {
|
|
198
212
|
return e instanceof HTMLInputElement && e.type === "radio";
|
|
199
213
|
}
|
|
200
|
-
function
|
|
214
|
+
function B(e) {
|
|
201
215
|
return e.localName === "textarea";
|
|
202
216
|
}
|
|
203
|
-
function
|
|
217
|
+
function V(e) {
|
|
204
218
|
let { localName: t } = e;
|
|
205
219
|
return t === "input" || t === "select";
|
|
206
220
|
}
|
|
207
|
-
var
|
|
208
|
-
function
|
|
221
|
+
var H = (e) => `get ${e}`, U = (e) => e.replace(/<!--[\s\S]*?-->/g, "");
|
|
222
|
+
function W(e, t, n, r) {
|
|
209
223
|
return e.slice(0, t) + r + e.slice(t + n);
|
|
210
224
|
}
|
|
211
|
-
function
|
|
225
|
+
function G(e) {
|
|
212
226
|
let t = Number(e);
|
|
213
227
|
if (isNaN(t)) throw new g(`can't convert "${e}" to a number`);
|
|
214
228
|
return t;
|
|
215
229
|
}
|
|
216
|
-
function
|
|
230
|
+
function K(e, t, n) {
|
|
217
231
|
let [r] = t.split(":");
|
|
218
|
-
if (r === "checked" &&
|
|
232
|
+
if (r === "checked" && z(e) && typeof n == "string") {
|
|
219
233
|
let t = e.value === n;
|
|
220
234
|
t ? e.setAttribute(r, r) : e.removeAttribute(r), e.checked = t;
|
|
221
235
|
return;
|
|
222
236
|
}
|
|
223
|
-
if (
|
|
237
|
+
if (R(n)) if (typeof n == "boolean") {
|
|
224
238
|
n ? e.setAttribute(r, r) : e.removeAttribute(r);
|
|
225
|
-
let t =
|
|
239
|
+
let t = X.getPropName(r);
|
|
226
240
|
e[t] = n;
|
|
227
241
|
} else {
|
|
228
242
|
let i = e.getAttribute(t), a = String(n);
|
|
229
|
-
i !== a && (e.setAttribute(r, a), r === "value" &&
|
|
243
|
+
i !== a && (e.setAttribute(r, a), r === "value" && V(e) && (e.value = a));
|
|
230
244
|
}
|
|
231
245
|
else {
|
|
232
|
-
let r =
|
|
246
|
+
let r = X.getPropName(t);
|
|
233
247
|
e[r] = n;
|
|
234
248
|
}
|
|
235
249
|
}
|
|
236
|
-
function
|
|
250
|
+
function q(e, t, n) {
|
|
237
251
|
let [r] = t.split(":");
|
|
238
|
-
e instanceof CSSStyleRule ? e.style.setProperty(r, n) : (
|
|
252
|
+
e instanceof CSSStyleRule ? e.style.setProperty(r, n) : (K(e, r, n), r === "value" && V(e) && (e.value = n));
|
|
239
253
|
}
|
|
240
|
-
var
|
|
241
|
-
async function
|
|
254
|
+
var J = (e) => typeof e == "string" ? [e] : e;
|
|
255
|
+
async function Y(e) {
|
|
242
256
|
let t = /* @__PURE__ */ new Set();
|
|
243
257
|
for (let n of j(e.content)) {
|
|
244
258
|
let { localName: e } = n;
|
|
@@ -254,7 +268,7 @@ async function G(e) {
|
|
|
254
268
|
}
|
|
255
269
|
return Promise.all([...t].map(async (e) => Promise.race([h.whenDefined(e), n(e)])));
|
|
256
270
|
}
|
|
257
|
-
var
|
|
271
|
+
var X = class e extends m {
|
|
258
272
|
static {
|
|
259
273
|
this.attrToPropMap = /* @__PURE__ */ new Map();
|
|
260
274
|
}
|
|
@@ -327,7 +341,7 @@ var K = class e extends m {
|
|
|
327
341
|
}
|
|
328
342
|
async #d() {
|
|
329
343
|
let e = this.#n, { template: t } = e;
|
|
330
|
-
t || (t = e.template = document.createElement("template"), t.innerHTML = e.buildHTML()), await
|
|
344
|
+
t || (t = e.template = document.createElement("template"), t.innerHTML = e.buildHTML()), await Y(t), this.shadowRoot.replaceChildren(t.content.cloneNode(!0));
|
|
331
345
|
}
|
|
332
346
|
static buildHTML() {
|
|
333
347
|
let e = "<style>\n :host([hidden]) { display: none; }";
|
|
@@ -365,7 +379,7 @@ var K = class e extends m {
|
|
|
365
379
|
return this[u];
|
|
366
380
|
},
|
|
367
381
|
set(e) {
|
|
368
|
-
n.computed && !this.#t.has(t) && this.#F(null, t, "is a computed property and cannot be set directly"), c === Number && typeof e == "string" && (e =
|
|
382
|
+
n.computed && !this.#t.has(t) && this.#F(null, t, "is a computed property and cannot be set directly"), c === Number && typeof e == "string" && (e = G(e));
|
|
369
383
|
let r = this[u];
|
|
370
384
|
if (e === r) return;
|
|
371
385
|
this.#q(t, c, e), this[u] = e;
|
|
@@ -414,10 +428,10 @@ var K = class e extends m {
|
|
|
414
428
|
let [o, s] = r.split(":"), c = e.getPropName(o);
|
|
415
429
|
if (o === "checked") {
|
|
416
430
|
let { type: e } = this.#n.properties[a];
|
|
417
|
-
|
|
431
|
+
I(t) && e !== Boolean && this.#F(t, r, `refers to property "${a}" whose type is not Boolean`), z(t) && e !== String && this.#F(t, r, `refers to property "${a}" whose type is not String`);
|
|
418
432
|
}
|
|
419
433
|
let l = this.#T(a);
|
|
420
|
-
n && t.#T(c) || (o === "checked" &&
|
|
434
|
+
n && t.#T(c) || (o === "checked" && z(t) ? t.checked = t.value === i : t[c] = i), o === "value" && (s ? (t["on" + s] === void 0 && this.#F(t, r, "refers to an unsupported event name"), t.setAttribute(o, this[a])) : s = "change"), n && !l && t.#c.set(e.getPropName(o), a);
|
|
421
435
|
}
|
|
422
436
|
this.#N(i, t, r);
|
|
423
437
|
}
|
|
@@ -434,7 +448,7 @@ var K = class e extends m {
|
|
|
434
448
|
if (t instanceof HTMLElement) this.#V(t, e);
|
|
435
449
|
else if (!(t instanceof CSSStyleRule)) {
|
|
436
450
|
let { element: n, attrName: r } = t;
|
|
437
|
-
n instanceof CSSStyleRule ? n.style.setProperty(r, e) :
|
|
451
|
+
n instanceof CSSStyleRule ? n.style.setProperty(r, e) : q(n, r, e);
|
|
438
452
|
}
|
|
439
453
|
}
|
|
440
454
|
if (r.size > 0) {
|
|
@@ -460,7 +474,7 @@ var K = class e extends m {
|
|
|
460
474
|
}
|
|
461
475
|
} else {
|
|
462
476
|
let t = "";
|
|
463
|
-
if (
|
|
477
|
+
if (B(e)) {
|
|
464
478
|
this.#N(e.textContent, e);
|
|
465
479
|
let n = e.textContent?.match(x);
|
|
466
480
|
n && (t = n[1]);
|
|
@@ -470,7 +484,7 @@ var K = class e extends m {
|
|
|
470
484
|
}
|
|
471
485
|
if (t) {
|
|
472
486
|
let n = this.#O(e, t);
|
|
473
|
-
n &&
|
|
487
|
+
n && B(e) ? e.textContent = this[n] : this.#N(t, e);
|
|
474
488
|
}
|
|
475
489
|
}
|
|
476
490
|
}
|
|
@@ -490,7 +504,7 @@ var K = class e extends m {
|
|
|
490
504
|
this.#i = t, this.#a = new FormData(), this.#s = this.attachInternals(), this.#s.setFormValue(this.#a);
|
|
491
505
|
for (let [e, n] of Object.entries(t)) {
|
|
492
506
|
let t = this[e];
|
|
493
|
-
|
|
507
|
+
R(t) && this.setFormValue(n, String(t));
|
|
494
508
|
}
|
|
495
509
|
let r = Object.keys(this.#n.properties), i = this.#o;
|
|
496
510
|
for (let e of r) i[e] = this[e];
|
|
@@ -556,15 +570,15 @@ var K = class e extends m {
|
|
|
556
570
|
if (n.length !== 1) return;
|
|
557
571
|
let [r] = n;
|
|
558
572
|
if (!C.test(r)) return;
|
|
559
|
-
let i =
|
|
560
|
-
if (!(o && s === "value" || i && s === "checked" || a && s === "checked" ||
|
|
573
|
+
let i = I(e), a = z(e), o = V(e) || B(e), [s, c] = (t ?? "").split(":");
|
|
574
|
+
if (!(o && s === "value" || i && s === "checked" || a && s === "checked" || B(e))) return;
|
|
561
575
|
c ? e["on" + c] === void 0 && this.#F(e, t, "refers to an unsupported event name") : c = "change";
|
|
562
|
-
let l =
|
|
576
|
+
let l = N(r);
|
|
563
577
|
e.addEventListener(c, (e) => {
|
|
564
578
|
let { target: t } = e;
|
|
565
579
|
if (!t) return;
|
|
566
580
|
let { type: n } = this.#n.properties[l], r = t, { value: o } = r;
|
|
567
|
-
s === "checked" ? i ? this[l] = r.checked : a && r.checked && (this[l] = o) : this[l] = n === Number ?
|
|
581
|
+
s === "checked" ? i ? this[l] = r.checked : a && r.checked && (this[l] = o) : this[l] = n === Number ? G(o) : o, this.#k(l);
|
|
568
582
|
});
|
|
569
583
|
}
|
|
570
584
|
#C(e) {
|
|
@@ -592,7 +606,7 @@ var K = class e extends m {
|
|
|
592
606
|
propertyChangedCallback(e, t, n) {}
|
|
593
607
|
#O(e, t) {
|
|
594
608
|
if (!t || !C.test(t)) return;
|
|
595
|
-
let n =
|
|
609
|
+
let n = N(t);
|
|
596
610
|
return this[n] === void 0 && this.#I(e, "", n), n;
|
|
597
611
|
}
|
|
598
612
|
#k(e) {
|
|
@@ -617,13 +631,16 @@ var K = class e extends m {
|
|
|
617
631
|
}
|
|
618
632
|
let a = t.computed;
|
|
619
633
|
for (let t of a.matchAll(w)) {
|
|
620
|
-
let
|
|
621
|
-
this[
|
|
634
|
+
let r = N(t[0]);
|
|
635
|
+
this[r] === void 0 && this.#I(null, e, r);
|
|
636
|
+
let o = H(r), s = !1;
|
|
637
|
+
for (let [e, t] of Object.entries(n.properties)) J(t.usedBy)?.includes(o) && (i(e, a), s = !0);
|
|
638
|
+
!s && typeof this[r] != "function" && i(r, a);
|
|
622
639
|
}
|
|
623
640
|
for (let t of a.matchAll(b)) {
|
|
624
641
|
let r = t[1];
|
|
625
642
|
if (typeof this[r] != "function") throw new g(`property ${e} computed calls non-method ${r}`);
|
|
626
|
-
for (let [e, t] of Object.entries(n.properties))
|
|
643
|
+
for (let [e, t] of Object.entries(n.properties)) J(t.usedBy)?.includes(r) && i(e, a);
|
|
627
644
|
}
|
|
628
645
|
}
|
|
629
646
|
#M(e, t) {
|
|
@@ -639,12 +656,12 @@ var K = class e extends m {
|
|
|
639
656
|
let r = this.#G(t, n, e);
|
|
640
657
|
if (!r) {
|
|
641
658
|
let r = e.replaceAll("this..", "this.");
|
|
642
|
-
n ?
|
|
659
|
+
n ? q(t, n, r) : "textContent" in t && (t.textContent = r);
|
|
643
660
|
return;
|
|
644
661
|
}
|
|
645
662
|
let i = this.#n;
|
|
646
663
|
r.forEach((t) => {
|
|
647
|
-
let n =
|
|
664
|
+
let n = N(t);
|
|
648
665
|
if (typeof this[n] == "function") return;
|
|
649
666
|
let r = i.propToExprsMap, a = r.get(n);
|
|
650
667
|
a || (a = [], r.set(n, a)), a.includes(e) || a.push(e);
|
|
@@ -659,7 +676,7 @@ var K = class e extends m {
|
|
|
659
676
|
attrName: n
|
|
660
677
|
} : t), t instanceof HTMLElement && this.#S(t, n, r);
|
|
661
678
|
let o = this.#v(e);
|
|
662
|
-
n ?
|
|
679
|
+
n ? q(t, n, o) : this.#V(t, o);
|
|
663
680
|
}
|
|
664
681
|
#P(e, t) {
|
|
665
682
|
let n = t?.trim() ?? "", r = this.#n.properties[n];
|
|
@@ -669,7 +686,7 @@ var K = class e extends m {
|
|
|
669
686
|
this.hasAttribute(e) || this.setAttribute(e, t);
|
|
670
687
|
}
|
|
671
688
|
setFormValue(e, t) {
|
|
672
|
-
!this.#a || !
|
|
689
|
+
!this.#a || !R(t) || (this.#a.set(e, t), this.#s?.setFormValue(this.#a));
|
|
673
690
|
}
|
|
674
691
|
static ssr(e = {}) {
|
|
675
692
|
throw new g("SSR is not available in the browser build.");
|
|
@@ -695,7 +712,7 @@ var K = class e extends m {
|
|
|
695
712
|
}
|
|
696
713
|
return n;
|
|
697
714
|
}
|
|
698
|
-
if (i === Number) return
|
|
715
|
+
if (i === Number) return G(n);
|
|
699
716
|
if (i === Boolean) {
|
|
700
717
|
if (n === "true") return !0;
|
|
701
718
|
if (n === "false" || n === "null") return !1;
|
|
@@ -704,7 +721,7 @@ var K = class e extends m {
|
|
|
704
721
|
}
|
|
705
722
|
}
|
|
706
723
|
#z(e, t, n, r) {
|
|
707
|
-
|
|
724
|
+
R(n) && !this.#T(e) && n !== (t === Boolean ? this.hasAttribute(r) : this.#L(e, r)) && K(this, r || e, n);
|
|
708
725
|
}
|
|
709
726
|
#B(e) {
|
|
710
727
|
for (let [t, n] of this.#x([e])) this.#M(t, this.#v(n));
|
|
@@ -716,7 +733,7 @@ var K = class e extends m {
|
|
|
716
733
|
let r = typeof t;
|
|
717
734
|
r !== "string" && r !== "number" && this.#F(e, void 0, " computed content is not a string or number");
|
|
718
735
|
let i = String(t);
|
|
719
|
-
e instanceof HTMLElement &&
|
|
736
|
+
e instanceof HTMLElement && B(e) ? e.value = i : n && r === "string" && i.trim().startsWith("<") ? (e.innerHTML = d(i), this.#J(e), this.#E(e)) : n && (e.textContent = i);
|
|
720
737
|
}
|
|
721
738
|
#H(e, t) {
|
|
722
739
|
let n = this.#c.get(e);
|
|
@@ -729,27 +746,31 @@ var K = class e extends m {
|
|
|
729
746
|
a[n] = t;
|
|
730
747
|
}
|
|
731
748
|
#U() {
|
|
732
|
-
let e = this.#n
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
let n =
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
749
|
+
let e = this.#n, t = (e, t, n) => {
|
|
750
|
+
let r = e.get(t);
|
|
751
|
+
r || (r = [], e.set(t, r)), r.includes(n) || r.push(n);
|
|
752
|
+
}, n = () => {
|
|
753
|
+
let n = f();
|
|
754
|
+
e.methodToExprsMap = n;
|
|
755
|
+
let r = Array.from(this.#r.keys());
|
|
756
|
+
for (let e of r) {
|
|
757
|
+
for (let r of e.matchAll(b)) t(n, r[1], e);
|
|
758
|
+
for (let r of e.matchAll(w)) t(n, H(N(r[0])), e);
|
|
740
759
|
}
|
|
741
|
-
}
|
|
742
|
-
let
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
760
|
+
}, { properties: r, propToExprsMap: i } = e;
|
|
761
|
+
for (let [t, a] of Object.entries(r)) {
|
|
762
|
+
let r = J(a.usedBy);
|
|
763
|
+
if (!r) continue;
|
|
764
|
+
e.methodToExprsMap || n();
|
|
765
|
+
let { methodToExprsMap: o } = e, s = i.get(t);
|
|
766
|
+
s || (s = [], i.set(t, s));
|
|
767
|
+
for (let e of r) {
|
|
768
|
+
if (L(e)) {
|
|
769
|
+
let n = P(e);
|
|
770
|
+
if (typeof M(this, n)?.get != "function") throw new g(`property ${t} usedBy contains non-getter ${e}`);
|
|
771
|
+
} else if (typeof this[e] != "function") throw new g(`property ${t} usedBy contains non-method ${e}`);
|
|
772
|
+
let n = o.get(e) || [];
|
|
773
|
+
for (let e of n) s.includes(e) || s.push(e);
|
|
753
774
|
}
|
|
754
775
|
}
|
|
755
776
|
}
|
|
@@ -799,7 +820,7 @@ var K = class e extends m {
|
|
|
799
820
|
#G(e, t, n) {
|
|
800
821
|
let r = n.match(w);
|
|
801
822
|
if (r) return r.forEach((n) => {
|
|
802
|
-
let r =
|
|
823
|
+
let r = N(n);
|
|
803
824
|
this[r] === void 0 && this.#I(e, t, r);
|
|
804
825
|
}), r;
|
|
805
826
|
}
|
|
@@ -842,8 +863,8 @@ var K = class e extends m {
|
|
|
842
863
|
}
|
|
843
864
|
}
|
|
844
865
|
};
|
|
845
|
-
function
|
|
846
|
-
let n =
|
|
866
|
+
function Z(e, ...t) {
|
|
867
|
+
let n = F(e, t);
|
|
847
868
|
for (;;) {
|
|
848
869
|
let e = _.exec(n);
|
|
849
870
|
if (!e) break;
|
|
@@ -853,24 +874,24 @@ function q(e, ...t) {
|
|
|
853
874
|
if (!r.startsWith("--")) {
|
|
854
875
|
let i = `--${r}: ${t};
|
|
855
876
|
${r}: var(--${r})`;
|
|
856
|
-
n =
|
|
877
|
+
n = W(n, e.index, e[0].length, i);
|
|
857
878
|
}
|
|
858
879
|
}
|
|
859
880
|
}
|
|
860
881
|
return n;
|
|
861
882
|
}
|
|
862
|
-
function
|
|
863
|
-
let n =
|
|
883
|
+
function Q(e, ...t) {
|
|
884
|
+
let n = F(e, t);
|
|
864
885
|
for (;;) {
|
|
865
886
|
let e = S.exec(n);
|
|
866
887
|
if (!e || e[1] === "style") break;
|
|
867
|
-
let t =
|
|
888
|
+
let t = U(e[2]);
|
|
868
889
|
if (T.test(t)) {
|
|
869
890
|
let r = `<!-- ${t.trim()} -->`, i = e.index + e[0].indexOf(">") + 1;
|
|
870
|
-
n =
|
|
891
|
+
n = W(n, i, t.length, r);
|
|
871
892
|
}
|
|
872
893
|
}
|
|
873
894
|
return n;
|
|
874
895
|
}
|
|
875
896
|
//#endregion
|
|
876
|
-
export { a,
|
|
897
|
+
export { a, Q as i, O as n, Z as r, X as t };
|
package/dist/wrec-ssr.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as e, i as t, n, r, t as i } from "./wrec-
|
|
1
|
+
import { a as e, i as t, n, r, t as i } from "./wrec-Cpci7nM6.js";
|
|
2
2
|
//#region \0rolldown/runtime.js
|
|
3
3
|
var a = Object.defineProperty, o = Object.getOwnPropertyDescriptor, s = Object.getOwnPropertyNames, c = Object.prototype.hasOwnProperty, l = (e, t) => () => (e && (t = e(e = 0)), t), u = (e, t) => () => (t || e((t = { exports: {} }).exports, t), t.exports), d = (e, t) => {
|
|
4
4
|
let n = {};
|
package/dist/wrec.es.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as e, i as t, n, r, t as i } from "./wrec-
|
|
1
|
+
import { a as e, i as t, n, r, t as i } from "./wrec-Cpci7nM6.js";
|
|
2
2
|
export { i as Wrec, e as WrecState, n as createElement, r as css, t as html };
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "wrec",
|
|
3
3
|
"description": "a small library that greatly simplifies building web components",
|
|
4
4
|
"author": "R. Mark Volkmann",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.32.0",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -37,6 +37,8 @@
|
|
|
37
37
|
"dist",
|
|
38
38
|
"scripts/ast-utils.js",
|
|
39
39
|
"scripts/lint.js",
|
|
40
|
+
"scripts/scaffold.js",
|
|
41
|
+
"scripts/template.ts",
|
|
40
42
|
"scripts/used-by.js",
|
|
41
43
|
"README.md"
|
|
42
44
|
],
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import {css, html, Wrec} from 'wrec';
|
|
2
|
+
|
|
3
|
+
class {class} extends Wrec {
|
|
4
|
+
static properties = {
|
|
5
|
+
name: {type: String, value: 'World'},
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
static css = css`
|
|
9
|
+
p {
|
|
10
|
+
color: blue;
|
|
11
|
+
font-family: fantasy;
|
|
12
|
+
}
|
|
13
|
+
`;
|
|
14
|
+
|
|
15
|
+
static html = html`
|
|
16
|
+
<p>Hello, <span>this.name</span>!</p>
|
|
17
|
+
`;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
{class}.define('{tag}');
|