@topvisor/ui 1.4.3-fixTabsView.1 → 1.4.3-fixTabsView.3
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/icomoon/Topvisor icons.json +272 -249
- package/icomoon/demo.html +15 -1
- package/icomoon/fonts/Topvisor-2.eot +0 -0
- package/icomoon/fonts/Topvisor-2.svg +1 -0
- package/icomoon/fonts/Topvisor-2.ttf +0 -0
- package/icomoon/fonts/Topvisor-2.woff +0 -0
- package/icomoon/selection.json +1 -1
- package/icomoon/style.css +8 -5
- package/package.json +1 -1
- package/project/project.amd.js +1 -1
- package/project/project.amd.js.map +1 -1
- package/project/project.js +562 -558
- 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 +8 -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,10 +6,18 @@ 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
|
+
* Закрыть попап и выполнить переход на страницу проекта
|
|
11
|
+
*/
|
|
12
|
+
export declare const navigateToProject: (link: string, event?: PointerEvent) => void;
|
|
9
13
|
/**
|
|
10
14
|
* Сгенерировать ссылку на проект
|
|
11
15
|
*/
|
|
12
16
|
export declare const genProjectLink: (projectId: number) => string;
|
|
17
|
+
/**
|
|
18
|
+
* Вернуть базовый хост без поддомена
|
|
19
|
+
*/
|
|
20
|
+
export declare const getBaseHost: () => string;
|
|
13
21
|
/**
|
|
14
22
|
* Сгенерировать ссылку на сайт проекта
|
|
15
23
|
*/
|