@rolster/react-components 18.21.39 → 18.21.41
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.
- package/dist/cjs/index.js +7 -7
- package/dist/cjs/index.js.map +1 -1
- package/dist/es/index.js +8 -8
- package/dist/es/index.js.map +1 -1
- package/dist/esm/components/atoms/Input/Input.js +1 -2
- package/dist/esm/components/atoms/Input/Input.js.map +1 -1
- package/dist/esm/components/molecules/FieldNumber/FieldNumber.d.ts +5 -1
- package/dist/esm/components/molecules/FieldNumber/FieldNumber.js.map +1 -1
- package/dist/esm/components/organisms/Datatable/Datatable.d.ts +3 -3
- package/dist/esm/components/organisms/Datatable/Datatable.js +6 -6
- package/dist/esm/components/organisms/Datatable/Datatable.js.map +1 -1
- package/package.json +1 -1
package/dist/es/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import require$$0, { useMemo, useCallback, useState, useRef, useEffect, createContext } from 'react';
|
|
2
|
-
import { currencyFormat,
|
|
2
|
+
import { currencyFormat, itIsDefined, PartialSealed } from '@rolster/commons';
|
|
3
3
|
import { dateFormatTemplate, DAY_LABELS, DateRange, normalizeMinTime, assignDayInDate, dateIsBefore, MONTH_NAMES, Month, assignYearInDate, assignMonthInDate } from '@rolster/dates';
|
|
4
4
|
import { i18n, i18nSubscribe } from '@rolster/i18n';
|
|
5
5
|
import { PaginationController, verifyDayPicker, createDayPicker, createDayRangePicker, verifyMonthPicker, createMonthPicker, monthLimitTemplate, createYearPicker, verifyYearPicker, ListCollection, locationListCanTop, navigationListFromInput, navigationListFromElement, createAutocompleteStore, dateOutRange, verifyDateRange, PickerListenerEvent } from '@rolster/components';
|
|
@@ -1567,7 +1567,7 @@ function RlsInput({ children, decimals, disabled, formControl, identifier, onEnt
|
|
|
1567
1567
|
const _onChange = useCallback((event) => {
|
|
1568
1568
|
const valueInput = event.target.value;
|
|
1569
1569
|
const value = type === 'number'
|
|
1570
|
-
?
|
|
1570
|
+
? parseFloat((+valueInput).toFixed(decimals))
|
|
1571
1571
|
: valueInput;
|
|
1572
1572
|
isChangeInternal.current = true;
|
|
1573
1573
|
onValue && onValue(value);
|
|
@@ -2387,16 +2387,16 @@ function RlsDatatableSubheader({ children, className, identifier, rlsTheme }) {
|
|
|
2387
2387
|
}, [className]);
|
|
2388
2388
|
return (jsxRuntimeExports.jsx("tr", { id: identifier, className: classNameSubheader, "rls-theme": rlsTheme, children: children }));
|
|
2389
2389
|
}
|
|
2390
|
-
function RlsDatatableRecord({ children, className, error, identifier, info, overflow,
|
|
2390
|
+
function RlsDatatableRecord({ children, className, error, identifier, info, overflow, success, warning, rlsTheme }) {
|
|
2391
2391
|
const classNameRecord = useMemo(() => {
|
|
2392
|
-
return renderClassStatus('rls-datatable__record', { error, info, overflow,
|
|
2393
|
-
}, [className, error, info, overflow,
|
|
2392
|
+
return renderClassStatus('rls-datatable__record', { error, info, overflow, success, warning }, className);
|
|
2393
|
+
}, [className, error, info, overflow, success, warning]);
|
|
2394
2394
|
return (jsxRuntimeExports.jsx("tr", { id: identifier, className: classNameRecord, "rls-theme": rlsTheme, children: children }));
|
|
2395
2395
|
}
|
|
2396
|
-
function RlsDatatableTotals({ children, className, error, identifier, info, overflow,
|
|
2396
|
+
function RlsDatatableTotals({ children, className, error, identifier, info, overflow, success, warning, rlsTheme }) {
|
|
2397
2397
|
const classNameTotals = useMemo(() => {
|
|
2398
|
-
return renderClassStatus('rls-datatable__totals', { error, info, overflow,
|
|
2399
|
-
}, [className, error, info, overflow,
|
|
2398
|
+
return renderClassStatus('rls-datatable__totals', { error, info, overflow, success, warning }, className);
|
|
2399
|
+
}, [className, error, info, overflow, success, warning]);
|
|
2400
2400
|
return (jsxRuntimeExports.jsx("div", { id: identifier, className: classNameTotals, "rls-theme": rlsTheme, children: children }));
|
|
2401
2401
|
}
|
|
2402
2402
|
function RlsDatatableCell({ children, className, control, identifier, overflow, rlsTheme }) {
|