@proximus/lavender-layout 1.4.10-alpha.9 → 1.4.10-beta.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.
Files changed (2) hide show
  1. package/dist/index.es.js +6 -2
  2. package/package.json +1 -1
package/dist/index.es.js CHANGED
@@ -13,14 +13,18 @@ const v = [
13
13
  "default",
14
14
  "stretch",
15
15
  "flex-start",
16
+ "start",
16
17
  "flex-end",
18
+ "end",
17
19
  "center",
18
20
  "baseline"
19
21
  ], w = [
20
22
  "",
21
23
  "default",
22
24
  "flex-start",
25
+ "start",
23
26
  "flex-end",
27
+ "end",
24
28
  "center",
25
29
  "space-between",
26
30
  "space-around",
@@ -132,7 +136,7 @@ class l extends d {
132
136
  updateOverflowX(t, i, e, o) {
133
137
  if (!x(o, e)) {
134
138
  c(
135
- `${e} is not an allowed ${t} value for ${this.tagName.toLowerCase()}`
139
+ `"${e}" is not a valid ${t} value for ${this.tagName.toLowerCase()}. Allowed values are: "${o.join('", "')}".`
136
140
  );
137
141
  return;
138
142
  }
@@ -144,7 +148,7 @@ class l extends d {
144
148
  }
145
149
  updateFlexProperties(t, i, e, o) {
146
150
  this.checkName(o, e) || c(
147
- `${e} is not an allowed ${t} value for ${this.tagName.toLowerCase()}`
151
+ `"${e}" is not a valid ${t} value for ${this.tagName.toLowerCase()}. Allowed values are: "${o.join('", "')}".`
148
152
  );
149
153
  const p = t.indexOf("--") > -1, a = p ? t.split("--")[0] : t, s = [];
150
154
  if (!p)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proximus/lavender-layout",
3
- "version": "1.4.10-alpha.9",
3
+ "version": "1.4.10-beta.1",
4
4
  "description": "",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",