@sphereon/ui-components.ssi-react 0.1.3-unstable.172 → 0.1.3-unstable.174
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/fields/ComboBox/index.js +1 -1
- package/dist/components/fields/SSICheckbox/index.d.ts +1 -2
- package/dist/components/fields/SSICheckbox/index.js +2 -2
- package/dist/components/indicators/SSIActivityIndicator/index.js +1 -1
- package/dist/components/views/CredentialViewItem/index.d.ts +1 -1
- package/dist/components/views/CredentialViewItem/index.js +5 -8
- package/dist/components/views/JSONDataView/index.js +24 -28
- package/dist/components/views/SSITableView/index.js +5 -5
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/styles/components/components/CredentialIssuanceWizardView/index.d.ts +14 -9
- package/dist/styles/components/components/CredentialViewItem/index.d.ts +14 -5
- package/dist/styles/components/components/CredentialViewItem/index.js +2 -2
- package/dist/styles/components/components/DragAndDropBox/index.d.ts +7 -4
- package/dist/styles/components/components/DropDownList/index.d.ts +6 -3
- package/dist/styles/components/components/DropDownListItem/index.d.ts +8 -3
- package/dist/styles/components/components/FileSelectionField/index.d.ts +15 -10
- package/dist/styles/components/components/JSONDataView/index.d.ts +8 -7
- package/dist/styles/components/components/JSONDataView/index.js +1 -1
- package/dist/styles/components/components/Pagination/index.js +1 -1
- package/dist/styles/components/components/PassportPhotoControl/index.d.ts +5 -4
- package/dist/styles/components/components/ProgressStepIndicator/index.d.ts +13 -8
- package/dist/styles/components/components/SSICheckbox/index.d.ts +11 -4
- package/dist/styles/components/components/SSICheckbox/index.js +3 -3
- package/dist/styles/components/components/SSICredentialCardView/index.d.ts +32 -13
- package/dist/styles/components/components/SSICredentialCardView/index.js +0 -1
- package/dist/styles/components/components/SSICredentialMiniCardView/index.d.ts +5 -2
- package/dist/styles/components/components/SSIHoverText/index.d.ts +4 -3
- package/dist/styles/components/components/SSIIconButton/index.d.ts +2 -1
- package/dist/styles/components/components/SSIPrimaryButton/index.d.ts +4 -1
- package/dist/styles/components/components/SSIProfileIcon/index.d.ts +2 -1
- package/dist/styles/components/components/SSIProfileIcon/index.js +1 -1
- package/dist/styles/components/components/SSISecondaryButton/index.d.ts +7 -2
- package/dist/styles/components/components/SSIStatusLabel/index.d.ts +10 -3
- package/dist/styles/components/components/SSITabView/index.d.ts +2 -1
- package/dist/styles/components/components/SSITabViewHeader/index.d.ts +6 -3
- package/dist/styles/components/components/SSITabViewHeader/index.js +1 -1
- package/dist/styles/components/components/SSITableView/index.d.ts +11 -10
- package/dist/styles/components/components/SSITableView/index.js +5 -5
- package/dist/styles/components/components/SSITableViewHeader/index.d.ts +11 -6
- package/dist/styles/components/components/SSIToast/index.d.ts +11 -4
- package/dist/styles/components/components/SSIToastContainer/index.d.ts +3 -1
- package/dist/styles/components/components/SSITypeLabel/index.d.ts +4 -1
- package/dist/styles/components/components/StepMarker/index.d.ts +5 -4
- package/dist/styles/components/components/buttons/index.d.ts +4 -1
- package/dist/styles/components/components/index.d.ts +0 -1
- package/dist/styles/components/components/index.js +0 -1
- package/dist/styles/components/containers/index.d.ts +7 -4
- package/dist/styles/css/index.d.ts +12 -12
- package/dist/styles/fonts/index.d.ts +29 -16
- package/package.json +6 -7
- package/dist/components/assets/images/WarningImage/index.d.ts +0 -8
- package/dist/components/assets/images/WarningImage/index.js +0 -6
- package/dist/components/fields/TextInputField/index.d.ts +0 -12
- package/dist/components/fields/TextInputField/index.js +0 -21
- package/dist/styles/components/components/TextInputField/index.d.ts +0 -2
- package/dist/styles/components/components/TextInputField/index.js +0 -27
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { FC, ReactNode } from 'react';
|
|
2
2
|
export interface IProps {
|
|
3
3
|
onValueChange?: (isChecked: boolean) => Promise<void>;
|
|
4
4
|
initialValue?: boolean;
|
|
@@ -10,7 +10,6 @@ export interface IProps {
|
|
|
10
10
|
selectedColor?: string;
|
|
11
11
|
labelColor?: string;
|
|
12
12
|
checkmarkColor?: string;
|
|
13
|
-
style?: CSSProperties;
|
|
14
13
|
}
|
|
15
14
|
declare const SSICheckbox: FC<IProps>;
|
|
16
15
|
export default SSICheckbox;
|
|
@@ -3,7 +3,7 @@ import React from 'react';
|
|
|
3
3
|
import { OpacityStyleEnum, fontColors, selectionElementColors } from '@sphereon/ui-components.core';
|
|
4
4
|
import { SSICheckboxContainerStyled as Container, SSICheckboxLabelContainerStyled as LabelCaption, SSICheckboxSelectedContainerStyled as SelectedContainer, SSICheckboxUnselectedContainerStyled as UnselectedContainer, } from '../../../styles/components/index.js';
|
|
5
5
|
const SSICheckbox = (props) => {
|
|
6
|
-
const { backgroundColor, borderColor = selectionElementColors.primaryBorderDark, disabled = false, initialValue = false, label, selectedColor = selectionElementColors.primaryDark, labelColor = fontColors.light, checkmarkColor = fontColors.dark,
|
|
6
|
+
const { backgroundColor, borderColor = selectionElementColors.primaryBorderDark, disabled = false, initialValue = false, label, selectedColor = selectionElementColors.primaryDark, labelColor = fontColors.light, checkmarkColor = fontColors.dark, } = props;
|
|
7
7
|
const [isChecked, setChecked] = React.useState(initialValue);
|
|
8
8
|
const value = props.isChecked !== undefined ? props.isChecked : isChecked;
|
|
9
9
|
const onValueChange = async () => {
|
|
@@ -16,6 +16,6 @@ const SSICheckbox = (props) => {
|
|
|
16
16
|
}
|
|
17
17
|
setChecked(!isChecked);
|
|
18
18
|
};
|
|
19
|
-
return (_jsxs(Container, { onClick: onValueChange, style: { ...
|
|
19
|
+
return (_jsxs(Container, { onClick: onValueChange, style: { ...(disabled && { opacity: OpacityStyleEnum.DISABLED }) }, children: [value ? (_jsx(SelectedContainer, { style: { backgroundColor: selectedColor, border: `1px solid ${borderColor}` } })) : (_jsx(UnselectedContainer, { style: { backgroundColor, border: `1px solid ${borderColor}` } })), label && (typeof label === 'string' ? _jsx(LabelCaption, { style: { color: labelColor }, children: label }) : label)] }));
|
|
20
20
|
};
|
|
21
21
|
export default SSICheckbox;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { elementColors } from '@sphereon/ui-components.core';
|
|
3
|
-
import { Oval } from
|
|
3
|
+
import { Oval } from 'react-loader-spinner';
|
|
4
4
|
const SSIActivityIndicator = (props) => {
|
|
5
5
|
const { size = 80, color = elementColors.blue, style } = props;
|
|
6
6
|
return (_jsx(Oval, { width: size, height: size, color: color, secondaryColor: color, strokeWidth: 5, strokeWidthSecondary: 5, visible: true, wrapperStyle: style }));
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CSSProperties, FC } from 'react';
|
|
2
2
|
import { CredentialStatus } from '@sphereon/ui-components.core';
|
|
3
|
-
import { CredentialMiniCardViewProps } from '../CredentialMiniCardView';
|
|
3
|
+
import { CredentialMiniCardViewProps } from '../CredentialMiniCardView/index.js';
|
|
4
4
|
type Props = {
|
|
5
5
|
credentialTitle: string;
|
|
6
6
|
credentialStatus: CredentialStatus;
|
|
@@ -1,17 +1,14 @@
|
|
|
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
|
-
import SSIStatusLabel from '../../labels/SSIStatusLabel';
|
|
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';
|
|
3
|
+
import SSIStatusLabel from '../../labels/SSIStatusLabel/index.js';
|
|
4
|
+
import CredentialMiniCardView from '../CredentialMiniCardView/index.js';
|
|
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/index.js';
|
|
6
6
|
const CredentialViewItem = (props) => {
|
|
7
7
|
const { credentialStatus, credentialTitle, issuerName, showTime = false, showCard = true, credentialBranding, style } = props;
|
|
8
8
|
const issueDate = showTime ? toLocalDateTimeString(props.issueDate) : toLocalDateString(props.issueDate);
|
|
9
9
|
const expirationDate = props.expirationDate
|
|
10
|
-
? `${Localization.translate('credentials_view_item_expires_on')} ${showTime
|
|
11
|
-
? toLocalDateTimeString(props.expirationDate)
|
|
12
|
-
: toLocalDateString(props.expirationDate)}`
|
|
10
|
+
? `${Localization.translate('credentials_view_item_expires_on')} ${showTime ? toLocalDateTimeString(props.expirationDate) : toLocalDateString(props.expirationDate)}`
|
|
13
11
|
: Localization.translate('credential_status_never_expires_date_label');
|
|
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 })] })] })] }));
|
|
12
|
+
return (_jsxs(Container, { style: { ...style }, children: [showCard && _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 })] })] })] }));
|
|
16
13
|
};
|
|
17
14
|
export default CredentialViewItem;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import React, { useEffect } from 'react';
|
|
3
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';
|
|
4
|
+
import { backgroundColors, calculateAspectRatio, fontColors, isBase64ImageUri, isBoolean, Localization, parseToBoolean, } from '@sphereon/ui-components.core';
|
|
5
|
+
import SSICheckmarkBadge from '../../assets/badges/SSICheckmarkBadge/index.js';
|
|
6
|
+
import SSIExclamationMarkBadge from '../../assets/badges/SSIExclamationMarkBadge/index.js';
|
|
7
|
+
import { getImageSize } from '../../../utils/index.js';
|
|
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/index.js';
|
|
9
9
|
const JSONDataView = (props) => {
|
|
10
10
|
const { showHeader = true, shouldExpandNodeInitially = () => false } = props;
|
|
11
11
|
const expandNodeInitially = typeof shouldExpandNodeInitially === 'function' ? shouldExpandNodeInitially : () => shouldExpandNodeInitially;
|
|
@@ -28,8 +28,8 @@ const JSONDataView = (props) => {
|
|
|
28
28
|
dimensions: {
|
|
29
29
|
height: dimensions.height,
|
|
30
30
|
width: dimensions.width,
|
|
31
|
-
aspectRatio: calculateAspectRatio(dimensions.width, dimensions.height)
|
|
32
|
-
}
|
|
31
|
+
aspectRatio: calculateAspectRatio(dimensions.width, dimensions.height),
|
|
32
|
+
},
|
|
33
33
|
};
|
|
34
34
|
}
|
|
35
35
|
else {
|
|
@@ -48,14 +48,12 @@ const JSONDataView = (props) => {
|
|
|
48
48
|
if (isBoolean(value)) {
|
|
49
49
|
return parseToBoolean(value) ? _jsx(SSICheckmarkBadge, {}) : _jsx(SSIExclamationMarkBadge, {});
|
|
50
50
|
}
|
|
51
|
-
if (typeof value === 'object'
|
|
52
|
-
&& value !== null
|
|
53
|
-
&& 'uri' in value) {
|
|
51
|
+
if (typeof value === 'object' && value !== null && 'uri' in value) {
|
|
54
52
|
const imageData = value;
|
|
55
|
-
return _jsx(ImageValue, { style: {
|
|
53
|
+
return (_jsx(ImageValue, { style: {
|
|
56
54
|
aspectRatio: imageData.dimensions?.aspectRatio,
|
|
57
55
|
backgroundImage: `url(${imageData.uri})`,
|
|
58
|
-
} });
|
|
56
|
+
} }));
|
|
59
57
|
}
|
|
60
58
|
return _jsx(TextValue, { children: value?.toString() });
|
|
61
59
|
};
|
|
@@ -65,21 +63,19 @@ const JSONDataView = (props) => {
|
|
|
65
63
|
const isCustomNode = (value) => {
|
|
66
64
|
return typeof value === 'object' && value !== null && 'uri' in value && 'dimensions' in value;
|
|
67
65
|
};
|
|
68
|
-
return (_jsxs(Container, { children: [showHeader &&
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
},
|
|
83
|
-
}, hideRoot: true, shouldExpandNodeInitially: expandNodeInitially, getItemString: getItemString, labelRenderer: labelRenderer, valueRenderer: valueRenderer, isCustomNode: isCustomNode, data: data }) })] }));
|
|
66
|
+
return (_jsxs(Container, { children: [showHeader && (_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 && (_jsx(JSONTree, { theme: {
|
|
67
|
+
base0D: fontColors.dark,
|
|
68
|
+
tree: {
|
|
69
|
+
margin: 0,
|
|
70
|
+
backgroundColor: backgroundColors.primaryLight,
|
|
71
|
+
},
|
|
72
|
+
arrowContainer: {
|
|
73
|
+
paddingRight: 6,
|
|
74
|
+
},
|
|
75
|
+
arrow: {
|
|
76
|
+
fontSize: 10,
|
|
77
|
+
...(!focused && { display: 'none' }),
|
|
78
|
+
},
|
|
79
|
+
}, hideRoot: true, shouldExpandNodeInitially: expandNodeInitially, getItemString: getItemString, labelRenderer: labelRenderer, valueRenderer: valueRenderer, isCustomNode: isCustomNode, data: data })) })] }));
|
|
84
80
|
};
|
|
85
81
|
export default JSONDataView;
|
|
@@ -9,10 +9,10 @@ import SSIStatusLabel from '../../labels/SSIStatusLabel/index.js';
|
|
|
9
9
|
import CredentialMiniCardView from '../CredentialMiniCardView/index.js';
|
|
10
10
|
import DropDownList from '../../lists/DropDownList/index.js';
|
|
11
11
|
import { SSITableViewCellContainerStyled as CellContainer, SSITableViewContainerStyled as Container, SSITableViewHeaderCellContainerStyled as HeaderCellContainer, SSITableViewLabelCellStyled as LabelCell, SSITableViewResultCountCaptionStyled as ResultCountCaption, SSITableViewHeaderRowContainerStyled as HeaderRowContainer, SSITableViewRowContainerStyled as RowContainer, SSITableViewTableContainerStyled as TableContainer, TableViewRowSelectionCheckboxContainerStyled as RowSelectionCheckboxContainer, } from '../../../styles/index.js';
|
|
12
|
-
import { TableCellType } from '../../../types/index.js';
|
|
12
|
+
import { TableCellType, } from '../../../types/index.js';
|
|
13
13
|
import PaginationControls from './PaginationControls/index.js';
|
|
14
|
-
import ComboBox from
|
|
15
|
-
import CredentialDetailsView from
|
|
14
|
+
import ComboBox from '../../fields/ComboBox/index.js';
|
|
15
|
+
import CredentialDetailsView from '../CredentialViewItem/index.js';
|
|
16
16
|
function IndeterminateCheckbox({ indeterminate, className = '', ...rest }) {
|
|
17
17
|
const ref = React.useRef(null);
|
|
18
18
|
React.useEffect(() => {
|
|
@@ -86,14 +86,14 @@ const SSITableView = (props) => {
|
|
|
86
86
|
checked: table.getIsAllRowsSelected(),
|
|
87
87
|
indeterminate: table.getIsSomeRowsSelected(),
|
|
88
88
|
onChange: table.getToggleAllRowsSelectedHandler(),
|
|
89
|
-
columnMaxWidth: 50
|
|
89
|
+
columnMaxWidth: 50,
|
|
90
90
|
} })),
|
|
91
91
|
cell: ({ row }) => (_jsx(RowSelectionCheckboxContainer, { children: (row.id === focusedRowId || rowSelection.length > 0) && (_jsx(IndeterminateCheckbox, { ...{
|
|
92
92
|
checked: row.getIsSelected(),
|
|
93
93
|
disabled: !row.getCanSelect(),
|
|
94
94
|
indeterminate: row.getIsSomeSelected(),
|
|
95
95
|
onChange: row.getToggleSelectedHandler(),
|
|
96
|
-
columnMaxWidth: 50
|
|
96
|
+
columnMaxWidth: 50,
|
|
97
97
|
} })) })),
|
|
98
98
|
},
|
|
99
99
|
...availableColumns,
|
package/dist/index.d.ts
CHANGED
|
@@ -43,4 +43,4 @@ export * from './styles/fonts/index.js';
|
|
|
43
43
|
export * from './types/index.js';
|
|
44
44
|
export * from './helpers/index.js';
|
|
45
45
|
export * from './utils/index.js';
|
|
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 };
|
|
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
|
@@ -41,4 +41,4 @@ export * from './styles/fonts/index.js';
|
|
|
41
41
|
export * from './types/index.js';
|
|
42
42
|
export * from './helpers/index.js';
|
|
43
43
|
export * from './utils/index.js';
|
|
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 };
|
|
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,9 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
4
|
-
export declare const
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
9
|
-
export declare const
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const CredentialIssuanceWizardViewContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
3
|
+
export declare const CredentialIssuanceWizardViewCredentialTypeContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
4
|
+
export declare const CredentialIssuanceWizardViewCredentialTypeTitleStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<Omit<import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "ref"> & {
|
|
5
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
6
|
+
}, never>> & Omit<import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, keyof import("react").Component<any, {}, any>>;
|
|
7
|
+
export declare const CredentialIssuanceWizardViewFormContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
8
|
+
export declare const CredentialIssuanceWizardViewEvidenceContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
9
|
+
export declare const CredentialIssuanceWizardViewEvidenceContentContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
10
|
+
export declare const CredentialIssuanceWizardViewEvidenceTitleContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
11
|
+
export declare const CredentialIssuanceWizardViewEvidenceTitleOptionalStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<Omit<import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "ref"> & {
|
|
12
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
13
|
+
}, never>> & Omit<import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, keyof import("react").Component<any, {}, any>>;
|
|
14
|
+
export declare const CredentialIssuanceWizardViewEvidenceFilesContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
@@ -1,5 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export declare const
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const CredentialViewItemContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<Omit<import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "ref"> & {
|
|
3
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
4
|
+
}, never>> & Omit<import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, keyof import("react").Component<any, {}, any>>;
|
|
5
|
+
export declare const CredentialViewItemDetailsContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<Omit<import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "ref"> & {
|
|
6
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
7
|
+
}, never>> & Omit<import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, keyof import("react").Component<any, {}, any>>;
|
|
8
|
+
export declare const CredentialViewItemTitleCaptionStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<Omit<import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "ref"> & {
|
|
9
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
10
|
+
}, never>> & Omit<import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, keyof import("react").Component<any, {}, any>>;
|
|
11
|
+
export declare const CredentialViewItemStatusContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
12
|
+
export declare const CredentialViewItemExpirationDateCaptionStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<Omit<import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "ref"> & {
|
|
13
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
14
|
+
}, never>> & Omit<import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, keyof import("react").Component<any, {}, any>>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import styled from 'styled-components';
|
|
2
|
-
import { SSIFlexDirectionColumnViewStyled, SSIFlexDirectionRowViewStyled } from '../../containers';
|
|
3
|
-
import { SSITextH3Styled, SSITextH5Styled } from '../../../fonts';
|
|
2
|
+
import { SSIFlexDirectionColumnViewStyled, SSIFlexDirectionRowViewStyled } from '../../containers/index.js';
|
|
3
|
+
import { SSITextH3Styled, SSITextH5Styled } from '../../../fonts/index.js';
|
|
4
4
|
export const CredentialViewItemContainerStyled = styled(SSIFlexDirectionRowViewStyled) `
|
|
5
5
|
padding: 18px 24px;
|
|
6
6
|
gap: 8px;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
4
|
-
export declare const
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const DragAndDropBoxContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
3
|
+
export declare const DragAndDropBoxHiddenInputStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, never>>;
|
|
4
|
+
export declare const DragAndDropBoxCaptionContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
5
|
+
export declare const DragAndDropBoxDescriptionStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<Omit<import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "ref"> & {
|
|
6
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
7
|
+
}, never>> & Omit<import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, keyof import("react").Component<any, {}, any>>;
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const DropDownListContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<Omit<import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "ref"> & {
|
|
3
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
4
|
+
}, never>> & Omit<import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, keyof import("react").Component<any, {}, any>>;
|
|
5
|
+
export declare const DropDownListButtonStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
6
|
+
export declare const DropDownContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const DropDownListItemContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<Omit<import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "ref"> & {
|
|
3
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
4
|
+
}, never>> & Omit<import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, keyof import("react").Component<any, {}, any>>;
|
|
5
|
+
export declare const DropDownListItemCaptionContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<Omit<import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "ref"> & {
|
|
6
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
7
|
+
}, never>> & Omit<import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, keyof import("react").Component<any, {}, any>>;
|
|
8
|
+
export declare const DropDownListItemIconContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
@@ -1,10 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
9
|
-
export declare const
|
|
10
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const FileSelectionFieldContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
3
|
+
export declare const FileSelectionFieldContentContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
4
|
+
export declare const FileSelectionFieldRemoveContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
5
|
+
export declare const FileSelectionFieldRemoveButtonStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
6
|
+
export declare const FileSelectionFieldRemoveButtonCircleIconStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
7
|
+
export declare const FileSelectionFieldIconContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
8
|
+
export declare const FileSelectionFieldFileDataContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
9
|
+
export declare const FileSelectionFieldFileNameCaptionStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<Omit<import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "ref"> & {
|
|
10
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
11
|
+
}, never>> & Omit<import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, keyof import("react").Component<any, {}, any>>;
|
|
12
|
+
export declare const FileSelectionFieldFileSizeCaptionStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<Omit<import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "ref"> & {
|
|
13
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
14
|
+
}, never>> & Omit<import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, keyof import("react").Component<any, {}, any>>;
|
|
15
|
+
export declare const FileSelectionFieldPermissionSelectionContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const JSONDataViewContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
3
|
+
export declare const JSONDataViewHeaderContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
4
|
+
export declare const JSONDataViewColumnHeaderCaptionStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
5
|
+
export declare const JSONDataViewDataContainerCaptionStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
6
|
+
export declare const JSONDataViewDataImageValueStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
7
|
+
export declare const JSONDataViewDataTextValueStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>>;
|
|
8
|
+
export declare const JSONDataViewDataLabelStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import styled from 'styled-components';
|
|
2
2
|
import { backgroundColors, borderColors, fontColors, SSIRoundedEdgesCss } from '@sphereon/ui-components.core';
|
|
3
|
-
import { SSITextH2SemiBoldStyledCss, SSITextH5Css, SSITextH7SemiBoldCss } from '../../../css';
|
|
3
|
+
import { SSITextH2SemiBoldStyledCss, SSITextH5Css, SSITextH7SemiBoldCss } from '../../../css/index.js';
|
|
4
4
|
export const JSONDataViewContainerStyled = styled.div `
|
|
5
5
|
${SSIRoundedEdgesCss};
|
|
6
6
|
display: flex;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import styled from '@mui/material/styles/styled.js';
|
|
2
2
|
import { Pagination, paginationItemClasses } from '@mui/material';
|
|
3
3
|
import { backgroundColors, borderColors, elementColors, fontColors } from '@sphereon/ui-components.core';
|
|
4
4
|
export const PaginationContainerStyled = styled('div') `
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
4
|
-
export declare const
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const PassportPhotoControlContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
3
|
+
export declare const PassportPhotoControlDragAndDropBoxContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
4
|
+
export declare const PassportPhotoControlPassportPhotoContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
5
|
+
export declare const PassportPhotoControlPassportPhotoImageStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, never>>;
|
|
@@ -1,8 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
8
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const ProgressStepIndicatorContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
3
|
+
export declare const ProgressStepIndicatorContentGridContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
4
|
+
export declare const ProgressStepIndicatorStepMarkerCellStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
5
|
+
export declare const ProgressStepIndicatorStepTextCellStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
6
|
+
export declare const ProgressStepIndicatorSpacerLineCellStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
7
|
+
export declare const ProgressStepIndicatorTitleTextStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<Omit<import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "ref"> & {
|
|
8
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
9
|
+
}, never>> & Omit<import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, keyof import("react").Component<any, {}, any>>;
|
|
10
|
+
export declare const ProgressStepIndicatorDescriptionTextStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<Omit<import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "ref"> & {
|
|
11
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
12
|
+
}, never>> & Omit<import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, keyof import("react").Component<any, {}, any>>;
|
|
13
|
+
export declare const ProgressStepIndicatorStepLineStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const SSICheckboxContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<Omit<import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "ref"> & {
|
|
3
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
4
|
+
}, never>> & Omit<import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, keyof import("react").Component<any, {}, any>>;
|
|
5
|
+
export declare const SSICheckboxUnselectedContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
6
|
+
export declare const SSICheckboxSelectedContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
|
|
7
|
+
export declare const SSICheckboxLabelContainerStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("styled-components/dist/types.js").FastOmit<Omit<import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "ref"> & {
|
|
8
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
9
|
+
}, never>, never>> & Omit<import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<Omit<import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "ref"> & {
|
|
10
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
11
|
+
}, never>> & Omit<import("styled-components").IStyledComponent<"web", import("styled-components/dist/types.js").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, keyof import("react").Component<any, {}, any>>, keyof import("react").Component<any, {}, any>>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import styled from 'styled-components';
|
|
2
|
-
import {
|
|
3
|
-
import { SSIFlexDirectionRowViewStyled } from '../../containers';
|
|
2
|
+
import { SSITextH4LightStyled } from '../../../fonts/index.js';
|
|
3
|
+
import { SSIFlexDirectionRowViewStyled } from '../../containers/index.js';
|
|
4
4
|
export const SSICheckboxContainerStyled = styled(SSIFlexDirectionRowViewStyled) `
|
|
5
5
|
align-items: center;
|
|
6
6
|
gap: 10px;
|
|
@@ -19,7 +19,7 @@ export const SSICheckboxSelectedContainerStyled = styled.div `
|
|
|
19
19
|
align-items: center;
|
|
20
20
|
justify-content: center;
|
|
21
21
|
`;
|
|
22
|
-
export const SSICheckboxLabelContainerStyled = styled(
|
|
22
|
+
export const SSICheckboxLabelContainerStyled = styled(SSITextH4LightStyled) `
|
|
23
23
|
display: flex;
|
|
24
24
|
flex-wrap: wrap;
|
|
25
25
|
`;
|