@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.
- package/dist/components/index.native.d.ts +1 -0
- package/dist/components/index.web.d.ts +1 -0
- package/dist/components/native/Checkbox/Checkbox/checkbox_types.native.d.ts +1 -0
- package/dist/components/native/Icons/icons/externalLink.d.ts +8 -0
- package/dist/components/native/Icons/index.native.d.ts +1 -0
- package/dist/components/web/Checkbox/Checkbox/checkbox_types.web.d.ts +1 -0
- package/dist/components/web/Icons/icons/externalLink.d.ts +9 -0
- package/dist/components/web/Icons/index.web.d.ts +1 -0
- package/dist/components/web/TextField/TextField/textField_types.web.d.ts +10 -10
- 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
|
@@ -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';
|
|
@@ -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';
|
|
@@ -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
|
-
|
|
11
|
+
text_field_size: TextFieldSize;
|
|
12
12
|
label: {
|
|
13
13
|
text: string;
|
|
14
14
|
tooltip?: ParentComponentTooltipProps;
|
|
15
15
|
};
|
|
16
16
|
value?: string;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
auto_complete?: TextFieldAutoComplete;
|
|
18
|
+
extra_description?: string;
|
|
19
|
+
helper_text?: string;
|
|
20
20
|
placeholder?: string;
|
|
21
21
|
type?: TextFieldType;
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
container_style?: any;
|
|
23
|
+
is_loading?: boolean;
|
|
24
24
|
SkeletonComponent?: React.FC;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
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
|
-
|
|
38
|
+
trailing_icon?: {
|
|
39
39
|
Icon: React.FC<{
|
|
40
40
|
size: IconSize;
|
|
41
41
|
color: string;
|