@webitel/ui-sdk 26.8.44 → 26.8.46

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 (22) hide show
  1. package/dist/{clients-EyPsBurj.js → clients-DBqdsc05.js} +2 -2
  2. package/dist/{components-DZ-mqx3y.js → components-CfX8XNuf.js} +3 -3
  3. package/dist/ui-sdk.css +1 -1
  4. package/dist/ui-sdk.js +1 -1
  5. package/dist/ui-sdk.umd.cjs +360 -360
  6. package/dist/{wt-chat-emoji-DxGSTYd8.js → wt-chat-emoji-PSwoA5FA.js} +1 -1
  7. package/dist/{wt-datepicker-C5LuZK-R.js → wt-datepicker-D5Af57PB.js} +7 -5
  8. package/dist/{wt-display-chip-items-DicXPtf3.js → wt-display-chip-items-CIXM-Ohl.js} +1 -1
  9. package/dist/{wt-send-message-popup-qzdEoZPK.js → wt-send-message-popup-3yRiBsoN.js} +2 -2
  10. package/dist/{wt-status-select-B-N9Fvz4.js → wt-status-select-DL1bOn9G.js} +2 -6
  11. package/dist/{wt-type-extension-value-input-BUf4t1jl.js → wt-type-extension-value-input-DArCroNk.js} +2 -2
  12. package/dist/{wt-vidstack-player-Bv_bhxih.js → wt-vidstack-player-BGnQxLI3.js} +1 -1
  13. package/package.json +1 -1
  14. package/src/components/wt-datepicker/wt-datepicker.vue +8 -5
  15. package/src/components/wt-status-select/__tests__/WtStatusSelect.spec.js +65 -0
  16. package/src/components/wt-status-select/wt-status-select.vue +6 -20
  17. package/src/modules/AgentStatusSelect/components/__tests__/wt-cc-agent-status-select.spec.js +97 -1
  18. package/src/modules/AgentStatusSelect/components/wt-cc-agent-status-select.vue +1 -23
  19. package/src/validations/config/errors/customZodErrorsHandler.ts +32 -4
  20. package/types/.tsbuildinfo +1 -1
  21. package/types/components/wt-datepicker/wt-datepicker.vue.d.ts +2 -0
  22. package/types/components/wt-status-select/wt-status-select.vue.d.ts +0 -2
@@ -1,3 +1,4 @@
1
+ import type { SuperCompatibleRegleFieldStatus } from '@regle/core';
1
2
  import { DatePickerProps } from 'primevue/datepicker';
2
3
  import type { CompatCustomValidator, VuelidateFieldLike } from '../../mixins/validationMixin/vuelidate/useVuelidateValidation';
3
4
  interface Props extends DatePickerProps {
@@ -13,6 +14,7 @@ interface Props extends DatePickerProps {
13
14
  timezone?: string;
14
15
  v?: VuelidateFieldLike;
15
16
  customValidators?: CompatCustomValidator[];
17
+ regleValidation?: SuperCompatibleRegleFieldStatus;
16
18
  }
17
19
  type __VLS_Props = Props;
18
20
  type __VLS_ModelProps = {
@@ -11,10 +11,8 @@ type __VLS_Props = {
11
11
  };
12
12
  declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
13
  change: (value: string) => any;
14
- closed: (event: Event) => any;
15
14
  }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
16
15
  onChange?: ((value: string) => any) | undefined;
17
- onClosed?: ((event: Event) => any) | undefined;
18
16
  }>, {
19
17
  status: string;
20
18
  statusDuration: string | number;