@webitel/ui-datalist 1.0.88 → 1.0.90
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 -4
- package/src/modules/filter-presets/components/_shared/input-fields/preset-description-field.vue +1 -2
- package/src/modules/filters/components/table-filters-panel.vue +1 -1
- package/types/modules/card/composables/useCardComponent.d.ts +2 -2
- package/types/modules/card/composables/useCardValidation.d.ts +4 -4
- package/types/modules/filters/components/config/dynamic-view/dynamic-filter-config-form.vue.d.ts +2 -48
- package/types/modules/filters/components/config/dynamic-view/dynamic-filter-config-view.vue.d.ts +2 -11
- package/types/modules/filters/components/dynamic-filter-add-action.vue.d.ts +2 -21
- package/types/modules/filters/components/dynamic-filter-panel-wrapper.vue.d.ts +2 -6
- package/types/modules/filters/components/preview/dynamic-filter-preview-info.vue.d.ts +2 -4
- package/types/modules/filters/components/preview/dynamic-filter-preview.vue.d.ts +2 -34
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-datalist",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.90",
|
|
4
4
|
"description": "Toolkit for building data lists in webitel ui system",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"make-all": "npm version patch --git-tag-version false && ( npm run lint:fix || true) && (npm run build:types || true) && npm run utils:publish",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@vuelidate/core": "^2.0.3",
|
|
37
37
|
"@vuelidate/validators": "^2.0.4",
|
|
38
38
|
"@vueuse/core": "^13.3.0",
|
|
39
|
-
"@webitel/api-services": "^0.0.
|
|
39
|
+
"@webitel/api-services": "^0.0.79",
|
|
40
40
|
"@webitel/styleguide": "^24.12.61",
|
|
41
41
|
"@webitel/ui-sdk": "^25.8.62",
|
|
42
42
|
"zod": "^3.25.55"
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
"vue-tsc": "^2.2.8"
|
|
69
69
|
},
|
|
70
70
|
"engines": {
|
|
71
|
-
"npm": "
|
|
72
|
-
"node": "
|
|
71
|
+
"npm": "11",
|
|
72
|
+
"node": "v24"
|
|
73
73
|
},
|
|
74
74
|
"repository": {
|
|
75
75
|
"type": "git",
|
|
@@ -2,13 +2,13 @@ import { StoreDefinition } from 'pinia';
|
|
|
2
2
|
export declare const useCardComponent: <CardEntity>({ useCardStore, }: {
|
|
3
3
|
useCardStore: StoreDefinition;
|
|
4
4
|
}) => {
|
|
5
|
-
modelValue: import("vue").ComputedRef<
|
|
5
|
+
modelValue: import("vue").ComputedRef<unknown>;
|
|
6
6
|
debouncedIsLoading: Readonly<import("vue").Ref<any, any>>;
|
|
7
7
|
originalItemInstance: import("vue").Ref<any, any> & import("vue").ComputedRef<any>;
|
|
8
8
|
isNew: import("vue").ComputedRef<boolean>;
|
|
9
9
|
saveText: import("vue").ComputedRef<any>;
|
|
10
10
|
hasValidationErrors: import("vue").ComputedRef<boolean>;
|
|
11
11
|
isAnyFieldEdited: import("vue").Ref<boolean, boolean>;
|
|
12
|
-
validationFields: import("vue").ComputedRef<{} & {}>;
|
|
12
|
+
validationFields: import("vue").ComputedRef<{} | ({} & {})>;
|
|
13
13
|
save: () => Promise<unknown>;
|
|
14
14
|
};
|
|
@@ -3,8 +3,8 @@ import { Ref } from 'vue';
|
|
|
3
3
|
export declare const useCardValidation: <TState, TSchema>({ validationSchema, }: {
|
|
4
4
|
validationSchema: Ref<RegleSchema<TState, TSchema>>;
|
|
5
5
|
}) => {
|
|
6
|
-
modelValue: import("vue").ComputedRef<import("@regle/core").JoinDiscriminatedUnions<import("vue").UnwrapNestedRefs<TState
|
|
7
|
-
validationFields: import("vue").ComputedRef<{ readonly [TKey in keyof import("@regle/core").JoinDiscriminatedUnions<TState>]: TKey extends keyof import("@regle/core").JoinDiscriminatedUnions<
|
|
8
|
-
hasValidationErrors: import("vue").ComputedRef<boolean>;
|
|
9
|
-
validate: () => Promise<import("@regle/schemas").RegleSchemaResult<
|
|
6
|
+
modelValue: import("vue").ComputedRef<import("@regle/core").JoinDiscriminatedUnions<import("vue").UnwrapNestedRefs<TState>> | import("@regle/schemas").RegleSchemaStatus<TState, TSchema, true>["$value"]>;
|
|
7
|
+
validationFields: import("vue").ComputedRef<(import("@regle/core").HasNamedKeys<TState> extends true ? { readonly [TKey in keyof import("@regle/core").JoinDiscriminatedUnions<TState>]: TKey extends keyof import("@regle/core").JoinDiscriminatedUnions<TState> ? import("@regle/schemas").InferRegleSchemaStatusType<NonNullable<import("@regle/core").JoinDiscriminatedUnions<TState>[TKey]>, TSchema> : never; } & { readonly [TKey_1 in keyof import("@regle/core").JoinDiscriminatedUnions<TState> as TKey_1 extends keyof import("@regle/core").JoinDiscriminatedUnions<TState> ? import("@regle/core").JoinDiscriminatedUnions<TState>[TKey_1] extends NonNullable<import("@regle/core").JoinDiscriminatedUnions<TState>[TKey_1]> ? TKey_1 : never : never]-?: TKey_1 extends keyof import("@regle/core").JoinDiscriminatedUnions<TState> ? import("@regle/schemas").InferRegleSchemaStatusType<NonNullable<import("@regle/core").JoinDiscriminatedUnions<TState>[TKey_1]>, TSchema> : never; } : {}) | { [TIndex in keyof import("@regle/core").TupleToPlainObj<import("type-fest").UnionToTuple<TState, import("type-fest").UnionToIntersection<TState extends any ? () => TState : never> extends () => (infer R) ? R : never>>]: TIndex extends `${infer TIndexInt extends number}` ? { [TKey_2 in keyof import("type-fest").UnionToTuple<TState, import("type-fest").UnionToIntersection<TState extends any ? () => TState : never> extends () => (infer R) ? R : never>[TIndexInt] as NonNullable<import("type-fest").UnionToTuple<TState, import("type-fest").UnionToIntersection<TState extends any ? () => TState : never> extends () => (infer R) ? R : never>[TIndexInt]>[TKey_2] extends import("type-fest").UnionToTuple<TState, import("type-fest").UnionToIntersection<TState extends any ? () => TState : never> extends () => (infer R) ? R : never>[TIndexInt][TKey_2] ? TKey_2 : never]-?: import("@regle/schemas").InferRegleSchemaStatusType<NonNullable<import("type-fest").UnionToTuple<TState, import("type-fest").UnionToIntersection<TState extends any ? () => TState : never> extends () => (infer R) ? R : never>[TIndexInt]>[TKey_2], TSchema>; } & { [TKey_3 in keyof import("type-fest").UnionToTuple<TState, import("type-fest").UnionToIntersection<TState extends any ? () => TState : never> extends () => (infer R) ? R : never>[TIndexInt] as NonNullable<import("type-fest").UnionToTuple<TState, import("type-fest").UnionToIntersection<TState extends any ? () => TState : never> extends () => (infer R) ? R : never>[TIndexInt]>[TKey_3] extends import("type-fest").UnionToTuple<TState, import("type-fest").UnionToIntersection<TState extends any ? () => TState : never> extends () => (infer R) ? R : never>[TIndexInt][TKey_3] ? never : TKey_3]?: import("@regle/schemas").InferRegleSchemaStatusType<NonNullable<import("type-fest").UnionToTuple<TState, import("type-fest").UnionToIntersection<TState extends any ? () => TState : never> extends () => (infer R) ? R : never>[TIndexInt]>[TKey_3], TSchema>; } : {}; }[keyof import("type-fest").UnionToTuple<TState, import("type-fest").UnionToIntersection<TState extends any ? () => TState : never> extends () => (infer R) ? R : never> & `${number}`]>;
|
|
8
|
+
hasValidationErrors: import("vue").ComputedRef<boolean | import("@regle/schemas").RegleSchemaStatus<TState, TSchema, true>["$error"]>;
|
|
9
|
+
validate: () => Promise<import("@regle/schemas").RegleSchemaResult<TState>>;
|
|
10
10
|
};
|
package/types/modules/filters/components/config/dynamic-view/dynamic-filter-config-form.vue.d.ts
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
import { WtButton, WtSelect } from '@webitel/ui-sdk/components';
|
|
2
1
|
import { FilterInitParams, IFilter } from "../../../classes/Filter";
|
|
3
2
|
import { BaseFilterConfig } from "../../../modules/filterConfig/classes/FilterConfig";
|
|
4
|
-
import DynamicFilterConfigFormLabel from './dynamic-filter-config-form-label.vue';
|
|
5
|
-
import DynamicFilterConfigFormValueInput from "./dynamic-filter-config-form-value-input.vue";
|
|
6
3
|
type __VLS_Props = {
|
|
7
4
|
/**
|
|
8
5
|
* @description
|
|
@@ -20,22 +17,6 @@ type __VLS_Props = {
|
|
|
20
17
|
*/
|
|
21
18
|
filter?: IFilter;
|
|
22
19
|
};
|
|
23
|
-
declare const emit: ((evt: "submit", args_0: FilterInitParams) => void) & ((evt: "cancel") => void);
|
|
24
|
-
declare const t: any;
|
|
25
|
-
declare const filterName: import("vue").Ref<any, any>;
|
|
26
|
-
declare const filterLabel: import("vue").Ref<string, string>;
|
|
27
|
-
declare const filterValue: import("vue").Ref<any, any>;
|
|
28
|
-
declare const editMode: boolean;
|
|
29
|
-
declare const invalid: import("vue").Ref<boolean, boolean>;
|
|
30
|
-
declare const filterConfigOptions: import("vue").ComputedRef<BaseFilterConfig[]>;
|
|
31
|
-
declare const selectedFilterConfig: import("vue").ComputedRef<BaseFilterConfig>;
|
|
32
|
-
declare const onValueChange: (v: any) => void;
|
|
33
|
-
declare const onValueInvalidChange: (v: any) => void;
|
|
34
|
-
declare const valueInputLabelText: import("vue").ComputedRef<any>;
|
|
35
|
-
declare const onLabelValueUpdate: (val: string) => void;
|
|
36
|
-
declare const onFilterNameUpdate: (val: string) => void;
|
|
37
|
-
declare const submit: () => void;
|
|
38
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
39
20
|
declare var __VLS_9: {
|
|
40
21
|
filterName: any;
|
|
41
22
|
filterValue: any;
|
|
@@ -43,36 +24,9 @@ declare var __VLS_9: {
|
|
|
43
24
|
onValueChange: (v: any) => void;
|
|
44
25
|
onValueInvalidChange: (v: any) => void;
|
|
45
26
|
};
|
|
46
|
-
type __VLS_Slots =
|
|
27
|
+
type __VLS_Slots = {} & {
|
|
47
28
|
'value-input'?: (props: typeof __VLS_9) => any;
|
|
48
|
-
}
|
|
49
|
-
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
50
|
-
WtButton: typeof WtButton;
|
|
51
|
-
WtSelect: typeof WtSelect;
|
|
52
|
-
DynamicFilterConfigFormLabel: typeof DynamicFilterConfigFormLabel;
|
|
53
|
-
DynamicFilterConfigFormValueInput: typeof DynamicFilterConfigFormValueInput;
|
|
54
|
-
emit: typeof emit;
|
|
55
|
-
t: typeof t;
|
|
56
|
-
filterName: typeof filterName;
|
|
57
|
-
filterLabel: typeof filterLabel;
|
|
58
|
-
filterValue: typeof filterValue;
|
|
59
|
-
editMode: typeof editMode;
|
|
60
|
-
invalid: typeof invalid;
|
|
61
|
-
filterConfigOptions: typeof filterConfigOptions;
|
|
62
|
-
selectedFilterConfig: typeof selectedFilterConfig;
|
|
63
|
-
onValueChange: typeof onValueChange;
|
|
64
|
-
onValueInvalidChange: typeof onValueInvalidChange;
|
|
65
|
-
valueInputLabelText: typeof valueInputLabelText;
|
|
66
|
-
onLabelValueUpdate: typeof onLabelValueUpdate;
|
|
67
|
-
onFilterNameUpdate: typeof onFilterNameUpdate;
|
|
68
|
-
submit: typeof submit;
|
|
69
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
70
|
-
submit: (args_0: FilterInitParams) => any;
|
|
71
|
-
cancel: () => any;
|
|
72
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
73
|
-
onSubmit?: (args_0: FilterInitParams) => any;
|
|
74
|
-
onCancel?: () => any;
|
|
75
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
29
|
+
};
|
|
76
30
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
77
31
|
submit: (args_0: FilterInitParams) => any;
|
|
78
32
|
cancel: () => any;
|
package/types/modules/filters/components/config/dynamic-view/dynamic-filter-config-view.vue.d.ts
CHANGED
|
@@ -1,27 +1,18 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* this component should only be used for config view representation: tooltip/popup/etc,
|
|
3
|
-
* and their styling
|
|
4
|
-
*/
|
|
5
|
-
import { WtPopover } from '@webitel/ui-sdk/components';
|
|
6
1
|
interface Props {
|
|
7
2
|
disabled?: boolean;
|
|
8
3
|
disableClickAway?: boolean;
|
|
9
4
|
}
|
|
10
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
11
5
|
declare var __VLS_5: {
|
|
12
6
|
toggle: any;
|
|
13
7
|
disabled: boolean;
|
|
14
8
|
}, __VLS_7: {
|
|
15
9
|
hide: any;
|
|
16
10
|
};
|
|
17
|
-
type __VLS_Slots =
|
|
11
|
+
type __VLS_Slots = {} & {
|
|
18
12
|
activator?: (props: typeof __VLS_5) => any;
|
|
19
13
|
} & {
|
|
20
14
|
content?: (props: typeof __VLS_7) => any;
|
|
21
|
-
}
|
|
22
|
-
declare const __VLS_self: import("vue").DefineComponent<Props, {
|
|
23
|
-
WtPopover: typeof WtPopover;
|
|
24
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
15
|
+
};
|
|
25
16
|
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
26
17
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
27
18
|
export default _default;
|
|
@@ -1,32 +1,13 @@
|
|
|
1
|
-
import { WtIconAction } from '@webitel/ui-sdk/components';
|
|
2
1
|
import { FilterInitParams } from "../classes/Filter";
|
|
3
2
|
import { BaseFilterConfig } from "../modules/filterConfig/classes/FilterConfig";
|
|
4
|
-
import DynamicFilterConfigForm from './config/dynamic-view/dynamic-filter-config-form.vue';
|
|
5
|
-
import DynamicFilterConfigView from './config/dynamic-view/dynamic-filter-config-view.vue';
|
|
6
3
|
interface Props {
|
|
7
4
|
filterConfigs: BaseFilterConfig[];
|
|
8
5
|
showLabel?: boolean;
|
|
9
6
|
}
|
|
10
|
-
declare const t: any;
|
|
11
|
-
declare const submit: (payload: FilterInitParams, { hide }: {
|
|
12
|
-
hide: any;
|
|
13
|
-
}) => void;
|
|
14
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
15
7
|
declare var __VLS_9: {};
|
|
16
|
-
type __VLS_Slots =
|
|
8
|
+
type __VLS_Slots = {} & {
|
|
17
9
|
form?: (props: typeof __VLS_9) => any;
|
|
18
|
-
}
|
|
19
|
-
declare const __VLS_self: import("vue").DefineComponent<Props, {
|
|
20
|
-
WtIconAction: typeof WtIconAction;
|
|
21
|
-
DynamicFilterConfigForm: typeof DynamicFilterConfigForm;
|
|
22
|
-
DynamicFilterConfigView: typeof DynamicFilterConfigView;
|
|
23
|
-
t: typeof t;
|
|
24
|
-
submit: typeof submit;
|
|
25
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
26
|
-
"add:filter": (args_0: FilterInitParams) => any;
|
|
27
|
-
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
28
|
-
"onAdd:filter"?: (args_0: FilterInitParams) => any;
|
|
29
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
};
|
|
30
11
|
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
31
12
|
"add:filter": (args_0: FilterInitParams) => any;
|
|
32
13
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
@@ -2,16 +2,12 @@ import { ComponentSize } from '@webitel/ui-sdk/enums';
|
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
size?: ComponentSize;
|
|
4
4
|
};
|
|
5
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
6
5
|
declare var __VLS_1: {}, __VLS_3: {};
|
|
7
|
-
type __VLS_Slots =
|
|
6
|
+
type __VLS_Slots = {} & {
|
|
8
7
|
filters?: (props: typeof __VLS_1) => any;
|
|
9
8
|
} & {
|
|
10
9
|
actions?: (props: typeof __VLS_3) => any;
|
|
11
|
-
}
|
|
12
|
-
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
13
|
-
size: ComponentSize;
|
|
14
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
10
|
+
};
|
|
15
11
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
16
12
|
size: ComponentSize;
|
|
17
13
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
2
1
|
declare var __VLS_1: {}, __VLS_7: {};
|
|
3
|
-
type __VLS_Slots =
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
4
3
|
header?: (props: typeof __VLS_1) => any;
|
|
5
4
|
} & {
|
|
6
5
|
default?: (props: typeof __VLS_7) => any;
|
|
7
|
-
}
|
|
8
|
-
declare const __VLS_self: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
};
|
|
9
7
|
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
10
8
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
11
9
|
export default _default;
|
|
@@ -1,45 +1,13 @@
|
|
|
1
|
-
import { WtChip, WtIconBtn, WtLoader, WtPopover } from '@webitel/ui-sdk/components';
|
|
2
1
|
import { IFilter } from '../../classes/Filter';
|
|
3
|
-
import DynamicFilterConfigForm from '../config/dynamic-view/dynamic-filter-config-form.vue';
|
|
4
|
-
import DynamicFilterConfigView from '../config/dynamic-view/dynamic-filter-config-view.vue';
|
|
5
2
|
import { DynamicFilterProps } from '../types/Filter.types';
|
|
6
|
-
import DynamicFilterPreviewInfo from './dynamic-filter-preview-info.vue';
|
|
7
|
-
declare const localValue: import("vue").Ref<any, any>;
|
|
8
|
-
declare const showChipPopover: (event: any, showPopoverCb: (event: any) => void) => void;
|
|
9
|
-
declare const isRenderPreview: import("vue").ComputedRef<any>;
|
|
10
|
-
declare const submit: (filter: IFilter, { hide }: {
|
|
11
|
-
hide: any;
|
|
12
|
-
}) => void;
|
|
13
|
-
declare const deleteFilter: () => void;
|
|
14
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
15
3
|
declare var __VLS_24: {}, __VLS_34: {
|
|
16
4
|
hide: any;
|
|
17
5
|
};
|
|
18
|
-
type __VLS_Slots =
|
|
6
|
+
type __VLS_Slots = {} & {
|
|
19
7
|
info?: (props: typeof __VLS_24) => any;
|
|
20
8
|
} & {
|
|
21
9
|
form?: (props: typeof __VLS_34) => any;
|
|
22
|
-
}
|
|
23
|
-
declare const __VLS_self: import("vue").DefineComponent<DynamicFilterProps, {
|
|
24
|
-
WtChip: typeof WtChip;
|
|
25
|
-
WtIconBtn: typeof WtIconBtn;
|
|
26
|
-
WtLoader: typeof WtLoader;
|
|
27
|
-
WtPopover: typeof WtPopover;
|
|
28
|
-
DynamicFilterConfigForm: typeof DynamicFilterConfigForm;
|
|
29
|
-
DynamicFilterConfigView: typeof DynamicFilterConfigView;
|
|
30
|
-
DynamicFilterPreviewInfo: typeof DynamicFilterPreviewInfo;
|
|
31
|
-
localValue: typeof localValue;
|
|
32
|
-
showChipPopover: typeof showChipPopover;
|
|
33
|
-
isRenderPreview: typeof isRenderPreview;
|
|
34
|
-
submit: typeof submit;
|
|
35
|
-
deleteFilter: typeof deleteFilter;
|
|
36
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
37
|
-
"update:filter": (args_0: import("../../classes/Filter").FilterData) => any;
|
|
38
|
-
"delete:filter": (args_0: IFilter) => any;
|
|
39
|
-
}, string, import("vue").PublicProps, Readonly<DynamicFilterProps> & Readonly<{
|
|
40
|
-
"onUpdate:filter"?: (args_0: import("../../classes/Filter").FilterData) => any;
|
|
41
|
-
"onDelete:filter"?: (args_0: IFilter) => any;
|
|
42
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
};
|
|
43
11
|
declare const __VLS_component: import("vue").DefineComponent<DynamicFilterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
44
12
|
"update:filter": (args_0: import("../../classes/Filter").FilterData) => any;
|
|
45
13
|
"delete:filter": (args_0: IFilter) => any;
|