@ironsource/shared-ui 2.1.12-test.75 → 2.1.12-test.76
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/ChartPlane.vue_vue_type_style_index_0_scoped_a4130027_lang.css +1 -0
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_683b8a75_lang.css +1 -0
- package/components/chart/ChartPlane.vue.js +4 -4
- package/components/chart/ChartPlane.vue2.js +25 -17
- package/components/dropdown/v4/ConditionalDropdown.vue.d.ts +17 -9
- package/components/dropdown/v4/ConditionalDropdown.vue.js +4 -4
- package/components/dropdown/v4/ConditionalDropdown.vue2.js +78 -70
- package/components/dropdown/v4/index.d.ts +432 -106
- package/index.d.ts +1545 -893
- package/index.js +1 -1
- package/package.json +1 -1
- package/ChartPlane.vue_vue_type_style_index_0_scoped_903fc6ae_lang.css +0 -1
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_acd8417d_lang.css +0 -1
|
@@ -3706,116 +3706,427 @@ declare const DropdownTypes: () => (({
|
|
|
3706
3706
|
$slots: {
|
|
3707
3707
|
"trigger-end-icon"?(_: {}): any;
|
|
3708
3708
|
};
|
|
3709
|
-
})) |
|
|
3710
|
-
|
|
3711
|
-
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
|
|
3715
|
-
|
|
3716
|
-
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
|
|
3720
|
-
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
|
|
3732
|
-
|
|
3733
|
-
|
|
3734
|
-
|
|
3735
|
-
|
|
3736
|
-
|
|
3737
|
-
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3709
|
+
})) | ({
|
|
3710
|
+
new (...args: any[]): {
|
|
3711
|
+
$: import("vue").ComponentInternalInstance;
|
|
3712
|
+
$data: {};
|
|
3713
|
+
$props: Partial<{
|
|
3714
|
+
label: string;
|
|
3715
|
+
testId: string;
|
|
3716
|
+
isOpen: boolean;
|
|
3717
|
+
infiniteLoading: boolean;
|
|
3718
|
+
triggerShownValuesCount: number;
|
|
3719
|
+
optionNameKey: string;
|
|
3720
|
+
optionIconKey: string;
|
|
3721
|
+
optionImageKey: string;
|
|
3722
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
3723
|
+
optionFlagKey: string;
|
|
3724
|
+
groupedOptions: boolean;
|
|
3725
|
+
comparingKey: string;
|
|
3726
|
+
minCharsToStart: number;
|
|
3727
|
+
searchQuery: string;
|
|
3728
|
+
loadMoreFn: () => Promise<any[]>;
|
|
3729
|
+
fetchDataDebounceTime: number;
|
|
3730
|
+
autoFocusSearch: boolean;
|
|
3731
|
+
loadingOverride: boolean;
|
|
3732
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
3733
|
+
label: {
|
|
3734
|
+
type: import("vue").PropType<string>;
|
|
3735
|
+
required: true;
|
|
3736
|
+
default: string;
|
|
3737
|
+
};
|
|
3738
|
+
testId: {
|
|
3739
|
+
type: import("vue").PropType<string>;
|
|
3740
|
+
default: string;
|
|
3741
|
+
};
|
|
3742
|
+
isOpen: {
|
|
3743
|
+
type: import("vue").PropType<boolean>;
|
|
3744
|
+
default: boolean;
|
|
3745
|
+
};
|
|
3746
|
+
infiniteLoading: {
|
|
3747
|
+
type: import("vue").PropType<boolean>;
|
|
3748
|
+
default: boolean;
|
|
3749
|
+
};
|
|
3750
|
+
triggerShownValuesCount: {
|
|
3751
|
+
type: import("vue").PropType<number>;
|
|
3752
|
+
default: number;
|
|
3753
|
+
};
|
|
3754
|
+
optionNameKey: {
|
|
3755
|
+
type: import("vue").PropType<string>;
|
|
3756
|
+
required: true;
|
|
3757
|
+
default: string;
|
|
3758
|
+
};
|
|
3759
|
+
optionIconKey: {
|
|
3760
|
+
type: import("vue").PropType<string>;
|
|
3761
|
+
default: string;
|
|
3762
|
+
};
|
|
3763
|
+
optionImageKey: {
|
|
3764
|
+
type: import("vue").PropType<string>;
|
|
3765
|
+
default: string;
|
|
3766
|
+
};
|
|
3767
|
+
optionIconType: {
|
|
3768
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
3769
|
+
default: any;
|
|
3770
|
+
};
|
|
3771
|
+
optionFlagKey: {
|
|
3772
|
+
type: import("vue").PropType<string>;
|
|
3773
|
+
default: string;
|
|
3774
|
+
};
|
|
3775
|
+
groupedOptions: {
|
|
3776
|
+
type: import("vue").PropType<boolean>;
|
|
3777
|
+
default: boolean;
|
|
3778
|
+
};
|
|
3779
|
+
comparingKey: {
|
|
3780
|
+
type: import("vue").PropType<string>;
|
|
3781
|
+
required: true;
|
|
3782
|
+
default: string;
|
|
3783
|
+
};
|
|
3784
|
+
conditionalOptions: {
|
|
3785
|
+
type: import("vue").PropType<{
|
|
3786
|
+
label: string;
|
|
3787
|
+
value: string;
|
|
3788
|
+
multi: boolean;
|
|
3789
|
+
}[]>;
|
|
3790
|
+
required: true;
|
|
3791
|
+
};
|
|
3792
|
+
selectedCondition: {
|
|
3793
|
+
type: import("vue").PropType<{
|
|
3794
|
+
label: string;
|
|
3795
|
+
value: string;
|
|
3796
|
+
multi: boolean;
|
|
3797
|
+
}>;
|
|
3798
|
+
required: true;
|
|
3799
|
+
};
|
|
3800
|
+
appliedSelections: {
|
|
3801
|
+
type: import("vue").PropType<unknown>;
|
|
3802
|
+
required: true;
|
|
3803
|
+
};
|
|
3804
|
+
fetchFnCallback: {
|
|
3805
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
3806
|
+
required: true;
|
|
3807
|
+
};
|
|
3808
|
+
minCharsToStart: {
|
|
3809
|
+
type: import("vue").PropType<number>;
|
|
3810
|
+
default: number;
|
|
3811
|
+
};
|
|
3812
|
+
searchQuery: {
|
|
3813
|
+
type: import("vue").PropType<string>;
|
|
3814
|
+
default: string;
|
|
3815
|
+
};
|
|
3816
|
+
loadMoreFn: {
|
|
3817
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
3818
|
+
default: any;
|
|
3819
|
+
};
|
|
3820
|
+
fetchDataDebounceTime: {
|
|
3821
|
+
type: import("vue").PropType<number>;
|
|
3822
|
+
default: number;
|
|
3823
|
+
};
|
|
3824
|
+
autoFocusSearch: {
|
|
3825
|
+
type: import("vue").PropType<boolean>;
|
|
3826
|
+
default: boolean;
|
|
3827
|
+
};
|
|
3828
|
+
loadingOverride: {
|
|
3829
|
+
type: import("vue").PropType<boolean>;
|
|
3830
|
+
default: boolean;
|
|
3831
|
+
};
|
|
3832
|
+
}>> & {
|
|
3833
|
+
onClear?: () => any;
|
|
3834
|
+
onClosed?: () => any;
|
|
3835
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
3836
|
+
label: string;
|
|
3837
|
+
value: string;
|
|
3838
|
+
multi: boolean;
|
|
3839
|
+
}) => any;
|
|
3840
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
3841
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "isOpen" | "infiniteLoading" | "triggerShownValuesCount" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionFlagKey" | "groupedOptions" | "comparingKey" | "minCharsToStart" | "searchQuery" | "loadMoreFn" | "fetchDataDebounceTime" | "autoFocusSearch" | "loadingOverride">;
|
|
3842
|
+
$attrs: {
|
|
3843
|
+
[x: string]: unknown;
|
|
3844
|
+
};
|
|
3845
|
+
$refs: {
|
|
3846
|
+
[x: string]: unknown;
|
|
3847
|
+
};
|
|
3848
|
+
$slots: Readonly<{
|
|
3849
|
+
[name: string]: import("vue").Slot;
|
|
3850
|
+
}>;
|
|
3851
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
3852
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
3853
|
+
$emit: ((event: "clear") => void) & ((event: "closed") => void) & ((event: "update:selectedCondition", value: {
|
|
3763
3854
|
label: string;
|
|
3764
3855
|
value: string;
|
|
3765
3856
|
multi: boolean;
|
|
3766
|
-
}
|
|
3767
|
-
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
|
|
3857
|
+
}) => void) & ((event: "update:appliedSelections", value: unknown) => void);
|
|
3858
|
+
$el: any;
|
|
3859
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
3860
|
+
label: {
|
|
3861
|
+
type: import("vue").PropType<string>;
|
|
3862
|
+
required: true;
|
|
3863
|
+
default: string;
|
|
3864
|
+
};
|
|
3865
|
+
testId: {
|
|
3866
|
+
type: import("vue").PropType<string>;
|
|
3867
|
+
default: string;
|
|
3868
|
+
};
|
|
3869
|
+
isOpen: {
|
|
3870
|
+
type: import("vue").PropType<boolean>;
|
|
3871
|
+
default: boolean;
|
|
3872
|
+
};
|
|
3873
|
+
infiniteLoading: {
|
|
3874
|
+
type: import("vue").PropType<boolean>;
|
|
3875
|
+
default: boolean;
|
|
3876
|
+
};
|
|
3877
|
+
triggerShownValuesCount: {
|
|
3878
|
+
type: import("vue").PropType<number>;
|
|
3879
|
+
default: number;
|
|
3880
|
+
};
|
|
3881
|
+
optionNameKey: {
|
|
3882
|
+
type: import("vue").PropType<string>;
|
|
3883
|
+
required: true;
|
|
3884
|
+
default: string;
|
|
3885
|
+
};
|
|
3886
|
+
optionIconKey: {
|
|
3887
|
+
type: import("vue").PropType<string>;
|
|
3888
|
+
default: string;
|
|
3889
|
+
};
|
|
3890
|
+
optionImageKey: {
|
|
3891
|
+
type: import("vue").PropType<string>;
|
|
3892
|
+
default: string;
|
|
3893
|
+
};
|
|
3894
|
+
optionIconType: {
|
|
3895
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
3896
|
+
default: any;
|
|
3897
|
+
};
|
|
3898
|
+
optionFlagKey: {
|
|
3899
|
+
type: import("vue").PropType<string>;
|
|
3900
|
+
default: string;
|
|
3901
|
+
};
|
|
3902
|
+
groupedOptions: {
|
|
3903
|
+
type: import("vue").PropType<boolean>;
|
|
3904
|
+
default: boolean;
|
|
3905
|
+
};
|
|
3906
|
+
comparingKey: {
|
|
3907
|
+
type: import("vue").PropType<string>;
|
|
3908
|
+
required: true;
|
|
3909
|
+
default: string;
|
|
3910
|
+
};
|
|
3911
|
+
conditionalOptions: {
|
|
3912
|
+
type: import("vue").PropType<{
|
|
3913
|
+
label: string;
|
|
3914
|
+
value: string;
|
|
3915
|
+
multi: boolean;
|
|
3916
|
+
}[]>;
|
|
3917
|
+
required: true;
|
|
3918
|
+
};
|
|
3919
|
+
selectedCondition: {
|
|
3920
|
+
type: import("vue").PropType<{
|
|
3921
|
+
label: string;
|
|
3922
|
+
value: string;
|
|
3923
|
+
multi: boolean;
|
|
3924
|
+
}>;
|
|
3925
|
+
required: true;
|
|
3926
|
+
};
|
|
3927
|
+
appliedSelections: {
|
|
3928
|
+
type: import("vue").PropType<unknown>;
|
|
3929
|
+
required: true;
|
|
3930
|
+
};
|
|
3931
|
+
fetchFnCallback: {
|
|
3932
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
3933
|
+
required: true;
|
|
3934
|
+
};
|
|
3935
|
+
minCharsToStart: {
|
|
3936
|
+
type: import("vue").PropType<number>;
|
|
3937
|
+
default: number;
|
|
3938
|
+
};
|
|
3939
|
+
searchQuery: {
|
|
3940
|
+
type: import("vue").PropType<string>;
|
|
3941
|
+
default: string;
|
|
3942
|
+
};
|
|
3943
|
+
loadMoreFn: {
|
|
3944
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
3945
|
+
default: any;
|
|
3946
|
+
};
|
|
3947
|
+
fetchDataDebounceTime: {
|
|
3948
|
+
type: import("vue").PropType<number>;
|
|
3949
|
+
default: number;
|
|
3950
|
+
};
|
|
3951
|
+
autoFocusSearch: {
|
|
3952
|
+
type: import("vue").PropType<boolean>;
|
|
3953
|
+
default: boolean;
|
|
3954
|
+
};
|
|
3955
|
+
loadingOverride: {
|
|
3956
|
+
type: import("vue").PropType<boolean>;
|
|
3957
|
+
default: boolean;
|
|
3958
|
+
};
|
|
3959
|
+
}>> & {
|
|
3960
|
+
onClear?: () => any;
|
|
3961
|
+
onClosed?: () => any;
|
|
3962
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
3963
|
+
label: string;
|
|
3964
|
+
value: string;
|
|
3965
|
+
multi: boolean;
|
|
3966
|
+
}) => any;
|
|
3967
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
3968
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3969
|
+
"update:selectedCondition": (value: {
|
|
3970
|
+
label: string;
|
|
3971
|
+
value: string;
|
|
3972
|
+
multi: boolean;
|
|
3973
|
+
}) => void;
|
|
3974
|
+
"update:appliedSelections": (value: unknown) => void;
|
|
3975
|
+
clear: () => void;
|
|
3976
|
+
closed: () => void;
|
|
3977
|
+
}, string, {
|
|
3978
|
+
label: string;
|
|
3979
|
+
testId: string;
|
|
3980
|
+
isOpen: boolean;
|
|
3981
|
+
infiniteLoading: boolean;
|
|
3982
|
+
triggerShownValuesCount: number;
|
|
3983
|
+
optionNameKey: string;
|
|
3984
|
+
optionIconKey: string;
|
|
3985
|
+
optionImageKey: string;
|
|
3986
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
3987
|
+
optionFlagKey: string;
|
|
3988
|
+
groupedOptions: boolean;
|
|
3989
|
+
comparingKey: string;
|
|
3990
|
+
minCharsToStart: number;
|
|
3991
|
+
searchQuery: string;
|
|
3992
|
+
loadMoreFn: () => Promise<any[]>;
|
|
3993
|
+
fetchDataDebounceTime: number;
|
|
3994
|
+
autoFocusSearch: boolean;
|
|
3995
|
+
loadingOverride: boolean;
|
|
3996
|
+
}, {}, string> & {
|
|
3997
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
3998
|
+
created?: (() => void) | (() => void)[];
|
|
3999
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
4000
|
+
mounted?: (() => void) | (() => void)[];
|
|
4001
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
4002
|
+
updated?: (() => void) | (() => void)[];
|
|
4003
|
+
activated?: (() => void) | (() => void)[];
|
|
4004
|
+
deactivated?: (() => void) | (() => void)[];
|
|
4005
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
4006
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
4007
|
+
destroyed?: (() => void) | (() => void)[];
|
|
4008
|
+
unmounted?: (() => void) | (() => void)[];
|
|
4009
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
4010
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
4011
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
|
4012
|
+
};
|
|
4013
|
+
$forceUpdate: () => void;
|
|
4014
|
+
$nextTick: typeof import("vue").nextTick;
|
|
4015
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
4016
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
4017
|
+
label: {
|
|
4018
|
+
type: import("vue").PropType<string>;
|
|
4019
|
+
required: true;
|
|
4020
|
+
default: string;
|
|
4021
|
+
};
|
|
4022
|
+
testId: {
|
|
4023
|
+
type: import("vue").PropType<string>;
|
|
4024
|
+
default: string;
|
|
4025
|
+
};
|
|
4026
|
+
isOpen: {
|
|
4027
|
+
type: import("vue").PropType<boolean>;
|
|
4028
|
+
default: boolean;
|
|
4029
|
+
};
|
|
4030
|
+
infiniteLoading: {
|
|
4031
|
+
type: import("vue").PropType<boolean>;
|
|
4032
|
+
default: boolean;
|
|
4033
|
+
};
|
|
4034
|
+
triggerShownValuesCount: {
|
|
4035
|
+
type: import("vue").PropType<number>;
|
|
4036
|
+
default: number;
|
|
4037
|
+
};
|
|
4038
|
+
optionNameKey: {
|
|
4039
|
+
type: import("vue").PropType<string>;
|
|
4040
|
+
required: true;
|
|
4041
|
+
default: string;
|
|
4042
|
+
};
|
|
4043
|
+
optionIconKey: {
|
|
4044
|
+
type: import("vue").PropType<string>;
|
|
4045
|
+
default: string;
|
|
4046
|
+
};
|
|
4047
|
+
optionImageKey: {
|
|
4048
|
+
type: import("vue").PropType<string>;
|
|
4049
|
+
default: string;
|
|
4050
|
+
};
|
|
4051
|
+
optionIconType: {
|
|
4052
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
4053
|
+
default: any;
|
|
4054
|
+
};
|
|
4055
|
+
optionFlagKey: {
|
|
4056
|
+
type: import("vue").PropType<string>;
|
|
4057
|
+
default: string;
|
|
4058
|
+
};
|
|
4059
|
+
groupedOptions: {
|
|
4060
|
+
type: import("vue").PropType<boolean>;
|
|
4061
|
+
default: boolean;
|
|
4062
|
+
};
|
|
4063
|
+
comparingKey: {
|
|
4064
|
+
type: import("vue").PropType<string>;
|
|
4065
|
+
required: true;
|
|
4066
|
+
default: string;
|
|
4067
|
+
};
|
|
4068
|
+
conditionalOptions: {
|
|
4069
|
+
type: import("vue").PropType<{
|
|
4070
|
+
label: string;
|
|
4071
|
+
value: string;
|
|
4072
|
+
multi: boolean;
|
|
4073
|
+
}[]>;
|
|
4074
|
+
required: true;
|
|
4075
|
+
};
|
|
4076
|
+
selectedCondition: {
|
|
4077
|
+
type: import("vue").PropType<{
|
|
4078
|
+
label: string;
|
|
4079
|
+
value: string;
|
|
4080
|
+
multi: boolean;
|
|
4081
|
+
}>;
|
|
4082
|
+
required: true;
|
|
4083
|
+
};
|
|
4084
|
+
appliedSelections: {
|
|
4085
|
+
type: import("vue").PropType<unknown>;
|
|
4086
|
+
required: true;
|
|
4087
|
+
};
|
|
4088
|
+
fetchFnCallback: {
|
|
4089
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
4090
|
+
required: true;
|
|
4091
|
+
};
|
|
4092
|
+
minCharsToStart: {
|
|
4093
|
+
type: import("vue").PropType<number>;
|
|
4094
|
+
default: number;
|
|
4095
|
+
};
|
|
4096
|
+
searchQuery: {
|
|
4097
|
+
type: import("vue").PropType<string>;
|
|
4098
|
+
default: string;
|
|
4099
|
+
};
|
|
4100
|
+
loadMoreFn: {
|
|
4101
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
4102
|
+
default: any;
|
|
4103
|
+
};
|
|
4104
|
+
fetchDataDebounceTime: {
|
|
4105
|
+
type: import("vue").PropType<number>;
|
|
4106
|
+
default: number;
|
|
4107
|
+
};
|
|
4108
|
+
autoFocusSearch: {
|
|
4109
|
+
type: import("vue").PropType<boolean>;
|
|
4110
|
+
default: boolean;
|
|
4111
|
+
};
|
|
4112
|
+
loadingOverride: {
|
|
4113
|
+
type: import("vue").PropType<boolean>;
|
|
4114
|
+
default: boolean;
|
|
4115
|
+
};
|
|
4116
|
+
}>> & {
|
|
4117
|
+
onClear?: () => any;
|
|
4118
|
+
onClosed?: () => any;
|
|
4119
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
3771
4120
|
label: string;
|
|
3772
4121
|
value: string;
|
|
3773
4122
|
multi: boolean;
|
|
3774
|
-
}
|
|
3775
|
-
|
|
3776
|
-
};
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
fetchFnCallback: {
|
|
3782
|
-
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
3783
|
-
required: true;
|
|
3784
|
-
};
|
|
3785
|
-
minCharsToStart: {
|
|
3786
|
-
type: import("vue").PropType<number>;
|
|
3787
|
-
default: number;
|
|
3788
|
-
};
|
|
3789
|
-
searchQuery: {
|
|
3790
|
-
type: import("vue").PropType<string>;
|
|
3791
|
-
default: string;
|
|
3792
|
-
};
|
|
3793
|
-
loadMoreFn: {
|
|
3794
|
-
type: import("vue").PropType<() => Promise<any[]>>;
|
|
3795
|
-
default: any;
|
|
3796
|
-
};
|
|
3797
|
-
fetchDataDebounceTime: {
|
|
3798
|
-
type: import("vue").PropType<number>;
|
|
3799
|
-
default: number;
|
|
3800
|
-
};
|
|
3801
|
-
autoFocusSearch: {
|
|
3802
|
-
type: import("vue").PropType<boolean>;
|
|
3803
|
-
default: boolean;
|
|
3804
|
-
};
|
|
3805
|
-
loadingOverride: {
|
|
3806
|
-
type: import("vue").PropType<boolean>;
|
|
3807
|
-
default: boolean;
|
|
3808
|
-
};
|
|
3809
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3810
|
-
"update:selectedCondition": (value: {
|
|
3811
|
-
label: string;
|
|
3812
|
-
value: string;
|
|
3813
|
-
multi: boolean;
|
|
3814
|
-
}) => void;
|
|
3815
|
-
"update:appliedSelections": (value: unknown) => void;
|
|
3816
|
-
clear: () => void;
|
|
3817
|
-
closed: () => void;
|
|
3818
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
4123
|
+
}) => any;
|
|
4124
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
4125
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
4126
|
+
__isFragment?: never;
|
|
4127
|
+
__isTeleport?: never;
|
|
4128
|
+
__isSuspense?: never;
|
|
4129
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
3819
4130
|
label: {
|
|
3820
4131
|
type: import("vue").PropType<string>;
|
|
3821
4132
|
required: true;
|
|
@@ -3924,7 +4235,16 @@ declare const DropdownTypes: () => (({
|
|
|
3924
4235
|
multi: boolean;
|
|
3925
4236
|
}) => any;
|
|
3926
4237
|
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
3927
|
-
}, {
|
|
4238
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
4239
|
+
"update:selectedCondition": (value: {
|
|
4240
|
+
label: string;
|
|
4241
|
+
value: string;
|
|
4242
|
+
multi: boolean;
|
|
4243
|
+
}) => void;
|
|
4244
|
+
"update:appliedSelections": (value: unknown) => void;
|
|
4245
|
+
clear: () => void;
|
|
4246
|
+
closed: () => void;
|
|
4247
|
+
}, string, {
|
|
3928
4248
|
label: string;
|
|
3929
4249
|
testId: string;
|
|
3930
4250
|
isOpen: boolean;
|
|
@@ -3943,5 +4263,11 @@ declare const DropdownTypes: () => (({
|
|
|
3943
4263
|
fetchDataDebounceTime: number;
|
|
3944
4264
|
autoFocusSearch: boolean;
|
|
3945
4265
|
loadingOverride: boolean;
|
|
3946
|
-
}>)
|
|
4266
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
4267
|
+
$slots: {
|
|
4268
|
+
"option-end"?(_: {
|
|
4269
|
+
option: any;
|
|
4270
|
+
}): any;
|
|
4271
|
+
};
|
|
4272
|
+
})))[];
|
|
3947
4273
|
export { Dropdown, DefaultDropdownTrigger, IconButtonDropdownTrigger, ChipDropdownTrigger, ButtonDropdownTrigger, ButtonFilterDropdownTrigger, AppDropdownTrigger, DropdownTypes, Option, TreeDropdown, ConditionalDropdown, };
|