@gataca/design-system 1.0.28 → 1.0.29
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/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/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/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
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|