@dartech/arsenal-ui 1.4.74 → 1.4.76
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +77 -55
- package/package.json +1 -1
- package/src/lib/Forms/ControlAutocomplete/ControlAutocomplete.d.ts +4 -0
- package/src/lib/Forms/ControlSelect.d.ts +1 -0
- package/src/lib/Property/UpsertProperty/PropertyValueField/BooleanValueField.d.ts +0 -1
- package/src/lib/Property/UpsertProperty/PropertyValueField/DateTimeValueField.d.ts +0 -1
- package/src/lib/Property/UpsertProperty/PropertyValueField/DateValueField.d.ts +0 -1
- package/src/lib/Property/UpsertProperty/PropertyValueField/JsonValueField.d.ts +0 -1
- package/src/lib/Property/UpsertProperty/PropertyValueField/TimeValueField.d.ts +0 -1
- package/src/lib/Property/ViewProperty/PropertyItem.d.ts +0 -1
- package/src/lib/Table/DataGrid/Table.d.ts +4 -3
- package/src/theme/inputThemeOptions.d.ts +15 -4
package/index.js
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
import { createTheme, responsiveFontSizes, styled, ThemeProvider } from '@mui/material/styles';
|
2
2
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
3
|
+
import { __rest, __awaiter } from 'tslib';
|
4
|
+
import TextField from '@mui/material/TextField';
|
5
|
+
import MenuItem from '@mui/material/MenuItem';
|
6
|
+
import React, { useRef, useEffect, useState, useCallback, useMemo, createElement, forwardRef, createContext, useContext, memo, useImperativeHandle, Suspense } from 'react';
|
7
|
+
import { useController, useWatch, useFormContext, Controller, useFieldArray, useForm } from 'react-hook-form';
|
8
|
+
import SvgIcon from '@mui/material/SvgIcon';
|
9
|
+
import IconButton from '@mui/material/IconButton';
|
10
|
+
import InputAdornment from '@mui/material/InputAdornment';
|
3
11
|
import Button from '@mui/material/Button';
|
4
12
|
import Dialog from '@mui/material/Dialog';
|
5
13
|
import DialogActions from '@mui/material/DialogActions';
|
@@ -8,15 +16,7 @@ import DialogContentText from '@mui/material/DialogContentText';
|
|
8
16
|
import DialogTitle from '@mui/material/DialogTitle';
|
9
17
|
import Box from '@mui/material/Box';
|
10
18
|
import Typography from '@mui/material/Typography';
|
11
|
-
import IconButton from '@mui/material/IconButton';
|
12
|
-
import SvgIcon from '@mui/material/SvgIcon';
|
13
19
|
import CircularProgress from '@mui/material/CircularProgress';
|
14
|
-
import { __rest, __awaiter } from 'tslib';
|
15
|
-
import { useController, useWatch, useFormContext, Controller, useFieldArray, useForm } from 'react-hook-form';
|
16
|
-
import TextField from '@mui/material/TextField';
|
17
|
-
import React, { useRef, useEffect, useState, useCallback, useMemo, createElement, forwardRef, createContext, useContext, memo, useImperativeHandle, Suspense } from 'react';
|
18
|
-
import MenuItem from '@mui/material/MenuItem';
|
19
|
-
import InputAdornment from '@mui/material/InputAdornment';
|
20
20
|
import FormControl from '@mui/material/FormControl';
|
21
21
|
import FormControlLabel from '@mui/material/FormControlLabel';
|
22
22
|
import FormHelperText from '@mui/material/FormHelperText';
|
@@ -456,17 +456,13 @@ const ControlDebouncedInput = _a => {
|
|
456
456
|
}));
|
457
457
|
};
|
458
458
|
|
459
|
-
const PopupIconComponent$
|
460
|
-
return jsx(SvgIcon,
|
461
|
-
sx: {
|
462
|
-
mr: 2
|
463
|
-
}
|
464
|
-
}, {
|
459
|
+
const PopupIconComponent$1 = () => {
|
460
|
+
return jsx(SvgIcon, {
|
465
461
|
children: jsx("path", {
|
466
462
|
d: "M4.22032 8.46991C4.36094 8.32946 4.55157 8.25057 4.75032 8.25057C4.94907 8.25057 5.13969 8.32946 5.28032 8.46991L12.0003 15.1899L18.7203 8.46991C18.789 8.39622 18.8718 8.33712 18.9638 8.29613C19.0558 8.25514 19.1551 8.23309 19.2558 8.23132C19.3565 8.22954 19.4565 8.24807 19.5499 8.28579C19.6433 8.32351 19.7281 8.37965 19.7994 8.45087C19.8706 8.52209 19.9267 8.60692 19.9644 8.70031C20.0022 8.7937 20.0207 8.89373 20.0189 8.99443C20.0171 9.09513 19.9951 9.19445 19.9541 9.28645C19.9131 9.37845 19.854 9.46125 19.7803 9.52991L12.5303 16.7799C12.3897 16.9204 12.1991 16.9992 12.0003 16.9992C11.8016 16.9992 11.6109 16.9204 11.4703 16.7799L4.22032 9.52991C4.07987 9.38928 4.00098 9.19866 4.00098 8.99991C4.00098 8.80116 4.07987 8.61054 4.22032 8.46991Z",
|
467
463
|
fill: "#8B8C9E"
|
468
464
|
})
|
469
|
-
})
|
465
|
+
});
|
470
466
|
};
|
471
467
|
/**
|
472
468
|
* Material UI `Select` controlled component. Used with react-hook-form
|
@@ -576,7 +572,6 @@ const ControlSelect = _a => {
|
|
576
572
|
})) : null
|
577
573
|
}, textFieldProps === null || textFieldProps === void 0 ? void 0 : textFieldProps.InputProps),
|
578
574
|
SelectProps: {
|
579
|
-
IconComponent: PopupIconComponent$2,
|
580
575
|
sx: {
|
581
576
|
'& .MuiSelect-select .notranslate::after': textFieldProps.placeholder ? {
|
582
577
|
content: `"${textFieldProps.placeholder}"`,
|
@@ -790,19 +785,10 @@ const useAutocomplete = ({
|
|
790
785
|
};
|
791
786
|
var useAutocomplete$1 = useAutocomplete;
|
792
787
|
|
793
|
-
var img$7 = "data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M4.22032 8.46991C4.36094 8.32946 4.55157 8.25057 4.75032 8.25057C4.94907 8.25057 5.13969 8.32946 5.28032 8.46991L12.0003 15.1899L18.7203 8.46991C18.789 8.39622 18.8718 8.33712 18.9638 8.29613C19.0558 8.25514 19.1551 8.23309 19.2558 8.23132C19.3565 8.22954 19.4565 8.24807 19.5499 8.28579C19.6433 8.32351 19.7281 8.37965 19.7994 8.45087C19.8706 8.52209 19.9267 8.60692 19.9644 8.70031C20.0022 8.7937 20.0207 8.89373 20.0189 8.99443C20.0171 9.09513 19.9951 9.19445 19.9541 9.28645C19.9131 9.37845 19.854 9.46125 19.7803 9.52991L12.5303 16.7799C12.3897 16.9204 12.1991 16.9992 12.0003 16.9992C11.8016 16.9992 11.6109 16.9204 11.4703 16.7799L4.22032 9.52991C4.07987 9.38928 4.00098 9.19866 4.00098 8.99991C4.00098 8.80116 4.07987 8.61054 4.22032 8.46991Z' fill='%238B8C9E'/%3e%3c/svg%3e";
|
794
|
-
var PopupIcon = img$7;
|
795
|
-
|
796
788
|
/**
|
797
789
|
* Material UI `Autocomplete` controlled component. Used with react-hook-form
|
798
790
|
* @category Forms
|
799
791
|
*/
|
800
|
-
const PopupIconComponent$1 = () => {
|
801
|
-
return jsx("img", {
|
802
|
-
src: PopupIcon,
|
803
|
-
alt: ""
|
804
|
-
});
|
805
|
-
};
|
806
792
|
const ControlAutocomplete = _a => {
|
807
793
|
var {
|
808
794
|
control,
|
@@ -879,7 +865,6 @@ const ControlAutocomplete = _a => {
|
|
879
865
|
filterSelectedOptions: multiple,
|
880
866
|
onChange: customOnChange ? customOnChange : handleChange,
|
881
867
|
renderOption: renderOption,
|
882
|
-
popupIcon: jsx(PopupIconComponent$1, {}),
|
883
868
|
renderInput: params => {
|
884
869
|
return jsx(TextField, Object.assign({}, params, {
|
885
870
|
variant: "outlined",
|
@@ -913,6 +898,9 @@ const ControlAutocomplete = _a => {
|
|
913
898
|
}, autocompleteProps));
|
914
899
|
};
|
915
900
|
|
901
|
+
var img$7 = "data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M4.22032 8.46991C4.36094 8.32946 4.55157 8.25057 4.75032 8.25057C4.94907 8.25057 5.13969 8.32946 5.28032 8.46991L12.0003 15.1899L18.7203 8.46991C18.789 8.39622 18.8718 8.33712 18.9638 8.29613C19.0558 8.25514 19.1551 8.23309 19.2558 8.23132C19.3565 8.22954 19.4565 8.24807 19.5499 8.28579C19.6433 8.32351 19.7281 8.37965 19.7994 8.45087C19.8706 8.52209 19.9267 8.60692 19.9644 8.70031C20.0022 8.7937 20.0207 8.89373 20.0189 8.99443C20.0171 9.09513 19.9951 9.19445 19.9541 9.28645C19.9131 9.37845 19.854 9.46125 19.7803 9.52991L12.5303 16.7799C12.3897 16.9204 12.1991 16.9992 12.0003 16.9992C11.8016 16.9992 11.6109 16.9204 11.4703 16.7799L4.22032 9.52991C4.07987 9.38928 4.00098 9.19866 4.00098 8.99991C4.00098 8.80116 4.07987 8.61054 4.22032 8.46991Z' fill='%238B8C9E'/%3e%3c/svg%3e";
|
902
|
+
var PopupIcon = img$7;
|
903
|
+
|
916
904
|
const PopupIconComponent = () => {
|
917
905
|
return jsx("img", {
|
918
906
|
src: PopupIcon,
|
@@ -979,6 +967,10 @@ function ControlQueryAutocomplete(_a) {
|
|
979
967
|
const [inputValue, setInputValue] = useState('');
|
980
968
|
const [searchValue, setSearchValue] = useState('');
|
981
969
|
const [page, setPage] = useState(0);
|
970
|
+
const openPanel = useMemo(() => {
|
971
|
+
if (!options.length) return false;
|
972
|
+
return open;
|
973
|
+
}, [open, options]);
|
982
974
|
const {
|
983
975
|
data,
|
984
976
|
isFetching
|
@@ -1030,6 +1022,7 @@ function ControlQueryAutocomplete(_a) {
|
|
1030
1022
|
} else setSearchValue(val);
|
1031
1023
|
}, 500);
|
1032
1024
|
const handleInputChange = useCallback((_, value) => {
|
1025
|
+
setOptions([]);
|
1033
1026
|
setInputValue(value);
|
1034
1027
|
debouncedChange(value);
|
1035
1028
|
}, [debouncedChange]);
|
@@ -1058,7 +1051,7 @@ function ControlQueryAutocomplete(_a) {
|
|
1058
1051
|
}
|
1059
1052
|
}, [data, options]);
|
1060
1053
|
const handleOpen = () => {
|
1061
|
-
|
1054
|
+
setOpen(true);
|
1062
1055
|
};
|
1063
1056
|
const handleClose = () => {
|
1064
1057
|
setOpen(false);
|
@@ -1080,7 +1073,7 @@ function ControlQueryAutocomplete(_a) {
|
|
1080
1073
|
onChange: handleValueChange,
|
1081
1074
|
loading: isFetching,
|
1082
1075
|
clearOnBlur: false,
|
1083
|
-
open:
|
1076
|
+
open: openPanel,
|
1084
1077
|
filterOptions: x => x,
|
1085
1078
|
onOpen: handleOpen,
|
1086
1079
|
onClose: handleClose,
|
@@ -1597,11 +1590,26 @@ var baseTheme = createTheme(baseThemeOptions);
|
|
1597
1590
|
|
1598
1591
|
const inputThemeOptions = {
|
1599
1592
|
components: {
|
1593
|
+
// MuiButtonBase: {
|
1594
|
+
// defaultProps: {
|
1595
|
+
// disableElevation: true
|
1596
|
+
// },
|
1597
|
+
// styleOverrides: {
|
1598
|
+
// root: {
|
1599
|
+
// '&.MuiButton-root': {
|
1600
|
+
// // boxShadow: 'none',
|
1601
|
+
// // lineHeight: 1.429
|
1602
|
+
// },
|
1603
|
+
// '&.MuiButton-root:hover': {
|
1604
|
+
// // boxShadow: 'none',
|
1605
|
+
// backgroundColor: '#D15C3B'
|
1606
|
+
// }
|
1607
|
+
// }
|
1608
|
+
// }
|
1609
|
+
// },
|
1600
1610
|
MuiButton: {
|
1601
|
-
|
1602
|
-
|
1603
|
-
lineHeight: 1.429
|
1604
|
-
}
|
1611
|
+
defaultProps: {
|
1612
|
+
disableElevation: true
|
1605
1613
|
}
|
1606
1614
|
},
|
1607
1615
|
MuiInputBase: {
|
@@ -1610,7 +1618,8 @@ const inputThemeOptions = {
|
|
1610
1618
|
color: '#262842',
|
1611
1619
|
borderRadius: baseTheme.spacing(3),
|
1612
1620
|
minWidth: baseTheme.spacing(25),
|
1613
|
-
background: baseTheme.palette.background.default
|
1621
|
+
background: baseTheme.palette.background.default,
|
1622
|
+
paddingRight: baseTheme.spacing(3)
|
1614
1623
|
// height: 40
|
1615
1624
|
},
|
1616
1625
|
|
@@ -1626,6 +1635,9 @@ const inputThemeOptions = {
|
|
1626
1635
|
},
|
1627
1636
|
|
1628
1637
|
MuiSelect: {
|
1638
|
+
defaultProps: {
|
1639
|
+
IconComponent: PopupIconComponent$1
|
1640
|
+
},
|
1629
1641
|
styleOverrides: {
|
1630
1642
|
nativeInput: {
|
1631
1643
|
padding: 0,
|
@@ -1670,7 +1682,15 @@ const inputThemeOptions = {
|
|
1670
1682
|
}
|
1671
1683
|
},
|
1672
1684
|
MuiAutocomplete: {
|
1685
|
+
defaultProps: {
|
1686
|
+
popupIcon: jsx(PopupIconComponent$1, {})
|
1687
|
+
},
|
1673
1688
|
styleOverrides: {
|
1689
|
+
root: {
|
1690
|
+
'& .MuiOutlinedInput-root .MuiAutocomplete-endAdornment': {
|
1691
|
+
right: 12
|
1692
|
+
}
|
1693
|
+
},
|
1674
1694
|
paper: {
|
1675
1695
|
marginTop: 8,
|
1676
1696
|
borderRadius: 12,
|
@@ -3642,24 +3662,26 @@ const SortDescIconComponent$1 = () => {
|
|
3642
3662
|
alt: ""
|
3643
3663
|
});
|
3644
3664
|
};
|
3645
|
-
const Table =
|
3646
|
-
|
3647
|
-
|
3648
|
-
|
3649
|
-
|
3650
|
-
|
3651
|
-
|
3652
|
-
|
3653
|
-
|
3654
|
-
|
3655
|
-
|
3665
|
+
const Table = _a => {
|
3666
|
+
var {
|
3667
|
+
columns,
|
3668
|
+
rows,
|
3669
|
+
rowCount,
|
3670
|
+
loading,
|
3671
|
+
disableMargin,
|
3672
|
+
mode = 'server',
|
3673
|
+
initialPageSize = 10,
|
3674
|
+
pagination = true,
|
3675
|
+
onCellClick
|
3676
|
+
} = _a,
|
3677
|
+
dataGridProps = __rest(_a, ["columns", "rows", "rowCount", "loading", "disableMargin", "mode", "initialPageSize", "pagination", "onCellClick"]);
|
3656
3678
|
const {
|
3657
3679
|
page,
|
3658
3680
|
size,
|
3659
3681
|
onPageChange,
|
3660
3682
|
onSizeChange
|
3661
3683
|
} = useTableQueryPagination$1({
|
3662
|
-
mode
|
3684
|
+
mode
|
3663
3685
|
});
|
3664
3686
|
const {
|
3665
3687
|
onColumnHeaderClick,
|
@@ -3668,12 +3690,12 @@ const Table = ({
|
|
3668
3690
|
const {
|
3669
3691
|
pageSize,
|
3670
3692
|
handlePageSizeChange
|
3671
|
-
} = usePagination$1(
|
3693
|
+
} = usePagination$1(initialPageSize);
|
3672
3694
|
const tableProps = {
|
3673
|
-
sortingMode:
|
3674
|
-
paginationMode:
|
3675
|
-
pageSize:
|
3676
|
-
onPageSizeChange:
|
3695
|
+
sortingMode: mode,
|
3696
|
+
paginationMode: mode,
|
3697
|
+
pageSize: mode === 'server' ? size : pagination ? pageSize : rowCount,
|
3698
|
+
onPageSizeChange: mode === 'server' ? onSizeChange : handlePageSizeChange,
|
3677
3699
|
components: {
|
3678
3700
|
BaseTooltip: Tooltip,
|
3679
3701
|
Pagination: TablePagination$1,
|
@@ -3691,7 +3713,7 @@ const Table = ({
|
|
3691
3713
|
}
|
3692
3714
|
}
|
3693
3715
|
};
|
3694
|
-
if (
|
3716
|
+
if (mode === 'server') {
|
3695
3717
|
// tableProps['sortModel'] = [];
|
3696
3718
|
tableProps['onColumnHeaderClick'] = onColumnHeaderClick;
|
3697
3719
|
tableProps['page'] = page;
|
@@ -3703,8 +3725,8 @@ const Table = ({
|
|
3703
3725
|
}, {
|
3704
3726
|
children: jsx(StyledDataGrid, Object.assign({
|
3705
3727
|
autoHeight: true,
|
3706
|
-
hideFooterPagination: !
|
3707
|
-
hideFooter: !
|
3728
|
+
hideFooterPagination: !pagination,
|
3729
|
+
hideFooter: !pagination,
|
3708
3730
|
disableSelectionOnClick: true,
|
3709
3731
|
showColumnRightBorder: true,
|
3710
3732
|
showCellRightBorder: true,
|
@@ -3715,7 +3737,7 @@ const Table = ({
|
|
3715
3737
|
rowCount: rowCount,
|
3716
3738
|
rowsPerPageOptions: [10, 20, 50, 100],
|
3717
3739
|
onCellClick: onCellClick
|
3718
|
-
}, tableProps))
|
3740
|
+
}, tableProps, dataGridProps))
|
3719
3741
|
}));
|
3720
3742
|
};
|
3721
3743
|
|
@@ -8374,4 +8396,4 @@ const OverflowTip = ({
|
|
8374
8396
|
}));
|
8375
8397
|
};
|
8376
8398
|
|
8377
|
-
export { AlertDialog, BackButton, Breadcrumbs, ContentLayout, ControlAceEditor, ControlArrayInput, ControlAutocomplete, ControlCheckbox, ControlDate, ControlDateTime, ControlDebouncedInput, ControlInput, ControlNumberInput, ControlPeriodInput, ControlPhoneInput, ControlQueryAutocomplete, ControlRadio, ControlSelect, ControlSwitch, ControlTime, CopyButton, CreateDefinition, CreatePropertiesList, CreatePropertiesListContext, CreatePropertyFormFields, DATE_DEFAULT_FORMAT, DATE_TIME_DEFAULT_FORMAT, DEFAULT_DATE_VALIDATION_ERROR_TEXT, DEFAULT_ERROR_TEXT, DEFAULT_REQUIRED_ERROR_TEXT, DefinitionFiller, DefinitionValueView, InfoItem, JsonModalView, JsonPathPicker, JsonView, Loader, MenuIcon, MultiplePropertyFiller, OverflowTip, PropertyFiller, PropertyType, PropertyValueField, RoundingMode, RouteTabs, Sidebar, SimpleTable, Status, StepperView, TIME_DEFAULT_FORMAT, TabPanel, Table, TableAction, TableActionCell, ViewPropertiesList, ViewProperty, capitalize, deepParseJson, defaultDefinitionArrayValue, defaultDefinitionObjectValue, digitsOnly, floatsOnly, formatDefinitionData, formatTableRowValue, getDemPropertyDateFormat, getEntityStarterValue, getJsonStringValue, getMultiplePropertyFillOptions, getSinglePropertyFillOptions, isDateType, isExpression, isPropertyValueEmpty, numberFormat, propertiesArrayToObject, propertiesObjectToArray, removeArrayItem, safeParseJson, sortArrayOfObjects, theme, useDebounce, useToggle, validateJson };
|
8399
|
+
export { AlertDialog, BackButton, Breadcrumbs, ContentLayout, ControlAceEditor, ControlArrayInput, ControlAutocomplete, ControlCheckbox, ControlDate, ControlDateTime, ControlDebouncedInput, ControlInput, ControlNumberInput, ControlPeriodInput, ControlPhoneInput, ControlQueryAutocomplete, ControlRadio, ControlSelect, ControlSwitch, ControlTime, CopyButton, CreateDefinition, CreatePropertiesList, CreatePropertiesListContext, CreatePropertyFormFields, DATE_DEFAULT_FORMAT, DATE_TIME_DEFAULT_FORMAT, DEFAULT_DATE_VALIDATION_ERROR_TEXT, DEFAULT_ERROR_TEXT, DEFAULT_REQUIRED_ERROR_TEXT, DefinitionFiller, DefinitionValueView, InfoItem, JsonModalView, JsonPathPicker, JsonView, Loader, MenuIcon, MultiplePropertyFiller, OverflowTip, PopupIconComponent$1 as PopupIconComponent, PropertyFiller, PropertyType, PropertyValueField, RoundingMode, RouteTabs, Sidebar, SimpleTable, Status, StepperView, TIME_DEFAULT_FORMAT, TabPanel, Table, TableAction, TableActionCell, ViewPropertiesList, ViewProperty, capitalize, deepParseJson, defaultDefinitionArrayValue, defaultDefinitionObjectValue, digitsOnly, floatsOnly, formatDefinitionData, formatTableRowValue, getDemPropertyDateFormat, getEntityStarterValue, getJsonStringValue, getMultiplePropertyFillOptions, getSinglePropertyFillOptions, isDateType, isExpression, isPropertyValueEmpty, numberFormat, propertiesArrayToObject, propertiesObjectToArray, removeArrayItem, safeParseJson, sortArrayOfObjects, theme, useDebounce, useToggle, validateJson };
|
package/package.json
CHANGED
@@ -66,5 +66,9 @@ export type ControlAutocompleteProps = Omit<AutocompleteProps<unknown, boolean,
|
|
66
66
|
startAdornment?: InputProps['startAdornment'];
|
67
67
|
endAdornment?: InputProps['endAdornment'];
|
68
68
|
};
|
69
|
+
/**
|
70
|
+
* Material UI `Autocomplete` controlled component. Used with react-hook-form
|
71
|
+
* @category Forms
|
72
|
+
*/
|
69
73
|
export declare const ControlAutocomplete: ({ control, validate, name, label, required, defaultValue, disabled, hideErrorMessage, onChange: customOnChange, labelKey, valueKey, options, multiple, textFieldProps, disableCloseOnSelect, useStringValue, requiredErrorText, startAdornment, endAdornment, ...autocompleteProps }: ControlAutocompleteProps) => JSX.Element;
|
70
74
|
export default ControlAutocomplete;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import React, { Ref } from 'react';
|
2
|
-
import { GridCellParams, GridColumns, GridFeatureMode, GridRowsProp } from '@mui/x-data-grid';
|
2
|
+
import { GridCellParams, GridColumns, GridFeatureMode, GridRowsProp, GridRowParams, GridCallbackDetails } from '@mui/x-data-grid';
|
3
3
|
/**
|
4
4
|
* This interface is referencing the [[Table]] component props.
|
5
5
|
* @category Common UI components
|
@@ -38,9 +38,10 @@ export interface TableProps {
|
|
38
38
|
* (params: GridCellParams, event: React.MouseEvent) => void;
|
39
39
|
* ```
|
40
40
|
*/
|
41
|
-
onCellClick?: (params: GridCellParams, event: React.MouseEvent) => void;
|
41
|
+
onCellClick?: (params: GridCellParams, event: React.MouseEvent, details: GridCallbackDetails) => void;
|
42
|
+
onRowClick?: (params: GridRowParams, event: React.MouseEvent, details: GridCallbackDetails) => void;
|
42
43
|
pagination?: boolean;
|
43
44
|
refProp?: Ref<unknown>;
|
44
45
|
}
|
45
|
-
export declare const Table: ({ columns, rows, rowCount, loading, disableMargin, mode, initialPageSize, pagination, onCellClick, }: TableProps) => JSX.Element;
|
46
|
+
export declare const Table: ({ columns, rows, rowCount, loading, disableMargin, mode, initialPageSize, pagination, onCellClick, ...dataGridProps }: TableProps) => JSX.Element;
|
46
47
|
export default Table;
|
@@ -1,10 +1,9 @@
|
|
1
|
+
/// <reference types="react" />
|
1
2
|
declare const inputThemeOptions: {
|
2
3
|
components: {
|
3
4
|
MuiButton: {
|
4
|
-
|
5
|
-
|
6
|
-
lineHeight: number;
|
7
|
-
};
|
5
|
+
defaultProps: {
|
6
|
+
disableElevation: boolean;
|
8
7
|
};
|
9
8
|
};
|
10
9
|
MuiInputBase: {
|
@@ -14,6 +13,7 @@ declare const inputThemeOptions: {
|
|
14
13
|
borderRadius: string;
|
15
14
|
minWidth: string;
|
16
15
|
background: string;
|
16
|
+
paddingRight: string;
|
17
17
|
};
|
18
18
|
input: {
|
19
19
|
minWidth: string;
|
@@ -21,6 +21,9 @@ declare const inputThemeOptions: {
|
|
21
21
|
};
|
22
22
|
};
|
23
23
|
MuiSelect: {
|
24
|
+
defaultProps: {
|
25
|
+
IconComponent: () => JSX.Element;
|
26
|
+
};
|
24
27
|
styleOverrides: {
|
25
28
|
nativeInput: {
|
26
29
|
padding: number;
|
@@ -65,7 +68,15 @@ declare const inputThemeOptions: {
|
|
65
68
|
};
|
66
69
|
};
|
67
70
|
MuiAutocomplete: {
|
71
|
+
defaultProps: {
|
72
|
+
popupIcon: JSX.Element;
|
73
|
+
};
|
68
74
|
styleOverrides: {
|
75
|
+
root: {
|
76
|
+
'& .MuiOutlinedInput-root .MuiAutocomplete-endAdornment': {
|
77
|
+
right: number;
|
78
|
+
};
|
79
|
+
};
|
69
80
|
paper: {
|
70
81
|
marginTop: number;
|
71
82
|
borderRadius: number;
|