chore: add import shortcuts

This commit is contained in:
Ilia Mashkov
2026-01-18 14:39:38 +03:00
parent 5d23a2af55
commit ef259c6fce
4 changed files with 13 additions and 0 deletions

View File

@@ -20,3 +20,9 @@ export {
} from './createVirtualizer/createVirtualizer.svelte'; } from './createVirtualizer/createVirtualizer.svelte';
export { createDebouncedState } from './createDebouncedState/createDebouncedState.svelte'; export { createDebouncedState } from './createDebouncedState/createDebouncedState.svelte';
export {
createEntityStore,
type Entity,
type EntityStore,
} from './createEntityStore/createEntityStore.svelte';

View File

@@ -2,9 +2,12 @@ export {
type ControlDataModel, type ControlDataModel,
type ControlModel, type ControlModel,
createDebouncedState, createDebouncedState,
createEntityStore,
createFilter, createFilter,
createTypographyControl, createTypographyControl,
createVirtualizer, createVirtualizer,
type Entity,
type EntityStore,
type Filter, type Filter,
type FilterModel, type FilterModel,
type Property, type Property,
@@ -15,3 +18,4 @@ export {
} from './helpers'; } from './helpers';
export { motion } from './accessibility/motion.svelte'; export { motion } from './accessibility/motion.svelte';
export { splitArray } from './utils';

View File

@@ -11,3 +11,4 @@ export { clampNumber } from './clampNumber/clampNumber';
export { debounce } from './debounce/debounce'; export { debounce } from './debounce/debounce';
export { getDecimalPlaces } from './getDecimalPlaces/getDecimalPlaces'; export { getDecimalPlaces } from './getDecimalPlaces/getDecimalPlaces';
export { roundToStepPrecision } from './roundToStepPrecision/roundToStepPrecision'; export { roundToStepPrecision } from './roundToStepPrecision/roundToStepPrecision';
export { splitArray } from './splitArray/splitArray';

View File

@@ -6,12 +6,14 @@
import CheckboxFilter from './CheckboxFilter/CheckboxFilter.svelte'; import CheckboxFilter from './CheckboxFilter/CheckboxFilter.svelte';
import ComboControl from './ComboControl/ComboControl.svelte'; import ComboControl from './ComboControl/ComboControl.svelte';
import ContentEditable from './ContentEditable/ContentEditable.svelte';
import SearchBar from './SearchBar/SearchBar.svelte'; import SearchBar from './SearchBar/SearchBar.svelte';
import VirtualList from './VirtualList/VirtualList.svelte'; import VirtualList from './VirtualList/VirtualList.svelte';
export { export {
CheckboxFilter, CheckboxFilter,
ComboControl, ComboControl,
ContentEditable,
SearchBar, SearchBar,
VirtualList, VirtualList,
}; };