@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.
Files changed (184) hide show
  1. package/package.json +1 -1
  2. package/src/modules/card/composables/useCardAnyFieldEditedWatcher.ts +6 -2
  3. package/src/modules/card/composables/useCardComponent.ts +4 -1
  4. package/src/modules/card/composables/useCardSaveAction.ts +2 -0
  5. package/src/modules/card/composables/useCardValidation.ts +6 -1
  6. package/src/modules/card/composables/useNestedCardComponent.ts +4 -1
  7. package/src/modules/filter-presets/api/PresetQuery.ts +32 -9
  8. package/src/modules/filter-presets/components/apply-preset/apply-preset-action.vue +15 -5
  9. package/src/modules/filter-presets/components/apply-preset/preset-preview.vue +7 -4
  10. package/src/modules/filter-presets/components/save-preset/save-preset-action.vue +11 -3
  11. package/src/modules/filter-presets/types/PresetSnapshot.ts +6 -0
  12. package/src/modules/filters/classes/Filter.ts +1 -1
  13. package/src/modules/filters/classes/FiltersManager.ts +25 -17
  14. package/src/modules/filters/components/config/dynamic-view/dynamic-filter-config-form.vue +12 -11
  15. package/src/modules/filters/components/config/dynamic-view/dynamic-filter-config-view.vue +3 -1
  16. package/src/modules/filters/components/config/static-view/static-filter-field.vue +3 -1
  17. package/src/modules/filters/components/dynamic-filter-add-action.vue +8 -1
  18. package/src/modules/filters/components/preview/dynamic-filter-preview.vue +12 -2
  19. package/src/modules/filters/components/search-bar/dynamic-filter-search.vue +10 -9
  20. package/src/modules/filters/components/table-filters-panel.vue +4 -3
  21. package/src/modules/filters/components/types/Filter.types.ts +4 -1
  22. package/src/modules/filters/composables/useFilterConfigsToolkit.ts +2 -1
  23. package/src/modules/filters/createTableFiltersStore.ts +1 -1
  24. package/src/modules/filters/modules/filterConfig/classes/FilterConfig.ts +4 -1
  25. package/src/modules/filters/modules/filterConfig/classes/createFilterConfig.ts +4 -1
  26. package/src/modules/filters/modules/filterConfig/components/_custom/filterConfig.ts +8 -4
  27. package/src/modules/filters/modules/filterConfig/components/_custom/type-extension-filter-value-field.vue +13 -4
  28. package/src/modules/filters/modules/filterConfig/components/_custom/type-extension-filter-value-preview.vue +1 -1
  29. package/src/modules/filters/modules/filterConfig/components/_shared/date-time-filter/date-time-options/date-time-options-filter-value-field.vue +2 -1
  30. package/src/modules/filters/modules/filterConfig/components/_shared/durations/duration-filter-value-field.vue +14 -9
  31. package/src/modules/filters/modules/filterConfig/components/_shared/has-options/has-option-filter-value-field.vue +1 -1
  32. package/src/modules/filters/modules/filterConfig/components/_shared/lookup-filter-preview/lookup-filter-value-preview.vue +15 -1
  33. package/src/modules/filters/modules/filterConfig/components/agent-status/agent-status-filter-value-preview.vue +2 -2
  34. package/src/modules/filters/modules/filterConfig/components/auditor/index.ts +5 -2
  35. package/src/modules/filters/modules/filterConfig/components/case-actual-reaction-time/case-actual-reaction-time-filter-value-preview.vue +1 -1
  36. package/src/modules/filters/modules/filterConfig/components/case-actual-resolution-time/case-actual-resolution-time-filter-value-preview.vue +1 -1
  37. package/src/modules/filters/modules/filterConfig/components/case-assignee/case-assignee-filter-value-field.vue +1 -1
  38. package/src/modules/filters/modules/filterConfig/components/case-assignee/filterConfig.ts +5 -3
  39. package/src/modules/filters/modules/filterConfig/components/case-close-reason-groups/case-close-reason-groups-filter-value-field.vue +2 -2
  40. package/src/modules/filters/modules/filterConfig/components/case-reaction-time/case-reaction-time-filter-value-preview.vue +1 -1
  41. package/src/modules/filters/modules/filterConfig/components/case-resolution-time/case-resolution-time-filter-value-preview.vue +1 -1
  42. package/src/modules/filters/modules/filterConfig/components/case-service/case-service-filter-value-field.vue +1 -1
  43. package/src/modules/filters/modules/filterConfig/components/case-sla-condition/case-sla-condition-filter-value-field.vue +2 -2
  44. package/src/modules/filters/modules/filterConfig/components/case-status/case-status-filter-value-field.vue +2 -2
  45. package/src/modules/filters/modules/filterConfig/components/contact-group/contact-group-filter-value-field.vue +6 -5
  46. package/src/modules/filters/modules/filterConfig/components/contact-group/index.ts +5 -2
  47. package/src/modules/filters/modules/filterConfig/components/contact-label/contact-label-filter-value-field.vue +1 -1
  48. package/src/modules/filters/modules/filterConfig/components/contact-label/index.ts +4 -2
  49. package/src/modules/filters/modules/filterConfig/components/contact-owner/index.ts +7 -3
  50. package/src/modules/filters/modules/filterConfig/components/gateway/gateway-filter-value-field.vue +1 -1
  51. package/src/modules/filters/modules/filterConfig/components/has-user/has-user-filter-value-field.vue +1 -1
  52. package/src/modules/filters/modules/filterConfig/components/queue/index.ts +5 -2
  53. package/src/modules/filters/modules/filterConfig/components/queue-period/queue-period-filter-value-preview.vue +2 -2
  54. package/src/modules/filters/modules/filterConfig/components/queue-type/queue-type-filter-value-preview.vue +2 -2
  55. package/src/modules/filters/modules/filterConfig/components/region/index.ts +5 -2
  56. package/src/modules/filters/modules/filterConfig/components/skill/index.ts +5 -2
  57. package/src/modules/filters/modules/filterConfig/components/supervisor/index.ts +5 -2
  58. package/src/modules/filters/modules/filterConfig/components/team/index.ts +6 -2
  59. package/src/modules/filters/scripts/utils.ts +2 -2
  60. package/src/modules/headers/createTableHeadersStore.ts +46 -20
  61. package/src/modules/permissions-page/components/permissions-tab.vue +7 -1
  62. package/src/modules/persist/PersistedStorage.types.ts +4 -1
  63. package/src/modules/persist/usePersistedStorage.ts +9 -3
  64. package/src/modules/scripts/utils.ts +5 -3
  65. package/types/.tsbuildinfo +1 -1
  66. package/types/modules/card/composables/useCardAnyFieldEditedWatcher.d.ts +4 -3
  67. package/types/modules/card/composables/useCardComponent.d.ts +2 -2
  68. package/types/modules/card/composables/useCardRouting.d.ts +1 -1
  69. package/types/modules/card/composables/useCardValidation.d.ts +3 -2
  70. package/types/modules/card/composables/useNestedCardComponent.d.ts +2 -2
  71. package/types/modules/card/stores/createCardStore.d.ts +18 -18
  72. package/types/modules/filter-presets/api/PresetQuery.d.ts +14 -13
  73. package/types/modules/filter-presets/components/_shared/input-fields/preset-description-field.vue.d.ts +3 -3
  74. package/types/modules/filter-presets/components/_shared/input-fields/preset-name-field.vue.d.ts +2 -2
  75. package/types/modules/filter-presets/components/apply-preset/apply-preset-action.vue.d.ts +1 -1
  76. package/types/modules/filter-presets/components/apply-preset/preset-preview.vue.d.ts +4 -4
  77. package/types/modules/filter-presets/components/save-preset/overwrite-preset-popup.vue.d.ts +3 -3
  78. package/types/modules/filter-presets/components/save-preset/save-preset-popup.vue.d.ts +3 -3
  79. package/types/modules/filter-presets/stores/createFilterPresetsStore.d.ts +40 -34
  80. package/types/modules/filter-presets/types/PresetSnapshot.d.ts +6 -0
  81. package/types/modules/filters/classes/Filter.d.ts +1 -1
  82. package/types/modules/filters/components/config/dynamic-view/dynamic-filter-config-form-label.vue.d.ts +4 -4
  83. package/types/modules/filters/components/config/dynamic-view/dynamic-filter-config-form-value-input.vue.d.ts +2 -2
  84. package/types/modules/filters/components/config/dynamic-view/dynamic-filter-config-form.vue.d.ts +5 -5
  85. package/types/modules/filters/components/config/dynamic-view/dynamic-filter-config-view.vue.d.ts +1 -1
  86. package/types/modules/filters/components/config/static-view/static-filter-field.vue.d.ts +3 -3
  87. package/types/modules/filters/components/dynamic-filter-add-action.vue.d.ts +1 -1
  88. package/types/modules/filters/components/dynamic-filter-panel-wrapper.vue.d.ts +1 -1
  89. package/types/modules/filters/components/preview/dynamic-filter-preview.vue.d.ts +2 -2
  90. package/types/modules/filters/components/search-bar/dynamic-filter-search.vue.d.ts +6 -6
  91. package/types/modules/filters/components/table-filters-panel.vue.d.ts +6 -6
  92. package/types/modules/filters/components/types/Filter.types.d.ts +3 -1
  93. package/types/modules/filters/composables/useFilterConfigsToolkit.d.ts +2 -1
  94. package/types/modules/filters/createTableFiltersStore.d.ts +23 -11
  95. package/types/modules/filters/modules/filterConfig/classes/FilterConfig.d.ts +3 -1
  96. package/types/modules/filters/modules/filterConfig/components/_custom/filterConfig.d.ts +2 -5
  97. package/types/modules/filters/modules/filterConfig/components/_custom/type-extension-filter-value-field.vue.d.ts +2 -2
  98. package/types/modules/filters/modules/filterConfig/components/_shared/date-time-filter/date-time-filter-value-field.vue.d.ts +3 -3
  99. 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
  100. package/types/modules/filters/modules/filterConfig/components/_shared/durations/duration-filter-value-field.vue.d.ts +3 -3
  101. package/types/modules/filters/modules/filterConfig/components/_shared/has-options/has-option-filter-value-field.vue.d.ts +3 -3
  102. package/types/modules/filters/modules/filterConfig/components/agent/agent-filter-value-field.vue.d.ts +4 -4
  103. package/types/modules/filters/modules/filterConfig/components/agent/config.d.ts +2 -0
  104. package/types/modules/filters/modules/filterConfig/components/agent-status/agent-status-filter-value-field.vue.d.ts +4 -4
  105. package/types/modules/filters/modules/filterConfig/components/amd-result/amd-result-filter-value-field.vue.d.ts +4 -4
  106. package/types/modules/filters/modules/filterConfig/components/auditor/auditor-filter-value-field.vue.d.ts +3 -3
  107. package/types/modules/filters/modules/filterConfig/components/auditor/index.d.ts +5 -5
  108. package/types/modules/filters/modules/filterConfig/components/call-direction/call-direction-filter-value-field.vue.d.ts +4 -4
  109. package/types/modules/filters/modules/filterConfig/components/case-actual-reaction-time/case-actual-reaction-time-filter-value-field.vue.d.ts +3 -3
  110. package/types/modules/filters/modules/filterConfig/components/case-actual-resolution-time/case-actual-resolution-time-filter-value-field.vue.d.ts +3 -3
  111. package/types/modules/filters/modules/filterConfig/components/case-assignee/case-assignee-filter-value-field.vue.d.ts +2 -2
  112. package/types/modules/filters/modules/filterConfig/components/case-assignee/filterConfig.d.ts +5 -5
  113. package/types/modules/filters/modules/filterConfig/components/case-author/case-author-filter-value-field.vue.d.ts +4 -4
  114. package/types/modules/filters/modules/filterConfig/components/case-author/config.d.ts +4 -0
  115. package/types/modules/filters/modules/filterConfig/components/case-close-reason-groups/case-close-reason-groups-filter-value-field.vue.d.ts +3 -3
  116. package/types/modules/filters/modules/filterConfig/components/case-close-reason-groups/config.d.ts +4 -0
  117. package/types/modules/filters/modules/filterConfig/components/case-impacted/case-impacted-filter-value-field.vue.d.ts +4 -4
  118. package/types/modules/filters/modules/filterConfig/components/case-impacted/config.d.ts +2 -0
  119. package/types/modules/filters/modules/filterConfig/components/case-priority/case-priority-filter-value-field.vue.d.ts +4 -4
  120. package/types/modules/filters/modules/filterConfig/components/case-priority/config.d.ts +2 -0
  121. package/types/modules/filters/modules/filterConfig/components/case-reaction-time/case-reaction-time-filter-value-field.vue.d.ts +3 -3
  122. package/types/modules/filters/modules/filterConfig/components/case-reporter/case-reporter-filter-value-field.vue.d.ts +4 -4
  123. package/types/modules/filters/modules/filterConfig/components/case-reporter/config.d.ts +2 -0
  124. package/types/modules/filters/modules/filterConfig/components/case-resolution-time/case-resolution-time-filter-value-field.vue.d.ts +3 -3
  125. package/types/modules/filters/modules/filterConfig/components/case-service/case-service-filter-value-field.vue.d.ts +2 -2
  126. package/types/modules/filters/modules/filterConfig/components/case-service/config.d.ts +4 -0
  127. package/types/modules/filters/modules/filterConfig/components/case-sla/case-sla-filter-value-field.vue.d.ts +4 -4
  128. package/types/modules/filters/modules/filterConfig/components/case-sla/config.d.ts +2 -0
  129. package/types/modules/filters/modules/filterConfig/components/case-sla-condition/case-sla-condition-filter-value-field.vue.d.ts +3 -3
  130. package/types/modules/filters/modules/filterConfig/components/case-sla-condition/config.d.ts +4 -0
  131. package/types/modules/filters/modules/filterConfig/components/case-source/case-source-filter-value-field.vue.d.ts +4 -4
  132. package/types/modules/filters/modules/filterConfig/components/case-source/config.d.ts +4 -0
  133. package/types/modules/filters/modules/filterConfig/components/case-status/case-status-filter-value-field.vue.d.ts +3 -3
  134. package/types/modules/filters/modules/filterConfig/components/case-status/config.d.ts +4 -0
  135. package/types/modules/filters/modules/filterConfig/components/contact/config.d.ts +2 -0
  136. package/types/modules/filters/modules/filterConfig/components/contact/contact-filter-value-field.vue.d.ts +4 -4
  137. package/types/modules/filters/modules/filterConfig/components/contact-group/contact-group-filter-value-field.vue.d.ts +2 -2
  138. package/types/modules/filters/modules/filterConfig/components/contact-group/index.d.ts +6 -4
  139. package/types/modules/filters/modules/filterConfig/components/contact-label/contact-label-filter-value-field.vue.d.ts +3 -3
  140. package/types/modules/filters/modules/filterConfig/components/contact-label/index.d.ts +5 -5
  141. package/types/modules/filters/modules/filterConfig/components/contact-owner/contact-owner-filter-value-field.vue.d.ts +3 -3
  142. package/types/modules/filters/modules/filterConfig/components/contact-owner/index.d.ts +5 -5
  143. package/types/modules/filters/modules/filterConfig/components/created-at-from/created-at-from-filter-value-field.vue.d.ts +3 -3
  144. package/types/modules/filters/modules/filterConfig/components/created-at-to/created-at-to-filter-value-field.vue.d.ts +3 -3
  145. package/types/modules/filters/modules/filterConfig/components/gateway/config.d.ts +2 -0
  146. package/types/modules/filters/modules/filterConfig/components/gateway/gateway-filter-value-field.vue.d.ts +4 -4
  147. package/types/modules/filters/modules/filterConfig/components/grantee/config.d.ts +4 -0
  148. package/types/modules/filters/modules/filterConfig/components/grantee/grantee-filter-value-field.vue.d.ts +4 -4
  149. package/types/modules/filters/modules/filterConfig/components/hangup-cause/hangup-cause-filter-value-field.vue.d.ts +4 -4
  150. package/types/modules/filters/modules/filterConfig/components/has-attachment/has-attachment-filter-value-field.vue.d.ts +4 -4
  151. package/types/modules/filters/modules/filterConfig/components/has-file/has-file-filter-value-field.vue.d.ts +4 -4
  152. package/types/modules/filters/modules/filterConfig/components/has-rating/has-rating-filter-value-field.vue.d.ts +4 -4
  153. package/types/modules/filters/modules/filterConfig/components/has-transcription/has-transcription-filter-value-field.vue.d.ts +4 -4
  154. package/types/modules/filters/modules/filterConfig/components/has-user/has-user-filter-value-field.vue.d.ts +3 -3
  155. package/types/modules/filters/modules/filterConfig/components/index.d.ts +60 -59
  156. package/types/modules/filters/modules/filterConfig/components/queue/index.d.ts +5 -5
  157. package/types/modules/filters/modules/filterConfig/components/queue/queue-filter-value-field.vue.d.ts +3 -3
  158. package/types/modules/filters/modules/filterConfig/components/queue-period/queue-period-filter-value-field.vue.d.ts +4 -4
  159. package/types/modules/filters/modules/filterConfig/components/queue-type/queue-type-filter-value-field.vue.d.ts +4 -4
  160. package/types/modules/filters/modules/filterConfig/components/rated-by/config.d.ts +4 -0
  161. package/types/modules/filters/modules/filterConfig/components/rated-by/rated-by-filter-value-field.vue.d.ts +4 -4
  162. package/types/modules/filters/modules/filterConfig/components/rating/rating-from-to-filter-value-field.vue.d.ts +3 -3
  163. package/types/modules/filters/modules/filterConfig/components/region/index.d.ts +5 -5
  164. package/types/modules/filters/modules/filterConfig/components/region/region-filter-value-field.vue.d.ts +3 -3
  165. package/types/modules/filters/modules/filterConfig/components/score/score-from-to-filter-value-field.vue.d.ts +3 -3
  166. package/types/modules/filters/modules/filterConfig/components/skill/index.d.ts +5 -5
  167. package/types/modules/filters/modules/filterConfig/components/skill/skill-filter-value-field.vue.d.ts +3 -3
  168. package/types/modules/filters/modules/filterConfig/components/supervisor/index.d.ts +5 -5
  169. package/types/modules/filters/modules/filterConfig/components/supervisor/supervisor-filter-value-field.vue.d.ts +3 -3
  170. package/types/modules/filters/modules/filterConfig/components/tag/tag-filter-value-field.vue.d.ts +4 -4
  171. package/types/modules/filters/modules/filterConfig/components/talk-duration/talk-duration-filter-value-field.vue.d.ts +4 -4
  172. package/types/modules/filters/modules/filterConfig/components/team/index.d.ts +5 -5
  173. package/types/modules/filters/modules/filterConfig/components/team/team-filter-value-field.vue.d.ts +3 -3
  174. package/types/modules/filters/modules/filterConfig/components/total-duration/total-duration-filter-value-field.vue.d.ts +4 -4
  175. package/types/modules/filters/modules/filterConfig/components/user/config.d.ts +4 -0
  176. package/types/modules/filters/modules/filterConfig/components/user/user-filter-value-field.vue.d.ts +4 -4
  177. package/types/modules/filters/modules/filterConfig/components/utilization-progress/utilization-progress-filter-value-field.vue.d.ts +4 -4
  178. package/types/modules/filters/modules/filterConfig/components/variable/variable-filter-value-field.vue.d.ts +4 -4
  179. package/types/modules/filters/modules/filterConfig/composables/booleanFilterToolkit.d.ts +2 -2
  180. package/types/modules/filters/scripts/utils.d.ts +2 -2
  181. package/types/modules/headers/createTableHeadersStore.d.ts +57 -58
  182. package/types/modules/permissions-page/stores/createPermissionsStore.d.ts +80 -68
  183. package/types/modules/persist/PersistedStorage.types.d.ts +3 -3
  184. 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: any) => import("./case-assignee").CaseAssigneeFilterConfig;
109
- contactLabel: (params: any) => {
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<agentSearchMethod> | string;
140
+ label?: ReturnType<MessageResolver> | string;
142
141
  staticView?: boolean;
143
142
  notDeletable: boolean;
144
143
  showFilterName: boolean;
145
144
  };
146
- contactOwner: (params: any) => {
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<agentSearchMethod> | string;
171
+ label?: ReturnType<MessageResolver> | string;
173
172
  staticView?: boolean;
174
173
  notDeletable: boolean;
175
174
  showFilterName: boolean;
176
175
  };
177
- contactGroup: (params: any) => {
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<agentSearchMethod> | string;
229
+ label?: ReturnType<MessageResolver> | string;
229
230
  staticView?: boolean;
230
231
  notDeletable: boolean;
231
232
  showFilterName: boolean;
232
233
  };
233
- team: (params: any) => {
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: agentSearchMethod[];
254
+ value: EngineAgentTeam[];
254
255
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
255
- value: agentSearchMethod[];
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<agentSearchMethod> | string;
262
+ label?: ReturnType<MessageResolver> | string;
262
263
  staticView?: boolean;
263
264
  notDeletable: boolean;
264
265
  showFilterName: boolean;
265
266
  };
266
- queue: (params: any) => {
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: agentSearchMethod[];
287
+ value: EngineQueue[];
287
288
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
288
- value: agentSearchMethod[];
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<agentSearchMethod> | string;
295
+ label?: ReturnType<MessageResolver> | string;
295
296
  staticView?: boolean;
296
297
  notDeletable: boolean;
297
298
  showFilterName: boolean;
298
299
  };
299
- skill: (params: any) => {
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: agentSearchMethod[];
320
+ value: EngineQueue[];
320
321
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
321
- value: agentSearchMethod[];
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<agentSearchMethod> | string;
328
+ label?: ReturnType<MessageResolver> | string;
328
329
  staticView?: boolean;
329
330
  notDeletable: boolean;
330
331
  showFilterName: boolean;
331
332
  };
332
- supervisor: (params: any) => {
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: agentSearchMethod[];
353
+ value: EngineQueue[];
353
354
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
354
- value: agentSearchMethod[];
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<agentSearchMethod> | string;
361
+ label?: ReturnType<MessageResolver> | string;
361
362
  staticView?: boolean;
362
363
  notDeletable: boolean;
363
364
  showFilterName: boolean;
364
365
  };
365
- auditor: (params: any) => {
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: agentSearchMethod[];
386
+ value: EngineQueue[];
386
387
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
387
- value: agentSearchMethod[];
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<agentSearchMethod> | string;
394
+ label?: ReturnType<MessageResolver> | string;
394
395
  staticView?: boolean;
395
396
  notDeletable: boolean;
396
397
  showFilterName: boolean;
397
398
  };
398
- region: (params: any) => {
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: agentSearchMethod[];
419
+ value: EngineQueue[];
419
420
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
420
- value: agentSearchMethod[];
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<agentSearchMethod> | string;
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: any) => QueueFilterConfig;
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, true, {}, any>;
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, true, {}, any>;
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;
@@ -0,0 +1,4 @@
1
+ export const searchMethod: (params: any) => Promise<{
2
+ items: any;
3
+ next: any;
4
+ }>;
@@ -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, true, {}, any>;
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, true, {}, any>;
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: any) => RegionFilterConfig;
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, true, {}, any>;
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: any) => SkillFilterConfig;
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: any) => SupervisorFilterConfig;
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;