@webitel/ui-datalist 26.8.7 → 26.8.9

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 (137) hide show
  1. package/package.json +1 -1
  2. package/src/modules/filter-presets/components/apply-preset/apply-preset-action.vue +16 -4
  3. package/src/modules/filter-presets/components/save-preset/save-preset-action.vue +18 -4
  4. package/src/modules/filters/components/column/column-filter-preview.vue +70 -0
  5. package/src/modules/filters/components/column/column-filter.vue +77 -0
  6. package/src/modules/filters/components/config/dynamic-view/dynamic-filter-config-form-value-input.vue +2 -0
  7. package/src/modules/filters/components/config/dynamic-view/dynamic-filter-config-form.vue +43 -5
  8. package/src/modules/filters/components/config/static-view/static-filter-field.vue +6 -21
  9. package/src/modules/filters/components/filters-actions-menu.vue +177 -0
  10. package/src/modules/filters/components/preview/dynamic-filter-preview.vue +5 -60
  11. package/src/modules/filters/components/table-filters-panel.vue +6 -28
  12. package/src/modules/filters/components/types/Filter.types.ts +5 -0
  13. package/src/modules/filters/composables/useColumnFilter.ts +116 -0
  14. package/src/modules/filters/composables/useFilterValueChange.ts +58 -0
  15. package/src/modules/filters/composables/useFilterValuePreview.ts +87 -0
  16. package/src/modules/filters/composables/useSelectedFilters.ts +64 -0
  17. package/src/modules/filters/index.ts +4 -0
  18. package/src/modules/filters/modules/filterConfig/components/_custom/type-extension-filter-value-field.vue +9 -5
  19. package/src/modules/filters/modules/filterConfig/components/_shared/date-time-filter/date-time-filter-value-field.vue +7 -4
  20. package/src/modules/filters/modules/filterConfig/components/_shared/date-time-filter/date-time-options/date-time-options-filter-value-field.vue +7 -4
  21. package/src/modules/filters/modules/filterConfig/components/_shared/durations/duration-filter-value-field.vue +7 -4
  22. package/src/modules/filters/modules/filterConfig/components/_shared/string-filter/string-filter-value-field.vue +6 -3
  23. package/src/modules/filters/modules/filterConfig/components/agent/agent-filter-value-field.vue +6 -3
  24. package/src/modules/filters/modules/filterConfig/components/amd-result/amd-result-filter-value-field.vue +6 -3
  25. package/src/modules/filters/modules/filterConfig/components/call-direction/call-direction-filter-value-field.vue +6 -3
  26. package/src/modules/filters/modules/filterConfig/components/case-assignee/case-assignee-filter-value-field.vue +4 -4
  27. package/src/modules/filters/modules/filterConfig/components/case-author/case-author-filter-value-field.vue +6 -3
  28. package/src/modules/filters/modules/filterConfig/components/case-close-reason-groups/case-close-reason-groups-filter-value-field.vue +7 -4
  29. package/src/modules/filters/modules/filterConfig/components/case-impacted/case-impacted-filter-value-field.vue +6 -3
  30. package/src/modules/filters/modules/filterConfig/components/case-priority/case-priority-filter-value-field.vue +6 -3
  31. package/src/modules/filters/modules/filterConfig/components/case-reporter/case-reporter-filter-value-field.vue +6 -3
  32. package/src/modules/filters/modules/filterConfig/components/case-service/case-service-filter-value-field.vue +1 -32
  33. package/src/modules/filters/modules/filterConfig/components/case-sla/case-sla-filter-value-field.vue +6 -3
  34. package/src/modules/filters/modules/filterConfig/components/case-sla-condition/case-sla-condition-filter-value-field.vue +7 -4
  35. package/src/modules/filters/modules/filterConfig/components/case-source/case-source-filter-value-field.vue +6 -3
  36. package/src/modules/filters/modules/filterConfig/components/case-status/case-status-filter-value-field.vue +7 -4
  37. package/src/modules/filters/modules/filterConfig/components/contact/contact-filter-value-field.vue +6 -3
  38. package/src/modules/filters/modules/filterConfig/components/contact-owner/contact-owner-filter-value-field.vue +3 -3
  39. package/src/modules/filters/modules/filterConfig/components/gateway/gateway-filter-value-field.vue +6 -3
  40. package/src/modules/filters/modules/filterConfig/components/grantee/grantee-filter-value-field.vue +6 -3
  41. package/src/modules/filters/modules/filterConfig/components/hangup-cause/hangup-cause-filter-value-field.vue +6 -3
  42. package/src/modules/filters/modules/filterConfig/components/has-attachment/has-attachment-filter-value-field.vue +6 -3
  43. package/src/modules/filters/modules/filterConfig/components/rated-by/rated-by-filter-value-field.vue +6 -3
  44. package/src/modules/filters/modules/filterConfig/components/rating/rating-from-to-filter-value-field.vue +7 -4
  45. package/src/modules/filters/modules/filterConfig/components/score/score-from-to-filter-value-field.vue +4 -4
  46. package/src/modules/filters/modules/filterConfig/components/tag/tag-filter-value-field.vue +6 -3
  47. package/src/modules/filters/modules/filterConfig/components/user/user-filter-value-field.vue +6 -3
  48. package/src/modules/filters/modules/filterConfig/components/variable/variable-filter-value-field.vue +6 -3
  49. package/src/modules/table/createTableStore.store.ts +24 -3
  50. package/src/modules/types/tableStore.types.ts +18 -1
  51. package/types/.tsbuildinfo +1 -1
  52. package/types/modules/filter-presets/components/apply-preset/apply-preset-action.vue.d.ts +15 -1
  53. package/types/modules/filter-presets/components/save-preset/save-preset-action.vue.d.ts +17 -1
  54. package/types/modules/filter-presets/stores/createFilterPresetsStore.d.ts +2 -35
  55. package/types/modules/filters/components/column/column-filter-preview.vue.d.ts +21 -0
  56. package/types/modules/filters/components/column/column-filter.vue.d.ts +36 -0
  57. package/types/modules/filters/components/config/dynamic-view/dynamic-filter-config-form-label.vue.d.ts +2 -2
  58. package/types/modules/filters/components/config/dynamic-view/dynamic-filter-config-form-value-input.vue.d.ts +3 -2
  59. package/types/modules/filters/components/config/dynamic-view/dynamic-filter-config-form.vue.d.ts +13 -1
  60. package/types/modules/filters/components/config/static-view/static-filter-field.vue.d.ts +2 -2
  61. package/types/modules/filters/components/filters-actions-menu.vue.d.ts +29 -0
  62. package/types/modules/filters/components/table-filters-panel.vue.d.ts +6 -6
  63. package/types/modules/filters/components/types/Filter.types.d.ts +4 -0
  64. package/types/modules/filters/composables/useColumnFilter.d.ts +27 -0
  65. package/types/modules/filters/composables/useFilterValueChange.d.ts +23 -0
  66. package/types/modules/filters/composables/useFilterValuePreview.d.ts +21 -0
  67. package/types/modules/filters/composables/useSelectedFilters.d.ts +22 -0
  68. package/types/modules/filters/index.d.ts +3 -1
  69. package/types/modules/filters/modules/filterConfig/components/_custom/type-extension-filter-value-field.vue.d.ts +3 -2
  70. package/types/modules/filters/modules/filterConfig/components/_shared/date-time-filter/date-time-filter-value-field.vue.d.ts +8 -4
  71. package/types/modules/filters/modules/filterConfig/components/_shared/date-time-filter/date-time-options/date-time-options-filter-value-field.vue.d.ts +8 -4
  72. package/types/modules/filters/modules/filterConfig/components/_shared/durations/duration-filter-value-field.vue.d.ts +8 -4
  73. package/types/modules/filters/modules/filterConfig/components/_shared/string-filter/string-filter-value-field.vue.d.ts +8 -4
  74. package/types/modules/filters/modules/filterConfig/components/agent/agent-filter-value-field.vue.d.ts +8 -4
  75. package/types/modules/filters/modules/filterConfig/components/agent-status/agent-status-filter-value-field.vue.d.ts +2 -2
  76. package/types/modules/filters/modules/filterConfig/components/amd-result/amd-result-filter-value-field.vue.d.ts +8 -4
  77. package/types/modules/filters/modules/filterConfig/components/auditor/auditor-filter-value-field.vue.d.ts +2 -2
  78. package/types/modules/filters/modules/filterConfig/components/auditor/index.d.ts +2 -2
  79. package/types/modules/filters/modules/filterConfig/components/bucket/bucket-filter-value-field.vue.d.ts +2 -2
  80. package/types/modules/filters/modules/filterConfig/components/bucket/index.d.ts +2 -2
  81. package/types/modules/filters/modules/filterConfig/components/call-direction/call-direction-filter-value-field.vue.d.ts +8 -4
  82. package/types/modules/filters/modules/filterConfig/components/call-reporting-result/call-reporting-result-filter-value-field.vue.d.ts +2 -2
  83. package/types/modules/filters/modules/filterConfig/components/case-assignee/case-assignee-filter-value-field.vue.d.ts +3 -2
  84. package/types/modules/filters/modules/filterConfig/components/case-assignee/filterConfig.d.ts +4 -2
  85. package/types/modules/filters/modules/filterConfig/components/case-author/case-author-filter-value-field.vue.d.ts +8 -4
  86. package/types/modules/filters/modules/filterConfig/components/case-close-reason-groups/case-close-reason-groups-filter-value-field.vue.d.ts +8 -4
  87. package/types/modules/filters/modules/filterConfig/components/case-impacted/case-impacted-filter-value-field.vue.d.ts +8 -4
  88. package/types/modules/filters/modules/filterConfig/components/case-priority/case-priority-filter-value-field.vue.d.ts +8 -4
  89. package/types/modules/filters/modules/filterConfig/components/case-reporter/case-reporter-filter-value-field.vue.d.ts +8 -4
  90. package/types/modules/filters/modules/filterConfig/components/case-sla/case-sla-filter-value-field.vue.d.ts +8 -4
  91. package/types/modules/filters/modules/filterConfig/components/case-sla-condition/case-sla-condition-filter-value-field.vue.d.ts +8 -4
  92. package/types/modules/filters/modules/filterConfig/components/case-source/case-source-filter-value-field.vue.d.ts +8 -4
  93. package/types/modules/filters/modules/filterConfig/components/case-status/case-status-filter-value-field.vue.d.ts +8 -4
  94. package/types/modules/filters/modules/filterConfig/components/contact/contact-filter-value-field.vue.d.ts +8 -4
  95. package/types/modules/filters/modules/filterConfig/components/contact-group/contact-group-filter-value-field.vue.d.ts +2 -2
  96. package/types/modules/filters/modules/filterConfig/components/contact-group/index.d.ts +2 -2
  97. package/types/modules/filters/modules/filterConfig/components/contact-label/contact-label-filter-value-field.vue.d.ts +2 -2
  98. package/types/modules/filters/modules/filterConfig/components/contact-label/index.d.ts +2 -2
  99. package/types/modules/filters/modules/filterConfig/components/contact-owner/contact-owner-filter-value-field.vue.d.ts +3 -2
  100. package/types/modules/filters/modules/filterConfig/components/contact-owner/index.d.ts +4 -2
  101. package/types/modules/filters/modules/filterConfig/components/gateway/gateway-filter-value-field.vue.d.ts +8 -4
  102. package/types/modules/filters/modules/filterConfig/components/grantee/grantee-filter-value-field.vue.d.ts +8 -4
  103. package/types/modules/filters/modules/filterConfig/components/hangup-cause/hangup-cause-filter-value-field.vue.d.ts +8 -4
  104. package/types/modules/filters/modules/filterConfig/components/has-attachment/has-attachment-filter-value-field.vue.d.ts +8 -4
  105. package/types/modules/filters/modules/filterConfig/components/has-file/has-file-filter-value-field.vue.d.ts +2 -2
  106. package/types/modules/filters/modules/filterConfig/components/has-rating/has-rating-filter-value-field.vue.d.ts +2 -2
  107. package/types/modules/filters/modules/filterConfig/components/has-transcription/has-transcription-filter-value-field.vue.d.ts +2 -2
  108. package/types/modules/filters/modules/filterConfig/components/has-user/has-user-filter-value-field.vue.d.ts +2 -2
  109. package/types/modules/filters/modules/filterConfig/components/index.d.ts +24 -22
  110. package/types/modules/filters/modules/filterConfig/components/queue/index.d.ts +2 -2
  111. package/types/modules/filters/modules/filterConfig/components/queue/queue-filter-value-field.vue.d.ts +2 -2
  112. package/types/modules/filters/modules/filterConfig/components/queue-period/queue-period-filter-value-field.vue.d.ts +2 -2
  113. package/types/modules/filters/modules/filterConfig/components/queue-type/queue-type-filter-value-field.vue.d.ts +2 -2
  114. package/types/modules/filters/modules/filterConfig/components/rated-by/rated-by-filter-value-field.vue.d.ts +8 -4
  115. package/types/modules/filters/modules/filterConfig/components/rating/rating-from-to-filter-value-field.vue.d.ts +8 -4
  116. package/types/modules/filters/modules/filterConfig/components/region/index.d.ts +2 -2
  117. package/types/modules/filters/modules/filterConfig/components/region/region-filter-value-field.vue.d.ts +2 -2
  118. package/types/modules/filters/modules/filterConfig/components/score/score-from-to-filter-value-field.vue.d.ts +3 -2
  119. package/types/modules/filters/modules/filterConfig/components/skill/index.d.ts +2 -2
  120. package/types/modules/filters/modules/filterConfig/components/skill/skill-filter-value-field.vue.d.ts +2 -2
  121. package/types/modules/filters/modules/filterConfig/components/stop-cause/stop-cause-filter-value-field.vue.d.ts +2 -2
  122. package/types/modules/filters/modules/filterConfig/components/supervisor/index.d.ts +2 -2
  123. package/types/modules/filters/modules/filterConfig/components/supervisor/supervisor-filter-value-field.vue.d.ts +2 -2
  124. package/types/modules/filters/modules/filterConfig/components/tag/tag-filter-value-field.vue.d.ts +8 -4
  125. package/types/modules/filters/modules/filterConfig/components/tags/index.d.ts +2 -2
  126. package/types/modules/filters/modules/filterConfig/components/tags/tags-filter-value-field.vue.d.ts +2 -2
  127. package/types/modules/filters/modules/filterConfig/components/talk-duration/talk-duration-filter-value-field.vue.d.ts +2 -2
  128. package/types/modules/filters/modules/filterConfig/components/team/index.d.ts +2 -2
  129. package/types/modules/filters/modules/filterConfig/components/team/team-filter-value-field.vue.d.ts +2 -2
  130. package/types/modules/filters/modules/filterConfig/components/total-duration/total-duration-filter-value-field.vue.d.ts +2 -2
  131. package/types/modules/filters/modules/filterConfig/components/user/user-filter-value-field.vue.d.ts +8 -4
  132. package/types/modules/filters/modules/filterConfig/components/utilization-progress/utilization-progress-filter-value-field.vue.d.ts +2 -2
  133. package/types/modules/filters/modules/filterConfig/components/variable/variable-filter-value-field.vue.d.ts +8 -4
  134. package/types/modules/headers/createTableHeadersStore.d.ts +24 -0
  135. package/types/modules/permissions-page/stores/createPermissionsStore.d.ts +4 -70
  136. package/types/modules/table/createTableStore.store.d.ts +76 -141
  137. package/types/modules/types/tableStore.types.d.ts +15 -1
@@ -7,16 +7,16 @@ declare class AuditorFilterConfig extends WtSysTypeFilterConfig {
7
7
  } & {
8
8
  modelValue?: number[];
9
9
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
- "update:modelValue": (value: number[] | undefined) => any;
11
10
  "update:invalid": (args_0: boolean) => any;
11
+ "update:modelValue": (value: number[] | undefined) => any;
12
12
  }, string, import("vue").PublicProps, Readonly<{
13
13
  filterConfig: WtSysTypeFilterConfig;
14
14
  disableValidation?: boolean;
15
15
  } & {
16
16
  modelValue?: number[];
17
17
  }> & Readonly<{
18
- "onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
19
18
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
19
+ "onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
20
20
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
21
  valuePreviewComponent: import("vue").DefineComponent<{
22
22
  value: EngineQueue[];
@@ -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 | undefined) => any;
13
12
  "update:invalid": (args_0: boolean) => any;
13
+ "update:modelValue": (value: ModelValue | undefined) => any;
14
14
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
15
- "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
16
15
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
16
+ "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
17
17
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
18
  declare const _default: typeof __VLS_export;
19
19
  export default _default;
@@ -7,16 +7,16 @@ declare class BucketFilterConfig extends WtSysTypeFilterConfig {
7
7
  } & {
8
8
  modelValue?: number[];
9
9
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
- "update:modelValue": (value: number[] | undefined) => any;
11
10
  "update:invalid": (args_0: boolean) => any;
11
+ "update:modelValue": (value: number[] | undefined) => any;
12
12
  }, string, import("vue").PublicProps, Readonly<{
13
13
  filterConfig: WtSysTypeFilterConfig;
14
14
  disableValidation?: boolean;
15
15
  } & {
16
16
  modelValue?: number[];
17
17
  }> & Readonly<{
18
- "onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
19
18
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
19
+ "onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
20
20
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
21
  valuePreviewComponent: import("vue").DefineComponent<{
22
22
  value: Record<string, unknown>[];
@@ -1,12 +1,16 @@
1
+ type __VLS_Props = {
2
+ disableValidation?: boolean;
3
+ };
1
4
  type __VLS_ModelProps = {
2
5
  modelValue?: string;
3
6
  };
4
- declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5
- "update:modelValue": (value: string | undefined) => any;
7
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
8
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
9
  "update:invalid": (args_0: boolean) => any;
7
- }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
8
- "onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
10
+ "update:modelValue": (value: string | undefined) => any;
11
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
9
12
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
13
+ "onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
10
14
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
15
  declare const _default: typeof __VLS_export;
12
16
  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[] | undefined) => any;
12
11
  "update:invalid": (args_0: boolean) => any;
12
+ "update:modelValue": (value: string[] | undefined) => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
- "onUpdate:modelValue"?: ((value: string[] | undefined) => any) | undefined;
15
14
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
15
+ "onUpdate:modelValue"?: ((value: string[] | undefined) => any) | undefined;
16
16
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
17
  declare const _default: typeof __VLS_export;
18
18
  export default _default;
@@ -5,17 +5,18 @@ type ModelValue = {
5
5
  };
6
6
  type __VLS_Props = {
7
7
  filterConfig: CaseAssigneeFilterConfig;
8
+ disableValidation?: boolean;
8
9
  };
9
10
  type __VLS_ModelProps = {
10
11
  modelValue?: ModelValue;
11
12
  };
12
13
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
13
14
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
- "update:modelValue": (value: ModelValue) => any;
15
15
  "update:invalid": (args_0: boolean) => any;
16
+ "update:modelValue": (value: ModelValue) => any;
16
17
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
17
- "onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
18
18
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
19
+ "onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
19
20
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
20
21
  declare const _default: typeof __VLS_export;
21
22
  export default _default;
@@ -3,30 +3,32 @@ declare class CaseAssigneeFilterConfig extends WtSysTypeFilterConfig {
3
3
  readonly name: "assignee";
4
4
  valueInputComponent: import("vue").DefineComponent<{
5
5
  filterConfig: CaseAssigneeFilterConfig;
6
+ disableValidation?: boolean;
6
7
  } & {
7
8
  modelValue?: {
8
9
  list: string[];
9
10
  unassigned: boolean;
10
11
  };
11
12
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
+ "update:invalid": (args_0: boolean) => any;
12
14
  "update:modelValue": (value: {
13
15
  list: string[];
14
16
  unassigned: boolean;
15
17
  }) => any;
16
- "update:invalid": (args_0: boolean) => any;
17
18
  }, string, import("vue").PublicProps, Readonly<{
18
19
  filterConfig: CaseAssigneeFilterConfig;
20
+ disableValidation?: boolean;
19
21
  } & {
20
22
  modelValue?: {
21
23
  list: string[];
22
24
  unassigned: boolean;
23
25
  };
24
26
  }> & Readonly<{
27
+ "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
25
28
  "onUpdate:modelValue"?: ((value: {
26
29
  list: string[];
27
30
  unassigned: boolean;
28
31
  }) => any) | undefined;
29
- "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
30
32
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
31
33
  valuePreviewComponent: import("vue").DefineComponent<{
32
34
  value: Array<{
@@ -1,13 +1,17 @@
1
1
  type ModelValue = number[];
2
+ type __VLS_Props = {
3
+ disableValidation?: boolean;
4
+ };
2
5
  type __VLS_ModelProps = {
3
6
  modelValue?: ModelValue;
4
7
  };
5
- declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
- "update:modelValue": (value: ModelValue | undefined) => any;
8
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
9
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
10
  "update:invalid": (args_0: boolean) => any;
8
- }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
9
- "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
11
+ "update:modelValue": (value: ModelValue | undefined) => any;
12
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
10
13
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
14
+ "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
11
15
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
16
  declare const _default: typeof __VLS_export;
13
17
  export default _default;
@@ -1,3 +1,6 @@
1
+ type __VLS_Props = {
2
+ disableValidation?: boolean;
3
+ };
1
4
  type ModelValue = {
2
5
  selection: string;
3
6
  conditions: string;
@@ -5,12 +8,13 @@ type ModelValue = {
5
8
  type __VLS_ModelProps = {
6
9
  modelValue?: ModelValue;
7
10
  };
8
- declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
- "update:modelValue": (value: ModelValue) => any;
11
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
12
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
13
  "update:invalid": (args_0: boolean) => any;
11
- }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
12
- "onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
14
+ "update:modelValue": (value: ModelValue) => any;
15
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
16
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
17
+ "onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
14
18
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
19
  declare const _default: typeof __VLS_export;
16
20
  export default _default;
@@ -1,13 +1,17 @@
1
1
  type ModelValue = number[];
2
+ type __VLS_Props = {
3
+ disableValidation?: boolean;
4
+ };
2
5
  type __VLS_ModelProps = {
3
6
  modelValue?: ModelValue;
4
7
  };
5
- declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
- "update:modelValue": (value: ModelValue | undefined) => any;
8
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
9
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
10
  "update:invalid": (args_0: boolean) => any;
8
- }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
9
- "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
11
+ "update:modelValue": (value: ModelValue | undefined) => any;
12
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
10
13
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
14
+ "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
11
15
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
16
  declare const _default: typeof __VLS_export;
13
17
  export default _default;
@@ -1,13 +1,17 @@
1
1
  type ModelValue = number[];
2
+ type __VLS_Props = {
3
+ disableValidation?: boolean;
4
+ };
2
5
  type __VLS_ModelProps = {
3
6
  modelValue?: ModelValue;
4
7
  };
5
- declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
- "update:modelValue": (value: ModelValue | undefined) => any;
8
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
9
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
10
  "update:invalid": (args_0: boolean) => any;
8
- }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
9
- "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
11
+ "update:modelValue": (value: ModelValue | undefined) => any;
12
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
10
13
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
14
+ "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
11
15
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
16
  declare const _default: typeof __VLS_export;
13
17
  export default _default;
@@ -1,13 +1,17 @@
1
1
  type ModelValue = number[];
2
+ type __VLS_Props = {
3
+ disableValidation?: boolean;
4
+ };
2
5
  type __VLS_ModelProps = {
3
6
  modelValue?: ModelValue;
4
7
  };
5
- declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
- "update:modelValue": (value: ModelValue | undefined) => any;
8
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
9
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
10
  "update:invalid": (args_0: boolean) => any;
8
- }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
9
- "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
11
+ "update:modelValue": (value: ModelValue | undefined) => any;
12
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
10
13
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
14
+ "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
11
15
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
16
  declare const _default: typeof __VLS_export;
13
17
  export default _default;
@@ -1,13 +1,17 @@
1
1
  type ModelValue = number[];
2
+ type __VLS_Props = {
3
+ disableValidation?: boolean;
4
+ };
2
5
  type __VLS_ModelProps = {
3
6
  modelValue?: ModelValue;
4
7
  };
5
- declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
- "update:modelValue": (value: ModelValue | undefined) => any;
8
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
9
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
10
  "update:invalid": (args_0: boolean) => any;
8
- }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
9
- "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
11
+ "update:modelValue": (value: ModelValue | undefined) => any;
12
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
10
13
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
14
+ "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
11
15
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
16
  declare const _default: typeof __VLS_export;
13
17
  export default _default;
@@ -1,3 +1,6 @@
1
+ type __VLS_Props = {
2
+ disableValidation?: boolean;
3
+ };
1
4
  type ModelValue = {
2
5
  selection: string;
3
6
  conditions: string;
@@ -5,12 +8,13 @@ type ModelValue = {
5
8
  type __VLS_ModelProps = {
6
9
  modelValue?: ModelValue;
7
10
  };
8
- declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
- "update:modelValue": (value: ModelValue) => any;
11
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
12
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
13
  "update:invalid": (args_0: boolean) => any;
11
- }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
12
- "onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
14
+ "update:modelValue": (value: ModelValue) => any;
15
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
16
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
17
+ "onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
14
18
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
19
  declare const _default: typeof __VLS_export;
16
20
  export default _default;
@@ -1,13 +1,17 @@
1
1
  type ModelValue = number[];
2
+ type __VLS_Props = {
3
+ disableValidation?: boolean;
4
+ };
2
5
  type __VLS_ModelProps = {
3
6
  modelValue?: ModelValue;
4
7
  };
5
- declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
- "update:modelValue": (value: ModelValue | undefined) => any;
8
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
9
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
10
  "update:invalid": (args_0: boolean) => any;
8
- }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
9
- "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
11
+ "update:modelValue": (value: ModelValue | undefined) => any;
12
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
10
13
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
14
+ "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
11
15
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
16
  declare const _default: typeof __VLS_export;
13
17
  export default _default;
@@ -1,3 +1,6 @@
1
+ type __VLS_Props = {
2
+ disableValidation?: boolean;
3
+ };
1
4
  type ModelValue = {
2
5
  selection: string;
3
6
  conditions: string;
@@ -5,12 +8,13 @@ type ModelValue = {
5
8
  type __VLS_ModelProps = {
6
9
  modelValue?: ModelValue;
7
10
  };
8
- declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
- "update:modelValue": (value: ModelValue) => any;
11
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
12
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
13
  "update:invalid": (args_0: boolean) => any;
11
- }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
12
- "onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
14
+ "update:modelValue": (value: ModelValue) => any;
15
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
16
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
17
+ "onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
14
18
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
19
  declare const _default: typeof __VLS_export;
16
20
  export default _default;
@@ -1,13 +1,17 @@
1
1
  type ModelValue = number[];
2
+ type __VLS_Props = {
3
+ disableValidation?: boolean;
4
+ };
2
5
  type __VLS_ModelProps = {
3
6
  modelValue?: ModelValue;
4
7
  };
5
- declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
- "update:modelValue": (value: ModelValue | undefined) => any;
8
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
9
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
10
  "update:invalid": (args_0: boolean) => any;
8
- }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
9
- "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
11
+ "update:modelValue": (value: ModelValue | undefined) => any;
12
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
10
13
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
14
+ "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
11
15
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
16
  declare const _default: typeof __VLS_export;
13
17
  export default _default;
@@ -13,11 +13,11 @@ type __VLS_ModelProps = {
13
13
  };
14
14
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
15
15
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
16
- "update:modelValue": (value: ModelValue) => any;
17
16
  "update:invalid": (args_0: boolean) => any;
17
+ "update:modelValue": (value: ModelValue) => any;
18
18
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
19
- "onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
20
19
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
20
+ "onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
21
21
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
22
22
  declare const _default: typeof __VLS_export;
23
23
  export default _default;
@@ -11,11 +11,11 @@ declare class ContactGroupFilterConfig extends WtSysTypeFilterConfig {
11
11
  unassigned?: boolean | null;
12
12
  };
13
13
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
+ "update:invalid": (args_0: boolean) => any;
14
15
  "update:modelValue": (value: {
15
16
  list?: string[];
16
17
  unassigned?: boolean | null;
17
18
  }) => any;
18
- "update:invalid": (args_0: boolean) => any;
19
19
  }, string, import("vue").PublicProps, Readonly<{
20
20
  filterConfig: IContactGroupFilterConfig;
21
21
  disableValidation?: boolean;
@@ -26,11 +26,11 @@ declare class ContactGroupFilterConfig extends WtSysTypeFilterConfig {
26
26
  unassigned?: boolean | null;
27
27
  };
28
28
  }> & Readonly<{
29
+ "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
29
30
  "onUpdate:modelValue"?: ((value: {
30
31
  list?: string[];
31
32
  unassigned?: boolean | null;
32
33
  }) => any) | undefined;
33
- "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
34
34
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
35
35
  valuePreviewComponent: import("vue").DefineComponent<{
36
36
  value: Array<{
@@ -10,11 +10,11 @@ type __VLS_ModelProps = {
10
10
  };
11
11
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
12
12
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
- "update:modelValue": (value: ModelValue | undefined) => any;
14
13
  "update:invalid": (args_0: boolean) => any;
14
+ "update:modelValue": (value: ModelValue | undefined) => any;
15
15
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
16
- "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
17
16
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
17
+ "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
18
18
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
19
  declare const _default: typeof __VLS_export;
20
20
  export default _default;
@@ -8,8 +8,8 @@ declare class ContactLabelFilterConfig extends WtSysTypeFilterConfig {
8
8
  } & {
9
9
  modelValue?: number[];
10
10
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11
- "update:modelValue": (value: number[] | undefined) => any;
12
11
  "update:invalid": (args_0: boolean) => any;
12
+ "update:modelValue": (value: number[] | undefined) => any;
13
13
  }, string, import("vue").PublicProps, Readonly<{
14
14
  filterConfig: WtSysTypeFilterConfig;
15
15
  disableValidation?: boolean;
@@ -17,8 +17,8 @@ declare class ContactLabelFilterConfig extends WtSysTypeFilterConfig {
17
17
  } & {
18
18
  modelValue?: number[];
19
19
  }> & Readonly<{
20
- "onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
21
20
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
21
+ "onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
22
22
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
23
23
  valuePreviewComponent: import("vue").DefineComponent<{
24
24
  value: Record<string, unknown>[];
@@ -1,6 +1,7 @@
1
1
  import { WtSysTypeFilterConfig } from '../../classes/FilterConfig';
2
2
  type __VLS_Props = {
3
3
  filterConfig: WtSysTypeFilterConfig;
4
+ disableValidation?: boolean;
4
5
  };
5
6
  type ModelValue = number[];
6
7
  type __VLS_ModelProps = {
@@ -8,11 +9,11 @@ type __VLS_ModelProps = {
8
9
  };
9
10
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
10
11
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11
- "update:modelValue": (value: ModelValue | undefined) => any;
12
12
  "update:invalid": (args_0: boolean) => any;
13
+ "update:modelValue": (value: ModelValue | undefined) => any;
13
14
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
- "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
15
15
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
16
+ "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
16
17
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
18
  declare const _default: typeof __VLS_export;
18
19
  export default _default;
@@ -3,18 +3,20 @@ declare class ContactOwnerFilterConfig extends WtSysTypeFilterConfig {
3
3
  readonly name: "contactOwner";
4
4
  valueInputComponent: import("vue").DefineComponent<{
5
5
  filterConfig: WtSysTypeFilterConfig;
6
+ disableValidation?: boolean;
6
7
  } & {
7
8
  modelValue?: number[];
8
9
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
- "update:modelValue": (value: number[] | undefined) => any;
10
10
  "update:invalid": (args_0: boolean) => any;
11
+ "update:modelValue": (value: number[] | undefined) => any;
11
12
  }, string, import("vue").PublicProps, Readonly<{
12
13
  filterConfig: WtSysTypeFilterConfig;
14
+ disableValidation?: boolean;
13
15
  } & {
14
16
  modelValue?: number[];
15
17
  }> & Readonly<{
16
- "onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
17
18
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
19
+ "onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
18
20
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
21
  valuePreviewComponent: import("vue").DefineComponent<{
20
22
  value: Record<string, unknown>[];
@@ -1,13 +1,17 @@
1
1
  type ModelValue = number[];
2
+ type __VLS_Props = {
3
+ disableValidation?: boolean;
4
+ };
2
5
  type __VLS_ModelProps = {
3
6
  modelValue?: ModelValue;
4
7
  };
5
- declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
- "update:modelValue": (value: ModelValue | undefined) => any;
8
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
9
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
10
  "update:invalid": (args_0: boolean) => any;
8
- }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
9
- "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
11
+ "update:modelValue": (value: ModelValue | undefined) => any;
12
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
10
13
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
14
+ "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
11
15
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
16
  declare const _default: typeof __VLS_export;
13
17
  export default _default;
@@ -1,13 +1,17 @@
1
1
  type ModelValue = number[];
2
+ type __VLS_Props = {
3
+ disableValidation?: boolean;
4
+ };
2
5
  type __VLS_ModelProps = {
3
6
  modelValue?: ModelValue;
4
7
  };
5
- declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
- "update:modelValue": (value: ModelValue | undefined) => any;
8
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
9
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
10
  "update:invalid": (args_0: boolean) => any;
8
- }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
9
- "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
11
+ "update:modelValue": (value: ModelValue | undefined) => any;
12
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
10
13
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
14
+ "onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
11
15
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
16
  declare const _default: typeof __VLS_export;
13
17
  export default _default;
@@ -1,12 +1,16 @@
1
+ type __VLS_Props = {
2
+ disableValidation?: boolean;
3
+ };
1
4
  type __VLS_ModelProps = {
2
5
  modelValue?: string;
3
6
  };
4
- declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5
- "update:modelValue": (value: string | undefined) => any;
7
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
8
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
9
  "update:invalid": (args_0: boolean) => any;
7
- }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
8
- "onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
10
+ "update:modelValue": (value: string | undefined) => any;
11
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
9
12
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
13
+ "onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
10
14
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
15
  declare const _default: typeof __VLS_export;
12
16
  export default _default;
@@ -1,12 +1,16 @@
1
+ type __VLS_Props = {
2
+ disableValidation?: boolean;
3
+ };
1
4
  type __VLS_ModelProps = {
2
5
  modelValue?: boolean | null;
3
6
  };
4
- declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5
- "update:modelValue": (value: boolean | null | undefined) => any;
7
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
8
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
9
  "update:invalid": (args_0: boolean) => any;
7
- }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
8
- "onUpdate:modelValue"?: ((value: boolean | null | undefined) => any) | undefined;
10
+ "update:modelValue": (value: boolean | null | undefined) => any;
11
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
9
12
  "onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
13
+ "onUpdate:modelValue"?: ((value: boolean | null | undefined) => any) | undefined;
10
14
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
15
  declare const _default: typeof __VLS_export;
12
16
  export default _default;