chore: add/delete imports/exports

This commit is contained in:
Ilia Mashkov
2026-02-27 12:48:14 +03:00
parent 1b0451faff
commit 9f84769fba
12 changed files with 35 additions and 33 deletions

View File

@@ -1,13 +1 @@
import type { ComponentProps } from 'svelte';
import Input from './Input.svelte';
type InputProps = ComponentProps<typeof Input>;
type InputSize = InputProps['size'];
type InputVariant = InputProps['variant'];
export {
Input,
type InputProps,
type InputSize,
type InputVariant,
};
export { default as Input } from './Input.svelte';

View File

@@ -1,16 +1,17 @@
export { default as CheckboxFilter } from './CheckboxFilter/CheckboxFilter.svelte';
export {
Button,
ButtonGroup,
IconButton,
ToggleButton,
} from './Button';
export { default as ComboControl } from './ComboControl/ComboControl.svelte';
export { default as ComboControlV2 } from './ComboControlV2/ComboControlV2.svelte';
export { default as ContentEditable } from './ContentEditable/ContentEditable.svelte';
export { default as Drawer } from './Drawer/Drawer.svelte';
export { default as ExpandableWrapper } from './ExpandableWrapper/ExpandableWrapper.svelte';
export { default as FilterGroup } from './FilterGroup/FilterGroup.svelte';
export { default as Footnote } from './Footnote/Footnote.svelte';
export { default as IconButton } from './IconButton/IconButton.svelte';
export {
Input,
type InputSize,
type InputVariant,
} from './Input';
export { default as GridBackground } from './GridBackground/GridBackground.svelte';
export { default as Input } from './Input/Input.svelte';
export { default as Label } from './Label/Label.svelte';
export { default as Loader } from './Loader/Loader.svelte';
export { default as Logo } from './Logo/Logo.svelte';
@@ -20,4 +21,7 @@ export { default as Section } from './Section/Section.svelte';
export { default as SidebarMenu } from './SidebarMenu/SidebarMenu.svelte';
export { default as Skeleton } from './Skeleton/Skeleton.svelte';
export { default as Slider } from './Slider/Slider.svelte';
export { default as Stat } from './Stat/Stat.svelte';
export { default as VirtualList } from './VirtualList/VirtualList.svelte';
export type { TitleStatusChangeHandler } from './Section/types';