@sphereon/ui-components.ssi-react 0.4.1-unstable.161 → 0.4.1-unstable.163
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/views/ContactViewItem/index.d.ts +1 -1
- package/dist/components/views/SSITableView/index.js +7 -11
- package/dist/styles/components/components/ContactViewItem/index.d.ts +0 -1
- package/dist/styles/components/components/CredentialIssuanceWizardView/index.d.ts +0 -1
- package/dist/styles/components/components/CredentialViewItem/index.d.ts +0 -1
- package/dist/styles/components/components/DragAndDropBox/index.d.ts +0 -1
- package/dist/styles/components/components/DropDownList/index.d.ts +0 -1
- package/dist/styles/components/components/DropDownListItem/index.d.ts +0 -1
- package/dist/styles/components/components/FileSelectionField/index.d.ts +0 -1
- package/dist/styles/components/components/IconButton/index.d.ts +0 -1
- package/dist/styles/components/components/InformationRequestView/index.d.ts +0 -1
- package/dist/styles/components/components/JSONDataView/index.d.ts +0 -1
- package/dist/styles/components/components/Pagination/index.d.ts +0 -1
- package/dist/styles/components/components/PassportPhotoControl/index.d.ts +0 -1
- package/dist/styles/components/components/ProgressStepIndicator/index.d.ts +0 -1
- package/dist/styles/components/components/SSICheckbox/index.d.ts +0 -1
- package/dist/styles/components/components/SSICredentialCardView/index.d.ts +0 -1
- package/dist/styles/components/components/SSICredentialMiniCardView/index.d.ts +0 -1
- package/dist/styles/components/components/SSIHoverText/index.d.ts +0 -1
- package/dist/styles/components/components/SSIProfileIcon/index.d.ts +0 -1
- package/dist/styles/components/components/SSIStatusLabel/index.d.ts +0 -1
- package/dist/styles/components/components/SSITabView/index.d.ts +0 -1
- package/dist/styles/components/components/SSITabViewHeader/index.d.ts +0 -1
- package/dist/styles/components/components/SSITableView/index.d.ts +0 -1
- package/dist/styles/components/components/SSITableViewHeader/index.d.ts +0 -1
- package/dist/styles/components/components/SSIToast/index.d.ts +0 -1
- package/dist/styles/components/components/StepMarker/index.d.ts +0 -1
- package/dist/styles/components/components/TextInputField/index.d.ts +0 -1
- package/dist/styles/components/components/buttons/index.d.ts +0 -1
- package/dist/styles/components/containers/index.d.ts +0 -1
- package/dist/styles/css/tailwind.css +2 -2
- package/dist/styles/fonts/index.d.ts +0 -1
- package/package.json +6 -6
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
|
-
import type { IImageAttributes } from '@sphereon/ssi-sdk.data-store';
|
|
2
|
+
import type { IImageAttributes } from '@sphereon/ssi-sdk.data-store-types';
|
|
3
3
|
import { CredentialRole } from '@sphereon/ssi-types';
|
|
4
4
|
export interface Props {
|
|
5
5
|
name: string;
|
|
@@ -80,17 +80,13 @@ const SSITableView = (props) => {
|
|
|
80
80
|
availableColumns = [
|
|
81
81
|
{
|
|
82
82
|
id: 'select',
|
|
83
|
-
header: ({ table }) => (_jsx(IndeterminateCheckbox, {
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
disabled: !row.getCanSelect(),
|
|
91
|
-
indeterminate: row.getIsSomeSelected(),
|
|
92
|
-
onChange: row.getToggleSelectedHandler(),
|
|
93
|
-
} })) })),
|
|
83
|
+
header: ({ table }) => (_jsx(IndeterminateCheckbox, { checked: table.getIsAllRowsSelected(),
|
|
84
|
+
indeterminate: table.getIsSomeRowsSelected(),
|
|
85
|
+
onChange: table.getToggleAllRowsSelectedHandler() })),
|
|
86
|
+
cell: ({ row }) => (_jsx(RowSelectionCheckboxContainer, { children: (row.id === focusedRowId || rowSelection.length > 0) && (_jsx(IndeterminateCheckbox, { checked: row.getIsSelected(),
|
|
87
|
+
disabled: !row.getCanSelect(),
|
|
88
|
+
indeterminate: row.getIsSomeSelected(),
|
|
89
|
+
onChange: row.getToggleSelectedHandler() })) })),
|
|
94
90
|
},
|
|
95
91
|
...availableColumns,
|
|
96
92
|
];
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { IStyledComponent } from 'styled-components';
|
|
3
2
|
import { SSITextH1SemiBoldStyled, SSITextH2Styled } from '../../../fonts';
|
|
4
3
|
export declare const CredentialIssuanceWizardViewContainerStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { IStyledComponent } from 'styled-components';
|
|
3
2
|
import { SSITextH7RegularStyled } from '../../../fonts';
|
|
4
3
|
export declare const DragAndDropBoxContainerStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { IStyledComponent } from 'styled-components';
|
|
3
2
|
import { SSITextH2SemiBoldStyled, SSITextH7RegularStyled } from '../../../fonts';
|
|
4
3
|
export declare const FileSelectionFieldContainerStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { IStyledComponent } from 'styled-components';
|
|
3
2
|
import { SSITextH1Styled, SSITextH2Styled, SSITextH3Styled, SSITextH4Styled } from '../../../fonts';
|
|
4
3
|
export declare const InformationRequestViewContainerStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { IStyledComponent } from 'styled-components';
|
|
3
2
|
export declare const JSONDataViewContainerStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
4
3
|
export declare const JSONDataViewHeaderContainerStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
export declare const PaginationContainerStyled: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
3
2
|
export declare const GoToInputStyled: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, {}>;
|
|
4
3
|
export declare const GoToInputContainer: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { IStyledComponent } from 'styled-components';
|
|
3
2
|
export declare const PassportPhotoControlContainerStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
4
3
|
export declare const PassportPhotoControlDragAndDropBoxContainerStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { IStyledComponent } from 'styled-components';
|
|
3
2
|
import { SSITextH1SemiBoldStyled, SSITextH3Styled } from '../../../fonts';
|
|
4
3
|
export declare const ProgressStepIndicatorContainerStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { IStyledComponent } from 'styled-components';
|
|
3
2
|
import { SSIFlexDirectionColumnViewStyled, SSIFlexDirectionRowViewStyled, SSIRoundedContainerStyled } from '../../containers';
|
|
4
3
|
import { SSITextH4SemiBoldLightStyled, SSITextH5LightStyled } from '../../../fonts';
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { IStyledComponent } from 'styled-components';
|
|
3
2
|
import { SSIFlexDirectionColumnViewStyled } from '../../containers';
|
|
4
3
|
export declare const SSICredentialMiniCardViewContainerStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { IStyledComponent } from 'styled-components';
|
|
3
2
|
export declare const SSIHoverTextTextHoverStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>>;
|
|
4
3
|
export declare const SSIHoverTextContainerStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { IStyledComponent } from 'styled-components';
|
|
3
2
|
import { SSITextH3Styled } from '../../../fonts';
|
|
4
3
|
export declare const SSITabViewHeaderContainerStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { IStyledComponent } from 'styled-components';
|
|
3
2
|
export declare const SSITableViewContainerStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
4
3
|
export declare const SSITableViewLabelCellStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { IStyledComponent } from 'styled-components';
|
|
3
2
|
import { SSIFlexDirectionRowViewStyled } from '../../containers';
|
|
4
3
|
export declare const SSITableViewHeaderContainerStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { IStyledComponent } from 'styled-components';
|
|
3
2
|
export declare const StepMarkerActiveContainerStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
4
3
|
export declare const StepMarkerActiveOuterContainerStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { IStyledComponent } from 'styled-components';
|
|
3
2
|
export declare const TextFieldInputContainerStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
4
3
|
export declare const TextFieldInputInputStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { IStyledComponent } from 'styled-components';
|
|
3
2
|
export declare const SSIFlexDirectionRowViewStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
4
3
|
export declare const SSIFlexDirectionColumnViewStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! tailwindcss v4.1.
|
|
1
|
+
/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
3
|
@layer theme, custom-base, custom-components, custom-utilities;
|
|
4
4
|
@layer theme {
|
|
@@ -353,7 +353,7 @@
|
|
|
353
353
|
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
354
354
|
}
|
|
355
355
|
.transition {
|
|
356
|
-
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display,
|
|
356
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
|
|
357
357
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
358
358
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
359
359
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { IStyledComponent } from 'styled-components';
|
|
3
2
|
export declare const SSITextH1Styled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
4
3
|
export declare const SSITextH1SemiBoldStyled: IStyledComponent<'web', React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
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.4.1-unstable.
|
|
4
|
+
"version": "0.4.1-unstable.163+38cc1a5",
|
|
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>",
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
"@mui/styled-engine-sc": "^7.3.5",
|
|
49
49
|
"@mui/system": "^7.3.5",
|
|
50
50
|
"@mui/x-date-pickers": "^8.18.0",
|
|
51
|
-
"@sphereon/ssi-sdk.data-store": "0.
|
|
52
|
-
"@sphereon/ssi-types": "0.
|
|
53
|
-
"@sphereon/ui-components.core": "0.4.1-unstable.
|
|
51
|
+
"@sphereon/ssi-sdk.data-store-types": "0.36.1-next.155",
|
|
52
|
+
"@sphereon/ssi-types": "0.36.1-next.155",
|
|
53
|
+
"@sphereon/ui-components.core": "0.4.1-unstable.163+38cc1a5",
|
|
54
54
|
"@tanstack/react-table": "^8.9.3",
|
|
55
55
|
"ajv": "^8.17.1",
|
|
56
56
|
"ajv-formats": "^3.0.1",
|
|
@@ -67,10 +67,10 @@
|
|
|
67
67
|
"@tailwindcss/cli": "^4.1.11",
|
|
68
68
|
"@types/react": "~18.3.18",
|
|
69
69
|
"tailwindcss": "^4.1.11",
|
|
70
|
-
"typescript": "
|
|
70
|
+
"typescript": "~5.8.3"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|
|
73
73
|
"react": ">= 18"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "38cc1a518b1cd568f7b2fad0f1036f772ebd4a2e"
|
|
76
76
|
}
|