@gataca/design-system 0.2.29 → 0.2.31

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.
@@ -13,6 +13,7 @@ export { default as Indicator } from './native/Indicator/Indicator/index.native'
13
13
  export { default as Avatar } from './native/Avatars/Avatar/index.native';
14
14
  export { default as AvatarGroup } from './native/Avatars/AvatarGroup/index.native';
15
15
  export { default as TopAppBar } from './native/TopAppBar/TopAppBar/index.native';
16
+ export { default as ListMetaContainer } from './native/Lists/ListMetaContainer/index.native';
16
17
  export { default as CheckIcon } from './native/Icons/icons/check';
17
18
  export { default as InfoIcon } from './native/Icons/icons/info';
18
19
  export { default as ChevronDownIcon } from './native/Icons/icons/chevronDown';
@@ -11,6 +11,7 @@ export { default as SegmentedButton } from './web/Buttons/SegmentedButton/index.
11
11
  export { default as Indicator } from './web/Indicator/Indicator/index.web';
12
12
  export { default as Avatar } from './web/Avatars/Avatar/index.web';
13
13
  export { default as AvatarGroup } from './web/Avatars/AvatarGroup/index.web';
14
+ export { default as ListMetaContainer } from './web/Lists/ListMetaContainer/index.web';
14
15
  export { default as CheckIcon } from './web/Icons/icons/check';
15
16
  export { default as InfoIcon } from './web/Icons/icons/info';
16
17
  export { default as ChevronDownIcon } from './web/Icons/icons/chevronDown';
@@ -16,5 +16,10 @@ declare const _default: {
16
16
  alignItems: "center";
17
17
  gap: number;
18
18
  };
19
+ actionItemsImage: {
20
+ width: number;
21
+ height: number;
22
+ borderRadius: number;
23
+ };
19
24
  };
20
25
  export default _default;
@@ -1,12 +1,18 @@
1
1
  import { IconSize } from '../../Icons/icon_types';
2
- export type ActionItemsColor = 'black' | 'gray';
2
+ export type ActionItemsColor = 'black' | 'gray' | 'purple';
3
+ export type ActionItemsLeading = 'icon' | 'image';
4
+ export type ActionItemsLeadingAlign = 'left' | 'right';
3
5
  export interface ActionItemsProps {
4
6
  title: string;
5
7
  color?: ActionItemsColor;
6
8
  contentText?: string;
7
9
  showInfoIcon?: boolean;
10
+ leading?: ActionItemsLeading;
11
+ leadingAlign?: ActionItemsLeadingAlign;
8
12
  LeadingIcon?: React.FC<{
9
13
  size: IconSize;
10
14
  color: string;
11
15
  }>;
16
+ image?: string;
17
+ containerStyle?: any;
12
18
  }
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { ListMetaContainerProps } from './listMetaContainer_types.native';
3
+ declare const ListMetaContainer: (props: React.PropsWithChildren<ListMetaContainerProps>) => import("react/jsx-runtime").JSX.Element;
4
+ export default ListMetaContainer;
@@ -0,0 +1,2 @@
1
+ import ListMetaContainer from './ListMetaContainer.native';
2
+ export default ListMetaContainer;
@@ -0,0 +1,21 @@
1
+ declare const _default: {
2
+ listMetaContainerContainer: {
3
+ display: "flex";
4
+ flexDirection: "column";
5
+ justifyContent: "flex-start";
6
+ alignItems: "flex-start";
7
+ gap: number;
8
+ alignSelf: "flex-start";
9
+ };
10
+ listMetaContainerTextsContainer: {
11
+ display: "flex";
12
+ flexDirection: "column";
13
+ };
14
+ listMetaContainerTitleContainer: {
15
+ display: "flex";
16
+ flexDirection: "row";
17
+ alignItems: "center";
18
+ gap: number;
19
+ };
20
+ };
21
+ export default _default;
@@ -0,0 +1,19 @@
1
+ import { ActionItemsProps } from '../../Action/ActionItems/actionItems_types.native';
2
+ import { ChipProps } from '../../Chips/Chip/Chip.types.native';
3
+ export type ListMetaContainerCondition = 'all' | 'title' | 'titleExtraInfo';
4
+ export type ListMetaContainerSize = 'medium' | 'small';
5
+ export type ListMetaContainerColor = 'black' | 'gray';
6
+ export type ListMetaContainerAlign = 'left' | 'right';
7
+ export interface ListMetaContainerProps {
8
+ condition: ListMetaContainerCondition;
9
+ size?: ListMetaContainerSize;
10
+ color?: ListMetaContainerColor;
11
+ align?: ListMetaContainerAlign;
12
+ showInfoIcon?: boolean;
13
+ chip?: ChipProps;
14
+ actionItem?: ActionItemsProps;
15
+ title?: string;
16
+ content?: string;
17
+ extraInfo?: string;
18
+ containerStyle?: any;
19
+ }
@@ -3,4 +3,5 @@ export declare const styles: () => {
3
3
  actionItemsContainer: React.CSSProperties;
4
4
  actionItemsTextsContainer: React.CSSProperties;
5
5
  actionItemsTitleContainer: React.CSSProperties;
6
+ actionItemsImage: React.CSSProperties;
6
7
  };
@@ -1,12 +1,18 @@
1
1
  import { IconSize } from '../../Icons/icon_types';
2
- export type ActionItemsColor = 'black' | 'gray';
2
+ export type ActionItemsColor = 'black' | 'gray' | 'purple';
3
+ export type ActionItemsLeading = 'icon' | 'image';
4
+ export type ActionItemsLeadingAlign = 'left' | 'right';
3
5
  export interface ActionItemsProps {
4
6
  title: string;
5
7
  color?: ActionItemsColor;
6
8
  contentText?: string;
7
9
  showInfoIcon?: boolean;
10
+ leading?: ActionItemsLeading;
11
+ leadingAlign?: ActionItemsLeadingAlign;
8
12
  LeadingIcon?: React.FC<{
9
13
  size: IconSize;
10
14
  color: string;
11
15
  }>;
16
+ image?: string;
17
+ containerStyle?: any;
12
18
  }
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { ListMetaContainerProps } from './listMetaContainer_types.web';
3
+ declare const ListMetaContainer: (props: React.PropsWithChildren<ListMetaContainerProps>) => import("react/jsx-runtime").JSX.Element;
4
+ export default ListMetaContainer;
@@ -0,0 +1,2 @@
1
+ import ListMetaContainer from './ListMetaContainer.web';
2
+ export default ListMetaContainer;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export declare const styles: () => {
3
+ listMetaContainerContainer: React.CSSProperties;
4
+ listMetaContainerTextsContainer: React.CSSProperties;
5
+ listMetaContainerTitleContainer: React.CSSProperties;
6
+ };
@@ -0,0 +1,19 @@
1
+ import { ActionItemsProps } from '../../Action/ActionItems/actionItems_types.web';
2
+ import { ChipProps } from '../../Chips/Chip/Chip.types.web';
3
+ export type ListMetaContainerCondition = 'all' | 'title' | 'titleExtraInfo';
4
+ export type ListMetaContainerSize = 'medium' | 'small';
5
+ export type ListMetaContainerColor = 'black' | 'gray';
6
+ export type ListMetaContainerAlign = 'left' | 'right';
7
+ export interface ListMetaContainerProps {
8
+ condition: ListMetaContainerCondition;
9
+ size?: ListMetaContainerSize;
10
+ color?: ListMetaContainerColor;
11
+ align?: ListMetaContainerAlign;
12
+ showInfoIcon?: boolean;
13
+ chip?: ChipProps;
14
+ actionItem?: ActionItemsProps;
15
+ title?: string;
16
+ content?: string;
17
+ extraInfo?: string;
18
+ containerStyle?: any;
19
+ }