@uzum-tech/ui 1.11.2 → 1.12.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 +10829 -6652
- package/dist/index.prod.js +4 -4
- package/es/_internal/icons/BurgerMenuIcon.d.ts +2 -0
- package/es/_internal/icons/BurgerMenuIcon.js +4 -0
- package/es/_internal/icons/Logout.d.ts +2 -0
- package/es/_internal/icons/Logout.js +4 -0
- package/es/_internal/icons/OzbekFlag.d.ts +2 -0
- package/es/_internal/icons/OzbekFlag.js +15 -0
- package/es/_internal/icons/RussiaFlag.d.ts +2 -0
- package/es/_internal/icons/RussiaFlag.js +11 -0
- package/es/_internal/icons/SendFilled.d.ts +2 -0
- package/es/_internal/icons/SendFilled.js +9 -0
- package/es/_internal/icons/index.d.ts +5 -0
- package/es/_internal/icons/index.js +5 -0
- package/es/_styles/common/dark.js +1 -1
- package/es/_styles/common/light.d.ts +1 -0
- package/es/_styles/common/light.js +1 -1
- package/es/chat/src/Chat.d.ts +464 -83
- package/es/chat/src/Chat.js +17 -2
- package/es/chat/src/ChatListItems.d.ts +497 -94
- package/es/chat/src/ChatListItems.js +1 -1
- package/es/chat/src/ChatMessages.d.ts +501 -94
- package/es/chat/src/ChatMessages.js +115 -22
- package/es/chat/src/ChatParts/MainArea.d.ts +7 -3
- package/es/chat/src/ChatParts/MainArea.js +110 -14
- package/es/chat/src/ChatParts/Sidebar.d.ts +64 -11
- package/es/chat/src/interface.d.ts +18 -0
- package/es/chat/src/interface.js +6 -0
- package/es/chat/src/styles/index.cssr.js +22 -1
- package/es/chat/styles/dark.d.ts +41 -8
- package/es/chat/styles/dark.js +6 -2
- package/es/chat/styles/light.d.ts +42 -8
- package/es/chat/styles/light.js +7 -2
- package/es/components.d.ts +3 -0
- package/es/components.js +3 -0
- package/es/config-provider/src/internal-interface.d.ts +17 -0
- package/es/dialog/src/DialogProvider.d.ts +2 -0
- package/es/form/src/FormItemCol.d.ts +2 -2
- package/es/form/src/FormItemGridItem.d.ts +2 -2
- package/es/form/src/FormItemRow.d.ts +1 -1
- package/es/grid/src/Grid.d.ts +1 -1
- package/es/grid/src/GridItem.d.ts +2 -2
- package/es/header/demos/mock.d.ts +2 -0
- package/es/header/demos/mock.js +235 -0
- package/es/header/index.d.ts +12 -0
- package/es/header/index.js +10 -0
- package/es/header/src/Header.d.ts +604 -0
- package/es/header/src/Header.js +320 -0
- package/es/header/src/HeaderActions.d.ts +120 -0
- package/es/header/src/HeaderActions.js +166 -0
- package/es/header/src/HeaderDesktopLayout.d.ts +25 -0
- package/es/header/src/HeaderDesktopLayout.js +24 -0
- package/es/header/src/HeaderMobileLayout.d.ts +25 -0
- package/es/header/src/HeaderMobileLayout.js +21 -0
- package/es/header/src/HeaderNavigation.d.ts +128 -0
- package/es/header/src/HeaderNavigation.js +172 -0
- package/es/header/src/HeaderSearchDesktop.d.ts +79 -0
- package/es/header/src/HeaderSearchDesktop.js +77 -0
- package/es/header/src/HeaderSearchMobile.d.ts +73 -0
- package/es/header/src/HeaderSearchMobile.js +126 -0
- package/es/header/src/HeaderSearchResults.d.ts +81 -0
- package/es/header/src/HeaderSearchResults.js +74 -0
- package/es/header/src/constants.d.ts +1 -0
- package/es/header/src/constants.js +1 -0
- package/es/header/src/interface.d.ts +58 -0
- package/es/header/src/interface.js +1 -0
- package/es/header/src/mobile/HeaderMobile.d.ts +218 -0
- package/es/header/src/mobile/HeaderMobile.js +241 -0
- package/es/header/src/styles/index.cssr.d.ts +6 -0
- package/es/header/src/styles/index.cssr.js +519 -0
- package/es/header/src/utils.d.ts +12 -0
- package/es/header/src/utils.js +47 -0
- package/es/header/styles/dark.d.ts +36 -0
- package/es/header/styles/dark.js +9 -0
- package/es/header/styles/index.d.ts +3 -0
- package/es/header/styles/index.js +2 -0
- package/es/header/styles/light.d.ts +72 -0
- package/es/header/styles/light.js +45 -0
- package/es/icon/src/Icon.d.ts +3 -0
- package/es/icon/src/Icon.js +3 -2
- package/es/icon-bar/index.d.ts +4 -0
- package/es/icon-bar/index.js +2 -0
- package/es/icon-bar/src/IconBar.d.ts +175 -0
- package/es/icon-bar/src/IconBar.js +57 -0
- package/es/icon-bar/src/IconBarItem.d.ts +163 -0
- package/es/icon-bar/src/IconBarItem.js +50 -0
- package/es/icon-bar/src/styles/index.cssr.d.ts +2 -0
- package/es/icon-bar/src/styles/index.cssr.js +62 -0
- package/es/icon-bar/styles/dark.d.ts +3 -0
- package/es/icon-bar/styles/dark.js +8 -0
- package/es/icon-bar/styles/index.d.ts +3 -0
- package/es/icon-bar/styles/index.js +2 -0
- package/es/icon-bar/styles/light.d.ts +19 -0
- package/es/icon-bar/styles/light.js +23 -0
- package/es/locales/common/arDZ.js +11 -1
- package/es/locales/common/deDE.js +11 -1
- package/es/locales/common/enGB.js +11 -1
- package/es/locales/common/enUS.d.ts +10 -0
- package/es/locales/common/enUS.js +11 -1
- package/es/locales/common/eo.js +11 -1
- package/es/locales/common/esAR.js +11 -1
- package/es/locales/common/faIR.js +11 -1
- package/es/locales/common/frFR.js +11 -1
- package/es/locales/common/idID.js +11 -1
- package/es/locales/common/itIT.js +11 -1
- package/es/locales/common/jaJP.js +11 -1
- package/es/locales/common/koKR.js +11 -1
- package/es/locales/common/nbNO.js +11 -1
- package/es/locales/common/nlNL.js +11 -1
- package/es/locales/common/plPL.js +11 -1
- package/es/locales/common/ptBR.js +11 -1
- package/es/locales/common/ruRU.js +11 -1
- package/es/locales/common/skSK.js +11 -1
- package/es/locales/common/svSE.js +11 -1
- package/es/locales/common/thTH.js +11 -1
- package/es/locales/common/trTR.js +11 -1
- package/es/locales/common/ukUA.js +11 -1
- package/es/locales/common/viVN.js +11 -1
- package/es/locales/common/zhCN.js +11 -1
- package/es/locales/common/zhTW.js +11 -1
- package/es/qr-code/index.d.ts +2 -0
- package/es/qr-code/index.js +1 -0
- package/es/qr-code/src/QrCode.d.ts +171 -0
- package/es/qr-code/src/QrCode.js +229 -0
- package/es/qr-code/src/qrcodegen.d.ts +95 -0
- package/es/qr-code/src/qrcodegen.js +949 -0
- package/es/qr-code/src/styles/index.cssr.d.ts +2 -0
- package/es/qr-code/src/styles/index.cssr.js +8 -0
- package/es/qr-code/styles/dark.d.ts +3 -0
- package/es/qr-code/styles/dark.js +11 -0
- package/es/qr-code/styles/index.d.ts +3 -0
- package/es/qr-code/styles/index.js +2 -0
- package/es/qr-code/styles/light.d.ts +9 -0
- package/es/qr-code/styles/light.js +12 -0
- package/es/theme-editor/src/ThemeEditor.d.ts +1 -0
- package/es/themes/dark.js +7 -1
- package/es/themes/light.js +7 -1
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/_internal/icons/BurgerMenuIcon.d.ts +2 -0
- package/lib/_internal/icons/BurgerMenuIcon.js +6 -0
- package/lib/_internal/icons/Logout.d.ts +2 -0
- package/lib/_internal/icons/Logout.js +6 -0
- package/lib/_internal/icons/OzbekFlag.d.ts +2 -0
- package/lib/_internal/icons/OzbekFlag.js +17 -0
- package/lib/_internal/icons/RussiaFlag.d.ts +2 -0
- package/lib/_internal/icons/RussiaFlag.js +13 -0
- package/lib/_internal/icons/SendFilled.d.ts +2 -0
- package/lib/_internal/icons/SendFilled.js +11 -0
- package/lib/_internal/icons/index.d.ts +5 -0
- package/lib/_internal/icons/index.js +11 -1
- package/lib/_styles/common/dark.js +1 -1
- package/lib/_styles/common/light.d.ts +1 -0
- package/lib/_styles/common/light.js +1 -1
- package/lib/chat/src/Chat.d.ts +464 -83
- package/lib/chat/src/Chat.js +17 -2
- package/lib/chat/src/ChatListItems.d.ts +497 -94
- package/lib/chat/src/ChatListItems.js +1 -1
- package/lib/chat/src/ChatMessages.d.ts +501 -94
- package/lib/chat/src/ChatMessages.js +113 -20
- package/lib/chat/src/ChatParts/MainArea.d.ts +7 -3
- package/lib/chat/src/ChatParts/MainArea.js +108 -12
- package/lib/chat/src/ChatParts/Sidebar.d.ts +64 -11
- package/lib/chat/src/interface.d.ts +18 -0
- package/lib/chat/src/interface.js +7 -1
- package/lib/chat/src/styles/index.cssr.js +22 -1
- package/lib/chat/styles/dark.d.ts +41 -8
- package/lib/chat/styles/dark.js +6 -2
- package/lib/chat/styles/light.d.ts +42 -8
- package/lib/chat/styles/light.js +7 -2
- package/lib/components.d.ts +3 -0
- package/lib/components.js +3 -0
- package/lib/config-provider/src/internal-interface.d.ts +17 -0
- package/lib/dialog/src/DialogProvider.d.ts +2 -0
- package/lib/form/src/FormItemCol.d.ts +2 -2
- package/lib/form/src/FormItemGridItem.d.ts +2 -2
- package/lib/form/src/FormItemRow.d.ts +1 -1
- package/lib/grid/src/Grid.d.ts +1 -1
- package/lib/grid/src/GridItem.d.ts +2 -2
- package/lib/header/demos/mock.d.ts +2 -0
- package/lib/header/demos/mock.js +238 -0
- package/lib/header/index.d.ts +12 -0
- package/lib/header/index.js +48 -0
- package/lib/header/src/Header.d.ts +604 -0
- package/lib/header/src/Header.js +349 -0
- package/lib/header/src/HeaderActions.d.ts +120 -0
- package/lib/header/src/HeaderActions.js +172 -0
- package/lib/header/src/HeaderDesktopLayout.d.ts +25 -0
- package/lib/header/src/HeaderDesktopLayout.js +27 -0
- package/lib/header/src/HeaderMobileLayout.d.ts +25 -0
- package/lib/header/src/HeaderMobileLayout.js +24 -0
- package/lib/header/src/HeaderNavigation.d.ts +128 -0
- package/lib/header/src/HeaderNavigation.js +175 -0
- package/lib/header/src/HeaderSearchDesktop.d.ts +79 -0
- package/lib/header/src/HeaderSearchDesktop.js +83 -0
- package/lib/header/src/HeaderSearchMobile.d.ts +73 -0
- package/lib/header/src/HeaderSearchMobile.js +132 -0
- package/lib/header/src/HeaderSearchResults.d.ts +81 -0
- package/lib/header/src/HeaderSearchResults.js +77 -0
- package/lib/header/src/constants.d.ts +1 -0
- package/lib/header/src/constants.js +4 -0
- package/lib/header/src/interface.d.ts +58 -0
- package/lib/header/src/interface.js +2 -0
- package/lib/header/src/mobile/HeaderMobile.d.ts +218 -0
- package/lib/header/src/mobile/HeaderMobile.js +244 -0
- package/lib/header/src/styles/index.cssr.d.ts +6 -0
- package/lib/header/src/styles/index.cssr.js +525 -0
- package/lib/header/src/utils.d.ts +12 -0
- package/lib/header/src/utils.js +58 -0
- package/lib/header/styles/dark.d.ts +36 -0
- package/lib/header/styles/dark.js +11 -0
- package/lib/header/styles/index.d.ts +3 -0
- package/lib/header/styles/index.js +10 -0
- package/lib/header/styles/light.d.ts +72 -0
- package/lib/header/styles/light.js +49 -0
- package/lib/icon/src/Icon.d.ts +3 -0
- package/lib/icon/src/Icon.js +3 -2
- package/lib/icon-bar/index.d.ts +4 -0
- package/lib/icon-bar/index.js +12 -0
- package/lib/icon-bar/src/IconBar.d.ts +175 -0
- package/lib/icon-bar/src/IconBar.js +63 -0
- package/lib/icon-bar/src/IconBarItem.d.ts +163 -0
- package/lib/icon-bar/src/IconBarItem.js +56 -0
- package/lib/icon-bar/src/styles/index.cssr.d.ts +2 -0
- package/lib/icon-bar/src/styles/index.cssr.js +67 -0
- package/lib/icon-bar/styles/dark.d.ts +3 -0
- package/lib/icon-bar/styles/dark.js +10 -0
- package/lib/icon-bar/styles/index.d.ts +3 -0
- package/lib/icon-bar/styles/index.js +10 -0
- package/lib/icon-bar/styles/light.d.ts +19 -0
- package/lib/icon-bar/styles/light.js +27 -0
- package/lib/locales/common/arDZ.js +11 -1
- package/lib/locales/common/deDE.js +11 -1
- package/lib/locales/common/enGB.js +11 -1
- package/lib/locales/common/enUS.d.ts +10 -0
- package/lib/locales/common/enUS.js +11 -1
- package/lib/locales/common/eo.js +11 -1
- package/lib/locales/common/esAR.js +11 -1
- package/lib/locales/common/faIR.js +11 -1
- package/lib/locales/common/frFR.js +11 -1
- package/lib/locales/common/idID.js +11 -1
- package/lib/locales/common/itIT.js +11 -1
- package/lib/locales/common/jaJP.js +11 -1
- package/lib/locales/common/koKR.js +11 -1
- package/lib/locales/common/nbNO.js +11 -1
- package/lib/locales/common/nlNL.js +11 -1
- package/lib/locales/common/plPL.js +11 -1
- package/lib/locales/common/ptBR.js +11 -1
- package/lib/locales/common/ruRU.js +11 -1
- package/lib/locales/common/skSK.js +11 -1
- package/lib/locales/common/svSE.js +11 -1
- package/lib/locales/common/thTH.js +11 -1
- package/lib/locales/common/trTR.js +11 -1
- package/lib/locales/common/ukUA.js +11 -1
- package/lib/locales/common/viVN.js +11 -1
- package/lib/locales/common/zhCN.js +11 -1
- package/lib/locales/common/zhTW.js +11 -1
- package/lib/qr-code/index.d.ts +2 -0
- package/lib/qr-code/index.js +9 -0
- package/lib/qr-code/src/QrCode.d.ts +171 -0
- package/lib/qr-code/src/QrCode.js +235 -0
- package/lib/qr-code/src/qrcodegen.d.ts +95 -0
- package/lib/qr-code/src/qrcodegen.js +950 -0
- package/lib/qr-code/src/styles/index.cssr.d.ts +2 -0
- package/lib/qr-code/src/styles/index.cssr.js +13 -0
- package/lib/qr-code/styles/dark.d.ts +3 -0
- package/lib/qr-code/styles/dark.js +13 -0
- package/lib/qr-code/styles/index.d.ts +3 -0
- package/lib/qr-code/styles/index.js +10 -0
- package/lib/qr-code/styles/light.d.ts +9 -0
- package/lib/qr-code/styles/light.js +14 -0
- package/lib/theme-editor/src/ThemeEditor.d.ts +1 -0
- package/lib/themes/dark.js +7 -1
- package/lib/themes/light.js +7 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/volar.d.ts +166 -153
- package/web-types.json +854 -2
package/es/chat/src/Chat.d.ts
CHANGED
|
@@ -119,6 +119,10 @@ export declare const chatProps: {
|
|
|
119
119
|
type: PropType<Partial<ChatPropsType["footerIconProps"]>>;
|
|
120
120
|
default: undefined;
|
|
121
121
|
};
|
|
122
|
+
footerSuffixIconProps: {
|
|
123
|
+
type: PropType<Partial<ChatPropsType["footerSuffixIconProps"]>>;
|
|
124
|
+
default: undefined;
|
|
125
|
+
};
|
|
122
126
|
emptyProps: {
|
|
123
127
|
type: PropType<Partial<ChatPropsType["emptyProps"]>>;
|
|
124
128
|
default: undefined;
|
|
@@ -175,6 +179,10 @@ export declare const chatProps: {
|
|
|
175
179
|
type: PropType<ChatPropsType["onMessageRetry"]>;
|
|
176
180
|
default: undefined;
|
|
177
181
|
};
|
|
182
|
+
bubbleActions: {
|
|
183
|
+
type: PropType<ChatPropsType["bubbleActions"]>;
|
|
184
|
+
default: undefined;
|
|
185
|
+
};
|
|
178
186
|
onChatClose: {
|
|
179
187
|
type: PropType<() => void>;
|
|
180
188
|
default: undefined;
|
|
@@ -259,6 +267,7 @@ export declare const chatProps: {
|
|
|
259
267
|
footerBorderColor: string;
|
|
260
268
|
inputBackgroundColor: string;
|
|
261
269
|
inputBorderColor: string;
|
|
270
|
+
inputSuffixColor: string;
|
|
262
271
|
unreadNotificationBackgroundColor: string;
|
|
263
272
|
unreadNotificationTextColor: string;
|
|
264
273
|
typingIndicatorColor: string;
|
|
@@ -792,14 +801,6 @@ export declare const chatProps: {
|
|
|
792
801
|
iconSizeLarge: string;
|
|
793
802
|
rippleDuration: string;
|
|
794
803
|
}, any>;
|
|
795
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
796
|
-
color: string;
|
|
797
|
-
opacity1Depth: string;
|
|
798
|
-
opacity2Depth: string;
|
|
799
|
-
opacity3Depth: string;
|
|
800
|
-
opacity4Depth: string;
|
|
801
|
-
opacity5Depth: string;
|
|
802
|
-
}, any>;
|
|
803
804
|
List: import("../../_mixins").Theme<"List", {
|
|
804
805
|
iconSize: string;
|
|
805
806
|
iconSpace: string;
|
|
@@ -895,6 +896,46 @@ export declare const chatProps: {
|
|
|
895
896
|
codeColor: string;
|
|
896
897
|
codeBorder: string;
|
|
897
898
|
}, any>;
|
|
899
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
900
|
+
color: string;
|
|
901
|
+
opacity1Depth: string;
|
|
902
|
+
opacity2Depth: string;
|
|
903
|
+
opacity3Depth: string;
|
|
904
|
+
opacity4Depth: string;
|
|
905
|
+
opacity5Depth: string;
|
|
906
|
+
}, any>;
|
|
907
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
908
|
+
color: string;
|
|
909
|
+
opacity1Depth: string;
|
|
910
|
+
opacity2Depth: string;
|
|
911
|
+
opacity3Depth: string;
|
|
912
|
+
opacity4Depth: string;
|
|
913
|
+
opacity5Depth: string;
|
|
914
|
+
}, any>;
|
|
915
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
916
|
+
color: string;
|
|
917
|
+
opacity1Depth: string;
|
|
918
|
+
opacity2Depth: string;
|
|
919
|
+
opacity3Depth: string;
|
|
920
|
+
opacity4Depth: string;
|
|
921
|
+
opacity5Depth: string;
|
|
922
|
+
}, any>;
|
|
923
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
924
|
+
color: string;
|
|
925
|
+
opacity1Depth: string;
|
|
926
|
+
opacity2Depth: string;
|
|
927
|
+
opacity3Depth: string;
|
|
928
|
+
opacity4Depth: string;
|
|
929
|
+
opacity5Depth: string;
|
|
930
|
+
}, any>;
|
|
931
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
932
|
+
color: string;
|
|
933
|
+
opacity1Depth: string;
|
|
934
|
+
opacity2Depth: string;
|
|
935
|
+
opacity3Depth: string;
|
|
936
|
+
opacity4Depth: string;
|
|
937
|
+
opacity5Depth: string;
|
|
938
|
+
}, any>;
|
|
898
939
|
}>>;
|
|
899
940
|
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
900
941
|
backgroundColor: string;
|
|
@@ -924,6 +965,7 @@ export declare const chatProps: {
|
|
|
924
965
|
footerBorderColor: string;
|
|
925
966
|
inputBackgroundColor: string;
|
|
926
967
|
inputBorderColor: string;
|
|
968
|
+
inputSuffixColor: string;
|
|
927
969
|
unreadNotificationBackgroundColor: string;
|
|
928
970
|
unreadNotificationTextColor: string;
|
|
929
971
|
typingIndicatorColor: string;
|
|
@@ -1457,14 +1499,6 @@ export declare const chatProps: {
|
|
|
1457
1499
|
iconSizeLarge: string;
|
|
1458
1500
|
rippleDuration: string;
|
|
1459
1501
|
}, any>;
|
|
1460
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
1461
|
-
color: string;
|
|
1462
|
-
opacity1Depth: string;
|
|
1463
|
-
opacity2Depth: string;
|
|
1464
|
-
opacity3Depth: string;
|
|
1465
|
-
opacity4Depth: string;
|
|
1466
|
-
opacity5Depth: string;
|
|
1467
|
-
}, any>;
|
|
1468
1502
|
List: import("../../_mixins").Theme<"List", {
|
|
1469
1503
|
iconSize: string;
|
|
1470
1504
|
iconSpace: string;
|
|
@@ -1560,6 +1594,46 @@ export declare const chatProps: {
|
|
|
1560
1594
|
codeColor: string;
|
|
1561
1595
|
codeBorder: string;
|
|
1562
1596
|
}, any>;
|
|
1597
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
1598
|
+
color: string;
|
|
1599
|
+
opacity1Depth: string;
|
|
1600
|
+
opacity2Depth: string;
|
|
1601
|
+
opacity3Depth: string;
|
|
1602
|
+
opacity4Depth: string;
|
|
1603
|
+
opacity5Depth: string;
|
|
1604
|
+
}, any>;
|
|
1605
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
1606
|
+
color: string;
|
|
1607
|
+
opacity1Depth: string;
|
|
1608
|
+
opacity2Depth: string;
|
|
1609
|
+
opacity3Depth: string;
|
|
1610
|
+
opacity4Depth: string;
|
|
1611
|
+
opacity5Depth: string;
|
|
1612
|
+
}, any>;
|
|
1613
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
1614
|
+
color: string;
|
|
1615
|
+
opacity1Depth: string;
|
|
1616
|
+
opacity2Depth: string;
|
|
1617
|
+
opacity3Depth: string;
|
|
1618
|
+
opacity4Depth: string;
|
|
1619
|
+
opacity5Depth: string;
|
|
1620
|
+
}, any>;
|
|
1621
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
1622
|
+
color: string;
|
|
1623
|
+
opacity1Depth: string;
|
|
1624
|
+
opacity2Depth: string;
|
|
1625
|
+
opacity3Depth: string;
|
|
1626
|
+
opacity4Depth: string;
|
|
1627
|
+
opacity5Depth: string;
|
|
1628
|
+
}, any>;
|
|
1629
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
1630
|
+
color: string;
|
|
1631
|
+
opacity1Depth: string;
|
|
1632
|
+
opacity2Depth: string;
|
|
1633
|
+
opacity3Depth: string;
|
|
1634
|
+
opacity4Depth: string;
|
|
1635
|
+
opacity5Depth: string;
|
|
1636
|
+
}, any>;
|
|
1563
1637
|
}>>>;
|
|
1564
1638
|
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
1565
1639
|
backgroundColor: string;
|
|
@@ -1589,6 +1663,7 @@ export declare const chatProps: {
|
|
|
1589
1663
|
footerBorderColor: string;
|
|
1590
1664
|
inputBackgroundColor: string;
|
|
1591
1665
|
inputBorderColor: string;
|
|
1666
|
+
inputSuffixColor: string;
|
|
1592
1667
|
unreadNotificationBackgroundColor: string;
|
|
1593
1668
|
unreadNotificationTextColor: string;
|
|
1594
1669
|
typingIndicatorColor: string;
|
|
@@ -2122,14 +2197,6 @@ export declare const chatProps: {
|
|
|
2122
2197
|
iconSizeLarge: string;
|
|
2123
2198
|
rippleDuration: string;
|
|
2124
2199
|
}, any>;
|
|
2125
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
2126
|
-
color: string;
|
|
2127
|
-
opacity1Depth: string;
|
|
2128
|
-
opacity2Depth: string;
|
|
2129
|
-
opacity3Depth: string;
|
|
2130
|
-
opacity4Depth: string;
|
|
2131
|
-
opacity5Depth: string;
|
|
2132
|
-
}, any>;
|
|
2133
2200
|
List: import("../../_mixins").Theme<"List", {
|
|
2134
2201
|
iconSize: string;
|
|
2135
2202
|
iconSpace: string;
|
|
@@ -2225,6 +2292,46 @@ export declare const chatProps: {
|
|
|
2225
2292
|
codeColor: string;
|
|
2226
2293
|
codeBorder: string;
|
|
2227
2294
|
}, any>;
|
|
2295
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
2296
|
+
color: string;
|
|
2297
|
+
opacity1Depth: string;
|
|
2298
|
+
opacity2Depth: string;
|
|
2299
|
+
opacity3Depth: string;
|
|
2300
|
+
opacity4Depth: string;
|
|
2301
|
+
opacity5Depth: string;
|
|
2302
|
+
}, any>;
|
|
2303
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
2304
|
+
color: string;
|
|
2305
|
+
opacity1Depth: string;
|
|
2306
|
+
opacity2Depth: string;
|
|
2307
|
+
opacity3Depth: string;
|
|
2308
|
+
opacity4Depth: string;
|
|
2309
|
+
opacity5Depth: string;
|
|
2310
|
+
}, any>;
|
|
2311
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
2312
|
+
color: string;
|
|
2313
|
+
opacity1Depth: string;
|
|
2314
|
+
opacity2Depth: string;
|
|
2315
|
+
opacity3Depth: string;
|
|
2316
|
+
opacity4Depth: string;
|
|
2317
|
+
opacity5Depth: string;
|
|
2318
|
+
}, any>;
|
|
2319
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
2320
|
+
color: string;
|
|
2321
|
+
opacity1Depth: string;
|
|
2322
|
+
opacity2Depth: string;
|
|
2323
|
+
opacity3Depth: string;
|
|
2324
|
+
opacity4Depth: string;
|
|
2325
|
+
opacity5Depth: string;
|
|
2326
|
+
}, any>;
|
|
2327
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
2328
|
+
color: string;
|
|
2329
|
+
opacity1Depth: string;
|
|
2330
|
+
opacity2Depth: string;
|
|
2331
|
+
opacity3Depth: string;
|
|
2332
|
+
opacity4Depth: string;
|
|
2333
|
+
opacity5Depth: string;
|
|
2334
|
+
}, any>;
|
|
2228
2335
|
}>>>;
|
|
2229
2336
|
};
|
|
2230
2337
|
export type ChatProps = ExtractPublicPropTypes<typeof chatProps>;
|
|
@@ -2345,6 +2452,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2345
2452
|
type: PropType<Partial<ChatPropsType["footerIconProps"]>>;
|
|
2346
2453
|
default: undefined;
|
|
2347
2454
|
};
|
|
2455
|
+
footerSuffixIconProps: {
|
|
2456
|
+
type: PropType<Partial<ChatPropsType["footerSuffixIconProps"]>>;
|
|
2457
|
+
default: undefined;
|
|
2458
|
+
};
|
|
2348
2459
|
emptyProps: {
|
|
2349
2460
|
type: PropType<Partial<ChatPropsType["emptyProps"]>>;
|
|
2350
2461
|
default: undefined;
|
|
@@ -2401,6 +2512,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2401
2512
|
type: PropType<ChatPropsType["onMessageRetry"]>;
|
|
2402
2513
|
default: undefined;
|
|
2403
2514
|
};
|
|
2515
|
+
bubbleActions: {
|
|
2516
|
+
type: PropType<ChatPropsType["bubbleActions"]>;
|
|
2517
|
+
default: undefined;
|
|
2518
|
+
};
|
|
2404
2519
|
onChatClose: {
|
|
2405
2520
|
type: PropType<() => void>;
|
|
2406
2521
|
default: undefined;
|
|
@@ -2485,6 +2600,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2485
2600
|
footerBorderColor: string;
|
|
2486
2601
|
inputBackgroundColor: string;
|
|
2487
2602
|
inputBorderColor: string;
|
|
2603
|
+
inputSuffixColor: string;
|
|
2488
2604
|
unreadNotificationBackgroundColor: string;
|
|
2489
2605
|
unreadNotificationTextColor: string;
|
|
2490
2606
|
typingIndicatorColor: string;
|
|
@@ -3018,14 +3134,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3018
3134
|
iconSizeLarge: string;
|
|
3019
3135
|
rippleDuration: string;
|
|
3020
3136
|
}, any>;
|
|
3021
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
3022
|
-
color: string;
|
|
3023
|
-
opacity1Depth: string;
|
|
3024
|
-
opacity2Depth: string;
|
|
3025
|
-
opacity3Depth: string;
|
|
3026
|
-
opacity4Depth: string;
|
|
3027
|
-
opacity5Depth: string;
|
|
3028
|
-
}, any>;
|
|
3029
3137
|
List: import("../../_mixins").Theme<"List", {
|
|
3030
3138
|
iconSize: string;
|
|
3031
3139
|
iconSpace: string;
|
|
@@ -3121,6 +3229,46 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3121
3229
|
codeColor: string;
|
|
3122
3230
|
codeBorder: string;
|
|
3123
3231
|
}, any>;
|
|
3232
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
3233
|
+
color: string;
|
|
3234
|
+
opacity1Depth: string;
|
|
3235
|
+
opacity2Depth: string;
|
|
3236
|
+
opacity3Depth: string;
|
|
3237
|
+
opacity4Depth: string;
|
|
3238
|
+
opacity5Depth: string;
|
|
3239
|
+
}, any>;
|
|
3240
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
3241
|
+
color: string;
|
|
3242
|
+
opacity1Depth: string;
|
|
3243
|
+
opacity2Depth: string;
|
|
3244
|
+
opacity3Depth: string;
|
|
3245
|
+
opacity4Depth: string;
|
|
3246
|
+
opacity5Depth: string;
|
|
3247
|
+
}, any>;
|
|
3248
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
3249
|
+
color: string;
|
|
3250
|
+
opacity1Depth: string;
|
|
3251
|
+
opacity2Depth: string;
|
|
3252
|
+
opacity3Depth: string;
|
|
3253
|
+
opacity4Depth: string;
|
|
3254
|
+
opacity5Depth: string;
|
|
3255
|
+
}, any>;
|
|
3256
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
3257
|
+
color: string;
|
|
3258
|
+
opacity1Depth: string;
|
|
3259
|
+
opacity2Depth: string;
|
|
3260
|
+
opacity3Depth: string;
|
|
3261
|
+
opacity4Depth: string;
|
|
3262
|
+
opacity5Depth: string;
|
|
3263
|
+
}, any>;
|
|
3264
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
3265
|
+
color: string;
|
|
3266
|
+
opacity1Depth: string;
|
|
3267
|
+
opacity2Depth: string;
|
|
3268
|
+
opacity3Depth: string;
|
|
3269
|
+
opacity4Depth: string;
|
|
3270
|
+
opacity5Depth: string;
|
|
3271
|
+
}, any>;
|
|
3124
3272
|
}>>;
|
|
3125
3273
|
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
3126
3274
|
backgroundColor: string;
|
|
@@ -3150,6 +3298,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3150
3298
|
footerBorderColor: string;
|
|
3151
3299
|
inputBackgroundColor: string;
|
|
3152
3300
|
inputBorderColor: string;
|
|
3301
|
+
inputSuffixColor: string;
|
|
3153
3302
|
unreadNotificationBackgroundColor: string;
|
|
3154
3303
|
unreadNotificationTextColor: string;
|
|
3155
3304
|
typingIndicatorColor: string;
|
|
@@ -3683,14 +3832,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3683
3832
|
iconSizeLarge: string;
|
|
3684
3833
|
rippleDuration: string;
|
|
3685
3834
|
}, any>;
|
|
3686
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
3687
|
-
color: string;
|
|
3688
|
-
opacity1Depth: string;
|
|
3689
|
-
opacity2Depth: string;
|
|
3690
|
-
opacity3Depth: string;
|
|
3691
|
-
opacity4Depth: string;
|
|
3692
|
-
opacity5Depth: string;
|
|
3693
|
-
}, any>;
|
|
3694
3835
|
List: import("../../_mixins").Theme<"List", {
|
|
3695
3836
|
iconSize: string;
|
|
3696
3837
|
iconSpace: string;
|
|
@@ -3786,6 +3927,46 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3786
3927
|
codeColor: string;
|
|
3787
3928
|
codeBorder: string;
|
|
3788
3929
|
}, any>;
|
|
3930
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
3931
|
+
color: string;
|
|
3932
|
+
opacity1Depth: string;
|
|
3933
|
+
opacity2Depth: string;
|
|
3934
|
+
opacity3Depth: string;
|
|
3935
|
+
opacity4Depth: string;
|
|
3936
|
+
opacity5Depth: string;
|
|
3937
|
+
}, any>;
|
|
3938
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
3939
|
+
color: string;
|
|
3940
|
+
opacity1Depth: string;
|
|
3941
|
+
opacity2Depth: string;
|
|
3942
|
+
opacity3Depth: string;
|
|
3943
|
+
opacity4Depth: string;
|
|
3944
|
+
opacity5Depth: string;
|
|
3945
|
+
}, any>;
|
|
3946
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
3947
|
+
color: string;
|
|
3948
|
+
opacity1Depth: string;
|
|
3949
|
+
opacity2Depth: string;
|
|
3950
|
+
opacity3Depth: string;
|
|
3951
|
+
opacity4Depth: string;
|
|
3952
|
+
opacity5Depth: string;
|
|
3953
|
+
}, any>;
|
|
3954
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
3955
|
+
color: string;
|
|
3956
|
+
opacity1Depth: string;
|
|
3957
|
+
opacity2Depth: string;
|
|
3958
|
+
opacity3Depth: string;
|
|
3959
|
+
opacity4Depth: string;
|
|
3960
|
+
opacity5Depth: string;
|
|
3961
|
+
}, any>;
|
|
3962
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
3963
|
+
color: string;
|
|
3964
|
+
opacity1Depth: string;
|
|
3965
|
+
opacity2Depth: string;
|
|
3966
|
+
opacity3Depth: string;
|
|
3967
|
+
opacity4Depth: string;
|
|
3968
|
+
opacity5Depth: string;
|
|
3969
|
+
}, any>;
|
|
3789
3970
|
}>>>;
|
|
3790
3971
|
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
3791
3972
|
backgroundColor: string;
|
|
@@ -3815,6 +3996,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3815
3996
|
footerBorderColor: string;
|
|
3816
3997
|
inputBackgroundColor: string;
|
|
3817
3998
|
inputBorderColor: string;
|
|
3999
|
+
inputSuffixColor: string;
|
|
3818
4000
|
unreadNotificationBackgroundColor: string;
|
|
3819
4001
|
unreadNotificationTextColor: string;
|
|
3820
4002
|
typingIndicatorColor: string;
|
|
@@ -4348,14 +4530,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4348
4530
|
iconSizeLarge: string;
|
|
4349
4531
|
rippleDuration: string;
|
|
4350
4532
|
}, any>;
|
|
4351
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
4352
|
-
color: string;
|
|
4353
|
-
opacity1Depth: string;
|
|
4354
|
-
opacity2Depth: string;
|
|
4355
|
-
opacity3Depth: string;
|
|
4356
|
-
opacity4Depth: string;
|
|
4357
|
-
opacity5Depth: string;
|
|
4358
|
-
}, any>;
|
|
4359
4533
|
List: import("../../_mixins").Theme<"List", {
|
|
4360
4534
|
iconSize: string;
|
|
4361
4535
|
iconSpace: string;
|
|
@@ -4451,6 +4625,46 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4451
4625
|
codeColor: string;
|
|
4452
4626
|
codeBorder: string;
|
|
4453
4627
|
}, any>;
|
|
4628
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
4629
|
+
color: string;
|
|
4630
|
+
opacity1Depth: string;
|
|
4631
|
+
opacity2Depth: string;
|
|
4632
|
+
opacity3Depth: string;
|
|
4633
|
+
opacity4Depth: string;
|
|
4634
|
+
opacity5Depth: string;
|
|
4635
|
+
}, any>;
|
|
4636
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
4637
|
+
color: string;
|
|
4638
|
+
opacity1Depth: string;
|
|
4639
|
+
opacity2Depth: string;
|
|
4640
|
+
opacity3Depth: string;
|
|
4641
|
+
opacity4Depth: string;
|
|
4642
|
+
opacity5Depth: string;
|
|
4643
|
+
}, any>;
|
|
4644
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
4645
|
+
color: string;
|
|
4646
|
+
opacity1Depth: string;
|
|
4647
|
+
opacity2Depth: string;
|
|
4648
|
+
opacity3Depth: string;
|
|
4649
|
+
opacity4Depth: string;
|
|
4650
|
+
opacity5Depth: string;
|
|
4651
|
+
}, any>;
|
|
4652
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
4653
|
+
color: string;
|
|
4654
|
+
opacity1Depth: string;
|
|
4655
|
+
opacity2Depth: string;
|
|
4656
|
+
opacity3Depth: string;
|
|
4657
|
+
opacity4Depth: string;
|
|
4658
|
+
opacity5Depth: string;
|
|
4659
|
+
}, any>;
|
|
4660
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
4661
|
+
color: string;
|
|
4662
|
+
opacity1Depth: string;
|
|
4663
|
+
opacity2Depth: string;
|
|
4664
|
+
opacity3Depth: string;
|
|
4665
|
+
opacity4Depth: string;
|
|
4666
|
+
opacity5Depth: string;
|
|
4667
|
+
}, any>;
|
|
4454
4668
|
}>>>;
|
|
4455
4669
|
}, {
|
|
4456
4670
|
mergedClsPrefix: import("vue").Ref<string>;
|
|
@@ -4484,6 +4698,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4484
4698
|
footerBorderColor: string;
|
|
4485
4699
|
inputBackgroundColor: string;
|
|
4486
4700
|
inputBorderColor: string;
|
|
4701
|
+
inputSuffixColor: string;
|
|
4487
4702
|
unreadNotificationBackgroundColor: string;
|
|
4488
4703
|
unreadNotificationTextColor: string;
|
|
4489
4704
|
typingIndicatorColor: string;
|
|
@@ -5018,14 +5233,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5018
5233
|
iconSizeLarge: string;
|
|
5019
5234
|
rippleDuration: string;
|
|
5020
5235
|
}, any>;
|
|
5021
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
5022
|
-
color: string;
|
|
5023
|
-
opacity1Depth: string;
|
|
5024
|
-
opacity2Depth: string;
|
|
5025
|
-
opacity3Depth: string;
|
|
5026
|
-
opacity4Depth: string;
|
|
5027
|
-
opacity5Depth: string;
|
|
5028
|
-
}, any>;
|
|
5029
5236
|
List: import("../../_mixins").Theme<"List", {
|
|
5030
5237
|
iconSize: string;
|
|
5031
5238
|
iconSpace: string;
|
|
@@ -5121,6 +5328,46 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5121
5328
|
codeColor: string;
|
|
5122
5329
|
codeBorder: string;
|
|
5123
5330
|
}, any>;
|
|
5331
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
5332
|
+
color: string;
|
|
5333
|
+
opacity1Depth: string;
|
|
5334
|
+
opacity2Depth: string;
|
|
5335
|
+
opacity3Depth: string;
|
|
5336
|
+
opacity4Depth: string;
|
|
5337
|
+
opacity5Depth: string;
|
|
5338
|
+
}, any>;
|
|
5339
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
5340
|
+
color: string;
|
|
5341
|
+
opacity1Depth: string;
|
|
5342
|
+
opacity2Depth: string;
|
|
5343
|
+
opacity3Depth: string;
|
|
5344
|
+
opacity4Depth: string;
|
|
5345
|
+
opacity5Depth: string;
|
|
5346
|
+
}, any>;
|
|
5347
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
5348
|
+
color: string;
|
|
5349
|
+
opacity1Depth: string;
|
|
5350
|
+
opacity2Depth: string;
|
|
5351
|
+
opacity3Depth: string;
|
|
5352
|
+
opacity4Depth: string;
|
|
5353
|
+
opacity5Depth: string;
|
|
5354
|
+
}, any>;
|
|
5355
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
5356
|
+
color: string;
|
|
5357
|
+
opacity1Depth: string;
|
|
5358
|
+
opacity2Depth: string;
|
|
5359
|
+
opacity3Depth: string;
|
|
5360
|
+
opacity4Depth: string;
|
|
5361
|
+
opacity5Depth: string;
|
|
5362
|
+
}, any>;
|
|
5363
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
5364
|
+
color: string;
|
|
5365
|
+
opacity1Depth: string;
|
|
5366
|
+
opacity2Depth: string;
|
|
5367
|
+
opacity3Depth: string;
|
|
5368
|
+
opacity4Depth: string;
|
|
5369
|
+
opacity5Depth: string;
|
|
5370
|
+
}, any>;
|
|
5124
5371
|
};
|
|
5125
5372
|
peerOverrides: {
|
|
5126
5373
|
Input?: {
|
|
@@ -5340,17 +5587,37 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5340
5587
|
[x: string]: any;
|
|
5341
5588
|
} | undefined;
|
|
5342
5589
|
} | undefined;
|
|
5343
|
-
|
|
5590
|
+
List?: {
|
|
5344
5591
|
peers?: {
|
|
5345
5592
|
[x: string]: any;
|
|
5346
5593
|
} | undefined;
|
|
5347
5594
|
} | undefined;
|
|
5348
|
-
|
|
5595
|
+
Typography?: {
|
|
5349
5596
|
peers?: {
|
|
5350
5597
|
[x: string]: any;
|
|
5351
5598
|
} | undefined;
|
|
5352
5599
|
} | undefined;
|
|
5353
|
-
|
|
5600
|
+
StatusIcon?: {
|
|
5601
|
+
peers?: {
|
|
5602
|
+
[x: string]: any;
|
|
5603
|
+
} | undefined;
|
|
5604
|
+
} | undefined;
|
|
5605
|
+
FooterAttachIcon?: {
|
|
5606
|
+
peers?: {
|
|
5607
|
+
[x: string]: any;
|
|
5608
|
+
} | undefined;
|
|
5609
|
+
} | undefined;
|
|
5610
|
+
FooterSuffixIcon?: {
|
|
5611
|
+
peers?: {
|
|
5612
|
+
[x: string]: any;
|
|
5613
|
+
} | undefined;
|
|
5614
|
+
} | undefined;
|
|
5615
|
+
HeaderShareIcon?: {
|
|
5616
|
+
peers?: {
|
|
5617
|
+
[x: string]: any;
|
|
5618
|
+
} | undefined;
|
|
5619
|
+
} | undefined;
|
|
5620
|
+
HeaderProfileIcon?: {
|
|
5354
5621
|
peers?: {
|
|
5355
5622
|
[x: string]: any;
|
|
5356
5623
|
} | undefined;
|
|
@@ -5386,6 +5653,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5386
5653
|
'--u-footer-border-color': string;
|
|
5387
5654
|
'--u-input-background-color': string;
|
|
5388
5655
|
'--u-input-border-color': string;
|
|
5656
|
+
'--u-input-suffix-color': string;
|
|
5389
5657
|
'--u-unread-notification-background-color': string;
|
|
5390
5658
|
'--u-unread-notification-text-color': string;
|
|
5391
5659
|
'--u-typing-indicator-color': string;
|
|
@@ -5429,6 +5697,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5429
5697
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
5430
5698
|
renderHeader: () => JSX.Element;
|
|
5431
5699
|
renderMessages: () => JSX.Element;
|
|
5700
|
+
renderEditingBlock: () => JSX.Element | null;
|
|
5432
5701
|
renderFooter: () => JSX.Element;
|
|
5433
5702
|
messagesBodyRef: import("vue").Ref<HTMLElement | {
|
|
5434
5703
|
$el: HTMLElement;
|
|
@@ -5438,6 +5707,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5438
5707
|
handleSendMessage: () => Promise<void>;
|
|
5439
5708
|
handleMessagesScroll: (e: Event) => void;
|
|
5440
5709
|
scrollToBottom: () => void;
|
|
5710
|
+
editingMessage: import("vue").Ref<ChatMessageData | null>;
|
|
5441
5711
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
|
5442
5712
|
beforeCreate?: (() => void) | (() => void)[];
|
|
5443
5713
|
created?: (() => void) | (() => void)[];
|
|
@@ -5461,6 +5731,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5461
5731
|
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{
|
|
5462
5732
|
renderHeader: () => JSX.Element;
|
|
5463
5733
|
renderMessages: () => JSX.Element;
|
|
5734
|
+
renderEditingBlock: () => JSX.Element | null;
|
|
5464
5735
|
renderFooter: () => JSX.Element;
|
|
5465
5736
|
messagesBodyRef: import("vue").Ref<HTMLElement | {
|
|
5466
5737
|
$el: HTMLElement;
|
|
@@ -5470,6 +5741,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5470
5741
|
handleSendMessage: () => Promise<void>;
|
|
5471
5742
|
handleMessagesScroll: (e: Event) => void;
|
|
5472
5743
|
scrollToBottom: () => void;
|
|
5744
|
+
editingMessage: import("vue").Ref<ChatMessageData | null>;
|
|
5473
5745
|
}> & {} & import("vue").ComponentCustomProperties & {}) | null>;
|
|
5474
5746
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("message-retry" | "update:selectedChatId" | "message-send" | "attachment-upload" | "mark-messages-read" | "filter-change" | "footer-input-change" | "network-error" | "upload-error" | "send-error" | "chat-items-scroll-to-top" | "chat-items-scroll-to-bottom" | "messages-scroll-to-top" | "messages-scroll-to-bottom")[], "message-retry" | "update:selectedChatId" | "message-send" | "attachment-upload" | "mark-messages-read" | "filter-change" | "footer-input-change" | "network-error" | "upload-error" | "send-error" | "chat-items-scroll-to-top" | "chat-items-scroll-to-bottom" | "messages-scroll-to-top" | "messages-scroll-to-bottom", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
5475
5747
|
chatItems: {
|
|
@@ -5588,6 +5860,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5588
5860
|
type: PropType<Partial<ChatPropsType["footerIconProps"]>>;
|
|
5589
5861
|
default: undefined;
|
|
5590
5862
|
};
|
|
5863
|
+
footerSuffixIconProps: {
|
|
5864
|
+
type: PropType<Partial<ChatPropsType["footerSuffixIconProps"]>>;
|
|
5865
|
+
default: undefined;
|
|
5866
|
+
};
|
|
5591
5867
|
emptyProps: {
|
|
5592
5868
|
type: PropType<Partial<ChatPropsType["emptyProps"]>>;
|
|
5593
5869
|
default: undefined;
|
|
@@ -5644,6 +5920,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5644
5920
|
type: PropType<ChatPropsType["onMessageRetry"]>;
|
|
5645
5921
|
default: undefined;
|
|
5646
5922
|
};
|
|
5923
|
+
bubbleActions: {
|
|
5924
|
+
type: PropType<ChatPropsType["bubbleActions"]>;
|
|
5925
|
+
default: undefined;
|
|
5926
|
+
};
|
|
5647
5927
|
onChatClose: {
|
|
5648
5928
|
type: PropType<() => void>;
|
|
5649
5929
|
default: undefined;
|
|
@@ -5728,6 +6008,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5728
6008
|
footerBorderColor: string;
|
|
5729
6009
|
inputBackgroundColor: string;
|
|
5730
6010
|
inputBorderColor: string;
|
|
6011
|
+
inputSuffixColor: string;
|
|
5731
6012
|
unreadNotificationBackgroundColor: string;
|
|
5732
6013
|
unreadNotificationTextColor: string;
|
|
5733
6014
|
typingIndicatorColor: string;
|
|
@@ -6261,14 +6542,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6261
6542
|
iconSizeLarge: string;
|
|
6262
6543
|
rippleDuration: string;
|
|
6263
6544
|
}, any>;
|
|
6264
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
6265
|
-
color: string;
|
|
6266
|
-
opacity1Depth: string;
|
|
6267
|
-
opacity2Depth: string;
|
|
6268
|
-
opacity3Depth: string;
|
|
6269
|
-
opacity4Depth: string;
|
|
6270
|
-
opacity5Depth: string;
|
|
6271
|
-
}, any>;
|
|
6272
6545
|
List: import("../../_mixins").Theme<"List", {
|
|
6273
6546
|
iconSize: string;
|
|
6274
6547
|
iconSpace: string;
|
|
@@ -6364,6 +6637,46 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6364
6637
|
codeColor: string;
|
|
6365
6638
|
codeBorder: string;
|
|
6366
6639
|
}, any>;
|
|
6640
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
6641
|
+
color: string;
|
|
6642
|
+
opacity1Depth: string;
|
|
6643
|
+
opacity2Depth: string;
|
|
6644
|
+
opacity3Depth: string;
|
|
6645
|
+
opacity4Depth: string;
|
|
6646
|
+
opacity5Depth: string;
|
|
6647
|
+
}, any>;
|
|
6648
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
6649
|
+
color: string;
|
|
6650
|
+
opacity1Depth: string;
|
|
6651
|
+
opacity2Depth: string;
|
|
6652
|
+
opacity3Depth: string;
|
|
6653
|
+
opacity4Depth: string;
|
|
6654
|
+
opacity5Depth: string;
|
|
6655
|
+
}, any>;
|
|
6656
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
6657
|
+
color: string;
|
|
6658
|
+
opacity1Depth: string;
|
|
6659
|
+
opacity2Depth: string;
|
|
6660
|
+
opacity3Depth: string;
|
|
6661
|
+
opacity4Depth: string;
|
|
6662
|
+
opacity5Depth: string;
|
|
6663
|
+
}, any>;
|
|
6664
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
6665
|
+
color: string;
|
|
6666
|
+
opacity1Depth: string;
|
|
6667
|
+
opacity2Depth: string;
|
|
6668
|
+
opacity3Depth: string;
|
|
6669
|
+
opacity4Depth: string;
|
|
6670
|
+
opacity5Depth: string;
|
|
6671
|
+
}, any>;
|
|
6672
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
6673
|
+
color: string;
|
|
6674
|
+
opacity1Depth: string;
|
|
6675
|
+
opacity2Depth: string;
|
|
6676
|
+
opacity3Depth: string;
|
|
6677
|
+
opacity4Depth: string;
|
|
6678
|
+
opacity5Depth: string;
|
|
6679
|
+
}, any>;
|
|
6367
6680
|
}>>;
|
|
6368
6681
|
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
6369
6682
|
backgroundColor: string;
|
|
@@ -6393,6 +6706,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6393
6706
|
footerBorderColor: string;
|
|
6394
6707
|
inputBackgroundColor: string;
|
|
6395
6708
|
inputBorderColor: string;
|
|
6709
|
+
inputSuffixColor: string;
|
|
6396
6710
|
unreadNotificationBackgroundColor: string;
|
|
6397
6711
|
unreadNotificationTextColor: string;
|
|
6398
6712
|
typingIndicatorColor: string;
|
|
@@ -6926,14 +7240,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6926
7240
|
iconSizeLarge: string;
|
|
6927
7241
|
rippleDuration: string;
|
|
6928
7242
|
}, any>;
|
|
6929
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
6930
|
-
color: string;
|
|
6931
|
-
opacity1Depth: string;
|
|
6932
|
-
opacity2Depth: string;
|
|
6933
|
-
opacity3Depth: string;
|
|
6934
|
-
opacity4Depth: string;
|
|
6935
|
-
opacity5Depth: string;
|
|
6936
|
-
}, any>;
|
|
6937
7243
|
List: import("../../_mixins").Theme<"List", {
|
|
6938
7244
|
iconSize: string;
|
|
6939
7245
|
iconSpace: string;
|
|
@@ -7029,6 +7335,46 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7029
7335
|
codeColor: string;
|
|
7030
7336
|
codeBorder: string;
|
|
7031
7337
|
}, any>;
|
|
7338
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
7339
|
+
color: string;
|
|
7340
|
+
opacity1Depth: string;
|
|
7341
|
+
opacity2Depth: string;
|
|
7342
|
+
opacity3Depth: string;
|
|
7343
|
+
opacity4Depth: string;
|
|
7344
|
+
opacity5Depth: string;
|
|
7345
|
+
}, any>;
|
|
7346
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
7347
|
+
color: string;
|
|
7348
|
+
opacity1Depth: string;
|
|
7349
|
+
opacity2Depth: string;
|
|
7350
|
+
opacity3Depth: string;
|
|
7351
|
+
opacity4Depth: string;
|
|
7352
|
+
opacity5Depth: string;
|
|
7353
|
+
}, any>;
|
|
7354
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
7355
|
+
color: string;
|
|
7356
|
+
opacity1Depth: string;
|
|
7357
|
+
opacity2Depth: string;
|
|
7358
|
+
opacity3Depth: string;
|
|
7359
|
+
opacity4Depth: string;
|
|
7360
|
+
opacity5Depth: string;
|
|
7361
|
+
}, any>;
|
|
7362
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
7363
|
+
color: string;
|
|
7364
|
+
opacity1Depth: string;
|
|
7365
|
+
opacity2Depth: string;
|
|
7366
|
+
opacity3Depth: string;
|
|
7367
|
+
opacity4Depth: string;
|
|
7368
|
+
opacity5Depth: string;
|
|
7369
|
+
}, any>;
|
|
7370
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
7371
|
+
color: string;
|
|
7372
|
+
opacity1Depth: string;
|
|
7373
|
+
opacity2Depth: string;
|
|
7374
|
+
opacity3Depth: string;
|
|
7375
|
+
opacity4Depth: string;
|
|
7376
|
+
opacity5Depth: string;
|
|
7377
|
+
}, any>;
|
|
7032
7378
|
}>>>;
|
|
7033
7379
|
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
7034
7380
|
backgroundColor: string;
|
|
@@ -7058,6 +7404,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7058
7404
|
footerBorderColor: string;
|
|
7059
7405
|
inputBackgroundColor: string;
|
|
7060
7406
|
inputBorderColor: string;
|
|
7407
|
+
inputSuffixColor: string;
|
|
7061
7408
|
unreadNotificationBackgroundColor: string;
|
|
7062
7409
|
unreadNotificationTextColor: string;
|
|
7063
7410
|
typingIndicatorColor: string;
|
|
@@ -7591,14 +7938,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7591
7938
|
iconSizeLarge: string;
|
|
7592
7939
|
rippleDuration: string;
|
|
7593
7940
|
}, any>;
|
|
7594
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
7595
|
-
color: string;
|
|
7596
|
-
opacity1Depth: string;
|
|
7597
|
-
opacity2Depth: string;
|
|
7598
|
-
opacity3Depth: string;
|
|
7599
|
-
opacity4Depth: string;
|
|
7600
|
-
opacity5Depth: string;
|
|
7601
|
-
}, any>;
|
|
7602
7941
|
List: import("../../_mixins").Theme<"List", {
|
|
7603
7942
|
iconSize: string;
|
|
7604
7943
|
iconSpace: string;
|
|
@@ -7694,6 +8033,46 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7694
8033
|
codeColor: string;
|
|
7695
8034
|
codeBorder: string;
|
|
7696
8035
|
}, any>;
|
|
8036
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
8037
|
+
color: string;
|
|
8038
|
+
opacity1Depth: string;
|
|
8039
|
+
opacity2Depth: string;
|
|
8040
|
+
opacity3Depth: string;
|
|
8041
|
+
opacity4Depth: string;
|
|
8042
|
+
opacity5Depth: string;
|
|
8043
|
+
}, any>;
|
|
8044
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
8045
|
+
color: string;
|
|
8046
|
+
opacity1Depth: string;
|
|
8047
|
+
opacity2Depth: string;
|
|
8048
|
+
opacity3Depth: string;
|
|
8049
|
+
opacity4Depth: string;
|
|
8050
|
+
opacity5Depth: string;
|
|
8051
|
+
}, any>;
|
|
8052
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
8053
|
+
color: string;
|
|
8054
|
+
opacity1Depth: string;
|
|
8055
|
+
opacity2Depth: string;
|
|
8056
|
+
opacity3Depth: string;
|
|
8057
|
+
opacity4Depth: string;
|
|
8058
|
+
opacity5Depth: string;
|
|
8059
|
+
}, any>;
|
|
8060
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
8061
|
+
color: string;
|
|
8062
|
+
opacity1Depth: string;
|
|
8063
|
+
opacity2Depth: string;
|
|
8064
|
+
opacity3Depth: string;
|
|
8065
|
+
opacity4Depth: string;
|
|
8066
|
+
opacity5Depth: string;
|
|
8067
|
+
}, any>;
|
|
8068
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
8069
|
+
color: string;
|
|
8070
|
+
opacity1Depth: string;
|
|
8071
|
+
opacity2Depth: string;
|
|
8072
|
+
opacity3Depth: string;
|
|
8073
|
+
opacity4Depth: string;
|
|
8074
|
+
opacity5Depth: string;
|
|
8075
|
+
}, any>;
|
|
7697
8076
|
}>>>;
|
|
7698
8077
|
}>> & {
|
|
7699
8078
|
"onMessage-retry"?: ((...args: any[]) => any) | undefined;
|
|
@@ -7728,6 +8107,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7728
8107
|
onChatItemsScrollToBottom: () => void;
|
|
7729
8108
|
messages: ChatMessageData[] | undefined;
|
|
7730
8109
|
onMessageRetry: ((message: ChatMessageData) => void) | undefined;
|
|
8110
|
+
bubbleActions: import("./interface").ChatBubbleAction[] | undefined;
|
|
7731
8111
|
onAttachmentUpload: import("./interface").OnAttachmentUpload | undefined;
|
|
7732
8112
|
onChatClose: () => void;
|
|
7733
8113
|
onChatShare: () => void;
|
|
@@ -7758,6 +8138,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7758
8138
|
footerUploadProps: Partial<Partial<import("../..").UploadProps> | undefined>;
|
|
7759
8139
|
footerUploadTriggerProps: any;
|
|
7760
8140
|
footerIconProps: Partial<Partial<import("../..").IconProps> | undefined>;
|
|
8141
|
+
footerSuffixIconProps: Partial<Partial<import("../..").IconProps> | undefined>;
|
|
7761
8142
|
chatItemsLoading: boolean | undefined;
|
|
7762
8143
|
chatItemsLoadingCount: number | undefined;
|
|
7763
8144
|
messagesLoading: boolean | undefined;
|