@proximus/lavender-banner 2.0.0-alpha.100 → 2.0.0-alpha.102

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 +2 -2
  2. package/package.json +1 -1
package/dist/index.es.js CHANGED
@@ -125,7 +125,7 @@ const M = [
125
125
  updateGap(t, e, n) {
126
126
  if (!this.checkName(n, e)) {
127
127
  h(
128
- `${e} is not an allowed gap value for ${this.tagName.toLowerCase()}`
128
+ `"${e}" is not a valid gap value for ${this.tagName.toLowerCase()}. Allowed values are: "${n.join('", "')}".`
129
129
  );
130
130
  return;
131
131
  }
@@ -145,7 +145,7 @@ const M = [
145
145
  }
146
146
  updateAttribute(t, e, n, i) {
147
147
  this.checkName(i, n) ? t === "grid-cols" || t === "grid-cols--mobile" || t === "grid-cols--tablet" || t === "grid-cols--laptop" || t === "grid-cols--desktop" ? this.$el.style.setProperty(`--${t}`, n) : (e !== null && e !== "" && e !== "default" && this.$el.classList.toggle(`${t}-${e}`), n !== null && n !== "" && n !== "default" && this.$el.classList.toggle(`${t}-${n}`)) : h(
148
- `${n} is not an allowed ${t} value for ${this.tagName.toLowerCase()}`
148
+ `"${n}" is not a valid ${t} value for ${this.tagName.toLowerCase()}. Allowed values are: "${i.join('", "')}".`
149
149
  );
150
150
  }
151
151
  get gap() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proximus/lavender-banner",
3
- "version": "2.0.0-alpha.100",
3
+ "version": "2.0.0-alpha.102",
4
4
  "description": "",
5
5
  "files": [
6
6
  "dist"