@gataca/design-system 0.3.63 → 0.3.65

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.
@@ -31,6 +31,7 @@ export { default as Tooltip } from './native/Tooltips/Tooltip/index.native';
31
31
  export { default as Popover } from './native/Popover/index.native';
32
32
  export { default as BottomStickyContainer } from './native/BottomSticky/BottomStickyContainer/index.native';
33
33
  export { default as TextField } from './native/TextField/TextField/index.native';
34
+ export { default as IconGroup } from './native/Icons/IconGroup/index.native';
34
35
  export { default as Illustration } from './native/Illustrations/index.native';
35
36
  export { default as GatacaLogoHorIcon } from './native/Icons/icons/brand/gatacaLogoHor';
36
37
  export { default as GatacaLogoIcon } from './native/Icons/icons/brand/gatacaLogo';
@@ -26,6 +26,7 @@ export { default as Alert } from './web/Alerts/Alert/index.web';
26
26
  export { default as Tooltip } from './web/Tooltips/Tooltip/index.web';
27
27
  export { default as Popover } from './web/Popover/index.web';
28
28
  export { default as TextField } from './web/TextField/TextField/index.web';
29
+ export { default as IconGroup } from './web/Icons/IconGroup/index.web';
29
30
  export { default as Illustration } from './web/Illustrations/index.web';
30
31
  export { default as GatacaLogoHorIcon } from './web/Icons/icons/brand/gatacaLogoHor';
31
32
  export { default as GatacaLogoIcon } from './web/Icons/icons/brand/gatacaLogo';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconGroupProps } from './iconGroup_types.native';
3
+ declare const IconGroup: (props: React.PropsWithChildren<IconGroupProps>) => import("react/jsx-runtime").JSX.Element;
4
+ export default IconGroup;
@@ -0,0 +1,10 @@
1
+ declare const _default: {
2
+ iconGroupContainer: {
3
+ display: "flex";
4
+ flexDirection: "row";
5
+ alignItems: "center";
6
+ gap: number;
7
+ alignSelf: "flex-start";
8
+ };
9
+ };
10
+ export default _default;
@@ -0,0 +1,17 @@
1
+ import { ParentComponentTooltipProps } from '../../Tooltips/Tooltip/tooltip_types.native';
2
+ import { IconSize, IconStyle } from '../icon_types';
3
+ export interface IconGroupProps {
4
+ iconList: {
5
+ Icon: React.FC<{
6
+ size: IconSize;
7
+ style: IconStyle;
8
+ color: string;
9
+ }>;
10
+ size?: string;
11
+ style?: string;
12
+ color?: string;
13
+ onPress?: (x?: any) => void;
14
+ tooltip?: ParentComponentTooltipProps;
15
+ }[];
16
+ containerStyle?: any;
17
+ }
@@ -0,0 +1,2 @@
1
+ import IconGroup from './IconGroup.native';
2
+ export default IconGroup;
@@ -6,6 +6,7 @@ import { MiniCredentialCardProps } from '../../Cards/MiniCredential/miniCredenti
6
6
  import { CheckboxProps } from '../../Checkbox/Checkbox/checkbox_types.native';
7
7
  import { ChipProps } from '../../Chips/Chip/Chip.types.native';
8
8
  import { IconSize } from '../../Icons/icon_types';
9
+ import { IconGroupProps } from '../../Icons/IconGroup/iconGroup_types.native';
9
10
  import { RadioButtonProps } from '../../RadioButton/RadioButton/radioButton_types.native';
10
11
  import { SwitchProps } from '../../Switch/Switch/switch_types.native';
11
12
  import { ListMetaContainerColor } from '../ListMetaContainer/listMetaContainer_types.native';
@@ -16,7 +17,7 @@ export type ListItemSize = 'medium' | 'small';
16
17
  export type ListItemColor = 'black' | 'gray' | 'white' | 'red';
17
18
  export type ListItemAlign = 'left' | 'right';
18
19
  export type ListItemLeading = 'none' | 'avatar' | 'credential' | 'icon' | 'chip' | 'indicator';
19
- export type ListItemTrailing = 'none' | 'checkbox' | 'switch' | 'radioButton' | 'notifications' | 'icon' | 'segmentedButton' | 'value' | 'action' | 'button' | 'chip';
20
+ export type ListItemTrailing = 'none' | 'checkbox' | 'switch' | 'radioButton' | 'notifications' | 'icon' | 'segmentedButton' | 'value' | 'action' | 'button' | 'chip' | 'iconGroup';
20
21
  export interface ListItemProps {
21
22
  type?: ListItemType;
22
23
  state?: ListItemState;
@@ -33,6 +34,7 @@ export interface ListItemProps {
33
34
  checkbox?: CheckboxProps;
34
35
  switchOpt?: SwitchProps;
35
36
  radioButton?: RadioButtonProps;
37
+ iconGroup?: IconGroupProps;
36
38
  leadingIcon?: {
37
39
  Icon: React.FC<{
38
40
  size: IconSize;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconGroupProps } from './iconGroup_types.web';
3
+ declare const IconGroup: (props: React.PropsWithChildren<IconGroupProps>) => import("react/jsx-runtime").JSX.Element;
4
+ export default IconGroup;
@@ -0,0 +1,3 @@
1
+ export declare const styles: {
2
+ iconGroupContainer: React.CSSProperties;
3
+ };
@@ -0,0 +1,17 @@
1
+ import { ParentComponentTooltipProps } from '../../Tooltips/Tooltip/tooltip_types.web';
2
+ import { IconSize, IconStyle } from '../icon_types';
3
+ export interface IconGroupProps {
4
+ iconList: {
5
+ Icon: React.FC<{
6
+ size: IconSize;
7
+ style: IconStyle;
8
+ color: string;
9
+ }>;
10
+ size?: string;
11
+ style?: string;
12
+ color?: string;
13
+ onClick?: (x?: any) => void;
14
+ tooltip?: ParentComponentTooltipProps;
15
+ }[];
16
+ containerStyle?: any;
17
+ }
@@ -0,0 +1,2 @@
1
+ import IconGroup from './IconGroup.web';
2
+ export default IconGroup;
@@ -6,6 +6,7 @@ import { MiniCredentialCardProps } from '../../Cards/MiniCredential/miniCredenti
6
6
  import { CheckboxProps } from '../../Checkbox/Checkbox/checkbox_types.web';
7
7
  import { ChipProps } from '../../Chips/Chip/Chip.types.web';
8
8
  import { IconSize } from '../../Icons/icon_types';
9
+ import { IconGroupProps } from '../../Icons/IconGroup/iconGroup_types.web';
9
10
  import { RadioButtonProps } from '../../RadioButton/RadioButton/radioButton_types.web';
10
11
  import { SwitchProps } from '../../Switch/Switch/switch_types.web';
11
12
  import { ListMetaContainerColor } from '../ListMetaContainer/listMetaContainer_types.web';
@@ -16,7 +17,7 @@ export type ListItemSize = 'medium' | 'small';
16
17
  export type ListItemColor = 'black' | 'gray' | 'white' | 'red';
17
18
  export type ListItemAlign = 'left' | 'right';
18
19
  export type ListItemLeading = 'none' | 'avatar' | 'credential' | 'icon' | 'indicator' | 'chip';
19
- export type ListItemTrailing = 'none' | 'checkbox' | 'switch' | 'radioButton' | 'notifications' | 'icon' | 'segmentedButton' | 'value' | 'action' | 'button' | 'chip';
20
+ export type ListItemTrailing = 'none' | 'checkbox' | 'switch' | 'radioButton' | 'notifications' | 'icon' | 'segmentedButton' | 'value' | 'action' | 'button' | 'chip' | 'iconGroup';
20
21
  export interface ListItemProps {
21
22
  type?: ListItemType;
22
23
  state?: ListItemState;
@@ -33,6 +34,7 @@ export interface ListItemProps {
33
34
  containerStyle?: any;
34
35
  checkbox?: CheckboxProps;
35
36
  switchOpt?: SwitchProps;
37
+ iconGroup?: IconGroupProps;
36
38
  leadingIcon?: {
37
39
  Icon: React.FC<{
38
40
  size: IconSize;