@rolster/react-components 19.7.2 → 19.7.3

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.
@@ -539,11 +539,12 @@ function RlsAreaTextComponent({ autoComplete, disabled, formControl, identifier,
539
539
  }
540
540
  const RlsAreaText = require$$0.memo(RlsAreaTextComponent);
541
541
 
542
- function RlsAvatarComponent({ children, contrasted, rounded, skeleton, rlsTheme }) {
542
+ function RlsAvatarComponent({ children, contrasted, rounded, skeleton, transparent, rlsTheme }) {
543
543
  const className = renderClassStatus('rls-avatar', {
544
544
  contrasted,
545
545
  rounded,
546
- skeleton
546
+ skeleton,
547
+ transparent
547
548
  });
548
549
  return (jsxRuntimeExports.jsx("div", { className: className, "rls-theme": rlsTheme, children: children }));
549
550
  }
@@ -586,9 +587,9 @@ function RlsButtonComponent({ type, children, disabled, identifier, onClick, pre
586
587
  }
587
588
  const RlsButton = require$$0.memo(RlsButtonComponent);
588
589
 
589
- function RlsButtonActionComponent({ icon, disabled, identifier, onClick, rlsTheme, tooltip, type }) {
590
+ function RlsButtonActionComponent({ icon, badge, disabled, identifier, onClick, rlsTheme, tooltip, type }) {
590
591
  const className = renderClassStatus('rls-button-action', { type });
591
- return (jsxRuntimeExports.jsxs("button", { id: identifier, className: className, onClick: onClick, disabled: disabled, "rls-theme": rlsTheme, children: [jsxRuntimeExports.jsx("div", { className: "rls-button-action__content", children: jsxRuntimeExports.jsx(RlsIcon, { value: icon }) }), tooltip && (jsxRuntimeExports.jsx("div", { className: "rls-button-action__tooltip rls-overline-font-medium", children: jsxRuntimeExports.jsx("span", { children: tooltip }) }))] }));
592
+ return (jsxRuntimeExports.jsxs("button", { id: identifier, className: className, onClick: onClick, disabled: disabled, "rls-theme": rlsTheme, children: [jsxRuntimeExports.jsxs("div", { className: "rls-button-action__content", children: [jsxRuntimeExports.jsx(RlsIcon, { value: icon }), badge && jsxRuntimeExports.jsx("span", { className: "rls-button-action__badge", children: badge })] }), tooltip && (jsxRuntimeExports.jsx("div", { className: "rls-button-action__tooltip rls-overline-font-medium", children: jsxRuntimeExports.jsx("span", { children: tooltip }) }))] }));
592
593
  }
593
594
  const RlsButtonAction = require$$0.memo(RlsButtonActionComponent);
594
595