@webitel/ui-datalist 1.0.42 → 1.0.44
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-datalist",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.44",
|
|
4
4
|
"description": "Toolkit for building data lists in webitel ui system",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build:types": "vue-tsc -p ./tsconfig.build.json",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@vuelidate/core": "^2.0.3",
|
|
53
53
|
"@vuelidate/validators": "^2.0.4",
|
|
54
54
|
"@webitel/styleguide": "^24.12.26",
|
|
55
|
-
"@webitel/ui-sdk": "^25.6.
|
|
55
|
+
"@webitel/ui-sdk": "^25.6.37",
|
|
56
56
|
"zod": "^3.25.55"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
@@ -28,7 +28,6 @@ const props = defineProps<{
|
|
|
28
28
|
* default search name is used when there are no search modes
|
|
29
29
|
*/
|
|
30
30
|
singleSearchName?: string;
|
|
31
|
-
value?: string;
|
|
32
31
|
}>();
|
|
33
32
|
|
|
34
33
|
const defaultSearchName = props.singleSearchName || 'search';
|
|
@@ -42,7 +41,7 @@ const emit = defineEmits<{
|
|
|
42
41
|
const { t } = useI18n();
|
|
43
42
|
|
|
44
43
|
const searchMode: Ref<FilterName> = ref();
|
|
45
|
-
const localSearchValue =
|
|
44
|
+
const localSearchValue = ref('');
|
|
46
45
|
|
|
47
46
|
const hasFilter = (filterName = searchMode.value) => {
|
|
48
47
|
return props.filtersManager.filters.has(filterName);
|
|
@@ -10,7 +10,6 @@ type __VLS_Props = {
|
|
|
10
10
|
* default search name is used when there are no search modes
|
|
11
11
|
*/
|
|
12
12
|
singleSearchName?: string;
|
|
13
|
-
value?: string;
|
|
14
13
|
};
|
|
15
14
|
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
15
|
"filter:add": (args_0: FilterInitParams) => any;
|