@gataca/design-system 1.0.28 → 1.0.30
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/index.native.d.ts +4 -0
- package/dist/components/index.web.d.ts +4 -0
- package/dist/components/native/Buttons/ButtonIcon/ButtonIcon.types.native.d.ts +2 -6
- package/dist/components/native/Cards/MiniCredential/miniCredential_styles.native.d.ts +2 -0
- package/dist/components/native/Icons/icons/briefcase.d.ts +8 -0
- package/dist/components/native/Icons/icons/issuanceActivity.d.ts +8 -0
- package/dist/components/native/Icons/icons/products.d.ts +8 -0
- package/dist/components/native/Icons/icons/verificationActivity.d.ts +8 -0
- package/dist/components/native/Icons/index.native.d.ts +4 -0
- package/dist/components/native/Lists/ListItem/listItem_types.native.d.ts +2 -1
- package/dist/components/web/Buttons/ButtonIcon/ButtonIcon.types.web.d.ts +2 -7
- package/dist/components/web/Icons/icons/briefcase.d.ts +8 -0
- package/dist/components/web/Icons/icons/issuanceActivity.d.ts +8 -0
- package/dist/components/web/Icons/icons/products.d.ts +8 -0
- package/dist/components/web/Icons/icons/verificationActivity.d.ts +8 -0
- package/dist/components/web/Icons/index.web.d.ts +4 -0
- package/dist/components/web/Lists/ListItem/listItem_types.web.d.ts +2 -1
- package/dist/index.native.js +1 -1
- package/dist/index.native.js.map +1 -1
- package/dist/index.web.js +1 -1
- package/dist/index.web.js.map +1 -1
- package/package.json +1 -1
|
@@ -53,6 +53,10 @@ export { default as UsersV2Icon } from './native/Icons/icons/withSelectedState/u
|
|
|
53
53
|
export { default as AwardIcon } from './native/Icons/icons/withSelectedState/award';
|
|
54
54
|
export { default as ComingSoonIcon } from './native/Icons/icons/withSelectedState/comingSoon';
|
|
55
55
|
export { default as VerificationIcon } from './native/Icons/icons/withSelectedState/verification';
|
|
56
|
+
export { default as VerificationActivityIcon } from './native/Icons/icons/verificationActivity';
|
|
57
|
+
export { default as IssuanceActivityIcon } from './native/Icons/icons/issuanceActivity';
|
|
58
|
+
export { default as BriefcaseIcon } from './native/Icons/icons/briefcase';
|
|
59
|
+
export { default as ProductsIcon } from './native/Icons/icons/products';
|
|
56
60
|
export { default as ServicesLinkedIcon } from './native/Icons/icons/withSelectedState/servicesLinked';
|
|
57
61
|
export { default as IdIcon } from './native/Icons/icons/withSelectedState/id';
|
|
58
62
|
export { default as WalletIcon } from './native/Icons/icons/withSelectedState/wallet';
|
|
@@ -47,6 +47,10 @@ export { default as UsersV2Icon } from './web/Icons/icons/withSelectedState/user
|
|
|
47
47
|
export { default as AwardIcon } from './web/Icons/icons/withSelectedState/award';
|
|
48
48
|
export { default as ComingSoonIcon } from './web/Icons/icons/withSelectedState/comingSoon';
|
|
49
49
|
export { default as VerificationIcon } from './web/Icons/icons/withSelectedState/verification';
|
|
50
|
+
export { default as VerificationActivityIcon } from './web/Icons/icons/verificationActivity';
|
|
51
|
+
export { default as IssuanceActivityIcon } from './web/Icons/icons/issuanceActivity';
|
|
52
|
+
export { default as BriefcaseIcon } from './web/Icons/icons/briefcase';
|
|
53
|
+
export { default as ProductsIcon } from './web/Icons/icons/products';
|
|
50
54
|
export { default as ServicesLinkedIcon } from './web/Icons/icons/withSelectedState/servicesLinked';
|
|
51
55
|
export { default as IdIcon } from './web/Icons/icons/withSelectedState/id';
|
|
52
56
|
export { default as WalletIcon } from './web/Icons/icons/withSelectedState/wallet';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IconSize, IconStyle } from '../../Icons/icon_types';
|
|
2
|
-
import {
|
|
2
|
+
import { IndicatorProps } from '../../Indicator/Indicator/indicator_types.native';
|
|
3
3
|
export type ButtonIconColor = 'yellow' | 'red' | 'grey' | 'lightGrey' | 'white' | 'purple' | 'lightPurple' | 'green' | 'blue' | 'teal' | 'lightTeal' | 'pink' | 'lightPink';
|
|
4
4
|
export type ButtonIconState = 'enable' | 'hover' | 'disable';
|
|
5
5
|
export type ButtonIconStyle = 'square' | 'round';
|
|
@@ -19,11 +19,7 @@ export interface ButtonIconProps {
|
|
|
19
19
|
}>;
|
|
20
20
|
iconColor?: string;
|
|
21
21
|
showIndicator?: boolean;
|
|
22
|
-
indicator?:
|
|
23
|
-
id?: string;
|
|
24
|
-
quantity?: number;
|
|
25
|
-
color?: IndicatorColor;
|
|
26
|
-
};
|
|
22
|
+
indicator?: IndicatorProps;
|
|
27
23
|
showStroke?: boolean;
|
|
28
24
|
containerStyle?: any;
|
|
29
25
|
onPress?: (x?: any) => void;
|
|
@@ -7,6 +7,7 @@ export declare const styles: (credIsWhite: boolean, colors: ColorsType, fontStyl
|
|
|
7
7
|
backgroundColor: string;
|
|
8
8
|
borderRadius: number;
|
|
9
9
|
alignSelf: "stretch";
|
|
10
|
+
overflow: "visible";
|
|
10
11
|
width: number;
|
|
11
12
|
height: number;
|
|
12
13
|
justifyContent: "flex-start" | "flex-end";
|
|
@@ -18,6 +19,7 @@ export declare const styles: (credIsWhite: boolean, colors: ColorsType, fontStyl
|
|
|
18
19
|
paddingVertical: number;
|
|
19
20
|
paddingHorizontal: number;
|
|
20
21
|
display: "flex";
|
|
22
|
+
overflow: "visible";
|
|
21
23
|
flexDirection: "column";
|
|
22
24
|
borderRadius: number;
|
|
23
25
|
justifyContent: "flex-start" | "flex-end";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IconSize } from '../icon_types';
|
|
2
|
+
type IssuanceActivityIconProps = {
|
|
3
|
+
id?: string;
|
|
4
|
+
size: IconSize;
|
|
5
|
+
color?: string;
|
|
6
|
+
};
|
|
7
|
+
declare const IssuanceActivityIcon: (props: IssuanceActivityIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default IssuanceActivityIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IconSize } from '../icon_types';
|
|
2
|
+
type VerificationActivityIconProps = {
|
|
3
|
+
id?: string;
|
|
4
|
+
size: IconSize;
|
|
5
|
+
color?: string;
|
|
6
|
+
};
|
|
7
|
+
declare const VerificationActivityIcon: (props: VerificationActivityIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default VerificationActivityIcon;
|
|
@@ -16,6 +16,10 @@ export { default as UsersV2Icon } from './icons/withSelectedState/users';
|
|
|
16
16
|
export { default as AwardIcon } from './icons/withSelectedState/award';
|
|
17
17
|
export { default as ComingSoonIcon } from './icons/withSelectedState/comingSoon';
|
|
18
18
|
export { default as VerificationIcon } from './icons/withSelectedState/verification';
|
|
19
|
+
export { default as VerificationActivityIcon } from './icons/verificationActivity';
|
|
20
|
+
export { default as IssuanceActivityIcon } from './icons/issuanceActivity';
|
|
21
|
+
export { default as BriefcaseIcon } from './icons/briefcase';
|
|
22
|
+
export { default as ProductsIcon } from './icons/products';
|
|
19
23
|
export { default as ServicesLinkedIcon } from './icons/withSelectedState/servicesLinked';
|
|
20
24
|
export { default as IdIcon } from './icons/withSelectedState/id';
|
|
21
25
|
export { default as WalletIcon } from './icons/withSelectedState/wallet';
|
|
@@ -18,7 +18,7 @@ export type ListItemState = 'enable' | 'hover' | 'active';
|
|
|
18
18
|
export type ListItemColor = 'white' | 'grey' | 'none';
|
|
19
19
|
export type ListItemAlign = 'center' | 'top';
|
|
20
20
|
export type ListItemLeading = 'none' | 'avatar' | 'credential' | 'icon' | 'chip' | 'indicator' | 'buttonIcon' | 'chipGroup';
|
|
21
|
-
export type ListItemTrailing = 'none' | 'checkbox' | 'switch' | 'radioButton' | 'icon' | 'segmentedButton' | 'listMetaContainer' | 'action' | 'button' | 'chip' | 'iconGroup';
|
|
21
|
+
export type ListItemTrailing = 'none' | 'checkbox' | 'switch' | 'radioButton' | 'icon' | 'segmentedButton' | 'listMetaContainer' | 'action' | 'button' | 'buttonIcon' | 'chip' | 'iconGroup';
|
|
22
22
|
export interface ListItemProps {
|
|
23
23
|
id?: string;
|
|
24
24
|
color?: ListItemColor;
|
|
@@ -64,6 +64,7 @@ export interface ListItemProps {
|
|
|
64
64
|
containerStyle?: any;
|
|
65
65
|
actionItem?: ActionItemsProps;
|
|
66
66
|
button?: ButtonProps;
|
|
67
|
+
buttonIcon?: ButtonIconProps;
|
|
67
68
|
leadingChip?: ChipProps;
|
|
68
69
|
chip?: ChipProps;
|
|
69
70
|
chipGroup?: ChipGroupProps;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IconSize, IconStyle } from '../../Icons/icon_types';
|
|
2
|
-
import {
|
|
2
|
+
import { IndicatorProps } from '../../Indicator/Indicator/indicator_types.web';
|
|
3
3
|
export type ButtonIconColor = 'yellow' | 'red' | 'grey' | 'lightGrey' | 'white' | 'purple' | 'lightPurple' | 'green' | 'blue' | 'teal' | 'lightTeal' | 'pink' | 'lightPink';
|
|
4
4
|
export type ButtonIconState = 'enable' | 'hover' | 'disable';
|
|
5
5
|
export type ButtonIconStyle = 'square' | 'round';
|
|
@@ -19,12 +19,7 @@ export interface ButtonIconProps {
|
|
|
19
19
|
}>;
|
|
20
20
|
iconColor?: string;
|
|
21
21
|
showIndicator?: boolean;
|
|
22
|
-
indicator?:
|
|
23
|
-
id?: string;
|
|
24
|
-
className?: string;
|
|
25
|
-
quantity?: number;
|
|
26
|
-
color?: IndicatorColor;
|
|
27
|
-
};
|
|
22
|
+
indicator?: IndicatorProps;
|
|
28
23
|
showStroke?: boolean;
|
|
29
24
|
containerStyle?: any;
|
|
30
25
|
onClick?: (x?: any) => void;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IconSize } from '../icon_types';
|
|
2
|
+
type IssuanceActivityIconProps = {
|
|
3
|
+
id?: string;
|
|
4
|
+
size: IconSize;
|
|
5
|
+
color?: string;
|
|
6
|
+
};
|
|
7
|
+
declare const IssuanceActivityIcon: (props: IssuanceActivityIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default IssuanceActivityIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IconSize } from '../icon_types';
|
|
2
|
+
type VerificationActivityIconProps = {
|
|
3
|
+
id?: string;
|
|
4
|
+
size: IconSize;
|
|
5
|
+
color?: string;
|
|
6
|
+
};
|
|
7
|
+
declare const VerificationActivityIcon: (props: VerificationActivityIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default VerificationActivityIcon;
|
|
@@ -16,6 +16,10 @@ export { default as UsersV2Icon } from './icons/withSelectedState/users';
|
|
|
16
16
|
export { default as AwardIcon } from './icons/withSelectedState/award';
|
|
17
17
|
export { default as ComingSoonIcon } from './icons/withSelectedState/comingSoon';
|
|
18
18
|
export { default as VerificationIcon } from './icons/withSelectedState/verification';
|
|
19
|
+
export { default as VerificationActivityIcon } from './icons/verificationActivity';
|
|
20
|
+
export { default as IssuanceActivityIcon } from './icons/issuanceActivity';
|
|
21
|
+
export { default as BriefcaseIcon } from './icons/briefcase';
|
|
22
|
+
export { default as ProductsIcon } from './icons/products';
|
|
19
23
|
export { default as ServicesLinkedIcon } from './icons/withSelectedState/servicesLinked';
|
|
20
24
|
export { default as IdIcon } from './icons/withSelectedState/id';
|
|
21
25
|
export { default as WalletIcon } from './icons/withSelectedState/wallet';
|
|
@@ -18,7 +18,7 @@ export type ListItemState = 'enable' | 'hover' | 'active';
|
|
|
18
18
|
export type ListItemColor = 'white' | 'grey' | 'none';
|
|
19
19
|
export type ListItemAlign = 'center' | 'top';
|
|
20
20
|
export type ListItemLeading = 'none' | 'avatar' | 'credential' | 'icon' | 'indicator' | 'chip' | 'buttonIcon' | 'chipGroup';
|
|
21
|
-
export type ListItemTrailing = 'none' | 'checkbox' | 'switch' | 'radioButton' | 'icon' | 'segmentedButton' | 'listMetaContainer' | 'action' | 'button' | 'chip' | 'iconGroup';
|
|
21
|
+
export type ListItemTrailing = 'none' | 'checkbox' | 'switch' | 'radioButton' | 'icon' | 'segmentedButton' | 'listMetaContainer' | 'action' | 'button' | 'buttonIcon' | 'chip' | 'iconGroup';
|
|
22
22
|
export interface ListItemProps {
|
|
23
23
|
id?: string;
|
|
24
24
|
className?: string;
|
|
@@ -65,6 +65,7 @@ export interface ListItemProps {
|
|
|
65
65
|
containerStyle?: any;
|
|
66
66
|
actionItem?: ActionItemsProps;
|
|
67
67
|
button?: ButtonProps;
|
|
68
|
+
buttonIcon?: ButtonIconProps;
|
|
68
69
|
leadingChip?: ChipProps;
|
|
69
70
|
chip?: ChipProps;
|
|
70
71
|
chipGroup?: ChipGroupProps;
|