@ironsource/shared-ui 2.0.0-rc.8 → 2.0.0-rc.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 (52) hide show
  1. package/Button.vue_vue_type_style_index_0_scoped_35545b8c_lang.css +1 -0
  2. package/CardPanel.vue_vue_type_style_index_0_scoped_3cda0f04_lang.css +1 -0
  3. package/FoldableSection.vue_vue_type_style_index_0_scoped_51b5b56d_lang.css +1 -0
  4. package/FormCard.vue_vue_type_style_index_0_scoped_bb7d27f9_lang.css +1 -0
  5. package/MenuItem.vue_vue_type_style_index_0_scoped_67e53b85_lang.css +1 -0
  6. package/ToggleV4.vue_vue_type_style_index_0_scoped_ef31fecc_lang.css +1 -0
  7. package/Tooltip.vue_vue_type_style_index_0_scoped_9020a179_lang.css +1 -0
  8. package/TooltipV4.vue_vue_type_style_index_0_scoped_21f12d1a_lang.css +1 -0
  9. package/components/appTrigger/AppTrigger.vue2.js +19 -20
  10. package/components/button/v3/Button.vue.js +3 -3
  11. package/components/button/v3/Button.vue2.js +1 -1
  12. package/components/button/v3/ScrollButton.vue2.js +4 -5
  13. package/components/includeExclude/IncludeExcludeAppTrigger.vue2.js +15 -16
  14. package/components/includeExclude/IncludeExcludeOption.vue2.js +6 -7
  15. package/components/includeExclude/IncludeExcludeOptionDraggable.vue2.js +16 -17
  16. package/components/input/v3/Input.vue2.js +3 -4
  17. package/components/input/v4/TextField.vue2.js +8 -8
  18. package/components/layout/CardPanel.vue.d.ts +36 -0
  19. package/components/layout/CardPanel.vue.js +7 -0
  20. package/components/layout/CardPanel.vue2.js +25 -0
  21. package/components/layout/FoldableSection.vue.d.ts +50 -0
  22. package/components/layout/FoldableSection.vue.js +7 -0
  23. package/components/layout/FoldableSection.vue2.js +57 -0
  24. package/components/layout/FormCard.vue.d.ts +74 -0
  25. package/components/layout/FormCard.vue.js +7 -0
  26. package/components/layout/FormCard.vue2.js +74 -0
  27. package/components/layout/index.d.ts +405 -0
  28. package/components/layout/index.js +10 -0
  29. package/components/menuItem/MenuItem.vue.js +5 -24
  30. package/components/menuItem/MenuItem.vue2.js +23 -0
  31. package/components/shared/FieldLabel.vue2.js +3 -3
  32. package/components/table/common/Table.common.js +20 -20
  33. package/components/toggle/v4/ToggleV4.vue.js +7 -0
  34. package/components/toggle/v4/ToggleV4.vue2.js +95 -0
  35. package/components/toggle/v4/index.d.ts +313 -0
  36. package/components/toggle/v4/index.js +6 -0
  37. package/components/tooltip/v3/Tooltip.vue.js +6 -3
  38. package/components/tooltip/v3/Tooltip.vue2.js +3 -3
  39. package/components/tooltip/v3/index.js +3 -4
  40. package/components/tooltip/v4/TooltipV4.vue.js +6 -65
  41. package/components/tooltip/v4/TooltipV4.vue2.js +67 -0
  42. package/components/tooltip/v4/index.js +2 -2
  43. package/index.d.ts +623 -1
  44. package/index.js +137 -129
  45. package/package.json +17 -5
  46. package/testids/index.d.ts +11 -0
  47. package/testids/index.js +16 -14
  48. package/Button.vue_vue_type_style_index_0_scoped_bfe31a93_lang.css +0 -1
  49. package/MenuItem.vue_vue_type_style_index_0_scoped_c7e837fa_lang.css +0 -1
  50. package/components/tooltip/v4/TooltipV4.vue3.js +0 -4
  51. /package/{Tooltip.vue_vue_type_style_index_0_lang.css → Tooltip.vue_vue_type_style_index_1_lang.css} +0 -0
  52. /package/{TooltipV4.vue_vue_type_style_index_0_lang.css → TooltipV4.vue_vue_type_style_index_1_lang.css} +0 -0
package/index.d.ts CHANGED
@@ -13,6 +13,7 @@ export * from '@/components/typography';
13
13
  export * from '@/components/typography/v4';
14
14
  export * from '@/components/popover';
15
15
  export * from '@/components/multibar';
16
+ export * from '@/components/layout';
16
17
  import * as filtersPanelV3 from '@/components/filtersPanel/v3';
17
18
  import * as dialogV3 from '@/components/dialog/v3';
18
19
  import * as tableV3 from '@/components/table/v3';
@@ -3615,6 +3616,628 @@ declare const _default: {
3615
3616
  "empty-state"?(_: {}): any;
3616
3617
  };
3617
3618
  })))[];
3619
+ Toggle: {
3620
+ new (...args: any[]): {
3621
+ $: import("vue").ComponentInternalInstance;
3622
+ $data: {};
3623
+ $props: Partial<{
3624
+ text: string;
3625
+ size: "small" | "medium";
3626
+ testId: string;
3627
+ color: "primary" | "test";
3628
+ feedbackVariant: "error" | "success" | "warning";
3629
+ hoverHelpText: string;
3630
+ hoverHelpTextPlacement: "auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
3631
+ feedbackText: string;
3632
+ isLoading: boolean;
3633
+ activeText: string;
3634
+ inactiveText: string;
3635
+ isDisabled: boolean;
3636
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
3637
+ text: {
3638
+ type: import("vue").PropType<string>;
3639
+ default: any;
3640
+ };
3641
+ size: {
3642
+ type: import("vue").PropType<"small" | "medium">;
3643
+ default: string;
3644
+ };
3645
+ testId: {
3646
+ type: import("vue").PropType<string>;
3647
+ default: string;
3648
+ };
3649
+ modelValue: {
3650
+ type: import("vue").PropType<boolean>;
3651
+ required: true;
3652
+ };
3653
+ color: {
3654
+ type: import("vue").PropType<"primary" | "test">;
3655
+ default: string;
3656
+ };
3657
+ feedbackVariant: {
3658
+ type: import("vue").PropType<"error" | "success" | "warning">;
3659
+ default: any;
3660
+ };
3661
+ hoverHelpText: {
3662
+ type: import("vue").PropType<string>;
3663
+ default: string;
3664
+ };
3665
+ hoverHelpTextPlacement: {
3666
+ type: import("vue").PropType<"auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
3667
+ default: string;
3668
+ };
3669
+ feedbackText: {
3670
+ type: import("vue").PropType<string>;
3671
+ default: string;
3672
+ };
3673
+ isLoading: {
3674
+ type: import("vue").PropType<boolean>;
3675
+ default: boolean;
3676
+ };
3677
+ activeText: {
3678
+ type: import("vue").PropType<string>;
3679
+ default: any;
3680
+ };
3681
+ inactiveText: {
3682
+ type: import("vue").PropType<string>;
3683
+ default: any;
3684
+ };
3685
+ isDisabled: {
3686
+ type: import("vue").PropType<boolean>;
3687
+ default: boolean;
3688
+ };
3689
+ }>> & {
3690
+ "onUpdate:modelValue"?: (value: boolean) => any;
3691
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "size" | "testId" | "color" | "feedbackVariant" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "isLoading" | "activeText" | "inactiveText" | "isDisabled">;
3692
+ $attrs: {
3693
+ [x: string]: unknown;
3694
+ };
3695
+ $refs: {
3696
+ [x: string]: unknown;
3697
+ };
3698
+ $slots: Readonly<{
3699
+ [name: string]: import("vue").Slot;
3700
+ }>;
3701
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
3702
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
3703
+ $emit: (event: "update:modelValue", value: boolean) => void;
3704
+ $el: any;
3705
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
3706
+ text: {
3707
+ type: import("vue").PropType<string>;
3708
+ default: any;
3709
+ };
3710
+ size: {
3711
+ type: import("vue").PropType<"small" | "medium">;
3712
+ default: string;
3713
+ };
3714
+ testId: {
3715
+ type: import("vue").PropType<string>;
3716
+ default: string;
3717
+ };
3718
+ modelValue: {
3719
+ type: import("vue").PropType<boolean>;
3720
+ required: true;
3721
+ };
3722
+ color: {
3723
+ type: import("vue").PropType<"primary" | "test">;
3724
+ default: string;
3725
+ };
3726
+ feedbackVariant: {
3727
+ type: import("vue").PropType<"error" | "success" | "warning">;
3728
+ default: any;
3729
+ };
3730
+ hoverHelpText: {
3731
+ type: import("vue").PropType<string>;
3732
+ default: string;
3733
+ };
3734
+ hoverHelpTextPlacement: {
3735
+ type: import("vue").PropType<"auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
3736
+ default: string;
3737
+ };
3738
+ feedbackText: {
3739
+ type: import("vue").PropType<string>;
3740
+ default: string;
3741
+ };
3742
+ isLoading: {
3743
+ type: import("vue").PropType<boolean>;
3744
+ default: boolean;
3745
+ };
3746
+ activeText: {
3747
+ type: import("vue").PropType<string>;
3748
+ default: any;
3749
+ };
3750
+ inactiveText: {
3751
+ type: import("vue").PropType<string>;
3752
+ default: any;
3753
+ };
3754
+ isDisabled: {
3755
+ type: import("vue").PropType<boolean>;
3756
+ default: boolean;
3757
+ };
3758
+ }>> & {
3759
+ "onUpdate:modelValue"?: (value: boolean) => any;
3760
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3761
+ "update:modelValue": (value: boolean) => void;
3762
+ }, string, {
3763
+ text: string;
3764
+ size: "small" | "medium";
3765
+ testId: string;
3766
+ color: "primary" | "test";
3767
+ feedbackVariant: "error" | "success" | "warning";
3768
+ hoverHelpText: string;
3769
+ hoverHelpTextPlacement: "auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
3770
+ feedbackText: string;
3771
+ isLoading: boolean;
3772
+ activeText: string;
3773
+ inactiveText: string;
3774
+ isDisabled: boolean;
3775
+ }, {}, string> & {
3776
+ beforeCreate?: (() => void) | (() => void)[];
3777
+ created?: (() => void) | (() => void)[];
3778
+ beforeMount?: (() => void) | (() => void)[];
3779
+ mounted?: (() => void) | (() => void)[];
3780
+ beforeUpdate?: (() => void) | (() => void)[];
3781
+ updated?: (() => void) | (() => void)[];
3782
+ activated?: (() => void) | (() => void)[];
3783
+ deactivated?: (() => void) | (() => void)[];
3784
+ beforeDestroy?: (() => void) | (() => void)[];
3785
+ beforeUnmount?: (() => void) | (() => void)[];
3786
+ destroyed?: (() => void) | (() => void)[];
3787
+ unmounted?: (() => void) | (() => void)[];
3788
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
3789
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
3790
+ 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)[];
3791
+ };
3792
+ $forceUpdate: () => void;
3793
+ $nextTick: typeof import("vue").nextTick;
3794
+ $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;
3795
+ } & Readonly<import("vue").ExtractPropTypes<{
3796
+ text: {
3797
+ type: import("vue").PropType<string>;
3798
+ default: any;
3799
+ };
3800
+ size: {
3801
+ type: import("vue").PropType<"small" | "medium">;
3802
+ default: string;
3803
+ };
3804
+ testId: {
3805
+ type: import("vue").PropType<string>;
3806
+ default: string;
3807
+ };
3808
+ modelValue: {
3809
+ type: import("vue").PropType<boolean>;
3810
+ required: true;
3811
+ };
3812
+ color: {
3813
+ type: import("vue").PropType<"primary" | "test">;
3814
+ default: string;
3815
+ };
3816
+ feedbackVariant: {
3817
+ type: import("vue").PropType<"error" | "success" | "warning">;
3818
+ default: any;
3819
+ };
3820
+ hoverHelpText: {
3821
+ type: import("vue").PropType<string>;
3822
+ default: string;
3823
+ };
3824
+ hoverHelpTextPlacement: {
3825
+ type: import("vue").PropType<"auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
3826
+ default: string;
3827
+ };
3828
+ feedbackText: {
3829
+ type: import("vue").PropType<string>;
3830
+ default: string;
3831
+ };
3832
+ isLoading: {
3833
+ type: import("vue").PropType<boolean>;
3834
+ default: boolean;
3835
+ };
3836
+ activeText: {
3837
+ type: import("vue").PropType<string>;
3838
+ default: any;
3839
+ };
3840
+ inactiveText: {
3841
+ type: import("vue").PropType<string>;
3842
+ default: any;
3843
+ };
3844
+ isDisabled: {
3845
+ type: import("vue").PropType<boolean>;
3846
+ default: boolean;
3847
+ };
3848
+ }>> & {
3849
+ "onUpdate:modelValue"?: (value: boolean) => any;
3850
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
3851
+ __isFragment?: never;
3852
+ __isTeleport?: never;
3853
+ __isSuspense?: never;
3854
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
3855
+ text: {
3856
+ type: import("vue").PropType<string>;
3857
+ default: any;
3858
+ };
3859
+ size: {
3860
+ type: import("vue").PropType<"small" | "medium">;
3861
+ default: string;
3862
+ };
3863
+ testId: {
3864
+ type: import("vue").PropType<string>;
3865
+ default: string;
3866
+ };
3867
+ modelValue: {
3868
+ type: import("vue").PropType<boolean>;
3869
+ required: true;
3870
+ };
3871
+ color: {
3872
+ type: import("vue").PropType<"primary" | "test">;
3873
+ default: string;
3874
+ };
3875
+ feedbackVariant: {
3876
+ type: import("vue").PropType<"error" | "success" | "warning">;
3877
+ default: any;
3878
+ };
3879
+ hoverHelpText: {
3880
+ type: import("vue").PropType<string>;
3881
+ default: string;
3882
+ };
3883
+ hoverHelpTextPlacement: {
3884
+ type: import("vue").PropType<"auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
3885
+ default: string;
3886
+ };
3887
+ feedbackText: {
3888
+ type: import("vue").PropType<string>;
3889
+ default: string;
3890
+ };
3891
+ isLoading: {
3892
+ type: import("vue").PropType<boolean>;
3893
+ default: boolean;
3894
+ };
3895
+ activeText: {
3896
+ type: import("vue").PropType<string>;
3897
+ default: any;
3898
+ };
3899
+ inactiveText: {
3900
+ type: import("vue").PropType<string>;
3901
+ default: any;
3902
+ };
3903
+ isDisabled: {
3904
+ type: import("vue").PropType<boolean>;
3905
+ default: boolean;
3906
+ };
3907
+ }>> & {
3908
+ "onUpdate:modelValue"?: (value: boolean) => any;
3909
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3910
+ "update:modelValue": (value: boolean) => void;
3911
+ }, string, {
3912
+ text: string;
3913
+ size: "small" | "medium";
3914
+ testId: string;
3915
+ color: "primary" | "test";
3916
+ feedbackVariant: "error" | "success" | "warning";
3917
+ hoverHelpText: string;
3918
+ hoverHelpTextPlacement: "auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
3919
+ feedbackText: string;
3920
+ isLoading: boolean;
3921
+ activeText: string;
3922
+ inactiveText: string;
3923
+ isDisabled: boolean;
3924
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
3925
+ $slots: {
3926
+ "icon-left"?(_: {}): any;
3927
+ "icon-right"?(_: {}): any;
3928
+ };
3929
+ });
3930
+ ToggleTypes: () => ({
3931
+ new (...args: any[]): {
3932
+ $: import("vue").ComponentInternalInstance;
3933
+ $data: {};
3934
+ $props: Partial<{
3935
+ text: string;
3936
+ size: "small" | "medium";
3937
+ testId: string;
3938
+ color: "primary" | "test";
3939
+ feedbackVariant: "error" | "success" | "warning";
3940
+ hoverHelpText: string;
3941
+ hoverHelpTextPlacement: "auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
3942
+ feedbackText: string;
3943
+ isLoading: boolean;
3944
+ activeText: string;
3945
+ inactiveText: string;
3946
+ isDisabled: boolean;
3947
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
3948
+ text: {
3949
+ type: import("vue").PropType<string>;
3950
+ default: any;
3951
+ };
3952
+ size: {
3953
+ type: import("vue").PropType<"small" | "medium">;
3954
+ default: string;
3955
+ };
3956
+ testId: {
3957
+ type: import("vue").PropType<string>;
3958
+ default: string;
3959
+ };
3960
+ modelValue: {
3961
+ type: import("vue").PropType<boolean>;
3962
+ required: true;
3963
+ };
3964
+ color: {
3965
+ type: import("vue").PropType<"primary" | "test">;
3966
+ default: string;
3967
+ };
3968
+ feedbackVariant: {
3969
+ type: import("vue").PropType<"error" | "success" | "warning">;
3970
+ default: any;
3971
+ };
3972
+ hoverHelpText: {
3973
+ type: import("vue").PropType<string>;
3974
+ default: string;
3975
+ };
3976
+ hoverHelpTextPlacement: {
3977
+ type: import("vue").PropType<"auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
3978
+ default: string;
3979
+ };
3980
+ feedbackText: {
3981
+ type: import("vue").PropType<string>;
3982
+ default: string;
3983
+ };
3984
+ isLoading: {
3985
+ type: import("vue").PropType<boolean>;
3986
+ default: boolean;
3987
+ };
3988
+ activeText: {
3989
+ type: import("vue").PropType<string>;
3990
+ default: any;
3991
+ };
3992
+ inactiveText: {
3993
+ type: import("vue").PropType<string>;
3994
+ default: any;
3995
+ };
3996
+ isDisabled: {
3997
+ type: import("vue").PropType<boolean>;
3998
+ default: boolean;
3999
+ };
4000
+ }>> & {
4001
+ "onUpdate:modelValue"?: (value: boolean) => any;
4002
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "size" | "testId" | "color" | "feedbackVariant" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "isLoading" | "activeText" | "inactiveText" | "isDisabled">;
4003
+ $attrs: {
4004
+ [x: string]: unknown;
4005
+ };
4006
+ $refs: {
4007
+ [x: string]: unknown;
4008
+ };
4009
+ $slots: Readonly<{
4010
+ [name: string]: import("vue").Slot;
4011
+ }>;
4012
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
4013
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
4014
+ $emit: (event: "update:modelValue", value: boolean) => void;
4015
+ $el: any;
4016
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
4017
+ text: {
4018
+ type: import("vue").PropType<string>;
4019
+ default: any;
4020
+ };
4021
+ size: {
4022
+ type: import("vue").PropType<"small" | "medium">;
4023
+ default: string;
4024
+ };
4025
+ testId: {
4026
+ type: import("vue").PropType<string>;
4027
+ default: string;
4028
+ };
4029
+ modelValue: {
4030
+ type: import("vue").PropType<boolean>;
4031
+ required: true;
4032
+ };
4033
+ color: {
4034
+ type: import("vue").PropType<"primary" | "test">;
4035
+ default: string;
4036
+ };
4037
+ feedbackVariant: {
4038
+ type: import("vue").PropType<"error" | "success" | "warning">;
4039
+ default: any;
4040
+ };
4041
+ hoverHelpText: {
4042
+ type: import("vue").PropType<string>;
4043
+ default: string;
4044
+ };
4045
+ hoverHelpTextPlacement: {
4046
+ type: import("vue").PropType<"auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
4047
+ default: string;
4048
+ };
4049
+ feedbackText: {
4050
+ type: import("vue").PropType<string>;
4051
+ default: string;
4052
+ };
4053
+ isLoading: {
4054
+ type: import("vue").PropType<boolean>;
4055
+ default: boolean;
4056
+ };
4057
+ activeText: {
4058
+ type: import("vue").PropType<string>;
4059
+ default: any;
4060
+ };
4061
+ inactiveText: {
4062
+ type: import("vue").PropType<string>;
4063
+ default: any;
4064
+ };
4065
+ isDisabled: {
4066
+ type: import("vue").PropType<boolean>;
4067
+ default: boolean;
4068
+ };
4069
+ }>> & {
4070
+ "onUpdate:modelValue"?: (value: boolean) => any;
4071
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4072
+ "update:modelValue": (value: boolean) => void;
4073
+ }, string, {
4074
+ text: string;
4075
+ size: "small" | "medium";
4076
+ testId: string;
4077
+ color: "primary" | "test";
4078
+ feedbackVariant: "error" | "success" | "warning";
4079
+ hoverHelpText: string;
4080
+ hoverHelpTextPlacement: "auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
4081
+ feedbackText: string;
4082
+ isLoading: boolean;
4083
+ activeText: string;
4084
+ inactiveText: string;
4085
+ isDisabled: boolean;
4086
+ }, {}, string> & {
4087
+ beforeCreate?: (() => void) | (() => void)[];
4088
+ created?: (() => void) | (() => void)[];
4089
+ beforeMount?: (() => void) | (() => void)[];
4090
+ mounted?: (() => void) | (() => void)[];
4091
+ beforeUpdate?: (() => void) | (() => void)[];
4092
+ updated?: (() => void) | (() => void)[];
4093
+ activated?: (() => void) | (() => void)[];
4094
+ deactivated?: (() => void) | (() => void)[];
4095
+ beforeDestroy?: (() => void) | (() => void)[];
4096
+ beforeUnmount?: (() => void) | (() => void)[];
4097
+ destroyed?: (() => void) | (() => void)[];
4098
+ unmounted?: (() => void) | (() => void)[];
4099
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
4100
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
4101
+ 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)[];
4102
+ };
4103
+ $forceUpdate: () => void;
4104
+ $nextTick: typeof import("vue").nextTick;
4105
+ $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;
4106
+ } & Readonly<import("vue").ExtractPropTypes<{
4107
+ text: {
4108
+ type: import("vue").PropType<string>;
4109
+ default: any;
4110
+ };
4111
+ size: {
4112
+ type: import("vue").PropType<"small" | "medium">;
4113
+ default: string;
4114
+ };
4115
+ testId: {
4116
+ type: import("vue").PropType<string>;
4117
+ default: string;
4118
+ };
4119
+ modelValue: {
4120
+ type: import("vue").PropType<boolean>;
4121
+ required: true;
4122
+ };
4123
+ color: {
4124
+ type: import("vue").PropType<"primary" | "test">;
4125
+ default: string;
4126
+ };
4127
+ feedbackVariant: {
4128
+ type: import("vue").PropType<"error" | "success" | "warning">;
4129
+ default: any;
4130
+ };
4131
+ hoverHelpText: {
4132
+ type: import("vue").PropType<string>;
4133
+ default: string;
4134
+ };
4135
+ hoverHelpTextPlacement: {
4136
+ type: import("vue").PropType<"auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
4137
+ default: string;
4138
+ };
4139
+ feedbackText: {
4140
+ type: import("vue").PropType<string>;
4141
+ default: string;
4142
+ };
4143
+ isLoading: {
4144
+ type: import("vue").PropType<boolean>;
4145
+ default: boolean;
4146
+ };
4147
+ activeText: {
4148
+ type: import("vue").PropType<string>;
4149
+ default: any;
4150
+ };
4151
+ inactiveText: {
4152
+ type: import("vue").PropType<string>;
4153
+ default: any;
4154
+ };
4155
+ isDisabled: {
4156
+ type: import("vue").PropType<boolean>;
4157
+ default: boolean;
4158
+ };
4159
+ }>> & {
4160
+ "onUpdate:modelValue"?: (value: boolean) => any;
4161
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
4162
+ __isFragment?: never;
4163
+ __isTeleport?: never;
4164
+ __isSuspense?: never;
4165
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
4166
+ text: {
4167
+ type: import("vue").PropType<string>;
4168
+ default: any;
4169
+ };
4170
+ size: {
4171
+ type: import("vue").PropType<"small" | "medium">;
4172
+ default: string;
4173
+ };
4174
+ testId: {
4175
+ type: import("vue").PropType<string>;
4176
+ default: string;
4177
+ };
4178
+ modelValue: {
4179
+ type: import("vue").PropType<boolean>;
4180
+ required: true;
4181
+ };
4182
+ color: {
4183
+ type: import("vue").PropType<"primary" | "test">;
4184
+ default: string;
4185
+ };
4186
+ feedbackVariant: {
4187
+ type: import("vue").PropType<"error" | "success" | "warning">;
4188
+ default: any;
4189
+ };
4190
+ hoverHelpText: {
4191
+ type: import("vue").PropType<string>;
4192
+ default: string;
4193
+ };
4194
+ hoverHelpTextPlacement: {
4195
+ type: import("vue").PropType<"auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
4196
+ default: string;
4197
+ };
4198
+ feedbackText: {
4199
+ type: import("vue").PropType<string>;
4200
+ default: string;
4201
+ };
4202
+ isLoading: {
4203
+ type: import("vue").PropType<boolean>;
4204
+ default: boolean;
4205
+ };
4206
+ activeText: {
4207
+ type: import("vue").PropType<string>;
4208
+ default: any;
4209
+ };
4210
+ inactiveText: {
4211
+ type: import("vue").PropType<string>;
4212
+ default: any;
4213
+ };
4214
+ isDisabled: {
4215
+ type: import("vue").PropType<boolean>;
4216
+ default: boolean;
4217
+ };
4218
+ }>> & {
4219
+ "onUpdate:modelValue"?: (value: boolean) => any;
4220
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4221
+ "update:modelValue": (value: boolean) => void;
4222
+ }, string, {
4223
+ text: string;
4224
+ size: "small" | "medium";
4225
+ testId: string;
4226
+ color: "primary" | "test";
4227
+ feedbackVariant: "error" | "success" | "warning";
4228
+ hoverHelpText: string;
4229
+ hoverHelpTextPlacement: "auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
4230
+ feedbackText: string;
4231
+ isLoading: boolean;
4232
+ activeText: string;
4233
+ inactiveText: string;
4234
+ isDisabled: boolean;
4235
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
4236
+ $slots: {
4237
+ "icon-left"?(_: {}): any;
4238
+ "icon-right"?(_: {}): any;
4239
+ };
4240
+ }))[];
3618
4241
  Tooltip: {
3619
4242
  new (...args: any[]): {
3620
4243
  $: import("vue").ComponentInternalInstance;
@@ -13792,7 +14415,6 @@ declare const _default: {
13792
14415
  }))[];
13793
14416
  };
13794
14417
  export default _default;
13795
- export * from '@/components/toggle/v3';
13796
14418
  export * from '@/components/textArea';
13797
14419
  export * from '@/composables/useToggle';
13798
14420
  export * from '@/composables/useSearch';