@proximus/lavender-price 2.0.0-alpha.7 → 2.0.0-alpha.74

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/Price.d.ts CHANGED
@@ -3,18 +3,20 @@ export declare const priceVariantValues: string[];
3
3
  export declare const priceSizeValues: string[];
4
4
  export declare class Price extends PxElement<HTMLDivElement> {
5
5
  static nativeName: string;
6
+ observer: MutationObserver;
6
7
  private template;
7
8
  constructor();
8
9
  static get observedAttributes(): string[];
9
- get variant(): string;
10
- set variant(value: string);
11
- get size(): string;
12
- set size(value: string);
13
- get inverted(): string;
14
- set inverted(value: string);
15
10
  connectedCallback(): void;
16
11
  attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
12
+ disconnectedCallback(): void;
17
13
  toggleClass(oldValue: string, newValue: string): void;
18
14
  updateAttribute(attrName: string, oldValue: string, newValue: string, attrValues: string[]): void;
19
15
  buildPrice(): void;
16
+ get variant(): string;
17
+ set variant(value: string);
18
+ get size(): string;
19
+ set size(value: string);
20
+ get inverted(): boolean;
21
+ set inverted(value: boolean);
20
22
  }
package/dist/index.es.js CHANGED
@@ -1,40 +1,29 @@
1
- import { PxElement as c } from "@proximus/lavender-common";
2
- const l = ".price{--price-s: var(--px-price-size-unit-s-mobile);--price-m: var(--px-price-size-unit-m-mobile);--price-l: var(--px-price-size-unit-l-mobile);font-family:var(--px-font-family);white-space:nowrap;font-weight:var(--px-font-weight-title);color:var(--px-color-text-brand-default);font-size:var(--price-s);line-height:var(--px-line-height-ratio-l)}@media only screen and (min-width: 48em){.price{--price-s: var(--px-price-size-unit-s-tablet);--price-m: var(--px-price-size-unit-m-tablet);--price-l: var(--px-price-size-unit-l-tablet)}}@media only screen and (min-width: 64.0625em){.price{--price-s: var(--px-price-size-unit-s-laptop);--price-m: var(--px-price-size-unit-m-laptop);--price-l: var(--px-price-size-unit-l-laptop)}}.promo,.free{color:var(--px-color-text-purpose-promo-default)}.neutral{color:var(--px-color-text-neutral-default)}.exceeding{color:var(--px-color-text-purpose-error-default)}.disabled{color:var(--px-color-text-state-disabled-default)}:host([inverted]) .price{color:var(--px-color-text-brand-inverted)}:host([inverted]) .promo,:host([inverted]) .free{color:var(--px-color-text-purpose-promo-inverted)}:host([inverted]) .neutral{color:var(--px-color-text-neutral-inverted)}:host([inverted]) .exceeding{color:var(--px-color-text-purpose-error-inverted)}:host([inverted]) .disabled{color:var(--px-color-text-state-disabled-inverted)}.price:not(.promo):not(.free) ::slotted(s){display:none}.euro{font-size:var(--px-price-ratio-l)}.decimals{font-size:var(--px-price-ratio-s)}.m{font-size:var(--price-m)}.l{font-size:var(--price-l)}", a = new CSSStyleSheet();
3
- a.replaceSync(l);
4
- const d = [
1
+ import { PxElement as c, log as l } from "@proximus/lavender-common";
2
+ const d = ".price{--price-s: var(--px-price-size-unit-s-mobile);--price-m: var(--px-price-size-unit-m-mobile);--price-l: var(--px-price-size-unit-l-mobile);font-family:var(--px-font-family);white-space:nowrap;font-weight:var(--px-font-weight-title);color:var(--px-color-text-brand-default);font-size:var(--price-s);line-height:var(--px-line-height-ratio-l)}@media only screen and (min-width: 48em){.price{--price-s: var(--px-price-size-unit-s-tablet);--price-m: var(--px-price-size-unit-m-tablet);--price-l: var(--px-price-size-unit-l-tablet)}}@media only screen and (min-width: 64.0625em){.price{--price-s: var(--px-price-size-unit-s-laptop);--price-m: var(--px-price-size-unit-m-laptop);--price-l: var(--px-price-size-unit-l-laptop)}}.promo,.free{color:var(--px-color-text-purpose-promo-default)}.neutral{color:var(--px-color-text-neutral-default)}.exceeding{color:var(--px-color-text-purpose-error-default)}.disabled{color:var(--px-color-text-state-disabled-default)}:host([inverted]) .price{color:var(--px-color-text-brand-inverted)}:host([inverted]) .promo,:host([inverted]) .free{color:var(--px-color-text-purpose-promo-inverted)}:host([inverted]) .neutral{color:var(--px-color-text-neutral-inverted)}:host([inverted]) .exceeding{color:var(--px-color-text-purpose-error-inverted)}:host([inverted]) .disabled{color:var(--px-color-text-state-disabled-inverted)}.price:not(.promo):not(.free) ::slotted(s){display:none}.euro{font-size:var(--px-price-ratio-l)}.decimals{font-size:var(--px-price-ratio-s)}.m{font-size:var(--price-m)}.l{font-size:var(--price-l)}", o = new CSSStyleSheet();
3
+ o.replaceSync(d);
4
+ const u = [
5
5
  "default",
6
6
  "promo",
7
7
  "free",
8
8
  "neutral",
9
9
  "exceeding",
10
10
  "disabled"
11
- ], v = ["", "s", "m", "l"], o = class o extends c {
11
+ ], v = ["", "s", "m", "l"], a = class a extends c {
12
12
  constructor() {
13
- super(a), this.template = () => '<span class="price"><slot></slot></span>', this.shadowRoot.innerHTML = this.template();
13
+ super(o), this.template = () => '<span class="price"></span>', this.shadowRoot.innerHTML = this.template();
14
14
  }
15
15
  static get observedAttributes() {
16
16
  return [...super.observedAttributes, "variant", "size", "inverted"];
17
17
  }
18
- get variant() {
19
- return this.getAttribute("variant");
20
- }
21
- set variant(e) {
22
- this.setAttribute("variant", e);
23
- }
24
- get size() {
25
- return this.getAttribute("size");
26
- }
27
- set size(e) {
28
- this.setAttribute("size", e);
29
- }
30
- get inverted() {
31
- return this.getAttribute("inverted");
32
- }
33
- set inverted(e) {
34
- this.setAttribute("inverted", e);
35
- }
36
18
  connectedCallback() {
37
- this.buildPrice();
19
+ this.buildPrice(), this.observer = new MutationObserver(() => {
20
+ this.buildPrice();
21
+ }), this.observer.observe(this, {
22
+ childList: !0,
23
+ subtree: !0,
24
+ // By observing characterData, we ensure that any changes to the text content of the price element will trigger a rebuild of the price display, allowing it to update correctly in response to dynamic data changes.
25
+ characterData: !0
26
+ });
38
27
  }
39
28
  attributeChangedCallback(e, t, r) {
40
29
  if (t !== r)
@@ -44,7 +33,7 @@ const d = [
44
33
  e,
45
34
  t,
46
35
  r,
47
- d
36
+ u
48
37
  ), this.buildPrice();
49
38
  break;
50
39
  case "size":
@@ -55,11 +44,16 @@ const d = [
55
44
  break;
56
45
  }
57
46
  }
47
+ disconnectedCallback() {
48
+ this.observer.disconnect();
49
+ }
58
50
  toggleClass(e, t) {
59
51
  e !== null && e !== "" && e !== "default" && this.$el.classList.toggle(e), t !== null && t !== "" && t !== "default" && this.$el.classList.toggle(t);
60
52
  }
61
53
  updateAttribute(e, t, r, i) {
62
- this.toggleClass(t, r), this.checkName(i, r) || console.error(`${r} is not an allowed ${e} value`);
54
+ this.toggleClass(t, r), this.checkName(i, r) || l(
55
+ `${r} is not an allowed ${e} value for ${this.tagName.toLowerCase()}`
56
+ );
63
57
  }
64
58
  buildPrice() {
65
59
  const e = this.innerHTML.trim(), t = /^[\d|.|,]+/.test(e);
@@ -72,12 +66,30 @@ const d = [
72
66
  } else
73
67
  this.$el.innerHTML = `${r}${e}`;
74
68
  }
69
+ get variant() {
70
+ return this.getAttribute("variant");
71
+ }
72
+ set variant(e) {
73
+ super._updateAttribute("variant", e);
74
+ }
75
+ get size() {
76
+ return this.getAttribute("size");
77
+ }
78
+ set size(e) {
79
+ super._updateAttribute("size", e);
80
+ }
81
+ get inverted() {
82
+ return this.hasAttribute("inverted");
83
+ }
84
+ set inverted(e) {
85
+ super._updateBooleanAttribute("inverted", e);
86
+ }
75
87
  };
76
- o.nativeName = "span";
77
- let s = o;
88
+ a.nativeName = "span";
89
+ let s = a;
78
90
  customElements.get("px-price") || customElements.define("px-price", s);
79
91
  export {
80
92
  s as Price,
81
93
  v as priceSizeValues,
82
- d as priceVariantValues
94
+ u as priceVariantValues
83
95
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proximus/lavender-price",
3
- "version": "2.0.0-alpha.7",
3
+ "version": "2.0.0-alpha.74",
4
4
  "description": "",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",
@@ -13,7 +13,7 @@
13
13
  "clean": "rm -rf dist",
14
14
  "build": "npm run clean && NODE_ENV=development vite build && tsc && npm run transform-package-json && npm run wc-manifest",
15
15
  "test": "vitest run --coverage",
16
- "wc-manifest": "cem analyze --globs \"src/*\" --config ../custom-elements-manifest.config.js --outdir dist"
16
+ "wc-manifest": "cem analyze --globs \"src/*\" --config ../../custom-elements-manifest.config.js --outdir dist"
17
17
  },
18
18
  "publishConfig": {
19
19
  "access": "public"