@webitel/ui-datalist 1.1.73 → 1.1.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -1
- package/src/modules/card/composables/__tests__/useCardValidation.spec.ts +67 -0
- package/src/modules/card/composables/useCardValidation.ts +7 -1
- package/src/modules/filters/modules/filterConfig/components/_shared/string-filter/string-filter-value-field.vue +57 -0
- package/src/modules/filters/modules/filterConfig/components/_shared/string-filter/string-filter-value-preview.vue +11 -0
- package/src/modules/filters/modules/filterConfig/components/bucket/bucket-filter-value-field.vue +81 -0
- package/src/modules/filters/modules/filterConfig/components/bucket/bucket-filter-value-preview.vue +13 -0
- package/src/modules/filters/modules/filterConfig/components/bucket/index.ts +25 -0
- package/src/modules/filters/modules/filterConfig/components/call-reporting-result/call-reporting-result-filter-value-field.vue +81 -0
- package/src/modules/filters/modules/filterConfig/components/call-reporting-result/call-reporting-result-filter-value-preview.vue +35 -0
- package/src/modules/filters/modules/filterConfig/components/index.ts +46 -0
- package/src/modules/filters/modules/filterConfig/components/stop-cause/stop-cause-filter-value-field.vue +81 -0
- package/src/modules/filters/modules/filterConfig/components/stop-cause/stop-cause-filter-value-preview.vue +35 -0
- package/src/modules/filters/modules/filterConfig/components/tags/index.ts +25 -0
- package/src/modules/filters/modules/filterConfig/components/tags/tags-filter-value-field.vue +97 -0
- package/src/modules/filters/modules/filterConfig/components/tags/tags-filter-value-preview.vue +19 -0
- package/src/modules/filters/modules/filterConfig/composables/useCallReportingResultOptions.ts +21 -0
- package/src/modules/filters/modules/filterConfig/composables/useStopCauseOptions.ts +22 -0
- package/src/modules/filters/modules/filterConfig/enums/FilterOption.ts +12 -0
- package/types/.tsbuildinfo +1 -1
- package/types/modules/card/composables/useCardComponent.d.ts +1 -1
- package/types/modules/card/composables/useCardValidation.d.ts +2 -1
- package/types/modules/card/composables/useNestedCardComponent.d.ts +1 -1
- package/types/modules/filter-presets/stores/createFilterPresetsStore.d.ts +3 -0
- package/types/modules/filters/components/config/dynamic-view/dynamic-filter-config-form.vue.d.ts +2 -2
- package/types/modules/filters/modules/filterConfig/components/_shared/date-time-filter/date-time-options/date-time-options-filter-value-field.vue.d.ts +2 -8
- package/types/modules/filters/modules/filterConfig/components/_shared/string-filter/string-filter-value-field.vue.d.ts +13 -0
- package/types/modules/filters/modules/filterConfig/components/_shared/string-filter/string-filter-value-preview.vue.d.ts +6 -0
- package/types/modules/filters/modules/filterConfig/components/bucket/bucket-filter-value-field.vue.d.ts +19 -0
- package/types/modules/filters/modules/filterConfig/components/bucket/bucket-filter-value-preview.vue.d.ts +6 -0
- package/types/modules/filters/modules/filterConfig/components/bucket/index.d.ts +32 -0
- package/types/modules/filters/modules/filterConfig/components/call-reporting-result/call-reporting-result-filter-value-field.vue.d.ts +18 -0
- package/types/modules/filters/modules/filterConfig/components/call-reporting-result/call-reporting-result-filter-value-preview.vue.d.ts +6 -0
- package/types/modules/filters/modules/filterConfig/components/index.d.ts +75 -1
- package/types/modules/filters/modules/filterConfig/components/stop-cause/stop-cause-filter-value-field.vue.d.ts +18 -0
- package/types/modules/filters/modules/filterConfig/components/stop-cause/stop-cause-filter-value-preview.vue.d.ts +6 -0
- package/types/modules/filters/modules/filterConfig/components/tags/index.d.ts +32 -0
- package/types/modules/filters/modules/filterConfig/components/tags/tags-filter-value-field.vue.d.ts +19 -0
- package/types/modules/filters/modules/filterConfig/components/tags/tags-filter-value-preview.vue.d.ts +7 -0
- package/types/modules/filters/modules/filterConfig/composables/useCallReportingResultOptions.d.ts +6 -0
- package/types/modules/filters/modules/filterConfig/composables/useQueueTypeOptions.d.ts +1 -1
- package/types/modules/filters/modules/filterConfig/composables/useStopCauseOptions.d.ts +6 -0
- package/types/modules/filters/modules/filterConfig/enums/FilterOption.d.ts +12 -0
- package/types/modules/headers/createTableHeadersStore.d.ts +6 -0
- package/types/modules/permissions-page/stores/createPermissionsStore.d.ts +6 -0
- package/types/modules/table/createTableStore.store.d.ts +6 -0
|
@@ -20,6 +20,6 @@ export declare const useCardComponent: <CardEntity extends Record<string, any>>(
|
|
|
20
20
|
saveText: import("vue").ComputedRef<any>;
|
|
21
21
|
hasValidationErrors: import("vue").ComputedRef<boolean | import("@regle/schemas").RegleSchemaStatus<CardEntity, {}, true>["$error"]>;
|
|
22
22
|
isAnyFieldEdited: Ref<boolean, boolean>;
|
|
23
|
-
validationFields: import("vue").ComputedRef<
|
|
23
|
+
validationFields: import("vue").ComputedRef<import("..").CardValidationFields<CardEntity>>;
|
|
24
24
|
save: () => Promise<unknown>;
|
|
25
25
|
};
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import type { RegleShortcutDefinition } from '@regle/core';
|
|
2
2
|
import type { RegleSchema } from '@regle/schemas';
|
|
3
3
|
import { type Ref } from 'vue';
|
|
4
|
+
import type { CardValidationFields } from '../types/CardValidationFields.types';
|
|
4
5
|
export declare const useCardValidation: <TState extends Record<string, any>, TSchema extends RegleShortcutDefinition = {}>({ validationSchema, }: {
|
|
5
6
|
validationSchema: Ref<RegleSchema<TState, TSchema>>;
|
|
6
7
|
}) => {
|
|
7
8
|
modelValue: import("vue").ComputedRef<import("@regle/core").JoinDiscriminatedUnions<import("vue").UnwrapNestedRefs<TState>> | import("@regle/schemas").RegleSchemaStatus<TState, TSchema, true>["$value"]>;
|
|
8
|
-
validationFields: import("vue").ComputedRef<
|
|
9
|
+
validationFields: import("vue").ComputedRef<CardValidationFields<TState>>;
|
|
9
10
|
hasValidationErrors: import("vue").ComputedRef<boolean | import("@regle/schemas").RegleSchemaStatus<TState, TSchema, true>["$error"]>;
|
|
10
11
|
validate: () => Promise<import("@regle/schemas").RegleSchemaResult<TState>>;
|
|
11
12
|
};
|
|
@@ -31,6 +31,6 @@ export declare const useNestedCardComponent: <CardEntity extends Record<string,
|
|
|
31
31
|
saveText: import("vue").ComputedRef<any>;
|
|
32
32
|
hasValidationErrors: import("vue").ComputedRef<boolean | import("@regle/schemas").RegleSchemaStatus<CardEntity, {}, true>["$error"]>;
|
|
33
33
|
isAnyFieldEdited: import("vue").Ref<boolean, boolean>;
|
|
34
|
-
validationFields: import("vue").ComputedRef<
|
|
34
|
+
validationFields: import("vue").ComputedRef<import("..").CardValidationFields<CardEntity>>;
|
|
35
35
|
save: () => Promise<unknown>;
|
|
36
36
|
};
|
|
@@ -19,6 +19,7 @@ export declare const filterPresetsStoreBody: (namespace?: string) => {
|
|
|
19
19
|
field: string;
|
|
20
20
|
sort?: (import("@webitel/ui-sdk/src/components/wt-table/types/WtTable").WtTableSortOrder | boolean) | undefined;
|
|
21
21
|
show?: boolean | undefined;
|
|
22
|
+
reorderable?: boolean | undefined;
|
|
22
23
|
shouldBeInitialized?: boolean | undefined;
|
|
23
24
|
access?: (() => boolean | import("vue").Ref<boolean>) | undefined;
|
|
24
25
|
}[], import("../../..").DatalistTableHeader[] | {
|
|
@@ -29,6 +30,7 @@ export declare const filterPresetsStoreBody: (namespace?: string) => {
|
|
|
29
30
|
field: string;
|
|
30
31
|
sort?: (import("@webitel/ui-sdk/src/components/wt-table/types/WtTable").WtTableSortOrder | boolean) | undefined;
|
|
31
32
|
show?: boolean | undefined;
|
|
33
|
+
reorderable?: boolean | undefined;
|
|
32
34
|
shouldBeInitialized?: boolean | undefined;
|
|
33
35
|
access?: (() => boolean | import("vue").Ref<boolean>) | undefined;
|
|
34
36
|
}[]>;
|
|
@@ -40,6 +42,7 @@ export declare const filterPresetsStoreBody: (namespace?: string) => {
|
|
|
40
42
|
field: string;
|
|
41
43
|
sort?: (import("@webitel/ui-sdk/src/components/wt-table/types/WtTable").WtTableSortOrder | boolean) | undefined;
|
|
42
44
|
show?: boolean | undefined;
|
|
45
|
+
reorderable?: boolean | undefined;
|
|
43
46
|
shouldBeInitialized?: boolean | undefined;
|
|
44
47
|
access?: (() => boolean | import("vue").Ref<boolean>) | undefined;
|
|
45
48
|
}[]>;
|
package/types/modules/filters/components/config/dynamic-view/dynamic-filter-config-form.vue.d.ts
CHANGED
|
@@ -28,11 +28,11 @@ type __VLS_Slots = {} & {
|
|
|
28
28
|
'value-input'?: (props: typeof __VLS_8) => any;
|
|
29
29
|
};
|
|
30
30
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
31
|
-
submit: (args_0: FilterInitParams) => any;
|
|
32
31
|
cancel: () => any;
|
|
32
|
+
submit: (args_0: FilterInitParams) => any;
|
|
33
33
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
34
|
-
onSubmit?: ((args_0: FilterInitParams) => any) | undefined;
|
|
35
34
|
onCancel?: (() => any) | undefined;
|
|
35
|
+
onSubmit?: ((args_0: FilterInitParams) => any) | undefined;
|
|
36
36
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
37
37
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
38
38
|
declare const _default: typeof __VLS_export;
|
|
@@ -6,16 +6,10 @@ type __VLS_ModelProps = {
|
|
|
6
6
|
};
|
|
7
7
|
};
|
|
8
8
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
-
"update:modelValue": (value:
|
|
10
|
-
from: number;
|
|
11
|
-
to: number;
|
|
12
|
-
} | undefined) => any;
|
|
9
|
+
"update:modelValue": (value: any) => any;
|
|
13
10
|
"update:invalid": (args_0: boolean) => any;
|
|
14
11
|
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
15
|
-
"onUpdate:modelValue"?: ((value:
|
|
16
|
-
from: number;
|
|
17
|
-
to: number;
|
|
18
|
-
} | undefined) => any) | undefined;
|
|
12
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
19
13
|
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
20
14
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
15
|
declare const _default: typeof __VLS_export;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
type ModelValue = string;
|
|
2
|
+
type __VLS_ModelProps = {
|
|
3
|
+
modelValue?: ModelValue;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
+
"update:modelValue": (value: string | undefined) => any;
|
|
7
|
+
"update:invalid": (args_0: boolean) => any;
|
|
8
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
9
|
+
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
10
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
11
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
declare const _default: typeof __VLS_export;
|
|
13
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
value?: string;
|
|
3
|
+
};
|
|
4
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { WtSysTypeFilterConfig } from '../../classes/FilterConfig';
|
|
2
|
+
type ModelValue = number[];
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
filterConfig: WtSysTypeFilterConfig;
|
|
5
|
+
disableValidation?: boolean;
|
|
6
|
+
};
|
|
7
|
+
type __VLS_ModelProps = {
|
|
8
|
+
modelValue?: ModelValue;
|
|
9
|
+
};
|
|
10
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
11
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
+
"update:modelValue": (value: ModelValue | undefined) => any;
|
|
13
|
+
"update:invalid": (args_0: boolean) => any;
|
|
14
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
15
|
+
"onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
|
|
16
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
17
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const _default: typeof __VLS_export;
|
|
19
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
value: Record<string, unknown>[];
|
|
3
|
+
};
|
|
4
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { type FilterConfigBaseParams, WtSysTypeFilterConfig } from '../../classes/FilterConfig';
|
|
2
|
+
declare class BucketFilterConfig extends WtSysTypeFilterConfig {
|
|
3
|
+
readonly name: "bucket";
|
|
4
|
+
valueInputComponent: import("vue").DefineComponent<{
|
|
5
|
+
filterConfig: WtSysTypeFilterConfig;
|
|
6
|
+
disableValidation?: boolean;
|
|
7
|
+
} & {
|
|
8
|
+
modelValue?: number[];
|
|
9
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
"update:modelValue": (value: number[] | undefined) => any;
|
|
11
|
+
"update:invalid": (args_0: boolean) => any;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
13
|
+
filterConfig: WtSysTypeFilterConfig;
|
|
14
|
+
disableValidation?: boolean;
|
|
15
|
+
} & {
|
|
16
|
+
modelValue?: number[];
|
|
17
|
+
}> & Readonly<{
|
|
18
|
+
"onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
|
|
19
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
20
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
valuePreviewComponent: import("vue").DefineComponent<{
|
|
22
|
+
value: Record<string, unknown>[];
|
|
23
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
24
|
+
value: Record<string, unknown>[];
|
|
25
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
|
+
searchRecords(params: object): Promise<{
|
|
27
|
+
items: unknown[];
|
|
28
|
+
next?: boolean;
|
|
29
|
+
}>;
|
|
30
|
+
}
|
|
31
|
+
export declare const createBucketFilterConfig: (params?: FilterConfigBaseParams) => BucketFilterConfig;
|
|
32
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { WtSysTypeFilterConfig } from '../../classes/FilterConfig';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
filterConfig?: WtSysTypeFilterConfig;
|
|
4
|
+
disableValidation?: boolean;
|
|
5
|
+
};
|
|
6
|
+
type __VLS_ModelProps = {
|
|
7
|
+
modelValue?: string[];
|
|
8
|
+
};
|
|
9
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
10
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
+
"update:modelValue": (value: string[] | undefined) => any;
|
|
12
|
+
"update:invalid": (args_0: boolean) => any;
|
|
13
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
14
|
+
"onUpdate:modelValue"?: ((value: string[] | undefined) => any) | undefined;
|
|
15
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
16
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
declare const _default: typeof __VLS_export;
|
|
18
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
value?: string[];
|
|
3
|
+
};
|
|
4
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
export default _default;
|
|
@@ -10,8 +10,12 @@ import AmdResultFilter from './amd-result/amd-result-filter-value-field.vue';
|
|
|
10
10
|
import AmdResultFilterPreview from './amd-result/amd-result-filter-value-preview.vue';
|
|
11
11
|
import AuditorFilter from './auditor/auditor-filter-value-field.vue';
|
|
12
12
|
import AuditorFilterPreview from './auditor/auditor-filter-value-preview.vue';
|
|
13
|
+
import BucketFilter from './bucket/bucket-filter-value-field.vue';
|
|
14
|
+
import BucketFilterPreview from './bucket/bucket-filter-value-preview.vue';
|
|
13
15
|
import CallDirectionFilterValueField from './call-direction/call-direction-filter-value-field.vue';
|
|
14
16
|
import CallDirectionFilterValuePreview from './call-direction/call-direction-filter-value-preview.vue';
|
|
17
|
+
import CallReportingResultFilter from './call-reporting-result/call-reporting-result-filter-value-field.vue';
|
|
18
|
+
import CallReportingResultFilterPreview from './call-reporting-result/call-reporting-result-filter-value-preview.vue';
|
|
15
19
|
import CaseActualReactionTimeFilterValueField from './case-actual-reaction-time/case-actual-reaction-time-filter-value-field.vue';
|
|
16
20
|
import CaseActualReactionTimeFilterValuePreview from './case-actual-reaction-time/case-actual-reaction-time-filter-value-preview.vue';
|
|
17
21
|
import CaseActualResolutionTimeFilterValueField from './case-actual-resolution-time/case-actual-resolution-time-filter-value-field.vue';
|
|
@@ -80,10 +84,14 @@ import ScoreFilter from './score/score-from-to-filter-value-field.vue';
|
|
|
80
84
|
import ScoreFilterPreview from './score/score-from-to-filter-value-preview.vue';
|
|
81
85
|
import SkillFilter from './skill/skill-filter-value-field.vue';
|
|
82
86
|
import SkillFilterPreview from './skill/skill-filter-value-preview.vue';
|
|
87
|
+
import StopCauseFilter from './stop-cause/stop-cause-filter-value-field.vue';
|
|
88
|
+
import StopCauseFilterPreview from './stop-cause/stop-cause-filter-value-preview.vue';
|
|
83
89
|
import SupervisorFilter from './supervisor/supervisor-filter-value-field.vue';
|
|
84
90
|
import SupervisorFilterPreview from './supervisor/supervisor-filter-value-preview.vue';
|
|
85
91
|
import TagFilter from './tag/tag-filter-value-field.vue';
|
|
86
92
|
import TagFilterPreview from './tag/tag-filter-value-preview.vue';
|
|
93
|
+
import TagsFilter from './tags/tags-filter-value-field.vue';
|
|
94
|
+
import TagsFilterPreview from './tags/tags-filter-value-preview.vue';
|
|
87
95
|
import TalkDurationFilter from './talk-duration/talk-duration-filter-value-field.vue';
|
|
88
96
|
import TalkDurationFilterPreview from './talk-duration/talk-duration-filter-value-preview.vue';
|
|
89
97
|
import TeamFilter from './team/team-filter-value-field.vue';
|
|
@@ -96,7 +104,7 @@ import UtilizationProgressFilter from './utilization-progress/utilization-progre
|
|
|
96
104
|
import UtilizationProgressFilterPreview from './utilization-progress/utilization-progress-filter-value-preview.vue';
|
|
97
105
|
import VariableFilter from './variable/variable-filter-value-field.vue';
|
|
98
106
|
import VariableFilterPreview from './variable/variable-filter-value-preview.vue';
|
|
99
|
-
export { AgentFilter, AgentFilterPreview, AgentStatusFilter, AgentStatusFilterPreview, AmdResultFilter, AmdResultFilterPreview, AuditorFilter, AuditorFilterPreview, CallDirectionFilterValueField, CallDirectionFilterValuePreview, CaseActualReactionTimeFilterValueField, CaseActualReactionTimeFilterValuePreview, CaseActualResolutionTimeFilterValueField, CaseActualResolutionTimeFilterValuePreview, CaseAuthorFilterValueField, CaseAuthorFilterValuePreview, CaseCloseReasonGroupsFilterValueField, CaseCloseReasonGroupsFilterValuePreview, CaseImpactedFilterValueField, CaseImpactedFilterValuePreview, CasePriorityFilterValueField, CasePriorityFilterValuePreview, CaseReactionTimeFilterValueField, CaseReactionTimeFilterValuePreview, CaseReporterFilterValueField, CaseReporterFilterValuePreview, CaseResolutionTimeFilterValueField, CaseResolutionTimeFilterValuePreview, CaseServiceFilterValueField, CaseServiceFilterValuePreview, CaseSlaConditionFilterValueField, CaseSlaConditionFilterValuePreview, CaseSlaFilterValueField, CaseSlaFilterValuePreview, CaseSourceFilterValueField, CaseSourceFilterValuePreview, CaseStatusFilterValueField, CaseStatusFilterValuePreview, ContactFilter, ContactFilterPreview, ContactGroupFilter, ContactGroupFilterPreview, ContactLabelFilter, ContactLabelFilterPreview, ContactOwnerFilter, ContactOwnerFilterPreview, DateTimeOptionsFilterValueField, GatewayFilter, GatewayFilterPreview, GranteeFilter, GranteeFilterPreview, HangupCauseFilterValueField, HangupCauseFilterValuePreview, HasAttachmentFilter, HasAttachmentFilterPreview, HasFileFilter, HasFileFilterPreview, HasRatingFilterValueField, HasRatingFilterValuePreview, HasTranscriptionFilter, HasTranscriptionFilterPreview, HasUserFilter, HasUserFilterPreview, QueueFilter, QueueFilterPreview, QueuePeriodFilter, QueuePeriodFilterPreview, QueueTypeFilter, QueueTypeFilterPreview, RatedByFilter, RatedByFilterPreview, RatingFromToFilter, RatingFromToFilterPreview, RegionFilter, RegionFilterPreview, ScoreFilter, ScoreFilterPreview, SkillFilter, SkillFilterPreview, SupervisorFilter, SupervisorFilterPreview, TagFilter, TagFilterPreview, TalkDurationFilter, TalkDurationFilterPreview, TeamFilter, TeamFilterPreview, TotalDurationFilter, TotalDurationFilterPreview, UserFilter, UserFilterPreview, UtilizationProgressFilter, UtilizationProgressFilterPreview, VariableFilter, VariableFilterPreview, };
|
|
107
|
+
export { AgentFilter, AgentFilterPreview, AgentStatusFilter, AgentStatusFilterPreview, AmdResultFilter, AmdResultFilterPreview, AuditorFilter, AuditorFilterPreview, BucketFilter, BucketFilterPreview, CallDirectionFilterValueField, CallDirectionFilterValuePreview, CallReportingResultFilter, CallReportingResultFilterPreview, CaseActualReactionTimeFilterValueField, CaseActualReactionTimeFilterValuePreview, CaseActualResolutionTimeFilterValueField, CaseActualResolutionTimeFilterValuePreview, CaseAuthorFilterValueField, CaseAuthorFilterValuePreview, CaseCloseReasonGroupsFilterValueField, CaseCloseReasonGroupsFilterValuePreview, CaseImpactedFilterValueField, CaseImpactedFilterValuePreview, CasePriorityFilterValueField, CasePriorityFilterValuePreview, CaseReactionTimeFilterValueField, CaseReactionTimeFilterValuePreview, CaseReporterFilterValueField, CaseReporterFilterValuePreview, CaseResolutionTimeFilterValueField, CaseResolutionTimeFilterValuePreview, CaseServiceFilterValueField, CaseServiceFilterValuePreview, CaseSlaConditionFilterValueField, CaseSlaConditionFilterValuePreview, CaseSlaFilterValueField, CaseSlaFilterValuePreview, CaseSourceFilterValueField, CaseSourceFilterValuePreview, CaseStatusFilterValueField, CaseStatusFilterValuePreview, ContactFilter, ContactFilterPreview, ContactGroupFilter, ContactGroupFilterPreview, ContactLabelFilter, ContactLabelFilterPreview, ContactOwnerFilter, ContactOwnerFilterPreview, DateTimeOptionsFilterValueField, GatewayFilter, GatewayFilterPreview, GranteeFilter, GranteeFilterPreview, HangupCauseFilterValueField, HangupCauseFilterValuePreview, HasAttachmentFilter, HasAttachmentFilterPreview, HasFileFilter, HasFileFilterPreview, HasRatingFilterValueField, HasRatingFilterValuePreview, HasTranscriptionFilter, HasTranscriptionFilterPreview, HasUserFilter, HasUserFilterPreview, QueueFilter, QueueFilterPreview, QueuePeriodFilter, QueuePeriodFilterPreview, QueueTypeFilter, QueueTypeFilterPreview, RatedByFilter, RatedByFilterPreview, RatingFromToFilter, RatingFromToFilterPreview, RegionFilter, RegionFilterPreview, ScoreFilter, ScoreFilterPreview, SkillFilter, SkillFilterPreview, StopCauseFilter, StopCauseFilterPreview, SupervisorFilter, SupervisorFilterPreview, TagFilter, TagFilterPreview, TagsFilter, TagsFilterPreview, TalkDurationFilter, TalkDurationFilterPreview, TeamFilter, TeamFilterPreview, TotalDurationFilter, TotalDurationFilterPreview, UserFilter, UserFilterPreview, UtilizationProgressFilter, UtilizationProgressFilterPreview, VariableFilter, VariableFilterPreview, };
|
|
100
108
|
export declare const FilterOptionToValueComponentMap: Record<FilterOption, Component>;
|
|
101
109
|
export declare const FilterOptionToPreviewComponentMap: Record<FilterOption, Component>;
|
|
102
110
|
export declare const FilterOptionToPreviewApiSearchMethodMap: Record<FilterOption, (...params: FilterConfigSearchMethodParams) => Promise<{
|
|
@@ -429,4 +437,70 @@ export declare const FilterOptionToFilterConfigCreatorMap: {
|
|
|
429
437
|
notDeletable: boolean;
|
|
430
438
|
showFilterName: boolean;
|
|
431
439
|
};
|
|
440
|
+
bucket: (params?: import("..").FilterConfigBaseParams) => {
|
|
441
|
+
readonly name: "bucket";
|
|
442
|
+
valueInputComponent: import("vue").DefineComponent<{
|
|
443
|
+
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
444
|
+
disableValidation?: boolean;
|
|
445
|
+
} & {
|
|
446
|
+
modelValue?: number[];
|
|
447
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
448
|
+
"update:modelValue": (value: number[] | undefined) => any;
|
|
449
|
+
"update:invalid": (args_0: boolean) => any;
|
|
450
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
451
|
+
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
452
|
+
disableValidation?: boolean;
|
|
453
|
+
} & {
|
|
454
|
+
modelValue?: number[];
|
|
455
|
+
}> & Readonly<{
|
|
456
|
+
"onUpdate:modelValue"?: ((value: number[] | undefined) => any) | undefined;
|
|
457
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
458
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
459
|
+
valuePreviewComponent: import("vue").DefineComponent<{
|
|
460
|
+
value: Record<string, unknown>[];
|
|
461
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
462
|
+
value: Record<string, unknown>[];
|
|
463
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
464
|
+
searchRecords(params: object): Promise<{
|
|
465
|
+
items: unknown[];
|
|
466
|
+
next?: boolean;
|
|
467
|
+
}>;
|
|
468
|
+
label?: ReturnType<MessageResolver> | string;
|
|
469
|
+
staticView?: boolean;
|
|
470
|
+
notDeletable: boolean;
|
|
471
|
+
showFilterName: boolean;
|
|
472
|
+
};
|
|
473
|
+
tags: (params?: import("..").FilterConfigBaseParams) => {
|
|
474
|
+
readonly name: "tags";
|
|
475
|
+
valueInputComponent: import("vue").DefineComponent<{
|
|
476
|
+
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
477
|
+
disableValidation?: boolean;
|
|
478
|
+
} & {
|
|
479
|
+
modelValue?: string[];
|
|
480
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
481
|
+
"update:modelValue": (value: string[] | undefined) => any;
|
|
482
|
+
"update:invalid": (args_0: boolean) => any;
|
|
483
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
484
|
+
filterConfig: import("..").WtSysTypeFilterConfig;
|
|
485
|
+
disableValidation?: boolean;
|
|
486
|
+
} & {
|
|
487
|
+
modelValue?: string[];
|
|
488
|
+
}> & Readonly<{
|
|
489
|
+
"onUpdate:modelValue"?: ((value: string[] | undefined) => any) | undefined;
|
|
490
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
491
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
492
|
+
valuePreviewComponent: import("vue").DefineComponent<{
|
|
493
|
+
value?: string[];
|
|
494
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
495
|
+
value?: string[];
|
|
496
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
497
|
+
searchRecords(params: object): Promise<{
|
|
498
|
+
items: unknown[];
|
|
499
|
+
next?: boolean;
|
|
500
|
+
}>;
|
|
501
|
+
label?: ReturnType<MessageResolver> | string;
|
|
502
|
+
staticView?: boolean;
|
|
503
|
+
notDeletable: boolean;
|
|
504
|
+
showFilterName: boolean;
|
|
505
|
+
};
|
|
432
506
|
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { WtSysTypeFilterConfig } from '../../classes/FilterConfig';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
filterConfig?: WtSysTypeFilterConfig;
|
|
4
|
+
disableValidation?: boolean;
|
|
5
|
+
};
|
|
6
|
+
type __VLS_ModelProps = {
|
|
7
|
+
modelValue?: string[];
|
|
8
|
+
};
|
|
9
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
10
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
+
"update:modelValue": (value: string[] | undefined) => any;
|
|
12
|
+
"update:invalid": (args_0: boolean) => any;
|
|
13
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
14
|
+
"onUpdate:modelValue"?: ((value: string[] | undefined) => any) | undefined;
|
|
15
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
16
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
declare const _default: typeof __VLS_export;
|
|
18
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
value?: string[];
|
|
3
|
+
};
|
|
4
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { type FilterConfigBaseParams, WtSysTypeFilterConfig } from '../../classes/FilterConfig';
|
|
2
|
+
declare class QueueTagsFilterConfig extends WtSysTypeFilterConfig {
|
|
3
|
+
readonly name: "tags";
|
|
4
|
+
valueInputComponent: import("vue").DefineComponent<{
|
|
5
|
+
filterConfig: WtSysTypeFilterConfig;
|
|
6
|
+
disableValidation?: boolean;
|
|
7
|
+
} & {
|
|
8
|
+
modelValue?: string[];
|
|
9
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
"update:modelValue": (value: string[] | undefined) => any;
|
|
11
|
+
"update:invalid": (args_0: boolean) => any;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
13
|
+
filterConfig: WtSysTypeFilterConfig;
|
|
14
|
+
disableValidation?: boolean;
|
|
15
|
+
} & {
|
|
16
|
+
modelValue?: string[];
|
|
17
|
+
}> & Readonly<{
|
|
18
|
+
"onUpdate:modelValue"?: ((value: string[] | undefined) => any) | undefined;
|
|
19
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
20
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
valuePreviewComponent: import("vue").DefineComponent<{
|
|
22
|
+
value?: string[];
|
|
23
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
24
|
+
value?: string[];
|
|
25
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
|
+
searchRecords(params: object): Promise<{
|
|
27
|
+
items: unknown[];
|
|
28
|
+
next?: boolean;
|
|
29
|
+
}>;
|
|
30
|
+
}
|
|
31
|
+
export declare const createQueueTagsFilterConfig: (params?: FilterConfigBaseParams) => QueueTagsFilterConfig;
|
|
32
|
+
export {};
|
package/types/modules/filters/modules/filterConfig/components/tags/tags-filter-value-field.vue.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { WtSysTypeFilterConfig } from '../../classes/FilterConfig';
|
|
2
|
+
type ModelValue = string[];
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
filterConfig: WtSysTypeFilterConfig;
|
|
5
|
+
disableValidation?: boolean;
|
|
6
|
+
};
|
|
7
|
+
type __VLS_ModelProps = {
|
|
8
|
+
modelValue?: ModelValue;
|
|
9
|
+
};
|
|
10
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
11
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
+
"update:modelValue": (value: ModelValue | undefined) => any;
|
|
13
|
+
"update:invalid": (args_0: boolean) => any;
|
|
14
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
15
|
+
"onUpdate:modelValue"?: ((value: ModelValue | undefined) => any) | undefined;
|
|
16
|
+
"onUpdate:invalid"?: ((args_0: boolean) => any) | undefined;
|
|
17
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const _default: typeof __VLS_export;
|
|
19
|
+
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
/** tag names — this filter stores strings, not lookup objects */
|
|
3
|
+
value?: string[];
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
@@ -12,9 +12,11 @@ export declare const FilterOption: {
|
|
|
12
12
|
readonly HasFile: "hasFile";
|
|
13
13
|
readonly Score: "score";
|
|
14
14
|
readonly Tag: "tag";
|
|
15
|
+
readonly QueueTags: "tags";
|
|
15
16
|
readonly TalkDuration: "talkDuration";
|
|
16
17
|
readonly Team: "team";
|
|
17
18
|
readonly TotalDuration: "totalDuration";
|
|
19
|
+
readonly AttemptDuration: "duration";
|
|
18
20
|
readonly HasTranscription: "hasTranscription";
|
|
19
21
|
readonly User: "user";
|
|
20
22
|
readonly Variable: "variable";
|
|
@@ -48,6 +50,16 @@ export declare const FilterOption: {
|
|
|
48
50
|
readonly Auditor: "auditor";
|
|
49
51
|
readonly Region: "region";
|
|
50
52
|
readonly UtilizationProgress: "utilizationProgress";
|
|
53
|
+
readonly Bucket: "bucket";
|
|
54
|
+
readonly JoinedAt: "joinedAt";
|
|
55
|
+
readonly LeavingAt: "leavingAt";
|
|
56
|
+
readonly OfferingAt: "offeringAt";
|
|
57
|
+
readonly StopCause: "stopCause";
|
|
58
|
+
readonly MemberPriority: "memberPriority";
|
|
59
|
+
readonly MemberAttempts: "attempts";
|
|
60
|
+
readonly MemberName: "name";
|
|
61
|
+
readonly MemberDestination: "destination";
|
|
62
|
+
readonly CallReportingResult: "result"; /** queue attempt CallReportingStatus */
|
|
51
63
|
};
|
|
52
64
|
/**
|
|
53
65
|
*
|
|
@@ -14,6 +14,7 @@ export declare const tableHeadersStoreBody: ({ rawHeaders, id, }: TableHeadersSt
|
|
|
14
14
|
field: string;
|
|
15
15
|
sort?: (WtTableSortOrder | boolean) | undefined;
|
|
16
16
|
show?: boolean | undefined;
|
|
17
|
+
reorderable?: boolean | undefined;
|
|
17
18
|
shouldBeInitialized?: boolean | undefined;
|
|
18
19
|
access?: (() => boolean | import("vue").Ref<boolean>) | undefined;
|
|
19
20
|
}[], DatalistTableHeader[] | {
|
|
@@ -24,6 +25,7 @@ export declare const tableHeadersStoreBody: ({ rawHeaders, id, }: TableHeadersSt
|
|
|
24
25
|
field: string;
|
|
25
26
|
sort?: (WtTableSortOrder | boolean) | undefined;
|
|
26
27
|
show?: boolean | undefined;
|
|
28
|
+
reorderable?: boolean | undefined;
|
|
27
29
|
shouldBeInitialized?: boolean | undefined;
|
|
28
30
|
access?: (() => boolean | import("vue").Ref<boolean>) | undefined;
|
|
29
31
|
}[]>;
|
|
@@ -35,6 +37,7 @@ export declare const tableHeadersStoreBody: ({ rawHeaders, id, }: TableHeadersSt
|
|
|
35
37
|
field: string;
|
|
36
38
|
sort?: (WtTableSortOrder | boolean) | undefined;
|
|
37
39
|
show?: boolean | undefined;
|
|
40
|
+
reorderable?: boolean | undefined;
|
|
38
41
|
shouldBeInitialized?: boolean | undefined;
|
|
39
42
|
access?: (() => boolean | import("vue").Ref<boolean>) | undefined;
|
|
40
43
|
}[]>;
|
|
@@ -66,6 +69,7 @@ export declare const createTableHeadersStore: <Entity extends Identifiable>(name
|
|
|
66
69
|
field: string;
|
|
67
70
|
sort?: (WtTableSortOrder | boolean) | undefined;
|
|
68
71
|
show?: boolean | undefined;
|
|
72
|
+
reorderable?: boolean | undefined;
|
|
69
73
|
shouldBeInitialized?: boolean | undefined;
|
|
70
74
|
access?: (() => boolean | import("vue").Ref<boolean>) | undefined;
|
|
71
75
|
}[], DatalistTableHeader[] | {
|
|
@@ -76,6 +80,7 @@ export declare const createTableHeadersStore: <Entity extends Identifiable>(name
|
|
|
76
80
|
field: string;
|
|
77
81
|
sort?: (WtTableSortOrder | boolean) | undefined;
|
|
78
82
|
show?: boolean | undefined;
|
|
83
|
+
reorderable?: boolean | undefined;
|
|
79
84
|
shouldBeInitialized?: boolean | undefined;
|
|
80
85
|
access?: (() => boolean | import("vue").Ref<boolean>) | undefined;
|
|
81
86
|
}[]>;
|
|
@@ -87,6 +92,7 @@ export declare const createTableHeadersStore: <Entity extends Identifiable>(name
|
|
|
87
92
|
field: string;
|
|
88
93
|
sort?: (WtTableSortOrder | boolean) | undefined;
|
|
89
94
|
show?: boolean | undefined;
|
|
95
|
+
reorderable?: boolean | undefined;
|
|
90
96
|
shouldBeInitialized?: boolean | undefined;
|
|
91
97
|
access?: (() => boolean | import("vue").Ref<boolean>) | undefined;
|
|
92
98
|
}[]>;
|
|
@@ -28,6 +28,7 @@ export declare const permissionsStoreBody: (namespace: string, config: useTableS
|
|
|
28
28
|
field: string;
|
|
29
29
|
sort?: (import("@webitel/ui-sdk/src/components/wt-table/types/WtTable").WtTableSortOrder | boolean) | undefined;
|
|
30
30
|
show?: boolean | undefined;
|
|
31
|
+
reorderable?: boolean | undefined;
|
|
31
32
|
shouldBeInitialized?: boolean | undefined;
|
|
32
33
|
access?: (() => boolean | import("vue").Ref<boolean>) | undefined;
|
|
33
34
|
}[], import("../../..").DatalistTableHeader[] | {
|
|
@@ -38,6 +39,7 @@ export declare const permissionsStoreBody: (namespace: string, config: useTableS
|
|
|
38
39
|
field: string;
|
|
39
40
|
sort?: (import("@webitel/ui-sdk/src/components/wt-table/types/WtTable").WtTableSortOrder | boolean) | undefined;
|
|
40
41
|
show?: boolean | undefined;
|
|
42
|
+
reorderable?: boolean | undefined;
|
|
41
43
|
shouldBeInitialized?: boolean | undefined;
|
|
42
44
|
access?: (() => boolean | import("vue").Ref<boolean>) | undefined;
|
|
43
45
|
}[]>;
|
|
@@ -49,6 +51,7 @@ export declare const permissionsStoreBody: (namespace: string, config: useTableS
|
|
|
49
51
|
field: string;
|
|
50
52
|
sort?: (import("@webitel/ui-sdk/src/components/wt-table/types/WtTable").WtTableSortOrder | boolean) | undefined;
|
|
51
53
|
show?: boolean | undefined;
|
|
54
|
+
reorderable?: boolean | undefined;
|
|
52
55
|
shouldBeInitialized?: boolean | undefined;
|
|
53
56
|
access?: (() => boolean | import("vue").Ref<boolean>) | undefined;
|
|
54
57
|
}[]>;
|
|
@@ -194,6 +197,7 @@ export declare const createPermissionsStore: (namespace: string, config: Omit<us
|
|
|
194
197
|
field: string;
|
|
195
198
|
sort?: (import("@webitel/ui-sdk/src/components/wt-table/types/WtTable").WtTableSortOrder | boolean) | undefined;
|
|
196
199
|
show?: boolean | undefined;
|
|
200
|
+
reorderable?: boolean | undefined;
|
|
197
201
|
shouldBeInitialized?: boolean | undefined;
|
|
198
202
|
access?: (() => boolean | import("vue").Ref<boolean>) | undefined;
|
|
199
203
|
}[], import("../../..").DatalistTableHeader[] | {
|
|
@@ -204,6 +208,7 @@ export declare const createPermissionsStore: (namespace: string, config: Omit<us
|
|
|
204
208
|
field: string;
|
|
205
209
|
sort?: (import("@webitel/ui-sdk/src/components/wt-table/types/WtTable").WtTableSortOrder | boolean) | undefined;
|
|
206
210
|
show?: boolean | undefined;
|
|
211
|
+
reorderable?: boolean | undefined;
|
|
207
212
|
shouldBeInitialized?: boolean | undefined;
|
|
208
213
|
access?: (() => boolean | import("vue").Ref<boolean>) | undefined;
|
|
209
214
|
}[]>;
|
|
@@ -215,6 +220,7 @@ export declare const createPermissionsStore: (namespace: string, config: Omit<us
|
|
|
215
220
|
field: string;
|
|
216
221
|
sort?: (import("@webitel/ui-sdk/src/components/wt-table/types/WtTable").WtTableSortOrder | boolean) | undefined;
|
|
217
222
|
show?: boolean | undefined;
|
|
223
|
+
reorderable?: boolean | undefined;
|
|
218
224
|
shouldBeInitialized?: boolean | undefined;
|
|
219
225
|
access?: (() => boolean | import("vue").Ref<boolean>) | undefined;
|
|
220
226
|
}[]>;
|