@aveonline/ui-react 2.32.10 → 2.32.12
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/ui/molecules/DateInputPicker/DateInputPicker.d.ts +1 -1
- package/dist/ui/molecules/DateInputPicker/IDateInputPicker.d.ts +1 -0
- package/dist/ui/molecules/Table/Table/ITable.d.ts +2 -0
- package/dist/ui/molecules/Table/Table/Table.d.ts +1 -6
- package/dist/ui-react.mjs +18996 -16047
- package/package.json +5 -1
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { IDateInputPickerType } from './IDateInputPicker';
|
|
3
|
-
export default function DateInputPicker({ type, valueInput, textInsideInput, isError, isDisable, textRangeInput, singleInitialValueInput, rangeInitialValueInput, textRangeInitialValueInput, labelRangelTextNull, containerClassName, withTime, language, _t, useT }: IDateInputPickerType): JSX.Element;
|
|
3
|
+
export default function DateInputPicker({ type, valueInput, textInsideInput, isError, isDisable, textRangeInput, singleInitialValueInput, rangeInitialValueInput, textRangeInitialValueInput, labelRangelTextNull, containerClassName, withTime, language, _t, useT, translateTextProps }: IDateInputPickerType): JSX.Element;
|
|
@@ -9,6 +9,8 @@ interface ITableToolbar<TData> {
|
|
|
9
9
|
interface IPropsTable<TData, TValue> {
|
|
10
10
|
columns: ColumnDef<TData, TValue>[];
|
|
11
11
|
data: TData[];
|
|
12
|
+
draggableRows?: boolean;
|
|
13
|
+
onReorder?: (data: TData[]) => void;
|
|
12
14
|
stickyHeader?: boolean;
|
|
13
15
|
searchFilter?: boolean;
|
|
14
16
|
placeholder?: string;
|
|
@@ -1,9 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { IPropsTable } from './ITable';
|
|
3
|
-
|
|
4
|
-
* Data tables are used to organize and display all information from a data set. While a data visualization represents
|
|
5
|
-
* part of data set, a data table lets merchants view details from the entire set. This helps merchants compare and
|
|
6
|
-
* analyze the data.
|
|
7
|
-
*/
|
|
8
|
-
declare function Table<TData, TValue>({ columns, data, stickyHeader, searchFilter, placeholder, hasPagination, paginationOptionList, sortTable, sortItem, valueRow, toolbar, rowItemSelected, optionDropdown, stateEmpty, titleSortTable, colorRow, classNameContainer, classNameContainerTable, classNameTable, totalRows, isLoading, columnsVisibility, emptyDataTable }: IPropsTable<TData, TValue>): JSX.Element;
|
|
3
|
+
declare function Table<TData, TValue>({ columns, data, stickyHeader, draggableRows, onReorder, searchFilter, placeholder, hasPagination, paginationOptionList, sortTable, sortItem, valueRow, toolbar, rowItemSelected, optionDropdown, stateEmpty, titleSortTable, colorRow, classNameContainer, classNameContainerTable, classNameTable, isLoading, columnsVisibility, emptyDataTable }: IPropsTable<TData, TValue>): JSX.Element;
|
|
9
4
|
export default Table;
|