@uzum-tech/ui 1.8.1 → 1.9.0
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.
- package/dist/index.js +847 -249
- package/dist/index.prod.js +3 -3
- package/es/_internal/scrollbar/src/Scrollbar.d.ts +119 -17
- package/es/_internal/scrollbar/src/Scrollbar.js +121 -68
- package/es/_internal/scrollbar/src/styles/index.cssr.js +32 -15
- package/es/_internal/scrollbar/styles/common.d.ts +7 -0
- package/es/_internal/scrollbar/styles/common.js +7 -0
- package/es/_internal/scrollbar/styles/light.d.ts +8 -0
- package/es/_internal/scrollbar/styles/light.js +3 -5
- package/es/_internal/select-menu/src/SelectMenu.d.ts +57 -1
- package/es/_internal/select-menu/styles/light.d.ts +8 -0
- package/es/_internal/selection/src/Selection.d.ts +3 -1
- package/es/_internal/selection/src/Selection.js +3 -1
- package/es/_utils/css/index.d.ts +1 -0
- package/es/_utils/css/index.js +1 -0
- package/es/_utils/css/rtl-inset.d.ts +1 -0
- package/es/_utils/css/rtl-inset.js +5 -0
- package/es/_utils/index.d.ts +1 -1
- package/es/_utils/index.js +1 -1
- package/es/auto-complete/src/AutoComplete.d.ts +88 -0
- package/es/auto-complete/styles/light.d.ts +8 -0
- package/es/back-top/src/BackTop.d.ts +1 -1
- package/es/button/src/Button.d.ts +72 -0
- package/es/button/src/Button.js +13 -7
- package/es/button/src/styles/index.cssr.js +1 -2
- package/es/button/styles/light.d.ts +8 -0
- package/es/button/styles/light.js +7 -7
- package/es/calendar/src/Calendar.d.ts +80 -0
- package/es/calendar/styles/light.d.ts +8 -0
- package/es/cascader/src/Cascader.d.ts +168 -0
- package/es/cascader/src/CascaderMenu.d.ts +24 -0
- package/es/cascader/src/CascaderOption.d.ts +24 -0
- package/es/cascader/src/CascaderSelectMenu.d.ts +24 -0
- package/es/cascader/src/CascaderSubmenu.d.ts +25 -1
- package/es/cascader/styles/light.d.ts +16 -0
- package/es/chat/src/Chat.d.ts +175 -7
- package/es/chat/src/Chat.js +11 -12
- package/es/chat/src/ChatListItems.d.ts +192 -0
- package/es/chat/src/ChatListItems.js +4 -1
- package/es/chat/src/ChatMessages.d.ts +192 -0
- package/es/chat/src/styles/index.cssr.js +1 -3
- package/es/chat/styles/dark.d.ts +16 -0
- package/es/chat/styles/light.d.ts +16 -0
- package/es/color-picker/src/ColorInputUnit.d.ts +8 -0
- package/es/color-picker/src/ColorPicker.d.ts +72 -0
- package/es/color-picker/styles/light.d.ts +8 -0
- package/es/components.d.ts +2 -0
- package/es/components.js +2 -0
- package/es/data-table/src/DataTable.d.ts +240 -0
- package/es/data-table/src/HeaderButton/FilterButton.d.ts +48 -0
- package/es/data-table/src/HeaderButton/FilterMenu.d.ts +48 -0
- package/es/data-table/src/TableParts/Body.d.ts +49 -1
- package/es/data-table/src/TableParts/Header.d.ts +48 -0
- package/es/data-table/src/interface.d.ts +96 -0
- package/es/data-table/styles/light.d.ts +32 -0
- package/es/date-picker/src/DatePicker.d.ts +339 -3
- package/es/date-picker/src/panel/date.d.ts +49 -1
- package/es/date-picker/src/panel/daterange.d.ts +50 -2
- package/es/date-picker/src/panel/datetime.d.ts +49 -1
- package/es/date-picker/src/panel/datetimerange.d.ts +50 -2
- package/es/date-picker/src/panel/panelMonth.d.ts +98 -2
- package/es/date-picker/src/panel/panelMonthContent.d.ts +49 -1
- package/es/date-picker/src/panel/panelYear.d.ts +98 -2
- package/es/date-picker/src/panel/panelYearContent.d.ts +49 -1
- package/es/date-picker/src/panel/use-calendar.d.ts +48 -0
- package/es/date-picker/src/panel/use-dual-calendar.d.ts +48 -0
- package/es/date-picker/src/panel/use-panel-common.d.ts +48 -0
- package/es/date-picker/styles/light.d.ts +32 -0
- package/es/dialog/src/Dialog.d.ts +56 -0
- package/es/dialog/src/DialogProvider.d.ts +18 -2
- package/es/dialog/styles/light.d.ts +8 -0
- package/es/drawer/src/Drawer.d.ts +81 -1
- package/es/drawer/src/DrawerBodyWrapper.d.ts +9 -1
- package/es/drawer/src/DrawerContent.d.ts +8 -0
- package/es/drawer/styles/light.d.ts +8 -0
- package/es/dropdown/src/Dropdown.d.ts +1 -1
- package/es/dynamic-input/src/DynamicInput.d.ts +80 -0
- package/es/dynamic-input/src/InputPreset.d.ts +8 -0
- package/es/dynamic-input/src/PairPreset.d.ts +8 -0
- package/es/dynamic-input/styles/light.d.ts +8 -0
- package/es/dynamic-tags/src/DynamicTags.d.ts +80 -0
- package/es/dynamic-tags/styles/light.d.ts +8 -0
- package/es/infinite-scroll/index.d.ts +2 -0
- package/es/infinite-scroll/index.js +1 -0
- package/es/infinite-scroll/src/InfiniteScroll.d.ts +45 -0
- package/es/infinite-scroll/src/InfiniteScroll.js +78 -0
- package/es/input-number/src/InputNumber.d.ts +80 -0
- package/es/input-number/styles/light.d.ts +8 -0
- package/es/layout/src/Layout.d.ts +112 -0
- package/es/layout/src/LayoutContent.d.ts +56 -0
- package/es/layout/src/LayoutFooter.d.ts +72 -0
- package/es/layout/src/LayoutHeader.d.ts +48 -0
- package/es/layout/src/LayoutSider.d.ts +56 -0
- package/es/layout/styles/light.d.ts +8 -0
- package/es/legacy-transfer/src/Transfer.d.ts +160 -0
- package/es/legacy-transfer/src/TransferFilter.d.ts +16 -0
- package/es/legacy-transfer/src/TransferList.d.ts +17 -1
- package/es/legacy-transfer/src/TransferListItem.d.ts +16 -0
- package/es/legacy-transfer/styles/light.d.ts +16 -0
- package/es/log/src/Log.d.ts +80 -0
- package/es/log/styles/light.d.ts +8 -0
- package/es/mention/src/Mention.d.ts +88 -0
- package/es/mention/styles/light.d.ts +8 -0
- package/es/menu/src/Menu.d.ts +1 -1
- package/es/modal/src/BodyWrapper.d.ts +25 -1
- package/es/modal/src/Modal.d.ts +145 -1
- package/es/modal/styles/light.d.ts +16 -0
- package/es/notification/src/Notification.d.ts +5 -0
- package/es/notification/src/Notification.js +16 -6
- package/es/notification/src/NotificationContainer.d.ts +20 -0
- package/es/notification/src/NotificationProvider.d.ts +180 -0
- package/es/notification/src/styles/index.cssr.js +12 -8
- package/es/notification/styles/light.d.ts +32 -0
- package/es/notification/styles/light.js +9 -8
- package/es/pagination/src/Pagination.d.ts +176 -0
- package/es/pagination/styles/light.d.ts +16 -0
- package/es/popconfirm/src/Popconfirm.d.ts +80 -0
- package/es/popconfirm/styles/light.d.ts +8 -0
- package/es/popselect/src/Popselect.d.ts +88 -0
- package/es/popselect/src/PopselectPanel.d.ts +16 -0
- package/es/popselect/styles/light.d.ts +8 -0
- package/es/scrollbar/src/Scrollbar.d.ts +72 -0
- package/es/select/src/Select.d.ts +88 -0
- package/es/select/styles/light.d.ts +8 -0
- package/es/time-picker/src/Panel.d.ts +16 -0
- package/es/time-picker/src/TimePicker.d.ts +160 -0
- package/es/time-picker/styles/light.d.ts +16 -0
- package/es/transfer/src/Transfer.d.ts +160 -0
- package/es/transfer/src/TransferFilter.d.ts +16 -0
- package/es/transfer/src/TransferList.d.ts +17 -1
- package/es/transfer/src/TransferListItem.d.ts +16 -0
- package/es/transfer/styles/light.d.ts +16 -0
- package/es/tree/src/Tree.d.ts +82 -2
- package/es/tree/src/TreeNodeCheckbox.d.ts +8 -0
- package/es/tree/styles/light.d.ts +8 -0
- package/es/tree-select/src/TreeSelect.d.ts +89 -1
- package/es/tree-select/styles/light.d.ts +8 -0
- package/es/upload/src/Upload.d.ts +90 -0
- package/es/upload/src/Upload.js +2 -1
- package/es/upload/src/UploadFile.d.ts +9 -0
- package/es/upload/src/UploadProgress.d.ts +9 -0
- package/es/upload/src/styles/index.cssr.js +1 -0
- package/es/upload/src/useUploadActionsRender.js +5 -1
- package/es/upload/styles/light.d.ts +10 -0
- package/es/upload/styles/light.js +6 -5
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/es/virtual-list/index.d.ts +2 -0
- package/es/virtual-list/index.js +1 -0
- package/es/virtual-list/src/VirtualList.d.ts +146 -0
- package/es/virtual-list/src/VirtualList.js +103 -0
- package/lib/_internal/scrollbar/src/Scrollbar.d.ts +119 -17
- package/lib/_internal/scrollbar/src/Scrollbar.js +118 -65
- package/lib/_internal/scrollbar/src/styles/index.cssr.js +32 -15
- package/lib/_internal/scrollbar/styles/common.d.ts +7 -0
- package/lib/_internal/scrollbar/styles/common.js +10 -0
- package/lib/_internal/scrollbar/styles/light.d.ts +8 -0
- package/lib/_internal/scrollbar/styles/light.js +3 -5
- package/lib/_internal/select-menu/src/SelectMenu.d.ts +57 -1
- package/lib/_internal/select-menu/styles/light.d.ts +8 -0
- package/lib/_internal/selection/src/Selection.d.ts +3 -1
- package/lib/_internal/selection/src/Selection.js +3 -1
- package/lib/_utils/css/index.d.ts +1 -0
- package/lib/_utils/css/index.js +3 -1
- package/lib/_utils/css/rtl-inset.d.ts +1 -0
- package/lib/_utils/css/rtl-inset.js +8 -0
- package/lib/_utils/index.d.ts +1 -1
- package/lib/_utils/index.js +2 -1
- package/lib/auto-complete/src/AutoComplete.d.ts +88 -0
- package/lib/auto-complete/styles/light.d.ts +8 -0
- package/lib/back-top/src/BackTop.d.ts +1 -1
- package/lib/button/src/Button.d.ts +72 -0
- package/lib/button/src/Button.js +13 -7
- package/lib/button/src/styles/index.cssr.js +1 -2
- package/lib/button/styles/light.d.ts +8 -0
- package/lib/button/styles/light.js +7 -7
- package/lib/calendar/src/Calendar.d.ts +80 -0
- package/lib/calendar/styles/light.d.ts +8 -0
- package/lib/cascader/src/Cascader.d.ts +168 -0
- package/lib/cascader/src/CascaderMenu.d.ts +24 -0
- package/lib/cascader/src/CascaderOption.d.ts +24 -0
- package/lib/cascader/src/CascaderSelectMenu.d.ts +24 -0
- package/lib/cascader/src/CascaderSubmenu.d.ts +25 -1
- package/lib/cascader/styles/light.d.ts +16 -0
- package/lib/chat/src/Chat.d.ts +175 -7
- package/lib/chat/src/Chat.js +11 -12
- package/lib/chat/src/ChatListItems.d.ts +192 -0
- package/lib/chat/src/ChatListItems.js +4 -1
- package/lib/chat/src/ChatMessages.d.ts +192 -0
- package/lib/chat/src/styles/index.cssr.js +1 -3
- package/lib/chat/styles/dark.d.ts +16 -0
- package/lib/chat/styles/light.d.ts +16 -0
- package/lib/color-picker/src/ColorInputUnit.d.ts +8 -0
- package/lib/color-picker/src/ColorPicker.d.ts +72 -0
- package/lib/color-picker/styles/light.d.ts +8 -0
- package/lib/components.d.ts +2 -0
- package/lib/components.js +2 -0
- package/lib/data-table/src/DataTable.d.ts +240 -0
- package/lib/data-table/src/HeaderButton/FilterButton.d.ts +48 -0
- package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +48 -0
- package/lib/data-table/src/TableParts/Body.d.ts +49 -1
- package/lib/data-table/src/TableParts/Header.d.ts +48 -0
- package/lib/data-table/src/interface.d.ts +96 -0
- package/lib/data-table/styles/light.d.ts +32 -0
- package/lib/date-picker/src/DatePicker.d.ts +339 -3
- package/lib/date-picker/src/panel/date.d.ts +49 -1
- package/lib/date-picker/src/panel/daterange.d.ts +50 -2
- package/lib/date-picker/src/panel/datetime.d.ts +49 -1
- package/lib/date-picker/src/panel/datetimerange.d.ts +50 -2
- package/lib/date-picker/src/panel/panelMonth.d.ts +98 -2
- package/lib/date-picker/src/panel/panelMonthContent.d.ts +49 -1
- package/lib/date-picker/src/panel/panelYear.d.ts +98 -2
- package/lib/date-picker/src/panel/panelYearContent.d.ts +49 -1
- package/lib/date-picker/src/panel/use-calendar.d.ts +48 -0
- package/lib/date-picker/src/panel/use-dual-calendar.d.ts +48 -0
- package/lib/date-picker/src/panel/use-panel-common.d.ts +48 -0
- package/lib/date-picker/styles/light.d.ts +32 -0
- package/lib/dialog/src/Dialog.d.ts +56 -0
- package/lib/dialog/src/DialogProvider.d.ts +18 -2
- package/lib/dialog/styles/light.d.ts +8 -0
- package/lib/drawer/src/Drawer.d.ts +81 -1
- package/lib/drawer/src/DrawerBodyWrapper.d.ts +9 -1
- package/lib/drawer/src/DrawerContent.d.ts +8 -0
- package/lib/drawer/styles/light.d.ts +8 -0
- package/lib/dropdown/src/Dropdown.d.ts +1 -1
- package/lib/dynamic-input/src/DynamicInput.d.ts +80 -0
- package/lib/dynamic-input/src/InputPreset.d.ts +8 -0
- package/lib/dynamic-input/src/PairPreset.d.ts +8 -0
- package/lib/dynamic-input/styles/light.d.ts +8 -0
- package/lib/dynamic-tags/src/DynamicTags.d.ts +80 -0
- package/lib/dynamic-tags/styles/light.d.ts +8 -0
- package/lib/infinite-scroll/index.d.ts +2 -0
- package/lib/infinite-scroll/index.js +9 -0
- package/lib/infinite-scroll/src/InfiniteScroll.d.ts +45 -0
- package/lib/infinite-scroll/src/InfiniteScroll.js +81 -0
- package/lib/input-number/src/InputNumber.d.ts +80 -0
- package/lib/input-number/styles/light.d.ts +8 -0
- package/lib/layout/src/Layout.d.ts +112 -0
- package/lib/layout/src/LayoutContent.d.ts +56 -0
- package/lib/layout/src/LayoutFooter.d.ts +72 -0
- package/lib/layout/src/LayoutHeader.d.ts +48 -0
- package/lib/layout/src/LayoutSider.d.ts +56 -0
- package/lib/layout/styles/light.d.ts +8 -0
- package/lib/legacy-transfer/src/Transfer.d.ts +160 -0
- package/lib/legacy-transfer/src/TransferFilter.d.ts +16 -0
- package/lib/legacy-transfer/src/TransferList.d.ts +17 -1
- package/lib/legacy-transfer/src/TransferListItem.d.ts +16 -0
- package/lib/legacy-transfer/styles/light.d.ts +16 -0
- package/lib/log/src/Log.d.ts +80 -0
- package/lib/log/styles/light.d.ts +8 -0
- package/lib/mention/src/Mention.d.ts +88 -0
- package/lib/mention/styles/light.d.ts +8 -0
- package/lib/menu/src/Menu.d.ts +1 -1
- package/lib/modal/src/BodyWrapper.d.ts +25 -1
- package/lib/modal/src/Modal.d.ts +145 -1
- package/lib/modal/styles/light.d.ts +16 -0
- package/lib/notification/src/Notification.d.ts +5 -0
- package/lib/notification/src/Notification.js +14 -4
- package/lib/notification/src/NotificationContainer.d.ts +20 -0
- package/lib/notification/src/NotificationProvider.d.ts +180 -0
- package/lib/notification/src/styles/index.cssr.js +12 -8
- package/lib/notification/styles/light.d.ts +32 -0
- package/lib/notification/styles/light.js +9 -8
- package/lib/pagination/src/Pagination.d.ts +176 -0
- package/lib/pagination/styles/light.d.ts +16 -0
- package/lib/popconfirm/src/Popconfirm.d.ts +80 -0
- package/lib/popconfirm/styles/light.d.ts +8 -0
- package/lib/popselect/src/Popselect.d.ts +88 -0
- package/lib/popselect/src/PopselectPanel.d.ts +16 -0
- package/lib/popselect/styles/light.d.ts +8 -0
- package/lib/scrollbar/src/Scrollbar.d.ts +72 -0
- package/lib/select/src/Select.d.ts +88 -0
- package/lib/select/styles/light.d.ts +8 -0
- package/lib/time-picker/src/Panel.d.ts +16 -0
- package/lib/time-picker/src/TimePicker.d.ts +160 -0
- package/lib/time-picker/styles/light.d.ts +16 -0
- package/lib/transfer/src/Transfer.d.ts +160 -0
- package/lib/transfer/src/TransferFilter.d.ts +16 -0
- package/lib/transfer/src/TransferList.d.ts +17 -1
- package/lib/transfer/src/TransferListItem.d.ts +16 -0
- package/lib/transfer/styles/light.d.ts +16 -0
- package/lib/tree/src/Tree.d.ts +82 -2
- package/lib/tree/src/TreeNodeCheckbox.d.ts +8 -0
- package/lib/tree/styles/light.d.ts +8 -0
- package/lib/tree-select/src/TreeSelect.d.ts +89 -1
- package/lib/tree-select/styles/light.d.ts +8 -0
- package/lib/upload/src/Upload.d.ts +90 -0
- package/lib/upload/src/Upload.js +2 -1
- package/lib/upload/src/UploadFile.d.ts +9 -0
- package/lib/upload/src/UploadProgress.d.ts +9 -0
- package/lib/upload/src/styles/index.cssr.js +1 -0
- package/lib/upload/src/useUploadActionsRender.js +5 -1
- package/lib/upload/styles/light.d.ts +10 -0
- package/lib/upload/styles/light.js +6 -5
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/lib/virtual-list/index.d.ts +2 -0
- package/lib/virtual-list/index.js +9 -0
- package/lib/virtual-list/src/VirtualList.d.ts +146 -0
- package/lib/virtual-list/src/VirtualList.js +106 -0
- package/package.json +2 -2
- package/volar.d.ts +1 -0
- package/web-types.json +33 -4
package/es/chat/src/Chat.d.ts
CHANGED
|
@@ -135,9 +135,9 @@ export declare const chatProps: {
|
|
|
135
135
|
type: PropType<ChatPropsType["messagesLoadingCount"]>;
|
|
136
136
|
default: number;
|
|
137
137
|
};
|
|
138
|
-
|
|
138
|
+
height: {
|
|
139
139
|
type: PropType<string | number>;
|
|
140
|
-
default:
|
|
140
|
+
default: number;
|
|
141
141
|
};
|
|
142
142
|
onChatSelect: {
|
|
143
143
|
type: PropType<ChatPropsType["onChatSelect"]>;
|
|
@@ -462,8 +462,16 @@ export declare const chatProps: {
|
|
|
462
462
|
loadingColor: string;
|
|
463
463
|
}, {
|
|
464
464
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
465
|
+
height: string;
|
|
466
|
+
width: string;
|
|
467
|
+
borderRadius: string;
|
|
465
468
|
color: string;
|
|
466
469
|
colorHover: string;
|
|
470
|
+
railInsetHorizontalBottom: string;
|
|
471
|
+
railInsetHorizontalTop: string;
|
|
472
|
+
railInsetVerticalRight: string;
|
|
473
|
+
railInsetVerticalLeft: string;
|
|
474
|
+
railColor: string;
|
|
467
475
|
}, any>;
|
|
468
476
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
469
477
|
iconSizeSmall: string;
|
|
@@ -538,16 +546,24 @@ export declare const chatProps: {
|
|
|
538
546
|
colorSecondary: string;
|
|
539
547
|
colorSecondaryHover: string;
|
|
540
548
|
colorSecondaryPressed: string;
|
|
549
|
+
colorSecondaryFocus: string;
|
|
550
|
+
colorSecondaryDisabled: string;
|
|
551
|
+
textColorSecondaryDisabled: string;
|
|
541
552
|
waveColorSecondary: string;
|
|
542
553
|
colorTertiary: string;
|
|
543
554
|
colorTertiaryHover: string;
|
|
544
555
|
colorTertiaryPressed: string;
|
|
556
|
+
colorTertiaryFocus: string;
|
|
545
557
|
colorTertiaryDisalbed: string;
|
|
546
558
|
waveColorTertiary: string;
|
|
547
559
|
textColorTextTertiary: string;
|
|
560
|
+
rippleColorTertiary: string;
|
|
548
561
|
colorQuaternary: string;
|
|
549
562
|
colorQuaternaryHover: string;
|
|
550
563
|
colorQuaternaryPressed: string;
|
|
564
|
+
colorQuaternaryFocus: string;
|
|
565
|
+
rippleColorQuaternary: string;
|
|
566
|
+
waveColorQuaternary: string;
|
|
551
567
|
color: string;
|
|
552
568
|
colorHover: string;
|
|
553
569
|
colorPressed: string;
|
|
@@ -1111,8 +1127,16 @@ export declare const chatProps: {
|
|
|
1111
1127
|
loadingColor: string;
|
|
1112
1128
|
}, {
|
|
1113
1129
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1130
|
+
height: string;
|
|
1131
|
+
width: string;
|
|
1132
|
+
borderRadius: string;
|
|
1114
1133
|
color: string;
|
|
1115
1134
|
colorHover: string;
|
|
1135
|
+
railInsetHorizontalBottom: string;
|
|
1136
|
+
railInsetHorizontalTop: string;
|
|
1137
|
+
railInsetVerticalRight: string;
|
|
1138
|
+
railInsetVerticalLeft: string;
|
|
1139
|
+
railColor: string;
|
|
1116
1140
|
}, any>;
|
|
1117
1141
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1118
1142
|
iconSizeSmall: string;
|
|
@@ -1187,16 +1211,24 @@ export declare const chatProps: {
|
|
|
1187
1211
|
colorSecondary: string;
|
|
1188
1212
|
colorSecondaryHover: string;
|
|
1189
1213
|
colorSecondaryPressed: string;
|
|
1214
|
+
colorSecondaryFocus: string;
|
|
1215
|
+
colorSecondaryDisabled: string;
|
|
1216
|
+
textColorSecondaryDisabled: string;
|
|
1190
1217
|
waveColorSecondary: string;
|
|
1191
1218
|
colorTertiary: string;
|
|
1192
1219
|
colorTertiaryHover: string;
|
|
1193
1220
|
colorTertiaryPressed: string;
|
|
1221
|
+
colorTertiaryFocus: string;
|
|
1194
1222
|
colorTertiaryDisalbed: string;
|
|
1195
1223
|
waveColorTertiary: string;
|
|
1196
1224
|
textColorTextTertiary: string;
|
|
1225
|
+
rippleColorTertiary: string;
|
|
1197
1226
|
colorQuaternary: string;
|
|
1198
1227
|
colorQuaternaryHover: string;
|
|
1199
1228
|
colorQuaternaryPressed: string;
|
|
1229
|
+
colorQuaternaryFocus: string;
|
|
1230
|
+
rippleColorQuaternary: string;
|
|
1231
|
+
waveColorQuaternary: string;
|
|
1200
1232
|
color: string;
|
|
1201
1233
|
colorHover: string;
|
|
1202
1234
|
colorPressed: string;
|
|
@@ -1760,8 +1792,16 @@ export declare const chatProps: {
|
|
|
1760
1792
|
loadingColor: string;
|
|
1761
1793
|
}, {
|
|
1762
1794
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1795
|
+
height: string;
|
|
1796
|
+
width: string;
|
|
1797
|
+
borderRadius: string;
|
|
1763
1798
|
color: string;
|
|
1764
1799
|
colorHover: string;
|
|
1800
|
+
railInsetHorizontalBottom: string;
|
|
1801
|
+
railInsetHorizontalTop: string;
|
|
1802
|
+
railInsetVerticalRight: string;
|
|
1803
|
+
railInsetVerticalLeft: string;
|
|
1804
|
+
railColor: string;
|
|
1765
1805
|
}, any>;
|
|
1766
1806
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1767
1807
|
iconSizeSmall: string;
|
|
@@ -1836,16 +1876,24 @@ export declare const chatProps: {
|
|
|
1836
1876
|
colorSecondary: string;
|
|
1837
1877
|
colorSecondaryHover: string;
|
|
1838
1878
|
colorSecondaryPressed: string;
|
|
1879
|
+
colorSecondaryFocus: string;
|
|
1880
|
+
colorSecondaryDisabled: string;
|
|
1881
|
+
textColorSecondaryDisabled: string;
|
|
1839
1882
|
waveColorSecondary: string;
|
|
1840
1883
|
colorTertiary: string;
|
|
1841
1884
|
colorTertiaryHover: string;
|
|
1842
1885
|
colorTertiaryPressed: string;
|
|
1886
|
+
colorTertiaryFocus: string;
|
|
1843
1887
|
colorTertiaryDisalbed: string;
|
|
1844
1888
|
waveColorTertiary: string;
|
|
1845
1889
|
textColorTextTertiary: string;
|
|
1890
|
+
rippleColorTertiary: string;
|
|
1846
1891
|
colorQuaternary: string;
|
|
1847
1892
|
colorQuaternaryHover: string;
|
|
1848
1893
|
colorQuaternaryPressed: string;
|
|
1894
|
+
colorQuaternaryFocus: string;
|
|
1895
|
+
rippleColorQuaternary: string;
|
|
1896
|
+
waveColorQuaternary: string;
|
|
1849
1897
|
color: string;
|
|
1850
1898
|
colorHover: string;
|
|
1851
1899
|
colorPressed: string;
|
|
@@ -2265,9 +2313,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2265
2313
|
type: PropType<ChatPropsType["messagesLoadingCount"]>;
|
|
2266
2314
|
default: number;
|
|
2267
2315
|
};
|
|
2268
|
-
|
|
2316
|
+
height: {
|
|
2269
2317
|
type: PropType<string | number>;
|
|
2270
|
-
default:
|
|
2318
|
+
default: number;
|
|
2271
2319
|
};
|
|
2272
2320
|
onChatSelect: {
|
|
2273
2321
|
type: PropType<ChatPropsType["onChatSelect"]>;
|
|
@@ -2592,8 +2640,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2592
2640
|
loadingColor: string;
|
|
2593
2641
|
}, {
|
|
2594
2642
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2643
|
+
height: string;
|
|
2644
|
+
width: string;
|
|
2645
|
+
borderRadius: string;
|
|
2595
2646
|
color: string;
|
|
2596
2647
|
colorHover: string;
|
|
2648
|
+
railInsetHorizontalBottom: string;
|
|
2649
|
+
railInsetHorizontalTop: string;
|
|
2650
|
+
railInsetVerticalRight: string;
|
|
2651
|
+
railInsetVerticalLeft: string;
|
|
2652
|
+
railColor: string;
|
|
2597
2653
|
}, any>;
|
|
2598
2654
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2599
2655
|
iconSizeSmall: string;
|
|
@@ -2668,16 +2724,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2668
2724
|
colorSecondary: string;
|
|
2669
2725
|
colorSecondaryHover: string;
|
|
2670
2726
|
colorSecondaryPressed: string;
|
|
2727
|
+
colorSecondaryFocus: string;
|
|
2728
|
+
colorSecondaryDisabled: string;
|
|
2729
|
+
textColorSecondaryDisabled: string;
|
|
2671
2730
|
waveColorSecondary: string;
|
|
2672
2731
|
colorTertiary: string;
|
|
2673
2732
|
colorTertiaryHover: string;
|
|
2674
2733
|
colorTertiaryPressed: string;
|
|
2734
|
+
colorTertiaryFocus: string;
|
|
2675
2735
|
colorTertiaryDisalbed: string;
|
|
2676
2736
|
waveColorTertiary: string;
|
|
2677
2737
|
textColorTextTertiary: string;
|
|
2738
|
+
rippleColorTertiary: string;
|
|
2678
2739
|
colorQuaternary: string;
|
|
2679
2740
|
colorQuaternaryHover: string;
|
|
2680
2741
|
colorQuaternaryPressed: string;
|
|
2742
|
+
colorQuaternaryFocus: string;
|
|
2743
|
+
rippleColorQuaternary: string;
|
|
2744
|
+
waveColorQuaternary: string;
|
|
2681
2745
|
color: string;
|
|
2682
2746
|
colorHover: string;
|
|
2683
2747
|
colorPressed: string;
|
|
@@ -3241,8 +3305,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3241
3305
|
loadingColor: string;
|
|
3242
3306
|
}, {
|
|
3243
3307
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
3308
|
+
height: string;
|
|
3309
|
+
width: string;
|
|
3310
|
+
borderRadius: string;
|
|
3244
3311
|
color: string;
|
|
3245
3312
|
colorHover: string;
|
|
3313
|
+
railInsetHorizontalBottom: string;
|
|
3314
|
+
railInsetHorizontalTop: string;
|
|
3315
|
+
railInsetVerticalRight: string;
|
|
3316
|
+
railInsetVerticalLeft: string;
|
|
3317
|
+
railColor: string;
|
|
3246
3318
|
}, any>;
|
|
3247
3319
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
3248
3320
|
iconSizeSmall: string;
|
|
@@ -3317,16 +3389,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3317
3389
|
colorSecondary: string;
|
|
3318
3390
|
colorSecondaryHover: string;
|
|
3319
3391
|
colorSecondaryPressed: string;
|
|
3392
|
+
colorSecondaryFocus: string;
|
|
3393
|
+
colorSecondaryDisabled: string;
|
|
3394
|
+
textColorSecondaryDisabled: string;
|
|
3320
3395
|
waveColorSecondary: string;
|
|
3321
3396
|
colorTertiary: string;
|
|
3322
3397
|
colorTertiaryHover: string;
|
|
3323
3398
|
colorTertiaryPressed: string;
|
|
3399
|
+
colorTertiaryFocus: string;
|
|
3324
3400
|
colorTertiaryDisalbed: string;
|
|
3325
3401
|
waveColorTertiary: string;
|
|
3326
3402
|
textColorTextTertiary: string;
|
|
3403
|
+
rippleColorTertiary: string;
|
|
3327
3404
|
colorQuaternary: string;
|
|
3328
3405
|
colorQuaternaryHover: string;
|
|
3329
3406
|
colorQuaternaryPressed: string;
|
|
3407
|
+
colorQuaternaryFocus: string;
|
|
3408
|
+
rippleColorQuaternary: string;
|
|
3409
|
+
waveColorQuaternary: string;
|
|
3330
3410
|
color: string;
|
|
3331
3411
|
colorHover: string;
|
|
3332
3412
|
colorPressed: string;
|
|
@@ -3890,8 +3970,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3890
3970
|
loadingColor: string;
|
|
3891
3971
|
}, {
|
|
3892
3972
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
3973
|
+
height: string;
|
|
3974
|
+
width: string;
|
|
3975
|
+
borderRadius: string;
|
|
3893
3976
|
color: string;
|
|
3894
3977
|
colorHover: string;
|
|
3978
|
+
railInsetHorizontalBottom: string;
|
|
3979
|
+
railInsetHorizontalTop: string;
|
|
3980
|
+
railInsetVerticalRight: string;
|
|
3981
|
+
railInsetVerticalLeft: string;
|
|
3982
|
+
railColor: string;
|
|
3895
3983
|
}, any>;
|
|
3896
3984
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
3897
3985
|
iconSizeSmall: string;
|
|
@@ -3966,16 +4054,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3966
4054
|
colorSecondary: string;
|
|
3967
4055
|
colorSecondaryHover: string;
|
|
3968
4056
|
colorSecondaryPressed: string;
|
|
4057
|
+
colorSecondaryFocus: string;
|
|
4058
|
+
colorSecondaryDisabled: string;
|
|
4059
|
+
textColorSecondaryDisabled: string;
|
|
3969
4060
|
waveColorSecondary: string;
|
|
3970
4061
|
colorTertiary: string;
|
|
3971
4062
|
colorTertiaryHover: string;
|
|
3972
4063
|
colorTertiaryPressed: string;
|
|
4064
|
+
colorTertiaryFocus: string;
|
|
3973
4065
|
colorTertiaryDisalbed: string;
|
|
3974
4066
|
waveColorTertiary: string;
|
|
3975
4067
|
textColorTextTertiary: string;
|
|
4068
|
+
rippleColorTertiary: string;
|
|
3976
4069
|
colorQuaternary: string;
|
|
3977
4070
|
colorQuaternaryHover: string;
|
|
3978
4071
|
colorQuaternaryPressed: string;
|
|
4072
|
+
colorQuaternaryFocus: string;
|
|
4073
|
+
rippleColorQuaternary: string;
|
|
4074
|
+
waveColorQuaternary: string;
|
|
3979
4075
|
color: string;
|
|
3980
4076
|
colorHover: string;
|
|
3981
4077
|
colorPressed: string;
|
|
@@ -4544,8 +4640,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4544
4640
|
loadingColor: string;
|
|
4545
4641
|
}, {
|
|
4546
4642
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
4643
|
+
height: string;
|
|
4644
|
+
width: string;
|
|
4645
|
+
borderRadius: string;
|
|
4547
4646
|
color: string;
|
|
4548
4647
|
colorHover: string;
|
|
4648
|
+
railInsetHorizontalBottom: string;
|
|
4649
|
+
railInsetHorizontalTop: string;
|
|
4650
|
+
railInsetVerticalRight: string;
|
|
4651
|
+
railInsetVerticalLeft: string;
|
|
4652
|
+
railColor: string;
|
|
4549
4653
|
}, any>;
|
|
4550
4654
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
4551
4655
|
iconSizeSmall: string;
|
|
@@ -4620,16 +4724,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4620
4724
|
colorSecondary: string;
|
|
4621
4725
|
colorSecondaryHover: string;
|
|
4622
4726
|
colorSecondaryPressed: string;
|
|
4727
|
+
colorSecondaryFocus: string;
|
|
4728
|
+
colorSecondaryDisabled: string;
|
|
4729
|
+
textColorSecondaryDisabled: string;
|
|
4623
4730
|
waveColorSecondary: string;
|
|
4624
4731
|
colorTertiary: string;
|
|
4625
4732
|
colorTertiaryHover: string;
|
|
4626
4733
|
colorTertiaryPressed: string;
|
|
4734
|
+
colorTertiaryFocus: string;
|
|
4627
4735
|
colorTertiaryDisalbed: string;
|
|
4628
4736
|
waveColorTertiary: string;
|
|
4629
4737
|
textColorTextTertiary: string;
|
|
4738
|
+
rippleColorTertiary: string;
|
|
4630
4739
|
colorQuaternary: string;
|
|
4631
4740
|
colorQuaternaryHover: string;
|
|
4632
4741
|
colorQuaternaryPressed: string;
|
|
4742
|
+
colorQuaternaryFocus: string;
|
|
4743
|
+
rippleColorQuaternary: string;
|
|
4744
|
+
waveColorQuaternary: string;
|
|
4633
4745
|
color: string;
|
|
4634
4746
|
colorHover: string;
|
|
4635
4747
|
colorPressed: string;
|
|
@@ -5084,8 +5196,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5084
5196
|
loadingColor: string;
|
|
5085
5197
|
}, {
|
|
5086
5198
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
5199
|
+
height: string;
|
|
5200
|
+
width: string;
|
|
5201
|
+
borderRadius: string;
|
|
5087
5202
|
color: string;
|
|
5088
5203
|
colorHover: string;
|
|
5204
|
+
railInsetHorizontalBottom: string;
|
|
5205
|
+
railInsetHorizontalTop: string;
|
|
5206
|
+
railInsetVerticalRight: string;
|
|
5207
|
+
railInsetVerticalLeft: string;
|
|
5208
|
+
railColor: string;
|
|
5089
5209
|
}, any>;
|
|
5090
5210
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
5091
5211
|
iconSizeSmall: string;
|
|
@@ -5313,9 +5433,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5313
5433
|
type: PropType<ChatPropsType["messagesLoadingCount"]>;
|
|
5314
5434
|
default: number;
|
|
5315
5435
|
};
|
|
5316
|
-
|
|
5436
|
+
height: {
|
|
5317
5437
|
type: PropType<string | number>;
|
|
5318
|
-
default:
|
|
5438
|
+
default: number;
|
|
5319
5439
|
};
|
|
5320
5440
|
onChatSelect: {
|
|
5321
5441
|
type: PropType<ChatPropsType["onChatSelect"]>;
|
|
@@ -5640,8 +5760,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5640
5760
|
loadingColor: string;
|
|
5641
5761
|
}, {
|
|
5642
5762
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
5763
|
+
height: string;
|
|
5764
|
+
width: string;
|
|
5765
|
+
borderRadius: string;
|
|
5643
5766
|
color: string;
|
|
5644
5767
|
colorHover: string;
|
|
5768
|
+
railInsetHorizontalBottom: string;
|
|
5769
|
+
railInsetHorizontalTop: string;
|
|
5770
|
+
railInsetVerticalRight: string;
|
|
5771
|
+
railInsetVerticalLeft: string;
|
|
5772
|
+
railColor: string;
|
|
5645
5773
|
}, any>;
|
|
5646
5774
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
5647
5775
|
iconSizeSmall: string;
|
|
@@ -5716,16 +5844,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5716
5844
|
colorSecondary: string;
|
|
5717
5845
|
colorSecondaryHover: string;
|
|
5718
5846
|
colorSecondaryPressed: string;
|
|
5847
|
+
colorSecondaryFocus: string;
|
|
5848
|
+
colorSecondaryDisabled: string;
|
|
5849
|
+
textColorSecondaryDisabled: string;
|
|
5719
5850
|
waveColorSecondary: string;
|
|
5720
5851
|
colorTertiary: string;
|
|
5721
5852
|
colorTertiaryHover: string;
|
|
5722
5853
|
colorTertiaryPressed: string;
|
|
5854
|
+
colorTertiaryFocus: string;
|
|
5723
5855
|
colorTertiaryDisalbed: string;
|
|
5724
5856
|
waveColorTertiary: string;
|
|
5725
5857
|
textColorTextTertiary: string;
|
|
5858
|
+
rippleColorTertiary: string;
|
|
5726
5859
|
colorQuaternary: string;
|
|
5727
5860
|
colorQuaternaryHover: string;
|
|
5728
5861
|
colorQuaternaryPressed: string;
|
|
5862
|
+
colorQuaternaryFocus: string;
|
|
5863
|
+
rippleColorQuaternary: string;
|
|
5864
|
+
waveColorQuaternary: string;
|
|
5729
5865
|
color: string;
|
|
5730
5866
|
colorHover: string;
|
|
5731
5867
|
colorPressed: string;
|
|
@@ -6289,8 +6425,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6289
6425
|
loadingColor: string;
|
|
6290
6426
|
}, {
|
|
6291
6427
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
6428
|
+
height: string;
|
|
6429
|
+
width: string;
|
|
6430
|
+
borderRadius: string;
|
|
6292
6431
|
color: string;
|
|
6293
6432
|
colorHover: string;
|
|
6433
|
+
railInsetHorizontalBottom: string;
|
|
6434
|
+
railInsetHorizontalTop: string;
|
|
6435
|
+
railInsetVerticalRight: string;
|
|
6436
|
+
railInsetVerticalLeft: string;
|
|
6437
|
+
railColor: string;
|
|
6294
6438
|
}, any>;
|
|
6295
6439
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
6296
6440
|
iconSizeSmall: string;
|
|
@@ -6365,16 +6509,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6365
6509
|
colorSecondary: string;
|
|
6366
6510
|
colorSecondaryHover: string;
|
|
6367
6511
|
colorSecondaryPressed: string;
|
|
6512
|
+
colorSecondaryFocus: string;
|
|
6513
|
+
colorSecondaryDisabled: string;
|
|
6514
|
+
textColorSecondaryDisabled: string;
|
|
6368
6515
|
waveColorSecondary: string;
|
|
6369
6516
|
colorTertiary: string;
|
|
6370
6517
|
colorTertiaryHover: string;
|
|
6371
6518
|
colorTertiaryPressed: string;
|
|
6519
|
+
colorTertiaryFocus: string;
|
|
6372
6520
|
colorTertiaryDisalbed: string;
|
|
6373
6521
|
waveColorTertiary: string;
|
|
6374
6522
|
textColorTextTertiary: string;
|
|
6523
|
+
rippleColorTertiary: string;
|
|
6375
6524
|
colorQuaternary: string;
|
|
6376
6525
|
colorQuaternaryHover: string;
|
|
6377
6526
|
colorQuaternaryPressed: string;
|
|
6527
|
+
colorQuaternaryFocus: string;
|
|
6528
|
+
rippleColorQuaternary: string;
|
|
6529
|
+
waveColorQuaternary: string;
|
|
6378
6530
|
color: string;
|
|
6379
6531
|
colorHover: string;
|
|
6380
6532
|
colorPressed: string;
|
|
@@ -6938,8 +7090,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6938
7090
|
loadingColor: string;
|
|
6939
7091
|
}, {
|
|
6940
7092
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
7093
|
+
height: string;
|
|
7094
|
+
width: string;
|
|
7095
|
+
borderRadius: string;
|
|
6941
7096
|
color: string;
|
|
6942
7097
|
colorHover: string;
|
|
7098
|
+
railInsetHorizontalBottom: string;
|
|
7099
|
+
railInsetHorizontalTop: string;
|
|
7100
|
+
railInsetVerticalRight: string;
|
|
7101
|
+
railInsetVerticalLeft: string;
|
|
7102
|
+
railColor: string;
|
|
6943
7103
|
}, any>;
|
|
6944
7104
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
6945
7105
|
iconSizeSmall: string;
|
|
@@ -7014,16 +7174,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7014
7174
|
colorSecondary: string;
|
|
7015
7175
|
colorSecondaryHover: string;
|
|
7016
7176
|
colorSecondaryPressed: string;
|
|
7177
|
+
colorSecondaryFocus: string;
|
|
7178
|
+
colorSecondaryDisabled: string;
|
|
7179
|
+
textColorSecondaryDisabled: string;
|
|
7017
7180
|
waveColorSecondary: string;
|
|
7018
7181
|
colorTertiary: string;
|
|
7019
7182
|
colorTertiaryHover: string;
|
|
7020
7183
|
colorTertiaryPressed: string;
|
|
7184
|
+
colorTertiaryFocus: string;
|
|
7021
7185
|
colorTertiaryDisalbed: string;
|
|
7022
7186
|
waveColorTertiary: string;
|
|
7023
7187
|
textColorTextTertiary: string;
|
|
7188
|
+
rippleColorTertiary: string;
|
|
7024
7189
|
colorQuaternary: string;
|
|
7025
7190
|
colorQuaternaryHover: string;
|
|
7026
7191
|
colorQuaternaryPressed: string;
|
|
7192
|
+
colorQuaternaryFocus: string;
|
|
7193
|
+
rippleColorQuaternary: string;
|
|
7194
|
+
waveColorQuaternary: string;
|
|
7027
7195
|
color: string;
|
|
7028
7196
|
colorHover: string;
|
|
7029
7197
|
colorPressed: string;
|
|
@@ -7325,7 +7493,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7325
7493
|
retryText: string | undefined;
|
|
7326
7494
|
closeButtonText: string | undefined;
|
|
7327
7495
|
unreadNotificationText: string | undefined;
|
|
7328
|
-
|
|
7496
|
+
height: string | number;
|
|
7329
7497
|
emptyProps: Partial<Partial<import("../..").EmptyProps> | undefined>;
|
|
7330
7498
|
chatItems: ChatListItemData[] | undefined;
|
|
7331
7499
|
selectedChatId: import("./interface").ChatId | undefined;
|
package/es/chat/src/Chat.js
CHANGED
|
@@ -106,9 +106,9 @@ export const chatProps = Object.assign(Object.assign({}, useTheme.props), { chat
|
|
|
106
106
|
}, messagesLoadingCount: {
|
|
107
107
|
type: Number,
|
|
108
108
|
default: 10
|
|
109
|
-
},
|
|
109
|
+
}, height: {
|
|
110
110
|
type: [String, Number],
|
|
111
|
-
default:
|
|
111
|
+
default: 800
|
|
112
112
|
}, onChatSelect: {
|
|
113
113
|
type: Function,
|
|
114
114
|
default: undefined
|
|
@@ -376,14 +376,12 @@ export default defineComponent({
|
|
|
376
376
|
var _a;
|
|
377
377
|
const { $slots } = this;
|
|
378
378
|
(_a = this.onRender) === null || _a === void 0 ? void 0 : _a.call(this);
|
|
379
|
-
const
|
|
379
|
+
const heightStyle = this.height
|
|
380
380
|
? {
|
|
381
|
-
|
|
382
|
-
? `${this.maxHeight}px`
|
|
383
|
-
: this.maxHeight
|
|
381
|
+
height: typeof this.height === 'number' ? `${this.height}px` : this.height
|
|
384
382
|
}
|
|
385
383
|
: {};
|
|
386
|
-
return (h("div", { class: [`${this.mergedClsPrefix}-chat`, this.themeClass], style: Object.assign(Object.assign({},
|
|
384
|
+
return (h("div", { class: [`${this.mergedClsPrefix}-chat`, this.themeClass], style: Object.assign(Object.assign({}, heightStyle), this.cssVars) },
|
|
387
385
|
h(UFlex, { wrap: false, size: [20, 20], style: { width: '100%' } }, {
|
|
388
386
|
default: () => (h(Fragment, null,
|
|
389
387
|
resolveSlot($slots.sidebar, () => [
|
|
@@ -392,11 +390,12 @@ export default defineComponent({
|
|
|
392
390
|
sidebarHeaderActions: $slots.sidebarHeaderActions
|
|
393
391
|
})
|
|
394
392
|
]),
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
393
|
+
this.selectedChatId &&
|
|
394
|
+
resolveSlot($slots.default, () => [
|
|
395
|
+
h(ChatMainArea, null, {
|
|
396
|
+
headerActions: $slots.headerActions
|
|
397
|
+
})
|
|
398
|
+
])))
|
|
400
399
|
})));
|
|
401
400
|
}
|
|
402
401
|
});
|