@uzum-tech/ui 1.14.0 → 1.14.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 (146) hide show
  1. package/dist/index.js +177 -143
  2. package/dist/index.prod.js +2 -2
  3. package/es/auto-complete/src/AutoComplete.d.ts +70 -0
  4. package/es/auto-complete/styles/light.d.ts +7 -0
  5. package/es/chat/src/Chat.d.ts +70 -0
  6. package/es/chat/src/ChatListItems.d.ts +77 -0
  7. package/es/chat/src/ChatMessages.d.ts +77 -0
  8. package/es/chat/src/ChatParts/MainArea.js +47 -54
  9. package/es/chat/src/ChatParts/Sidebar.d.ts +7 -0
  10. package/es/chat/src/styles/index.cssr.js +12 -7
  11. package/es/chat/styles/dark.d.ts +7 -0
  12. package/es/chat/styles/light.d.ts +7 -0
  13. package/es/color-picker/src/ColorInputUnit.d.ts +7 -0
  14. package/es/color-picker/src/ColorPicker.d.ts +63 -0
  15. package/es/color-picker/styles/light.d.ts +7 -0
  16. package/es/data-table/src/DataTable.d.ts +56 -0
  17. package/es/data-table/src/HeaderButton/FilterButton.d.ts +14 -0
  18. package/es/data-table/src/HeaderButton/FilterMenu.d.ts +14 -0
  19. package/es/data-table/src/TableParts/Body.d.ts +14 -0
  20. package/es/data-table/src/TableParts/Header.d.ts +14 -0
  21. package/es/data-table/src/interface.d.ts +21 -0
  22. package/es/data-table/styles/light.d.ts +7 -0
  23. package/es/date-picker/src/DatePicker.d.ts +147 -0
  24. package/es/date-picker/src/panel/date.d.ts +21 -0
  25. package/es/date-picker/src/panel/daterange.d.ts +21 -0
  26. package/es/date-picker/src/panel/datetime.d.ts +21 -0
  27. package/es/date-picker/src/panel/datetimerange.d.ts +21 -0
  28. package/es/date-picker/src/panel/panelMonth.d.ts +42 -0
  29. package/es/date-picker/src/panel/panelMonthContent.d.ts +21 -0
  30. package/es/date-picker/src/panel/panelYear.d.ts +42 -0
  31. package/es/date-picker/src/panel/panelYearContent.d.ts +21 -0
  32. package/es/date-picker/src/panel/use-calendar.d.ts +21 -0
  33. package/es/date-picker/src/panel/use-dual-calendar.d.ts +21 -0
  34. package/es/date-picker/src/panel/use-panel-common.d.ts +21 -0
  35. package/es/date-picker/styles/light.d.ts +14 -0
  36. package/es/date-picker-v2/src/DatePickerV2.d.ts +70 -0
  37. package/es/date-picker-v2/styles/dark.d.ts +7 -0
  38. package/es/date-picker-v2/styles/light.d.ts +7 -0
  39. package/es/dynamic-input/src/DynamicInput.d.ts +70 -0
  40. package/es/dynamic-input/src/InputPreset.d.ts +7 -0
  41. package/es/dynamic-input/src/PairPreset.d.ts +7 -0
  42. package/es/dynamic-input/styles/light.d.ts +7 -0
  43. package/es/dynamic-tags/src/DynamicTags.d.ts +70 -0
  44. package/es/dynamic-tags/styles/light.d.ts +7 -0
  45. package/es/input/src/Input.d.ts +77 -0
  46. package/es/input/src/Input.js +9 -1
  47. package/es/input/src/InputGroupLabel.d.ts +63 -0
  48. package/es/input/src/styles/input.cssr.js +1 -1
  49. package/es/input/styles/light.d.ts +7 -0
  50. package/es/input/styles/light.js +11 -1
  51. package/es/input-number/src/InputNumber.d.ts +70 -0
  52. package/es/input-number/styles/light.d.ts +7 -0
  53. package/es/input-otp/src/InputOtp.d.ts +70 -0
  54. package/es/input-otp/styles/light.d.ts +7 -0
  55. package/es/legacy-transfer/src/Transfer.d.ts +70 -0
  56. package/es/legacy-transfer/src/TransferFilter.d.ts +7 -0
  57. package/es/legacy-transfer/src/TransferList.d.ts +7 -0
  58. package/es/legacy-transfer/src/TransferListItem.d.ts +7 -0
  59. package/es/legacy-transfer/styles/light.d.ts +7 -0
  60. package/es/mention/src/Mention.d.ts +70 -0
  61. package/es/mention/styles/light.d.ts +7 -0
  62. package/es/pagination/src/Pagination.d.ts +70 -0
  63. package/es/pagination/styles/light.d.ts +7 -0
  64. package/es/time-picker/src/Panel.d.ts +7 -0
  65. package/es/time-picker/src/TimePicker.d.ts +70 -0
  66. package/es/time-picker/styles/light.d.ts +7 -0
  67. package/es/transfer/src/Transfer.d.ts +70 -0
  68. package/es/transfer/src/TransferFilter.d.ts +7 -0
  69. package/es/transfer/src/TransferList.d.ts +7 -0
  70. package/es/transfer/src/TransferListItem.d.ts +7 -0
  71. package/es/transfer/styles/light.d.ts +7 -0
  72. package/es/version.d.ts +1 -1
  73. package/es/version.js +1 -1
  74. package/lib/auto-complete/src/AutoComplete.d.ts +70 -0
  75. package/lib/auto-complete/styles/light.d.ts +7 -0
  76. package/lib/chat/src/Chat.d.ts +70 -0
  77. package/lib/chat/src/ChatListItems.d.ts +77 -0
  78. package/lib/chat/src/ChatMessages.d.ts +77 -0
  79. package/lib/chat/src/ChatParts/MainArea.js +47 -54
  80. package/lib/chat/src/ChatParts/Sidebar.d.ts +7 -0
  81. package/lib/chat/src/styles/index.cssr.js +12 -7
  82. package/lib/chat/styles/dark.d.ts +7 -0
  83. package/lib/chat/styles/light.d.ts +7 -0
  84. package/lib/color-picker/src/ColorInputUnit.d.ts +7 -0
  85. package/lib/color-picker/src/ColorPicker.d.ts +63 -0
  86. package/lib/color-picker/styles/light.d.ts +7 -0
  87. package/lib/data-table/src/DataTable.d.ts +56 -0
  88. package/lib/data-table/src/HeaderButton/FilterButton.d.ts +14 -0
  89. package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +14 -0
  90. package/lib/data-table/src/TableParts/Body.d.ts +14 -0
  91. package/lib/data-table/src/TableParts/Header.d.ts +14 -0
  92. package/lib/data-table/src/interface.d.ts +21 -0
  93. package/lib/data-table/styles/light.d.ts +7 -0
  94. package/lib/date-picker/src/DatePicker.d.ts +147 -0
  95. package/lib/date-picker/src/panel/date.d.ts +21 -0
  96. package/lib/date-picker/src/panel/daterange.d.ts +21 -0
  97. package/lib/date-picker/src/panel/datetime.d.ts +21 -0
  98. package/lib/date-picker/src/panel/datetimerange.d.ts +21 -0
  99. package/lib/date-picker/src/panel/panelMonth.d.ts +42 -0
  100. package/lib/date-picker/src/panel/panelMonthContent.d.ts +21 -0
  101. package/lib/date-picker/src/panel/panelYear.d.ts +42 -0
  102. package/lib/date-picker/src/panel/panelYearContent.d.ts +21 -0
  103. package/lib/date-picker/src/panel/use-calendar.d.ts +21 -0
  104. package/lib/date-picker/src/panel/use-dual-calendar.d.ts +21 -0
  105. package/lib/date-picker/src/panel/use-panel-common.d.ts +21 -0
  106. package/lib/date-picker/styles/light.d.ts +14 -0
  107. package/lib/date-picker-v2/src/DatePickerV2.d.ts +70 -0
  108. package/lib/date-picker-v2/styles/dark.d.ts +7 -0
  109. package/lib/date-picker-v2/styles/light.d.ts +7 -0
  110. package/lib/dynamic-input/src/DynamicInput.d.ts +70 -0
  111. package/lib/dynamic-input/src/InputPreset.d.ts +7 -0
  112. package/lib/dynamic-input/src/PairPreset.d.ts +7 -0
  113. package/lib/dynamic-input/styles/light.d.ts +7 -0
  114. package/lib/dynamic-tags/src/DynamicTags.d.ts +70 -0
  115. package/lib/dynamic-tags/styles/light.d.ts +7 -0
  116. package/lib/input/src/Input.d.ts +77 -0
  117. package/lib/input/src/Input.js +9 -1
  118. package/lib/input/src/InputGroupLabel.d.ts +63 -0
  119. package/lib/input/src/styles/input.cssr.js +1 -1
  120. package/lib/input/styles/light.d.ts +7 -0
  121. package/lib/input/styles/light.js +11 -1
  122. package/lib/input-number/src/InputNumber.d.ts +70 -0
  123. package/lib/input-number/styles/light.d.ts +7 -0
  124. package/lib/input-otp/src/InputOtp.d.ts +70 -0
  125. package/lib/input-otp/styles/light.d.ts +7 -0
  126. package/lib/legacy-transfer/src/Transfer.d.ts +70 -0
  127. package/lib/legacy-transfer/src/TransferFilter.d.ts +7 -0
  128. package/lib/legacy-transfer/src/TransferList.d.ts +7 -0
  129. package/lib/legacy-transfer/src/TransferListItem.d.ts +7 -0
  130. package/lib/legacy-transfer/styles/light.d.ts +7 -0
  131. package/lib/mention/src/Mention.d.ts +70 -0
  132. package/lib/mention/styles/light.d.ts +7 -0
  133. package/lib/pagination/src/Pagination.d.ts +70 -0
  134. package/lib/pagination/styles/light.d.ts +7 -0
  135. package/lib/time-picker/src/Panel.d.ts +7 -0
  136. package/lib/time-picker/src/TimePicker.d.ts +70 -0
  137. package/lib/time-picker/styles/light.d.ts +7 -0
  138. package/lib/transfer/src/Transfer.d.ts +70 -0
  139. package/lib/transfer/src/TransferFilter.d.ts +7 -0
  140. package/lib/transfer/src/TransferList.d.ts +7 -0
  141. package/lib/transfer/src/TransferListItem.d.ts +7 -0
  142. package/lib/transfer/styles/light.d.ts +7 -0
  143. package/lib/version.d.ts +1 -1
  144. package/lib/version.js +1 -1
  145. package/package.json +1 -1
  146. package/web-types.json +1 -1
package/dist/index.js CHANGED
@@ -28738,6 +28738,7 @@
28738
28738
  containerPrimary,
28739
28739
  elementsQuaternary,
28740
28740
  elementsPrimary,
28741
+ staticGreen,
28741
28742
  staticOrange,
28742
28743
  staticRed,
28743
28744
  elementsQuinary,
@@ -28791,6 +28792,16 @@
28791
28792
  alpha: 0.1
28792
28793
  })}`,
28793
28794
  loadingColor: elementsPrimary,
28795
+ // success
28796
+ loadingColorSuccess: staticGreen,
28797
+ borderSuccess: `2px solid ${staticGreen}`,
28798
+ borderHoverSuccess: `2px solid ${staticGreen}`,
28799
+ colorFocusSuccess: containerPrimary,
28800
+ borderFocusSuccess: `2px solid ${staticGreen}`,
28801
+ boxShadowFocusSuccess: `0 0 0 4px ${changeColor(staticGreen, {
28802
+ alpha: 0.1
28803
+ })}`,
28804
+ caretColorSuccess: elementsPrimary,
28794
28805
  // warning
28795
28806
  loadingColorWarning: staticOrange,
28796
28807
  borderWarning: `2px solid ${staticOrange}`,
@@ -29204,7 +29215,7 @@
29204
29215
  transition: color .3s var(--u-bezier);
29205
29216
  margin-left: 4px;
29206
29217
  font-variant: tabular-nums;
29207
- `), ["warning", "error"].map(status => cM(`${status}-status`, [cNotM("disabled", [cB("base-loading", `
29218
+ `), ["warning", "error", "success"].map(status => cM(`${status}-status`, [cNotM("disabled", [cB("base-loading", `
29208
29219
  color: var(--u-loading-color-${status})
29209
29220
  `), cE("input-el, textarea-el", `
29210
29221
  caret-color: var(--u-caret-color-${status});
@@ -32050,6 +32061,7 @@
32050
32061
  borderRadius,
32051
32062
  textColor,
32052
32063
  caretColor,
32064
+ caretColorSuccess,
32053
32065
  caretColorError,
32054
32066
  caretColorWarning,
32055
32067
  textDecorationColor,
@@ -32065,6 +32077,11 @@
32065
32077
  textColorDisabled,
32066
32078
  boxShadowFocus,
32067
32079
  iconSize,
32080
+ colorFocusSuccess,
32081
+ boxShadowFocusSuccess,
32082
+ borderSuccess,
32083
+ borderFocusSuccess,
32084
+ borderHoverSuccess,
32068
32085
  colorFocusWarning,
32069
32086
  boxShadowFocusWarning,
32070
32087
  borderWarning,
@@ -32087,6 +32104,7 @@
32087
32104
  iconColorHover,
32088
32105
  iconColorPressed,
32089
32106
  loadingColor,
32107
+ loadingColorSuccess,
32090
32108
  loadingColorError,
32091
32109
  loadingColorWarning,
32092
32110
  selectionColor,
@@ -32125,6 +32143,14 @@
32125
32143
  "--u-text-color-disabled": textColorDisabled,
32126
32144
  "--u-box-shadow-focus": boxShadowFocus,
32127
32145
  "--u-loading-color": loadingColor,
32146
+ // form success
32147
+ "--u-caret-color-success": caretColorSuccess,
32148
+ "--u-color-focus-success": colorFocusSuccess,
32149
+ "--u-box-shadow-focus-success": boxShadowFocusSuccess,
32150
+ "--u-border-success": borderSuccess,
32151
+ "--u-border-focus-success": borderFocusSuccess,
32152
+ "--u-border-hover-success": borderHoverSuccess,
32153
+ "--u-loading-color-success": loadingColorSuccess,
32128
32154
  // form warning
32129
32155
  "--u-caret-color-warning": caretColorWarning,
32130
32156
  "--u-color-focus-warning": colorFocusWarning,
@@ -47150,23 +47176,28 @@
47150
47176
  width: 100%;
47151
47177
  padding: 24px 20px 10px 24px;
47152
47178
  flex-shrink: 0;
47179
+ `), cE("header-inner", `
47180
+ display: grid;
47181
+ grid-template-columns: minmax(0, 1fr) auto;
47182
+ align-items: flex-start;
47183
+ gap: 8px;
47184
+ `), cE("header-title-wrap", `
47185
+ min-width: 0;
47186
+ overflow: hidden;
47153
47187
  `), cE("header-title", `
47154
47188
  color: var(--u-header-title-color);
47155
- flex: 1;
47156
- min-width: 0;
47189
+ display: block;
47157
47190
  overflow: hidden;
47158
- text-overflow: ellipsis;
47159
47191
  white-space: nowrap;
47160
- display: block;
47161
- margin-right: 16px;
47192
+ text-overflow: ellipsis;
47193
+ width: 100%;
47162
47194
  `), cE("header-subtitle", `
47163
47195
  display: block;
47164
47196
  color: var(--u-sidebar-item-subtitle-color);
47165
47197
  overflow: hidden;
47166
47198
  text-overflow: ellipsis;
47167
47199
  white-space: nowrap;
47168
- minWidth: 0;
47169
- maxWidth: 100%;
47200
+ width: 100%;
47170
47201
  `), cE("header-actions", `
47171
47202
  padding: 4px;
47172
47203
  flex-shrink: 0;
@@ -57223,150 +57254,153 @@
57223
57254
  return value != null ? String(value) : "";
57224
57255
  };
57225
57256
  const renderHeader = () => {
57226
- return /* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefixRef.value}-chat-main__header` }, /* @__PURE__ */ vue.h(UFlex, { justify: "space-between", align: "flex-start", wrap: false }, {
57227
- default: () => {
57228
- const chat = selectedChatRef.value;
57229
- const keyId = toKeyString(chat?.id);
57230
- const keyTitle = toKeyString(chat?.title);
57231
- return /* @__PURE__ */ vue.h(vue.Fragment, null, /* @__PURE__ */ vue.h(UFlex, { vertical: true, size: [0, 0], justify: 'flex-start"' }, /* @__PURE__ */ vue.h(
57232
- UText,
57233
- {
57234
- key: `${keyId}-${keyTitle}`,
57235
- variant: "heading-s-bold",
57236
- class: `${mergedClsPrefixRef.value}-chat-main__header-title`,
57237
- theme: mergedThemeRef.value.peers.Typography,
57238
- themeOverrides: mergedThemeRef.value.peerOverrides.Typography
57239
- },
57240
- {
57241
- default: () => selectedChatRef.value?.title ?? ""
57242
- }
57243
- ), isTyping.value && /* @__PURE__ */ vue.h(
57244
- UText,
57245
- {
57246
- class: [
57247
- `${mergedClsPrefixRef.value}-chat-main__header-subtitle`,
57248
- "typing"
57249
- ],
57250
- variant: "body-m-medium"
57251
- },
57252
- {
57253
- default: () => typingTextRef.value ?? ""
57254
- }
57255
- )), /* @__PURE__ */ vue.h(
57256
- UFlex,
57257
- {
57258
- align: "center",
57259
- size: "small",
57260
- class: `${mergedClsPrefixRef.value}-chat-main__header-actions`
57261
- },
57262
- {
57263
- default: () => resolveSlot(slots.headerActions, () => {
57264
- const shareButtonProps = {
57265
- ...headerButtonPropsRef.value,
57266
- ...headerShareButtonPropsRef.value
57267
- };
57268
- const profileButtonProps = {
57269
- ...headerButtonPropsRef.value,
57270
- ...headerProfileButtonPropsRef.value
57271
- };
57272
- const closeButtonProps = {
57273
- ...headerButtonPropsRef.value,
57274
- ...headerCloseButtonPropsRef.value
57275
- };
57276
- const shareIconProps = {
57277
- ...headerIconPropsRef.value,
57278
- ...headerShareIconPropsRef.value
57279
- };
57280
- const profileIconProps = {
57281
- ...headerIconPropsRef.value,
57282
- ...headerProfileIconPropsRef.value
57283
- };
57284
- const buttons = [];
57285
- buttons.push(
57286
- /* @__PURE__ */ vue.h(UTooltip, null, {
57287
- trigger: () => /* @__PURE__ */ vue.h(
57288
- Button,
57257
+ const chat = selectedChatRef.value;
57258
+ const keyId = toKeyString(chat?.id);
57259
+ const keyTitle = toKeyString(chat?.title);
57260
+ return /* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefixRef.value}-chat-main__header` }, /* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefixRef.value}-chat-main__header-inner` }, /* @__PURE__ */ vue.h(
57261
+ "div",
57262
+ {
57263
+ class: `${mergedClsPrefixRef.value}-chat-main__header-title-wrap`
57264
+ },
57265
+ /* @__PURE__ */ vue.h(
57266
+ UText,
57267
+ {
57268
+ key: `${keyId}-${keyTitle}`,
57269
+ variant: "heading-s-bold",
57270
+ class: `${mergedClsPrefixRef.value}-chat-main__header-title`,
57271
+ theme: mergedThemeRef.value.peers.Typography,
57272
+ themeOverrides: mergedThemeRef.value.peerOverrides.Typography
57273
+ },
57274
+ {
57275
+ default: () => selectedChatRef.value?.title ?? ""
57276
+ }
57277
+ ),
57278
+ isTyping.value && /* @__PURE__ */ vue.h(
57279
+ UText,
57280
+ {
57281
+ class: [
57282
+ `${mergedClsPrefixRef.value}-chat-main__header-subtitle`,
57283
+ "typing"
57284
+ ],
57285
+ variant: "body-m-medium"
57286
+ },
57287
+ {
57288
+ default: () => typingTextRef.value ?? ""
57289
+ }
57290
+ )
57291
+ ), /* @__PURE__ */ vue.h(
57292
+ UFlex,
57293
+ {
57294
+ align: "center",
57295
+ size: "small",
57296
+ class: `${mergedClsPrefixRef.value}-chat-main__header-actions`
57297
+ },
57298
+ {
57299
+ default: () => resolveSlot(slots.headerActions, () => {
57300
+ const shareButtonProps = {
57301
+ ...headerButtonPropsRef.value,
57302
+ ...headerShareButtonPropsRef.value
57303
+ };
57304
+ const profileButtonProps = {
57305
+ ...headerButtonPropsRef.value,
57306
+ ...headerProfileButtonPropsRef.value
57307
+ };
57308
+ const closeButtonProps = {
57309
+ ...headerButtonPropsRef.value,
57310
+ ...headerCloseButtonPropsRef.value
57311
+ };
57312
+ const shareIconProps = {
57313
+ ...headerIconPropsRef.value,
57314
+ ...headerShareIconPropsRef.value
57315
+ };
57316
+ const profileIconProps = {
57317
+ ...headerIconPropsRef.value,
57318
+ ...headerProfileIconPropsRef.value
57319
+ };
57320
+ const buttons = [];
57321
+ buttons.push(
57322
+ /* @__PURE__ */ vue.h(UTooltip, null, {
57323
+ trigger: () => /* @__PURE__ */ vue.h(
57324
+ Button,
57325
+ {
57326
+ secondary: true,
57327
+ circle: true,
57328
+ size: "large",
57329
+ ...shareButtonProps,
57330
+ theme: mergedThemeRef.value.peers.Button,
57331
+ themeOverrides: mergedThemeRef.value.peerOverrides.Button,
57332
+ onClick: () => onChatShare?.value?.()
57333
+ },
57334
+ {
57335
+ default: () => /* @__PURE__ */ vue.h(
57336
+ UIcon,
57289
57337
  {
57290
- secondary: true,
57291
- circle: true,
57292
- size: "large",
57293
- ...shareButtonProps,
57294
- theme: mergedThemeRef.value.peers.Button,
57295
- themeOverrides: mergedThemeRef.value.peerOverrides.Button,
57296
- onClick: () => onChatShare?.value?.()
57338
+ size: 20,
57339
+ ...shareIconProps,
57340
+ theme: mergedThemeRef.value.peers.HeaderShareIcon,
57341
+ themeOverrides: mergedThemeRef.value.peerOverrides.HeaderShareIcon
57297
57342
  },
57298
57343
  {
57299
- default: () => /* @__PURE__ */ vue.h(
57300
- UIcon,
57301
- {
57302
- size: 20,
57303
- ...shareIconProps,
57304
- theme: mergedThemeRef.value.peers.HeaderShareIcon,
57305
- themeOverrides: mergedThemeRef.value.peerOverrides.HeaderShareIcon
57306
- },
57307
- {
57308
- default: () => /* @__PURE__ */ vue.h(ArrowHookUpRight, null)
57309
- }
57310
- )
57344
+ default: () => /* @__PURE__ */ vue.h(ArrowHookUpRight, null)
57311
57345
  }
57312
- ),
57313
- default: () => shareButtonTooltipRef.value
57314
- })
57315
- );
57316
- buttons.push(
57317
- /* @__PURE__ */ vue.h(UTooltip, null, {
57318
- trigger: () => /* @__PURE__ */ vue.h(
57319
- Button,
57346
+ )
57347
+ }
57348
+ ),
57349
+ default: () => shareButtonTooltipRef.value
57350
+ })
57351
+ );
57352
+ buttons.push(
57353
+ /* @__PURE__ */ vue.h(UTooltip, null, {
57354
+ trigger: () => /* @__PURE__ */ vue.h(
57355
+ Button,
57356
+ {
57357
+ secondary: true,
57358
+ circle: true,
57359
+ size: "large",
57360
+ ...profileButtonProps,
57361
+ theme: mergedThemeRef.value.peers.Button,
57362
+ themeOverrides: mergedThemeRef.value.peerOverrides.Button,
57363
+ onClick: () => onUserProfile?.value?.()
57364
+ },
57365
+ {
57366
+ default: () => /* @__PURE__ */ vue.h(
57367
+ UIcon,
57320
57368
  {
57321
- secondary: true,
57322
- circle: true,
57323
- size: "large",
57324
- ...profileButtonProps,
57325
- theme: mergedThemeRef.value.peers.Button,
57326
- themeOverrides: mergedThemeRef.value.peerOverrides.Button,
57327
- onClick: () => onUserProfile?.value?.()
57369
+ size: 20,
57370
+ ...profileIconProps,
57371
+ theme: mergedThemeRef.value.peers.HeaderProfileIcon,
57372
+ themeOverrides: mergedThemeRef.value.peerOverrides.HeaderProfileIcon
57328
57373
  },
57329
57374
  {
57330
- default: () => /* @__PURE__ */ vue.h(
57331
- UIcon,
57332
- {
57333
- size: 20,
57334
- ...profileIconProps,
57335
- theme: mergedThemeRef.value.peers.HeaderProfileIcon,
57336
- themeOverrides: mergedThemeRef.value.peerOverrides.HeaderProfileIcon
57337
- },
57338
- {
57339
- default: () => /* @__PURE__ */ vue.h(PersonNote, null)
57340
- }
57341
- )
57375
+ default: () => /* @__PURE__ */ vue.h(PersonNote, null)
57342
57376
  }
57343
- ),
57344
- default: () => profileButtonTooltipRef.value
57345
- })
57346
- );
57347
- buttons.push(
57348
- /* @__PURE__ */ vue.h(
57349
- Button,
57350
- {
57351
- type: "primary",
57352
- size: "large",
57353
- round: true,
57354
- ...closeButtonProps,
57355
- theme: mergedThemeRef.value.peers.Button,
57356
- themeOverrides: mergedThemeRef.value.peerOverrides.Button,
57357
- onClick: () => onChatClose?.value?.()
57358
- },
57359
- {
57360
- default: () => closeButtonTextRef.value
57361
- }
57362
- )
57363
- );
57364
- return buttons;
57377
+ )
57378
+ }
57379
+ ),
57380
+ default: () => profileButtonTooltipRef.value
57365
57381
  })
57366
- }
57367
- ));
57382
+ );
57383
+ buttons.push(
57384
+ /* @__PURE__ */ vue.h(
57385
+ Button,
57386
+ {
57387
+ type: "primary",
57388
+ size: "large",
57389
+ round: true,
57390
+ ...closeButtonProps,
57391
+ theme: mergedThemeRef.value.peers.Button,
57392
+ themeOverrides: mergedThemeRef.value.peerOverrides.Button,
57393
+ onClick: () => onChatClose?.value?.()
57394
+ },
57395
+ {
57396
+ default: () => closeButtonTextRef.value
57397
+ }
57398
+ )
57399
+ );
57400
+ return buttons;
57401
+ })
57368
57402
  }
57369
- }));
57403
+ )));
57370
57404
  };
57371
57405
  const renderMessages = () => {
57372
57406
  return /* @__PURE__ */ vue.h(
@@ -131243,7 +131277,7 @@
131243
131277
  watermarkProps: watermarkProps
131244
131278
  });
131245
131279
 
131246
- var version = "1.14.0";
131280
+ var version = "1.14.1";
131247
131281
 
131248
131282
  function useExposeProxy(targetRef) {
131249
131283
  return new Proxy({}, {