diff --git a/src/shared/lib/index.ts b/src/shared/lib/index.ts index 99ade48..e2f6b3f 100644 --- a/src/shared/lib/index.ts +++ b/src/shared/lib/index.ts @@ -24,7 +24,14 @@ export { type VirtualizerOptions, } from './helpers'; -export { splitArray } from './utils'; +export { + buildQueryString, + clampNumber, + getDecimalPlaces, + roundToStepPrecision, + smoothScroll, + splitArray, +} from './utils'; export { springySlideFade } from './transitions'; diff --git a/src/shared/lib/utils/index.ts b/src/shared/lib/utils/index.ts index 08a788f..8bfc45f 100644 --- a/src/shared/lib/utils/index.ts +++ b/src/shared/lib/utils/index.ts @@ -11,4 +11,5 @@ export { clampNumber } from './clampNumber/clampNumber'; export { debounce } from './debounce/debounce'; export { getDecimalPlaces } from './getDecimalPlaces/getDecimalPlaces'; export { roundToStepPrecision } from './roundToStepPrecision/roundToStepPrecision'; +export { smoothScroll } from './smoothScroll/smoothScroll'; export { splitArray } from './splitArray/splitArray';