@sphereon/ui-components.ssi-react 0.1.3-unstable.115 → 0.1.3-unstable.116
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/styles/components/components/DropDownList/index.d.ts +0 -1
- package/dist/styles/components/components/DropDownList/index.js +0 -5
- package/dist/styles/components/components/DropDownListItem/index.js +3 -10
- package/dist/styles/fonts/index.d.ts +1 -0
- package/dist/styles/fonts/index.js +3 -0
- package/package.json +3 -3
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
export declare const DropDownListContainerStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
|
-
export declare const SSIDropDownListSelectedValueStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
2
|
export declare const DropDownListButtonStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
4
3
|
export declare const DropDownContainerStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import styled from 'styled-components';
|
|
2
2
|
import { SSIFlexDirectionRowViewStyled } from '../../containers';
|
|
3
|
-
import { SSITextH3Styled } from '../../../fonts';
|
|
4
|
-
import { gradient100TextCss } from '../../../css';
|
|
5
3
|
import { backgroundColors } from '@sphereon/ui-components.core';
|
|
6
4
|
export const DropDownListContainerStyled = styled(SSIFlexDirectionRowViewStyled) `
|
|
7
5
|
position: relative;
|
|
@@ -10,9 +8,6 @@ export const DropDownListContainerStyled = styled(SSIFlexDirectionRowViewStyled)
|
|
|
10
8
|
align-items: center;
|
|
11
9
|
gap: 2px;
|
|
12
10
|
`;
|
|
13
|
-
export const SSIDropDownListSelectedValueStyled = styled(SSITextH3Styled) `
|
|
14
|
-
${gradient100TextCss}
|
|
15
|
-
`;
|
|
16
11
|
export const DropDownListButtonStyled = styled.div `
|
|
17
12
|
display: inline-block !important;
|
|
18
13
|
`;
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import styled from 'styled-components';
|
|
2
2
|
import { SSIFlexDirectionRowViewStyled } from '../../containers';
|
|
3
|
-
import {
|
|
4
|
-
import { backgroundColors
|
|
5
|
-
import { fontStyle } from '../../../typography';
|
|
3
|
+
import { SSITextH2DarkStyled } from '../../../fonts';
|
|
4
|
+
import { backgroundColors } from '@sphereon/ui-components.core';
|
|
6
5
|
export const DropDownListItemContainerStyled = styled(SSIFlexDirectionRowViewStyled) `
|
|
7
6
|
flex-direction: row;
|
|
8
7
|
align-items: center;
|
|
9
8
|
background-color: ${backgroundColors.primaryLight};
|
|
10
9
|
padding: 10px 16px;
|
|
11
10
|
`;
|
|
12
|
-
export const DropDownListItemCaptionContainerStyled = styled(
|
|
11
|
+
export const DropDownListItemCaptionContainerStyled = styled(SSITextH2DarkStyled) `
|
|
13
12
|
flex: 1;
|
|
14
13
|
margin-right: 8px;
|
|
15
|
-
color: ${fontColors.dark};
|
|
16
|
-
font-family: ${fontStyle.h2Regular.fontFamily};
|
|
17
|
-
font-size: ${fontStyle.h2Regular.fontSize}px;
|
|
18
|
-
font-weight: ${fontStyle.h2Regular.fontWeight};
|
|
19
|
-
line-height: ${fontStyle.h2Regular.lineHeight}px;
|
|
20
|
-
height: auto;
|
|
21
14
|
`;
|
|
22
15
|
export const DropDownListItemIconContainerStyled = styled.div `
|
|
23
16
|
display: flex;
|
|
@@ -2,6 +2,7 @@ export declare const SSITextH1Styled: import("styled-components").StyledComponen
|
|
|
2
2
|
export declare const SSITextH1SemiBoldStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
3
|
export declare const SSITextH1SemiBoldLightStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
4
4
|
export declare const SSITextH2Styled: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
5
|
+
export declare const SSITextH2DarkStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
5
6
|
export declare const SSITextH2SemiBoldStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
6
7
|
export declare const SSITextH3Styled: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
7
8
|
export declare const SSITextH3LightStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -13,6 +13,9 @@ export const SSITextH1SemiBoldLightStyled = styled(SSITextH1SemiBoldStyled) `
|
|
|
13
13
|
export const SSITextH2Styled = styled.div `
|
|
14
14
|
${SSITextH2Css}
|
|
15
15
|
`;
|
|
16
|
+
export const SSITextH2DarkStyled = styled(SSITextH2Styled) `
|
|
17
|
+
color: ${fontColors.dark};
|
|
18
|
+
`;
|
|
16
19
|
export const SSITextH2SemiBoldStyled = styled.div `
|
|
17
20
|
${SSITextH2SemiBoldStyledCss}
|
|
18
21
|
`;
|
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.
|
|
4
|
+
"version": "0.1.3-unstable.116+6f6ddbd",
|
|
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,7 @@
|
|
|
28
28
|
"access": "public"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@sphereon/ui-components.core": "0.1.3-unstable.
|
|
31
|
+
"@sphereon/ui-components.core": "0.1.3-unstable.116+6f6ddbd",
|
|
32
32
|
"@tanstack/react-table": "^8.9.3",
|
|
33
33
|
"react-loader-spinner": "^5.4.5",
|
|
34
34
|
"react-toastify": "^9.1.3",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"react": ">= 16.8.0"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "6f6ddbd86774629d40dcab776b5c35ee980941af"
|
|
46
46
|
}
|