@webitel/ui-sdk 26.8.32 → 26.8.34

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 (23) hide show
  1. package/dist/{clients-DYgSupBB.js → clients-BwMBivjN.js} +104 -104
  2. package/dist/{components-BDKAbff7.js → components-MVLdxZ5u.js} +17 -16
  3. package/dist/ui-sdk.css +1 -1
  4. package/dist/ui-sdk.js +1 -1
  5. package/dist/ui-sdk.umd.cjs +620 -620
  6. package/dist/{useValidation-C_F39G5j.js → useValidation-D6P-wRwq.js} +12 -7
  7. package/dist/{wt-chat-emoji-BDckjRW9.js → wt-chat-emoji-B-Sol73Z.js} +1 -1
  8. package/dist/{wt-datepicker-BwjMwR9-.js → wt-datepicker-C5LuZK-R.js} +1 -1
  9. package/dist/{wt-display-chip-items-BxQrYGag.js → wt-display-chip-items-DgLG0ozO.js} +1 -1
  10. package/dist/{wt-search-bar-DaBSWvlP.js → wt-search-bar-Dnjkgro3.js} +10 -8
  11. package/dist/{wt-send-message-popup-BQmQ764a.js → wt-send-message-popup-DzDfWlvV.js} +2 -2
  12. package/dist/{wt-timepicker-CS5S9HHJ.js → wt-timepicker-CAkO0jFY.js} +1 -1
  13. package/dist/{wt-type-extension-value-input-BPhqY-_e.js → wt-type-extension-value-input-BFm1OPEE.js} +2 -2
  14. package/dist/{wt-vidstack-player-Byw50ZoQ.js → wt-vidstack-player-jTPSvIQM.js} +1 -1
  15. package/package.json +1 -1
  16. package/src/components/wt-input-text/wt-input-text.vue +10 -4
  17. package/src/components/wt-search-bar/wt-search-bar.vue +7 -0
  18. package/src/composables/useCard/useCardTabs.js +2 -3
  19. package/src/mixins/validationMixin/regle/useRegleValidation.ts +17 -1
  20. package/types/.tsbuildinfo +1 -1
  21. package/types/components/wt-input-text/wt-input-text.vue.d.ts +4 -2
  22. package/types/components/wt-search-bar/wt-search-bar.vue.d.ts +4 -2
  23. package/types/composables/useCard/useCardTabs.d.ts +1 -1
@@ -25,19 +25,21 @@ type __VLS_ModelProps = {
25
25
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
26
26
  declare var __VLS_7: {
27
27
  label: string;
28
- }, __VLS_21: {}, __VLS_46: {};
28
+ }, __VLS_21: {}, __VLS_47: {};
29
29
  type __VLS_Slots = {} & {
30
30
  label?: (props: typeof __VLS_7) => any;
31
31
  } & {
32
32
  prefix?: (props: typeof __VLS_21) => any;
33
33
  } & {
34
- suffix?: (props: typeof __VLS_46) => any;
34
+ suffix?: (props: typeof __VLS_47) => any;
35
35
  };
36
36
  declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
37
37
  focus: () => void;
38
38
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
39
+ focus: (args_0: FocusEvent) => any;
39
40
  "update:modelValue": (value: string) => any;
40
41
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
42
+ onFocus?: ((args_0: FocusEvent) => any) | undefined;
41
43
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
42
44
  }>, {
43
45
  type: string;
@@ -5,11 +5,11 @@ export interface SearchMode {
5
5
  [key: string]: unknown;
6
6
  }
7
7
  import type { CompatCustomValidator } from '../../mixins/validationMixin/vuelidate/useVuelidateValidation';
8
- declare var __VLS_53: {
8
+ declare var __VLS_54: {
9
9
  invalid: boolean | null;
10
10
  };
11
11
  type __VLS_Slots = {} & {
12
- 'additional-actions'?: (props: typeof __VLS_53) => any;
12
+ 'additional-actions'?: (props: typeof __VLS_54) => any;
13
13
  };
14
14
  declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
15
15
  v: {
@@ -51,6 +51,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
51
51
  default: boolean;
52
52
  };
53
53
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
54
+ focus: (args_0: FocusEvent) => any;
54
55
  input: (args_0: string) => any;
55
56
  search: (args_0: string) => any;
56
57
  enter: (args_0: string) => any;
@@ -96,6 +97,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
96
97
  default: boolean;
97
98
  };
98
99
  }>> & Readonly<{
100
+ onFocus?: ((args_0: FocusEvent) => any) | undefined;
99
101
  onInput?: ((args_0: string) => any) | undefined;
100
102
  onSearch?: ((args_0: string) => any) | undefined;
101
103
  onEnter?: ((args_0: string) => any) | undefined;
@@ -1,4 +1,4 @@
1
1
  export function useCardTabs(tabs: any): {
2
2
  currentTab: import("vue").ComputedRef<any>;
3
- changeTab: (tab: any) => Promise<void | import("vue-router").NavigationFailure | undefined>;
3
+ changeTab: (tab: any) => Promise<void | import("vue-router").NavigationFailure | undefined> | undefined;
4
4
  };