@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
|
@@ -338,7 +338,6 @@ exports.default = (0, cssr_1.cB)('chat', `
|
|
|
338
338
|
justify-content: flex-start;
|
|
339
339
|
margin-bottom: 8px;
|
|
340
340
|
`), (0, cssr_1.cE)('footer', `
|
|
341
|
-
border-top: 1px solid var(--u-border-color);
|
|
342
341
|
padding: 0px 20px;
|
|
343
342
|
flex-shrink: 0;
|
|
344
343
|
`), (0, cssr_1.cE)('input-container', `
|
|
@@ -346,6 +345,28 @@ exports.default = (0, cssr_1.cB)('chat', `
|
|
|
346
345
|
padding: 16px 0px;
|
|
347
346
|
`), (0, cssr_1.cE)('input', `
|
|
348
347
|
flex: 1;
|
|
348
|
+
`, [(0, cssr_1.c)('.u-input-wrapper', `
|
|
349
|
+
flex-wrap: wrap;
|
|
350
|
+
padding: 0 4px;
|
|
351
|
+
`, [(0, cssr_1.c)('.u-input__prefix', `
|
|
352
|
+
width: 100%;
|
|
353
|
+
margin: 0;
|
|
354
|
+
margin-top: 4px;
|
|
355
|
+
white-space: wrap;
|
|
356
|
+
`, [(0, cssr_1.c)('ul', `
|
|
357
|
+
border-top-left-radius: 12px;
|
|
358
|
+
border-top-right-radius: 12px;
|
|
359
|
+
`), (0, cssr_1.c)('li', `
|
|
360
|
+
padding: 12px;
|
|
361
|
+
`)]), (0, cssr_1.c)('.u-input__input-el', `
|
|
362
|
+
padding: 8px;
|
|
363
|
+
`), (0, cssr_1.c)('.u-input__placeholder', `
|
|
364
|
+
margin: 8px;
|
|
365
|
+
`)])]), (0, cssr_1.cE)('editing-block', `
|
|
366
|
+
width: 100%;
|
|
367
|
+
`), (0, cssr_1.cE)('input-suffix', `
|
|
368
|
+
color: var(--u-input-suffix-color) !important;
|
|
369
|
+
cursor: pointer;
|
|
349
370
|
margin-right: 4px;
|
|
350
371
|
`), (0, cssr_1.cE)('attach-btn', `
|
|
351
372
|
margin-left: 4px;
|
|
@@ -26,6 +26,7 @@ declare const chatDark: import("../../_mixins").Theme<"Chat", {
|
|
|
26
26
|
footerBorderColor: string;
|
|
27
27
|
inputBackgroundColor: string;
|
|
28
28
|
inputBorderColor: string;
|
|
29
|
+
inputSuffixColor: string;
|
|
29
30
|
unreadNotificationBackgroundColor: string;
|
|
30
31
|
unreadNotificationTextColor: string;
|
|
31
32
|
typingIndicatorColor: string;
|
|
@@ -559,14 +560,6 @@ declare const chatDark: import("../../_mixins").Theme<"Chat", {
|
|
|
559
560
|
iconSizeLarge: string;
|
|
560
561
|
rippleDuration: string;
|
|
561
562
|
}, any>;
|
|
562
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
563
|
-
color: string;
|
|
564
|
-
opacity1Depth: string;
|
|
565
|
-
opacity2Depth: string;
|
|
566
|
-
opacity3Depth: string;
|
|
567
|
-
opacity4Depth: string;
|
|
568
|
-
opacity5Depth: string;
|
|
569
|
-
}, any>;
|
|
570
563
|
List: import("../../_mixins").Theme<"List", {
|
|
571
564
|
iconSize: string;
|
|
572
565
|
iconSpace: string;
|
|
@@ -662,6 +655,46 @@ declare const chatDark: import("../../_mixins").Theme<"Chat", {
|
|
|
662
655
|
codeColor: string;
|
|
663
656
|
codeBorder: string;
|
|
664
657
|
}, any>;
|
|
658
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
659
|
+
color: string;
|
|
660
|
+
opacity1Depth: string;
|
|
661
|
+
opacity2Depth: string;
|
|
662
|
+
opacity3Depth: string;
|
|
663
|
+
opacity4Depth: string;
|
|
664
|
+
opacity5Depth: string;
|
|
665
|
+
}, any>;
|
|
666
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
667
|
+
color: string;
|
|
668
|
+
opacity1Depth: string;
|
|
669
|
+
opacity2Depth: string;
|
|
670
|
+
opacity3Depth: string;
|
|
671
|
+
opacity4Depth: string;
|
|
672
|
+
opacity5Depth: string;
|
|
673
|
+
}, any>;
|
|
674
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
675
|
+
color: string;
|
|
676
|
+
opacity1Depth: string;
|
|
677
|
+
opacity2Depth: string;
|
|
678
|
+
opacity3Depth: string;
|
|
679
|
+
opacity4Depth: string;
|
|
680
|
+
opacity5Depth: string;
|
|
681
|
+
}, any>;
|
|
682
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
683
|
+
color: string;
|
|
684
|
+
opacity1Depth: string;
|
|
685
|
+
opacity2Depth: string;
|
|
686
|
+
opacity3Depth: string;
|
|
687
|
+
opacity4Depth: string;
|
|
688
|
+
opacity5Depth: string;
|
|
689
|
+
}, any>;
|
|
690
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
691
|
+
color: string;
|
|
692
|
+
opacity1Depth: string;
|
|
693
|
+
opacity2Depth: string;
|
|
694
|
+
opacity3Depth: string;
|
|
695
|
+
opacity4Depth: string;
|
|
696
|
+
opacity5Depth: string;
|
|
697
|
+
}, any>;
|
|
665
698
|
}>;
|
|
666
699
|
export default chatDark;
|
|
667
700
|
export type ChatTheme = typeof chatDark;
|
package/lib/chat/styles/dark.js
CHANGED
|
@@ -22,9 +22,13 @@ const chatDark = (0, _mixins_1.createTheme)({
|
|
|
22
22
|
Avatar: styles_4.avatarDark,
|
|
23
23
|
Badge: styles_5.badgeDark,
|
|
24
24
|
Button: styles_6.buttonDark,
|
|
25
|
-
Icon: styles_7.iconDark,
|
|
26
25
|
List: styles_8.listDark,
|
|
27
|
-
Typography: styles_9.typographyDark
|
|
26
|
+
Typography: styles_9.typographyDark,
|
|
27
|
+
StatusIcon: styles_7.iconDark,
|
|
28
|
+
FooterAttachIcon: styles_7.iconDark,
|
|
29
|
+
FooterSuffixIcon: styles_7.iconDark,
|
|
30
|
+
HeaderShareIcon: styles_7.iconDark,
|
|
31
|
+
HeaderProfileIcon: styles_7.iconDark
|
|
28
32
|
},
|
|
29
33
|
self: (vars) => {
|
|
30
34
|
const lightVars = (0, light_1.self)(vars);
|
|
@@ -27,6 +27,7 @@ export declare const self: (vars: ThemeCommonVars) => {
|
|
|
27
27
|
footerBorderColor: string;
|
|
28
28
|
inputBackgroundColor: string;
|
|
29
29
|
inputBorderColor: string;
|
|
30
|
+
inputSuffixColor: string;
|
|
30
31
|
unreadNotificationBackgroundColor: string;
|
|
31
32
|
unreadNotificationTextColor: string;
|
|
32
33
|
typingIndicatorColor: string;
|
|
@@ -63,6 +64,7 @@ declare const chatLight: import("../../_mixins").Theme<"Chat", {
|
|
|
63
64
|
footerBorderColor: string;
|
|
64
65
|
inputBackgroundColor: string;
|
|
65
66
|
inputBorderColor: string;
|
|
67
|
+
inputSuffixColor: string;
|
|
66
68
|
unreadNotificationBackgroundColor: string;
|
|
67
69
|
unreadNotificationTextColor: string;
|
|
68
70
|
typingIndicatorColor: string;
|
|
@@ -596,14 +598,6 @@ declare const chatLight: import("../../_mixins").Theme<"Chat", {
|
|
|
596
598
|
iconSizeLarge: string;
|
|
597
599
|
rippleDuration: string;
|
|
598
600
|
}, any>;
|
|
599
|
-
Icon: import("../../_mixins").Theme<"Icon", {
|
|
600
|
-
color: string;
|
|
601
|
-
opacity1Depth: string;
|
|
602
|
-
opacity2Depth: string;
|
|
603
|
-
opacity3Depth: string;
|
|
604
|
-
opacity4Depth: string;
|
|
605
|
-
opacity5Depth: string;
|
|
606
|
-
}, any>;
|
|
607
601
|
List: import("../../_mixins").Theme<"List", {
|
|
608
602
|
iconSize: string;
|
|
609
603
|
iconSpace: string;
|
|
@@ -699,6 +693,46 @@ declare const chatLight: import("../../_mixins").Theme<"Chat", {
|
|
|
699
693
|
codeColor: string;
|
|
700
694
|
codeBorder: string;
|
|
701
695
|
}, any>;
|
|
696
|
+
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
697
|
+
color: string;
|
|
698
|
+
opacity1Depth: string;
|
|
699
|
+
opacity2Depth: string;
|
|
700
|
+
opacity3Depth: string;
|
|
701
|
+
opacity4Depth: string;
|
|
702
|
+
opacity5Depth: string;
|
|
703
|
+
}, any>;
|
|
704
|
+
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
705
|
+
color: string;
|
|
706
|
+
opacity1Depth: string;
|
|
707
|
+
opacity2Depth: string;
|
|
708
|
+
opacity3Depth: string;
|
|
709
|
+
opacity4Depth: string;
|
|
710
|
+
opacity5Depth: string;
|
|
711
|
+
}, any>;
|
|
712
|
+
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
713
|
+
color: string;
|
|
714
|
+
opacity1Depth: string;
|
|
715
|
+
opacity2Depth: string;
|
|
716
|
+
opacity3Depth: string;
|
|
717
|
+
opacity4Depth: string;
|
|
718
|
+
opacity5Depth: string;
|
|
719
|
+
}, any>;
|
|
720
|
+
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
721
|
+
color: string;
|
|
722
|
+
opacity1Depth: string;
|
|
723
|
+
opacity2Depth: string;
|
|
724
|
+
opacity3Depth: string;
|
|
725
|
+
opacity4Depth: string;
|
|
726
|
+
opacity5Depth: string;
|
|
727
|
+
}, any>;
|
|
728
|
+
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
729
|
+
color: string;
|
|
730
|
+
opacity1Depth: string;
|
|
731
|
+
opacity2Depth: string;
|
|
732
|
+
opacity3Depth: string;
|
|
733
|
+
opacity4Depth: string;
|
|
734
|
+
opacity5Depth: string;
|
|
735
|
+
}, any>;
|
|
702
736
|
}>;
|
|
703
737
|
export default chatLight;
|
|
704
738
|
export type ChatThemeVars = ReturnType<typeof self>;
|
package/lib/chat/styles/light.js
CHANGED
|
@@ -54,6 +54,7 @@ const self = (vars) => {
|
|
|
54
54
|
footerBorderColor: elementsQuaternary,
|
|
55
55
|
inputBackgroundColor: surfacePrimary,
|
|
56
56
|
inputBorderColor: elementsQuaternary,
|
|
57
|
+
inputSuffixColor: brandPrimary400,
|
|
57
58
|
unreadNotificationBackgroundColor: brandPrimary400,
|
|
58
59
|
unreadNotificationTextColor: elementsSecondary,
|
|
59
60
|
typingIndicatorColor: textSecondary,
|
|
@@ -74,9 +75,13 @@ const chatLight = (0, _mixins_1.createTheme)({
|
|
|
74
75
|
Avatar: styles_4.avatarLight,
|
|
75
76
|
Badge: chatBadgeLight,
|
|
76
77
|
Button: styles_6.buttonLight,
|
|
77
|
-
Icon: styles_7.iconLight,
|
|
78
78
|
List: styles_8.listLight,
|
|
79
|
-
Typography: styles_9.typographyLight
|
|
79
|
+
Typography: styles_9.typographyLight,
|
|
80
|
+
StatusIcon: styles_7.iconLight,
|
|
81
|
+
FooterAttachIcon: styles_7.iconLight,
|
|
82
|
+
FooterSuffixIcon: styles_7.iconLight,
|
|
83
|
+
HeaderShareIcon: styles_7.iconLight,
|
|
84
|
+
HeaderProfileIcon: styles_7.iconLight
|
|
80
85
|
},
|
|
81
86
|
self: exports.self
|
|
82
87
|
});
|
package/lib/components.d.ts
CHANGED
package/lib/components.js
CHANGED
|
@@ -115,3 +115,6 @@ __exportStar(require("./equation"), exports);
|
|
|
115
115
|
__exportStar(require("./toggle-button"), exports);
|
|
116
116
|
__exportStar(require("./flex"), exports);
|
|
117
117
|
__exportStar(require("./crop"), exports);
|
|
118
|
+
__exportStar(require("./header"), exports);
|
|
119
|
+
__exportStar(require("./icon-bar"), exports);
|
|
120
|
+
__exportStar(require("./qr-code"), exports);
|
|
@@ -105,6 +105,9 @@ import { ChatTheme } from '../../chat/styles';
|
|
|
105
105
|
import { ModalFullscreenTheme } from '../../modal-fullscreen/styles';
|
|
106
106
|
import { CropTheme } from '../../crop/styles';
|
|
107
107
|
import { SafeTopScrollbarTheme } from '../../_internal/safe-top-scrollbar/styles';
|
|
108
|
+
import { IconBarTheme } from '../../icon-bar/styles';
|
|
109
|
+
import { HeaderTheme } from '../../header/styles';
|
|
110
|
+
import { QrCodeTheme } from '../../qr-code/styles';
|
|
108
111
|
export interface GlobalThemeWithoutCommon {
|
|
109
112
|
Alert?: AlertTheme;
|
|
110
113
|
Anchor?: AnchorTheme;
|
|
@@ -196,10 +199,13 @@ export interface GlobalThemeWithoutCommon {
|
|
|
196
199
|
Chat?: ChatTheme;
|
|
197
200
|
ModalFullscreen?: ModalFullscreenTheme;
|
|
198
201
|
Crop?: CropTheme;
|
|
202
|
+
IconBar?: IconBarTheme;
|
|
203
|
+
QrCode?: QrCodeTheme;
|
|
199
204
|
InternalSelectMenu?: InternalSelectMenuTheme;
|
|
200
205
|
InternalSelection?: InternalSelectionTheme;
|
|
201
206
|
AccountOption?: AccountOptionTheme;
|
|
202
207
|
InputOtp?: InputOtpTheme;
|
|
208
|
+
Header?: HeaderTheme;
|
|
203
209
|
}
|
|
204
210
|
export interface GlobalComponentConfig {
|
|
205
211
|
Pagination?: {
|
|
@@ -241,6 +247,17 @@ export interface GlobalIconConfig {
|
|
|
241
247
|
rotateCounterclockwise?: () => VNodeChild;
|
|
242
248
|
zoomIn?: () => VNodeChild;
|
|
243
249
|
zoomOut?: () => VNodeChild;
|
|
250
|
+
logout?: () => VNodeChild;
|
|
251
|
+
burgerMenu?: () => VNodeChild;
|
|
252
|
+
eye?: () => VNodeChild;
|
|
253
|
+
eyeOff?: () => VNodeChild;
|
|
254
|
+
file?: () => VNodeChild;
|
|
255
|
+
search?: () => VNodeChild;
|
|
256
|
+
chevronDown?: () => VNodeChild;
|
|
257
|
+
chevronLeft?: () => VNodeChild;
|
|
258
|
+
chevronRight?: () => VNodeChild;
|
|
259
|
+
ozbekFlag?: () => VNodeChild;
|
|
260
|
+
russiaFlag?: () => VNodeChild;
|
|
244
261
|
}
|
|
245
262
|
export interface RtlItem {
|
|
246
263
|
name: keyof GlobalThemeWithoutCommon;
|
|
@@ -300,6 +300,7 @@ export declare const UDialogProvider: import("vue").DefineComponent<{
|
|
|
300
300
|
brandPrimary500: string;
|
|
301
301
|
brandPrimary550: string;
|
|
302
302
|
brandPrimary600: string;
|
|
303
|
+
brandSecondary400: string;
|
|
303
304
|
brandSecondary500: string;
|
|
304
305
|
brandSecondary300: string;
|
|
305
306
|
brandSecondary600: string;
|
|
@@ -667,6 +668,7 @@ export declare const UDialogProvider: import("vue").DefineComponent<{
|
|
|
667
668
|
brandPrimary500: string;
|
|
668
669
|
brandPrimary550: string;
|
|
669
670
|
brandPrimary600: string;
|
|
671
|
+
brandSecondary400: string;
|
|
670
672
|
brandSecondary500: string;
|
|
671
673
|
brandSecondary300: string;
|
|
672
674
|
brandSecondary600: string;
|
|
@@ -151,7 +151,7 @@ export declare const formItemColProps: {
|
|
|
151
151
|
readonly default: 0;
|
|
152
152
|
};
|
|
153
153
|
};
|
|
154
|
-
export declare const formItemColPropKeys: ("push" | "theme" | "themeOverrides" | "builtinThemeOverrides" | "offset" | "value" | "label" | "size" | "
|
|
154
|
+
export declare const formItemColPropKeys: ("push" | "theme" | "themeOverrides" | "builtinThemeOverrides" | "offset" | "value" | "label" | "size" | "span" | "required" | "path" | "first" | "labelWidth" | "labelAlign" | "labelPlacement" | "showRequireMark" | "requireMarkPlacement" | "showFeedback" | "showLabel" | "labelStyle" | "rulePath" | "rule" | "ignorePathChange" | "validationStatus" | "feedback" | "labelProps" | "pull")[];
|
|
155
155
|
export type FormItemColProps = ExtractPublicPropTypes<typeof formItemColProps>;
|
|
156
156
|
declare const _default: import("vue").DefineComponent<{
|
|
157
157
|
readonly label: StringConstructor;
|
|
@@ -468,8 +468,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
468
468
|
readonly push: import("../../legacy-grid/src/interface").Span;
|
|
469
469
|
readonly offset: import("../../legacy-grid/src/interface").Span;
|
|
470
470
|
readonly value: any;
|
|
471
|
-
readonly required: boolean;
|
|
472
471
|
readonly span: import("../../legacy-grid/src/interface").Span;
|
|
472
|
+
readonly required: boolean;
|
|
473
473
|
readonly first: boolean;
|
|
474
474
|
readonly showRequireMark: boolean | undefined;
|
|
475
475
|
readonly showFeedback: boolean | undefined;
|
|
@@ -151,7 +151,7 @@ export declare const formItemGiProps: {
|
|
|
151
151
|
readonly default: true;
|
|
152
152
|
};
|
|
153
153
|
};
|
|
154
|
-
export declare const formItemGiPropKeys: ("theme" | "themeOverrides" | "builtinThemeOverrides" | "offset" | "value" | "label" | "size" | "
|
|
154
|
+
export declare const formItemGiPropKeys: ("theme" | "themeOverrides" | "builtinThemeOverrides" | "offset" | "value" | "label" | "size" | "span" | "suffix" | "required" | "path" | "first" | "labelWidth" | "labelAlign" | "labelPlacement" | "showRequireMark" | "requireMarkPlacement" | "showFeedback" | "showLabel" | "privateSpan" | "privateColStart" | "privateShow" | "privateOffset" | "labelStyle" | "rulePath" | "rule" | "ignorePathChange" | "validationStatus" | "feedback" | "labelProps")[];
|
|
155
155
|
export type FormItemGiProps = ExtractPublicPropTypes<typeof formItemGiProps>;
|
|
156
156
|
declare const _default: import("vue").DefineComponent<{
|
|
157
157
|
readonly label: StringConstructor;
|
|
@@ -467,9 +467,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
467
467
|
}>>, {
|
|
468
468
|
readonly offset: string | number;
|
|
469
469
|
readonly value: any;
|
|
470
|
+
readonly span: string | number;
|
|
470
471
|
readonly suffix: boolean;
|
|
471
472
|
readonly required: boolean;
|
|
472
|
-
readonly span: string | number;
|
|
473
473
|
readonly first: boolean;
|
|
474
474
|
readonly showRequireMark: boolean | undefined;
|
|
475
475
|
readonly showFeedback: boolean | undefined;
|
|
@@ -485,8 +485,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
485
485
|
push: import("../../legacy-grid/src/interface").Span;
|
|
486
486
|
offset: import("../../legacy-grid/src/interface").Span;
|
|
487
487
|
value: any;
|
|
488
|
-
required: boolean;
|
|
489
488
|
span: import("../../legacy-grid/src/interface").Span;
|
|
489
|
+
required: boolean;
|
|
490
490
|
first: boolean;
|
|
491
491
|
showRequireMark: boolean | undefined;
|
|
492
492
|
showFeedback: boolean | undefined;
|
package/lib/grid/src/Grid.d.ts
CHANGED
|
@@ -96,8 +96,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
96
96
|
readonly default: 0;
|
|
97
97
|
};
|
|
98
98
|
}>>, {
|
|
99
|
-
readonly responsive: "self" | "screen";
|
|
100
99
|
readonly cols: string | number;
|
|
100
|
+
readonly responsive: "self" | "screen";
|
|
101
101
|
readonly layoutShiftDisabled: boolean;
|
|
102
102
|
readonly itemResponsive: boolean;
|
|
103
103
|
readonly collapsed: boolean;
|
|
@@ -19,7 +19,7 @@ export declare const gridItemProps: {
|
|
|
19
19
|
readonly default: true;
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
|
-
export declare const gridItemPropKeys: ("offset" | "
|
|
22
|
+
export declare const gridItemPropKeys: ("offset" | "span" | "suffix" | "privateSpan" | "privateColStart" | "privateShow" | "privateOffset")[];
|
|
23
23
|
export type GridItemProps = ExtractPublicPropTypes<typeof gridItemProps>;
|
|
24
24
|
declare const _default: import("vue").DefineComponent<{
|
|
25
25
|
readonly span: {
|
|
@@ -67,8 +67,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
67
67
|
};
|
|
68
68
|
}>>, {
|
|
69
69
|
readonly offset: string | number;
|
|
70
|
-
readonly suffix: boolean;
|
|
71
70
|
readonly span: string | number;
|
|
71
|
+
readonly suffix: boolean;
|
|
72
72
|
readonly privateShow: boolean;
|
|
73
73
|
}, {}>;
|
|
74
74
|
export default _default;
|
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.mockSearchResults = void 0;
|
|
4
|
+
const vue_1 = require("vue");
|
|
5
|
+
const icon_1 = require("../../icon");
|
|
6
|
+
const ionicons5_1 = require("@vicons/ionicons5");
|
|
7
|
+
exports.mockSearchResults = [
|
|
8
|
+
{
|
|
9
|
+
key: 'card-credit-1',
|
|
10
|
+
label: 'Кредитные карты 1',
|
|
11
|
+
description: 'Оформите кредитную карту онлайн за 5 минут',
|
|
12
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Card) }),
|
|
13
|
+
extra: 'Карты',
|
|
14
|
+
onClick: () => {
|
|
15
|
+
console.log('card-credit-1');
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
key: 'card-debit-1',
|
|
20
|
+
label: 'Дебетовые карты 1',
|
|
21
|
+
description: 'Дебетовые карты с кэшбэком до 10%',
|
|
22
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Card) }),
|
|
23
|
+
extra: 'Карты',
|
|
24
|
+
onClick: () => {
|
|
25
|
+
console.log('card-debit-1');
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
key: 'card-credit-2',
|
|
30
|
+
label: 'Кредитные карты 2',
|
|
31
|
+
description: 'Оформите кредитную карту онлайн за 5 минут',
|
|
32
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Card) }),
|
|
33
|
+
extra: 'Карты',
|
|
34
|
+
onClick: () => {
|
|
35
|
+
console.log('card-credit-2');
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
key: 'card-debit-2',
|
|
40
|
+
label: 'Дебетовые карты 2',
|
|
41
|
+
description: 'Дебетовые карты с кэшбэком до 10%',
|
|
42
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Card) }),
|
|
43
|
+
extra: 'Карты',
|
|
44
|
+
onClick: () => {
|
|
45
|
+
console.log('card-debit-2');
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
key: 'card-credit-3',
|
|
50
|
+
label: 'Кредитные карты 3',
|
|
51
|
+
description: 'Оформите кредитную карту онлайн за 5 минут',
|
|
52
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Card) }),
|
|
53
|
+
extra: 'Карты',
|
|
54
|
+
onClick: () => {
|
|
55
|
+
console.log('card-credit-3');
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
key: 'card-debit-3',
|
|
60
|
+
label: 'Дебетовые карты 3',
|
|
61
|
+
description: 'Дебетовые карты с кэшбэком до 10%',
|
|
62
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Card) }),
|
|
63
|
+
extra: 'Карты',
|
|
64
|
+
onClick: () => {
|
|
65
|
+
console.log('card-debit-3');
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
key: 'card-credit-4',
|
|
70
|
+
label: 'Кредитные карты 4',
|
|
71
|
+
description: 'Оформите кредитную карту онлайн за 5 минут',
|
|
72
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Card) }),
|
|
73
|
+
extra: 'Карты',
|
|
74
|
+
onClick: () => {
|
|
75
|
+
console.log('card-credit-4');
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
key: 'card-debit-4',
|
|
80
|
+
label: 'Дебетовые карты 4',
|
|
81
|
+
description: 'Дебетовые карты с кэшбэком до 10%',
|
|
82
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Card) }),
|
|
83
|
+
extra: 'Карты',
|
|
84
|
+
onClick: () => {
|
|
85
|
+
console.log('card-debit-4');
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
key: 'card-credit-5',
|
|
90
|
+
label: 'Кредитные карты 5',
|
|
91
|
+
description: 'Оформите кредитную карту онлайн за 5 минут',
|
|
92
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Card) }),
|
|
93
|
+
extra: 'Карты',
|
|
94
|
+
onClick: () => {
|
|
95
|
+
console.log('card-credit-5');
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
key: 'card-debit-5',
|
|
100
|
+
label: 'Дебетовые карты 5',
|
|
101
|
+
description: 'Дебетовые карты с кэшбэком до 10%',
|
|
102
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Card) }),
|
|
103
|
+
extra: 'Карты',
|
|
104
|
+
onClick: () => {
|
|
105
|
+
console.log('card-debit-5');
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
key: 'card-credit-6',
|
|
110
|
+
label: 'Кредитные карты 6',
|
|
111
|
+
description: 'Оформите кредитную карту онлайн за 5 минут',
|
|
112
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Card) }),
|
|
113
|
+
extra: 'Карты',
|
|
114
|
+
onClick: () => {
|
|
115
|
+
console.log('card-credit-6');
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
key: 'card-debit-6',
|
|
120
|
+
label: 'Дебетовые карты 6',
|
|
121
|
+
description: 'Дебетовые карты с кэшбэком до 10%',
|
|
122
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Card) }),
|
|
123
|
+
extra: 'Карты',
|
|
124
|
+
onClick: () => {
|
|
125
|
+
console.log('card-debit-6');
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
key: 'card-credit-7',
|
|
130
|
+
label: 'Кредитные карты 7',
|
|
131
|
+
description: 'Оформите кредитную карту онлайн за 5 минут',
|
|
132
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Card) }),
|
|
133
|
+
extra: 'Карты',
|
|
134
|
+
onClick: () => {
|
|
135
|
+
console.log('card-credit-7');
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
key: 'card-debit-7',
|
|
140
|
+
label: 'Дебетовые карты 7',
|
|
141
|
+
description: 'Дебетовые карты с кэшбэком до 10%',
|
|
142
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Card) }),
|
|
143
|
+
extra: 'Карты',
|
|
144
|
+
onClick: () => {
|
|
145
|
+
console.log('card-debit-7');
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
key: 'card-credit-8',
|
|
150
|
+
label: 'Кредитные карты 8',
|
|
151
|
+
description: 'Оформите кредитную карту онлайн за 5 минут',
|
|
152
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Card) }),
|
|
153
|
+
extra: 'Карты',
|
|
154
|
+
onClick: () => {
|
|
155
|
+
console.log('card-credit-8');
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
key: 'card-debit-8',
|
|
160
|
+
label: 'Дебетовые карты 8',
|
|
161
|
+
description: 'Дебетовые карты с кэшбэком до 10%',
|
|
162
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Card) }),
|
|
163
|
+
extra: 'Карты',
|
|
164
|
+
onClick: () => {
|
|
165
|
+
console.log('card-debit-8');
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
key: 'deposit',
|
|
170
|
+
label: 'Вклады',
|
|
171
|
+
description: 'Выгодные вклады со ставкой до 18% годовых',
|
|
172
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Cash) }),
|
|
173
|
+
extra: 'Вклады',
|
|
174
|
+
onClick: () => {
|
|
175
|
+
console.log('deposit');
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
key: 'deposit-saving',
|
|
180
|
+
label: 'Накопительный счет',
|
|
181
|
+
description: 'Проценты на остаток каждый день',
|
|
182
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Cash) }),
|
|
183
|
+
extra: 'Вклады',
|
|
184
|
+
onClick: () => {
|
|
185
|
+
console.log('deposit-saving');
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
key: 'mobile-app',
|
|
190
|
+
label: 'Мобильное приложение',
|
|
191
|
+
description: 'Скачайте приложение Uzum Bank для iOS и Android',
|
|
192
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.PhonePortrait) }),
|
|
193
|
+
extra: 'Сервисы',
|
|
194
|
+
onClick: () => {
|
|
195
|
+
console.log('mobile-app');
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
key: 'business-account',
|
|
200
|
+
label: 'Расчетный счет для бизнеса',
|
|
201
|
+
description: 'Откройте счет для ИП и ООО онлайн',
|
|
202
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Settings) }),
|
|
203
|
+
extra: 'Бизнес',
|
|
204
|
+
onClick: () => {
|
|
205
|
+
console.log('business-account');
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
key: 'transfer',
|
|
210
|
+
label: 'Переводы',
|
|
211
|
+
description: 'Переводы по номеру телефона без комиссии',
|
|
212
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Cash) }),
|
|
213
|
+
extra: 'Переводы',
|
|
214
|
+
onClick: () => {
|
|
215
|
+
console.log('transfer');
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
key: 'documents',
|
|
220
|
+
label: 'Тарифы и документы',
|
|
221
|
+
description: 'Полный список тарифов и условий',
|
|
222
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Document) }),
|
|
223
|
+
extra: 'Информация',
|
|
224
|
+
onClick: () => {
|
|
225
|
+
console.log('documents');
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
key: 'support',
|
|
230
|
+
label: 'Поддержка',
|
|
231
|
+
description: 'Контакты службы поддержки',
|
|
232
|
+
icon: () => (0, vue_1.h)(icon_1.UIcon, { size: 20 }, { default: () => (0, vue_1.h)(ionicons5_1.Home) }),
|
|
233
|
+
extra: 'Помощь',
|
|
234
|
+
onClick: () => {
|
|
235
|
+
console.log('support');
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
];
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export { default as UHeader, headerProps } from './src/Header';
|
|
2
|
+
export { default as UHeaderNavigation, headerNavigationProps } from './src/HeaderNavigation';
|
|
3
|
+
export { default as UHeaderMobile, headerMobileProps } from './src/mobile/HeaderMobile';
|
|
4
|
+
export { default as UHeaderActions, headerActionsProps } from './src/HeaderActions';
|
|
5
|
+
export { default as UHeaderDesktopLayout, headerDesktopLayoutProps } from './src/HeaderDesktopLayout';
|
|
6
|
+
export { default as UHeaderMobileLayout, headerMobileLayoutProps } from './src/HeaderMobileLayout';
|
|
7
|
+
export { default as UHeaderSearchMobile, headerSearchMobileProps } from './src/HeaderSearchMobile';
|
|
8
|
+
export { default as UHeaderSearchDesktop, headerSearchDesktopProps } from './src/HeaderSearchDesktop';
|
|
9
|
+
export type { HeaderProps } from './src/Header';
|
|
10
|
+
export { default as UHeaderSearchResults, headerSearchResultsProps } from './src/HeaderSearchResults';
|
|
11
|
+
export type { HeaderMenuOption, HeaderMenuColumnOption, HeaderMenuChildOption, HeaderMenuGroupOption, HeaderMenuDividerOption, HeaderMenuPlacement, HeaderMenuTrigger, HeaderMenuTabsProps, LangOption, HeaderSearchResult, HeaderSearchHandler } from './src/interface';
|
|
12
|
+
export * from './src/utils';
|