@justeattakeaway/pie-list 0.0.2 → 0.0.3
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/custom-elements.json +0 -0
- package/dist/index.js +12 -12
- package/package.json +1 -1
- package/src/list.scss +4 -0
package/custom-elements.json
CHANGED
|
File without changes
|
package/dist/index.js
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import { LitElement as
|
|
2
|
-
import { RtlMixin as
|
|
3
|
-
const e = class e extends
|
|
1
|
+
import { LitElement as f, html as h, unsafeCSS as v } from "lit";
|
|
2
|
+
import { RtlMixin as c, safeCustomElement as d } from "@justeattakeaway/pie-webc-core";
|
|
3
|
+
const e = class e extends f {
|
|
4
4
|
willUpdate() {
|
|
5
5
|
this.getAttribute("v") || this.setAttribute("v", e.v);
|
|
6
6
|
}
|
|
7
7
|
};
|
|
8
|
-
e.v = "0.0.
|
|
8
|
+
e.v = "0.0.3";
|
|
9
9
|
let r = e;
|
|
10
|
-
const
|
|
11
|
-
var
|
|
12
|
-
for (var t = a > 1 ? void 0 : a ?
|
|
10
|
+
const u = "*,*:after,*:before{box-sizing:inherit}:host{display:block}";
|
|
11
|
+
var b = Object.getOwnPropertyDescriptor, m = (l, o, p, a) => {
|
|
12
|
+
for (var t = a > 1 ? void 0 : a ? b(o, p) : o, s = l.length - 1, n; s >= 0; s--)
|
|
13
13
|
(n = l[s]) && (t = n(t) || t);
|
|
14
14
|
return t;
|
|
15
15
|
};
|
|
16
|
-
let i = class extends
|
|
16
|
+
let i = class extends c(r) {
|
|
17
17
|
render() {
|
|
18
|
-
return
|
|
18
|
+
return h`<h1 data-test-id="pie-list">Hello world!</h1>`;
|
|
19
19
|
}
|
|
20
20
|
};
|
|
21
|
-
i.styles =
|
|
22
|
-
i =
|
|
23
|
-
|
|
21
|
+
i.styles = v(u);
|
|
22
|
+
i = m([
|
|
23
|
+
d("pie-list")
|
|
24
24
|
], i);
|
|
25
25
|
export {
|
|
26
26
|
i as PieList
|
package/package.json
CHANGED