@sphereon/ui-components.ssi-react-native 0.2.1-unstable.97 → 0.3.1-unstable.3

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.
Files changed (32) hide show
  1. package/dist/components/assets/badges/SSICheckmarkBadge/index.js +40 -12
  2. package/dist/components/assets/badges/SSIExclamationMarkBadge/index.js +40 -12
  3. package/dist/components/assets/logos/SSILogo/index.js +15 -10
  4. package/dist/components/assets/logos/SSIPlaceholderLogo/index.js +44 -16
  5. package/dist/components/buttons/PrimaryButton/index.js +16 -11
  6. package/dist/components/buttons/SecondaryButton/index.js +18 -14
  7. package/dist/components/indicators/SSIActivityIndicator/index.js +11 -6
  8. package/dist/components/labels/SSIStatusLabel/index.js +25 -20
  9. package/dist/components/views/SSICredentialCardView/index.js +52 -47
  10. package/dist/components/views/SSICredentialMiniCardView/index.js +14 -9
  11. package/dist/index.js +41 -12
  12. package/dist/styles/components/buttons/index.d.ts +17 -12
  13. package/dist/styles/components/buttons/index.js +13 -6
  14. package/dist/styles/components/components/SSICredentialCardView/index.d.ts +14 -17
  15. package/dist/styles/components/components/SSICredentialCardView/index.js +24 -18
  16. package/dist/styles/components/components/SSICredentialMiniCardView/index.d.ts +2 -5
  17. package/dist/styles/components/components/SSICredentialMiniCardView/index.js +10 -4
  18. package/dist/styles/components/components/SSIStatusLabel/index.d.ts +3 -4
  19. package/dist/styles/components/components/SSIStatusLabel/index.js +12 -6
  20. package/dist/styles/components/components/SecondaryButton/index.d.ts +19 -13
  21. package/dist/styles/components/components/SecondaryButton/index.js +20 -6
  22. package/dist/styles/components/components/index.js +20 -4
  23. package/dist/styles/components/containers/index.d.ts +36 -8
  24. package/dist/styles/components/containers/index.js +14 -8
  25. package/dist/styles/components/index.js +19 -3
  26. package/dist/styles/fonts/index.d.ts +21 -13
  27. package/dist/styles/fonts/index.js +98 -45
  28. package/dist/styles/gradients/index.d.ts +29 -22
  29. package/dist/styles/gradients/index.js +13 -7
  30. package/dist/styles/index.js +20 -4
  31. package/dist/styles/typography.js +64 -61
  32. package/package.json +12 -14
@@ -1,13 +1,18 @@
1
+ /// <reference types="react" />
1
2
  import { TouchableOpacity } from 'react-native';
2
- export declare const SSITouchableOpacityButtonFlexRowStyled: import("styled-components").StyledComponent<typeof TouchableOpacity, any, {}, never>;
3
- export declare const SSIRoundedCenteredLinearGradientStyled: import("styled-components").StyledComponent<typeof import("expo-linear-gradient").LinearGradient, any, {
4
- colors: string[];
5
- start: {
6
- x: number;
7
- y: number;
8
- };
9
- end: {
10
- x: number;
11
- y: number;
12
- };
13
- }, "end" | "start" | "colors">;
3
+ export declare const SSITouchableOpacityButtonFlexRowStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").TouchableOpacityProps & import("react").RefAttributes<TouchableOpacity>, never>>;
4
+ export declare const SSIRoundedCenteredLinearGradientStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<Omit<import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").Substitute<import("react-native").ViewProps & {
5
+ colors: readonly string[];
6
+ locations?: readonly number[] | null | undefined;
7
+ start?: import("expo-linear-gradient").LinearGradientPoint | null | undefined;
8
+ end?: import("expo-linear-gradient").LinearGradientPoint | null | undefined;
9
+ dither?: boolean | undefined;
10
+ } & import("react").RefAttributes<import("expo-linear-gradient").LinearGradient>, import("react-native").ViewProps & {
11
+ colors: readonly string[];
12
+ locations?: readonly number[] | null | undefined;
13
+ start?: import("expo-linear-gradient").LinearGradientPoint | null | undefined;
14
+ end?: import("expo-linear-gradient").LinearGradientPoint | null | undefined;
15
+ dither?: boolean | undefined;
16
+ } & import("react").RefAttributes<import("expo-linear-gradient").LinearGradient>>, never>, never>, "ref"> & {
17
+ ref?: ((instance: import("expo-linear-gradient").LinearGradient | null) => void) | import("react").RefObject<import("expo-linear-gradient").LinearGradient> | null | undefined;
18
+ }, never>, never>>;
@@ -1,12 +1,19 @@
1
- import { TouchableOpacity } from 'react-native';
2
- import styled from 'styled-components/native';
3
- import { SSIRoundedLinearGradient } from '../../gradients';
4
- export const SSITouchableOpacityButtonFlexRowStyled = styled(TouchableOpacity) `
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.SSIRoundedCenteredLinearGradientStyled = exports.SSITouchableOpacityButtonFlexRowStyled = void 0;
7
+ const react_native_1 = require("react-native");
8
+ const native_1 = __importDefault(require("styled-components/native"));
9
+ const gradients_1 = require("../../gradients");
10
+ exports.SSITouchableOpacityButtonFlexRowStyled = (0, native_1.default)(react_native_1.TouchableOpacity) `
5
11
  flex-direction: row;
6
12
  `;
7
- export const SSIRoundedCenteredLinearGradientStyled = styled(SSIRoundedLinearGradient) `
13
+ exports.SSIRoundedCenteredLinearGradientStyled = (0, native_1.default)(gradients_1.SSIRoundedLinearGradient) `
8
14
  align-items: center;
9
15
  justify-content: center;
10
16
  padding: 9px;
11
- width: 180px;
17
+ flex: 1;
18
+ height: 42px;
12
19
  `;
@@ -1,18 +1,15 @@
1
- /// <reference types="styled-components-react-native" />
2
1
  /// <reference types="react" />
3
- export declare const SSICredentialCardViewContainerStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").View, any, {}, never>;
4
- export declare const SSICredentialCardViewHeaderContainerStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").View, any, {}, never>;
5
- export declare const SSICredentialCardViewHeaderLogoContainerStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").View, import("styled-components").DefaultTheme, {}, never>;
6
- export declare const SSICredentialCardViewHeaderTitleContainerStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").View, import("styled-components").DefaultTheme, {}, never>;
7
- export declare const SSICredentialCardViewContentMainContainerStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").View, import("styled-components").DefaultTheme, {}, never>;
8
- export declare const SSICredentialCardViewContentSubContainerStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").View, import("styled-components").DefaultTheme, {}, never>;
9
- export declare const SSICredentialCardViewContentIssueNameContainerStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").View, import("styled-components").DefaultTheme, {}, never>;
10
- export declare const SSICredentialCardViewContentPropertiesContainerStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").View, any, {}, never>;
11
- export declare const SSICredentialCardViewFooterContentContainerStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").View, any, {}, never>;
12
- export declare const SSICredentialCardViewFooterContainerStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").View, import("styled-components").DefaultTheme, {}, never>;
13
- export declare const SSICredentialCardViewCredentialTitleTextStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").Text, any, {}, never>;
14
- export declare const SSICredentialCardViewCredentialSubtitleTextStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").Text, any, {}, never>;
15
- export declare const SSICredentialCardViewStatusContainerStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").View, import("styled-components").DefaultTheme, {}, never>;
16
- export declare const SSICredentialCardViewBackgroundImageStyled: import("styled-components").StyledComponent<import("react").ComponentType<import("react-native-fast-image").FastImageProps> & import("react-native-fast-image").FastImageStaticProperties, any, {
17
- resizeMode: "cover";
18
- }, "resizeMode">;
2
+ export declare const SSICredentialCardViewContainerStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("react-native").ViewProps, never>, never>>;
3
+ export declare const SSICredentialCardViewHeaderContainerStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("react-native").ViewProps, never>, never>>;
4
+ export declare const SSICredentialCardViewHeaderLogoContainerStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").ViewProps, never>>;
5
+ export declare const SSICredentialCardViewHeaderTitleContainerStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").ViewProps, never>>;
6
+ export declare const SSICredentialCardViewContentMainContainerStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").ViewProps, never>>;
7
+ export declare const SSICredentialCardViewContentSubContainerStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").ViewProps, never>>;
8
+ export declare const SSICredentialCardViewContentIssueNameContainerStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").ViewProps, never>>;
9
+ export declare const SSICredentialCardViewContentPropertiesContainerStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("react-native").ViewProps, never>, never>>;
10
+ export declare const SSICredentialCardViewFooterContentContainerStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("react-native").ViewProps, never>, never>>;
11
+ export declare const SSICredentialCardViewFooterContainerStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").ViewProps, never>>;
12
+ export declare const SSICredentialCardViewCredentialTitleTextStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>, never>, never>>;
13
+ export declare const SSICredentialCardViewCredentialSubtitleTextStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>, never>, never>>;
14
+ export declare const SSICredentialCardViewStatusContainerStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").ViewProps, never>>;
15
+ export declare const SSICredentialCardViewBackgroundImageStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").Substitute<import("styled-components/native/dist/types").Substitute<import("styled-components/native/dist/types").Substitute<import("react-native-fast-image").FastImageProps | (import("react-native-fast-image").FastImageProps & import("react").RefAttributes<import("react").Component<import("react-native-fast-image").FastImageProps, any, any>>), import("react-native-fast-image").FastImageProps & import("react").RefAttributes<import("react").Component<import("react-native-fast-image").FastImageProps, any, any>>>, import("styled-components/native/dist/types").BaseObject> | import("styled-components/native/dist/types").Substitute<import("styled-components/native/dist/types").Substitute<import("react-native-fast-image").FastImageProps | (import("react-native-fast-image").FastImageProps & import("react").RefAttributes<import("react").Component<import("react-native-fast-image").FastImageProps, any, any>>), import("react-native-fast-image").FastImageProps>, import("styled-components/native/dist/types").BaseObject>, import("styled-components/native/dist/types").BaseObject>>;
@@ -1,56 +1,62 @@
1
- import styled from 'styled-components/native';
2
- import FastImage from 'react-native-fast-image';
3
- import { SSIFlexDirectionRowViewStyled, SSIRoundedContainerStyled } from '../../containers';
4
- import { SSITextH4SemiBoldLightStyled, SSITextH5LightStyled } from '../../../fonts';
5
- export const SSICredentialCardViewContainerStyled = styled(SSIRoundedContainerStyled) `
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.SSICredentialCardViewBackgroundImageStyled = exports.SSICredentialCardViewStatusContainerStyled = exports.SSICredentialCardViewCredentialSubtitleTextStyled = exports.SSICredentialCardViewCredentialTitleTextStyled = exports.SSICredentialCardViewFooterContainerStyled = exports.SSICredentialCardViewFooterContentContainerStyled = exports.SSICredentialCardViewContentPropertiesContainerStyled = exports.SSICredentialCardViewContentIssueNameContainerStyled = exports.SSICredentialCardViewContentSubContainerStyled = exports.SSICredentialCardViewContentMainContainerStyled = exports.SSICredentialCardViewHeaderTitleContainerStyled = exports.SSICredentialCardViewHeaderLogoContainerStyled = exports.SSICredentialCardViewHeaderContainerStyled = exports.SSICredentialCardViewContainerStyled = void 0;
7
+ const native_1 = __importDefault(require("styled-components/native"));
8
+ const react_native_fast_image_1 = __importDefault(require("react-native-fast-image"));
9
+ const containers_1 = require("../../containers");
10
+ const fonts_1 = require("../../../fonts");
11
+ exports.SSICredentialCardViewContainerStyled = (0, native_1.default)(containers_1.SSIRoundedContainerStyled) `
6
12
  width: 327px;
7
13
  height: 186px;
8
14
  `;
9
- export const SSICredentialCardViewHeaderContainerStyled = styled(SSIFlexDirectionRowViewStyled) `
15
+ exports.SSICredentialCardViewHeaderContainerStyled = (0, native_1.default)(containers_1.SSIFlexDirectionRowViewStyled) `
10
16
  height: 32px;
11
17
  margin-top: 16px;
12
18
  `;
13
- export const SSICredentialCardViewHeaderLogoContainerStyled = styled.View `
19
+ exports.SSICredentialCardViewHeaderLogoContainerStyled = native_1.default.View `
14
20
  margin: 0 12px 0 9px;
15
21
  `;
16
- export const SSICredentialCardViewHeaderTitleContainerStyled = styled.View `
22
+ exports.SSICredentialCardViewHeaderTitleContainerStyled = native_1.default.View `
17
23
  flex: 1;
18
24
  margin: 0 13px 0 auto;
19
25
  `;
20
- export const SSICredentialCardViewContentMainContainerStyled = styled.View `
26
+ exports.SSICredentialCardViewContentMainContainerStyled = native_1.default.View `
21
27
  flex: 1;
22
28
  `;
23
- export const SSICredentialCardViewContentSubContainerStyled = styled.View `
29
+ exports.SSICredentialCardViewContentSubContainerStyled = native_1.default.View `
24
30
  margin-top: auto;
25
31
  `;
26
- export const SSICredentialCardViewContentIssueNameContainerStyled = styled.View `
32
+ exports.SSICredentialCardViewContentIssueNameContainerStyled = native_1.default.View `
27
33
  padding: 2px 9px 2px 12px;
28
34
  `;
29
- export const SSICredentialCardViewContentPropertiesContainerStyled = styled(SSIFlexDirectionRowViewStyled) `
35
+ exports.SSICredentialCardViewContentPropertiesContainerStyled = (0, native_1.default)(containers_1.SSIFlexDirectionRowViewStyled) `
30
36
  justify-content: flex-start;
31
37
  margin: 1px 0;
32
38
  padding: 2px 9px 4px 12px;
33
39
  `;
34
- export const SSICredentialCardViewFooterContentContainerStyled = styled(SSIFlexDirectionRowViewStyled) `
40
+ exports.SSICredentialCardViewFooterContentContainerStyled = (0, native_1.default)(containers_1.SSIFlexDirectionRowViewStyled) `
35
41
  padding: 11px 12px;
36
42
  background-color: transparent;
37
43
  `;
38
- export const SSICredentialCardViewFooterContainerStyled = styled.View `
44
+ exports.SSICredentialCardViewFooterContainerStyled = native_1.default.View `
39
45
  height: 39px;
40
46
  margin-top: auto;
41
47
  overflow: hidden;
42
48
  `;
43
- export const SSICredentialCardViewCredentialTitleTextStyled = styled(SSITextH4SemiBoldLightStyled) `
49
+ exports.SSICredentialCardViewCredentialTitleTextStyled = (0, native_1.default)(fonts_1.SSITextH4SemiBoldLightStyled) `
44
50
  flex: 1;
45
51
  text-align: right;
46
52
  `;
47
- export const SSICredentialCardViewCredentialSubtitleTextStyled = styled(SSITextH5LightStyled) `
53
+ exports.SSICredentialCardViewCredentialSubtitleTextStyled = (0, native_1.default)(fonts_1.SSITextH5LightStyled) `
48
54
  text-align: right;
49
55
  `;
50
- export const SSICredentialCardViewStatusContainerStyled = styled.View `
56
+ exports.SSICredentialCardViewStatusContainerStyled = native_1.default.View `
51
57
  margin-left: auto;
52
58
  `;
53
- export const SSICredentialCardViewBackgroundImageStyled = styled(FastImage).attrs({
59
+ exports.SSICredentialCardViewBackgroundImageStyled = (0, native_1.default)(react_native_fast_image_1.default).attrs({
54
60
  resizeMode: 'cover',
55
61
  }) `
56
62
  flex: 1;
@@ -1,6 +1,3 @@
1
- /// <reference types="styled-components-react-native" />
2
1
  /// <reference types="react" />
3
- export declare const SSICredentialMiniCardViewContainerStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").View, import("styled-components").DefaultTheme, {}, never>;
4
- export declare const SSICredentialMiniCardViewBackgroundImageStyled: import("styled-components").StyledComponent<import("react").ComponentType<import("react-native-fast-image").FastImageProps> & import("react-native-fast-image").FastImageStaticProperties, any, {
5
- resizeMode: "cover";
6
- }, "resizeMode">;
2
+ export declare const SSICredentialMiniCardViewContainerStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").ViewProps, never>>;
3
+ export declare const SSICredentialMiniCardViewBackgroundImageStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").Substitute<import("styled-components/native/dist/types").Substitute<import("styled-components/native/dist/types").Substitute<import("react-native-fast-image").FastImageProps | (import("react-native-fast-image").FastImageProps & import("react").RefAttributes<import("react").Component<import("react-native-fast-image").FastImageProps, any, any>>), import("react-native-fast-image").FastImageProps & import("react").RefAttributes<import("react").Component<import("react-native-fast-image").FastImageProps, any, any>>>, import("styled-components/native/dist/types").BaseObject> | import("styled-components/native/dist/types").Substitute<import("styled-components/native/dist/types").Substitute<import("react-native-fast-image").FastImageProps | (import("react-native-fast-image").FastImageProps & import("react").RefAttributes<import("react").Component<import("react-native-fast-image").FastImageProps, any, any>>), import("react-native-fast-image").FastImageProps>, import("styled-components/native/dist/types").BaseObject>, import("styled-components/native/dist/types").BaseObject>>;
@@ -1,12 +1,18 @@
1
- import styled from 'styled-components/native';
2
- import FastImage from 'react-native-fast-image';
3
- export const SSICredentialMiniCardViewContainerStyled = styled.View `
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.SSICredentialMiniCardViewBackgroundImageStyled = exports.SSICredentialMiniCardViewContainerStyled = void 0;
7
+ const native_1 = __importDefault(require("styled-components/native"));
8
+ const react_native_fast_image_1 = __importDefault(require("react-native-fast-image"));
9
+ exports.SSICredentialMiniCardViewContainerStyled = native_1.default.View `
4
10
  width: 75px;
5
11
  height: 50px;
6
12
  border-radius: 4.6px;
7
13
  overflow: hidden;
8
14
  `;
9
- export const SSICredentialMiniCardViewBackgroundImageStyled = styled(FastImage).attrs({
15
+ exports.SSICredentialMiniCardViewBackgroundImageStyled = (0, native_1.default)(react_native_fast_image_1.default).attrs({
10
16
  resizeMode: 'cover',
11
17
  }) `
12
18
  flex: 1;
@@ -1,4 +1,3 @@
1
- /// <reference types="styled-components-react-native" />
2
- export declare const SSIStatusLabelContainerStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").View, any, {}, never>;
3
- export declare const SSIStatusLabelStatusCaptionStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").Text, any, {}, never>;
4
- export declare const SSIStatusLabelBadgeContainer: import("styled-components").StyledComponent<typeof import("react-native/types/index").View, import("styled-components").DefaultTheme, {}, never>;
1
+ export declare const SSIStatusLabelContainerStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("react-native").ViewProps, never>, never>>;
2
+ export declare const SSIStatusLabelStatusCaptionStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>, never>, never>>;
3
+ export declare const SSIStatusLabelBadgeContainer: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").ViewProps, never>>;
@@ -1,7 +1,13 @@
1
- import styled from 'styled-components/native';
2
- import { SSIFlexDirectionRowViewStyled } from '../../containers';
3
- import { SSITextH5LightStyled } from '../../../fonts';
4
- export const SSIStatusLabelContainerStyled = styled(SSIFlexDirectionRowViewStyled) `
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.SSIStatusLabelBadgeContainer = exports.SSIStatusLabelStatusCaptionStyled = exports.SSIStatusLabelContainerStyled = void 0;
7
+ const native_1 = __importDefault(require("styled-components/native"));
8
+ const containers_1 = require("../../containers");
9
+ const fonts_1 = require("../../../fonts");
10
+ exports.SSIStatusLabelContainerStyled = (0, native_1.default)(containers_1.SSIFlexDirectionRowViewStyled) `
5
11
  border-radius: 9px;
6
12
  border-width: 1px;
7
13
  /*
@@ -11,11 +17,11 @@ export const SSIStatusLabelContainerStyled = styled(SSIFlexDirectionRowViewStyle
11
17
  */
12
18
  align-self: baseline;
13
19
  `;
14
- export const SSIStatusLabelStatusCaptionStyled = styled(SSITextH5LightStyled) `
20
+ exports.SSIStatusLabelStatusCaptionStyled = (0, native_1.default)(fonts_1.SSITextH5LightStyled) `
15
21
  margin-left: 7px;
16
22
  margin-right: 7px;
17
23
  `;
18
- export const SSIStatusLabelBadgeContainer = styled.View `
24
+ exports.SSIStatusLabelBadgeContainer = native_1.default.View `
19
25
  margin-top: auto;
20
26
  margin-bottom: auto;
21
27
  `;
@@ -1,13 +1,19 @@
1
- /// <reference types="styled-components-react-native" />
2
- export declare const SecondaryButtonMaskContainerStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").View, import("styled-components").DefaultTheme, {}, never>;
3
- export declare const SecondaryButtonLinearGradientStyled: import("styled-components").StyledComponent<typeof import("expo-linear-gradient").LinearGradient, any, {
4
- colors: string[];
5
- start: {
6
- x: number;
7
- y: number;
8
- };
9
- end: {
10
- x: number;
11
- y: number;
12
- };
13
- }, "end" | "start" | "colors">;
1
+ /// <reference types="react" />
2
+ import MaskedView from '@react-native-masked-view/masked-view';
3
+ export declare const SecondaryButtonMaskContainerStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").ViewProps, never>>;
4
+ export declare const SecondaryButtonLinearGradientStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<Omit<import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").Substitute<import("react-native").ViewProps & {
5
+ colors: readonly string[];
6
+ locations?: readonly number[] | null | undefined;
7
+ start?: import("expo-linear-gradient").LinearGradientPoint | null | undefined;
8
+ end?: import("expo-linear-gradient").LinearGradientPoint | null | undefined;
9
+ dither?: boolean | undefined;
10
+ } & import("react").RefAttributes<import("expo-linear-gradient").LinearGradient>, import("react-native").ViewProps & {
11
+ colors: readonly string[];
12
+ locations?: readonly number[] | null | undefined;
13
+ start?: import("expo-linear-gradient").LinearGradientPoint | null | undefined;
14
+ end?: import("expo-linear-gradient").LinearGradientPoint | null | undefined;
15
+ dither?: boolean | undefined;
16
+ } & import("react").RefAttributes<import("expo-linear-gradient").LinearGradient>>, never>, never>, "ref"> & {
17
+ ref?: ((instance: import("expo-linear-gradient").LinearGradient | null) => void) | import("react").RefObject<import("expo-linear-gradient").LinearGradient> | null | undefined;
18
+ }, never>>;
19
+ export declare const SecondaryButtonMaskedViewStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("@react-native-masked-view/masked-view").MaskedViewProps & import("react").RefAttributes<MaskedView>, never>>;
@@ -1,16 +1,30 @@
1
- import styled from 'styled-components/native';
2
- import { SSILinearGradientStyled } from '../../../gradients';
3
- export const SecondaryButtonMaskContainerStyled = styled.View `
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.SecondaryButtonMaskedViewStyled = exports.SecondaryButtonLinearGradientStyled = exports.SecondaryButtonMaskContainerStyled = void 0;
7
+ const native_1 = __importDefault(require("styled-components/native"));
8
+ const masked_view_1 = __importDefault(require("@react-native-masked-view/masked-view"));
9
+ const ui_components_core_1 = require("@sphereon/ui-components.core");
10
+ const gradients_1 = require("../../../gradients");
11
+ exports.SecondaryButtonMaskContainerStyled = native_1.default.View `
12
+ ${ui_components_core_1.SSIRoundedEdgesCss};
4
13
  background-color: transparent;
5
14
  flex: 1;
6
15
  border-width: 1px;
7
- border-radius: 8px;
8
16
  align-items: center;
9
17
  justify-content: center;
18
+ height: 42px;
10
19
  `;
11
- export const SecondaryButtonLinearGradientStyled = styled(SSILinearGradientStyled) `
20
+ exports.SecondaryButtonLinearGradientStyled = (0, native_1.default)(gradients_1.SSILinearGradientStyled) `
12
21
  align-items: center;
13
22
  justify-content: center;
14
23
  padding: 9px;
15
- width: 180px;
24
+ flex: 1;
25
+ height: 42px;
26
+ `;
27
+ exports.SecondaryButtonMaskedViewStyled = (0, native_1.default)(masked_view_1.default) `
28
+ flex: 1;
29
+ height: 42px;
16
30
  `;
@@ -1,4 +1,20 @@
1
- export * from './SSICredentialCardView';
2
- export * from './SSICredentialMiniCardView';
3
- export * from './SSIStatusLabel';
4
- export * from './SecondaryButton';
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./SSICredentialCardView"), exports);
18
+ __exportStar(require("./SSICredentialMiniCardView"), exports);
19
+ __exportStar(require("./SSIStatusLabel"), exports);
20
+ __exportStar(require("./SecondaryButton"), exports);
@@ -1,9 +1,37 @@
1
- /// <reference types="styled-components-react-native" />
2
1
  /// <reference types="react" />
3
- export declare const SSIAlphaContainerStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").View, import("styled-components").DefaultTheme, {}, never>;
4
- export declare const SSIBlurredContainerStyled: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@react-native-community/blur").BlurViewProps & import("react").RefAttributes<import("react-native/types/index").View>>, any, {
5
- blurType: "light";
6
- blurAmount: 3;
7
- }, "blurType" | "blurAmount">;
8
- export declare const SSIFlexDirectionRowViewStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").View, import("styled-components").DefaultTheme, {}, never>;
9
- export declare const SSIRoundedContainerStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").View, import("styled-components").DefaultTheme, {}, never>;
2
+ export declare const SSIAlphaContainerStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").ViewProps, never>>;
3
+ export declare const SSIBlurredContainerStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").Substitute<import("styled-components/native/dist/types").Substitute<import("styled-components/native/dist/types").Substitute<(Omit<import("react-native").ViewProps & {
4
+ blurType?: ("dark" | "light" | "regular" | "xlight" | "prominent" | "extraDark" | "chromeMaterial" | "material" | "thickMaterial" | "thinMaterial" | "ultraThinMaterial" | "chromeMaterialDark" | "materialDark" | "thickMaterialDark" | "thinMaterialDark" | "ultraThinMaterialDark" | "chromeMaterialLight" | "materialLight" | "thickMaterialLight" | "thinMaterialLight" | "ultraThinMaterialLight") | undefined;
5
+ blurAmount?: number | undefined;
6
+ reducedTransparencyFallbackColor?: string | undefined;
7
+ } & import("react").RefAttributes<import("react-native").View>, "ref"> & {
8
+ ref?: ((instance: import("react-native").View | null) => void) | import("react").RefObject<import("react-native").View> | null | undefined;
9
+ }) | (Omit<import("react-native").ViewProps & {
10
+ blurAmount?: number | undefined;
11
+ blurType?: "dark" | "light" | "xlight" | undefined;
12
+ blurRadius?: number | undefined;
13
+ downsampleFactor?: number | undefined;
14
+ overlayColor?: string | undefined;
15
+ enabled?: boolean | undefined;
16
+ autoUpdate?: boolean | undefined;
17
+ } & import("react").RefAttributes<import("react-native").View>, "ref"> & {
18
+ ref?: ((instance: import("react-native").View | null) => void) | import("react").RefObject<import("react-native").View> | null | undefined;
19
+ }), (Omit<import("react-native").ViewProps & {
20
+ blurType?: ("dark" | "light" | "regular" | "xlight" | "prominent" | "extraDark" | "chromeMaterial" | "material" | "thickMaterial" | "thinMaterial" | "ultraThinMaterial" | "chromeMaterialDark" | "materialDark" | "thickMaterialDark" | "thinMaterialDark" | "ultraThinMaterialDark" | "chromeMaterialLight" | "materialLight" | "thickMaterialLight" | "thinMaterialLight" | "ultraThinMaterialLight") | undefined;
21
+ blurAmount?: number | undefined;
22
+ reducedTransparencyFallbackColor?: string | undefined;
23
+ } & import("react").RefAttributes<import("react-native").View>, "ref"> & {
24
+ ref?: ((instance: import("react-native").View | null) => void) | import("react").RefObject<import("react-native").View> | null | undefined;
25
+ }) | (Omit<import("react-native").ViewProps & {
26
+ blurAmount?: number | undefined;
27
+ blurType?: "dark" | "light" | "xlight" | undefined;
28
+ blurRadius?: number | undefined;
29
+ downsampleFactor?: number | undefined;
30
+ overlayColor?: string | undefined;
31
+ enabled?: boolean | undefined;
32
+ autoUpdate?: boolean | undefined;
33
+ } & import("react").RefAttributes<import("react-native").View>, "ref"> & {
34
+ ref?: ((instance: import("react-native").View | null) => void) | import("react").RefObject<import("react-native").View> | null | undefined;
35
+ })>, import("styled-components/native/dist/types").BaseObject>, import("styled-components/native/dist/types").BaseObject>>;
36
+ export declare const SSIFlexDirectionRowViewStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").ViewProps, never>>;
37
+ export declare const SSIRoundedContainerStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").ViewProps, never>>;
@@ -1,21 +1,27 @@
1
- import { BlurView } from '@react-native-community/blur';
2
- import styled from 'styled-components/native';
3
- import { SSIRoundedEdgesCss } from '@sphereon/ui-components.core';
4
- export const SSIAlphaContainerStyled = styled.View `
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.SSIRoundedContainerStyled = exports.SSIFlexDirectionRowViewStyled = exports.SSIBlurredContainerStyled = exports.SSIAlphaContainerStyled = void 0;
7
+ const blur_1 = require("@react-native-community/blur");
8
+ const native_1 = __importDefault(require("styled-components/native"));
9
+ const ui_components_core_1 = require("@sphereon/ui-components.core");
10
+ exports.SSIAlphaContainerStyled = native_1.default.View `
5
11
  flex: 1;
6
12
  background-color: rgba(0, 0, 0, 0.2);
7
13
  `;
8
- export const SSIBlurredContainerStyled = styled(BlurView).attrs({
14
+ exports.SSIBlurredContainerStyled = (0, native_1.default)(blur_1.BlurView).attrs({
9
15
  blurType: 'light',
10
16
  blurAmount: 3,
11
17
  }) `
12
18
  flex: 1;
13
19
  background-color: rgba(255, 255, 255, 0.25);
14
20
  `;
15
- export const SSIFlexDirectionRowViewStyled = styled.View `
21
+ exports.SSIFlexDirectionRowViewStyled = native_1.default.View `
16
22
  flex-direction: row;
17
23
  `;
18
- export const SSIRoundedContainerStyled = styled.View `
19
- ${SSIRoundedEdgesCss};
24
+ exports.SSIRoundedContainerStyled = native_1.default.View `
25
+ ${ui_components_core_1.SSIRoundedEdgesCss};
20
26
  overflow: hidden;
21
27
  `;
@@ -1,3 +1,19 @@
1
- export * from './containers';
2
- export * from './components';
3
- export * from './buttons';
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./containers"), exports);
18
+ __exportStar(require("./components"), exports);
19
+ __exportStar(require("./buttons"), exports);
@@ -1,13 +1,21 @@
1
- /// <reference types="styled-components-react-native" />
2
- export declare const SSITextH2Styled: import("styled-components").StyledComponent<typeof import("react-native/types/index").Text, import("styled-components").DefaultTheme, {}, never>;
3
- export declare const SSITextH2LightStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").Text, any, {}, never>;
4
- export declare const SSITextH2SecondaryButtonStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").Text, any, {}, never>;
5
- export declare const SSITextH4Styled: import("styled-components").StyledComponent<typeof import("react-native/types/index").Text, import("styled-components").DefaultTheme, {}, never>;
6
- export declare const SSITextH4SemiBoldStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").Text, import("styled-components").DefaultTheme, {}, never>;
7
- export declare const SSITextH4LightStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").Text, any, {}, never>;
8
- export declare const SSITextH4SemiBoldLightStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").Text, any, {}, never>;
9
- export declare const SSITextH5Styled: import("styled-components").StyledComponent<typeof import("react-native/types/index").Text, import("styled-components").DefaultTheme, {}, never>;
10
- export declare const SSITextH5LightStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").Text, any, {}, never>;
11
- export declare const SSITextH6Styled: import("styled-components").StyledComponent<typeof import("react-native/types/index").Text, import("styled-components").DefaultTheme, {}, never>;
12
- export declare const SSITextH6LightStyled: import("styled-components").StyledComponent<typeof import("react-native/types/index").Text, any, {}, never>;
13
- export declare const Text64Styled: import("styled-components").StyledComponent<typeof import("react-native/types/index").Text, import("styled-components").DefaultTheme, {}, never>;
1
+ export declare const SSITextH1SemiBoldStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>>;
2
+ export declare const SSITextH1SemiBoldLightStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>, never>>;
3
+ export declare const SSITextH2Styled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>>;
4
+ export declare const SSITextH2LightStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>, never>>;
5
+ export declare const SSITextH2SemiBoldStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>>;
6
+ export declare const SSITextH2SemiBoldLightStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>, never>>;
7
+ export declare const SSITextH2SecondaryButtonStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>, never>>;
8
+ export declare const SSITextH3Styled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>>;
9
+ export declare const SSITextH3LightStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>, never>>;
10
+ export declare const SSITextH3SemiBoldStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>>;
11
+ export declare const SSITextH4Styled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>>;
12
+ export declare const SSITextH4SemiBoldStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>>;
13
+ export declare const SSITextH4LightStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>, never>>;
14
+ export declare const SSITextH4SemiBoldLightStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>, never>>;
15
+ export declare const SSITextH5Styled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>>;
16
+ export declare const SSITextH5LightStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>, never>>;
17
+ export declare const SSITextH6Styled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>>;
18
+ export declare const SSITextH6LightStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>, never>>;
19
+ export declare const Text64Styled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>>;
20
+ export declare const SSITextH7Styled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>>;
21
+ export declare const SSITextH7LightStyled: import("styled-components/native").IStyledComponent<"native", import("styled-components/native/dist/types").FastOmit<import("styled-components/native/dist/types").FastOmit<import("react-native").TextProps, never>, never>>;