@justeattakeaway/pie-divider 1.5.13 → 1.5.14
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 +1 -1
- package/dist/index.js +13 -13
- package/package.json +1 -1
- package/src/divider.scss +2 -0
package/custom-elements.json
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { LitElement as
|
|
1
|
+
import { LitElement as m, unsafeCSS as u, html as h } from "lit";
|
|
2
2
|
import { property as b } from "lit/decorators.js";
|
|
3
|
-
import { classMap as
|
|
4
|
-
import { validPropertyValues as
|
|
5
|
-
const v = class v extends
|
|
3
|
+
import { classMap as f } from "lit/directives/class-map.js";
|
|
4
|
+
import { validPropertyValues as g, safeCustomElement as y } from "@justeattakeaway/pie-webc-core";
|
|
5
|
+
const v = class v extends m {
|
|
6
6
|
willUpdate() {
|
|
7
7
|
this.getAttribute("v") || this.setAttribute("v", v.v);
|
|
8
8
|
}
|
|
9
9
|
};
|
|
10
|
-
v.v = "1.5.
|
|
10
|
+
v.v = "1.5.14";
|
|
11
11
|
let p = v;
|
|
12
|
-
const
|
|
12
|
+
const w = "*,*:after,*:before{box-sizing:inherit}:host{display:block}:host([orientation=vertical]){height:100%}.c-divider{--divider-bg-color: var(--dt-color-divider-default);--divider-width: 100%;--divider-min-width: 16px;--divider-height: 1px;--divider-label-max-width: 90%;--divider-font-family: var(--dt-font-body-l-family);--divider-font-size: calc(var(--dt-font-body-l-size) * 1px);--divider-line-height: calc(var(--dt-font-body-l-line-height) * 1px);width:var(--divider-width)}.c-divider,.c-divider hr{margin:0;border:0;background-color:var(--divider-bg-color)}.c-divider:not(.c-divider--labelled){height:var(--divider-height)}.c-divider.c-divider--labelled{display:flex;align-items:center;text-align:center;gap:var(--dt-spacing-b);background-color:transparent;color:var(--dt-color-content-subdued-solid)}.c-divider.c-divider--labelled .c-divider-label{font-size:var(--divider-font-size);line-height:var(--divider-line-height);font-family:var(--divider-font-family);max-width:var(--divider-label-max-width);word-wrap:break-word}.c-divider.c-divider--labelled hr{flex-grow:1;height:var(--divider-height);min-width:var(--divider-min-width)}.c-divider.c-divider--labelled.c-divider--inverse{color:var(--dt-color-content-inverse-solid)}.c-divider.c-divider--inverse{--divider-bg-color: var(--dt-color-divider-inverse)}.c-divider.c-divider--vertical{--divider-width: 1px;--divider-height: 100%}", x = ["default", "inverse"], $ = ["horizontal", "vertical"], l = {
|
|
13
13
|
variant: "default",
|
|
14
14
|
orientation: "horizontal",
|
|
15
15
|
label: ""
|
|
@@ -36,7 +36,7 @@ let a = class extends p {
|
|
|
36
36
|
<div
|
|
37
37
|
id="${e}"
|
|
38
38
|
data-test-id="${e}"
|
|
39
|
-
class="${
|
|
39
|
+
class="${f(i)}"
|
|
40
40
|
aria-labelledby="${e}-label">
|
|
41
41
|
<hr aria-hidden="true"/>
|
|
42
42
|
<span id="${e}-label" class="c-divider-label">${d}</span>
|
|
@@ -44,29 +44,29 @@ let a = class extends p {
|
|
|
44
44
|
</div>` : h`
|
|
45
45
|
<hr id="${e}"
|
|
46
46
|
data-test-id="${e}"
|
|
47
|
-
class="${
|
|
47
|
+
class="${f(i)}"
|
|
48
48
|
aria-hidden="true"
|
|
49
49
|
/>`}`;
|
|
50
50
|
}
|
|
51
51
|
};
|
|
52
|
-
a.styles =
|
|
52
|
+
a.styles = u(w);
|
|
53
53
|
n([
|
|
54
54
|
b({ type: String }),
|
|
55
|
-
|
|
55
|
+
g(e, x, l.variant)
|
|
56
56
|
], a.prototype, "variant", 2);
|
|
57
57
|
n([
|
|
58
58
|
b({ type: String, reflect: !0 }),
|
|
59
|
-
|
|
59
|
+
g(e, $, l.orientation)
|
|
60
60
|
], a.prototype, "orientation", 2);
|
|
61
61
|
n([
|
|
62
62
|
b({ type: String })
|
|
63
63
|
], a.prototype, "label", 2);
|
|
64
64
|
a = n([
|
|
65
|
-
|
|
65
|
+
y("pie-divider")
|
|
66
66
|
], a);
|
|
67
67
|
export {
|
|
68
68
|
a as PieDivider,
|
|
69
69
|
l as defaultProps,
|
|
70
70
|
$ as orientations,
|
|
71
|
-
|
|
71
|
+
x as variants
|
|
72
72
|
};
|
package/package.json
CHANGED
package/src/divider.scss
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
--divider-min-width: 16px;
|
|
15
15
|
--divider-height: 1px;
|
|
16
16
|
--divider-label-max-width: 90%;
|
|
17
|
+
--divider-font-family: var(--dt-font-body-l-family);
|
|
17
18
|
--divider-font-size: #{p.font-size(--dt-font-body-l-size)};
|
|
18
19
|
--divider-line-height: #{p.font-size(--dt-font-body-l-line-height)};
|
|
19
20
|
|
|
@@ -41,6 +42,7 @@
|
|
|
41
42
|
.c-divider-label {
|
|
42
43
|
font-size: var(--divider-font-size);
|
|
43
44
|
line-height: var(--divider-line-height);
|
|
45
|
+
font-family: var(--divider-font-family);
|
|
44
46
|
max-width: var(--divider-label-max-width);
|
|
45
47
|
word-wrap: break-word;
|
|
46
48
|
}
|