@ironsource/shared-ui 2.1.5 → 2.1.6-rc.1

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 (50) hide show
  1. package/Autocomplete.vue_vue_type_style_index_0_scoped_d2d1dc1d_lang.css +1 -0
  2. package/ButtonV4.vue_vue_type_style_index_0_scoped_8c3b0c3f_lang.css +1 -0
  3. package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_889042cf_lang.css +1 -0
  4. package/DataGrid.vue_vue_type_style_index_0_scoped_c96fba2c_lang.css +1 -0
  5. package/DialogV4.vue_vue_type_style_index_0_scoped_c3004ba3_lang.css +1 -0
  6. package/FormCard.vue_vue_type_style_index_0_scoped_ef8b4e81_lang.css +1 -0
  7. package/README.md +1 -1
  8. package/SearchV4.vue_vue_type_style_index_0_scoped_a468fb4a_lang.css +1 -0
  9. package/TextField.vue_vue_type_style_index_0_scoped_b5b2e8fd_lang.css +1 -0
  10. package/TooltipV4.vue_vue_type_style_index_0_scoped_25809092_lang.css +1 -0
  11. package/components/autocomplete/Autocomplete.vue.js +3 -3
  12. package/components/autocomplete/Autocomplete.vue2.js +14 -13
  13. package/components/button/v4/ButtonV4.vue.js +3 -3
  14. package/components/button/v4/ButtonV4.vue2.js +1 -1
  15. package/components/dialog/v4/DialogV4.vue.js +3 -3
  16. package/components/dialog/v4/DialogV4.vue2.js +1 -1
  17. package/components/dropdown/v4/ChipDropdownTrigger.vue.js +2 -2
  18. package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +1 -1
  19. package/components/dropdown/v4/DropdownV4.vue.d.ts +1 -1
  20. package/components/dropdown/v4/index.d.ts +20 -20
  21. package/components/forms/FormCard.vue.js +4 -4
  22. package/components/forms/FormCard.vue2.js +1 -1
  23. package/components/input/v4/TextField.vue.d.ts +5 -0
  24. package/components/input/v4/TextField.vue.js +3 -3
  25. package/components/input/v4/TextField.vue2.js +34 -33
  26. package/components/input/v4/index.d.ts +20 -1
  27. package/components/search/common/Search.common.js +10 -10
  28. package/components/search/v4/SearchV4.vue.d.ts +2 -0
  29. package/components/search/v4/SearchV4.vue.js +5 -5
  30. package/components/search/v4/SearchV4.vue2.js +9 -9
  31. package/components/search/v4/index.d.ts +2 -0
  32. package/components/table/v4/DataGrid.vue.d.ts +2 -0
  33. package/components/table/v4/DataGrid.vue.js +3 -3
  34. package/components/table/v4/DataGrid.vue2.js +138 -137
  35. package/components/table/v4/index.d.ts +7 -1
  36. package/components/tooltip/v4/TooltipV4.vue.d.ts +5 -0
  37. package/components/tooltip/v4/TooltipV4.vue.js +3 -3
  38. package/components/tooltip/v4/TooltipV4.vue2.js +6 -5
  39. package/components/tooltip/v4/index.d.ts +20 -1
  40. package/index.d.ts +138 -46
  41. package/package.json +1 -1
  42. package/Autocomplete.vue_vue_type_style_index_0_scoped_429e5745_lang.css +0 -1
  43. package/ButtonV4.vue_vue_type_style_index_0_scoped_e535063a_lang.css +0 -1
  44. package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_c859928d_lang.css +0 -1
  45. package/DataGrid.vue_vue_type_style_index_0_scoped_bddb537c_lang.css +0 -1
  46. package/DialogV4.vue_vue_type_style_index_0_scoped_ea9275e6_lang.css +0 -1
  47. package/FormCard.vue_vue_type_style_index_0_scoped_d3abd36a_lang.css +0 -1
  48. package/SearchV4.vue_vue_type_style_index_0_scoped_1330ea8b_lang.css +0 -1
  49. package/TextField.vue_vue_type_style_index_0_scoped_95e25718_lang.css +0 -1
  50. package/TooltipV4.vue_vue_type_style_index_0_scoped_58a19def_lang.css +0 -1
package/index.d.ts CHANGED
@@ -2864,6 +2864,7 @@ declare const _default: {
2864
2864
  onLoadMore?: () => any;
2865
2865
  "onUpdate:search"?: (query: string) => any;
2866
2866
  "onUpdate:selection"?: (selection: unknown[]) => any;
2867
+ onOnClearSearch?: () => any;
2867
2868
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateTitle" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "loadingRowCount" | "defaultScrollPosition" | "getRowId" | "selectedMatcher" | "emptyStateVariant" | "showSearch" | "zIndexBase">;
2868
2869
  $attrs: {
2869
2870
  [x: string]: unknown;
@@ -2881,7 +2882,7 @@ declare const _default: {
2881
2882
  confirm: () => void;
2882
2883
  rowIndex: number;
2883
2884
  cellIndex: number;
2884
- }) => void) & ((event: "loadMore") => void) & ((event: "update:search", query: string) => void) & ((event: "update:selection", selection: unknown[]) => void);
2885
+ }) => void) & ((event: "loadMore") => void) & ((event: "update:search", query: string) => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "onClearSearch") => void);
2885
2886
  $el: any;
2886
2887
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2887
2888
  sort: {
@@ -2996,11 +2997,13 @@ declare const _default: {
2996
2997
  onLoadMore?: () => any;
2997
2998
  "onUpdate:search"?: (query: string) => any;
2998
2999
  "onUpdate:selection"?: (selection: unknown[]) => any;
3000
+ onOnClearSearch?: () => any;
2999
3001
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3000
3002
  "update:sort": (newSort: tableV3.Sort) => void;
3001
3003
  "update:search": (query: string) => void;
3002
3004
  "update:selection": (selection: unknown[]) => void;
3003
3005
  onScroll: (event: Event) => void;
3006
+ onClearSearch: () => void;
3004
3007
  saveRow: (args_0: {
3005
3008
  value: unknown;
3006
3009
  confirm: () => void;
@@ -3165,6 +3168,7 @@ declare const _default: {
3165
3168
  onLoadMore?: () => any;
3166
3169
  "onUpdate:search"?: (query: string) => any;
3167
3170
  "onUpdate:selection"?: (selection: unknown[]) => any;
3171
+ onOnClearSearch?: () => any;
3168
3172
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
3169
3173
  __isFragment?: never;
3170
3174
  __isTeleport?: never;
@@ -3282,11 +3286,13 @@ declare const _default: {
3282
3286
  onLoadMore?: () => any;
3283
3287
  "onUpdate:search"?: (query: string) => any;
3284
3288
  "onUpdate:selection"?: (selection: unknown[]) => any;
3289
+ onOnClearSearch?: () => any;
3285
3290
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3286
3291
  "update:sort": (newSort: tableV3.Sort) => void;
3287
3292
  "update:search": (query: string) => void;
3288
3293
  "update:selection": (selection: unknown[]) => void;
3289
3294
  onScroll: (event: Event) => void;
3295
+ onClearSearch: () => void;
3290
3296
  saveRow: (args_0: {
3291
3297
  value: unknown;
3292
3298
  confirm: () => void;
@@ -3559,6 +3565,7 @@ declare const _default: {
3559
3565
  onLoadMore?: () => any;
3560
3566
  "onUpdate:search"?: (query: string) => any;
3561
3567
  "onUpdate:selection"?: (selection: unknown[]) => any;
3568
+ onOnClearSearch?: () => any;
3562
3569
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateTitle" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "loadingRowCount" | "defaultScrollPosition" | "getRowId" | "selectedMatcher" | "emptyStateVariant" | "showSearch" | "zIndexBase">;
3563
3570
  $attrs: {
3564
3571
  [x: string]: unknown;
@@ -3576,7 +3583,7 @@ declare const _default: {
3576
3583
  confirm: () => void;
3577
3584
  rowIndex: number;
3578
3585
  cellIndex: number;
3579
- }) => void) & ((event: "loadMore") => void) & ((event: "update:search", query: string) => void) & ((event: "update:selection", selection: unknown[]) => void);
3586
+ }) => void) & ((event: "loadMore") => void) & ((event: "update:search", query: string) => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "onClearSearch") => void);
3580
3587
  $el: any;
3581
3588
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
3582
3589
  sort: {
@@ -3691,11 +3698,13 @@ declare const _default: {
3691
3698
  onLoadMore?: () => any;
3692
3699
  "onUpdate:search"?: (query: string) => any;
3693
3700
  "onUpdate:selection"?: (selection: unknown[]) => any;
3701
+ onOnClearSearch?: () => any;
3694
3702
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3695
3703
  "update:sort": (newSort: tableV3.Sort) => void;
3696
3704
  "update:search": (query: string) => void;
3697
3705
  "update:selection": (selection: unknown[]) => void;
3698
3706
  onScroll: (event: Event) => void;
3707
+ onClearSearch: () => void;
3699
3708
  saveRow: (args_0: {
3700
3709
  value: unknown;
3701
3710
  confirm: () => void;
@@ -3860,6 +3869,7 @@ declare const _default: {
3860
3869
  onLoadMore?: () => any;
3861
3870
  "onUpdate:search"?: (query: string) => any;
3862
3871
  "onUpdate:selection"?: (selection: unknown[]) => any;
3872
+ onOnClearSearch?: () => any;
3863
3873
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
3864
3874
  __isFragment?: never;
3865
3875
  __isTeleport?: never;
@@ -3977,11 +3987,13 @@ declare const _default: {
3977
3987
  onLoadMore?: () => any;
3978
3988
  "onUpdate:search"?: (query: string) => any;
3979
3989
  "onUpdate:selection"?: (selection: unknown[]) => any;
3990
+ onOnClearSearch?: () => any;
3980
3991
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3981
3992
  "update:sort": (newSort: tableV3.Sort) => void;
3982
3993
  "update:search": (query: string) => void;
3983
3994
  "update:selection": (selection: unknown[]) => void;
3984
3995
  onScroll: (event: Event) => void;
3996
+ onClearSearch: () => void;
3985
3997
  saveRow: (args_0: {
3986
3998
  value: unknown;
3987
3999
  confirm: () => void;
@@ -5597,6 +5609,7 @@ declare const _default: {
5597
5609
  theme: string;
5598
5610
  disabled: boolean;
5599
5611
  testId: string;
5612
+ container: string;
5600
5613
  delay: number;
5601
5614
  triggers: ("touch" | "click" | "focus" | "hover")[];
5602
5615
  forceShowWithTruncate: boolean;
@@ -5623,6 +5636,10 @@ declare const _default: {
5623
5636
  type: import("vue").PropType<string>;
5624
5637
  default: string;
5625
5638
  };
5639
+ container: {
5640
+ type: import("vue").PropType<string>;
5641
+ default: string;
5642
+ };
5626
5643
  delay: {
5627
5644
  type: import("vue").PropType<number>;
5628
5645
  default: number;
@@ -5643,7 +5660,7 @@ declare const _default: {
5643
5660
  type: import("vue").PropType<string | number>;
5644
5661
  default: string;
5645
5662
  };
5646
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "disabled" | "testId" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "distance">;
5663
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "disabled" | "testId" | "container" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "distance">;
5647
5664
  $attrs: {
5648
5665
  [x: string]: unknown;
5649
5666
  };
@@ -5678,6 +5695,10 @@ declare const _default: {
5678
5695
  type: import("vue").PropType<string>;
5679
5696
  default: string;
5680
5697
  };
5698
+ container: {
5699
+ type: import("vue").PropType<string>;
5700
+ default: string;
5701
+ };
5681
5702
  delay: {
5682
5703
  type: import("vue").PropType<number>;
5683
5704
  default: number;
@@ -5704,6 +5725,7 @@ declare const _default: {
5704
5725
  theme: string;
5705
5726
  disabled: boolean;
5706
5727
  testId: string;
5728
+ container: string;
5707
5729
  delay: number;
5708
5730
  triggers: ("touch" | "click" | "focus" | "hover")[];
5709
5731
  forceShowWithTruncate: boolean;
@@ -5750,6 +5772,10 @@ declare const _default: {
5750
5772
  type: import("vue").PropType<string>;
5751
5773
  default: string;
5752
5774
  };
5775
+ container: {
5776
+ type: import("vue").PropType<string>;
5777
+ default: string;
5778
+ };
5753
5779
  delay: {
5754
5780
  type: import("vue").PropType<number>;
5755
5781
  default: number;
@@ -5795,6 +5821,10 @@ declare const _default: {
5795
5821
  type: import("vue").PropType<string>;
5796
5822
  default: string;
5797
5823
  };
5824
+ container: {
5825
+ type: import("vue").PropType<string>;
5826
+ default: string;
5827
+ };
5798
5828
  delay: {
5799
5829
  type: import("vue").PropType<number>;
5800
5830
  default: number;
@@ -5821,6 +5851,7 @@ declare const _default: {
5821
5851
  theme: string;
5822
5852
  disabled: boolean;
5823
5853
  testId: string;
5854
+ container: string;
5824
5855
  delay: number;
5825
5856
  triggers: ("touch" | "click" | "focus" | "hover")[];
5826
5857
  forceShowWithTruncate: boolean;
@@ -5844,6 +5875,7 @@ declare const _default: {
5844
5875
  theme: string;
5845
5876
  disabled: boolean;
5846
5877
  testId: string;
5878
+ container: string;
5847
5879
  delay: number;
5848
5880
  triggers: ("touch" | "click" | "focus" | "hover")[];
5849
5881
  forceShowWithTruncate: boolean;
@@ -5870,6 +5902,10 @@ declare const _default: {
5870
5902
  type: import("vue").PropType<string>;
5871
5903
  default: string;
5872
5904
  };
5905
+ container: {
5906
+ type: import("vue").PropType<string>;
5907
+ default: string;
5908
+ };
5873
5909
  delay: {
5874
5910
  type: import("vue").PropType<number>;
5875
5911
  default: number;
@@ -5890,7 +5926,7 @@ declare const _default: {
5890
5926
  type: import("vue").PropType<string | number>;
5891
5927
  default: string;
5892
5928
  };
5893
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "disabled" | "testId" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "distance">;
5929
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "disabled" | "testId" | "container" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "distance">;
5894
5930
  $attrs: {
5895
5931
  [x: string]: unknown;
5896
5932
  };
@@ -5925,6 +5961,10 @@ declare const _default: {
5925
5961
  type: import("vue").PropType<string>;
5926
5962
  default: string;
5927
5963
  };
5964
+ container: {
5965
+ type: import("vue").PropType<string>;
5966
+ default: string;
5967
+ };
5928
5968
  delay: {
5929
5969
  type: import("vue").PropType<number>;
5930
5970
  default: number;
@@ -5951,6 +5991,7 @@ declare const _default: {
5951
5991
  theme: string;
5952
5992
  disabled: boolean;
5953
5993
  testId: string;
5994
+ container: string;
5954
5995
  delay: number;
5955
5996
  triggers: ("touch" | "click" | "focus" | "hover")[];
5956
5997
  forceShowWithTruncate: boolean;
@@ -5997,6 +6038,10 @@ declare const _default: {
5997
6038
  type: import("vue").PropType<string>;
5998
6039
  default: string;
5999
6040
  };
6041
+ container: {
6042
+ type: import("vue").PropType<string>;
6043
+ default: string;
6044
+ };
6000
6045
  delay: {
6001
6046
  type: import("vue").PropType<number>;
6002
6047
  default: number;
@@ -6042,6 +6087,10 @@ declare const _default: {
6042
6087
  type: import("vue").PropType<string>;
6043
6088
  default: string;
6044
6089
  };
6090
+ container: {
6091
+ type: import("vue").PropType<string>;
6092
+ default: string;
6093
+ };
6045
6094
  delay: {
6046
6095
  type: import("vue").PropType<number>;
6047
6096
  default: number;
@@ -6068,6 +6117,7 @@ declare const _default: {
6068
6117
  theme: string;
6069
6118
  disabled: boolean;
6070
6119
  testId: string;
6120
+ container: string;
6071
6121
  delay: number;
6072
6122
  triggers: ("touch" | "click" | "focus" | "hover")[];
6073
6123
  forceShowWithTruncate: boolean;
@@ -8297,6 +8347,7 @@ declare const _default: {
8297
8347
  feedbackText: string;
8298
8348
  feedbackVariant: "success" | "warning" | "error";
8299
8349
  showFeedbackTextIcon: boolean;
8350
+ feedbackPositionAbsolute: boolean;
8300
8351
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
8301
8352
  type: {
8302
8353
  type: import("vue").PropType<"number" | "text" | "password">;
@@ -8398,10 +8449,14 @@ declare const _default: {
8398
8449
  type: import("vue").PropType<boolean>;
8399
8450
  default: boolean;
8400
8451
  };
8452
+ feedbackPositionAbsolute: {
8453
+ type: import("vue").PropType<boolean>;
8454
+ default: boolean;
8455
+ };
8401
8456
  }>> & {
8402
8457
  "onUpdate:modelValue"?: (value: string | number) => any;
8403
8458
  onApply?: () => any;
8404
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon">;
8459
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
8405
8460
  $attrs: {
8406
8461
  [x: string]: unknown;
8407
8462
  };
@@ -8516,6 +8571,10 @@ declare const _default: {
8516
8571
  type: import("vue").PropType<boolean>;
8517
8572
  default: boolean;
8518
8573
  };
8574
+ feedbackPositionAbsolute: {
8575
+ type: import("vue").PropType<boolean>;
8576
+ default: boolean;
8577
+ };
8519
8578
  }>> & {
8520
8579
  "onUpdate:modelValue"?: (value: string | number) => any;
8521
8580
  onApply?: () => any;
@@ -8550,6 +8609,7 @@ declare const _default: {
8550
8609
  feedbackText: string;
8551
8610
  feedbackVariant: "success" | "warning" | "error";
8552
8611
  showFeedbackTextIcon: boolean;
8612
+ feedbackPositionAbsolute: boolean;
8553
8613
  }, {}, string> & {
8554
8614
  beforeCreate?: (() => void) | (() => void)[];
8555
8615
  created?: (() => void) | (() => void)[];
@@ -8671,6 +8731,10 @@ declare const _default: {
8671
8731
  type: import("vue").PropType<boolean>;
8672
8732
  default: boolean;
8673
8733
  };
8734
+ feedbackPositionAbsolute: {
8735
+ type: import("vue").PropType<boolean>;
8736
+ default: boolean;
8737
+ };
8674
8738
  }>> & {
8675
8739
  "onUpdate:modelValue"?: (value: string | number) => any;
8676
8740
  onApply?: () => any;
@@ -8781,6 +8845,10 @@ declare const _default: {
8781
8845
  type: import("vue").PropType<boolean>;
8782
8846
  default: boolean;
8783
8847
  };
8848
+ feedbackPositionAbsolute: {
8849
+ type: import("vue").PropType<boolean>;
8850
+ default: boolean;
8851
+ };
8784
8852
  }>> & {
8785
8853
  "onUpdate:modelValue"?: (value: string | number) => any;
8786
8854
  onApply?: () => any;
@@ -8815,6 +8883,7 @@ declare const _default: {
8815
8883
  feedbackText: string;
8816
8884
  feedbackVariant: "success" | "warning" | "error";
8817
8885
  showFeedbackTextIcon: boolean;
8886
+ feedbackPositionAbsolute: boolean;
8818
8887
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
8819
8888
  $slots: {
8820
8889
  iconBefore?(_: {}): any;
@@ -8851,6 +8920,7 @@ declare const _default: {
8851
8920
  feedbackText: string;
8852
8921
  feedbackVariant: "success" | "warning" | "error";
8853
8922
  showFeedbackTextIcon: boolean;
8923
+ feedbackPositionAbsolute: boolean;
8854
8924
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
8855
8925
  type: {
8856
8926
  type: import("vue").PropType<"number" | "text" | "password">;
@@ -8952,10 +9022,14 @@ declare const _default: {
8952
9022
  type: import("vue").PropType<boolean>;
8953
9023
  default: boolean;
8954
9024
  };
9025
+ feedbackPositionAbsolute: {
9026
+ type: import("vue").PropType<boolean>;
9027
+ default: boolean;
9028
+ };
8955
9029
  }>> & {
8956
9030
  "onUpdate:modelValue"?: (value: string | number) => any;
8957
9031
  onApply?: () => any;
8958
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon">;
9032
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
8959
9033
  $attrs: {
8960
9034
  [x: string]: unknown;
8961
9035
  };
@@ -9070,6 +9144,10 @@ declare const _default: {
9070
9144
  type: import("vue").PropType<boolean>;
9071
9145
  default: boolean;
9072
9146
  };
9147
+ feedbackPositionAbsolute: {
9148
+ type: import("vue").PropType<boolean>;
9149
+ default: boolean;
9150
+ };
9073
9151
  }>> & {
9074
9152
  "onUpdate:modelValue"?: (value: string | number) => any;
9075
9153
  onApply?: () => any;
@@ -9104,6 +9182,7 @@ declare const _default: {
9104
9182
  feedbackText: string;
9105
9183
  feedbackVariant: "success" | "warning" | "error";
9106
9184
  showFeedbackTextIcon: boolean;
9185
+ feedbackPositionAbsolute: boolean;
9107
9186
  }, {}, string> & {
9108
9187
  beforeCreate?: (() => void) | (() => void)[];
9109
9188
  created?: (() => void) | (() => void)[];
@@ -9225,6 +9304,10 @@ declare const _default: {
9225
9304
  type: import("vue").PropType<boolean>;
9226
9305
  default: boolean;
9227
9306
  };
9307
+ feedbackPositionAbsolute: {
9308
+ type: import("vue").PropType<boolean>;
9309
+ default: boolean;
9310
+ };
9228
9311
  }>> & {
9229
9312
  "onUpdate:modelValue"?: (value: string | number) => any;
9230
9313
  onApply?: () => any;
@@ -9335,6 +9418,10 @@ declare const _default: {
9335
9418
  type: import("vue").PropType<boolean>;
9336
9419
  default: boolean;
9337
9420
  };
9421
+ feedbackPositionAbsolute: {
9422
+ type: import("vue").PropType<boolean>;
9423
+ default: boolean;
9424
+ };
9338
9425
  }>> & {
9339
9426
  "onUpdate:modelValue"?: (value: string | number) => any;
9340
9427
  onApply?: () => any;
@@ -9369,6 +9456,7 @@ declare const _default: {
9369
9456
  feedbackText: string;
9370
9457
  feedbackVariant: "success" | "warning" | "error";
9371
9458
  showFeedbackTextIcon: boolean;
9459
+ feedbackPositionAbsolute: boolean;
9372
9460
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
9373
9461
  $slots: {
9374
9462
  iconBefore?(_: {}): any;
@@ -11392,6 +11480,7 @@ declare const _default: {
11392
11480
  inputRef: import("vue").Ref<any>;
11393
11481
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11394
11482
  "update:modelValue": (value: string | number) => void;
11483
+ onClear: () => void;
11395
11484
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
11396
11485
  disabled: {
11397
11486
  type: import("vue").PropType<boolean>;
@@ -11416,6 +11505,7 @@ declare const _default: {
11416
11505
  };
11417
11506
  }>> & {
11418
11507
  "onUpdate:modelValue"?: (value: string | number) => any;
11508
+ onOnClear?: () => any;
11419
11509
  }, {
11420
11510
  disabled: boolean;
11421
11511
  testId: string;
@@ -11448,6 +11538,7 @@ declare const _default: {
11448
11538
  inputRef: import("vue").Ref<any>;
11449
11539
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11450
11540
  "update:modelValue": (value: string | number) => void;
11541
+ onClear: () => void;
11451
11542
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
11452
11543
  disabled: {
11453
11544
  type: import("vue").PropType<boolean>;
@@ -11472,6 +11563,7 @@ declare const _default: {
11472
11563
  };
11473
11564
  }>> & {
11474
11565
  "onUpdate:modelValue"?: (value: string | number) => any;
11566
+ onOnClear?: () => any;
11475
11567
  }, {
11476
11568
  disabled: boolean;
11477
11569
  testId: string;
@@ -11494,6 +11586,7 @@ declare const _default: {
11494
11586
  distance: number;
11495
11587
  popperClass: string;
11496
11588
  selected: any;
11589
+ onClear: () => void;
11497
11590
  modelValue: any;
11498
11591
  placeholder: string;
11499
11592
  multi: boolean;
@@ -11515,7 +11608,6 @@ declare const _default: {
11515
11608
  onSearch: (option: any, term: string) => boolean;
11516
11609
  noResultsText: string;
11517
11610
  searchAutoFocus: boolean;
11518
- onClear: () => void;
11519
11611
  optionNameKey: string;
11520
11612
  optionIconKey: string;
11521
11613
  optionImageKey: string;
@@ -11577,6 +11669,10 @@ declare const _default: {
11577
11669
  type: import("vue").PropType<unknown[]>;
11578
11670
  required: true;
11579
11671
  };
11672
+ onClear: {
11673
+ type: import("vue").PropType<() => void>;
11674
+ default: () => true;
11675
+ };
11580
11676
  modelValue: {
11581
11677
  type: import("vue").PropType<unknown>;
11582
11678
  default: any;
@@ -11664,10 +11760,6 @@ declare const _default: {
11664
11760
  type: import("vue").PropType<boolean>;
11665
11761
  default: boolean;
11666
11762
  };
11667
- onClear: {
11668
- type: import("vue").PropType<() => void>;
11669
- default: () => true;
11670
- };
11671
11763
  displayValue: {
11672
11764
  type: import("vue").PropType<(option: unknown) => string>;
11673
11765
  required: true;
@@ -11714,7 +11806,7 @@ declare const _default: {
11714
11806
  "onUpdate:isOpen"?: (value: unknown) => any;
11715
11807
  onOpened?: () => any;
11716
11808
  onClosed?: () => any;
11717
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClear" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType">;
11809
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType">;
11718
11810
  $attrs: {
11719
11811
  [x: string]: unknown;
11720
11812
  };
@@ -11780,6 +11872,10 @@ declare const _default: {
11780
11872
  type: import("vue").PropType<unknown[]>;
11781
11873
  required: true;
11782
11874
  };
11875
+ onClear: {
11876
+ type: import("vue").PropType<() => void>;
11877
+ default: () => true;
11878
+ };
11783
11879
  modelValue: {
11784
11880
  type: import("vue").PropType<unknown>;
11785
11881
  default: any;
@@ -11867,10 +11963,6 @@ declare const _default: {
11867
11963
  type: import("vue").PropType<boolean>;
11868
11964
  default: boolean;
11869
11965
  };
11870
- onClear: {
11871
- type: import("vue").PropType<() => void>;
11872
- default: () => true;
11873
- };
11874
11966
  displayValue: {
11875
11967
  type: import("vue").PropType<(option: unknown) => string>;
11876
11968
  required: true;
@@ -11938,6 +12030,7 @@ declare const _default: {
11938
12030
  distance: number;
11939
12031
  popperClass: string;
11940
12032
  selected: any;
12033
+ onClear: () => void;
11941
12034
  modelValue: any;
11942
12035
  placeholder: string;
11943
12036
  multi: boolean;
@@ -11959,7 +12052,6 @@ declare const _default: {
11959
12052
  onSearch: (option: any, term: string) => boolean;
11960
12053
  noResultsText: string;
11961
12054
  searchAutoFocus: boolean;
11962
- onClear: () => void;
11963
12055
  optionNameKey: string;
11964
12056
  optionIconKey: string;
11965
12057
  optionImageKey: string;
@@ -12041,6 +12133,10 @@ declare const _default: {
12041
12133
  type: import("vue").PropType<unknown[]>;
12042
12134
  required: true;
12043
12135
  };
12136
+ onClear: {
12137
+ type: import("vue").PropType<() => void>;
12138
+ default: () => true;
12139
+ };
12044
12140
  modelValue: {
12045
12141
  type: import("vue").PropType<unknown>;
12046
12142
  default: any;
@@ -12128,10 +12224,6 @@ declare const _default: {
12128
12224
  type: import("vue").PropType<boolean>;
12129
12225
  default: boolean;
12130
12226
  };
12131
- onClear: {
12132
- type: import("vue").PropType<() => void>;
12133
- default: () => true;
12134
- };
12135
12227
  displayValue: {
12136
12228
  type: import("vue").PropType<(option: unknown) => string>;
12137
12229
  required: true;
@@ -12237,6 +12329,10 @@ declare const _default: {
12237
12329
  type: import("vue").PropType<unknown[]>;
12238
12330
  required: true;
12239
12331
  };
12332
+ onClear: {
12333
+ type: import("vue").PropType<() => void>;
12334
+ default: () => true;
12335
+ };
12240
12336
  modelValue: {
12241
12337
  type: import("vue").PropType<unknown>;
12242
12338
  default: any;
@@ -12324,10 +12420,6 @@ declare const _default: {
12324
12420
  type: import("vue").PropType<boolean>;
12325
12421
  default: boolean;
12326
12422
  };
12327
- onClear: {
12328
- type: import("vue").PropType<() => void>;
12329
- default: () => true;
12330
- };
12331
12423
  displayValue: {
12332
12424
  type: import("vue").PropType<(option: unknown) => string>;
12333
12425
  required: true;
@@ -12395,6 +12487,7 @@ declare const _default: {
12395
12487
  distance: number;
12396
12488
  popperClass: string;
12397
12489
  selected: any;
12490
+ onClear: () => void;
12398
12491
  modelValue: any;
12399
12492
  placeholder: string;
12400
12493
  multi: boolean;
@@ -12416,7 +12509,6 @@ declare const _default: {
12416
12509
  onSearch: (option: any, term: string) => boolean;
12417
12510
  noResultsText: string;
12418
12511
  searchAutoFocus: boolean;
12419
- onClear: () => void;
12420
12512
  optionNameKey: string;
12421
12513
  optionIconKey: string;
12422
12514
  optionImageKey: string;
@@ -15051,6 +15143,7 @@ declare const _default: {
15051
15143
  distance: number;
15052
15144
  popperClass: string;
15053
15145
  selected: any;
15146
+ onClear: () => void;
15054
15147
  modelValue: any;
15055
15148
  placeholder: string;
15056
15149
  multi: boolean;
@@ -15072,7 +15165,6 @@ declare const _default: {
15072
15165
  onSearch: (option: any, term: string) => boolean;
15073
15166
  noResultsText: string;
15074
15167
  searchAutoFocus: boolean;
15075
- onClear: () => void;
15076
15168
  optionNameKey: string;
15077
15169
  optionIconKey: string;
15078
15170
  optionImageKey: string;
@@ -15134,6 +15226,10 @@ declare const _default: {
15134
15226
  type: import("vue").PropType<unknown[]>;
15135
15227
  required: true;
15136
15228
  };
15229
+ onClear: {
15230
+ type: import("vue").PropType<() => void>;
15231
+ default: () => true;
15232
+ };
15137
15233
  modelValue: {
15138
15234
  type: import("vue").PropType<unknown>;
15139
15235
  default: any;
@@ -15221,10 +15317,6 @@ declare const _default: {
15221
15317
  type: import("vue").PropType<boolean>;
15222
15318
  default: boolean;
15223
15319
  };
15224
- onClear: {
15225
- type: import("vue").PropType<() => void>;
15226
- default: () => true;
15227
- };
15228
15320
  displayValue: {
15229
15321
  type: import("vue").PropType<(option: unknown) => string>;
15230
15322
  required: true;
@@ -15271,7 +15363,7 @@ declare const _default: {
15271
15363
  "onUpdate:isOpen"?: (value: unknown) => any;
15272
15364
  onOpened?: () => any;
15273
15365
  onClosed?: () => any;
15274
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClear" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType">;
15366
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType">;
15275
15367
  $attrs: {
15276
15368
  [x: string]: unknown;
15277
15369
  };
@@ -15337,6 +15429,10 @@ declare const _default: {
15337
15429
  type: import("vue").PropType<unknown[]>;
15338
15430
  required: true;
15339
15431
  };
15432
+ onClear: {
15433
+ type: import("vue").PropType<() => void>;
15434
+ default: () => true;
15435
+ };
15340
15436
  modelValue: {
15341
15437
  type: import("vue").PropType<unknown>;
15342
15438
  default: any;
@@ -15424,10 +15520,6 @@ declare const _default: {
15424
15520
  type: import("vue").PropType<boolean>;
15425
15521
  default: boolean;
15426
15522
  };
15427
- onClear: {
15428
- type: import("vue").PropType<() => void>;
15429
- default: () => true;
15430
- };
15431
15523
  displayValue: {
15432
15524
  type: import("vue").PropType<(option: unknown) => string>;
15433
15525
  required: true;
@@ -15495,6 +15587,7 @@ declare const _default: {
15495
15587
  distance: number;
15496
15588
  popperClass: string;
15497
15589
  selected: any;
15590
+ onClear: () => void;
15498
15591
  modelValue: any;
15499
15592
  placeholder: string;
15500
15593
  multi: boolean;
@@ -15516,7 +15609,6 @@ declare const _default: {
15516
15609
  onSearch: (option: any, term: string) => boolean;
15517
15610
  noResultsText: string;
15518
15611
  searchAutoFocus: boolean;
15519
- onClear: () => void;
15520
15612
  optionNameKey: string;
15521
15613
  optionIconKey: string;
15522
15614
  optionImageKey: string;
@@ -15598,6 +15690,10 @@ declare const _default: {
15598
15690
  type: import("vue").PropType<unknown[]>;
15599
15691
  required: true;
15600
15692
  };
15693
+ onClear: {
15694
+ type: import("vue").PropType<() => void>;
15695
+ default: () => true;
15696
+ };
15601
15697
  modelValue: {
15602
15698
  type: import("vue").PropType<unknown>;
15603
15699
  default: any;
@@ -15685,10 +15781,6 @@ declare const _default: {
15685
15781
  type: import("vue").PropType<boolean>;
15686
15782
  default: boolean;
15687
15783
  };
15688
- onClear: {
15689
- type: import("vue").PropType<() => void>;
15690
- default: () => true;
15691
- };
15692
15784
  displayValue: {
15693
15785
  type: import("vue").PropType<(option: unknown) => string>;
15694
15786
  required: true;
@@ -15794,6 +15886,10 @@ declare const _default: {
15794
15886
  type: import("vue").PropType<unknown[]>;
15795
15887
  required: true;
15796
15888
  };
15889
+ onClear: {
15890
+ type: import("vue").PropType<() => void>;
15891
+ default: () => true;
15892
+ };
15797
15893
  modelValue: {
15798
15894
  type: import("vue").PropType<unknown>;
15799
15895
  default: any;
@@ -15881,10 +15977,6 @@ declare const _default: {
15881
15977
  type: import("vue").PropType<boolean>;
15882
15978
  default: boolean;
15883
15979
  };
15884
- onClear: {
15885
- type: import("vue").PropType<() => void>;
15886
- default: () => true;
15887
- };
15888
15980
  displayValue: {
15889
15981
  type: import("vue").PropType<(option: unknown) => string>;
15890
15982
  required: true;
@@ -15952,6 +16044,7 @@ declare const _default: {
15952
16044
  distance: number;
15953
16045
  popperClass: string;
15954
16046
  selected: any;
16047
+ onClear: () => void;
15955
16048
  modelValue: any;
15956
16049
  placeholder: string;
15957
16050
  multi: boolean;
@@ -15973,7 +16066,6 @@ declare const _default: {
15973
16066
  onSearch: (option: any, term: string) => boolean;
15974
16067
  noResultsText: string;
15975
16068
  searchAutoFocus: boolean;
15976
- onClear: () => void;
15977
16069
  optionNameKey: string;
15978
16070
  optionIconKey: string;
15979
16071
  optionImageKey: string;