@gataca/design-system 1.0.26 → 1.0.28
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/Alerts/Alert/Alert_styles.native.d.ts +1 -0
- package/dist/components/native/BottomSticky/BottomStickyContainer/bottomStickyContainer_types.native.d.ts +1 -1
- package/dist/components/native/Lists/ListItem/listItem_styles.native.d.ts +19 -0
- package/dist/components/native/Lists/ListItem/listItem_types.native.d.ts +5 -0
- package/dist/components/web/Lists/ListItem/listItem_styles.web.d.ts +3 -0
- package/dist/components/web/Lists/ListItem/listItem_types.web.d.ts +5 -0
- 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
|
@@ -24,7 +24,26 @@ declare const _default: {
|
|
|
24
24
|
flexDirection: "row";
|
|
25
25
|
justifyContent: "flex-start";
|
|
26
26
|
gap: number;
|
|
27
|
+
};
|
|
28
|
+
centerRightContainer: {
|
|
27
29
|
flex: number;
|
|
30
|
+
display: "flex";
|
|
31
|
+
flexDirection: "column";
|
|
32
|
+
gap: number;
|
|
33
|
+
};
|
|
34
|
+
centerRightContainerTop: {
|
|
35
|
+
display: "flex";
|
|
36
|
+
flexDirection: "row";
|
|
37
|
+
justifyContent: "space-between";
|
|
38
|
+
gap: number;
|
|
39
|
+
};
|
|
40
|
+
centerRightContainerBottom: {
|
|
41
|
+
display: "flex";
|
|
42
|
+
flexDirection: "row";
|
|
43
|
+
justifyContent: "space-between";
|
|
44
|
+
gap: number;
|
|
45
|
+
alignItems: "center";
|
|
46
|
+
flexWrap: "wrap";
|
|
28
47
|
};
|
|
29
48
|
};
|
|
30
49
|
export default _default;
|
|
@@ -2,6 +2,7 @@ import { ActionItemsProps } from '../../Action/ActionItems/actionItems_types.nat
|
|
|
2
2
|
import { AvatarProps } from '../../Avatars/Avatar/Avatar.types.native';
|
|
3
3
|
import { ButtonProps } from '../../Buttons/Button/Button.types.native';
|
|
4
4
|
import { ButtonIconProps } from '../../Buttons/ButtonIcon/ButtonIcon.types.native';
|
|
5
|
+
import { RoundedButtonProps } from '../../Buttons/RoundedButton/RoundedButton.types.native';
|
|
5
6
|
import { SegmentedButtonProps } from '../../Buttons/SegmentedButton/SegmentedButton.types.native';
|
|
6
7
|
import { MiniCredentialCardProps } from '../../Cards/MiniCredential/miniCredential_types.native';
|
|
7
8
|
import { CheckboxProps } from '../../Checkbox/Checkbox/checkbox_types.native';
|
|
@@ -35,6 +36,10 @@ export interface ListItemProps {
|
|
|
35
36
|
switchOpt?: SwitchProps;
|
|
36
37
|
radioButton?: RadioButtonProps;
|
|
37
38
|
iconGroup?: IconGroupProps;
|
|
39
|
+
actionContainer?: {
|
|
40
|
+
chip?: ChipProps;
|
|
41
|
+
roundedButton?: RoundedButtonProps;
|
|
42
|
+
};
|
|
38
43
|
leadingIcon?: {
|
|
39
44
|
Icon: React.FC<{
|
|
40
45
|
size: IconSize;
|
|
@@ -3,4 +3,7 @@ export declare const styles: () => {
|
|
|
3
3
|
generalContainer: React.CSSProperties;
|
|
4
4
|
listItemContainer: React.CSSProperties;
|
|
5
5
|
listItemLeftContainer: React.CSSProperties;
|
|
6
|
+
centerRightContainer: React.CSSProperties;
|
|
7
|
+
centerRightContainerTop: React.CSSProperties;
|
|
8
|
+
centerRightContainerBottom: React.CSSProperties;
|
|
6
9
|
};
|
|
@@ -2,6 +2,7 @@ import { ActionItemsProps } from '../../Action/ActionItems/actionItems_types.web
|
|
|
2
2
|
import { AvatarProps } from '../../Avatars/Avatar/Avatar.types.web';
|
|
3
3
|
import { ButtonProps } from '../../Buttons/Button/Button.types.web';
|
|
4
4
|
import { ButtonIconProps } from '../../Buttons/ButtonIcon/ButtonIcon.types.web';
|
|
5
|
+
import { RoundedButtonProps } from '../../Buttons/RoundedButton/RoundedButton.types.web';
|
|
5
6
|
import { SegmentedButtonProps } from '../../Buttons/SegmentedButton/SegmentedButton.types.web';
|
|
6
7
|
import { MiniCredentialCardProps } from '../../Cards/MiniCredential/miniCredential_types.web';
|
|
7
8
|
import { CheckboxProps } from '../../Checkbox/Checkbox/checkbox_types.web';
|
|
@@ -34,6 +35,10 @@ export interface ListItemProps {
|
|
|
34
35
|
radioButton: RadioButtonProps;
|
|
35
36
|
fullyClickable?: boolean;
|
|
36
37
|
};
|
|
38
|
+
actionContainer?: {
|
|
39
|
+
chip?: ChipProps;
|
|
40
|
+
roundedButton?: RoundedButtonProps;
|
|
41
|
+
};
|
|
37
42
|
credential?: MiniCredentialCardProps;
|
|
38
43
|
leadingButtonIcon?: ButtonIconProps;
|
|
39
44
|
checkbox?: CheckboxProps;
|