@justeattakeaway/pie-breadcrumb 0.1.0 → 0.1.1
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/index.js +10 -10
- package/package.json +3 -3
- package/declaration.d.ts +0 -9
package/dist/index.js
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
import { LitElement as c, html as d, unsafeCSS as m } from "lit";
|
|
2
2
|
import { RtlMixin as f, defineCustomElement as u } from "@justeattakeaway/pie-webc-core";
|
|
3
|
-
import { classMap as
|
|
4
|
-
import { property as
|
|
5
|
-
var b = Object.defineProperty, y = (t,
|
|
6
|
-
for (var
|
|
7
|
-
(i = t[a]) && (
|
|
8
|
-
return
|
|
3
|
+
import { classMap as v } from "lit/directives/class-map.js";
|
|
4
|
+
import { property as g } from "lit/decorators.js";
|
|
5
|
+
var b = Object.defineProperty, y = (t, e, o, h) => {
|
|
6
|
+
for (var r = void 0, a = t.length - 1, i; a >= 0; a--)
|
|
7
|
+
(i = t[a]) && (r = i(e, o, r) || r);
|
|
8
|
+
return r && b(e, o, r), r;
|
|
9
9
|
};
|
|
10
10
|
class l extends c {
|
|
11
11
|
constructor() {
|
|
12
|
-
super(...arguments), this.v = "0.1.
|
|
12
|
+
super(...arguments), this.v = "0.1.1";
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
y([
|
|
16
|
-
|
|
16
|
+
g({ type: String, reflect: !0 })
|
|
17
17
|
], l.prototype, "v");
|
|
18
18
|
const x = "*,*:after,*:before{box-sizing:inherit}.c-breadcrumb{--breadcrumb-background-color: var(--dt-color-transparent);padding:var(--dt-spacing-a) var(--dt-spacing-d) var(--dt-spacing-a) var(--dt-spacing-d)}.c-breadcrumb ol{margin:0;padding:0;display:flex;flex-flow:row;gap:var(--dt-spacing-a)}.c-breadcrumb ol li{list-style-type:none}", p = "pie-breadcrumb", C = "c-breadcrumb", s = class s extends f(l) {
|
|
19
19
|
render() {
|
|
20
|
-
const
|
|
20
|
+
const e = {
|
|
21
21
|
[C]: !0
|
|
22
22
|
};
|
|
23
23
|
return d`
|
|
24
24
|
<nav
|
|
25
25
|
data-test-id="${p}"
|
|
26
|
-
class="${
|
|
26
|
+
class="${v(e)}">
|
|
27
27
|
<ol>
|
|
28
28
|
<li><span>Previous Page</span></li>
|
|
29
29
|
<li><span>Current Page</span></li>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justeattakeaway/pie-breadcrumb",
|
|
3
3
|
"description": "PIE Design System Breadcrumb built using Web Components",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
"license": "Apache-2.0",
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@custom-elements-manifest/analyzer": "0.9.0",
|
|
36
|
-
"@justeattakeaway/pie-components-config": "0.19.
|
|
36
|
+
"@justeattakeaway/pie-components-config": "0.19.1",
|
|
37
37
|
"@justeattakeaway/pie-css": "0.16.0",
|
|
38
38
|
"@justeattakeaway/pie-monorepo-utils": "0.5.0",
|
|
39
39
|
"cem-plugin-module-file-extensions": "0.0.5"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@justeattakeaway/pie-webc-core": "0.25.
|
|
42
|
+
"@justeattakeaway/pie-webc-core": "0.25.1"
|
|
43
43
|
},
|
|
44
44
|
"volta": {
|
|
45
45
|
"extends": "../../../package.json"
|