feature/project-redesign #28

Merged
ilia merged 88 commits from feature/project-redesign into main 2026-03-02 19:46:39 +00:00
12 changed files with 35 additions and 33 deletions
Showing only changes of commit 9f84769fba - Show all commits

View File

@@ -1,2 +1,5 @@
export { scrollBreadcrumbsStore } from './model';
export {
handleTitleStatusChanged,
scrollBreadcrumbsStore,
} from './model';
export { BreadcrumbHeader } from './ui';

View File

@@ -1 +1,2 @@
export * from './services';
export * from './store/scrollBreadcrumbsStore.svelte';

View File

@@ -0,0 +1 @@
export { handleTitleStatusChanged } from './handleTitleStatusChanged/handleTitleStatusChanged';

View File

@@ -131,6 +131,5 @@ export {
// UI elements
export {
FontApplicator,
FontListItem,
FontVirtualList,
} from './ui';

View File

@@ -1,9 +1,7 @@
import FontApplicator from './FontApplicator/FontApplicator.svelte';
import FontListItem from './FontListItem/FontListItem.svelte';
import FontVirtualList from './FontVirtualList/FontVirtualList.svelte';
export {
FontApplicator,
FontListItem,
FontVirtualList,
};

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';

View File

@@ -1 +1,4 @@
export { FontSearch } from './ui';
export {
FontSearch,
FontSearchSection,
} from './ui';

View File

@@ -1,3 +1,2 @@
import FontSearch from './FontSearch/FontSearch.svelte';
export { FontSearch };
export { default as FontSearch } from './FontSearch/FontSearch.svelte';
export { default as FontSearchSection } from './FontSearchSection/FontSearchSection.svelte';

View File

@@ -1 +1,4 @@
export { SampleList } from './ui';
export {
SampleList,
SampleListSection,
} from './ui';

View File

@@ -1,3 +1,2 @@
import SampleList from './SampleList/SampleList.svelte';
export { SampleList };
export { default as SampleList } from './SampleList/SampleList.svelte';
export { default as SampleListSection } from './SampleListSection/SampleListSection.svelte';

View File

@@ -1,2 +1,6 @@
export { ComparisonSlider } from './ComparisonSlider';
export { FontSearch } from './FontSearch';
export {
SampleList,
SampleListSection,
} from './SampleList';