Skip to content

Commit

Permalink
fix(CustomSelectInput): wrong classname
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackySoul committed Oct 28, 2024
1 parent e92e114 commit 673dbec
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 13 deletions.
5 changes: 4 additions & 1 deletion packages/vkui/src/components/CustomSelect/CustomSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ import {
CustomSelectClearButton,
type CustomSelectClearButtonProps,
} from './CustomSelectClearButton';
import { CustomSelectInput, type CustomSelectInputProps } from './CustomSelectInput';
import {
CustomSelectInput,
type CustomSelectInputProps,
} from './CustomSelectInput/CustomSelectInput';
import styles from './CustomSelect.module.css';

const sizeYClassNames = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { render } from '@testing-library/react';
import { baselineComponent } from '../../testing/utils';
import { baselineComponent } from '../../../testing/utils';
import { CustomSelectInput, type CustomSelectInputProps } from './CustomSelectInput';
import styles from './CustomSelectInput.module.css';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

import * as React from 'react';
import { classNames } from '@vkontakte/vkjs';
import { useAdaptivity } from '../../hooks/useAdaptivity';
import { useExternRef } from '../../hooks/useExternRef';
import { useFocusWithin } from '../../hooks/useFocusWithin';
import { usePlatform } from '../../hooks/usePlatform';
import { getFormFieldModeFromSelectType } from '../../lib/select';
import type { HasAlign, HasRef, HasRootRef } from '../../types';
import { FormField, type FormFieldProps } from '../FormField/FormField';
import type { SelectType } from '../Select/Select';
import { SelectTypography } from '../SelectTypography/SelectTypography';
import { Text } from '../Typography/Text/Text';
import { VisuallyHidden } from '../VisuallyHidden/VisuallyHidden';
import { useAdaptivity } from '../../../hooks/useAdaptivity';
import { useExternRef } from '../../../hooks/useExternRef';
import { useFocusWithin } from '../../../hooks/useFocusWithin';
import { usePlatform } from '../../../hooks/usePlatform';
import { getFormFieldModeFromSelectType } from '../../../lib/select';
import type { HasAlign, HasRef, HasRootRef } from '../../../types';
import { FormField, type FormFieldProps } from '../../FormField/FormField';
import type { SelectType } from '../../Select/Select';
import { SelectTypography } from '../../SelectTypography/SelectTypography';
import { Text } from '../../Typography/Text/Text';
import { VisuallyHidden } from '../../VisuallyHidden/VisuallyHidden';
import styles from './CustomSelectInput.module.css';

const sizeYClassNames = {
Expand Down

0 comments on commit 673dbec

Please sign in to comment.