@webitel/ui-sdk 26.6.101 → 26.6.102

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 (53) hide show
  1. package/dist/{clients-DBR1e2Vq.js → clients-DhfpT_WX.js} +11 -4
  2. package/dist/{components-B15PvOcM.js → components-D09oOmMT.js} +26 -20
  3. package/dist/ui-sdk.css +1 -1
  4. package/dist/ui-sdk.js +1 -1
  5. package/dist/ui-sdk.umd.cjs +241 -241
  6. package/dist/{wt-chat-emoji-DGWoMhRa.js → wt-chat-emoji-BNd-IMKX.js} +1 -1
  7. package/dist/{wt-display-chip-items-BoMTg1Qr.js → wt-display-chip-items-DDtIC1eC.js} +1 -1
  8. package/dist/{wt-send-message-popup-WECZxY7v.js → wt-send-message-popup-CZw4gY49.js} +2 -2
  9. package/dist/{wt-type-extension-value-input-Dmq5KjQQ.js → wt-type-extension-value-input-Fbnk51qu.js} +2 -2
  10. package/dist/{wt-vidstack-player-D-D625Jl.js → wt-vidstack-player-BnwDqffJ.js} +1 -1
  11. package/package.json +1 -1
  12. package/src/components/wt-input-text/wt-input-text.vue +32 -4
  13. package/src/components/wt-password/wt-password.vue +1 -2
  14. package/src/composables/useEventBus/useEventBus.d.ts +4 -4
  15. package/src/enums/BroadcastChannelName/BroadcastChannelName.d.ts +3 -2
  16. package/src/enums/BroadcastChannelName/UserSettingsBroadcastMessage.d.ts +7 -7
  17. package/src/enums/ButtonColor/ButtonColor.d.ts +8 -8
  18. package/src/enums/ButtonVariant/ButtonVariant.d.ts +3 -3
  19. package/src/enums/ChipColor/ChipColor.d.ts +8 -8
  20. package/src/enums/ComponentSize/ComponentSize.d.ts +14 -14
  21. package/src/enums/ConnectionQualityLevel/ConnectionQualityLevel.enum.d.ts +5 -4
  22. package/src/enums/CrudAction/CrudAction.d.ts +4 -4
  23. package/src/enums/DefaultWorkspaceTabSettings/DefaultWorkspaceTabSettings.d.ts +8 -7
  24. package/src/enums/EmptyCause/EmptyCause.d.ts +3 -3
  25. package/src/enums/FormatDateMode/FormatDateMode.d.ts +7 -6
  26. package/src/enums/IconColor/IconColor.d.ts +14 -14
  27. package/src/enums/LoginOptions/LoginOptions.d.ts +3 -3
  28. package/src/enums/MessageColor/MessageColor.d.ts +6 -6
  29. package/src/enums/MessageVariant/MessageVariant.d.ts +3 -3
  30. package/src/enums/MimeTypes/MimeTypes.enum.d.ts +14 -14
  31. package/src/enums/ProcessingTableColumnType/ProcessingTableColumnType.d.ts +7 -6
  32. package/src/enums/QueueType/QueueType.enum.d.ts +22 -22
  33. package/src/enums/RelativeDatetimeValue/RelativeDatetimeValue.d.ts +6 -5
  34. package/src/enums/RingtoneType/RingtoneType.d.ts +3 -3
  35. package/src/enums/SingleSignOnProvider/SingleSignOnProvider.d.ts +6 -5
  36. package/src/enums/SingleSignOnProviderIconMappings/SingleSignOnProviderIconMappings.d.ts +6 -2
  37. package/src/enums/WebitelApplications/AdminSections.d.ts +38 -38
  38. package/src/enums/WebitelApplications/AuditorSections.d.ts +3 -2
  39. package/src/enums/WebitelApplications/CrmSections.d.ts +13 -13
  40. package/src/enums/WebitelApplications/SupervisorSections.d.ts +5 -4
  41. package/src/enums/WebitelApplications/WfmSections.d.ts +3 -3
  42. package/src/enums/WebitelApplications/WtApplication.d.ts +9 -9
  43. package/src/enums/WtObject/WtObject.d.ts +57 -57
  44. package/src/enums/WtTypeExtensionFieldKind/WtTypeExtensionFieldKind.d.ts +8 -7
  45. package/src/enums/index.d.ts +54 -4
  46. package/src/modules/ObjectPermissions/enums/AccessMode.enum.d.ts +3 -3
  47. package/src/modules/ObjectPermissions/enums/AccessRuleName.enum.d.ts +6 -5
  48. package/src/modules/ObjectPermissions/headers/headers.d.ts +5 -5
  49. package/src/modules/Userinfo/constants/UserSettingsConstants.d.ts +1 -1
  50. package/src/utils/displayText.d.ts +1 -1
  51. package/src/utils/formatDate.d.ts +9 -3
  52. package/types/components/wt-input-text/wt-input-text.vue.d.ts +4 -2
  53. package/types/components/wt-password/wt-password.vue.d.ts +0 -1
@@ -3620,7 +3620,8 @@ m.object({
3620
3620
  "createdAt.to": m.string().optional(),
3621
3621
  id: m.array(m.number()).optional(),
3622
3622
  callId: m.array(m.string()).optional(),
3623
- ratedUser: m.array(m.string()).optional()
3623
+ ratedUser: m.array(m.string()).optional(),
3624
+ conversationId: m.array(m.string()).optional()
3624
3625
  }), m.object({
3625
3626
  items: m.array(m.object({
3626
3627
  answers: m.array(m.object({
@@ -3633,6 +3634,7 @@ m.object({
3633
3634
  }).optional()
3634
3635
  })).optional(),
3635
3636
  comment: m.string().optional(),
3637
+ conversationId: m.string().optional(),
3636
3638
  createdAt: m.string().optional(),
3637
3639
  createdBy: m.object({
3638
3640
  id: m.string().optional(),
@@ -3885,6 +3887,7 @@ m.object({
3885
3887
  answers: m.array(m.object({ score: m.number().optional() })).optional(),
3886
3888
  callId: m.string().optional(),
3887
3889
  comment: m.string().optional(),
3890
+ conversationId: m.string().optional(),
3888
3891
  form: m.object({
3889
3892
  id: m.string().optional(),
3890
3893
  name: m.string().optional()
@@ -3900,6 +3903,7 @@ m.object({
3900
3903
  }).optional()
3901
3904
  })).optional(),
3902
3905
  comment: m.string().optional(),
3906
+ conversationId: m.string().optional(),
3903
3907
  createdAt: m.string().optional(),
3904
3908
  createdBy: m.object({
3905
3909
  id: m.string().optional(),
@@ -3952,6 +3956,7 @@ m.object({
3952
3956
  }).optional()
3953
3957
  })).optional(),
3954
3958
  comment: m.string().optional(),
3959
+ conversationId: m.string().optional(),
3955
3960
  createdAt: m.string().optional(),
3956
3961
  createdBy: m.object({
3957
3962
  id: m.string().optional(),
@@ -4004,6 +4009,7 @@ m.object({
4004
4009
  }).optional()
4005
4010
  })).optional(),
4006
4011
  comment: m.string().optional(),
4012
+ conversationId: m.string().optional(),
4007
4013
  createdAt: m.string().optional(),
4008
4014
  createdBy: m.object({
4009
4015
  id: m.string().optional(),
@@ -4062,6 +4068,7 @@ m.object({
4062
4068
  }).optional()
4063
4069
  })).optional(),
4064
4070
  comment: m.string().optional(),
4071
+ conversationId: m.string().optional(),
4065
4072
  createdAt: m.string().optional(),
4066
4073
  createdBy: m.object({
4067
4074
  id: m.string().optional(),
@@ -29509,10 +29516,10 @@ m.array(Ie), m.object({
29509
29516
  validFrom: m.string().optional(),
29510
29517
  validTo: m.string().optional()
29511
29518
  }), m.object({
29512
- page: m.number().default("1").describe("Page number of result dataset records. offset = (page * size)\nDefault: 0"),
29513
- size: m.number().default("20").describe("Size count of records on result page. limit = (size++)\nDefault: 25"),
29519
+ page: m.number().optional().describe("Page number of result dataset records. offset = (page * size)\nDefault: 0"),
29520
+ size: m.number().optional().describe("Size count of records on result page. limit = (size++)\nDefault: 25"),
29514
29521
  fields: m.array(m.string()).optional().describe("Fields to be retrieved as a result.\nDefault: [] (all fields)"),
29515
- sort: m.string().default("name:desc").describe("Sort the result according to fields.\nDefault: \"id:desc\""),
29522
+ sort: m.string().optional().describe("Sort the result according to fields.\nDefault: \"id:desc\""),
29516
29523
  id: m.array(m.string()).optional().describe("Filter by unique IDs."),
29517
29524
  q: m.string().optional().describe("Search query string for filtering by name. Supports:\n- Wildcards (*)\n- Placeholder (?)\n- Exact match"),
29518
29525
  type: m.array(m.enum([
@@ -3756,7 +3756,7 @@ var ko = /*#__PURE__*/ s(Do, [["render", Oo], ["__scopeId", "data-v-4a646a2c"]])
3756
3756
  ]);
3757
3757
  };
3758
3758
  }
3759
- }), Mo = { class: "wt-input-text" }, No = /* @__PURE__ */ P({
3759
+ }), Mo = { class: "wt-input-text" }, No = /*#__PURE__*/ s(/* @__PURE__ */ P({
3760
3760
  __name: "wt-input-text",
3761
3761
  props: /*@__PURE__*/ je({
3762
3762
  label: { default: "" },
@@ -3782,6 +3782,10 @@ var ko = /*#__PURE__*/ s(Do, [["render", Oo], ["__scopeId", "data-v-4a646a2c"]])
3782
3782
  hideInputInfo: {
3783
3783
  type: Boolean,
3784
3784
  default: !1
3785
+ },
3786
+ hideInputValue: {
3787
+ type: Boolean,
3788
+ default: !1
3785
3789
  }
3786
3790
  }, {
3787
3791
  modelValue: { default: "" },
@@ -3799,25 +3803,25 @@ var ko = /*#__PURE__*/ s(Do, [["render", Oo], ["__scopeId", "data-v-4a646a2c"]])
3799
3803
  }), { focus: y, handleKeyup: b } = le(o), x = E(() => r.label || l.label), ee = E(() => r.required || r.v && "required" in r.v ? `${r.label}*` : r.label), te = (e) => {
3800
3804
  let t = r.preventTrim ? e : e.trim();
3801
3805
  c("update:modelValue", t);
3802
- };
3806
+ }, S = Ve(r.hideInputValue), ne = E(() => a.value.length && S.value), re = E(() => r.hideInputValue || l.suffix), C = E(() => S.value ? "eye--opened" : "eye--closed");
3803
3807
  return t({ focus: y }), (t, n) => {
3804
- let r = B("wt-label"), c = B("p-input-group-addon"), l = B("p-input-text"), u = B("p-input-group"), f = B("wt-message");
3808
+ let r = B("wt-label"), c = B("p-input-group-addon"), l = B("p-input-text"), u = B("wt-icon-btn"), f = B("p-input-group"), p = B("wt-message");
3805
3809
  return R(), k("div", Mo, [
3806
3810
  x.value ? (R(), D(r, Me({ key: 0 }, e.labelProps, {
3807
3811
  disabled: e.disabled,
3808
3812
  for: s,
3809
3813
  invalid: W(g)
3810
3814
  }), {
3811
- default: K(() => [z(t.$slots, "label", L(F({ label: e.label })), () => [j(H(ee.value), 1)])], void 0, !0),
3815
+ default: K(() => [z(t.$slots, "label", L(F({ label: e.label })), () => [j(H(ee.value), 1)], !0)], void 0, !0),
3812
3816
  _: 3
3813
3817
  }, 16, ["disabled", "invalid"])) : O("", !0),
3814
- M(u, null, {
3818
+ M(f, null, {
3815
3819
  default: K(() => [
3816
3820
  t.$slots.prefix ? (R(), D(c, {
3817
3821
  key: 0,
3818
3822
  class: "wt-input-text__addon typo-body-1"
3819
3823
  }, {
3820
- default: K(() => [z(t.$slots, "prefix")], void 0, !0),
3824
+ default: K(() => [z(t.$slots, "prefix", {}, void 0, !0)], void 0, !0),
3821
3825
  _: 3
3822
3826
  })) : O("", !0),
3823
3827
  M(l, Me(t.$attrs, {
@@ -3828,7 +3832,7 @@ var ko = /*#__PURE__*/ s(Do, [["render", Oo], ["__scopeId", "data-v-4a646a2c"]])
3828
3832
  disabled: e.disabled,
3829
3833
  invalid: W(g),
3830
3834
  placeholder: e.placeholder || e.label,
3831
- class: "wt-input-text__input typo-body-1",
3835
+ class: ["wt-input-text__input typo-body-1", { "wt-input-text__input--masked": ne.value }],
3832
3836
  inputmode: e.type,
3833
3837
  size: i[e.size]
3834
3838
  }, Ge(t.$listeners), {
@@ -3839,21 +3843,27 @@ var ko = /*#__PURE__*/ s(Do, [["render", Oo], ["__scopeId", "data-v-4a646a2c"]])
3839
3843
  "disabled",
3840
3844
  "invalid",
3841
3845
  "placeholder",
3846
+ "class",
3842
3847
  "inputmode",
3843
3848
  "size",
3844
3849
  "onKeyup"
3845
3850
  ]),
3846
- t.$slots.suffix ? (R(), D(c, {
3851
+ re.value ? (R(), D(c, {
3847
3852
  key: 1,
3848
3853
  class: "wt-input-text__addon typo-body-1"
3849
3854
  }, {
3850
- default: K(() => [z(t.$slots, "suffix")], void 0, !0),
3855
+ default: K(() => [e.hideInputValue ? (R(), D(u, {
3856
+ key: 0,
3857
+ icon: C.value,
3858
+ disabled: e.disabled,
3859
+ onClick: n[0] ||= (e) => S.value = !S.value
3860
+ }, null, 8, ["icon", "disabled"])) : O("", !0), z(t.$slots, "suffix", {}, void 0, !0)], void 0, !0),
3851
3861
  _: 3
3852
3862
  })) : O("", !0)
3853
3863
  ], void 0, !0),
3854
3864
  _: 3
3855
3865
  }),
3856
- W(h) && W(_) && !e.hideInputInfo ? (R(), D(f, {
3866
+ W(h) && W(_) && !e.hideInputInfo ? (R(), D(p, {
3857
3867
  key: 1,
3858
3868
  color: W(v),
3859
3869
  variant: W(m).SIMPLE,
@@ -3869,7 +3879,7 @@ var ko = /*#__PURE__*/ s(Do, [["render", Oo], ["__scopeId", "data-v-4a646a2c"]])
3869
3879
  ]);
3870
3880
  };
3871
3881
  }
3872
- });
3882
+ }), [["__scopeId", "data-v-cbbecb8b"]]);
3873
3883
  //#endregion
3874
3884
  //#region node_modules/@vueuse/shared/dist/index.js
3875
3885
  function Po(e = {}) {
@@ -5338,8 +5348,7 @@ var Vc = /*#__PURE__*/ s(Fc, [["render", Bc], ["__scopeId", "data-v-6a61d896"]])
5338
5348
  },
5339
5349
  v: { default: null },
5340
5350
  regleValidation: { default: null },
5341
- customValidators: { default: () => [] },
5342
- autocomplete: {}
5351
+ customValidators: { default: () => [] }
5343
5352
  }, {
5344
5353
  modelValue: { default: "" },
5345
5354
  modelModifiers: {}
@@ -5376,10 +5385,7 @@ var Vc = /*#__PURE__*/ s(Fc, [["render", Bc], ["__scopeId", "data-v-6a61d896"]])
5376
5385
  placeholder: e.placeholder || e.label,
5377
5386
  "toggle-mask": !1,
5378
5387
  feedback: !1,
5379
- "input-props": {
5380
- type: ee.value,
5381
- autocomplete: e.autocomplete
5382
- },
5388
+ "input-props": { type: ee.value },
5383
5389
  "input-class": "wt-password__input typo-body-1"
5384
5390
  }, { onKeyup: W(_) }), null, 16, [
5385
5391
  "modelValue",
@@ -6542,9 +6548,9 @@ var zl = {
6542
6548
  ])), [[r, d]]) : O("", !0)], 2);
6543
6549
  };
6544
6550
  }
6545
- }, [["__scopeId", "data-v-72aa56d0"]]), Wl = N(() => import("./wt-action-bar-HBm22ay5.js")), Gl = N(() => import("./wt-button-select-BnRHgJ4i.js")), Kl = N(() => import("./wt-confirm-dialog-DCUitG2v.js")), ql = N(() => import("./wt-context-menu-yW52oF-2.js")), Jl = N(() => import("./wt-copy-action-d9gVzAsB.js")), Yl = N(() => import("./wt-datepicker-BMyxdXw4.js")), Xl = N(() => import("./wt-dual-panel-Dhj8Eg_y.js")), Zl = N(() => import("./wt-dummy-CLjhRWZ6.js")), Ql = N(() => import("./wt-error-page-vhu4lIyF.js")), $l = N(() => import("./wt-expansion-panel-Br7JPc5X.js")), eu = N(() => import("./wt-expansion-card-DET-o0Jq.js")), tu = N(() => import("./wt-filters-panel-wrapper-Cc9b3aci.js")), nu = N(() => import("./wt-galleria-B6kMr_xS.js")), ru = N(() => import("./wt-notifications-bar-DhJxMjNB.js")), iu = N(() => import("./wt-page-header-CDbd4aOh.js")), au = N(() => import("./wt-pagination-G2ZGU4Pi.js")), ou = N(() => import("./wt-player-Bbirdlj9.js")), su = N(() => import("./wt-popover-ChCN6b1o.js").then((e) => e.n)), cu = N(() => import("./wt-search-bar-DtJL-csc.js")), lu = N(() => import("./wt-slider-BPzRTeYU.js").then((e) => e.n)), uu = N(() => import("./wt-status-select-D1hAjCAS.js")), du = N(() => import("./wt-stepper-B6zpd1Uh.js")), fu = N(() => import("./wt-table-C39WpJH8.js")), pu = N(() => import("./wt-table-actions-4-peSVkc.js")), mu = N(() => import("./wt-table-column-select-CgEh5BAF.js")), hu = N(() => import("./wt-tabs-DuOgj-lZ.js")), gu = N(() => import("./wt-time-input-u5Ay5_X5.js")), _u = N(() => import("./wt-timepicker-CHNPor19.js")), vu = N(() => import("./wt-tree-DZ9ErOGj.js")), yu = N(() => import("./wt-tree-table-umRsVKWt.js")), bu = N(() => import("./wt-vidstack-player-D-D625Jl.js")), xu = N(() => import("./wt-call-media-action-Bn2bGCWs.js")), Su = N(() => import("./wt-chat-emoji-DGWoMhRa.js")), Cu = N(() => import("./wt-display-chip-items-BoMTg1Qr.js")), wu = N(() => import("./wt-navigation-menu-CenQi_-T.js")), Tu = N(() => import("./wt-selection-popup-CjYw4ppb.js")), Eu = N(() => import("./wt-start-page-DMXRhA9E.js"));
6546
- N(() => import("./wt-type-extension-value-input-Dmq5KjQQ.js"));
6547
- var Du = N(() => import("./wt-screen-recordings-action-Dzzo0eqW.js")), Ou = N(() => import("./wt-send-message-popup-WECZxY7v.js")), ku = {
6551
+ }, [["__scopeId", "data-v-72aa56d0"]]), Wl = N(() => import("./wt-action-bar-HBm22ay5.js")), Gl = N(() => import("./wt-button-select-BnRHgJ4i.js")), Kl = N(() => import("./wt-confirm-dialog-DCUitG2v.js")), ql = N(() => import("./wt-context-menu-yW52oF-2.js")), Jl = N(() => import("./wt-copy-action-d9gVzAsB.js")), Yl = N(() => import("./wt-datepicker-BMyxdXw4.js")), Xl = N(() => import("./wt-dual-panel-Dhj8Eg_y.js")), Zl = N(() => import("./wt-dummy-CLjhRWZ6.js")), Ql = N(() => import("./wt-error-page-vhu4lIyF.js")), $l = N(() => import("./wt-expansion-panel-Br7JPc5X.js")), eu = N(() => import("./wt-expansion-card-DET-o0Jq.js")), tu = N(() => import("./wt-filters-panel-wrapper-Cc9b3aci.js")), nu = N(() => import("./wt-galleria-B6kMr_xS.js")), ru = N(() => import("./wt-notifications-bar-DhJxMjNB.js")), iu = N(() => import("./wt-page-header-CDbd4aOh.js")), au = N(() => import("./wt-pagination-G2ZGU4Pi.js")), ou = N(() => import("./wt-player-Bbirdlj9.js")), su = N(() => import("./wt-popover-ChCN6b1o.js").then((e) => e.n)), cu = N(() => import("./wt-search-bar-DtJL-csc.js")), lu = N(() => import("./wt-slider-BPzRTeYU.js").then((e) => e.n)), uu = N(() => import("./wt-status-select-D1hAjCAS.js")), du = N(() => import("./wt-stepper-B6zpd1Uh.js")), fu = N(() => import("./wt-table-C39WpJH8.js")), pu = N(() => import("./wt-table-actions-4-peSVkc.js")), mu = N(() => import("./wt-table-column-select-CgEh5BAF.js")), hu = N(() => import("./wt-tabs-DuOgj-lZ.js")), gu = N(() => import("./wt-time-input-u5Ay5_X5.js")), _u = N(() => import("./wt-timepicker-CHNPor19.js")), vu = N(() => import("./wt-tree-DZ9ErOGj.js")), yu = N(() => import("./wt-tree-table-umRsVKWt.js")), bu = N(() => import("./wt-vidstack-player-BnwDqffJ.js")), xu = N(() => import("./wt-call-media-action-Bn2bGCWs.js")), Su = N(() => import("./wt-chat-emoji-BNd-IMKX.js")), Cu = N(() => import("./wt-display-chip-items-DDtIC1eC.js")), wu = N(() => import("./wt-navigation-menu-CenQi_-T.js")), Tu = N(() => import("./wt-selection-popup-CjYw4ppb.js")), Eu = N(() => import("./wt-start-page-DMXRhA9E.js"));
6552
+ N(() => import("./wt-type-extension-value-input-Fbnk51qu.js"));
6553
+ var Du = N(() => import("./wt-screen-recordings-action-Dzzo0eqW.js")), Ou = N(() => import("./wt-send-message-popup-CZw4gY49.js")), ku = {
6548
6554
  WtActionBar: Wl,
6549
6555
  WtImage: fo,
6550
6556
  WtEmpty: _o,