@gataca/design-system 0.3.70 → 0.3.72
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/Icons/icons/withSelectedState/square.d.ts +8 -0
- package/dist/components/native/Icons/index.native.d.ts +1 -0
- package/dist/components/native/TextField/TextField/textField_types.native.d.ts +2 -0
- package/dist/components/web/Icons/icons/withSelectedState/square.d.ts +8 -0
- package/dist/components/web/Icons/index.web.d.ts +1 -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
|
@@ -58,6 +58,7 @@ export { default as PaymentMethodIcon } from './native/Icons/icons/withSelectedS
|
|
|
58
58
|
export { default as StarIcon } from './native/Icons/icons/withSelectedState/star';
|
|
59
59
|
export { default as SubscriptionsIcon } from './native/Icons/icons/withSelectedState/subscriptions';
|
|
60
60
|
export { default as StampIcon } from './native/Icons/icons/withSelectedState/stamp';
|
|
61
|
+
export { default as SquareIcon } from './native/Icons/icons/withSelectedState/square';
|
|
61
62
|
export { default as SettingsIcon } from './native/Icons/icons/withSelectedState/settings';
|
|
62
63
|
export { default as ServicesLinkedV2Icon } from './native/Icons/icons/withSelectedState/servicesLinkedV2';
|
|
63
64
|
export { default as ShieldCheckIcon } from './native/Icons/icons/withSelectedState/shieldCheck';
|
|
@@ -53,6 +53,7 @@ export { default as PaymentMethodIcon } from './web/Icons/icons/withSelectedStat
|
|
|
53
53
|
export { default as StarIcon } from './web/Icons/icons/withSelectedState/star';
|
|
54
54
|
export { default as SubscriptionsIcon } from './web/Icons/icons/withSelectedState/subscriptions';
|
|
55
55
|
export { default as StampIcon } from './web/Icons/icons/withSelectedState/stamp';
|
|
56
|
+
export { default as SquareIcon } from './web/Icons/icons/withSelectedState/square';
|
|
56
57
|
export { default as SettingsIcon } from './web/Icons/icons/withSelectedState/settings';
|
|
57
58
|
export { default as ServicesLinkedV2Icon } from './web/Icons/icons/withSelectedState/servicesLinkedV2';
|
|
58
59
|
export { default as ShieldCheckIcon } from './web/Icons/icons/withSelectedState/shieldCheck';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IconSize, IconStyle } from '../../icon_types';
|
|
2
|
+
type SquareIconProps = {
|
|
3
|
+
size: IconSize;
|
|
4
|
+
color?: string;
|
|
5
|
+
style: IconStyle;
|
|
6
|
+
};
|
|
7
|
+
declare const SquareIcon: (props: SquareIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default SquareIcon;
|
|
@@ -31,6 +31,7 @@ export { default as ArrowLeftDiagonalCircleIcon } from './icons/withSelectedStat
|
|
|
31
31
|
export { default as ArrowUpDiagonalCircleIcon } from './icons/withSelectedState/arrowUpDiagonalCircle';
|
|
32
32
|
export { default as ProfileIcon } from './icons/withSelectedState/profile';
|
|
33
33
|
export { default as BellIcon } from './icons/withSelectedState/bell';
|
|
34
|
+
export { default as SquareIcon } from './icons/withSelectedState/square';
|
|
34
35
|
export { default as CheckIcon } from './icons/check';
|
|
35
36
|
export { default as InfoIcon } from './icons/info';
|
|
36
37
|
export { default as ChevronDownIcon } from './icons/chevronDown';
|
|
@@ -23,6 +23,7 @@ export interface TextFieldProps {
|
|
|
23
23
|
color: string;
|
|
24
24
|
style: IconStyle;
|
|
25
25
|
}>;
|
|
26
|
+
size?: string;
|
|
26
27
|
color?: string;
|
|
27
28
|
style?: string;
|
|
28
29
|
onPress?: (x?: any) => void;
|
|
@@ -33,6 +34,7 @@ export interface TextFieldProps {
|
|
|
33
34
|
color: string;
|
|
34
35
|
style: IconStyle;
|
|
35
36
|
}>;
|
|
37
|
+
size?: string;
|
|
36
38
|
color?: string;
|
|
37
39
|
style?: string;
|
|
38
40
|
onPress?: (x?: any) => void;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IconSize, IconStyle } from '../../icon_types';
|
|
2
|
+
type SquareIconProps = {
|
|
3
|
+
size: IconSize;
|
|
4
|
+
color?: string;
|
|
5
|
+
style: IconStyle;
|
|
6
|
+
};
|
|
7
|
+
declare const SquareIcon: (props: SquareIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default SquareIcon;
|
|
@@ -31,6 +31,7 @@ export { default as ArrowLeftDiagonalCircleIcon } from './icons/withSelectedStat
|
|
|
31
31
|
export { default as ArrowUpDiagonalCircleIcon } from './icons/withSelectedState/arrowUpDiagonalCircle';
|
|
32
32
|
export { default as ProfileIcon } from './icons/withSelectedState/profile';
|
|
33
33
|
export { default as BellIcon } from './icons/withSelectedState/bell';
|
|
34
|
+
export { default as SquareIcon } from './icons/withSelectedState/square';
|
|
34
35
|
export { default as CheckIcon } from './icons/check';
|
|
35
36
|
export { default as InfoIcon } from './icons/info';
|
|
36
37
|
export { default as ChevronDownIcon } from './icons/chevronDown';
|