@webitel/ui-datalist 1.1.57 → 1.1.59
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/card/composables/useCardAnyFieldEditedWatcher.ts +6 -2
- package/src/modules/card/composables/useCardComponent.ts +4 -1
- package/src/modules/card/composables/useCardSaveAction.ts +2 -0
- package/src/modules/card/composables/useCardValidation.ts +6 -1
- package/src/modules/card/composables/useNestedCardComponent.ts +4 -1
- package/src/modules/filter-presets/api/PresetQuery.ts +32 -9
- package/src/modules/filter-presets/components/apply-preset/apply-preset-action.vue +15 -5
- package/src/modules/filter-presets/components/apply-preset/preset-preview.vue +7 -4
- package/src/modules/filter-presets/components/save-preset/save-preset-action.vue +11 -3
- package/src/modules/filter-presets/types/PresetSnapshot.ts +6 -0
- package/src/modules/filters/classes/Filter.ts +1 -1
- package/src/modules/filters/classes/FiltersManager.ts +25 -17
- package/src/modules/filters/components/config/dynamic-view/dynamic-filter-config-form.vue +12 -11
- package/src/modules/filters/components/config/dynamic-view/dynamic-filter-config-view.vue +3 -1
- package/src/modules/filters/components/config/static-view/static-filter-field.vue +3 -1
- package/src/modules/filters/components/dynamic-filter-add-action.vue +8 -1
- package/src/modules/filters/components/preview/dynamic-filter-preview.vue +12 -2
- package/src/modules/filters/components/search-bar/dynamic-filter-search.vue +10 -9
- package/src/modules/filters/components/table-filters-panel.vue +4 -3
- package/src/modules/filters/components/types/Filter.types.ts +4 -1
- package/src/modules/filters/composables/useFilterConfigsToolkit.ts +2 -1
- package/src/modules/filters/createTableFiltersStore.ts +1 -1
- package/src/modules/filters/modules/filterConfig/classes/FilterConfig.ts +4 -1
- package/src/modules/filters/modules/filterConfig/classes/createFilterConfig.ts +4 -1
- package/src/modules/filters/modules/filterConfig/components/_custom/filterConfig.ts +8 -4
- package/src/modules/filters/modules/filterConfig/components/_custom/type-extension-filter-value-field.vue +13 -4
- package/src/modules/filters/modules/filterConfig/components/_custom/type-extension-filter-value-preview.vue +1 -1
- package/src/modules/filters/modules/filterConfig/components/_shared/date-time-filter/date-time-options/date-time-options-filter-value-field.vue +2 -1
- package/src/modules/filters/modules/filterConfig/components/_shared/durations/duration-filter-value-field.vue +14 -9
- package/src/modules/filters/modules/filterConfig/components/_shared/has-options/has-option-filter-value-field.vue +1 -1
- package/src/modules/filters/modules/filterConfig/components/_shared/lookup-filter-preview/lookup-filter-value-preview.vue +15 -1
- package/src/modules/filters/modules/filterConfig/components/agent-status/agent-status-filter-value-preview.vue +2 -2
- package/src/modules/filters/modules/filterConfig/components/auditor/index.ts +5 -2
- package/src/modules/filters/modules/filterConfig/components/case-actual-reaction-time/case-actual-reaction-time-filter-value-preview.vue +1 -1
- package/src/modules/filters/modules/filterConfig/components/case-actual-resolution-time/case-actual-resolution-time-filter-value-preview.vue +1 -1
- package/src/modules/filters/modules/filterConfig/components/case-assignee/case-assignee-filter-value-field.vue +1 -1
- package/src/modules/filters/modules/filterConfig/components/case-assignee/filterConfig.ts +5 -3
- package/src/modules/filters/modules/filterConfig/components/case-close-reason-groups/case-close-reason-groups-filter-value-field.vue +2 -2
- package/src/modules/filters/modules/filterConfig/components/case-reaction-time/case-reaction-time-filter-value-preview.vue +1 -1
- package/src/modules/filters/modules/filterConfig/components/case-resolution-time/case-resolution-time-filter-value-preview.vue +1 -1
- package/src/modules/filters/modules/filterConfig/components/case-service/case-service-filter-value-field.vue +1 -1
- package/src/modules/filters/modules/filterConfig/components/case-sla-condition/case-sla-condition-filter-value-field.vue +2 -2
- package/src/modules/filters/modules/filterConfig/components/case-status/case-status-filter-value-field.vue +2 -2
- package/src/modules/filters/modules/filterConfig/components/contact-group/contact-group-filter-value-field.vue +6 -5
- package/src/modules/filters/modules/filterConfig/components/contact-group/index.ts +5 -2
- package/src/modules/filters/modules/filterConfig/components/contact-label/contact-label-filter-value-field.vue +1 -1
- package/src/modules/filters/modules/filterConfig/components/contact-label/index.ts +4 -2
- package/src/modules/filters/modules/filterConfig/components/contact-owner/index.ts +7 -3
- package/src/modules/filters/modules/filterConfig/components/gateway/gateway-filter-value-field.vue +1 -1
- package/src/modules/filters/modules/filterConfig/components/has-user/has-user-filter-value-field.vue +1 -1
- package/src/modules/filters/modules/filterConfig/components/queue/index.ts +5 -2
- package/src/modules/filters/modules/filterConfig/components/queue-period/queue-period-filter-value-preview.vue +2 -2
- package/src/modules/filters/modules/filterConfig/components/queue-type/queue-type-filter-value-preview.vue +2 -2
- package/src/modules/filters/modules/filterConfig/components/region/index.ts +5 -2
- package/src/modules/filters/modules/filterConfig/components/skill/index.ts +5 -2
- package/src/modules/filters/modules/filterConfig/components/supervisor/index.ts +5 -2
- package/src/modules/filters/modules/filterConfig/components/team/index.ts +6 -2
- package/src/modules/filters/scripts/utils.ts +2 -2
- package/src/modules/headers/createTableHeadersStore.ts +46 -20
- package/src/modules/permissions-page/components/permissions-tab.vue +7 -1
- package/src/modules/persist/PersistedStorage.types.ts +4 -1
- package/src/modules/persist/usePersistedStorage.ts +9 -3
- package/src/modules/scripts/utils.ts +5 -3
- package/types/.tsbuildinfo +1 -1
- package/types/modules/card/composables/useCardAnyFieldEditedWatcher.d.ts +4 -3
- package/types/modules/card/composables/useCardComponent.d.ts +2 -2
- package/types/modules/card/composables/useCardRouting.d.ts +1 -1
- package/types/modules/card/composables/useCardValidation.d.ts +3 -2
- package/types/modules/card/composables/useNestedCardComponent.d.ts +2 -2
- package/types/modules/card/stores/createCardStore.d.ts +18 -18
- package/types/modules/filter-presets/api/PresetQuery.d.ts +14 -13
- package/types/modules/filter-presets/components/_shared/input-fields/preset-description-field.vue.d.ts +3 -3
- package/types/modules/filter-presets/components/_shared/input-fields/preset-name-field.vue.d.ts +2 -2
- package/types/modules/filter-presets/components/apply-preset/apply-preset-action.vue.d.ts +1 -1
- package/types/modules/filter-presets/components/apply-preset/preset-preview.vue.d.ts +4 -4
- package/types/modules/filter-presets/components/save-preset/overwrite-preset-popup.vue.d.ts +3 -3
- package/types/modules/filter-presets/components/save-preset/save-preset-popup.vue.d.ts +3 -3
- package/types/modules/filter-presets/stores/createFilterPresetsStore.d.ts +40 -34
- package/types/modules/filter-presets/types/PresetSnapshot.d.ts +6 -0
- package/types/modules/filters/classes/Filter.d.ts +1 -1
- package/types/modules/filters/components/config/dynamic-view/dynamic-filter-config-form-label.vue.d.ts +4 -4
- package/types/modules/filters/components/config/dynamic-view/dynamic-filter-config-form-value-input.vue.d.ts +2 -2
- package/types/modules/filters/components/config/dynamic-view/dynamic-filter-config-form.vue.d.ts +5 -5
- package/types/modules/filters/components/config/dynamic-view/dynamic-filter-config-view.vue.d.ts +1 -1
- package/types/modules/filters/components/config/static-view/static-filter-field.vue.d.ts +3 -3
- package/types/modules/filters/components/dynamic-filter-add-action.vue.d.ts +1 -1
- package/types/modules/filters/components/dynamic-filter-panel-wrapper.vue.d.ts +1 -1
- package/types/modules/filters/components/preview/dynamic-filter-preview.vue.d.ts +2 -2
- package/types/modules/filters/components/search-bar/dynamic-filter-search.vue.d.ts +6 -6
- package/types/modules/filters/components/table-filters-panel.vue.d.ts +6 -6
- package/types/modules/filters/components/types/Filter.types.d.ts +3 -1
- package/types/modules/filters/composables/useFilterConfigsToolkit.d.ts +2 -1
- package/types/modules/filters/createTableFiltersStore.d.ts +23 -11
- package/types/modules/filters/modules/filterConfig/classes/FilterConfig.d.ts +3 -1
- package/types/modules/filters/modules/filterConfig/components/_custom/filterConfig.d.ts +2 -5
- package/types/modules/filters/modules/filterConfig/components/_custom/type-extension-filter-value-field.vue.d.ts +2 -2
- package/types/modules/filters/modules/filterConfig/components/_shared/date-time-filter/date-time-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/_shared/date-time-filter/date-time-options/date-time-options-filter-value-field.vue.d.ts +5 -5
- package/types/modules/filters/modules/filterConfig/components/_shared/durations/duration-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/_shared/has-options/has-option-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/agent/agent-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/agent/config.d.ts +2 -0
- package/types/modules/filters/modules/filterConfig/components/agent-status/agent-status-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/amd-result/amd-result-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/auditor/auditor-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/auditor/index.d.ts +5 -5
- package/types/modules/filters/modules/filterConfig/components/call-direction/call-direction-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/case-actual-reaction-time/case-actual-reaction-time-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/case-actual-resolution-time/case-actual-resolution-time-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/case-assignee/case-assignee-filter-value-field.vue.d.ts +2 -2
- package/types/modules/filters/modules/filterConfig/components/case-assignee/filterConfig.d.ts +5 -5
- package/types/modules/filters/modules/filterConfig/components/case-author/case-author-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/case-author/config.d.ts +4 -0
- package/types/modules/filters/modules/filterConfig/components/case-close-reason-groups/case-close-reason-groups-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/case-close-reason-groups/config.d.ts +4 -0
- package/types/modules/filters/modules/filterConfig/components/case-impacted/case-impacted-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/case-impacted/config.d.ts +2 -0
- package/types/modules/filters/modules/filterConfig/components/case-priority/case-priority-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/case-priority/config.d.ts +2 -0
- package/types/modules/filters/modules/filterConfig/components/case-reaction-time/case-reaction-time-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/case-reporter/case-reporter-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/case-reporter/config.d.ts +2 -0
- package/types/modules/filters/modules/filterConfig/components/case-resolution-time/case-resolution-time-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/case-service/case-service-filter-value-field.vue.d.ts +2 -2
- package/types/modules/filters/modules/filterConfig/components/case-service/config.d.ts +4 -0
- package/types/modules/filters/modules/filterConfig/components/case-sla/case-sla-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/case-sla/config.d.ts +2 -0
- package/types/modules/filters/modules/filterConfig/components/case-sla-condition/case-sla-condition-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/case-sla-condition/config.d.ts +4 -0
- package/types/modules/filters/modules/filterConfig/components/case-source/case-source-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/case-source/config.d.ts +4 -0
- package/types/modules/filters/modules/filterConfig/components/case-status/case-status-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/case-status/config.d.ts +4 -0
- package/types/modules/filters/modules/filterConfig/components/contact/config.d.ts +2 -0
- package/types/modules/filters/modules/filterConfig/components/contact/contact-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/contact-group/contact-group-filter-value-field.vue.d.ts +2 -2
- package/types/modules/filters/modules/filterConfig/components/contact-group/index.d.ts +6 -4
- package/types/modules/filters/modules/filterConfig/components/contact-label/contact-label-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/contact-label/index.d.ts +5 -5
- package/types/modules/filters/modules/filterConfig/components/contact-owner/contact-owner-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/contact-owner/index.d.ts +5 -5
- package/types/modules/filters/modules/filterConfig/components/created-at-from/created-at-from-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/created-at-to/created-at-to-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/gateway/config.d.ts +2 -0
- package/types/modules/filters/modules/filterConfig/components/gateway/gateway-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/grantee/config.d.ts +4 -0
- package/types/modules/filters/modules/filterConfig/components/grantee/grantee-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/hangup-cause/hangup-cause-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/has-attachment/has-attachment-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/has-file/has-file-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/has-rating/has-rating-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/has-transcription/has-transcription-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/has-user/has-user-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/index.d.ts +60 -59
- package/types/modules/filters/modules/filterConfig/components/queue/index.d.ts +5 -5
- package/types/modules/filters/modules/filterConfig/components/queue/queue-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/queue-period/queue-period-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/queue-type/queue-type-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/rated-by/config.d.ts +4 -0
- package/types/modules/filters/modules/filterConfig/components/rated-by/rated-by-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/rating/rating-from-to-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/region/index.d.ts +5 -5
- package/types/modules/filters/modules/filterConfig/components/region/region-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/score/score-from-to-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/skill/index.d.ts +5 -5
- package/types/modules/filters/modules/filterConfig/components/skill/skill-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/supervisor/index.d.ts +5 -5
- package/types/modules/filters/modules/filterConfig/components/supervisor/supervisor-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/tag/tag-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/talk-duration/talk-duration-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/team/index.d.ts +5 -5
- package/types/modules/filters/modules/filterConfig/components/team/team-filter-value-field.vue.d.ts +3 -3
- package/types/modules/filters/modules/filterConfig/components/total-duration/total-duration-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/user/config.d.ts +4 -0
- package/types/modules/filters/modules/filterConfig/components/user/user-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/utilization-progress/utilization-progress-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/components/variable/variable-filter-value-field.vue.d.ts +4 -4
- package/types/modules/filters/modules/filterConfig/composables/booleanFilterToolkit.d.ts +2 -2
- package/types/modules/filters/scripts/utils.d.ts +2 -2
- package/types/modules/headers/createTableHeadersStore.d.ts +57 -58
- package/types/modules/permissions-page/stores/createPermissionsStore.d.ts +80 -68
- package/types/modules/persist/PersistedStorage.types.d.ts +3 -3
- package/types/modules/table/createTableStore.store.d.ts +78 -66
|
@@ -4,7 +4,6 @@ import { FilterOption } from '../enums/FilterOption';
|
|
|
4
4
|
import DateTimeOptionsFilterValueField from './_shared/date-time-filter/date-time-options/date-time-options-filter-value-field.vue';
|
|
5
5
|
import AgentFilter from './agent/agent-filter-value-field.vue';
|
|
6
6
|
import AgentFilterPreview from './agent/agent-filter-value-preview.vue';
|
|
7
|
-
import { searchMethod as agentSearchMethod } from './agent/config';
|
|
8
7
|
import AgentStatusFilter from './agent-status/agent-status-filter-value-field.vue';
|
|
9
8
|
import AgentStatusFilterPreview from './agent-status/agent-status-filter-value-preview.vue';
|
|
10
9
|
import AmdResultFilter from './amd-result/amd-result-filter-value-field.vue';
|
|
@@ -105,8 +104,8 @@ export declare const FilterOptionToPreviewApiSearchMethodMap: Record<FilterOptio
|
|
|
105
104
|
next?: boolean;
|
|
106
105
|
}>>;
|
|
107
106
|
export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
108
|
-
assignee: (params
|
|
109
|
-
contactLabel: (params
|
|
107
|
+
assignee: (params?: import("..").FilterConfigBaseParams) => import("./case-assignee").CaseAssigneeFilterConfig;
|
|
108
|
+
contactLabel: (params?: import("..").FilterConfigBaseParams) => {
|
|
110
109
|
readonly name: "contactLabel";
|
|
111
110
|
valueInputComponent: import("vue").DefineComponent<{
|
|
112
111
|
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
@@ -115,7 +114,7 @@ export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
|
115
114
|
} & {
|
|
116
115
|
modelValue?: number[];
|
|
117
116
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
118
|
-
"update:modelValue": (value: number[]) => any;
|
|
117
|
+
"update:modelValue": (value: number[] | undefined) => any;
|
|
119
118
|
"update:invalid": (args_0: boolean) => any;
|
|
120
119
|
}, string, import("vue").PublicProps, Readonly<{
|
|
121
120
|
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
@@ -124,8 +123,8 @@ export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
|
124
123
|
} & {
|
|
125
124
|
modelValue?: number[];
|
|
126
125
|
}> & Readonly<{
|
|
127
|
-
"onUpdate:modelValue"?: (value: number[]) => any;
|
|
128
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
126
|
+
"onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
|
|
127
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
129
128
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
130
129
|
valuePreviewComponent: import("vue").DefineComponent<{
|
|
131
130
|
value: Record<string, unknown>[];
|
|
@@ -138,27 +137,27 @@ export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
|
138
137
|
items: unknown[];
|
|
139
138
|
next?: boolean;
|
|
140
139
|
}>;
|
|
141
|
-
label?: ReturnType<
|
|
140
|
+
label?: ReturnType<MessageResolver> | string;
|
|
142
141
|
staticView?: boolean;
|
|
143
142
|
notDeletable: boolean;
|
|
144
143
|
showFilterName: boolean;
|
|
145
144
|
};
|
|
146
|
-
contactOwner: (params
|
|
145
|
+
contactOwner: (params?: import("..").FilterConfigBaseParams) => {
|
|
147
146
|
readonly name: "contactOwner";
|
|
148
147
|
valueInputComponent: import("vue").DefineComponent<{
|
|
149
148
|
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
150
149
|
} & {
|
|
151
150
|
modelValue?: number[];
|
|
152
151
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
153
|
-
"update:modelValue": (value: number[]) => any;
|
|
152
|
+
"update:modelValue": (value: number[] | undefined) => any;
|
|
154
153
|
"update:invalid": (args_0: boolean) => any;
|
|
155
154
|
}, string, import("vue").PublicProps, Readonly<{
|
|
156
155
|
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
157
156
|
} & {
|
|
158
157
|
modelValue?: number[];
|
|
159
158
|
}> & Readonly<{
|
|
160
|
-
"onUpdate:modelValue"?: (value: number[]) => any;
|
|
161
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
159
|
+
"onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
|
|
160
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
162
161
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
163
162
|
valuePreviewComponent: import("vue").DefineComponent<{
|
|
164
163
|
value: Record<string, unknown>[];
|
|
@@ -169,12 +168,14 @@ export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
|
169
168
|
items: unknown[];
|
|
170
169
|
next?: boolean;
|
|
171
170
|
}>;
|
|
172
|
-
label?: ReturnType<
|
|
171
|
+
label?: ReturnType<MessageResolver> | string;
|
|
173
172
|
staticView?: boolean;
|
|
174
173
|
notDeletable: boolean;
|
|
175
174
|
showFilterName: boolean;
|
|
176
175
|
};
|
|
177
|
-
contactGroup: (params
|
|
176
|
+
contactGroup: (params?: import("..").FilterConfigBaseParams & {
|
|
177
|
+
hideUnassigned?: boolean;
|
|
178
|
+
}) => {
|
|
178
179
|
readonly name: "contactGroup";
|
|
179
180
|
valueInputComponent: import("vue").DefineComponent<{
|
|
180
181
|
filterConfig: import("./contact-group").IContactGroupFilterConfig;
|
|
@@ -201,11 +202,11 @@ export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
|
201
202
|
unassigned?: boolean | null;
|
|
202
203
|
};
|
|
203
204
|
}> & Readonly<{
|
|
204
|
-
"onUpdate:modelValue"?: (value: {
|
|
205
|
+
"onUpdate:modelValue"?: ((value: {
|
|
205
206
|
list?: string[];
|
|
206
207
|
unassigned?: boolean | null;
|
|
207
|
-
}) => any;
|
|
208
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
208
|
+
}) => any) | undefined;
|
|
209
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
209
210
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
210
211
|
valuePreviewComponent: import("vue").DefineComponent<{
|
|
211
212
|
value: Array<{
|
|
@@ -225,12 +226,12 @@ export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
|
225
226
|
items: unknown[];
|
|
226
227
|
next?: boolean;
|
|
227
228
|
}>;
|
|
228
|
-
label?: ReturnType<
|
|
229
|
+
label?: ReturnType<MessageResolver> | string;
|
|
229
230
|
staticView?: boolean;
|
|
230
231
|
notDeletable: boolean;
|
|
231
232
|
showFilterName: boolean;
|
|
232
233
|
};
|
|
233
|
-
team: (params
|
|
234
|
+
team: (params?: import("..").FilterConfigBaseParams) => {
|
|
234
235
|
readonly name: "team";
|
|
235
236
|
valueInputComponent: import("vue").DefineComponent<{
|
|
236
237
|
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
@@ -238,7 +239,7 @@ export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
|
238
239
|
} & {
|
|
239
240
|
modelValue?: number[];
|
|
240
241
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
241
|
-
"update:modelValue": (value: number[]) => any;
|
|
242
|
+
"update:modelValue": (value: number[] | undefined) => any;
|
|
242
243
|
"update:invalid": (args_0: boolean) => any;
|
|
243
244
|
}, string, import("vue").PublicProps, Readonly<{
|
|
244
245
|
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
@@ -246,24 +247,24 @@ export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
|
246
247
|
} & {
|
|
247
248
|
modelValue?: number[];
|
|
248
249
|
}> & Readonly<{
|
|
249
|
-
"onUpdate:modelValue"?: (value: number[]) => any;
|
|
250
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
250
|
+
"onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
|
|
251
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
251
252
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
252
253
|
valuePreviewComponent: import("vue").DefineComponent<{
|
|
253
|
-
value:
|
|
254
|
+
value: EngineAgentTeam[];
|
|
254
255
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
255
|
-
value:
|
|
256
|
+
value: EngineAgentTeam[];
|
|
256
257
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
257
258
|
searchRecords(params: object): Promise<{
|
|
258
259
|
items: unknown[];
|
|
259
260
|
next?: boolean;
|
|
260
261
|
}>;
|
|
261
|
-
label?: ReturnType<
|
|
262
|
+
label?: ReturnType<MessageResolver> | string;
|
|
262
263
|
staticView?: boolean;
|
|
263
264
|
notDeletable: boolean;
|
|
264
265
|
showFilterName: boolean;
|
|
265
266
|
};
|
|
266
|
-
queue: (params
|
|
267
|
+
queue: (params?: import("..").FilterConfigBaseParams) => {
|
|
267
268
|
readonly name: "queue";
|
|
268
269
|
valueInputComponent: import("vue").DefineComponent<{
|
|
269
270
|
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
@@ -271,7 +272,7 @@ export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
|
271
272
|
} & {
|
|
272
273
|
modelValue?: number[];
|
|
273
274
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
274
|
-
"update:modelValue": (value: number[]) => any;
|
|
275
|
+
"update:modelValue": (value: number[] | undefined) => any;
|
|
275
276
|
"update:invalid": (args_0: boolean) => any;
|
|
276
277
|
}, string, import("vue").PublicProps, Readonly<{
|
|
277
278
|
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
@@ -279,24 +280,24 @@ export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
|
279
280
|
} & {
|
|
280
281
|
modelValue?: number[];
|
|
281
282
|
}> & Readonly<{
|
|
282
|
-
"onUpdate:modelValue"?: (value: number[]) => any;
|
|
283
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
283
|
+
"onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
|
|
284
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
284
285
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
285
286
|
valuePreviewComponent: import("vue").DefineComponent<{
|
|
286
|
-
value:
|
|
287
|
+
value: EngineQueue[];
|
|
287
288
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
288
|
-
value:
|
|
289
|
+
value: EngineQueue[];
|
|
289
290
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
290
291
|
searchRecords(params: object): Promise<{
|
|
291
292
|
items: unknown[];
|
|
292
293
|
next?: boolean;
|
|
293
294
|
}>;
|
|
294
|
-
label?: ReturnType<
|
|
295
|
+
label?: ReturnType<MessageResolver> | string;
|
|
295
296
|
staticView?: boolean;
|
|
296
297
|
notDeletable: boolean;
|
|
297
298
|
showFilterName: boolean;
|
|
298
299
|
};
|
|
299
|
-
skill: (params
|
|
300
|
+
skill: (params?: import("..").FilterConfigBaseParams) => {
|
|
300
301
|
readonly name: "skill";
|
|
301
302
|
valueInputComponent: import("vue").DefineComponent<{
|
|
302
303
|
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
@@ -304,7 +305,7 @@ export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
|
304
305
|
} & {
|
|
305
306
|
modelValue?: number[];
|
|
306
307
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
307
|
-
"update:modelValue": (value: number[]) => any;
|
|
308
|
+
"update:modelValue": (value: number[] | undefined) => any;
|
|
308
309
|
"update:invalid": (args_0: boolean) => any;
|
|
309
310
|
}, string, import("vue").PublicProps, Readonly<{
|
|
310
311
|
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
@@ -312,24 +313,24 @@ export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
|
312
313
|
} & {
|
|
313
314
|
modelValue?: number[];
|
|
314
315
|
}> & Readonly<{
|
|
315
|
-
"onUpdate:modelValue"?: (value: number[]) => any;
|
|
316
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
316
|
+
"onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
|
|
317
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
317
318
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
318
319
|
valuePreviewComponent: import("vue").DefineComponent<{
|
|
319
|
-
value:
|
|
320
|
+
value: EngineQueue[];
|
|
320
321
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
321
|
-
value:
|
|
322
|
+
value: EngineQueue[];
|
|
322
323
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
323
324
|
searchRecords(params: object): Promise<{
|
|
324
325
|
items: unknown[];
|
|
325
326
|
next?: boolean;
|
|
326
327
|
}>;
|
|
327
|
-
label?: ReturnType<
|
|
328
|
+
label?: ReturnType<MessageResolver> | string;
|
|
328
329
|
staticView?: boolean;
|
|
329
330
|
notDeletable: boolean;
|
|
330
331
|
showFilterName: boolean;
|
|
331
332
|
};
|
|
332
|
-
supervisor: (params
|
|
333
|
+
supervisor: (params?: import("..").FilterConfigBaseParams) => {
|
|
333
334
|
readonly name: "supervisor";
|
|
334
335
|
valueInputComponent: import("vue").DefineComponent<{
|
|
335
336
|
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
@@ -337,7 +338,7 @@ export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
|
337
338
|
} & {
|
|
338
339
|
modelValue?: number[];
|
|
339
340
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
340
|
-
"update:modelValue": (value: number[]) => any;
|
|
341
|
+
"update:modelValue": (value: number[] | undefined) => any;
|
|
341
342
|
"update:invalid": (args_0: boolean) => any;
|
|
342
343
|
}, string, import("vue").PublicProps, Readonly<{
|
|
343
344
|
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
@@ -345,24 +346,24 @@ export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
|
345
346
|
} & {
|
|
346
347
|
modelValue?: number[];
|
|
347
348
|
}> & Readonly<{
|
|
348
|
-
"onUpdate:modelValue"?: (value: number[]) => any;
|
|
349
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
349
|
+
"onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
|
|
350
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
350
351
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
351
352
|
valuePreviewComponent: import("vue").DefineComponent<{
|
|
352
|
-
value:
|
|
353
|
+
value: EngineQueue[];
|
|
353
354
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
354
|
-
value:
|
|
355
|
+
value: EngineQueue[];
|
|
355
356
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
356
357
|
searchRecords(params: object): Promise<{
|
|
357
358
|
items: unknown[];
|
|
358
359
|
next?: boolean;
|
|
359
360
|
}>;
|
|
360
|
-
label?: ReturnType<
|
|
361
|
+
label?: ReturnType<MessageResolver> | string;
|
|
361
362
|
staticView?: boolean;
|
|
362
363
|
notDeletable: boolean;
|
|
363
364
|
showFilterName: boolean;
|
|
364
365
|
};
|
|
365
|
-
auditor: (params
|
|
366
|
+
auditor: (params?: import("..").FilterConfigBaseParams) => {
|
|
366
367
|
readonly name: "auditor";
|
|
367
368
|
valueInputComponent: import("vue").DefineComponent<{
|
|
368
369
|
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
@@ -370,7 +371,7 @@ export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
|
370
371
|
} & {
|
|
371
372
|
modelValue?: number[];
|
|
372
373
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
373
|
-
"update:modelValue": (value: number[]) => any;
|
|
374
|
+
"update:modelValue": (value: number[] | undefined) => any;
|
|
374
375
|
"update:invalid": (args_0: boolean) => any;
|
|
375
376
|
}, string, import("vue").PublicProps, Readonly<{
|
|
376
377
|
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
@@ -378,24 +379,24 @@ export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
|
378
379
|
} & {
|
|
379
380
|
modelValue?: number[];
|
|
380
381
|
}> & Readonly<{
|
|
381
|
-
"onUpdate:modelValue"?: (value: number[]) => any;
|
|
382
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
382
|
+
"onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
|
|
383
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
383
384
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
384
385
|
valuePreviewComponent: import("vue").DefineComponent<{
|
|
385
|
-
value:
|
|
386
|
+
value: EngineQueue[];
|
|
386
387
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
387
|
-
value:
|
|
388
|
+
value: EngineQueue[];
|
|
388
389
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
389
390
|
searchRecords(params: object): Promise<{
|
|
390
391
|
items: unknown[];
|
|
391
392
|
next?: boolean;
|
|
392
393
|
}>;
|
|
393
|
-
label?: ReturnType<
|
|
394
|
+
label?: ReturnType<MessageResolver> | string;
|
|
394
395
|
staticView?: boolean;
|
|
395
396
|
notDeletable: boolean;
|
|
396
397
|
showFilterName: boolean;
|
|
397
398
|
};
|
|
398
|
-
region: (params
|
|
399
|
+
region: (params?: import("..").FilterConfigBaseParams) => {
|
|
399
400
|
readonly name: "region";
|
|
400
401
|
valueInputComponent: import("vue").DefineComponent<{
|
|
401
402
|
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
@@ -403,7 +404,7 @@ export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
|
403
404
|
} & {
|
|
404
405
|
modelValue?: number[];
|
|
405
406
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
406
|
-
"update:modelValue": (value: number[]) => any;
|
|
407
|
+
"update:modelValue": (value: number[] | undefined) => any;
|
|
407
408
|
"update:invalid": (args_0: boolean) => any;
|
|
408
409
|
}, string, import("vue").PublicProps, Readonly<{
|
|
409
410
|
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
@@ -411,19 +412,19 @@ export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
|
411
412
|
} & {
|
|
412
413
|
modelValue?: number[];
|
|
413
414
|
}> & Readonly<{
|
|
414
|
-
"onUpdate:modelValue"?: (value: number[]) => any;
|
|
415
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
415
|
+
"onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
|
|
416
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
416
417
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
417
418
|
valuePreviewComponent: import("vue").DefineComponent<{
|
|
418
|
-
value:
|
|
419
|
+
value: EngineQueue[];
|
|
419
420
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
420
|
-
value:
|
|
421
|
+
value: EngineQueue[];
|
|
421
422
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
422
423
|
searchRecords(params: object): Promise<{
|
|
423
424
|
items: unknown[];
|
|
424
425
|
next?: boolean;
|
|
425
426
|
}>;
|
|
426
|
-
label?: ReturnType<
|
|
427
|
+
label?: ReturnType<MessageResolver> | string;
|
|
427
428
|
staticView?: boolean;
|
|
428
429
|
notDeletable: boolean;
|
|
429
430
|
showFilterName: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { WtSysTypeFilterConfig } from '../../classes/FilterConfig';
|
|
1
|
+
import { type FilterConfigBaseParams, WtSysTypeFilterConfig } from '../../classes/FilterConfig';
|
|
2
2
|
declare class QueueFilterConfig extends WtSysTypeFilterConfig {
|
|
3
3
|
readonly name: "queue";
|
|
4
4
|
valueInputComponent: import("vue").DefineComponent<{
|
|
@@ -7,7 +7,7 @@ declare class QueueFilterConfig extends WtSysTypeFilterConfig {
|
|
|
7
7
|
} & {
|
|
8
8
|
modelValue?: number[];
|
|
9
9
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
-
"update:modelValue": (value: number[]) => any;
|
|
10
|
+
"update:modelValue": (value: number[] | undefined) => any;
|
|
11
11
|
"update:invalid": (args_0: boolean) => any;
|
|
12
12
|
}, string, import("vue").PublicProps, Readonly<{
|
|
13
13
|
filterConfig: WtSysTypeFilterConfig;
|
|
@@ -15,8 +15,8 @@ declare class QueueFilterConfig extends WtSysTypeFilterConfig {
|
|
|
15
15
|
} & {
|
|
16
16
|
modelValue?: number[];
|
|
17
17
|
}> & Readonly<{
|
|
18
|
-
"onUpdate:modelValue"?: (value: number[]) => any;
|
|
19
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
18
|
+
"onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
|
|
19
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
20
20
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
21
|
valuePreviewComponent: import("vue").DefineComponent<{
|
|
22
22
|
value: EngineQueue[];
|
|
@@ -28,5 +28,5 @@ declare class QueueFilterConfig extends WtSysTypeFilterConfig {
|
|
|
28
28
|
next?: boolean;
|
|
29
29
|
}>;
|
|
30
30
|
}
|
|
31
|
-
export declare const createQueueFilterConfig: (params
|
|
31
|
+
export declare const createQueueFilterConfig: (params?: FilterConfigBaseParams) => QueueFilterConfig;
|
|
32
32
|
export {};
|
|
@@ -9,11 +9,11 @@ type __VLS_ModelProps = {
|
|
|
9
9
|
};
|
|
10
10
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
11
11
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
-
"update:modelValue": (value: ModelValue) => any;
|
|
12
|
+
"update:modelValue": (value: ModelValue | undefined) => any;
|
|
13
13
|
"update:invalid": (args_0: boolean) => any;
|
|
14
14
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
15
|
-
"onUpdate:modelValue"?: (value: ModelValue) => any;
|
|
16
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
15
|
+
"onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
|
|
16
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
17
17
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
18
|
declare const _default: typeof __VLS_export;
|
|
19
19
|
export default _default;
|
|
@@ -8,11 +8,11 @@ type __VLS_ModelProps = {
|
|
|
8
8
|
};
|
|
9
9
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
10
10
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
-
"update:modelValue": (value: string) => any;
|
|
11
|
+
"update:modelValue": (value: string | undefined) => any;
|
|
12
12
|
"update:invalid": (args_0: boolean) => any;
|
|
13
13
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
14
|
-
"onUpdate:modelValue"?: (value: string) => any;
|
|
15
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
16
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions,
|
|
14
|
+
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
15
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
16
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
17
|
declare const _default: typeof __VLS_export;
|
|
18
18
|
export default _default;
|
|
@@ -8,11 +8,11 @@ type __VLS_ModelProps = {
|
|
|
8
8
|
};
|
|
9
9
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
10
10
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
-
"update:modelValue": (value: string) => any;
|
|
11
|
+
"update:modelValue": (value: string | undefined) => any;
|
|
12
12
|
"update:invalid": (args_0: boolean) => any;
|
|
13
13
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
14
|
-
"onUpdate:modelValue"?: (value: string) => any;
|
|
15
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
16
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions,
|
|
14
|
+
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
15
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
16
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
17
|
declare const _default: typeof __VLS_export;
|
|
18
18
|
export default _default;
|
|
@@ -3,11 +3,11 @@ type __VLS_ModelProps = {
|
|
|
3
3
|
modelValue?: ModelValue;
|
|
4
4
|
};
|
|
5
5
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
-
"update:modelValue": (value: ModelValue) => any;
|
|
6
|
+
"update:modelValue": (value: ModelValue | undefined) => any;
|
|
7
7
|
"update:invalid": (args_0: boolean) => any;
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
9
|
-
"onUpdate:modelValue"?: (value: ModelValue) => any;
|
|
10
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
11
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions,
|
|
9
|
+
"onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
|
|
10
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
11
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
12
|
declare const _default: typeof __VLS_export;
|
|
13
13
|
export default _default;
|
|
@@ -9,8 +9,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
9
9
|
"update:modelValue": (value: ModelValue) => any;
|
|
10
10
|
"update:invalid": (args_0: boolean) => any;
|
|
11
11
|
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
12
|
-
"onUpdate:modelValue"?: (value: ModelValue) => any;
|
|
13
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
14
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions,
|
|
12
|
+
"onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
|
|
13
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
14
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
declare const _default: typeof __VLS_export;
|
|
16
16
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { WtSysTypeFilterConfig } from '../../classes/FilterConfig';
|
|
1
|
+
import { type FilterConfigBaseParams, WtSysTypeFilterConfig } from '../../classes/FilterConfig';
|
|
2
2
|
declare class RegionFilterConfig extends WtSysTypeFilterConfig {
|
|
3
3
|
readonly name: "region";
|
|
4
4
|
valueInputComponent: import("vue").DefineComponent<{
|
|
@@ -7,7 +7,7 @@ declare class RegionFilterConfig extends WtSysTypeFilterConfig {
|
|
|
7
7
|
} & {
|
|
8
8
|
modelValue?: number[];
|
|
9
9
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
-
"update:modelValue": (value: number[]) => any;
|
|
10
|
+
"update:modelValue": (value: number[] | undefined) => any;
|
|
11
11
|
"update:invalid": (args_0: boolean) => any;
|
|
12
12
|
}, string, import("vue").PublicProps, Readonly<{
|
|
13
13
|
filterConfig: WtSysTypeFilterConfig;
|
|
@@ -15,8 +15,8 @@ declare class RegionFilterConfig extends WtSysTypeFilterConfig {
|
|
|
15
15
|
} & {
|
|
16
16
|
modelValue?: number[];
|
|
17
17
|
}> & Readonly<{
|
|
18
|
-
"onUpdate:modelValue"?: (value: number[]) => any;
|
|
19
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
18
|
+
"onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
|
|
19
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
20
20
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
21
|
valuePreviewComponent: import("vue").DefineComponent<{
|
|
22
22
|
value: EngineQueue[];
|
|
@@ -28,5 +28,5 @@ declare class RegionFilterConfig extends WtSysTypeFilterConfig {
|
|
|
28
28
|
next?: boolean;
|
|
29
29
|
}>;
|
|
30
30
|
}
|
|
31
|
-
export declare const createRegionFilterConfig: (params
|
|
31
|
+
export declare const createRegionFilterConfig: (params?: FilterConfigBaseParams) => RegionFilterConfig;
|
|
32
32
|
export {};
|
|
@@ -9,11 +9,11 @@ type __VLS_ModelProps = {
|
|
|
9
9
|
};
|
|
10
10
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
11
11
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
-
"update:modelValue": (value: ModelValue) => any;
|
|
12
|
+
"update:modelValue": (value: ModelValue | undefined) => any;
|
|
13
13
|
"update:invalid": (args_0: boolean) => any;
|
|
14
14
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
15
|
-
"onUpdate:modelValue"?: (value: ModelValue) => any;
|
|
16
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
15
|
+
"onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
|
|
16
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
17
17
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
18
|
declare const _default: typeof __VLS_export;
|
|
19
19
|
export default _default;
|
|
@@ -13,10 +13,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
13
13
|
"update:modelValue": (value: ModelValue) => any;
|
|
14
14
|
"update:invalid": (args_0: boolean) => any;
|
|
15
15
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
16
|
-
"onUpdate:modelValue"?: (value: ModelValue) => any;
|
|
17
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
16
|
+
"onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
|
|
17
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
18
18
|
}>, {
|
|
19
19
|
numberMax: number;
|
|
20
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions,
|
|
20
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
21
|
declare const _default: typeof __VLS_export;
|
|
22
22
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { WtSysTypeFilterConfig } from '../../classes/FilterConfig';
|
|
1
|
+
import { type FilterConfigBaseParams, WtSysTypeFilterConfig } from '../../classes/FilterConfig';
|
|
2
2
|
declare class SkillFilterConfig extends WtSysTypeFilterConfig {
|
|
3
3
|
readonly name: "skill";
|
|
4
4
|
valueInputComponent: import("vue").DefineComponent<{
|
|
@@ -7,7 +7,7 @@ declare class SkillFilterConfig extends WtSysTypeFilterConfig {
|
|
|
7
7
|
} & {
|
|
8
8
|
modelValue?: number[];
|
|
9
9
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
-
"update:modelValue": (value: number[]) => any;
|
|
10
|
+
"update:modelValue": (value: number[] | undefined) => any;
|
|
11
11
|
"update:invalid": (args_0: boolean) => any;
|
|
12
12
|
}, string, import("vue").PublicProps, Readonly<{
|
|
13
13
|
filterConfig: WtSysTypeFilterConfig;
|
|
@@ -15,8 +15,8 @@ declare class SkillFilterConfig extends WtSysTypeFilterConfig {
|
|
|
15
15
|
} & {
|
|
16
16
|
modelValue?: number[];
|
|
17
17
|
}> & Readonly<{
|
|
18
|
-
"onUpdate:modelValue"?: (value: number[]) => any;
|
|
19
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
18
|
+
"onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
|
|
19
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
20
20
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
21
|
valuePreviewComponent: import("vue").DefineComponent<{
|
|
22
22
|
value: EngineQueue[];
|
|
@@ -28,5 +28,5 @@ declare class SkillFilterConfig extends WtSysTypeFilterConfig {
|
|
|
28
28
|
next?: boolean;
|
|
29
29
|
}>;
|
|
30
30
|
}
|
|
31
|
-
export declare const createSkillFilterConfig: (params
|
|
31
|
+
export declare const createSkillFilterConfig: (params?: FilterConfigBaseParams) => SkillFilterConfig;
|
|
32
32
|
export {};
|
|
@@ -9,11 +9,11 @@ type __VLS_ModelProps = {
|
|
|
9
9
|
};
|
|
10
10
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
11
11
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
-
"update:modelValue": (value: ModelValue) => any;
|
|
12
|
+
"update:modelValue": (value: ModelValue | undefined) => any;
|
|
13
13
|
"update:invalid": (args_0: boolean) => any;
|
|
14
14
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
15
|
-
"onUpdate:modelValue"?: (value: ModelValue) => any;
|
|
16
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
15
|
+
"onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
|
|
16
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
17
17
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
18
|
declare const _default: typeof __VLS_export;
|
|
19
19
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { WtSysTypeFilterConfig } from '../../classes/FilterConfig';
|
|
1
|
+
import { type FilterConfigBaseParams, WtSysTypeFilterConfig } from '../../classes/FilterConfig';
|
|
2
2
|
declare class SupervisorFilterConfig extends WtSysTypeFilterConfig {
|
|
3
3
|
readonly name: "supervisor";
|
|
4
4
|
valueInputComponent: import("vue").DefineComponent<{
|
|
@@ -7,7 +7,7 @@ declare class SupervisorFilterConfig extends WtSysTypeFilterConfig {
|
|
|
7
7
|
} & {
|
|
8
8
|
modelValue?: number[];
|
|
9
9
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
-
"update:modelValue": (value: number[]) => any;
|
|
10
|
+
"update:modelValue": (value: number[] | undefined) => any;
|
|
11
11
|
"update:invalid": (args_0: boolean) => any;
|
|
12
12
|
}, string, import("vue").PublicProps, Readonly<{
|
|
13
13
|
filterConfig: WtSysTypeFilterConfig;
|
|
@@ -15,8 +15,8 @@ declare class SupervisorFilterConfig extends WtSysTypeFilterConfig {
|
|
|
15
15
|
} & {
|
|
16
16
|
modelValue?: number[];
|
|
17
17
|
}> & Readonly<{
|
|
18
|
-
"onUpdate:modelValue"?: (value: number[]) => any;
|
|
19
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
18
|
+
"onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
|
|
19
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
20
20
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
21
|
valuePreviewComponent: import("vue").DefineComponent<{
|
|
22
22
|
value: EngineQueue[];
|
|
@@ -28,5 +28,5 @@ declare class SupervisorFilterConfig extends WtSysTypeFilterConfig {
|
|
|
28
28
|
next?: boolean;
|
|
29
29
|
}>;
|
|
30
30
|
}
|
|
31
|
-
export declare const createSupervisorFilterConfig: (params
|
|
31
|
+
export declare const createSupervisorFilterConfig: (params?: FilterConfigBaseParams) => SupervisorFilterConfig;
|
|
32
32
|
export {};
|
|
@@ -9,11 +9,11 @@ type __VLS_ModelProps = {
|
|
|
9
9
|
};
|
|
10
10
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
11
11
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
-
"update:modelValue": (value: ModelValue) => any;
|
|
12
|
+
"update:modelValue": (value: ModelValue | undefined) => any;
|
|
13
13
|
"update:invalid": (args_0: boolean) => any;
|
|
14
14
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
15
|
-
"onUpdate:modelValue"?: (value: ModelValue) => any;
|
|
16
|
-
"onUpdate:invalid"?: (args_0: boolean) => any;
|
|
15
|
+
"onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
|
|
16
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
17
17
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
18
|
declare const _default: typeof __VLS_export;
|
|
19
19
|
export default _default;
|