Skip to content

Commit

Permalink
fix: Fixed can't found module file in the dropdown component (#403)
Browse files Browse the repository at this point in the history
  • Loading branch information
vtrbo committed Feb 22, 2024
1 parent 3a49603 commit 33411de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/ButtonGroup/src/types.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/// <reference types="svelte" />
import type { IKunTypePro } from '@ikun-ui/utils/src';
import type { IKunTypePro } from '@ikun-ui/utils';
import type { ClassValue } from 'clsx';
import { IKunSize } from '@ikun-ui/utils/src';
import { IKunSize } from '@ikun-ui/utils';

export type KButtonGroupProps = {
type: IKunTypePro;
Expand Down
2 changes: 1 addition & 1 deletion components/Dropdown/src/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import type { KDropdownProps } from './types';
import { KPopover } from '@ikun-ui/popover';
import { createEventDispatcher, setContext } from 'svelte';
import { KScrollbar } from '@ikun-ui/scrollbar/src/index.js';
import { KScrollbar } from '@ikun-ui/scrollbar';
export let placement: KDropdownProps['placement'] = 'bottom';
// hover click manual
Expand Down

0 comments on commit 33411de

Please sign in to comment.