@proximus/lavender 1.4.9-beta.1 → 1.4.10-alpha.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.
@@ -3880,7 +3880,6 @@ const _Banner = class _Banner extends VerticallyExtendedElement {
3880
3880
  <slot name="title"></slot>
3881
3881
  <slot name="description"></slot>
3882
3882
  <slot name="content"></slot>
3883
-
3884
3883
  </div>
3885
3884
  </px-container>
3886
3885
  </px-grid>
@@ -4016,20 +4015,20 @@ const _Banner = class _Banner extends VerticallyExtendedElement {
4016
4015
  }
4017
4016
  createGridding(value) {
4018
4017
  const breakpoints = [
4019
- { prop: "hasGridding", gridProp: "gridCols", attr: "col-span" },
4018
+ { prop: "hasGridding", gridAttr: "grid-cols", attr: "col-span" },
4020
4019
  {
4021
4020
  prop: "hasGriddingMobile",
4022
- gridProp: "gridColsMobile",
4021
+ gridAttr: "grid-cols--mobile",
4023
4022
  attr: "col-span--mobile"
4024
4023
  },
4025
4024
  {
4026
4025
  prop: "hasGriddingTablet",
4027
- gridProp: "gridColsTablet",
4026
+ gridAttr: "grid-cols--tablet",
4028
4027
  attr: "col-span--tablet"
4029
4028
  },
4030
4029
  {
4031
4030
  prop: "hasGriddingLaptop",
4032
- gridProp: "gridColsLaptop",
4031
+ gridAttr: "grid-cols--laptop",
4033
4032
  attr: "col-span--laptop"
4034
4033
  }
4035
4034
  ];
@@ -4037,16 +4036,16 @@ const _Banner = class _Banner extends VerticallyExtendedElement {
4037
4036
  "px-grid > px-container"
4038
4037
  );
4039
4038
  if (value !== null) {
4040
- breakpoints.forEach(({ prop, gridProp, attr }) => {
4039
+ breakpoints.forEach(({ prop, gridAttr, attr }) => {
4041
4040
  if (this[prop]) {
4042
- this.$grid[gridProp] = "3";
4043
- spanElement.setAttribute(attr, "2");
4041
+ this.$grid.setAttribute(gridAttr, "3");
4042
+ spanElement == null ? void 0 : spanElement.setAttribute(attr, "2");
4044
4043
  }
4045
4044
  });
4046
4045
  } else {
4047
- breakpoints.forEach(({ gridProp, attr }) => {
4048
- this.$grid[gridProp] = "1";
4049
- spanElement.removeAttribute(attr);
4046
+ breakpoints.forEach(({ gridAttr, attr }) => {
4047
+ this.$grid.setAttribute(gridAttr, "1");
4048
+ spanElement == null ? void 0 : spanElement.setAttribute(attr, "1");
4050
4049
  });
4051
4050
  }
4052
4051
  }
@@ -7123,7 +7122,7 @@ class CellSwitch extends WithExtraAttributes {
7123
7122
  return `
7124
7123
  <div class="cell-switch">
7125
7124
  <px-cell hoverable>
7126
- <px-switch slot="action-indicator" aria-hidden="true" tabindex="-1"></px-switch>
7125
+ <px-switch slot="action-indicator" inert></px-switch>
7127
7126
  <slot name="visual" slot="visual"></slot>
7128
7127
  <slot name="label" slot="label"></slot>
7129
7128
  <slot name="description" slot="description"></slot>
@@ -8017,7 +8016,7 @@ class CellRadio extends WithExtraAttributes {
8017
8016
  return `
8018
8017
  <div class="cell-radio">
8019
8018
  <px-cell hoverable>
8020
- <px-radio slot="prefix" aria-hidden="true" tabindex="-1"></px-radio>
8019
+ <px-radio slot="prefix" inert></px-radio>
8021
8020
  <slot name="visual" slot="visual"></slot>
8022
8021
  <slot name="label" slot="label"></slot>
8023
8022
  <slot name="description" slot="description"></slot>
@@ -16500,7 +16499,7 @@ class TileCheckbox extends WithExtraAttributes {
16500
16499
  <div class="tile-checkbox">
16501
16500
  <px-tile hoverable>
16502
16501
  <slot name="prefix" slot="prefix"></slot>
16503
- <px-checkbox slot="suffix" aria-hidden="true" tabindex="-1"></px-checkbox>
16502
+ <px-checkbox slot="suffix" inert></px-checkbox>
16504
16503
  <slot name="label" slot="label"></slot>
16505
16504
  <slot name="description" slot="description"></slot>
16506
16505
  </px-tile>
@@ -16780,7 +16779,7 @@ class TileRadio extends WithExtraAttributes {
16780
16779
  <div class="tile-radio">
16781
16780
  <px-tile hoverable>
16782
16781
  <slot name="prefix" slot="prefix"></slot>
16783
- <px-radio slot="suffix" aria-hidden="true" tabindex="-1"></px-radio>
16782
+ <px-radio slot="suffix" inert></px-radio>
16784
16783
  <slot name="label" slot="label"></slot>
16785
16784
  <slot name="description" slot="description"></slot>
16786
16785
  </px-tile>
@@ -17222,7 +17221,7 @@ class TileSwitch extends WithExtraAttributes {
17222
17221
  <div class="tile-switch">
17223
17222
  <px-tile hoverable>
17224
17223
  <slot name="prefix" slot="prefix"></slot>
17225
- <px-switch slot="suffix" aria-hidden="true" tabindex="-1"></px-switch>
17224
+ <px-switch slot="suffix" inert></px-switch>
17226
17225
  <slot name="label" slot="label"></slot>
17227
17226
  <slot name="description" slot="description"></slot>
17228
17227
  </px-tile>