@sphereon/ui-components.ssi-react 0.1.3-unstable.150 → 0.1.3-unstable.153

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.
@@ -32,8 +32,7 @@ const ComboBox = (props) => {
32
32
  }),
33
33
  menu: (provided) => ({
34
34
  ...provided,
35
- maxWidth: 455,
36
- zIndex: 999,
35
+ maxWidth: 455
37
36
  }),
38
37
  option: (provided, state) => ({
39
38
  ...provided,
@@ -1,5 +1,6 @@
1
1
  import { CSSProperties, FC } from 'react';
2
2
  import { CredentialStatus } from '@sphereon/ui-components.core';
3
+ import { CredentialMiniCardViewProps } from '../CredentialMiniCardView';
3
4
  type Props = {
4
5
  credentialTitle: string;
5
6
  credentialStatus: CredentialStatus;
@@ -7,6 +8,8 @@ type Props = {
7
8
  issueDate: number;
8
9
  expirationDate?: number;
9
10
  showTime?: boolean;
11
+ showCard?: boolean;
12
+ credentialBranding?: CredentialMiniCardViewProps;
10
13
  style?: CSSProperties;
11
14
  };
12
15
  declare const CredentialViewItem: FC<Props>;
@@ -1,15 +1,17 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { Localization, toLocalDateString, toLocalDateTimeString } from '@sphereon/ui-components.core';
3
3
  import SSIStatusLabel from '../../labels/SSIStatusLabel';
4
- import { CredentialViewItemContainerStyled as Container, SSIFlexDirectionRowViewStyled as ContentRowContainer, CredentialViewItemTitleCaptionStyled as TitleCaption, SSITextH4Styled as IssuerCaption, CredentialViewItemStatusContainerStyled as StatusContainer, SSITextH5Styled as IssueDateCaption, CredentialViewItemExpirationDateCaptionStyled as ExpirationDateCaption, } from '../../../styles';
4
+ import CredentialMiniCardView from '../CredentialMiniCardView';
5
+ import { CredentialViewItemContainerStyled as Container, CredentialViewItemDetailsContainerStyled as DetailsContainer, SSIFlexDirectionRowViewStyled as ContentRowContainer, CredentialViewItemTitleCaptionStyled as TitleCaption, SSITextH4Styled as IssuerCaption, CredentialViewItemStatusContainerStyled as StatusContainer, SSITextH5Styled as IssueDateCaption, CredentialViewItemExpirationDateCaptionStyled as ExpirationDateCaption, } from '../../../styles';
5
6
  const CredentialViewItem = (props) => {
6
- const { credentialStatus, credentialTitle, issuerName, showTime = false, style } = props;
7
+ const { credentialStatus, credentialTitle, issuerName, showTime = false, showCard = true, credentialBranding, style } = props;
7
8
  const issueDate = showTime ? toLocalDateTimeString(props.issueDate) : toLocalDateString(props.issueDate);
8
9
  const expirationDate = props.expirationDate
9
10
  ? `${Localization.translate('credentials_view_item_expires_on')} ${showTime
10
11
  ? toLocalDateTimeString(props.expirationDate)
11
12
  : toLocalDateString(props.expirationDate)}`
12
13
  : Localization.translate('credential_status_never_expires_date_label');
13
- return (_jsxs(Container, { style: { ...style }, children: [_jsxs(ContentRowContainer, { children: [_jsxs("div", { children: [_jsx(TitleCaption, { children: credentialTitle }), _jsx(IssuerCaption, { children: issuerName })] }), _jsx(StatusContainer, { children: _jsx(SSIStatusLabel, { status: credentialStatus }) })] }), _jsxs(ContentRowContainer, { children: [_jsx(IssueDateCaption, { children: issueDate }), _jsx(ExpirationDateCaption, { children: expirationDate })] })] }));
14
+ return (_jsxs(Container, { style: { ...style }, children: [showCard &&
15
+ _jsx(CredentialMiniCardView, { ...credentialBranding }), _jsxs(DetailsContainer, { children: [_jsxs(ContentRowContainer, { children: [_jsxs("div", { children: [_jsx(TitleCaption, { children: credentialTitle }), _jsx(IssuerCaption, { children: issuerName })] }), _jsx(StatusContainer, { children: _jsx(SSIStatusLabel, { status: credentialStatus }) })] }), _jsxs(ContentRowContainer, { children: [_jsx(IssueDateCaption, { children: issueDate }), _jsx(ExpirationDateCaption, { children: expirationDate })] })] })] }));
14
16
  };
15
17
  export default CredentialViewItem;
@@ -0,0 +1,8 @@
1
+ import { FC } from 'react';
2
+ type Props = {
3
+ data: Record<string, any>;
4
+ showHeader?: boolean;
5
+ shouldExpandNodeInitially?: (() => boolean) | boolean;
6
+ };
7
+ declare const JSONDataView: FC<Props>;
8
+ export default JSONDataView;
@@ -0,0 +1,85 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import React, { useEffect } from 'react';
3
+ import { JSONTree } from 'react-json-tree';
4
+ import { backgroundColors, calculateAspectRatio, fontColors, isBase64ImageUri, isBoolean, Localization, parseToBoolean } from '@sphereon/ui-components.core';
5
+ import SSICheckmarkBadge from '../../assets/badges/SSICheckmarkBadge';
6
+ import SSIExclamationMarkBadge from '../../assets/badges/SSIExclamationMarkBadge';
7
+ import { getImageSize } from '../../../utils';
8
+ import { JSONDataViewContainerStyled as Container, JSONDataViewHeaderContainerStyled as HeaderContainer, JSONDataViewColumnHeaderCaptionStyled as ColumnHeaderCaption, JSONDataViewDataContainerCaptionStyled as ContainerCaption, JSONDataViewDataImageValueStyled as ImageValue, JSONDataViewDataTextValueStyled as TextValue, JSONDataViewDataLabelStyled as Label } from '../../../styles';
9
+ const JSONDataView = (props) => {
10
+ const { showHeader = true, shouldExpandNodeInitially = () => false } = props;
11
+ const expandNodeInitially = typeof shouldExpandNodeInitially === 'function' ? shouldExpandNodeInitially : () => shouldExpandNodeInitially;
12
+ const [focused, setFocused] = React.useState(false);
13
+ const [data, setData] = React.useState();
14
+ const preprocessData = async (data) => {
15
+ if (typeof data !== 'object' || data === null) {
16
+ return data;
17
+ }
18
+ const processedData = {};
19
+ await Promise.all(Object.entries(data).map(async ([key, value]) => {
20
+ if (typeof value === 'object' && value !== null) {
21
+ processedData[key] = await preprocessData(value);
22
+ }
23
+ else if (typeof value === 'string' && isBase64ImageUri(value)) {
24
+ const base64Uri = value;
25
+ const dimensions = await getImageSize(base64Uri);
26
+ processedData[key] = {
27
+ uri: base64Uri,
28
+ dimensions: {
29
+ height: dimensions.height,
30
+ width: dimensions.width,
31
+ aspectRatio: calculateAspectRatio(dimensions.width, dimensions.height)
32
+ }
33
+ };
34
+ }
35
+ else {
36
+ processedData[key] = value;
37
+ }
38
+ }));
39
+ return processedData;
40
+ };
41
+ useEffect(() => {
42
+ preprocessData(props.data).then((data) => setData(data));
43
+ }, [props.data]);
44
+ const getItemString = () => {
45
+ return null;
46
+ };
47
+ const valueRenderer = (valueAsString, value) => {
48
+ if (isBoolean(value)) {
49
+ return parseToBoolean(value) ? _jsx(SSICheckmarkBadge, {}) : _jsx(SSIExclamationMarkBadge, {});
50
+ }
51
+ if (typeof value === 'object'
52
+ && value !== null
53
+ && 'uri' in value) {
54
+ const imageData = value;
55
+ return _jsx(ImageValue, { style: {
56
+ aspectRatio: imageData.dimensions?.aspectRatio,
57
+ backgroundImage: `url(${imageData.uri})`,
58
+ } });
59
+ }
60
+ return _jsx(TextValue, { children: value?.toString() });
61
+ };
62
+ const labelRenderer = ([key]) => {
63
+ return _jsx(Label, { children: key });
64
+ };
65
+ const isCustomNode = (value) => {
66
+ return typeof value === 'object' && value !== null && 'uri' in value && 'dimensions' in value;
67
+ };
68
+ return (_jsxs(Container, { children: [showHeader &&
69
+ _jsxs(HeaderContainer, { children: [_jsx(ColumnHeaderCaption, { children: Localization.translate('json_data_view_attribute_column_label') }), _jsx(ColumnHeaderCaption, { children: Localization.translate('json_data_view_value_column_label') })] }), _jsx(ContainerCaption, { onMouseEnter: () => setFocused(true), onMouseLeave: () => setFocused(false), children: data &&
70
+ _jsx(JSONTree, { theme: {
71
+ base0D: fontColors.dark,
72
+ tree: {
73
+ margin: 0,
74
+ backgroundColor: backgroundColors.primaryLight,
75
+ },
76
+ arrowContainer: {
77
+ paddingRight: 6,
78
+ },
79
+ arrow: {
80
+ fontSize: 10,
81
+ ...(!focused && { display: 'none' }),
82
+ },
83
+ }, hideRoot: true, shouldExpandNodeInitially: expandNodeInitially, getItemString: getItemString, labelRenderer: labelRenderer, valueRenderer: valueRenderer, isCustomNode: isCustomNode, data: data }) })] }));
84
+ };
85
+ export default JSONDataView;
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- import { SSITabViewHeaderContainerStyled as Container, SSITabViewHeaderTitleContainerStyled as TitleContainer, SSITextH3Styled as TitleCaption, } from '../../../../styles';
2
+ import { SSITabViewHeaderContainerStyled as Container, SSITabViewHeaderTitleContainerStyled as TitleContainer, SSITabViewHeaderTitleCaptionStyled as TitleCaption, } from '../../../../styles';
3
3
  const SSITabViewHeader = (props) => {
4
4
  const { navigationState, onIndexChange } = props;
5
5
  return (_jsx(Container, { children: navigationState.routes.map((value, index) => {
package/dist/index.d.ts CHANGED
@@ -37,9 +37,10 @@ import CredentialIssuanceWizardView from './components/views/CredentialIssuanceW
37
37
  import PaginationControls from './components/views/SSITableView/PaginationControls';
38
38
  import PaginationControlsProps from './components/views/SSITableView/PaginationControls';
39
39
  import CredentialViewItem from './components/views/CredentialViewItem';
40
+ import JSONDataView from './components/views/JSONDataView';
40
41
  import { Row } from '@tanstack/react-table';
41
42
  export * from './styles/fonts';
42
43
  export * from './types';
43
44
  export * from './helpers';
44
45
  export * from './utils';
45
- 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, PaginationControlsProps, Row, DocumentIcon, CrossIcon, ImageIcon, FileSelection, ComboBox, DragAndDropBox, PersonPlaceholder, PassportPhotoControl, passportPhotoControlTester, CredentialIssuanceWizardView, CredentialViewItem };
46
+ 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, PaginationControlsProps, Row, DocumentIcon, CrossIcon, ImageIcon, FileSelection, ComboBox, DragAndDropBox, PersonPlaceholder, PassportPhotoControl, passportPhotoControlTester, CredentialIssuanceWizardView, CredentialViewItem, JSONDataView };
package/dist/index.js CHANGED
@@ -36,8 +36,9 @@ import CredentialIssuanceWizardView from './components/views/CredentialIssuanceW
36
36
  import PaginationControls from './components/views/SSITableView/PaginationControls';
37
37
  import PaginationControlsProps from './components/views/SSITableView/PaginationControls';
38
38
  import CredentialViewItem from './components/views/CredentialViewItem';
39
+ import JSONDataView from './components/views/JSONDataView';
39
40
  export * from './styles/fonts';
40
41
  export * from './types';
41
42
  export * from './helpers';
42
43
  export * from './utils';
43
- 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, PaginationControlsProps, DocumentIcon, CrossIcon, ImageIcon, FileSelection, ComboBox, DragAndDropBox, PersonPlaceholder, PassportPhotoControl, passportPhotoControlTester, CredentialIssuanceWizardView, CredentialViewItem };
44
+ 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, PaginationControlsProps, DocumentIcon, CrossIcon, ImageIcon, FileSelection, ComboBox, DragAndDropBox, PersonPlaceholder, PassportPhotoControl, passportPhotoControlTester, CredentialIssuanceWizardView, CredentialViewItem, JSONDataView };
@@ -1,4 +1,5 @@
1
1
  export declare const CredentialViewItemContainerStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ export declare const CredentialViewItemDetailsContainerStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
2
3
  export declare const CredentialViewItemTitleCaptionStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
3
4
  export declare const CredentialViewItemStatusContainerStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
4
5
  export declare const CredentialViewItemExpirationDateCaptionStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -1,8 +1,14 @@
1
1
  import styled from 'styled-components';
2
- import { SSIFlexDirectionColumnViewStyled } from '../../containers';
2
+ import { SSIFlexDirectionColumnViewStyled, SSIFlexDirectionRowViewStyled } from '../../containers';
3
3
  import { SSITextH3Styled, SSITextH5Styled } from '../../../fonts';
4
- export const CredentialViewItemContainerStyled = styled(SSIFlexDirectionColumnViewStyled) `
4
+ export const CredentialViewItemContainerStyled = styled(SSIFlexDirectionRowViewStyled) `
5
+ padding: 18px 24px;
6
+ gap: 8px;
7
+ align-items: center;
8
+ `;
9
+ export const CredentialViewItemDetailsContainerStyled = styled(SSIFlexDirectionColumnViewStyled) `
5
10
  gap: 6px;
11
+ min-width: 245px;
6
12
  `;
7
13
  export const CredentialViewItemTitleCaptionStyled = styled(SSITextH3Styled) `
8
14
  display: -webkit-box;
@@ -0,0 +1,7 @@
1
+ export declare const JSONDataViewContainerStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ export declare const JSONDataViewHeaderContainerStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
3
+ export declare const JSONDataViewColumnHeaderCaptionStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
4
+ export declare const JSONDataViewDataContainerCaptionStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
5
+ export declare const JSONDataViewDataImageValueStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
6
+ export declare const JSONDataViewDataTextValueStyled: import("styled-components").StyledComponent<"span", any, {}, never>;
7
+ export declare const JSONDataViewDataLabelStyled: import("styled-components").StyledComponent<"span", any, {}, never>;
@@ -0,0 +1,47 @@
1
+ import styled from 'styled-components';
2
+ import { backgroundColors, borderColors, fontColors, SSIRoundedEdgesCss } from '@sphereon/ui-components.core';
3
+ import { SSITextH2SemiBoldStyledCss, SSITextH5Css, SSITextH7SemiBoldCss } from '../../../css';
4
+ export const JSONDataViewContainerStyled = styled.div `
5
+ ${SSIRoundedEdgesCss};
6
+ display: flex;
7
+ flex-direction: column;
8
+ overflow: hidden;
9
+ background-color: ${backgroundColors.primaryLight};
10
+ border: 1px solid ${borderColors.light};
11
+ `;
12
+ export const JSONDataViewHeaderContainerStyled = styled.div `
13
+ padding: 12px 24px;
14
+ display: flex;
15
+ flex-direction: row;
16
+ align-items: center;
17
+ border-bottom: 2px solid ${borderColors.light};
18
+ `;
19
+ export const JSONDataViewColumnHeaderCaptionStyled = styled.div `
20
+ display: flex;
21
+ flex-grow: 1;
22
+ ${SSITextH2SemiBoldStyledCss};
23
+ color: ${fontColors.lightGrey};
24
+ max-width: 200px;
25
+ `;
26
+ export const JSONDataViewDataContainerCaptionStyled = styled.div `
27
+ padding-right: 24px;
28
+ padding-bottom: 24px;
29
+ padding-left: 12px;
30
+ display: flex;
31
+ flex-direction: row;
32
+ `;
33
+ export const JSONDataViewDataImageValueStyled = styled.div `
34
+ background-size: cover;
35
+ height: 130px;
36
+ border-radius: 10px;
37
+ `;
38
+ export const JSONDataViewDataTextValueStyled = styled.span `
39
+ color: ${fontColors.dark};
40
+ ${SSITextH7SemiBoldCss}
41
+ `;
42
+ export const JSONDataViewDataLabelStyled = styled.span `
43
+ color: ${fontColors.dark};
44
+ ${SSITextH5Css};
45
+ width: 212px;
46
+ display: inline-block;
47
+ `;
@@ -2,5 +2,5 @@ import styled from 'styled-components';
2
2
  export const SSITabViewContainerStyled = styled.div `
3
3
  display: flex;
4
4
  flex-direction: column;
5
- width: 100%;
5
+ flex-grow: 1;
6
6
  `;
@@ -1,2 +1,3 @@
1
1
  export declare const SSITabViewHeaderContainerStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
2
2
  export declare const SSITabViewHeaderTitleContainerStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
3
+ export declare const SSITabViewHeaderTitleCaptionStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -1,4 +1,5 @@
1
1
  import styled from 'styled-components';
2
+ import { SSITextH3Styled } from '../../../fonts';
2
3
  export const SSITabViewHeaderContainerStyled = styled.div `
3
4
  display: flex;
4
5
  flex-direction: row;
@@ -7,4 +8,8 @@ export const SSITabViewHeaderContainerStyled = styled.div `
7
8
  `;
8
9
  export const SSITabViewHeaderTitleContainerStyled = styled.div `
9
10
  cursor: pointer;
11
+ display: flex;
12
+ `;
13
+ export const SSITabViewHeaderTitleCaptionStyled = styled(SSITextH3Styled) `
14
+ margin-top: auto;
10
15
  `;
@@ -25,3 +25,4 @@ export * from './PassportPhotoControl';
25
25
  export * from './CredentialIssuanceWizardView';
26
26
  export * from './Pagination';
27
27
  export * from './CredentialViewItem';
28
+ export * from './JSONDataView';
@@ -25,3 +25,4 @@ export * from './PassportPhotoControl';
25
25
  export * from './CredentialIssuanceWizardView';
26
26
  export * from './Pagination';
27
27
  export * from './CredentialViewItem';
28
+ export * from './JSONDataView';
@@ -8,4 +8,5 @@ export declare const SSITextH4SemiBoldCss: import("styled-components").FlattenSi
8
8
  export declare const SSITextH5Css: import("styled-components").FlattenSimpleInterpolation;
9
9
  export declare const SSITextH6Css: import("styled-components").FlattenSimpleInterpolation;
10
10
  export declare const SSITextH7RegularCss: import("styled-components").FlattenSimpleInterpolation;
11
+ export declare const SSITextH7SemiBoldCss: import("styled-components").FlattenSimpleInterpolation;
11
12
  export declare const gradient100TextCss: import("styled-components").FlattenSimpleInterpolation;
@@ -71,6 +71,13 @@ export const SSITextH7RegularCss = css `
71
71
  line-height: ${fontStyle.h7Regular.lineHeight}px;
72
72
  height: auto;
73
73
  `;
74
+ export const SSITextH7SemiBoldCss = css `
75
+ font-family: ${fontStyle.h7SemiBold.fontFamily};
76
+ font-size: ${fontStyle.h7SemiBold.fontSize}px;
77
+ font-weight: ${fontStyle.h7SemiBold.fontWeight};
78
+ line-height: ${fontStyle.h7SemiBold.lineHeight}px;
79
+ height: auto;
80
+ `;
74
81
  export const gradient100TextCss = css `
75
82
  background: ${gradientColors['100']};
76
83
  background-clip: text;
@@ -0,0 +1,2 @@
1
+ import { ImageSize } from '@sphereon/ui-components.core';
2
+ export declare const getImageSize: (uri: string) => Promise<ImageSize>;
@@ -0,0 +1,12 @@
1
+ export const getImageSize = (uri) => {
2
+ return new Promise((resolve, reject) => {
3
+ const img = new Image();
4
+ img.onload = () => {
5
+ resolve({ width: img.width, height: img.height });
6
+ };
7
+ img.onerror = (error) => {
8
+ reject(error);
9
+ };
10
+ img.src = uri;
11
+ });
12
+ };
@@ -1 +1,2 @@
1
1
  export * from './FileUtils';
2
+ export * from './ImageUtils';
@@ -1 +1,2 @@
1
1
  export * from './FileUtils';
2
+ export * from './ImageUtils';
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.150+80103f1",
4
+ "version": "0.1.3-unstable.153+9c84e89",
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>",
@@ -40,8 +40,9 @@
40
40
  "@mui/styled-engine-sc": "^5.14.12",
41
41
  "@mui/system": "^5.15.12",
42
42
  "@mui/x-date-pickers": "^6.19.5",
43
- "@sphereon/ui-components.core": "0.1.3-unstable.150+80103f1",
43
+ "@sphereon/ui-components.core": "0.1.3-unstable.153+9c84e89",
44
44
  "@tanstack/react-table": "^8.9.3",
45
+ "react-json-tree": "^0.18.0",
45
46
  "react-loader-spinner": "^5.4.5",
46
47
  "react-select": "^5.8.0",
47
48
  "react-toastify": "^9.1.3",
@@ -58,5 +59,5 @@
58
59
  "peerDependencies": {
59
60
  "react": ">= 16.8.0"
60
61
  },
61
- "gitHead": "80103f16948012994b466befb4356f438ded92d1"
62
+ "gitHead": "9c84e89a4f1bd5f506aa6ab21179d7bfe115cdb6"
62
63
  }