@topvisor/ui 1.4.3-fixTabsView.1 → 1.4.3-fixTabsView.2
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/package.json +1 -1
- package/project/project.amd.js +1 -1
- package/project/project.amd.js.map +1 -1
- package/project/project.js +279 -280
- package/project/project.js.map +1 -1
- package/src/components/project/projectSelector/projectSelector.vue.d.ts +3 -3
- package/src/components/project/projectSelector/types.d.ts +4 -4
- package/src/components/project/projectSelector/utils.d.ts +4 -0
|
@@ -6,12 +6,12 @@ import { TopLibPopup } from '../../popup/lib/popup';
|
|
|
6
6
|
import { OnCleanup } from '@vue/reactivity';
|
|
7
7
|
type __VLS_Props = Props;
|
|
8
8
|
type __VLS_PublicProps = {
|
|
9
|
-
|
|
9
|
+
modelValue?: NonNullable<Props['modelValue']>;
|
|
10
10
|
} & __VLS_Props;
|
|
11
11
|
declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
12
|
-
"update:
|
|
12
|
+
"update:modelValue": (value: Item) => any;
|
|
13
13
|
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
14
|
-
"onUpdate:
|
|
14
|
+
"onUpdate:modelValue"?: ((value: Item) => any) | undefined;
|
|
15
15
|
}>, {
|
|
16
16
|
addLinksToProjects: boolean;
|
|
17
17
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { Props as ButtonProps } from '../../forms/button/types';
|
|
2
2
|
import { Item } from '../../formsExt/selector2/types';
|
|
3
3
|
export interface Props {
|
|
4
|
+
/**
|
|
5
|
+
* Выбранный проект
|
|
6
|
+
*/
|
|
7
|
+
modelValue?: Item;
|
|
4
8
|
/**
|
|
5
9
|
* Настроенный API клиент для выполнения запросов
|
|
6
10
|
*
|
|
@@ -11,10 +15,6 @@ export interface Props {
|
|
|
11
15
|
* @const
|
|
12
16
|
*/
|
|
13
17
|
client: Api.Client<Api.TV.Paths, true>;
|
|
14
|
-
/**
|
|
15
|
-
* Выбранный проект
|
|
16
|
-
*/
|
|
17
|
-
project?: Item;
|
|
18
18
|
/**
|
|
19
19
|
* Нужно ли добавлять ссылки на проекты
|
|
20
20
|
*/
|
|
@@ -6,6 +6,10 @@ import { components } from 'topvisor-openapi/src/ts/TV/API/Params/FiltersTrait';
|
|
|
6
6
|
import { components } from 'topvisor-openapi/src/ts/TV/API/Params/LimitTrait';
|
|
7
7
|
import { components } from 'topvisor-openapi/src/ts/TV/API/Params/OffsetTrait';
|
|
8
8
|
import { components } from 'topvisor-openapi/src/ts/TV/API/Types/UrlShort';
|
|
9
|
+
/**
|
|
10
|
+
* Выполняет переход по ссылке с добавлением релевантных hash-параметров текущего проекта
|
|
11
|
+
*/
|
|
12
|
+
export declare const navigateTo: (link: string) => void;
|
|
9
13
|
/**
|
|
10
14
|
* Сгенерировать ссылку на проект
|
|
11
15
|
*/
|