@dxtmisha/functional 1.11.6 → 1.11.8
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.
- package/CHANGELOG.md +79 -0
- package/ai-description.txt +5 -0
- package/ai-doc.ru.txt +34 -0
- package/ai-doc.txt +34 -0
- package/ai-types.txt +629 -452
- package/dist/classes/design/DesignAbstract.d.ts +61 -0
- package/dist/classes/design/DesignAsyncAbstract.d.ts +28 -0
- package/dist/classes/design/DesignChanged.d.ts +42 -0
- package/dist/classes/design/DesignComp.d.ts +4 -0
- package/dist/classes/design/DesignComponents.d.ts +81 -0
- package/dist/classes/design/DesignConstructorAbstract.d.ts +150 -0
- package/dist/classes/ref/DatetimeRef.d.ts +123 -0
- package/dist/classes/ref/EffectScopeGlobal.d.ts +22 -0
- package/dist/classes/ref/EventRef.d.ts +22 -0
- package/dist/classes/ref/GeoFlagRef.d.ts +51 -0
- package/dist/classes/ref/GeoIntlRef.d.ts +213 -0
- package/dist/classes/ref/GeoRef.d.ts +58 -0
- package/dist/classes/ref/ListDataRef.d.ts +359 -0
- package/dist/classes/ref/RouterItemRef.d.ts +61 -0
- package/dist/classes/ref/ScrollbarWidthRef.d.ts +22 -0
- package/dist/composables/ref/useApiAsyncRef.d.ts +18 -0
- package/dist/composables/ref/useApiDelete.d.ts +20 -0
- package/dist/composables/ref/useApiGet.d.ts +20 -0
- package/dist/composables/ref/useApiManagementAsyncRef.d.ts +49 -0
- package/dist/composables/ref/useApiManagementRef.d.ts +155 -0
- package/dist/composables/ref/useApiPost.d.ts +20 -0
- package/dist/composables/ref/useApiPut.d.ts +20 -0
- package/dist/composables/ref/useApiRef.d.ts +106 -0
- package/dist/composables/ref/useApiRequest.d.ts +28 -0
- package/dist/composables/ref/useBroadcastValueRef.d.ts +11 -0
- package/dist/composables/ref/useCookieRef.d.ts +11 -0
- package/dist/composables/ref/useFormattersRef.d.ts +21 -0
- package/dist/composables/ref/useGeoIntlRef.d.ts +7 -0
- package/dist/composables/ref/useHashRef.d.ts +9 -0
- package/dist/composables/ref/useLazyItemByMarginRef.d.ts +22 -0
- package/dist/composables/ref/useLazyRef.d.ts +42 -0
- package/dist/composables/ref/useLoadingRef.d.ts +7 -0
- package/dist/composables/ref/useMeta.d.ts +223 -0
- package/dist/composables/ref/useRouterList.d.ts +28 -0
- package/dist/composables/ref/useSearchRef.d.ts +36 -0
- package/dist/composables/ref/useSearchValueRef.d.ts +19 -0
- package/dist/composables/ref/useSessionRef.d.ts +9 -0
- package/dist/composables/ref/useStorageRef.d.ts +10 -0
- package/dist/composables/ref/useTranslateRef.d.ts +40 -0
- package/dist/flags.d.ts +1 -0
- package/dist/functions/basic.d.ts +1 -0
- package/dist/functions/computedAsync.d.ts +13 -0
- package/dist/functions/computedByLanguage.d.ts +15 -0
- package/dist/functions/computedEternity.d.ts +15 -0
- package/dist/functions/dxtFunctionalPlugin.d.ts +61 -0
- package/dist/functions/executeUse.d.ts +216 -0
- package/dist/functions/getInject.d.ts +7 -0
- package/dist/functions/getOptions.d.ts +10 -0
- package/dist/functions/ref/getBindRef.d.ts +13 -0
- package/dist/functions/ref/getRef.d.ts +8 -0
- package/dist/functions/ref/render.d.ts +13 -0
- package/dist/functions/ref/setRef.d.ts +9 -0
- package/dist/functions/ref/toRefItem.d.ts +9 -0
- package/dist/functions/render/getBind.d.ts +14 -0
- package/dist/functions/render/getClassName.d.ts +8 -0
- package/dist/functions/render/getIndexForRender.d.ts +10 -0
- package/dist/functions/toBind.d.ts +10 -0
- package/dist/functions/toBinds.d.ts +9 -0
- package/dist/library.d.ts +62 -2803
- package/dist/library.js +105 -71
- package/dist/types/apiTypes.d.ts +66 -0
- package/dist/types/constructorTypes.d.ts +126 -0
- package/dist/types/listTypes.d.ts +63 -0
- package/dist/types/refTypes.d.ts +36 -0
- package/dist/types/searchTypes.d.ts +6 -0
- package/package.json +9 -5
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { RefOrNormal } from './refTypes';
|
|
2
|
+
import { SearchItem, SearchListValue } from '@dxtmisha/functional-basic';
|
|
3
|
+
/** Search list data / Данные списка поиска */
|
|
4
|
+
export type SearchListValueRef<T extends SearchItem> = RefOrNormal<SearchListValue<T>>;
|
|
5
|
+
/** Search list input / Входные данные списка поиска */
|
|
6
|
+
export type SearchListInput<T extends SearchItem> = SearchListValueRef<T> | (() => SearchListValueRef<T>);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxtmisha/functional",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.11.
|
|
4
|
+
"version": "1.11.8",
|
|
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": [
|
|
@@ -40,16 +40,20 @@
|
|
|
40
40
|
"preview": "vite preview",
|
|
41
41
|
"test": "vitest",
|
|
42
42
|
"library": "dxt-library",
|
|
43
|
-
"
|
|
43
|
+
"types": "dxt-types",
|
|
44
44
|
"prepublishOnly": "npm run library && npm run build",
|
|
45
|
-
"
|
|
45
|
+
"publish-to-npm": "npm publish --access public"
|
|
46
46
|
},
|
|
47
47
|
"files": [
|
|
48
48
|
"dist",
|
|
49
|
+
"ai-description.txt",
|
|
50
|
+
"ai-doc.ru.txt",
|
|
51
|
+
"ai-doc.txt",
|
|
49
52
|
"ai-types.txt",
|
|
50
|
-
"
|
|
53
|
+
"CHANGELOG.md",
|
|
54
|
+
"LICENSE",
|
|
51
55
|
"package.json",
|
|
52
|
-
"
|
|
56
|
+
"README.md"
|
|
53
57
|
],
|
|
54
58
|
"main": "dist/library.js",
|
|
55
59
|
"module": "dist/library.js",
|