ui-beyable 1.0.26 → 1.0.28

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.
@@ -2,6 +2,6 @@ import React from "react";
2
2
  interface ISection {
3
3
  children: React.ReactNode;
4
4
  width?: 's' | 'm' | 'l' | 'full';
5
- backgroundColor: 'grey' | 'white';
5
+ backgroundColor?: 'grey' | 'white';
6
6
  }
7
7
  export { ISection };
package/lib/cjs/index.js CHANGED
@@ -3319,9 +3319,9 @@ function PanelSection(_a) {
3319
3319
  }
3320
3320
  // Size
3321
3321
  var sizeClass = {
3322
- xxs: styles$2.size_m,
3323
- xs: styles$2.size_s,
3324
- l: styles$2.size_xs,
3322
+ m: styles$2.size_m,
3323
+ s: styles$2.size_s,
3324
+ xs: styles$2.size_xs,
3325
3325
  };
3326
3326
  if (size && size in sizeClass) {
3327
3327
  innerClass.push(sizeClass[size]);
@@ -2,6 +2,6 @@ import React from "react";
2
2
  interface ISection {
3
3
  children: React.ReactNode;
4
4
  width?: 's' | 'm' | 'l' | 'full';
5
- backgroundColor: 'grey' | 'white';
5
+ backgroundColor?: 'grey' | 'white';
6
6
  }
7
7
  export { ISection };
package/lib/esm/index.js CHANGED
@@ -3317,9 +3317,9 @@ function PanelSection(_a) {
3317
3317
  }
3318
3318
  // Size
3319
3319
  var sizeClass = {
3320
- xxs: styles$2.size_m,
3321
- xs: styles$2.size_s,
3322
- l: styles$2.size_xs,
3320
+ m: styles$2.size_m,
3321
+ s: styles$2.size_s,
3322
+ xs: styles$2.size_xs,
3323
3323
  };
3324
3324
  if (size && size in sizeClass) {
3325
3325
  innerClass.push(sizeClass[size]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ui-beyable",
3
- "version": "1.0.26",
3
+ "version": "1.0.28",
4
4
  "description": "Ui library of Beyable projets",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",