Skip to content

Commit

Permalink
fix(select): correct import
Browse files Browse the repository at this point in the history
  • Loading branch information
hextion committed Oct 31, 2024
1 parent 08670d7 commit b89c7ab
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import React, { FC, ReactNode, RefObject } from 'react';

import { OptionShape } from '@alfalab/core-components-select/typings';
import { getDataTestId } from '@alfalab/core-components-shared';

import { OptionShape } from '../../../../typings';

import { ListBottomSheetMobileRestProps } from './types/types';

import mobileStyles from '../../mobile.module.css';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { FC, ReactNode, RefObject } from 'react';

import { OptionShape } from '@alfalab/core-components-select/typings';
import { OptionShape } from '../../../../typings';

import { ListBottomSheetMobileRestProps, ListModalMobileRestProps } from './types/types';
import { ListBottomSheetMobile } from './list-bottom-sheet-mobile';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ import React, { FC, ReactNode, RefObject } from 'react';
import mergeRefs from 'react-merge-refs';
import cn from 'classnames';

import { OptionShape } from '@alfalab/core-components-select/typings';
import { getDataTestId } from '@alfalab/core-components-shared';

import { OptionShape } from '../../../../typings';

import { ListModalMobileRestProps } from './types/types';

import mobileStyles from '../../mobile.module.css';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ import type {
} from '@alfalab/core-components-modal/shared';
import type { ModalMobileProps } from '@alfalab/core-components-modal/typings';
import type { PopoverProps } from '@alfalab/core-components-popover';

import type {
AdditionalMobileProps,
BaseSelectProps,
BottomSheetSelectMobileProps,
ModalSelectMobileProps,
} from '@alfalab/core-components-select/typings';
} from '../../../typings';

type PopoverType = ForwardRefExoticComponent<PopoverProps & RefAttributes<HTMLDivElement>>;
type BottomSheetType = React.ForwardRefExoticComponent<
Expand Down

0 comments on commit b89c7ab

Please sign in to comment.