@proximus/lavender-mega-dropdown 1.4.3-beta.1 → 1.4.4-alpha.2

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.
Files changed (2) hide show
  1. package/dist/index.es.js +8 -1
  2. package/package.json +1 -1
package/dist/index.es.js CHANGED
@@ -433,7 +433,8 @@ class f extends y {
433
433
  "text-align--tablet",
434
434
  "text-align--laptop",
435
435
  "text-align--desktop",
436
- "inverted"
436
+ "inverted",
437
+ "auto-spacing"
437
438
  ];
438
439
  }
439
440
  attributeChangedCallback(t, e, o) {
@@ -553,6 +554,12 @@ class f extends y {
553
554
  set inverted(t) {
554
555
  this.setAttribute("inverted", t);
555
556
  }
557
+ get autoSpacing() {
558
+ return this.hasAttribute("auto-spacing");
559
+ }
560
+ set autoSpacing(t) {
561
+ t ? this.setAttribute("auto-spacing", "") : this.removeAttribute("auto-spacing");
562
+ }
556
563
  }
557
564
  const W = class W extends f {
558
565
  constructor() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proximus/lavender-mega-dropdown",
3
- "version": "1.4.3-beta.1",
3
+ "version": "1.4.4-alpha.2",
4
4
  "description": "",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",