@rolster/react-components 18.15.32 → 18.15.33

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.
@@ -1901,7 +1901,7 @@
1901
1901
  position: relative;
1902
1902
  display: flex;
1903
1903
  flex-direction: column;
1904
- max-width: 150rem;
1904
+ width: 150rem;
1905
1905
  overflow: hidden;
1906
1906
  row-gap: var(--rls-sizing-x4);
1907
1907
  }
@@ -2021,9 +2021,9 @@
2021
2021
  position: relative;
2022
2022
  display: flex;
2023
2023
  flex-direction: column;
2024
+ width: 150rem;
2024
2025
  row-gap: var(--rls-sizing-x4);
2025
2026
  overflow: hidden;
2026
- max-width: 150rem;
2027
2027
  }
2028
2028
  .rls-picker-date-range__header {
2029
2029
  background: var(--rls-theme-color-100);
package/dist/es/index.js CHANGED
@@ -2022,11 +2022,11 @@ function RlsDatatableHeader({ children }) {
2022
2022
  function RlsDatatableTitle({ children, className, control }) {
2023
2023
  return (jsxRuntimeExports.jsx("th", { className: renderClassStatus('rls-datatable__title', { control }, className).trim(), children: children }));
2024
2024
  }
2025
- function RlsDatatableRecord({ children, className, error }) {
2026
- return (jsxRuntimeExports.jsx("tr", { className: renderClassStatus('rls-datatable__record', { error }, className).trim(), children: children }));
2025
+ function RlsDatatableRecord({ children, className, error, warning }) {
2026
+ return (jsxRuntimeExports.jsx("tr", { className: renderClassStatus('rls-datatable__record', { error, warning }, className).trim(), children: children }));
2027
2027
  }
2028
- function RlsDatatableTotals({ children, className, error }) {
2029
- return (jsxRuntimeExports.jsx("div", { className: renderClassStatus('rls-datatable__totals', { error }, className).trim(), children: children }));
2028
+ function RlsDatatableTotals({ children, className, error, warning }) {
2029
+ return (jsxRuntimeExports.jsx("div", { className: renderClassStatus('rls-datatable__totals', { error, warning }, className).trim(), children: children }));
2030
2030
  }
2031
2031
  function RlsDatatableCell({ children, className, control, overflow }) {
2032
2032
  return (jsxRuntimeExports.jsx("th", { className: renderClassStatus('rls-datatable__cell', { control, overflow }, className).trim(), children: children }));