@topvisor/ui 1.3.3 → 1.3.4-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.
- package/assets/project.css +1 -1
- package/package.json +1 -1
- package/project/project.amd.js +1 -1
- package/project/project.amd.js.map +1 -1
- package/project/project.js +320 -317
- package/project/project.js.map +1 -1
- package/src/components/project/tagSelector/popupOpener/types.d.ts +6 -3
- package/src/components/project/tagSelector/tagSelector.vue.d.ts +1 -0
- package/src/components/project/tagSelector/types.d.ts +9 -2
- package/src/components/project/tagSelector/utils/el.d.ts +3 -3
|
@@ -2,11 +2,11 @@ import { Ref } from 'vue';
|
|
|
2
2
|
import { OpenerProps as PopupOpenerProps } from '../../../popup/popup/types';
|
|
3
3
|
import { Props as TagSelectorOpenerProps } from '../popupOpener/types';
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* Сгенерировать элемент для открытия popup с выбором тегов
|
|
6
6
|
*
|
|
7
|
-
* Альтернатива
|
|
7
|
+
* Альтернатива TopTagSelectorPopupOpener для работы вне vue
|
|
8
8
|
*
|
|
9
|
-
* Требует монтирования компонента
|
|
9
|
+
* Требует монтирования компонента TopTagSelector
|
|
10
10
|
*/
|
|
11
11
|
export declare const genElPopupOpener: (props: TagSelectorOpenerProps & {
|
|
12
12
|
modelValue: TagSelectorOpenerProps["modelValue"] | Ref<TagSelectorOpenerProps["modelValue"]>;
|