@topvisor/ui 1.4.3-projectSelector.1 → 1.4.3-updateGroupSelector.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/.chunks/policy.vue_vue_type_style_index_0_lang-6S_OFLu6.amd.js +2 -0
- package/.chunks/policy.vue_vue_type_style_index_0_lang-6S_OFLu6.amd.js.map +1 -0
- package/.chunks/policy.vue_vue_type_style_index_0_lang-BRUOmEM8.es.js +498 -0
- package/.chunks/policy.vue_vue_type_style_index_0_lang-BRUOmEM8.es.js.map +1 -0
- package/assets/policy.css +1 -1
- package/assets/project.css +1 -1
- package/formsExt/formsExt.amd.js +1 -1
- package/formsExt/formsExt.js +1 -1
- package/package.json +1 -1
- package/popup/popup.amd.js +1 -1
- package/popup/popup.amd.js.map +1 -1
- package/popup/popup.js +2 -2
- package/popup/popup.js.map +1 -1
- package/project/project.amd.js +1 -1
- package/project/project.amd.js.map +1 -1
- package/project/project.js +532 -869
- package/project/project.js.map +1 -1
- package/src/components/formsExt/selector2/composables/useAPI.d.ts +0 -2
- package/src/components/formsExt/selector2/composables/useMenu.d.ts +1 -3
- package/src/components/formsExt/selector2/selector2.vue.d.ts +1 -2
- package/src/components/formsExt/selector2/types.d.ts +8 -26
- package/src/components/popup/popup/listItem.vue.d.ts +4 -24
- package/src/components/popup/popup/types.d.ts +0 -1
- package/src/components/project/groupSelector/folders/types.d.ts +1 -0
- package/src/components/project/groupSelector/folders/utils.d.ts +417 -38
- package/src/components/project/groupSelector/groupSelector.vue.d.ts +1 -0
- package/src/components/project/groupSelector/groups/groups.vue.d.ts +5 -10
- package/src/components/project/groupSelector/groups/types.d.ts +1 -0
- package/src/components/project/groupSelector/groups/utils.d.ts +791 -57
- package/src/components/project/groupSelector/types.d.ts +6 -0
- package/src/components/project/project.d.ts +0 -1
- package/.chunks/policy.vue_vue_type_style_index_0_lang-BAP-FIuQ.es.js +0 -515
- package/.chunks/policy.vue_vue_type_style_index_0_lang-BAP-FIuQ.es.js.map +0 -1
- package/.chunks/policy.vue_vue_type_style_index_0_lang-EZT5LjSx.amd.js +0 -2
- package/.chunks/policy.vue_vue_type_style_index_0_lang-EZT5LjSx.amd.js.map +0 -1
- package/src/components/project/projectSelector/cache.d.ts +0 -30
- package/src/components/project/projectSelector/projectSelector.vue.d.ts +0 -128
- package/src/components/project/projectSelector/submenu/submenu.vue.d.ts +0 -4
- package/src/components/project/projectSelector/submenu/types.d.ts +0 -17
- package/src/components/project/projectSelector/types.d.ts +0 -52
- package/src/components/project/projectSelector/utils.d.ts +0 -232
|
@@ -37,22 +37,18 @@ declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, Compo
|
|
|
37
37
|
readonly isError?: boolean | undefined;
|
|
38
38
|
readonly openByFocusInput?: boolean | undefined;
|
|
39
39
|
readonly searchType?: "none" | "inline" | "popup" | undefined;
|
|
40
|
+
readonly searchFields: string[];
|
|
40
41
|
readonly placeholder?: string | undefined;
|
|
41
|
-
readonly hasCloserBtn?: boolean | undefined;
|
|
42
42
|
readonly api?: (Api.ClientRequest<any> | Api.ClientRequestCustom<any, any, any>) | undefined;
|
|
43
43
|
readonly apiSetSearchParams?: ((api: NonNullable< Props["api"]>, search: string) => void) | undefined;
|
|
44
44
|
readonly minLength?: number | undefined;
|
|
45
45
|
readonly useCache?: boolean | undefined;
|
|
46
46
|
readonly appendSearchToResult?: boolean | undefined;
|
|
47
|
-
readonly appendSearchToResultCond?: ((search: string) => boolean) | undefined;
|
|
48
|
-
readonly appendWithoutSelect?: boolean | undefined;
|
|
49
47
|
readonly multiselect?: boolean | undefined;
|
|
50
48
|
readonly useAllItem?: boolean | string | undefined;
|
|
51
49
|
readonly addChanger?: boolean | undefined;
|
|
52
50
|
readonly buttonProps?: Props | undefined;
|
|
53
51
|
readonly selectedAsPlaceholder?: boolean | undefined;
|
|
54
|
-
readonly openerShortcut?: string | undefined;
|
|
55
|
-
readonly onOpen?: (() => any) | undefined;
|
|
56
52
|
readonly "onUpdate:modelValue"?: ((value: SelectorItem | SelectorItem[]) => any) | undefined;
|
|
57
53
|
readonly onAppendItem?: ((item: SelectorItem) => any) | undefined;
|
|
58
54
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
@@ -73,24 +69,23 @@ declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, Compo
|
|
|
73
69
|
$root: ComponentPublicInstance | null;
|
|
74
70
|
$parent: ComponentPublicInstance | null;
|
|
75
71
|
$host: Element | null;
|
|
76
|
-
$emit: ((event: "
|
|
72
|
+
$emit: ((event: "update:modelValue", value: SelectorItem | SelectorItem[]) => void) & ((event: "appendItem", item: SelectorItem) => void);
|
|
77
73
|
$el: any;
|
|
78
74
|
$options: ComponentOptionsBase<Readonly<{
|
|
79
75
|
modelValue: Props["modelValue"];
|
|
80
76
|
} & Props> & Readonly<{
|
|
81
|
-
onOpen?: (() => any) | undefined;
|
|
82
77
|
"onUpdate:modelValue"?: ((value: SelectorItem | SelectorItem[]) => any) | undefined;
|
|
83
78
|
onAppendItem?: ((item: SelectorItem) => any) | undefined;
|
|
84
79
|
}>, {
|
|
85
80
|
resetCache: (resetAPICache?: boolean) => void;
|
|
86
81
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
87
|
-
open: () => any;
|
|
88
82
|
"update:modelValue": (value: SelectorItem | SelectorItem[]) => any;
|
|
89
83
|
appendItem: (item: SelectorItem) => any;
|
|
90
84
|
}, string, {
|
|
91
85
|
size: Size;
|
|
92
86
|
openByFocusInput: boolean;
|
|
93
87
|
items: SelectorItem[];
|
|
88
|
+
searchFields: string[];
|
|
94
89
|
searchType: "none" | "inline" | "popup";
|
|
95
90
|
minLength: number;
|
|
96
91
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
@@ -117,15 +112,15 @@ declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, Compo
|
|
|
117
112
|
size: Size;
|
|
118
113
|
openByFocusInput: boolean;
|
|
119
114
|
items: SelectorItem[];
|
|
115
|
+
searchFields: string[];
|
|
120
116
|
searchType: "none" | "inline" | "popup";
|
|
121
117
|
minLength: number;
|
|
122
118
|
}> & Omit<Readonly<{
|
|
123
119
|
modelValue: Props["modelValue"];
|
|
124
120
|
} & Props> & Readonly<{
|
|
125
|
-
onOpen?: (() => any) | undefined;
|
|
126
121
|
"onUpdate:modelValue"?: ((value: SelectorItem | SelectorItem[]) => any) | undefined;
|
|
127
122
|
onAppendItem?: ((item: SelectorItem) => any) | undefined;
|
|
128
|
-
}>, "resetCache" | ("size" | "openByFocusInput" | "items" | "searchType" | "minLength")> & ShallowUnwrapRef<{
|
|
123
|
+
}>, "resetCache" | ("size" | "openByFocusInput" | "items" | "searchFields" | "searchType" | "minLength")> & ShallowUnwrapRef<{
|
|
129
124
|
resetCache: (resetAPICache?: boolean) => void;
|
|
130
125
|
}> & {} & ComponentCustomProperties & {} & {
|
|
131
126
|
$slots: Readonly< Slots> & Slots;
|