@gataca/design-system 0.4.8 → 0.4.10

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.
@@ -108,6 +108,7 @@ export { default as DownloadIcon } from './native/Icons/icons/download';
108
108
  export { default as DownloadCloudIcon } from './native/Icons/icons/downloadCloud';
109
109
  export { default as EditIcon } from './native/Icons/icons/edit';
110
110
  export { default as ExchangeIcon } from './native/Icons/icons/exchange';
111
+ export { default as ExternalLinkIcon } from './native/Icons/icons/externalLink';
111
112
  export { default as EyeIcon } from './native/Icons/icons/eye';
112
113
  export { default as EyeOffIcon } from './native/Icons/icons/eyeOff';
113
114
  export { default as FileIcon } from './native/Icons/icons/file';
@@ -102,6 +102,7 @@ export { default as DownloadIcon } from './web/Icons/icons/download';
102
102
  export { default as DownloadCloudIcon } from './web/Icons/icons/downloadCloud';
103
103
  export { default as EditIcon } from './web/Icons/icons/edit';
104
104
  export { default as ExchangeIcon } from './web/Icons/icons/exchange';
105
+ export { default as ExternalLinkIcon } from './web/Icons/icons/externalLink';
105
106
  export { default as EyeIcon } from './web/Icons/icons/eye';
106
107
  export { default as EyeOffIcon } from './web/Icons/icons/eyeOff';
107
108
  export { default as FileIcon } from './web/Icons/icons/file';
@@ -12,5 +12,6 @@ export interface CheckboxProps {
12
12
  textColor?: CheckboxTextColor;
13
13
  containerStyle?: any;
14
14
  tooltip?: ParentComponentTooltipProps;
15
+ children?: React.ReactNode;
15
16
  onPress?: (x?: any) => void;
16
17
  }
@@ -0,0 +1,8 @@
1
+ import { IconSize } from '../icon_types';
2
+ type ExternalLinkIconProps = {
3
+ id?: string;
4
+ size: IconSize;
5
+ color?: string;
6
+ };
7
+ declare const ExternalLinkIcon: (props: ExternalLinkIconProps) => import("react/jsx-runtime").JSX.Element;
8
+ export default ExternalLinkIcon;
@@ -72,6 +72,7 @@ export { default as DownloadIcon } from './icons/download';
72
72
  export { default as DownloadCloudIcon } from './icons/downloadCloud';
73
73
  export { default as EditIcon } from './icons/edit';
74
74
  export { default as ExchangeIcon } from './icons/exchange';
75
+ export { default as ExternalLinkIcon } from './icons/externalLink';
75
76
  export { default as EyeIcon } from './icons/eye';
76
77
  export { default as EyeOffIcon } from './icons/eyeOff';
77
78
  export { default as FileIcon } from './icons/file';
@@ -13,5 +13,6 @@ export interface CheckboxProps {
13
13
  textColor?: CheckboxTextColor;
14
14
  containerStyle?: any;
15
15
  tooltip?: ParentComponentTooltipProps;
16
+ children?: React.ReactNode;
16
17
  onClick?: (x?: any) => void;
17
18
  }
@@ -0,0 +1,9 @@
1
+ import { IconSize } from '../icon_types';
2
+ type ExternalLinkIconProps = {
3
+ id?: string;
4
+ className?: string;
5
+ size: IconSize;
6
+ color?: string;
7
+ };
8
+ declare const ExternalLinkIcon: (props: ExternalLinkIconProps) => import("react/jsx-runtime").JSX.Element;
9
+ export default ExternalLinkIcon;
@@ -72,6 +72,7 @@ export { default as DownloadIcon } from './icons/download';
72
72
  export { default as DownloadCloudIcon } from './icons/downloadCloud';
73
73
  export { default as EditIcon } from './icons/edit';
74
74
  export { default as ExchangeIcon } from './icons/exchange';
75
+ export { default as ExternalLinkIcon } from './icons/externalLink';
75
76
  export { default as EyeIcon } from './icons/eye';
76
77
  export { default as EyeOffIcon } from './icons/eyeOff';
77
78
  export { default as FileIcon } from './icons/file';
@@ -8,23 +8,23 @@ export interface TextFieldProps {
8
8
  id?: string;
9
9
  className?: string;
10
10
  state: TextFieldState;
11
- textFieldSize: TextFieldSize;
11
+ text_field_size: TextFieldSize;
12
12
  label: {
13
13
  text: string;
14
14
  tooltip?: ParentComponentTooltipProps;
15
15
  };
16
16
  value?: string;
17
- autoComplete?: TextFieldAutoComplete;
18
- extraDescription?: string;
19
- helperText?: string;
17
+ auto_complete?: TextFieldAutoComplete;
18
+ extra_description?: string;
19
+ helper_text?: string;
20
20
  placeholder?: string;
21
21
  type?: TextFieldType;
22
- containerStyle?: any;
23
- isLoading?: boolean;
22
+ container_style?: any;
23
+ is_loading?: boolean;
24
24
  SkeletonComponent?: React.FC;
25
- maxLength?: number;
26
- minLength?: number;
27
- leadingIcon?: {
25
+ max_length?: number;
26
+ min_length?: number;
27
+ leading_icon?: {
28
28
  Icon: React.FC<{
29
29
  size: IconSize;
30
30
  color: string;
@@ -35,7 +35,7 @@ export interface TextFieldProps {
35
35
  style?: string;
36
36
  onClick?: (x?: any) => void;
37
37
  };
38
- trailingIcon?: {
38
+ trailing_icon?: {
39
39
  Icon: React.FC<{
40
40
  size: IconSize;
41
41
  color: string;