@dxtmisha/functional 1.13.7 → 1.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,9 @@
1
+ import { ShallowRef } from 'vue';
2
+ /**
3
+ * Creates a reactive variable to manage URL query parameters.
4
+ *
5
+ * Создает реактивную переменную для управления query-параметрами URL.
6
+ * @param name value name / название значения
7
+ * @param defaultValue default value / значение по умолчанию
8
+ */
9
+ export declare function useQueryRef<T>(name: string, defaultValue?: T | (() => T)): ShallowRef<T>;
@@ -31,6 +31,7 @@ export * from './composables/ref/useLazyItemByMarginRef';
31
31
  export * from './composables/ref/useLazyRef';
32
32
  export * from './composables/ref/useLoadingRef';
33
33
  export * from './composables/ref/useMeta';
34
+ export * from './composables/ref/useQueryRef';
34
35
  export * from './composables/ref/useRouterList';
35
36
  export * from './composables/ref/useSearchRef';
36
37
  export * from './composables/ref/useSearchValueRef';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dxtmisha/functional",
3
3
  "private": false,
4
- "version": "1.13.7",
4
+ "version": "1.14.0",
5
5
  "type": "module",
6
6
  "description": "A comprehensive library of utilities, base classes, and Vue 3 composables for reactive web development. Extends @dxtmisha/functional-basic with Composition API.",
7
7
  "keywords": [