@sphereon/ui-components.ssi-react 0.1.3-unstable.122 → 0.1.3-unstable.130

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.
@@ -8,7 +8,7 @@ import MeatBallsIcon from '../../assets/icons/MeatBallsIcon';
8
8
  import DeleteIcon from '../../assets/icons/DeleteIcon';
9
9
  const SSIIconButton = (props) => {
10
10
  const { caption, icon, onClick, disabled = false, iconColor = fontColors.dark } = props;
11
- return _jsxs(Container, { onClick: onClick, children: [getIcon(icon, iconColor), caption && _jsx(Caption, { children: caption })] });
11
+ return (_jsxs(Container, { onClick: onClick, children: [getIcon(icon, iconColor), caption && _jsx(Caption, { children: caption })] }));
12
12
  };
13
13
  const getIcon = (icon, color) => {
14
14
  switch (icon) {
@@ -29,6 +29,6 @@ const DropDownList = (props) => {
29
29
  return (_jsx(DropDownListItem, { showBorder: showBorder, label: item.caption, onClick: item.onClick, icon: item.icon, fontColor: item.fontColor }, index));
30
30
  });
31
31
  };
32
- return (_jsxs(Container, { ref: dropdownRef, children: [_jsx(ListButton, { children: _jsx(SSIIconButton, { icon: icon, onClick: onMore }) }), showActionsMenu && _jsx(DropDownContainer, { style: { ...(showBorder && { borderWidth: 2, borderColor: borderColors.lightGrey, borderStyle: 'solid' }) }, children: getItems() })] }));
32
+ return (_jsxs(Container, { ref: dropdownRef, children: [_jsx(ListButton, { children: _jsx(SSIIconButton, { icon: icon, onClick: onMore }) }), showActionsMenu && (_jsx(DropDownContainer, { style: { ...(showBorder && { borderWidth: 2, borderColor: borderColors.lightGrey, borderStyle: 'solid' }) }, children: getItems() }))] }));
33
33
  };
34
34
  export default DropDownList;
@@ -0,0 +1,8 @@
1
+ import { CSSProperties, FC } from 'react';
2
+ import { PaginationProps } from '@mui/material';
3
+ export type PaginationControlsProps = PaginationProps & {
4
+ goToInputId?: string;
5
+ containerStyle?: CSSProperties;
6
+ };
7
+ declare const PaginationControls: FC<PaginationControlsProps>;
8
+ export default PaginationControls;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { Stack } from '@mui/material';
3
+ import { GoToInputContainer, GoToInputStyled, PaginationContainerStyled, PaginationStyled } from '../../../../styles';
4
+ const PaginationControls = (props) => {
5
+ const { onKeyDown, containerStyle, goToInputId = 'goTo' } = props;
6
+ return (_jsxs(PaginationContainerStyled, { style: containerStyle, children: [_jsx(Stack, { children: _jsx(PaginationStyled, { ...props }) }), _jsxs(GoToInputContainer, { children: ["Go to ", _jsx(GoToInputStyled, { id: goToInputId, onKeyDown: onKeyDown }), " page"] })] }));
7
+ };
8
+ export default PaginationControls;
@@ -2,13 +2,12 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { ButtonIcon, Localization, statusColors } from '@sphereon/ui-components.core';
3
3
  import SSIIconButton from '../../../buttons/SSIIconButton';
4
4
  import SSIPrimaryButton from '../../../buttons/SSIPrimaryButton';
5
- import { SSITableViewHeaderActionsContainerStyled as ActionsContainer, SSITableViewHeaderContainerStyled as Container, SSITableViewHeaderContentContainerStyled as ContentContainer, SSITextH3Styled as FilterCaption, SSITableViewHeaderFilterContainerStyled as FilterContainer, TableViewHeaderStaticActionsContainerStyled as StaticActionsContainer } from '../../../../styles';
5
+ import { SSITableViewHeaderActionsContainerStyled as ActionsContainer, SSITableViewHeaderContainerStyled as Container, SSITableViewHeaderContentContainerStyled as ContentContainer, SSITextH3Styled as FilterCaption, SSITableViewHeaderFilterContainerStyled as FilterContainer, TableViewHeaderStaticActionsContainerStyled as StaticActionsContainer, } from '../../../../styles';
6
6
  const SSITableViewHeader = (props) => {
7
7
  const { enableFiltering = false, enableMostRecent = false, actions = [], onDelete } = props;
8
8
  const onDeleteClick = async () => {
9
9
  await onDelete?.();
10
10
  };
11
- return (_jsxs(Container, { children: [_jsx(StaticActionsContainer, { children: onDelete &&
12
- _jsx(SSIIconButton, { caption: Localization.translate('action_delete_label'), icon: ButtonIcon.DELETE, iconColor: statusColors.error, onClick: onDeleteClick }) }), _jsx(ContentContainer, { style: { width: 'fit-content' }, children: _jsxs(ActionsContainer, { children: [enableFiltering && (_jsxs(FilterContainer, { children: [_jsx(SSIIconButton, { icon: ButtonIcon.FILTER, onClick: async () => console.log('add filter clicked') }), _jsx(FilterCaption, { children: Localization.translate('action_filter_caption') })] })), actions.map((action, index) => (_jsx(SSIPrimaryButton, { caption: action.caption, onClick: action.onClick, icon: action.icon }, index)))] }) })] }));
11
+ return (_jsxs(Container, { children: [_jsx(StaticActionsContainer, { children: onDelete && (_jsx(SSIIconButton, { caption: Localization.translate('action_delete_label'), icon: ButtonIcon.DELETE, iconColor: statusColors.error, onClick: onDeleteClick })) }), _jsx(ContentContainer, { style: { width: 'fit-content' }, children: _jsxs(ActionsContainer, { children: [enableFiltering && (_jsxs(FilterContainer, { children: [_jsx(SSIIconButton, { icon: ButtonIcon.FILTER, onClick: async () => console.log('add filter clicked') }), _jsx(FilterCaption, { children: Localization.translate('action_filter_caption') })] })), actions.map((action, index) => (_jsx(SSIPrimaryButton, { caption: action.caption, onClick: action.onClick, icon: action.icon }, index)))] }) })] }));
13
12
  };
14
13
  export default SSITableViewHeader;
@@ -1,6 +1,7 @@
1
1
  import { ReactElement } from 'react';
2
2
  import { ColumnResizeMode, Row } from '@tanstack/react-table';
3
3
  import { Button, ColumnHeader } from '../../../types';
4
+ import { PaginationControlsProps } from './PaginationControls';
4
5
  type Props<T> = {
5
6
  data: Array<T>;
6
7
  columns: Array<ColumnHeader<T>>;
@@ -12,6 +13,7 @@ type Props<T> = {
12
13
  enableResultCount?: boolean;
13
14
  columnResizeMode?: ColumnResizeMode;
14
15
  actions?: Array<Button>;
16
+ paginationControlsProps?: PaginationControlsProps;
15
17
  };
16
18
  declare const SSITableView: <T extends {}>(props: Props<T>) => ReactElement;
17
19
  export default SSITableView;
@@ -1,6 +1,6 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import React from 'react';
3
- import { createColumnHelper, flexRender, getCoreRowModel, useReactTable } from '@tanstack/react-table';
3
+ import { createColumnHelper, flexRender, getCoreRowModel, useReactTable, } from '@tanstack/react-table';
4
4
  import { ButtonIcon, Localization, selectionElementColors } from '@sphereon/ui-components.core';
5
5
  import SSITableViewHeader from './SSITableViewHeader';
6
6
  import SSITypeLabel from '../../labels/SSITypeLabel';
@@ -8,8 +8,9 @@ import SSIHoverText from '../../fields/SSIHoverText';
8
8
  import SSIStatusLabel from '../../labels/SSIStatusLabel';
9
9
  import CredentialMiniCardView from '../CredentialMiniCardView';
10
10
  import DropDownList from '../../lists/DropDownList';
11
- import { SSITableViewCellContainerStyled as CellContainer, SSITableViewContainerStyled as Container, SSITableViewHeaderCellContainerStyled as HeaderCellContainer, SSITableViewLabelCellStyled as LabelCell, SSITableViewResultCountCaptionStyled as ResultCountCaption, SSITableViewRowContainerStyled as RowContainer, SSITableViewTableContainerStyled as TableContainer, TableViewRowSelectionCheckboxContainerStyled as RowSelectionCheckboxContainer } from '../../../styles';
11
+ import { SSITableViewCellContainerStyled as CellContainer, SSITableViewContainerStyled as Container, SSITableViewHeaderCellContainerStyled as HeaderCellContainer, SSITableViewLabelCellStyled as LabelCell, SSITableViewResultCountCaptionStyled as ResultCountCaption, SSITableViewRowContainerStyled as RowContainer, SSITableViewTableContainerStyled as TableContainer, TableViewRowSelectionCheckboxContainerStyled as RowSelectionCheckboxContainer, } from '../../../styles';
12
12
  import { TableCellType } from '../../../types';
13
+ import PaginationControls from './PaginationControls';
13
14
  function IndeterminateCheckbox({ indeterminate, className = '', ...rest }) {
14
15
  const ref = React.useRef(null);
15
16
  React.useEffect(() => {
@@ -54,7 +55,7 @@ const toRowSelectionObject = (rows) => {
54
55
  return rowSelectionObject;
55
56
  };
56
57
  const SSITableView = (props) => {
57
- const { columns, data, enableRowSelection = false, enableFiltering = false, enableMostRecent = false, enableResultCount = false, columnResizeMode = 'onChange', actions = [], onRowClick, onDelete } = props;
58
+ const { columns, data, enableRowSelection = false, enableFiltering = false, enableMostRecent = false, enableResultCount = false, columnResizeMode = 'onChange', actions = [], onRowClick, onDelete, paginationControlsProps, } = props;
58
59
  const [rowSelection, setRowSelection] = React.useState([]);
59
60
  const [focusedRowId, setFocusedRowId] = React.useState();
60
61
  const columnHelper = createColumnHelper();
@@ -75,13 +76,12 @@ const SSITableView = (props) => {
75
76
  indeterminate: table.getIsSomeRowsSelected(),
76
77
  onChange: table.getToggleAllRowsSelectedHandler(),
77
78
  } })),
78
- cell: ({ row }) => (_jsx(RowSelectionCheckboxContainer, { children: (row.id === focusedRowId || rowSelection.length > 0)
79
- && _jsx(IndeterminateCheckbox, { ...{
80
- checked: row.getIsSelected(),
81
- disabled: !row.getCanSelect(),
82
- indeterminate: row.getIsSomeSelected(),
83
- onChange: row.getToggleSelectedHandler(),
84
- } }) })),
79
+ cell: ({ row }) => (_jsx(RowSelectionCheckboxContainer, { children: (row.id === focusedRowId || rowSelection.length > 0) && (_jsx(IndeterminateCheckbox, { ...{
80
+ checked: row.getIsSelected(),
81
+ disabled: !row.getCanSelect(),
82
+ indeterminate: row.getIsSomeSelected(),
83
+ onChange: row.getToggleSelectedHandler(),
84
+ } })) })),
85
85
  },
86
86
  ...availableColumns,
87
87
  ];
@@ -91,14 +91,12 @@ const SSITableView = (props) => {
91
91
  };
92
92
  const onRowSelectionChange = (updatedRowSelection) => {
93
93
  const currentRowSelection = updatedRowSelection(toRowSelectionObject(rowSelection));
94
- const selection = [];
95
- for (const key in currentRowSelection) {
96
- const row = {
94
+ const selection = Object.keys(currentRowSelection).map((key) => {
95
+ return {
97
96
  rowId: key,
98
- rowData: data[Number(key)]
97
+ rowData: data[Number(key)],
99
98
  };
100
- selection.push(row);
101
- }
99
+ });
102
100
  setRowSelection(selection);
103
101
  };
104
102
  const table = useReactTable({
@@ -106,7 +104,7 @@ const SSITableView = (props) => {
106
104
  size: 0,
107
105
  },
108
106
  state: {
109
- rowSelection: toRowSelectionObject(rowSelection)
107
+ rowSelection: toRowSelectionObject(rowSelection),
110
108
  },
111
109
  enableRowSelection,
112
110
  onRowSelectionChange: onRowSelectionChange,
@@ -121,21 +119,21 @@ const SSITableView = (props) => {
121
119
  const onDeleteClicked = async () => {
122
120
  await onDelete?.(rowSelection.map((row) => row.rowData));
123
121
  };
124
- return (_jsx(Container, { children: _jsxs("div", { className: "overflow-x-auto", children: [enableResultCount && (_jsx(ResultCountCaption, { children: Localization.translate('result_count_label', {
125
- count: data.length,
126
- maxCount: data.length,
127
- }) })), (enableFiltering || enableMostRecent || actions.length > 0) && (_jsx(SSITableViewHeader, { actions: actions, enableFiltering: enableFiltering, enableMostRecent: enableMostRecent, ...(onDelete && { onDelete: onDeleteClicked }) })), _jsxs(TableContainer, { children: [_jsx("thead", { children: table.getHeaderGroups().map((headerGroup) => (_jsx(RowContainer, { children: headerGroup.headers.map((header) => (_jsxs(HeaderCellContainer, { colSpan: header.colSpan, style: {
128
- ...(header.column.columnDef.minSize && { minWidth: header.column.columnDef.minSize }),
129
- ...(header.column.columnDef.maxSize && { maxWidth: header.column.columnDef.maxSize }),
130
- ...(header.column.columnDef.size !== 0 && { width: header.column.columnDef.size }),
131
- }, children: [header.isPlaceholder ? null : flexRender(header.column.columnDef.header, header.getContext()), _jsx("div", { className: `resizer ${header.column.getIsResizing() ? 'isResizing' : ''}`, onMouseDown: header.getResizeHandler(), onTouchStart: header.getResizeHandler(), style: {
132
- transform: columnResizeMode === 'onEnd' && header.column.getIsResizing()
133
- ? `translateX(${table.getState().columnSizingInfo.deltaOffset}px)`
134
- : '',
135
- } })] }, header.id))) }, headerGroup.id))) }), _jsx("tbody", { children: table.getRowModel().rows.map((row) => (_jsx(RowContainer, { onClick: () => onRowClicked(row), onMouseEnter: () => onFocusRow(row.id), onMouseLeave: () => onFocusRow(), style: { ...(row.getIsSelected() && { backgroundColor: selectionElementColors.selectedRow }) }, children: row.getVisibleCells().map((cell) => (_jsx(CellContainer, { style: {
136
- ...(cell.column.columnDef.minSize && { minWidth: cell.column.columnDef.minSize }),
137
- ...(cell.column.columnDef.maxSize && { maxWidth: cell.column.columnDef.maxSize }),
138
- ...(cell.column.columnDef.size !== 0 && { width: cell.column.columnDef.size }),
139
- }, children: flexRender(cell.column.columnDef.cell, cell.getContext()) }, cell.id))) }, row.id))) })] })] }) }));
122
+ return (_jsxs(Container, { children: [_jsxs("div", { className: "overflow-x-auto", children: [enableResultCount && (_jsx(ResultCountCaption, { children: Localization.translate('result_count_label', {
123
+ count: data.length,
124
+ maxCount: data.length,
125
+ }) })), (enableFiltering || enableMostRecent || actions.length > 0) && (_jsx(SSITableViewHeader, { actions: actions, enableFiltering: enableFiltering, enableMostRecent: enableMostRecent, ...(onDelete && { onDelete: onDeleteClicked }) })), _jsxs(TableContainer, { children: [_jsx("thead", { children: table.getHeaderGroups().map((headerGroup) => (_jsx(RowContainer, { children: headerGroup.headers.map((header) => (_jsxs(HeaderCellContainer, { colSpan: header.colSpan, style: {
126
+ ...(header.column.columnDef.minSize && { minWidth: header.column.columnDef.minSize }),
127
+ ...(header.column.columnDef.maxSize && { maxWidth: header.column.columnDef.maxSize }),
128
+ ...(header.column.columnDef.size !== 0 && { width: header.column.columnDef.size }),
129
+ }, children: [header.isPlaceholder ? null : flexRender(header.column.columnDef.header, header.getContext()), _jsx("div", { className: `resizer ${header.column.getIsResizing() ? 'isResizing' : ''}`, onMouseDown: header.getResizeHandler(), onTouchStart: header.getResizeHandler(), style: {
130
+ transform: columnResizeMode === 'onEnd' && header.column.getIsResizing()
131
+ ? `translateX(${table.getState().columnSizingInfo.deltaOffset}px)`
132
+ : '',
133
+ } })] }, header.id))) }, headerGroup.id))) }), _jsx("tbody", { children: table.getRowModel().rows.map((row) => (_jsx(RowContainer, { onClick: () => onRowClicked(row), onMouseEnter: () => onFocusRow(row.id), onMouseLeave: () => onFocusRow(), style: { ...(row.getIsSelected() && { backgroundColor: selectionElementColors.selectedRow }) }, children: row.getVisibleCells().map((cell) => (_jsx(CellContainer, { style: {
134
+ ...(cell.column.columnDef.minSize && { minWidth: cell.column.columnDef.minSize }),
135
+ ...(cell.column.columnDef.maxSize && { maxWidth: cell.column.columnDef.maxSize }),
136
+ ...(cell.column.columnDef.size !== 0 && { width: cell.column.columnDef.size }),
137
+ }, children: flexRender(cell.column.columnDef.cell, cell.getContext()) }, cell.id))) }, row.id))) })] })] }), paginationControlsProps && _jsx(PaginationControls, { ...paginationControlsProps })] }));
140
138
  };
141
139
  export default SSITableView;
package/dist/index.d.ts CHANGED
@@ -25,8 +25,9 @@ import SSIActivityIndicator from './components/indicators/SSIActivityIndicator';
25
25
  import SSIHoverText from './components/fields/SSIHoverText';
26
26
  import ProgressStepIndicator from './components/indicators/ProgressStepIndicator';
27
27
  import StepMarker from './components/assets/markers/StepMarker';
28
+ import PaginationControls from './components/views/SSITableView/PaginationControls';
28
29
  import { Row } from '@tanstack/react-table';
29
30
  export * from './styles/fonts';
30
31
  export * from './types';
31
32
  export * from './helpers';
32
- export { SSICredentialCardView, CredentialMiniCardView, CredentialMiniCardViewProps, SSIStatusLabel, SSICheckmarkBadge, SSIExclamationMarkBadge, SSIPlaceholderLogo, SSILogo, SSIAddIcon, SSIFilterIcon, SSIArrowDownIcon, SSITypeLabel, SSIIconButton, SSIPrimaryButton, SSISecondaryButton, DropDownList, SSITableView, SSITableViewHeader, SSITabView, SSITabViewHeader, SSIProfileIcon, SSIToastContainer, SSICheckbox, SSIActivityIndicator, SSIHoverText, StepMarker, ProgressStepIndicator, Row, };
33
+ export { SSICredentialCardView, CredentialMiniCardView, CredentialMiniCardViewProps, SSIStatusLabel, SSICheckmarkBadge, SSIExclamationMarkBadge, SSIPlaceholderLogo, SSILogo, SSIAddIcon, SSIFilterIcon, SSIArrowDownIcon, SSITypeLabel, SSIIconButton, SSIPrimaryButton, SSISecondaryButton, DropDownList, SSITableView, SSITableViewHeader, SSITabView, SSITabViewHeader, SSIProfileIcon, SSIToastContainer, SSICheckbox, SSIActivityIndicator, SSIHoverText, StepMarker, ProgressStepIndicator, PaginationControls, Row, };
package/dist/index.js CHANGED
@@ -24,7 +24,8 @@ import SSIActivityIndicator from './components/indicators/SSIActivityIndicator';
24
24
  import SSIHoverText from './components/fields/SSIHoverText';
25
25
  import ProgressStepIndicator from './components/indicators/ProgressStepIndicator';
26
26
  import StepMarker from './components/assets/markers/StepMarker';
27
+ import PaginationControls from './components/views/SSITableView/PaginationControls';
27
28
  export * from './styles/fonts';
28
29
  export * from './types';
29
30
  export * from './helpers';
30
- export { SSICredentialCardView, CredentialMiniCardView, SSIStatusLabel, SSICheckmarkBadge, SSIExclamationMarkBadge, SSIPlaceholderLogo, SSILogo, SSIAddIcon, SSIFilterIcon, SSIArrowDownIcon, SSITypeLabel, SSIIconButton, SSIPrimaryButton, SSISecondaryButton, DropDownList, SSITableView, SSITableViewHeader, SSITabView, SSITabViewHeader, SSIProfileIcon, SSIToastContainer, SSICheckbox, SSIActivityIndicator, SSIHoverText, StepMarker, ProgressStepIndicator, };
31
+ export { SSICredentialCardView, CredentialMiniCardView, SSIStatusLabel, SSICheckmarkBadge, SSIExclamationMarkBadge, SSIPlaceholderLogo, SSILogo, SSIAddIcon, SSIFilterIcon, SSIArrowDownIcon, SSITypeLabel, SSIIconButton, SSIPrimaryButton, SSISecondaryButton, DropDownList, SSITableView, SSITableViewHeader, SSITabView, SSITabViewHeader, SSIProfileIcon, SSIToastContainer, SSICheckbox, SSIActivityIndicator, SSIHoverText, StepMarker, ProgressStepIndicator, PaginationControls, };
@@ -0,0 +1,4 @@
1
+ export declare const PaginationContainerStyled: StyledComponent<ComponentProps, SpecificComponentProps, JSXProps>;
2
+ export declare const GoToInputStyled: StyledComponent<ComponentProps, SpecificComponentProps, JSXProps>;
3
+ export declare const GoToInputContainer: StyledComponent<ComponentProps, SpecificComponentProps, JSXProps>;
4
+ export declare const PaginationStyled: StyledComponent<ComponentProps, SpecificComponentProps, JSXProps>;
@@ -0,0 +1,66 @@
1
+ import { styled } from '@mui/material/styles';
2
+ import { Pagination, paginationItemClasses } from '@mui/material';
3
+ export const PaginationContainerStyled = styled('div') `
4
+ display: flex;
5
+ justify-content: center;
6
+ align-items: center;
7
+ gap: 32px;
8
+ `;
9
+ export const GoToInputStyled = styled('input') `
10
+ height: 28px;
11
+ width: 44px;
12
+ background-color: #fbfbfb;
13
+ outline: none;
14
+ color: #303030;
15
+ font-weight: 500;
16
+ font-size: 14px;
17
+ border-radius: 6px;
18
+ border: 1px #c4c5ca solid;
19
+ text-align: center;
20
+ &:focus {
21
+ border: 1px #7276f7 solid;
22
+ }
23
+ `;
24
+ export const GoToInputContainer = styled('div') `
25
+ display: inline-flex;
26
+ gap: 10px;
27
+ align-items: center;
28
+ font-weight: 500;
29
+ font-size: 14px;
30
+ `;
31
+ export const PaginationStyled = styled(Pagination) `
32
+ & .${paginationItemClasses.root} {
33
+ color: #303030;
34
+ background-color: #FBFBFB;
35
+ border: 1px #C4C5CA solid;
36
+ border-radius: 6px;
37
+ font-size: 14px;
38
+ min-width: 32px;
39
+ min-height: 32px;
40
+ width: 32px;
41
+ height: 32px;
42
+ &:hover {
43
+ background-color: #FBFBFB;
44
+ },
45
+ }
46
+
47
+ & .${paginationItemClasses.selected} {
48
+ border: 1px #7276F7 solid;
49
+ color: #7276F7;
50
+ },
51
+
52
+ & .${paginationItemClasses.previousNext} {
53
+ color: #C4C5CA;
54
+ },
55
+
56
+ & .${paginationItemClasses.disabled} {
57
+ color: #C4C5CA;
58
+ background-color: #8D9099;
59
+ },
60
+
61
+ & .${paginationItemClasses.ellipsis} {
62
+ user-select: none;
63
+ display: flex;
64
+ align-items: end;
65
+ }
66
+ `;
@@ -22,7 +22,7 @@ export const SSITableViewRowContainerStyled = styled.tr `
22
22
  background-color: ${backgroundColors.primaryLight};
23
23
 
24
24
  &:hover {
25
- background-color: #ECECEC;
25
+ background-color: #ececec;
26
26
  }
27
27
  `;
28
28
  export const SSITableViewCellContainerStyled = styled.td `
@@ -48,6 +48,6 @@ export const SSITableViewResultCountCaptionStyled = styled.div `
48
48
  margin-left: 24px;
49
49
  `;
50
50
  export const TableViewRowSelectionCheckboxContainerStyled = styled.div `
51
- width: 20px;
51
+ width: 20px;
52
52
  height: 20px;
53
53
  `;
@@ -19,3 +19,4 @@ export * from './SSIHoverText';
19
19
  export * from './SSICheckbox';
20
20
  export * from './ProgressStepIndicator';
21
21
  export * from './StepMarker';
22
+ export * from './Pagination';
@@ -19,3 +19,4 @@ export * from './SSIHoverText';
19
19
  export * from './SSICheckbox';
20
20
  export * from './ProgressStepIndicator';
21
21
  export * from './StepMarker';
22
+ export * from './Pagination';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sphereon/ui-components.ssi-react",
3
3
  "private": false,
4
- "version": "0.1.3-unstable.122+20d6bee",
4
+ "version": "0.1.3-unstable.130+25eb3ad",
5
5
  "description": "SSI UI components for React",
6
6
  "repository": "git@github.com:Sphereon-Opensource/UI-Components.git",
7
7
  "author": "Sphereon <dev@sphereon.com>",
@@ -28,7 +28,10 @@
28
28
  "access": "public"
29
29
  },
30
30
  "dependencies": {
31
- "@sphereon/ui-components.core": "0.1.3-unstable.122+20d6bee",
31
+ "@mui/icons-material": "^5.15.9",
32
+ "@mui/material": "^5.15.9",
33
+ "@mui/styled-engine-sc": "6.0.0-alpha.16",
34
+ "@sphereon/ui-components.core": "0.1.3-unstable.130+25eb3ad",
32
35
  "@tanstack/react-table": "^8.9.3",
33
36
  "react-loader-spinner": "^5.4.5",
34
37
  "react-toastify": "^9.1.3",
@@ -42,5 +45,5 @@
42
45
  "peerDependencies": {
43
46
  "react": ">= 16.8.0"
44
47
  },
45
- "gitHead": "20d6beeecabdfd8fe83e451b9129cccb6a259375"
48
+ "gitHead": "25eb3ad6a2e88b3b6f86aa535b8ef5b5f0b8c3cc"
46
49
  }