@uzum-tech/ui 1.11.1 → 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 +10830 -6653
- 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/modal-fullscreen/src/ModalFull.js +1 -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/modal-fullscreen/src/ModalFull.js +1 -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 +12 -0
- package/web-types.json +854 -2
|
@@ -77,6 +77,7 @@ export declare const chatListItemsProps: {
|
|
|
77
77
|
footerBorderColor: string;
|
|
78
78
|
inputBackgroundColor: string;
|
|
79
79
|
inputBorderColor: string;
|
|
80
|
+
inputSuffixColor: string;
|
|
80
81
|
unreadNotificationBackgroundColor: string;
|
|
81
82
|
unreadNotificationTextColor: string;
|
|
82
83
|
typingIndicatorColor: string;
|
|
@@ -610,14 +611,6 @@ export declare const chatListItemsProps: {
|
|
|
610
611
|
iconSizeLarge: string;
|
|
611
612
|
rippleDuration: string;
|
|
612
613
|
}, any>;
|
|
613
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
614
|
-
color: string;
|
|
615
|
-
opacity1Depth: string;
|
|
616
|
-
opacity2Depth: string;
|
|
617
|
-
opacity3Depth: string;
|
|
618
|
-
opacity4Depth: string;
|
|
619
|
-
opacity5Depth: string;
|
|
620
|
-
}, any>;
|
|
621
614
|
List: import("../../_mixins").Theme<"List", {
|
|
622
615
|
iconSize: string;
|
|
623
616
|
iconSpace: string;
|
|
@@ -713,6 +706,46 @@ export declare const chatListItemsProps: {
|
|
|
713
706
|
codeColor: string;
|
|
714
707
|
codeBorder: string;
|
|
715
708
|
}, any>;
|
|
709
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
710
|
+
color: string;
|
|
711
|
+
opacity1Depth: string;
|
|
712
|
+
opacity2Depth: string;
|
|
713
|
+
opacity3Depth: string;
|
|
714
|
+
opacity4Depth: string;
|
|
715
|
+
opacity5Depth: string;
|
|
716
|
+
}, any>;
|
|
717
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
718
|
+
color: string;
|
|
719
|
+
opacity1Depth: string;
|
|
720
|
+
opacity2Depth: string;
|
|
721
|
+
opacity3Depth: string;
|
|
722
|
+
opacity4Depth: string;
|
|
723
|
+
opacity5Depth: string;
|
|
724
|
+
}, any>;
|
|
725
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
726
|
+
color: string;
|
|
727
|
+
opacity1Depth: string;
|
|
728
|
+
opacity2Depth: string;
|
|
729
|
+
opacity3Depth: string;
|
|
730
|
+
opacity4Depth: string;
|
|
731
|
+
opacity5Depth: string;
|
|
732
|
+
}, any>;
|
|
733
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
734
|
+
color: string;
|
|
735
|
+
opacity1Depth: string;
|
|
736
|
+
opacity2Depth: string;
|
|
737
|
+
opacity3Depth: string;
|
|
738
|
+
opacity4Depth: string;
|
|
739
|
+
opacity5Depth: string;
|
|
740
|
+
}, any>;
|
|
741
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
742
|
+
color: string;
|
|
743
|
+
opacity1Depth: string;
|
|
744
|
+
opacity2Depth: string;
|
|
745
|
+
opacity3Depth: string;
|
|
746
|
+
opacity4Depth: string;
|
|
747
|
+
opacity5Depth: string;
|
|
748
|
+
}, any>;
|
|
716
749
|
}>>;
|
|
717
750
|
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
718
751
|
backgroundColor: string;
|
|
@@ -742,6 +775,7 @@ export declare const chatListItemsProps: {
|
|
|
742
775
|
footerBorderColor: string;
|
|
743
776
|
inputBackgroundColor: string;
|
|
744
777
|
inputBorderColor: string;
|
|
778
|
+
inputSuffixColor: string;
|
|
745
779
|
unreadNotificationBackgroundColor: string;
|
|
746
780
|
unreadNotificationTextColor: string;
|
|
747
781
|
typingIndicatorColor: string;
|
|
@@ -1275,14 +1309,6 @@ export declare const chatListItemsProps: {
|
|
|
1275
1309
|
iconSizeLarge: string;
|
|
1276
1310
|
rippleDuration: string;
|
|
1277
1311
|
}, any>;
|
|
1278
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
1279
|
-
color: string;
|
|
1280
|
-
opacity1Depth: string;
|
|
1281
|
-
opacity2Depth: string;
|
|
1282
|
-
opacity3Depth: string;
|
|
1283
|
-
opacity4Depth: string;
|
|
1284
|
-
opacity5Depth: string;
|
|
1285
|
-
}, any>;
|
|
1286
1312
|
List: import("../../_mixins").Theme<"List", {
|
|
1287
1313
|
iconSize: string;
|
|
1288
1314
|
iconSpace: string;
|
|
@@ -1378,6 +1404,46 @@ export declare const chatListItemsProps: {
|
|
|
1378
1404
|
codeColor: string;
|
|
1379
1405
|
codeBorder: string;
|
|
1380
1406
|
}, any>;
|
|
1407
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
1408
|
+
color: string;
|
|
1409
|
+
opacity1Depth: string;
|
|
1410
|
+
opacity2Depth: string;
|
|
1411
|
+
opacity3Depth: string;
|
|
1412
|
+
opacity4Depth: string;
|
|
1413
|
+
opacity5Depth: string;
|
|
1414
|
+
}, any>;
|
|
1415
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
1416
|
+
color: string;
|
|
1417
|
+
opacity1Depth: string;
|
|
1418
|
+
opacity2Depth: string;
|
|
1419
|
+
opacity3Depth: string;
|
|
1420
|
+
opacity4Depth: string;
|
|
1421
|
+
opacity5Depth: string;
|
|
1422
|
+
}, any>;
|
|
1423
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
1424
|
+
color: string;
|
|
1425
|
+
opacity1Depth: string;
|
|
1426
|
+
opacity2Depth: string;
|
|
1427
|
+
opacity3Depth: string;
|
|
1428
|
+
opacity4Depth: string;
|
|
1429
|
+
opacity5Depth: string;
|
|
1430
|
+
}, any>;
|
|
1431
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
1432
|
+
color: string;
|
|
1433
|
+
opacity1Depth: string;
|
|
1434
|
+
opacity2Depth: string;
|
|
1435
|
+
opacity3Depth: string;
|
|
1436
|
+
opacity4Depth: string;
|
|
1437
|
+
opacity5Depth: string;
|
|
1438
|
+
}, any>;
|
|
1439
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
1440
|
+
color: string;
|
|
1441
|
+
opacity1Depth: string;
|
|
1442
|
+
opacity2Depth: string;
|
|
1443
|
+
opacity3Depth: string;
|
|
1444
|
+
opacity4Depth: string;
|
|
1445
|
+
opacity5Depth: string;
|
|
1446
|
+
}, any>;
|
|
1381
1447
|
}>>>;
|
|
1382
1448
|
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
1383
1449
|
backgroundColor: string;
|
|
@@ -1407,6 +1473,7 @@ export declare const chatListItemsProps: {
|
|
|
1407
1473
|
footerBorderColor: string;
|
|
1408
1474
|
inputBackgroundColor: string;
|
|
1409
1475
|
inputBorderColor: string;
|
|
1476
|
+
inputSuffixColor: string;
|
|
1410
1477
|
unreadNotificationBackgroundColor: string;
|
|
1411
1478
|
unreadNotificationTextColor: string;
|
|
1412
1479
|
typingIndicatorColor: string;
|
|
@@ -1940,14 +2007,6 @@ export declare const chatListItemsProps: {
|
|
|
1940
2007
|
iconSizeLarge: string;
|
|
1941
2008
|
rippleDuration: string;
|
|
1942
2009
|
}, any>;
|
|
1943
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
1944
|
-
color: string;
|
|
1945
|
-
opacity1Depth: string;
|
|
1946
|
-
opacity2Depth: string;
|
|
1947
|
-
opacity3Depth: string;
|
|
1948
|
-
opacity4Depth: string;
|
|
1949
|
-
opacity5Depth: string;
|
|
1950
|
-
}, any>;
|
|
1951
2010
|
List: import("../../_mixins").Theme<"List", {
|
|
1952
2011
|
iconSize: string;
|
|
1953
2012
|
iconSpace: string;
|
|
@@ -2043,6 +2102,46 @@ export declare const chatListItemsProps: {
|
|
|
2043
2102
|
codeColor: string;
|
|
2044
2103
|
codeBorder: string;
|
|
2045
2104
|
}, any>;
|
|
2105
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
2106
|
+
color: string;
|
|
2107
|
+
opacity1Depth: string;
|
|
2108
|
+
opacity2Depth: string;
|
|
2109
|
+
opacity3Depth: string;
|
|
2110
|
+
opacity4Depth: string;
|
|
2111
|
+
opacity5Depth: string;
|
|
2112
|
+
}, any>;
|
|
2113
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
2114
|
+
color: string;
|
|
2115
|
+
opacity1Depth: string;
|
|
2116
|
+
opacity2Depth: string;
|
|
2117
|
+
opacity3Depth: string;
|
|
2118
|
+
opacity4Depth: string;
|
|
2119
|
+
opacity5Depth: string;
|
|
2120
|
+
}, any>;
|
|
2121
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
2122
|
+
color: string;
|
|
2123
|
+
opacity1Depth: string;
|
|
2124
|
+
opacity2Depth: string;
|
|
2125
|
+
opacity3Depth: string;
|
|
2126
|
+
opacity4Depth: string;
|
|
2127
|
+
opacity5Depth: string;
|
|
2128
|
+
}, any>;
|
|
2129
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
2130
|
+
color: string;
|
|
2131
|
+
opacity1Depth: string;
|
|
2132
|
+
opacity2Depth: string;
|
|
2133
|
+
opacity3Depth: string;
|
|
2134
|
+
opacity4Depth: string;
|
|
2135
|
+
opacity5Depth: string;
|
|
2136
|
+
}, any>;
|
|
2137
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
2138
|
+
color: string;
|
|
2139
|
+
opacity1Depth: string;
|
|
2140
|
+
opacity2Depth: string;
|
|
2141
|
+
opacity3Depth: string;
|
|
2142
|
+
opacity4Depth: string;
|
|
2143
|
+
opacity5Depth: string;
|
|
2144
|
+
}, any>;
|
|
2046
2145
|
}>>>;
|
|
2047
2146
|
};
|
|
2048
2147
|
export type ChatListItemsProps = ExtractPublicPropTypes<typeof chatListItemsProps>;
|
|
@@ -2119,6 +2218,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2119
2218
|
footerBorderColor: string;
|
|
2120
2219
|
inputBackgroundColor: string;
|
|
2121
2220
|
inputBorderColor: string;
|
|
2221
|
+
inputSuffixColor: string;
|
|
2122
2222
|
unreadNotificationBackgroundColor: string;
|
|
2123
2223
|
unreadNotificationTextColor: string;
|
|
2124
2224
|
typingIndicatorColor: string;
|
|
@@ -2652,14 +2752,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2652
2752
|
iconSizeLarge: string;
|
|
2653
2753
|
rippleDuration: string;
|
|
2654
2754
|
}, any>;
|
|
2655
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
2656
|
-
color: string;
|
|
2657
|
-
opacity1Depth: string;
|
|
2658
|
-
opacity2Depth: string;
|
|
2659
|
-
opacity3Depth: string;
|
|
2660
|
-
opacity4Depth: string;
|
|
2661
|
-
opacity5Depth: string;
|
|
2662
|
-
}, any>;
|
|
2663
2755
|
List: import("../../_mixins").Theme<"List", {
|
|
2664
2756
|
iconSize: string;
|
|
2665
2757
|
iconSpace: string;
|
|
@@ -2755,6 +2847,46 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2755
2847
|
codeColor: string;
|
|
2756
2848
|
codeBorder: string;
|
|
2757
2849
|
}, any>;
|
|
2850
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
2851
|
+
color: string;
|
|
2852
|
+
opacity1Depth: string;
|
|
2853
|
+
opacity2Depth: string;
|
|
2854
|
+
opacity3Depth: string;
|
|
2855
|
+
opacity4Depth: string;
|
|
2856
|
+
opacity5Depth: string;
|
|
2857
|
+
}, any>;
|
|
2858
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
2859
|
+
color: string;
|
|
2860
|
+
opacity1Depth: string;
|
|
2861
|
+
opacity2Depth: string;
|
|
2862
|
+
opacity3Depth: string;
|
|
2863
|
+
opacity4Depth: string;
|
|
2864
|
+
opacity5Depth: string;
|
|
2865
|
+
}, any>;
|
|
2866
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
2867
|
+
color: string;
|
|
2868
|
+
opacity1Depth: string;
|
|
2869
|
+
opacity2Depth: string;
|
|
2870
|
+
opacity3Depth: string;
|
|
2871
|
+
opacity4Depth: string;
|
|
2872
|
+
opacity5Depth: string;
|
|
2873
|
+
}, any>;
|
|
2874
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
2875
|
+
color: string;
|
|
2876
|
+
opacity1Depth: string;
|
|
2877
|
+
opacity2Depth: string;
|
|
2878
|
+
opacity3Depth: string;
|
|
2879
|
+
opacity4Depth: string;
|
|
2880
|
+
opacity5Depth: string;
|
|
2881
|
+
}, any>;
|
|
2882
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
2883
|
+
color: string;
|
|
2884
|
+
opacity1Depth: string;
|
|
2885
|
+
opacity2Depth: string;
|
|
2886
|
+
opacity3Depth: string;
|
|
2887
|
+
opacity4Depth: string;
|
|
2888
|
+
opacity5Depth: string;
|
|
2889
|
+
}, any>;
|
|
2758
2890
|
}>>;
|
|
2759
2891
|
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
2760
2892
|
backgroundColor: string;
|
|
@@ -2784,6 +2916,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2784
2916
|
footerBorderColor: string;
|
|
2785
2917
|
inputBackgroundColor: string;
|
|
2786
2918
|
inputBorderColor: string;
|
|
2919
|
+
inputSuffixColor: string;
|
|
2787
2920
|
unreadNotificationBackgroundColor: string;
|
|
2788
2921
|
unreadNotificationTextColor: string;
|
|
2789
2922
|
typingIndicatorColor: string;
|
|
@@ -3317,14 +3450,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3317
3450
|
iconSizeLarge: string;
|
|
3318
3451
|
rippleDuration: string;
|
|
3319
3452
|
}, any>;
|
|
3320
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
3321
|
-
color: string;
|
|
3322
|
-
opacity1Depth: string;
|
|
3323
|
-
opacity2Depth: string;
|
|
3324
|
-
opacity3Depth: string;
|
|
3325
|
-
opacity4Depth: string;
|
|
3326
|
-
opacity5Depth: string;
|
|
3327
|
-
}, any>;
|
|
3328
3453
|
List: import("../../_mixins").Theme<"List", {
|
|
3329
3454
|
iconSize: string;
|
|
3330
3455
|
iconSpace: string;
|
|
@@ -3420,6 +3545,46 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3420
3545
|
codeColor: string;
|
|
3421
3546
|
codeBorder: string;
|
|
3422
3547
|
}, any>;
|
|
3548
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
3549
|
+
color: string;
|
|
3550
|
+
opacity1Depth: string;
|
|
3551
|
+
opacity2Depth: string;
|
|
3552
|
+
opacity3Depth: string;
|
|
3553
|
+
opacity4Depth: string;
|
|
3554
|
+
opacity5Depth: string;
|
|
3555
|
+
}, any>;
|
|
3556
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
3557
|
+
color: string;
|
|
3558
|
+
opacity1Depth: string;
|
|
3559
|
+
opacity2Depth: string;
|
|
3560
|
+
opacity3Depth: string;
|
|
3561
|
+
opacity4Depth: string;
|
|
3562
|
+
opacity5Depth: string;
|
|
3563
|
+
}, any>;
|
|
3564
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
3565
|
+
color: string;
|
|
3566
|
+
opacity1Depth: string;
|
|
3567
|
+
opacity2Depth: string;
|
|
3568
|
+
opacity3Depth: string;
|
|
3569
|
+
opacity4Depth: string;
|
|
3570
|
+
opacity5Depth: string;
|
|
3571
|
+
}, any>;
|
|
3572
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
3573
|
+
color: string;
|
|
3574
|
+
opacity1Depth: string;
|
|
3575
|
+
opacity2Depth: string;
|
|
3576
|
+
opacity3Depth: string;
|
|
3577
|
+
opacity4Depth: string;
|
|
3578
|
+
opacity5Depth: string;
|
|
3579
|
+
}, any>;
|
|
3580
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
3581
|
+
color: string;
|
|
3582
|
+
opacity1Depth: string;
|
|
3583
|
+
opacity2Depth: string;
|
|
3584
|
+
opacity3Depth: string;
|
|
3585
|
+
opacity4Depth: string;
|
|
3586
|
+
opacity5Depth: string;
|
|
3587
|
+
}, any>;
|
|
3423
3588
|
}>>>;
|
|
3424
3589
|
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
3425
3590
|
backgroundColor: string;
|
|
@@ -3449,6 +3614,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3449
3614
|
footerBorderColor: string;
|
|
3450
3615
|
inputBackgroundColor: string;
|
|
3451
3616
|
inputBorderColor: string;
|
|
3617
|
+
inputSuffixColor: string;
|
|
3452
3618
|
unreadNotificationBackgroundColor: string;
|
|
3453
3619
|
unreadNotificationTextColor: string;
|
|
3454
3620
|
typingIndicatorColor: string;
|
|
@@ -3982,14 +4148,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3982
4148
|
iconSizeLarge: string;
|
|
3983
4149
|
rippleDuration: string;
|
|
3984
4150
|
}, any>;
|
|
3985
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
3986
|
-
color: string;
|
|
3987
|
-
opacity1Depth: string;
|
|
3988
|
-
opacity2Depth: string;
|
|
3989
|
-
opacity3Depth: string;
|
|
3990
|
-
opacity4Depth: string;
|
|
3991
|
-
opacity5Depth: string;
|
|
3992
|
-
}, any>;
|
|
3993
4151
|
List: import("../../_mixins").Theme<"List", {
|
|
3994
4152
|
iconSize: string;
|
|
3995
4153
|
iconSpace: string;
|
|
@@ -4085,6 +4243,46 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4085
4243
|
codeColor: string;
|
|
4086
4244
|
codeBorder: string;
|
|
4087
4245
|
}, any>;
|
|
4246
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
4247
|
+
color: string;
|
|
4248
|
+
opacity1Depth: string;
|
|
4249
|
+
opacity2Depth: string;
|
|
4250
|
+
opacity3Depth: string;
|
|
4251
|
+
opacity4Depth: string;
|
|
4252
|
+
opacity5Depth: string;
|
|
4253
|
+
}, any>;
|
|
4254
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
4255
|
+
color: string;
|
|
4256
|
+
opacity1Depth: string;
|
|
4257
|
+
opacity2Depth: string;
|
|
4258
|
+
opacity3Depth: string;
|
|
4259
|
+
opacity4Depth: string;
|
|
4260
|
+
opacity5Depth: string;
|
|
4261
|
+
}, any>;
|
|
4262
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
4263
|
+
color: string;
|
|
4264
|
+
opacity1Depth: string;
|
|
4265
|
+
opacity2Depth: string;
|
|
4266
|
+
opacity3Depth: string;
|
|
4267
|
+
opacity4Depth: string;
|
|
4268
|
+
opacity5Depth: string;
|
|
4269
|
+
}, any>;
|
|
4270
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
4271
|
+
color: string;
|
|
4272
|
+
opacity1Depth: string;
|
|
4273
|
+
opacity2Depth: string;
|
|
4274
|
+
opacity3Depth: string;
|
|
4275
|
+
opacity4Depth: string;
|
|
4276
|
+
opacity5Depth: string;
|
|
4277
|
+
}, any>;
|
|
4278
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
4279
|
+
color: string;
|
|
4280
|
+
opacity1Depth: string;
|
|
4281
|
+
opacity2Depth: string;
|
|
4282
|
+
opacity3Depth: string;
|
|
4283
|
+
opacity4Depth: string;
|
|
4284
|
+
opacity5Depth: string;
|
|
4285
|
+
}, any>;
|
|
4088
4286
|
}>>>;
|
|
4089
4287
|
}, {
|
|
4090
4288
|
mergedClsPrefixRef: import("vue").Ref<string>;
|
|
@@ -4118,6 +4316,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4118
4316
|
footerBorderColor: string;
|
|
4119
4317
|
inputBackgroundColor: string;
|
|
4120
4318
|
inputBorderColor: string;
|
|
4319
|
+
inputSuffixColor: string;
|
|
4121
4320
|
unreadNotificationBackgroundColor: string;
|
|
4122
4321
|
unreadNotificationTextColor: string;
|
|
4123
4322
|
typingIndicatorColor: string;
|
|
@@ -4652,14 +4851,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4652
4851
|
iconSizeLarge: string;
|
|
4653
4852
|
rippleDuration: string;
|
|
4654
4853
|
}, any>;
|
|
4655
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
4656
|
-
color: string;
|
|
4657
|
-
opacity1Depth: string;
|
|
4658
|
-
opacity2Depth: string;
|
|
4659
|
-
opacity3Depth: string;
|
|
4660
|
-
opacity4Depth: string;
|
|
4661
|
-
opacity5Depth: string;
|
|
4662
|
-
}, any>;
|
|
4663
4854
|
List: import("../../_mixins").Theme<"List", {
|
|
4664
4855
|
iconSize: string;
|
|
4665
4856
|
iconSpace: string;
|
|
@@ -4755,6 +4946,46 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4755
4946
|
codeColor: string;
|
|
4756
4947
|
codeBorder: string;
|
|
4757
4948
|
}, any>;
|
|
4949
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
4950
|
+
color: string;
|
|
4951
|
+
opacity1Depth: string;
|
|
4952
|
+
opacity2Depth: string;
|
|
4953
|
+
opacity3Depth: string;
|
|
4954
|
+
opacity4Depth: string;
|
|
4955
|
+
opacity5Depth: string;
|
|
4956
|
+
}, any>;
|
|
4957
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
4958
|
+
color: string;
|
|
4959
|
+
opacity1Depth: string;
|
|
4960
|
+
opacity2Depth: string;
|
|
4961
|
+
opacity3Depth: string;
|
|
4962
|
+
opacity4Depth: string;
|
|
4963
|
+
opacity5Depth: string;
|
|
4964
|
+
}, any>;
|
|
4965
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
4966
|
+
color: string;
|
|
4967
|
+
opacity1Depth: string;
|
|
4968
|
+
opacity2Depth: string;
|
|
4969
|
+
opacity3Depth: string;
|
|
4970
|
+
opacity4Depth: string;
|
|
4971
|
+
opacity5Depth: string;
|
|
4972
|
+
}, any>;
|
|
4973
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
4974
|
+
color: string;
|
|
4975
|
+
opacity1Depth: string;
|
|
4976
|
+
opacity2Depth: string;
|
|
4977
|
+
opacity3Depth: string;
|
|
4978
|
+
opacity4Depth: string;
|
|
4979
|
+
opacity5Depth: string;
|
|
4980
|
+
}, any>;
|
|
4981
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
4982
|
+
color: string;
|
|
4983
|
+
opacity1Depth: string;
|
|
4984
|
+
opacity2Depth: string;
|
|
4985
|
+
opacity3Depth: string;
|
|
4986
|
+
opacity4Depth: string;
|
|
4987
|
+
opacity5Depth: string;
|
|
4988
|
+
}, any>;
|
|
4758
4989
|
};
|
|
4759
4990
|
peerOverrides: {
|
|
4760
4991
|
Input?: {
|
|
@@ -4974,17 +5205,37 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4974
5205
|
[x: string]: any;
|
|
4975
5206
|
} | undefined;
|
|
4976
5207
|
} | undefined;
|
|
4977
|
-
|
|
5208
|
+
List?: {
|
|
4978
5209
|
peers?: {
|
|
4979
5210
|
[x: string]: any;
|
|
4980
5211
|
} | undefined;
|
|
4981
5212
|
} | undefined;
|
|
4982
|
-
|
|
5213
|
+
Typography?: {
|
|
4983
5214
|
peers?: {
|
|
4984
5215
|
[x: string]: any;
|
|
4985
5216
|
} | undefined;
|
|
4986
5217
|
} | undefined;
|
|
4987
|
-
|
|
5218
|
+
StatusIcon?: {
|
|
5219
|
+
peers?: {
|
|
5220
|
+
[x: string]: any;
|
|
5221
|
+
} | undefined;
|
|
5222
|
+
} | undefined;
|
|
5223
|
+
FooterAttachIcon?: {
|
|
5224
|
+
peers?: {
|
|
5225
|
+
[x: string]: any;
|
|
5226
|
+
} | undefined;
|
|
5227
|
+
} | undefined;
|
|
5228
|
+
FooterSuffixIcon?: {
|
|
5229
|
+
peers?: {
|
|
5230
|
+
[x: string]: any;
|
|
5231
|
+
} | undefined;
|
|
5232
|
+
} | undefined;
|
|
5233
|
+
HeaderShareIcon?: {
|
|
5234
|
+
peers?: {
|
|
5235
|
+
[x: string]: any;
|
|
5236
|
+
} | undefined;
|
|
5237
|
+
} | undefined;
|
|
5238
|
+
HeaderProfileIcon?: {
|
|
4988
5239
|
peers?: {
|
|
4989
5240
|
[x: string]: any;
|
|
4990
5241
|
} | undefined;
|
|
@@ -5020,6 +5271,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5020
5271
|
footerBorderColor: string;
|
|
5021
5272
|
inputBackgroundColor: string;
|
|
5022
5273
|
inputBorderColor: string;
|
|
5274
|
+
inputSuffixColor: string;
|
|
5023
5275
|
unreadNotificationBackgroundColor: string;
|
|
5024
5276
|
unreadNotificationTextColor: string;
|
|
5025
5277
|
typingIndicatorColor: string;
|
|
@@ -5554,14 +5806,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5554
5806
|
iconSizeLarge: string;
|
|
5555
5807
|
rippleDuration: string;
|
|
5556
5808
|
}, any>;
|
|
5557
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
5558
|
-
color: string;
|
|
5559
|
-
opacity1Depth: string;
|
|
5560
|
-
opacity2Depth: string;
|
|
5561
|
-
opacity3Depth: string;
|
|
5562
|
-
opacity4Depth: string;
|
|
5563
|
-
opacity5Depth: string;
|
|
5564
|
-
}, any>;
|
|
5565
5809
|
List: import("../../_mixins").Theme<"List", {
|
|
5566
5810
|
iconSize: string;
|
|
5567
5811
|
iconSpace: string;
|
|
@@ -5657,6 +5901,46 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5657
5901
|
codeColor: string;
|
|
5658
5902
|
codeBorder: string;
|
|
5659
5903
|
}, any>;
|
|
5904
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
5905
|
+
color: string;
|
|
5906
|
+
opacity1Depth: string;
|
|
5907
|
+
opacity2Depth: string;
|
|
5908
|
+
opacity3Depth: string;
|
|
5909
|
+
opacity4Depth: string;
|
|
5910
|
+
opacity5Depth: string;
|
|
5911
|
+
}, any>;
|
|
5912
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
5913
|
+
color: string;
|
|
5914
|
+
opacity1Depth: string;
|
|
5915
|
+
opacity2Depth: string;
|
|
5916
|
+
opacity3Depth: string;
|
|
5917
|
+
opacity4Depth: string;
|
|
5918
|
+
opacity5Depth: string;
|
|
5919
|
+
}, any>;
|
|
5920
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
5921
|
+
color: string;
|
|
5922
|
+
opacity1Depth: string;
|
|
5923
|
+
opacity2Depth: string;
|
|
5924
|
+
opacity3Depth: string;
|
|
5925
|
+
opacity4Depth: string;
|
|
5926
|
+
opacity5Depth: string;
|
|
5927
|
+
}, any>;
|
|
5928
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
5929
|
+
color: string;
|
|
5930
|
+
opacity1Depth: string;
|
|
5931
|
+
opacity2Depth: string;
|
|
5932
|
+
opacity3Depth: string;
|
|
5933
|
+
opacity4Depth: string;
|
|
5934
|
+
opacity5Depth: string;
|
|
5935
|
+
}, any>;
|
|
5936
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
5937
|
+
color: string;
|
|
5938
|
+
opacity1Depth: string;
|
|
5939
|
+
opacity2Depth: string;
|
|
5940
|
+
opacity3Depth: string;
|
|
5941
|
+
opacity4Depth: string;
|
|
5942
|
+
opacity5Depth: string;
|
|
5943
|
+
}, any>;
|
|
5660
5944
|
};
|
|
5661
5945
|
peerOverrides: {
|
|
5662
5946
|
Input?: {
|
|
@@ -5876,17 +6160,37 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5876
6160
|
[x: string]: any;
|
|
5877
6161
|
} | undefined;
|
|
5878
6162
|
} | undefined;
|
|
5879
|
-
|
|
6163
|
+
List?: {
|
|
5880
6164
|
peers?: {
|
|
5881
6165
|
[x: string]: any;
|
|
5882
6166
|
} | undefined;
|
|
5883
6167
|
} | undefined;
|
|
5884
|
-
|
|
6168
|
+
Typography?: {
|
|
5885
6169
|
peers?: {
|
|
5886
6170
|
[x: string]: any;
|
|
5887
6171
|
} | undefined;
|
|
5888
6172
|
} | undefined;
|
|
5889
|
-
|
|
6173
|
+
StatusIcon?: {
|
|
6174
|
+
peers?: {
|
|
6175
|
+
[x: string]: any;
|
|
6176
|
+
} | undefined;
|
|
6177
|
+
} | undefined;
|
|
6178
|
+
FooterAttachIcon?: {
|
|
6179
|
+
peers?: {
|
|
6180
|
+
[x: string]: any;
|
|
6181
|
+
} | undefined;
|
|
6182
|
+
} | undefined;
|
|
6183
|
+
FooterSuffixIcon?: {
|
|
6184
|
+
peers?: {
|
|
6185
|
+
[x: string]: any;
|
|
6186
|
+
} | undefined;
|
|
6187
|
+
} | undefined;
|
|
6188
|
+
HeaderShareIcon?: {
|
|
6189
|
+
peers?: {
|
|
6190
|
+
[x: string]: any;
|
|
6191
|
+
} | undefined;
|
|
6192
|
+
} | undefined;
|
|
6193
|
+
HeaderProfileIcon?: {
|
|
5890
6194
|
peers?: {
|
|
5891
6195
|
[x: string]: any;
|
|
5892
6196
|
} | undefined;
|
|
@@ -5991,6 +6295,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5991
6295
|
footerBorderColor: string;
|
|
5992
6296
|
inputBackgroundColor: string;
|
|
5993
6297
|
inputBorderColor: string;
|
|
6298
|
+
inputSuffixColor: string;
|
|
5994
6299
|
unreadNotificationBackgroundColor: string;
|
|
5995
6300
|
unreadNotificationTextColor: string;
|
|
5996
6301
|
typingIndicatorColor: string;
|
|
@@ -6524,14 +6829,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6524
6829
|
iconSizeLarge: string;
|
|
6525
6830
|
rippleDuration: string;
|
|
6526
6831
|
}, any>;
|
|
6527
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
6528
|
-
color: string;
|
|
6529
|
-
opacity1Depth: string;
|
|
6530
|
-
opacity2Depth: string;
|
|
6531
|
-
opacity3Depth: string;
|
|
6532
|
-
opacity4Depth: string;
|
|
6533
|
-
opacity5Depth: string;
|
|
6534
|
-
}, any>;
|
|
6535
6832
|
List: import("../../_mixins").Theme<"List", {
|
|
6536
6833
|
iconSize: string;
|
|
6537
6834
|
iconSpace: string;
|
|
@@ -6627,6 +6924,46 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6627
6924
|
codeColor: string;
|
|
6628
6925
|
codeBorder: string;
|
|
6629
6926
|
}, any>;
|
|
6927
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
6928
|
+
color: string;
|
|
6929
|
+
opacity1Depth: string;
|
|
6930
|
+
opacity2Depth: string;
|
|
6931
|
+
opacity3Depth: string;
|
|
6932
|
+
opacity4Depth: string;
|
|
6933
|
+
opacity5Depth: string;
|
|
6934
|
+
}, any>;
|
|
6935
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
6936
|
+
color: string;
|
|
6937
|
+
opacity1Depth: string;
|
|
6938
|
+
opacity2Depth: string;
|
|
6939
|
+
opacity3Depth: string;
|
|
6940
|
+
opacity4Depth: string;
|
|
6941
|
+
opacity5Depth: string;
|
|
6942
|
+
}, any>;
|
|
6943
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
6944
|
+
color: string;
|
|
6945
|
+
opacity1Depth: string;
|
|
6946
|
+
opacity2Depth: string;
|
|
6947
|
+
opacity3Depth: string;
|
|
6948
|
+
opacity4Depth: string;
|
|
6949
|
+
opacity5Depth: string;
|
|
6950
|
+
}, any>;
|
|
6951
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
6952
|
+
color: string;
|
|
6953
|
+
opacity1Depth: string;
|
|
6954
|
+
opacity2Depth: string;
|
|
6955
|
+
opacity3Depth: string;
|
|
6956
|
+
opacity4Depth: string;
|
|
6957
|
+
opacity5Depth: string;
|
|
6958
|
+
}, any>;
|
|
6959
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
6960
|
+
color: string;
|
|
6961
|
+
opacity1Depth: string;
|
|
6962
|
+
opacity2Depth: string;
|
|
6963
|
+
opacity3Depth: string;
|
|
6964
|
+
opacity4Depth: string;
|
|
6965
|
+
opacity5Depth: string;
|
|
6966
|
+
}, any>;
|
|
6630
6967
|
}>>;
|
|
6631
6968
|
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
6632
6969
|
backgroundColor: string;
|
|
@@ -6656,6 +6993,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6656
6993
|
footerBorderColor: string;
|
|
6657
6994
|
inputBackgroundColor: string;
|
|
6658
6995
|
inputBorderColor: string;
|
|
6996
|
+
inputSuffixColor: string;
|
|
6659
6997
|
unreadNotificationBackgroundColor: string;
|
|
6660
6998
|
unreadNotificationTextColor: string;
|
|
6661
6999
|
typingIndicatorColor: string;
|
|
@@ -7189,14 +7527,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7189
7527
|
iconSizeLarge: string;
|
|
7190
7528
|
rippleDuration: string;
|
|
7191
7529
|
}, any>;
|
|
7192
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
7193
|
-
color: string;
|
|
7194
|
-
opacity1Depth: string;
|
|
7195
|
-
opacity2Depth: string;
|
|
7196
|
-
opacity3Depth: string;
|
|
7197
|
-
opacity4Depth: string;
|
|
7198
|
-
opacity5Depth: string;
|
|
7199
|
-
}, any>;
|
|
7200
7530
|
List: import("../../_mixins").Theme<"List", {
|
|
7201
7531
|
iconSize: string;
|
|
7202
7532
|
iconSpace: string;
|
|
@@ -7292,6 +7622,46 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7292
7622
|
codeColor: string;
|
|
7293
7623
|
codeBorder: string;
|
|
7294
7624
|
}, any>;
|
|
7625
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
7626
|
+
color: string;
|
|
7627
|
+
opacity1Depth: string;
|
|
7628
|
+
opacity2Depth: string;
|
|
7629
|
+
opacity3Depth: string;
|
|
7630
|
+
opacity4Depth: string;
|
|
7631
|
+
opacity5Depth: string;
|
|
7632
|
+
}, any>;
|
|
7633
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
7634
|
+
color: string;
|
|
7635
|
+
opacity1Depth: string;
|
|
7636
|
+
opacity2Depth: string;
|
|
7637
|
+
opacity3Depth: string;
|
|
7638
|
+
opacity4Depth: string;
|
|
7639
|
+
opacity5Depth: string;
|
|
7640
|
+
}, any>;
|
|
7641
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
7642
|
+
color: string;
|
|
7643
|
+
opacity1Depth: string;
|
|
7644
|
+
opacity2Depth: string;
|
|
7645
|
+
opacity3Depth: string;
|
|
7646
|
+
opacity4Depth: string;
|
|
7647
|
+
opacity5Depth: string;
|
|
7648
|
+
}, any>;
|
|
7649
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
7650
|
+
color: string;
|
|
7651
|
+
opacity1Depth: string;
|
|
7652
|
+
opacity2Depth: string;
|
|
7653
|
+
opacity3Depth: string;
|
|
7654
|
+
opacity4Depth: string;
|
|
7655
|
+
opacity5Depth: string;
|
|
7656
|
+
}, any>;
|
|
7657
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
7658
|
+
color: string;
|
|
7659
|
+
opacity1Depth: string;
|
|
7660
|
+
opacity2Depth: string;
|
|
7661
|
+
opacity3Depth: string;
|
|
7662
|
+
opacity4Depth: string;
|
|
7663
|
+
opacity5Depth: string;
|
|
7664
|
+
}, any>;
|
|
7295
7665
|
}>>>;
|
|
7296
7666
|
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
7297
7667
|
backgroundColor: string;
|
|
@@ -7321,6 +7691,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7321
7691
|
footerBorderColor: string;
|
|
7322
7692
|
inputBackgroundColor: string;
|
|
7323
7693
|
inputBorderColor: string;
|
|
7694
|
+
inputSuffixColor: string;
|
|
7324
7695
|
unreadNotificationBackgroundColor: string;
|
|
7325
7696
|
unreadNotificationTextColor: string;
|
|
7326
7697
|
typingIndicatorColor: string;
|
|
@@ -7854,14 +8225,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7854
8225
|
iconSizeLarge: string;
|
|
7855
8226
|
rippleDuration: string;
|
|
7856
8227
|
}, any>;
|
|
7857
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
7858
|
-
color: string;
|
|
7859
|
-
opacity1Depth: string;
|
|
7860
|
-
opacity2Depth: string;
|
|
7861
|
-
opacity3Depth: string;
|
|
7862
|
-
opacity4Depth: string;
|
|
7863
|
-
opacity5Depth: string;
|
|
7864
|
-
}, any>;
|
|
7865
8228
|
List: import("../../_mixins").Theme<"List", {
|
|
7866
8229
|
iconSize: string;
|
|
7867
8230
|
iconSpace: string;
|
|
@@ -7957,6 +8320,46 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7957
8320
|
codeColor: string;
|
|
7958
8321
|
codeBorder: string;
|
|
7959
8322
|
}, any>;
|
|
8323
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
8324
|
+
color: string;
|
|
8325
|
+
opacity1Depth: string;
|
|
8326
|
+
opacity2Depth: string;
|
|
8327
|
+
opacity3Depth: string;
|
|
8328
|
+
opacity4Depth: string;
|
|
8329
|
+
opacity5Depth: string;
|
|
8330
|
+
}, any>;
|
|
8331
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
8332
|
+
color: string;
|
|
8333
|
+
opacity1Depth: string;
|
|
8334
|
+
opacity2Depth: string;
|
|
8335
|
+
opacity3Depth: string;
|
|
8336
|
+
opacity4Depth: string;
|
|
8337
|
+
opacity5Depth: string;
|
|
8338
|
+
}, any>;
|
|
8339
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
8340
|
+
color: string;
|
|
8341
|
+
opacity1Depth: string;
|
|
8342
|
+
opacity2Depth: string;
|
|
8343
|
+
opacity3Depth: string;
|
|
8344
|
+
opacity4Depth: string;
|
|
8345
|
+
opacity5Depth: string;
|
|
8346
|
+
}, any>;
|
|
8347
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
8348
|
+
color: string;
|
|
8349
|
+
opacity1Depth: string;
|
|
8350
|
+
opacity2Depth: string;
|
|
8351
|
+
opacity3Depth: string;
|
|
8352
|
+
opacity4Depth: string;
|
|
8353
|
+
opacity5Depth: string;
|
|
8354
|
+
}, any>;
|
|
8355
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
8356
|
+
color: string;
|
|
8357
|
+
opacity1Depth: string;
|
|
8358
|
+
opacity2Depth: string;
|
|
8359
|
+
opacity3Depth: string;
|
|
8360
|
+
opacity4Depth: string;
|
|
8361
|
+
opacity5Depth: string;
|
|
8362
|
+
}, any>;
|
|
7960
8363
|
}>>>;
|
|
7961
8364
|
}>>, {
|
|
7962
8365
|
readonly loading: boolean;
|