@proximus/lavender-common 0.1.0-alpha.51 → 0.1.0-alpha.53

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.js +17 -7
  2. package/package.json +3 -2
package/dist/index.js CHANGED
@@ -308,6 +308,7 @@ const p = [
308
308
  "action-disabled",
309
309
  "action-neutral",
310
310
  "action-neutral-hover",
311
+ "action-neutral-bare",
311
312
  "purpose-success",
312
313
  "purpose-warning",
313
314
  "purpose-error",
@@ -384,21 +385,30 @@ const p = [
384
385
  "right",
385
386
  "bottom",
386
387
  "left"
387
- ];
388
- function V(e) {
388
+ ], V = [
389
+ "",
390
+ "default",
391
+ "xs",
392
+ "s",
393
+ "l",
394
+ "2xl"
395
+ ], C = ["", "default", "s", "m", "l"];
396
+ function M(e) {
389
397
  const t = document.createElement("style");
390
398
  t.innerHTML = e, document.head.appendChild(t);
391
399
  }
392
- function M(e) {
400
+ function L(e) {
393
401
  return typeof e == "string" && (e === "false" || e === "0" || e === "null") || typeof e == "boolean" && !e;
394
402
  }
395
- function C() {
403
+ function T() {
396
404
  return window.matchMedia("only screen and (min-width: 768px)").matches ? "tablet" : window.matchMedia("only screen and (min-width: 1025px)").matches ? "laptop" : "mobile";
397
405
  }
398
406
  export {
399
407
  n as PxElement,
400
408
  o as WithFlexAttributes,
401
- V as addGlobalStylesheet,
409
+ M as addGlobalStylesheet,
410
+ V as assetContainerIconSizeValues,
411
+ C as assetContainerImgWidthValues,
402
412
  w as backgroundColorValues,
403
413
  k as borderColorValues,
404
414
  f as borderRadiusValues,
@@ -409,12 +419,12 @@ export {
409
419
  d as fontsizeValues,
410
420
  b as fontweightValues,
411
421
  r as getSupportedAttributeNames,
412
- C as getViewportFormat,
422
+ T as getViewportFormat,
413
423
  y as gradientValues,
414
424
  p as gridGapValues,
415
425
  A as headingValues,
416
426
  h as iconSizeValues,
417
- M as isFalsy,
427
+ L as isFalsy,
418
428
  S as noBorderRadiusValues,
419
429
  c as paddingValues,
420
430
  g as textalignValues
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proximus/lavender-common",
3
- "version": "0.1.0-alpha.51",
3
+ "version": "0.1.0-alpha.53",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
@@ -24,7 +24,7 @@
24
24
  "publishConfig": {
25
25
  "access": "public"
26
26
  },
27
- "gitHead": "671fab7ee21d1c0ec6498b45b0bb2fd47e6e6c84",
27
+ "gitHead": "f746b7598c629d125506755f7bb0a5b7b520bcec",
28
28
  "lerna": {
29
29
  "command": {
30
30
  "publish": {
@@ -32,6 +32,7 @@
32
32
  "CHANGELOG.md",
33
33
  "package.json",
34
34
  "dist/*.js",
35
+ "dist/*.cjs",
35
36
  "dist/css/**/*.css"
36
37
  ]
37
38
  }