Skip to content

Commit 2d42ff6

Browse files
authored
Merge pull request #4829 from GeekyAnts/release/3.3.10
Release/3.3.10
2 parents 5ecad2e + 61845eb commit 2d42ff6

File tree

9 files changed

+9
-10
lines changed

9 files changed

+9
-10
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"prettier --write"
3737
]
3838
},
39-
"version": "3.3.9",
39+
"version": "3.3.10",
4040
"license": "MIT",
4141
"private": false,
4242
"main": "lib/commonjs/index",

src/components/composites/AlertDialog/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { IBoxProps } from '../../primitives/Box';
22
import type { IIconButtonProps } from '../IconButton';
33
import type { MutableRefObject } from 'react';
4-
import type { CustomProps } from 'src/components/types';
4+
import type { CustomProps } from '../../../components/types/utils';
55

66
export interface InterfaceAlertDialogProps extends IBoxProps {
77
/**

src/components/composites/Center/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { CustomProps } from 'src/components/types';
1+
import type { CustomProps } from '../../../components/types/utils';
22
import type { InterfaceBoxProps } from '../../../components/primitives/Box/types';
33

44
export interface InterfaceCenterProps extends InterfaceBoxProps<ICenterProps> {}

src/components/composites/Code/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { CustomProps } from 'src/components/types';
1+
import type { CustomProps } from '../../../components/types/utils';
22
import type { InterfaceBoxProps } from '../../primitives/Box';
33

44
export type InterfaceCodeProps = InterfaceBoxProps<ICodeProps> & {

src/components/composites/Collapse/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { ViewStyle, LayoutAnimation, UIManager, Platform } from 'react-native';
44
import { Box } from '../../primitives';
55
import { useHasResponsiveProps } from '../../../hooks/useHasResponsiveProps';
66
import type { InterfaceBoxProps } from '../../primitives/Box';
7-
// import type { CustomProps } from 'src/components/types';
87
export type InterfaceCollapseProps = InterfaceBoxProps<ICollapseProps> & {
98
style?: ViewStyle;
109
endingHeight?: number;
@@ -99,7 +98,7 @@ const Collapse = (
9998
<Box
10099
//@ts-ignore
101100
overflow={Platform.OS === 'web' ? 'auto' : 'scroll'}
102-
onLayout={(e) => provideSize(e.nativeEvent.layout)}
101+
onLayout={(e: any) => provideSize(e.nativeEvent.layout)}
103102
{...props}
104103
/>
105104
</Box>

src/components/composites/Fab/types.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { CustomProps } from 'src/components/types';
1+
import type { CustomProps } from '../../../components/types/utils';
22
import type { InterfaceButtonProps } from '../../primitives/Button/types';
33

44
export interface InterfaceFabProps extends InterfaceButtonProps {

src/components/composites/FormControl/types.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { CustomProps } from 'src/components/types';
1+
import type { CustomProps } from '../../../components/types/utils';
22
import type { IBoxProps, IStackProps } from '../../primitives';
33

44
export interface InterfaceFormControlProps
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import type { CustomProps } from 'src/components/types';
1+
import type { CustomProps } from '../../../components/types/utils';
22
import type { InterfaceBoxProps } from '../../primitives/Box';
33
export type IKbdProps = InterfaceBoxProps<IKbdProps> | CustomProps<'Kbd'>;

src/components/composites/Tooltip/Tooltip.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import Box from '../../primitives/Box';
1010
import type { InterfaceBoxProps } from '../../primitives/Box';
1111
import { useId } from '@react-aria/utils';
1212
import { useHasResponsiveProps } from '../../../hooks/useHasResponsiveProps';
13-
import type { CustomProps } from 'src/components/types';
13+
import type { CustomProps } from '../../../components/types/utils';
1414

1515
interface InterfaceTooltipProps extends InterfaceBoxProps<ITooltipProps> {
1616
/**

0 commit comments

Comments
 (0)