@pagamio/frontend-commons-lib 0.8.188 → 0.8.189

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.
@@ -16,8 +16,9 @@ interface EnvironmentBannerProps {
16
16
  show?: boolean;
17
17
  /**
18
18
  * Text to display in the banner
19
+ * @default ''
19
20
  */
20
- text: string;
21
+ text?: string;
21
22
  /**
22
23
  * Background color of the banner
23
24
  * @default 'red'
@@ -1,6 +1,6 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  function StatusCell({ displayValue, className = '', }) {
3
- const baseClass = 'rounded-full px-4 py-1.5';
3
+ const baseClass = 'rounded-full px-4 py-1.5 whitespace-nowrap';
4
4
  return _jsx("span", { className: `${baseClass} ${className}`.trim(), children: displayValue });
5
5
  }
6
6
  export default StatusCell;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pagamio/frontend-commons-lib",
3
3
  "description": "Pagamio library for Frontend reusable components like the form engine and table container",
4
- "version": "0.8.188",
4
+ "version": "0.8.189",
5
5
  "publishConfig": {
6
6
  "access": "public",
7
7
  "provenance": false