@leapdevuk/component-toolbox 0.0.108 → 0.0.110
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/components/datagrid/DataGrid.d.ts +2 -1
- package/dist/components/headerrow/index.d.ts +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/images/default-doc-icon.d.ts +3 -0
- package/dist/images/folder-icon.d.ts +5 -0
- package/dist/images/index.d.ts +23 -20
- package/dist/index.cjs.js +45 -33
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +2687 -2384
- package/dist/index.es.js.map +1 -1
- package/dist/styles/index.d.ts +1 -0
- package/dist/styles/theme.d.ts +2 -0
- package/package.json +1 -1
- /package/dist/components/{datagrid → headerrow}/HeaderRow.d.ts +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GridCallbackDetails, GridColDef, GridColumnVisibilityModel, GridInputRowSelectionModel, GridProSlotsComponent, GridRowParams, GridRowSelectionModel, GridSlotsComponentsProps } from '@mui/x-data-grid-pro';
|
|
1
|
+
import { GridCallbackDetails, GridColDef, GridColumnVisibilityModel, GridInputRowSelectionModel, GridProSlotsComponent, GridRowParams, GridRowSelectionModel, GridSlotProps, GridSlotsComponentsProps } from '@mui/x-data-grid-pro';
|
|
2
2
|
import { GridInitialStatePro } from '@mui/x-data-grid-pro/models/gridStatePro';
|
|
3
3
|
interface IDataGridProps {
|
|
4
4
|
maxHeight: any;
|
|
@@ -21,6 +21,7 @@ interface IDataGridProps {
|
|
|
21
21
|
checkboxSelection?: boolean;
|
|
22
22
|
keepNonExistentRowsSelected?: boolean;
|
|
23
23
|
onRowSelectionModelChange?: (rowSelectionModel: GridRowSelectionModel, details: GridCallbackDetails) => void;
|
|
24
|
+
noRowsOverlay?: React.JSXElementConstructor<GridSlotProps["noRowsOverlay"]>;
|
|
24
25
|
}
|
|
25
26
|
declare const LCTDataGrid: import('@emotion/styled').StyledComponent<IDataGridProps & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, {}, {}>;
|
|
26
27
|
export default LCTDataGrid;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as LCTHeaderRow } from './HeaderRow';
|
package/dist/images/index.d.ts
CHANGED
|
@@ -1,20 +1,23 @@
|
|
|
1
|
-
export { default as
|
|
2
|
-
export { default as
|
|
3
|
-
export { default as
|
|
4
|
-
export { default as
|
|
5
|
-
export { default as
|
|
6
|
-
export { default as
|
|
7
|
-
export { default as
|
|
8
|
-
export { default as
|
|
9
|
-
export { default as
|
|
10
|
-
export { default as
|
|
11
|
-
export { default as
|
|
12
|
-
export { default as
|
|
13
|
-
export { default as
|
|
14
|
-
export { default as
|
|
15
|
-
export { default as
|
|
16
|
-
export { default as
|
|
17
|
-
export { default as
|
|
18
|
-
export { default as
|
|
19
|
-
export { default as
|
|
20
|
-
export { default as
|
|
1
|
+
export { default as LCTBinIcon } from './bin-icon';
|
|
2
|
+
export { default as LCTBrowseIcon } from './browse-icon';
|
|
3
|
+
export { default as LCTCalendarIcon } from './calendar-icon';
|
|
4
|
+
export { default as LCTCheckedCheckboxIcon } from './checkbox-checked-icon';
|
|
5
|
+
export { default as LCTCheckboxIcon } from './checkbox-icon';
|
|
6
|
+
export { default as LCTCommentIcon } from './comment-icon';
|
|
7
|
+
export { default as LCTDefaultDocIcon } from './default-doc-icon';
|
|
8
|
+
export { default as LCTDocIcon } from './doc-icon';
|
|
9
|
+
export { default as LCTEmailIcon } from './email-icon';
|
|
10
|
+
export { default as LCTEmailReceivedIcon } from './email-received-icon';
|
|
11
|
+
export { default as LCTEmailSentIcon } from './email-sent-icon';
|
|
12
|
+
export { default as LCTExcelIcon } from './excel-icon';
|
|
13
|
+
export { default as LCTFolderIcon } from './folder-icon';
|
|
14
|
+
export { default as LCTImageIcon } from './image-icon';
|
|
15
|
+
export { default as LCTInfoIcon } from './info-icon';
|
|
16
|
+
export { default as LCTLaunchIcon } from './launch-icon';
|
|
17
|
+
export { default as LCTLEAPIcon } from './leap-icon';
|
|
18
|
+
export { default as LCTPDFIcon } from './pdf-icon';
|
|
19
|
+
export { default as LCTPreviewIcon } from './preview-icon';
|
|
20
|
+
export { default as LCTQuestionIcon } from './question-icon';
|
|
21
|
+
export { default as LCTUndoIcon } from './undo-icon';
|
|
22
|
+
export { default as LCTUnknownDocIcon } from './unknown-doc-icon';
|
|
23
|
+
export { default as LCTWarningIcon } from './warning-icon';
|