@webitel/ui-datalist 1.1.61 → 1.1.63
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/src/modules/filters/components/config/static-view/static-filter-field.vue +2 -1
- package/src/modules/filters/components/table-filters-panel.vue +3 -3
- package/src/modules/filters/components/types/Filter.types.ts +2 -6
- package/src/modules/filters/modules/filterConfig/components/case-assignee/case-assignee-filter-value-field.vue +24 -5
- package/src/modules/filters/modules/filterConfig/components/case-close-reason-groups/case-close-reason-groups-filter-value-field.vue +30 -9
- package/src/modules/filters/modules/filterConfig/components/case-sla-condition/case-sla-condition-filter-value-field.vue +30 -10
- package/src/modules/filters/modules/filterConfig/components/case-status/case-status-filter-value-field.vue +30 -9
- package/src/modules/filters/modules/filterConfig/components/rating/rating-from-to-filter-value-field.vue +20 -15
- package/src/modules/filters/modules/filterConfig/components/score/score-from-to-filter-value-field.vue +16 -11
- package/types/.tsbuildinfo +1 -1
- package/types/modules/filters/components/config/static-view/static-filter-field.vue.d.ts +2 -2
- package/types/modules/filters/components/preview/dynamic-filter-preview.vue.d.ts +3 -2
- package/types/modules/filters/components/table-filters-panel.vue.d.ts +5 -5
- package/types/modules/filters/components/types/Filter.types.d.ts +2 -2
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { StaticFilterProps } from '../../types/Filter.types';
|
|
2
2
|
declare const __VLS_export: import("vue").DefineComponent<StaticFilterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
-
"update:filter": (args_0: import("
|
|
3
|
+
"update:filter": (args_0: import("../../..").FilterInitParams) => any;
|
|
4
4
|
"delete:filter": (args_0: import("../../..").IFilter) => any;
|
|
5
5
|
"add:filter": (args_0: import("../../..").FilterInitParams) => any;
|
|
6
6
|
}, string, import("vue").PublicProps, Readonly<StaticFilterProps> & Readonly<{
|
|
7
|
-
"onUpdate:filter"?: ((args_0: import("
|
|
7
|
+
"onUpdate:filter"?: ((args_0: import("../../..").FilterInitParams) => any) | undefined;
|
|
8
8
|
"onDelete:filter"?: ((args_0: import("../../..").IFilter) => any) | undefined;
|
|
9
9
|
"onAdd:filter"?: ((args_0: import("../../..").FilterInitParams) => any) | undefined;
|
|
10
10
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { FilterInitParams } from '../../classes/Filter';
|
|
1
2
|
import { DynamicFilterProps } from '../types/Filter.types';
|
|
2
3
|
declare var __VLS_38: {}, __VLS_51: {
|
|
3
4
|
hide: any;
|
|
@@ -8,10 +9,10 @@ type __VLS_Slots = {} & {
|
|
|
8
9
|
form?: (props: typeof __VLS_51) => any;
|
|
9
10
|
};
|
|
10
11
|
declare const __VLS_base: import("vue").DefineComponent<DynamicFilterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
-
"update:filter": (args_0:
|
|
12
|
+
"update:filter": (args_0: FilterInitParams) => any;
|
|
12
13
|
"delete:filter": (args_0: import("../..").IFilter) => any;
|
|
13
14
|
}, string, import("vue").PublicProps, Readonly<DynamicFilterProps> & Readonly<{
|
|
14
|
-
"onUpdate:filter"?: ((args_0:
|
|
15
|
+
"onUpdate:filter"?: ((args_0: FilterInitParams) => any) | undefined;
|
|
15
16
|
"onDelete:filter"?: ((args_0: import("../..").IFilter) => any) | undefined;
|
|
16
17
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
18
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { StoreGeneric } from 'pinia';
|
|
2
2
|
import { WebitelProtoDataField } from 'webitel-sdk';
|
|
3
|
-
import {
|
|
3
|
+
import { FilterInitParams, IFilter } from '../classes/Filter';
|
|
4
4
|
import { IFiltersManager } from '../classes/FiltersManager';
|
|
5
5
|
import { AnyFilterConfig } from '../modules/filterConfig/classes/FilterConfig';
|
|
6
6
|
import { FilterOption } from '../modules/filterConfig/enums/FilterOption';
|
|
@@ -55,16 +55,16 @@ type Props = {
|
|
|
55
55
|
staticMode?: boolean;
|
|
56
56
|
};
|
|
57
57
|
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
58
|
-
"filter:add": (args_0:
|
|
59
|
-
"filter:update": (args_0:
|
|
58
|
+
"filter:add": (args_0: FilterInitParams) => any;
|
|
59
|
+
"filter:update": (args_0: FilterInitParams) => any;
|
|
60
60
|
"filter:delete": (args_0: IFilter) => any;
|
|
61
61
|
hide: () => any;
|
|
62
62
|
"filter:reset-all": () => any;
|
|
63
63
|
"preset:apply": (args_0: string) => any;
|
|
64
64
|
"preset:restore": (args_0: string) => any;
|
|
65
65
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
66
|
-
"onFilter:add"?: ((args_0:
|
|
67
|
-
"onFilter:update"?: ((args_0:
|
|
66
|
+
"onFilter:add"?: ((args_0: FilterInitParams) => any) | undefined;
|
|
67
|
+
"onFilter:update"?: ((args_0: FilterInitParams) => any) | undefined;
|
|
68
68
|
"onFilter:delete"?: ((args_0: IFilter) => any) | undefined;
|
|
69
69
|
onHide?: (() => any) | undefined;
|
|
70
70
|
"onFilter:reset-all"?: (() => any) | undefined;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { FilterInitParams, IFilter } from '../../classes/Filter';
|
|
2
2
|
import type { AnyFilterConfig } from '../../modules/filterConfig';
|
|
3
3
|
export interface FilterEmits {
|
|
4
4
|
'update:filter': [
|
|
5
|
-
|
|
5
|
+
FilterInitParams
|
|
6
6
|
];
|
|
7
7
|
'delete:filter': [
|
|
8
8
|
IFilter
|