@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
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
18
|
+
};
|
|
19
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
|
+
exports.headerSearchResultsProps = exports.UHeaderSearchResults = exports.headerSearchDesktopProps = exports.UHeaderSearchDesktop = exports.headerSearchMobileProps = exports.UHeaderSearchMobile = exports.headerMobileLayoutProps = exports.UHeaderMobileLayout = exports.headerDesktopLayoutProps = exports.UHeaderDesktopLayout = exports.headerActionsProps = exports.UHeaderActions = exports.headerMobileProps = exports.UHeaderMobile = exports.headerNavigationProps = exports.UHeaderNavigation = exports.headerProps = exports.UHeader = void 0;
|
|
21
|
+
var Header_1 = require("./src/Header");
|
|
22
|
+
Object.defineProperty(exports, "UHeader", { enumerable: true, get: function () { return __importDefault(Header_1).default; } });
|
|
23
|
+
Object.defineProperty(exports, "headerProps", { enumerable: true, get: function () { return Header_1.headerProps; } });
|
|
24
|
+
var HeaderNavigation_1 = require("./src/HeaderNavigation");
|
|
25
|
+
Object.defineProperty(exports, "UHeaderNavigation", { enumerable: true, get: function () { return __importDefault(HeaderNavigation_1).default; } });
|
|
26
|
+
Object.defineProperty(exports, "headerNavigationProps", { enumerable: true, get: function () { return HeaderNavigation_1.headerNavigationProps; } });
|
|
27
|
+
var HeaderMobile_1 = require("./src/mobile/HeaderMobile");
|
|
28
|
+
Object.defineProperty(exports, "UHeaderMobile", { enumerable: true, get: function () { return __importDefault(HeaderMobile_1).default; } });
|
|
29
|
+
Object.defineProperty(exports, "headerMobileProps", { enumerable: true, get: function () { return HeaderMobile_1.headerMobileProps; } });
|
|
30
|
+
var HeaderActions_1 = require("./src/HeaderActions");
|
|
31
|
+
Object.defineProperty(exports, "UHeaderActions", { enumerable: true, get: function () { return __importDefault(HeaderActions_1).default; } });
|
|
32
|
+
Object.defineProperty(exports, "headerActionsProps", { enumerable: true, get: function () { return HeaderActions_1.headerActionsProps; } });
|
|
33
|
+
var HeaderDesktopLayout_1 = require("./src/HeaderDesktopLayout");
|
|
34
|
+
Object.defineProperty(exports, "UHeaderDesktopLayout", { enumerable: true, get: function () { return __importDefault(HeaderDesktopLayout_1).default; } });
|
|
35
|
+
Object.defineProperty(exports, "headerDesktopLayoutProps", { enumerable: true, get: function () { return HeaderDesktopLayout_1.headerDesktopLayoutProps; } });
|
|
36
|
+
var HeaderMobileLayout_1 = require("./src/HeaderMobileLayout");
|
|
37
|
+
Object.defineProperty(exports, "UHeaderMobileLayout", { enumerable: true, get: function () { return __importDefault(HeaderMobileLayout_1).default; } });
|
|
38
|
+
Object.defineProperty(exports, "headerMobileLayoutProps", { enumerable: true, get: function () { return HeaderMobileLayout_1.headerMobileLayoutProps; } });
|
|
39
|
+
var HeaderSearchMobile_1 = require("./src/HeaderSearchMobile");
|
|
40
|
+
Object.defineProperty(exports, "UHeaderSearchMobile", { enumerable: true, get: function () { return __importDefault(HeaderSearchMobile_1).default; } });
|
|
41
|
+
Object.defineProperty(exports, "headerSearchMobileProps", { enumerable: true, get: function () { return HeaderSearchMobile_1.headerSearchMobileProps; } });
|
|
42
|
+
var HeaderSearchDesktop_1 = require("./src/HeaderSearchDesktop");
|
|
43
|
+
Object.defineProperty(exports, "UHeaderSearchDesktop", { enumerable: true, get: function () { return __importDefault(HeaderSearchDesktop_1).default; } });
|
|
44
|
+
Object.defineProperty(exports, "headerSearchDesktopProps", { enumerable: true, get: function () { return HeaderSearchDesktop_1.headerSearchDesktopProps; } });
|
|
45
|
+
var HeaderSearchResults_1 = require("./src/HeaderSearchResults");
|
|
46
|
+
Object.defineProperty(exports, "UHeaderSearchResults", { enumerable: true, get: function () { return __importDefault(HeaderSearchResults_1).default; } });
|
|
47
|
+
Object.defineProperty(exports, "headerSearchResultsProps", { enumerable: true, get: function () { return HeaderSearchResults_1.headerSearchResultsProps; } });
|
|
48
|
+
__exportStar(require("./src/utils"), exports);
|
|
@@ -0,0 +1,604 @@
|
|
|
1
|
+
import { type PropType, type ExtractPropTypes, ComputedRef } from 'vue';
|
|
2
|
+
import { type MaybeArray } from '../../_utils';
|
|
3
|
+
import type { HeaderProps as HeaderPropsInterface, HeaderMenuOption, LangOption, HeaderSearchResult } from './interface';
|
|
4
|
+
export type HeaderSetupProps = ExtractPropTypes<typeof headerProps>;
|
|
5
|
+
export type HeaderProps = Partial<HeaderSetupProps>;
|
|
6
|
+
export declare const headerProps: {
|
|
7
|
+
menuOptions: {
|
|
8
|
+
type: PropType<HeaderPropsInterface["menuOptions"]>;
|
|
9
|
+
default: () => never[];
|
|
10
|
+
};
|
|
11
|
+
langOptions: {
|
|
12
|
+
type: PropType<HeaderPropsInterface["langOptions"]>;
|
|
13
|
+
default: () => LangOption[];
|
|
14
|
+
};
|
|
15
|
+
defaultLang: PropType<HeaderPropsInterface["defaultLang"]>;
|
|
16
|
+
menuPlacement: {
|
|
17
|
+
type: PropType<HeaderPropsInterface["menuPlacement"]>;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
menuTrigger: {
|
|
21
|
+
type: PropType<HeaderPropsInterface["menuTrigger"]>;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
menuValue: PropType<HeaderPropsInterface["menuValue"]>;
|
|
25
|
+
defaultMenuValue: PropType<HeaderPropsInterface["defaultMenuValue"]>;
|
|
26
|
+
menuTabsProps: {
|
|
27
|
+
type: PropType<HeaderPropsInterface["menuTabsProps"]>;
|
|
28
|
+
default: () => {};
|
|
29
|
+
};
|
|
30
|
+
menuCardMinColumnWidth: {
|
|
31
|
+
type: PropType<HeaderPropsInterface["menuCardMinColumnWidth"]>;
|
|
32
|
+
default: number;
|
|
33
|
+
};
|
|
34
|
+
logoSrc: {
|
|
35
|
+
type: PropType<HeaderPropsInterface["logoSrc"]>;
|
|
36
|
+
default: () => string;
|
|
37
|
+
};
|
|
38
|
+
logoAlt: {
|
|
39
|
+
type: PropType<HeaderPropsInterface["logoAlt"]>;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
responsive: {
|
|
43
|
+
type: PropType<HeaderPropsInterface["responsive"]>;
|
|
44
|
+
default: boolean;
|
|
45
|
+
};
|
|
46
|
+
mobileMenuType: {
|
|
47
|
+
type: PropType<"drawer" | "dropdown">;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
mobileActionsCollapse: {
|
|
51
|
+
type: PropType<HeaderPropsInterface["mobileActionsCollapse"]>;
|
|
52
|
+
default: boolean;
|
|
53
|
+
};
|
|
54
|
+
mobileShowFooterActions: {
|
|
55
|
+
type: PropType<HeaderPropsInterface["mobileShowFooterActions"]>;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
mobilePrimaryActionText: {
|
|
59
|
+
type: PropType<HeaderPropsInterface["mobilePrimaryActionText"]>;
|
|
60
|
+
default: undefined;
|
|
61
|
+
};
|
|
62
|
+
mobileSecondaryActionText: {
|
|
63
|
+
type: PropType<HeaderPropsInterface["mobileSecondaryActionText"]>;
|
|
64
|
+
default: undefined;
|
|
65
|
+
};
|
|
66
|
+
mobileShowHeaderActions: {
|
|
67
|
+
type: PropType<HeaderPropsInterface["mobileShowHeaderActions"]>;
|
|
68
|
+
default: boolean;
|
|
69
|
+
};
|
|
70
|
+
onSearch: PropType<HeaderPropsInterface["onSearch"]>;
|
|
71
|
+
'onUpdate:menuValue': PropType<MaybeArray<(value: string | number | null) => void>>;
|
|
72
|
+
onUpdateMenuValue: PropType<MaybeArray<HeaderPropsInterface["onUpdateMenuValue"]>>;
|
|
73
|
+
theme: PropType<import("../../_mixins").Theme<"Header", {
|
|
74
|
+
fontSize: string;
|
|
75
|
+
fontBodyLarge: string;
|
|
76
|
+
fontTitleSmall: string;
|
|
77
|
+
backgroundColor: string;
|
|
78
|
+
textColor: string;
|
|
79
|
+
mutedTextColor: string;
|
|
80
|
+
borderRadius: string;
|
|
81
|
+
shadow: string;
|
|
82
|
+
navigationGap: string;
|
|
83
|
+
actionGap: string;
|
|
84
|
+
tabTextColor: string;
|
|
85
|
+
tabTextColorHover: string;
|
|
86
|
+
tabTextColorActive: string;
|
|
87
|
+
tabIndicatorColor: string;
|
|
88
|
+
cardBackgroundColor: string;
|
|
89
|
+
cardShadow: string;
|
|
90
|
+
cardBorderRadius: string;
|
|
91
|
+
cardTitleColor: string;
|
|
92
|
+
cardItemColor: string;
|
|
93
|
+
cardItemHoverColor: string;
|
|
94
|
+
cardDividerColor: string;
|
|
95
|
+
cardGap: string;
|
|
96
|
+
cardPadding: string;
|
|
97
|
+
badgeBackgroundColor: string;
|
|
98
|
+
badgeTextColor: string;
|
|
99
|
+
actionIconColor: string;
|
|
100
|
+
actionIconColorHover: string;
|
|
101
|
+
mobileBorderColor: string;
|
|
102
|
+
mobileItemHoverColor: string;
|
|
103
|
+
mobileItemPressedColor: string;
|
|
104
|
+
mobileItemActiveColor: string;
|
|
105
|
+
mobileGroupItemColor: string;
|
|
106
|
+
}, unknown>>;
|
|
107
|
+
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Header", {
|
|
108
|
+
fontSize: string;
|
|
109
|
+
fontBodyLarge: string;
|
|
110
|
+
fontTitleSmall: string;
|
|
111
|
+
backgroundColor: string;
|
|
112
|
+
textColor: string;
|
|
113
|
+
mutedTextColor: string;
|
|
114
|
+
borderRadius: string;
|
|
115
|
+
shadow: string;
|
|
116
|
+
navigationGap: string;
|
|
117
|
+
actionGap: string;
|
|
118
|
+
tabTextColor: string;
|
|
119
|
+
tabTextColorHover: string;
|
|
120
|
+
tabTextColorActive: string;
|
|
121
|
+
tabIndicatorColor: string;
|
|
122
|
+
cardBackgroundColor: string;
|
|
123
|
+
cardShadow: string;
|
|
124
|
+
cardBorderRadius: string;
|
|
125
|
+
cardTitleColor: string;
|
|
126
|
+
cardItemColor: string;
|
|
127
|
+
cardItemHoverColor: string;
|
|
128
|
+
cardDividerColor: string;
|
|
129
|
+
cardGap: string;
|
|
130
|
+
cardPadding: string;
|
|
131
|
+
badgeBackgroundColor: string;
|
|
132
|
+
badgeTextColor: string;
|
|
133
|
+
actionIconColor: string;
|
|
134
|
+
actionIconColorHover: string;
|
|
135
|
+
mobileBorderColor: string;
|
|
136
|
+
mobileItemHoverColor: string;
|
|
137
|
+
mobileItemPressedColor: string;
|
|
138
|
+
mobileItemActiveColor: string;
|
|
139
|
+
mobileGroupItemColor: string;
|
|
140
|
+
}, unknown>>>;
|
|
141
|
+
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Header", {
|
|
142
|
+
fontSize: string;
|
|
143
|
+
fontBodyLarge: string;
|
|
144
|
+
fontTitleSmall: string;
|
|
145
|
+
backgroundColor: string;
|
|
146
|
+
textColor: string;
|
|
147
|
+
mutedTextColor: string;
|
|
148
|
+
borderRadius: string;
|
|
149
|
+
shadow: string;
|
|
150
|
+
navigationGap: string;
|
|
151
|
+
actionGap: string;
|
|
152
|
+
tabTextColor: string;
|
|
153
|
+
tabTextColorHover: string;
|
|
154
|
+
tabTextColorActive: string;
|
|
155
|
+
tabIndicatorColor: string;
|
|
156
|
+
cardBackgroundColor: string;
|
|
157
|
+
cardShadow: string;
|
|
158
|
+
cardBorderRadius: string;
|
|
159
|
+
cardTitleColor: string;
|
|
160
|
+
cardItemColor: string;
|
|
161
|
+
cardItemHoverColor: string;
|
|
162
|
+
cardDividerColor: string;
|
|
163
|
+
cardGap: string;
|
|
164
|
+
cardPadding: string;
|
|
165
|
+
badgeBackgroundColor: string;
|
|
166
|
+
badgeTextColor: string;
|
|
167
|
+
actionIconColor: string;
|
|
168
|
+
actionIconColorHover: string;
|
|
169
|
+
mobileBorderColor: string;
|
|
170
|
+
mobileItemHoverColor: string;
|
|
171
|
+
mobileItemPressedColor: string;
|
|
172
|
+
mobileItemActiveColor: string;
|
|
173
|
+
mobileGroupItemColor: string;
|
|
174
|
+
}, unknown>>>;
|
|
175
|
+
};
|
|
176
|
+
declare const _default: import("vue").DefineComponent<{
|
|
177
|
+
menuOptions: {
|
|
178
|
+
type: PropType<HeaderPropsInterface["menuOptions"]>;
|
|
179
|
+
default: () => never[];
|
|
180
|
+
};
|
|
181
|
+
langOptions: {
|
|
182
|
+
type: PropType<HeaderPropsInterface["langOptions"]>;
|
|
183
|
+
default: () => LangOption[];
|
|
184
|
+
};
|
|
185
|
+
defaultLang: PropType<HeaderPropsInterface["defaultLang"]>;
|
|
186
|
+
menuPlacement: {
|
|
187
|
+
type: PropType<HeaderPropsInterface["menuPlacement"]>;
|
|
188
|
+
default: string;
|
|
189
|
+
};
|
|
190
|
+
menuTrigger: {
|
|
191
|
+
type: PropType<HeaderPropsInterface["menuTrigger"]>;
|
|
192
|
+
default: string;
|
|
193
|
+
};
|
|
194
|
+
menuValue: PropType<HeaderPropsInterface["menuValue"]>;
|
|
195
|
+
defaultMenuValue: PropType<HeaderPropsInterface["defaultMenuValue"]>;
|
|
196
|
+
menuTabsProps: {
|
|
197
|
+
type: PropType<HeaderPropsInterface["menuTabsProps"]>;
|
|
198
|
+
default: () => {};
|
|
199
|
+
};
|
|
200
|
+
menuCardMinColumnWidth: {
|
|
201
|
+
type: PropType<HeaderPropsInterface["menuCardMinColumnWidth"]>;
|
|
202
|
+
default: number;
|
|
203
|
+
};
|
|
204
|
+
logoSrc: {
|
|
205
|
+
type: PropType<HeaderPropsInterface["logoSrc"]>;
|
|
206
|
+
default: () => string;
|
|
207
|
+
};
|
|
208
|
+
logoAlt: {
|
|
209
|
+
type: PropType<HeaderPropsInterface["logoAlt"]>;
|
|
210
|
+
default: string;
|
|
211
|
+
};
|
|
212
|
+
responsive: {
|
|
213
|
+
type: PropType<HeaderPropsInterface["responsive"]>;
|
|
214
|
+
default: boolean;
|
|
215
|
+
};
|
|
216
|
+
mobileMenuType: {
|
|
217
|
+
type: PropType<"drawer" | "dropdown">;
|
|
218
|
+
default: string;
|
|
219
|
+
};
|
|
220
|
+
mobileActionsCollapse: {
|
|
221
|
+
type: PropType<HeaderPropsInterface["mobileActionsCollapse"]>;
|
|
222
|
+
default: boolean;
|
|
223
|
+
};
|
|
224
|
+
mobileShowFooterActions: {
|
|
225
|
+
type: PropType<HeaderPropsInterface["mobileShowFooterActions"]>;
|
|
226
|
+
default: boolean;
|
|
227
|
+
};
|
|
228
|
+
mobilePrimaryActionText: {
|
|
229
|
+
type: PropType<HeaderPropsInterface["mobilePrimaryActionText"]>;
|
|
230
|
+
default: undefined;
|
|
231
|
+
};
|
|
232
|
+
mobileSecondaryActionText: {
|
|
233
|
+
type: PropType<HeaderPropsInterface["mobileSecondaryActionText"]>;
|
|
234
|
+
default: undefined;
|
|
235
|
+
};
|
|
236
|
+
mobileShowHeaderActions: {
|
|
237
|
+
type: PropType<HeaderPropsInterface["mobileShowHeaderActions"]>;
|
|
238
|
+
default: boolean;
|
|
239
|
+
};
|
|
240
|
+
onSearch: PropType<HeaderPropsInterface["onSearch"]>;
|
|
241
|
+
'onUpdate:menuValue': PropType<MaybeArray<(value: string | number | null) => void>>;
|
|
242
|
+
onUpdateMenuValue: PropType<MaybeArray<HeaderPropsInterface["onUpdateMenuValue"]>>;
|
|
243
|
+
theme: PropType<import("../../_mixins").Theme<"Header", {
|
|
244
|
+
fontSize: string;
|
|
245
|
+
fontBodyLarge: string;
|
|
246
|
+
fontTitleSmall: string;
|
|
247
|
+
backgroundColor: string;
|
|
248
|
+
textColor: string;
|
|
249
|
+
mutedTextColor: string;
|
|
250
|
+
borderRadius: string;
|
|
251
|
+
shadow: string;
|
|
252
|
+
navigationGap: string;
|
|
253
|
+
actionGap: string;
|
|
254
|
+
tabTextColor: string;
|
|
255
|
+
tabTextColorHover: string;
|
|
256
|
+
tabTextColorActive: string;
|
|
257
|
+
tabIndicatorColor: string;
|
|
258
|
+
cardBackgroundColor: string;
|
|
259
|
+
cardShadow: string;
|
|
260
|
+
cardBorderRadius: string;
|
|
261
|
+
cardTitleColor: string;
|
|
262
|
+
cardItemColor: string;
|
|
263
|
+
cardItemHoverColor: string;
|
|
264
|
+
cardDividerColor: string;
|
|
265
|
+
cardGap: string;
|
|
266
|
+
cardPadding: string;
|
|
267
|
+
badgeBackgroundColor: string;
|
|
268
|
+
badgeTextColor: string;
|
|
269
|
+
actionIconColor: string;
|
|
270
|
+
actionIconColorHover: string;
|
|
271
|
+
mobileBorderColor: string;
|
|
272
|
+
mobileItemHoverColor: string;
|
|
273
|
+
mobileItemPressedColor: string;
|
|
274
|
+
mobileItemActiveColor: string;
|
|
275
|
+
mobileGroupItemColor: string;
|
|
276
|
+
}, unknown>>;
|
|
277
|
+
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Header", {
|
|
278
|
+
fontSize: string;
|
|
279
|
+
fontBodyLarge: string;
|
|
280
|
+
fontTitleSmall: string;
|
|
281
|
+
backgroundColor: string;
|
|
282
|
+
textColor: string;
|
|
283
|
+
mutedTextColor: string;
|
|
284
|
+
borderRadius: string;
|
|
285
|
+
shadow: string;
|
|
286
|
+
navigationGap: string;
|
|
287
|
+
actionGap: string;
|
|
288
|
+
tabTextColor: string;
|
|
289
|
+
tabTextColorHover: string;
|
|
290
|
+
tabTextColorActive: string;
|
|
291
|
+
tabIndicatorColor: string;
|
|
292
|
+
cardBackgroundColor: string;
|
|
293
|
+
cardShadow: string;
|
|
294
|
+
cardBorderRadius: string;
|
|
295
|
+
cardTitleColor: string;
|
|
296
|
+
cardItemColor: string;
|
|
297
|
+
cardItemHoverColor: string;
|
|
298
|
+
cardDividerColor: string;
|
|
299
|
+
cardGap: string;
|
|
300
|
+
cardPadding: string;
|
|
301
|
+
badgeBackgroundColor: string;
|
|
302
|
+
badgeTextColor: string;
|
|
303
|
+
actionIconColor: string;
|
|
304
|
+
actionIconColorHover: string;
|
|
305
|
+
mobileBorderColor: string;
|
|
306
|
+
mobileItemHoverColor: string;
|
|
307
|
+
mobileItemPressedColor: string;
|
|
308
|
+
mobileItemActiveColor: string;
|
|
309
|
+
mobileGroupItemColor: string;
|
|
310
|
+
}, unknown>>>;
|
|
311
|
+
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Header", {
|
|
312
|
+
fontSize: string;
|
|
313
|
+
fontBodyLarge: string;
|
|
314
|
+
fontTitleSmall: string;
|
|
315
|
+
backgroundColor: string;
|
|
316
|
+
textColor: string;
|
|
317
|
+
mutedTextColor: string;
|
|
318
|
+
borderRadius: string;
|
|
319
|
+
shadow: string;
|
|
320
|
+
navigationGap: string;
|
|
321
|
+
actionGap: string;
|
|
322
|
+
tabTextColor: string;
|
|
323
|
+
tabTextColorHover: string;
|
|
324
|
+
tabTextColorActive: string;
|
|
325
|
+
tabIndicatorColor: string;
|
|
326
|
+
cardBackgroundColor: string;
|
|
327
|
+
cardShadow: string;
|
|
328
|
+
cardBorderRadius: string;
|
|
329
|
+
cardTitleColor: string;
|
|
330
|
+
cardItemColor: string;
|
|
331
|
+
cardItemHoverColor: string;
|
|
332
|
+
cardDividerColor: string;
|
|
333
|
+
cardGap: string;
|
|
334
|
+
cardPadding: string;
|
|
335
|
+
badgeBackgroundColor: string;
|
|
336
|
+
badgeTextColor: string;
|
|
337
|
+
actionIconColor: string;
|
|
338
|
+
actionIconColorHover: string;
|
|
339
|
+
mobileBorderColor: string;
|
|
340
|
+
mobileItemHoverColor: string;
|
|
341
|
+
mobileItemPressedColor: string;
|
|
342
|
+
mobileItemActiveColor: string;
|
|
343
|
+
mobileGroupItemColor: string;
|
|
344
|
+
}, unknown>>>;
|
|
345
|
+
}, {
|
|
346
|
+
mergedClsPrefix: import("vue").Ref<string>;
|
|
347
|
+
cssVars: ComputedRef<{
|
|
348
|
+
'--u-bezier': string;
|
|
349
|
+
'--u-font-size': string;
|
|
350
|
+
'--u-font-title-small': string;
|
|
351
|
+
'--u-header-text-color': string;
|
|
352
|
+
'--u-header-bg-color': string;
|
|
353
|
+
'--u-header-radius': string;
|
|
354
|
+
'--u-header-shadow': string;
|
|
355
|
+
'--u-header-navigation-gap': string;
|
|
356
|
+
'--u-header-action-gap': string;
|
|
357
|
+
'--u-header-tab-text-color': string;
|
|
358
|
+
'--u-header-tab-text-color-hover': string;
|
|
359
|
+
'--u-header-tab-text-color-active': string;
|
|
360
|
+
'--u-header-tab-indicator-color': string;
|
|
361
|
+
'--u-header-card-bg-color': string;
|
|
362
|
+
'--u-header-card-radius': string;
|
|
363
|
+
'--u-header-card-title-color': string;
|
|
364
|
+
'--u-header-card-item-color': string;
|
|
365
|
+
'--u-header-card-item-hover-color': string;
|
|
366
|
+
'--u-header-card-divider-color': string;
|
|
367
|
+
'--u-header-card-gap': string;
|
|
368
|
+
'--u-header-card-padding': string;
|
|
369
|
+
'--u-header-badge-bg-color': string;
|
|
370
|
+
'--u-header-badge-text-color': string;
|
|
371
|
+
'--u-header-action-icon-color': string;
|
|
372
|
+
'--u-header-action-icon-hover-color': string;
|
|
373
|
+
'--u-header-card-min-col-width': string | undefined;
|
|
374
|
+
'--u-header-mobile-border-color': string;
|
|
375
|
+
'--u-header-mobile-item-hover-color': string;
|
|
376
|
+
'--u-header-mobile-item-pressed-color': string;
|
|
377
|
+
'--u-header-mobile-item-active-color': string;
|
|
378
|
+
'--u-header-mobile-group-item-color': string;
|
|
379
|
+
}>;
|
|
380
|
+
themeClass: import("vue").Ref<string>;
|
|
381
|
+
normalizedMenuItems: ComputedRef<{
|
|
382
|
+
option: HeaderMenuOption;
|
|
383
|
+
key: string | number;
|
|
384
|
+
}[] | undefined>;
|
|
385
|
+
mergedMenuValue: ComputedRef<string | number | null>;
|
|
386
|
+
currentLang: import("vue").Ref<{
|
|
387
|
+
label: string | (() => import("vue").VNodeChild);
|
|
388
|
+
key: string | number;
|
|
389
|
+
icon?: (() => import("vue").VNodeChild) | undefined;
|
|
390
|
+
}>;
|
|
391
|
+
isMobile: ComputedRef<boolean>;
|
|
392
|
+
mobileMenuVisible: import("vue").Ref<boolean>;
|
|
393
|
+
searchVisible: import("vue").Ref<boolean>;
|
|
394
|
+
handleSelectLang: (key: string | number) => void;
|
|
395
|
+
handleMenuValueUpdate: (value: string | number | null) => void;
|
|
396
|
+
handleSearchClick: () => void;
|
|
397
|
+
handleSearchClose: () => void;
|
|
398
|
+
handleSearch: (query: string) => Promise<HeaderSearchResult[]>;
|
|
399
|
+
handleSearchResultSelect: (result: HeaderSearchResult) => void;
|
|
400
|
+
handlePreviewClick: () => void;
|
|
401
|
+
handleLogoutClick: () => void;
|
|
402
|
+
toggleMobileMenu: () => void;
|
|
403
|
+
closeMobileMenu: () => void;
|
|
404
|
+
handleMobileMenuItemClick: (option: HeaderMenuOption) => void;
|
|
405
|
+
handleMobilePrimaryAction: () => void;
|
|
406
|
+
handleMobileSecondaryAction: () => void;
|
|
407
|
+
menuPaneClass: ComputedRef<string>;
|
|
408
|
+
menuPaneWrapperClass: ComputedRef<string>;
|
|
409
|
+
onRender: () => void;
|
|
410
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ["search", "search-result-select", "preview", "logout", "language-select", "mobile-primary-action", "mobile-secondary-action"], "search" | "logout" | "preview" | "search-result-select" | "language-select" | "mobile-primary-action" | "mobile-secondary-action", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
411
|
+
menuOptions: {
|
|
412
|
+
type: PropType<HeaderPropsInterface["menuOptions"]>;
|
|
413
|
+
default: () => never[];
|
|
414
|
+
};
|
|
415
|
+
langOptions: {
|
|
416
|
+
type: PropType<HeaderPropsInterface["langOptions"]>;
|
|
417
|
+
default: () => LangOption[];
|
|
418
|
+
};
|
|
419
|
+
defaultLang: PropType<HeaderPropsInterface["defaultLang"]>;
|
|
420
|
+
menuPlacement: {
|
|
421
|
+
type: PropType<HeaderPropsInterface["menuPlacement"]>;
|
|
422
|
+
default: string;
|
|
423
|
+
};
|
|
424
|
+
menuTrigger: {
|
|
425
|
+
type: PropType<HeaderPropsInterface["menuTrigger"]>;
|
|
426
|
+
default: string;
|
|
427
|
+
};
|
|
428
|
+
menuValue: PropType<HeaderPropsInterface["menuValue"]>;
|
|
429
|
+
defaultMenuValue: PropType<HeaderPropsInterface["defaultMenuValue"]>;
|
|
430
|
+
menuTabsProps: {
|
|
431
|
+
type: PropType<HeaderPropsInterface["menuTabsProps"]>;
|
|
432
|
+
default: () => {};
|
|
433
|
+
};
|
|
434
|
+
menuCardMinColumnWidth: {
|
|
435
|
+
type: PropType<HeaderPropsInterface["menuCardMinColumnWidth"]>;
|
|
436
|
+
default: number;
|
|
437
|
+
};
|
|
438
|
+
logoSrc: {
|
|
439
|
+
type: PropType<HeaderPropsInterface["logoSrc"]>;
|
|
440
|
+
default: () => string;
|
|
441
|
+
};
|
|
442
|
+
logoAlt: {
|
|
443
|
+
type: PropType<HeaderPropsInterface["logoAlt"]>;
|
|
444
|
+
default: string;
|
|
445
|
+
};
|
|
446
|
+
responsive: {
|
|
447
|
+
type: PropType<HeaderPropsInterface["responsive"]>;
|
|
448
|
+
default: boolean;
|
|
449
|
+
};
|
|
450
|
+
mobileMenuType: {
|
|
451
|
+
type: PropType<"drawer" | "dropdown">;
|
|
452
|
+
default: string;
|
|
453
|
+
};
|
|
454
|
+
mobileActionsCollapse: {
|
|
455
|
+
type: PropType<HeaderPropsInterface["mobileActionsCollapse"]>;
|
|
456
|
+
default: boolean;
|
|
457
|
+
};
|
|
458
|
+
mobileShowFooterActions: {
|
|
459
|
+
type: PropType<HeaderPropsInterface["mobileShowFooterActions"]>;
|
|
460
|
+
default: boolean;
|
|
461
|
+
};
|
|
462
|
+
mobilePrimaryActionText: {
|
|
463
|
+
type: PropType<HeaderPropsInterface["mobilePrimaryActionText"]>;
|
|
464
|
+
default: undefined;
|
|
465
|
+
};
|
|
466
|
+
mobileSecondaryActionText: {
|
|
467
|
+
type: PropType<HeaderPropsInterface["mobileSecondaryActionText"]>;
|
|
468
|
+
default: undefined;
|
|
469
|
+
};
|
|
470
|
+
mobileShowHeaderActions: {
|
|
471
|
+
type: PropType<HeaderPropsInterface["mobileShowHeaderActions"]>;
|
|
472
|
+
default: boolean;
|
|
473
|
+
};
|
|
474
|
+
onSearch: PropType<HeaderPropsInterface["onSearch"]>;
|
|
475
|
+
'onUpdate:menuValue': PropType<MaybeArray<(value: string | number | null) => void>>;
|
|
476
|
+
onUpdateMenuValue: PropType<MaybeArray<HeaderPropsInterface["onUpdateMenuValue"]>>;
|
|
477
|
+
theme: PropType<import("../../_mixins").Theme<"Header", {
|
|
478
|
+
fontSize: string;
|
|
479
|
+
fontBodyLarge: string;
|
|
480
|
+
fontTitleSmall: string;
|
|
481
|
+
backgroundColor: string;
|
|
482
|
+
textColor: string;
|
|
483
|
+
mutedTextColor: string;
|
|
484
|
+
borderRadius: string;
|
|
485
|
+
shadow: string;
|
|
486
|
+
navigationGap: string;
|
|
487
|
+
actionGap: string;
|
|
488
|
+
tabTextColor: string;
|
|
489
|
+
tabTextColorHover: string;
|
|
490
|
+
tabTextColorActive: string;
|
|
491
|
+
tabIndicatorColor: string;
|
|
492
|
+
cardBackgroundColor: string;
|
|
493
|
+
cardShadow: string;
|
|
494
|
+
cardBorderRadius: string;
|
|
495
|
+
cardTitleColor: string;
|
|
496
|
+
cardItemColor: string;
|
|
497
|
+
cardItemHoverColor: string;
|
|
498
|
+
cardDividerColor: string;
|
|
499
|
+
cardGap: string;
|
|
500
|
+
cardPadding: string;
|
|
501
|
+
badgeBackgroundColor: string;
|
|
502
|
+
badgeTextColor: string;
|
|
503
|
+
actionIconColor: string;
|
|
504
|
+
actionIconColorHover: string;
|
|
505
|
+
mobileBorderColor: string;
|
|
506
|
+
mobileItemHoverColor: string;
|
|
507
|
+
mobileItemPressedColor: string;
|
|
508
|
+
mobileItemActiveColor: string;
|
|
509
|
+
mobileGroupItemColor: string;
|
|
510
|
+
}, unknown>>;
|
|
511
|
+
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Header", {
|
|
512
|
+
fontSize: string;
|
|
513
|
+
fontBodyLarge: string;
|
|
514
|
+
fontTitleSmall: string;
|
|
515
|
+
backgroundColor: string;
|
|
516
|
+
textColor: string;
|
|
517
|
+
mutedTextColor: string;
|
|
518
|
+
borderRadius: string;
|
|
519
|
+
shadow: string;
|
|
520
|
+
navigationGap: string;
|
|
521
|
+
actionGap: string;
|
|
522
|
+
tabTextColor: string;
|
|
523
|
+
tabTextColorHover: string;
|
|
524
|
+
tabTextColorActive: string;
|
|
525
|
+
tabIndicatorColor: string;
|
|
526
|
+
cardBackgroundColor: string;
|
|
527
|
+
cardShadow: string;
|
|
528
|
+
cardBorderRadius: string;
|
|
529
|
+
cardTitleColor: string;
|
|
530
|
+
cardItemColor: string;
|
|
531
|
+
cardItemHoverColor: string;
|
|
532
|
+
cardDividerColor: string;
|
|
533
|
+
cardGap: string;
|
|
534
|
+
cardPadding: string;
|
|
535
|
+
badgeBackgroundColor: string;
|
|
536
|
+
badgeTextColor: string;
|
|
537
|
+
actionIconColor: string;
|
|
538
|
+
actionIconColorHover: string;
|
|
539
|
+
mobileBorderColor: string;
|
|
540
|
+
mobileItemHoverColor: string;
|
|
541
|
+
mobileItemPressedColor: string;
|
|
542
|
+
mobileItemActiveColor: string;
|
|
543
|
+
mobileGroupItemColor: string;
|
|
544
|
+
}, unknown>>>;
|
|
545
|
+
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Header", {
|
|
546
|
+
fontSize: string;
|
|
547
|
+
fontBodyLarge: string;
|
|
548
|
+
fontTitleSmall: string;
|
|
549
|
+
backgroundColor: string;
|
|
550
|
+
textColor: string;
|
|
551
|
+
mutedTextColor: string;
|
|
552
|
+
borderRadius: string;
|
|
553
|
+
shadow: string;
|
|
554
|
+
navigationGap: string;
|
|
555
|
+
actionGap: string;
|
|
556
|
+
tabTextColor: string;
|
|
557
|
+
tabTextColorHover: string;
|
|
558
|
+
tabTextColorActive: string;
|
|
559
|
+
tabIndicatorColor: string;
|
|
560
|
+
cardBackgroundColor: string;
|
|
561
|
+
cardShadow: string;
|
|
562
|
+
cardBorderRadius: string;
|
|
563
|
+
cardTitleColor: string;
|
|
564
|
+
cardItemColor: string;
|
|
565
|
+
cardItemHoverColor: string;
|
|
566
|
+
cardDividerColor: string;
|
|
567
|
+
cardGap: string;
|
|
568
|
+
cardPadding: string;
|
|
569
|
+
badgeBackgroundColor: string;
|
|
570
|
+
badgeTextColor: string;
|
|
571
|
+
actionIconColor: string;
|
|
572
|
+
actionIconColorHover: string;
|
|
573
|
+
mobileBorderColor: string;
|
|
574
|
+
mobileItemHoverColor: string;
|
|
575
|
+
mobileItemPressedColor: string;
|
|
576
|
+
mobileItemActiveColor: string;
|
|
577
|
+
mobileGroupItemColor: string;
|
|
578
|
+
}, unknown>>>;
|
|
579
|
+
}>> & {
|
|
580
|
+
onSearch?: ((...args: any[]) => any) | undefined;
|
|
581
|
+
onPreview?: ((...args: any[]) => any) | undefined;
|
|
582
|
+
onLogout?: ((...args: any[]) => any) | undefined;
|
|
583
|
+
"onSearch-result-select"?: ((...args: any[]) => any) | undefined;
|
|
584
|
+
"onLanguage-select"?: ((...args: any[]) => any) | undefined;
|
|
585
|
+
"onMobile-primary-action"?: ((...args: any[]) => any) | undefined;
|
|
586
|
+
"onMobile-secondary-action"?: ((...args: any[]) => any) | undefined;
|
|
587
|
+
}, {
|
|
588
|
+
responsive: boolean | undefined;
|
|
589
|
+
menuOptions: HeaderMenuOption[] | undefined;
|
|
590
|
+
langOptions: LangOption[] | undefined;
|
|
591
|
+
menuPlacement: import("./interface").HeaderMenuPlacement | undefined;
|
|
592
|
+
menuTrigger: import("./interface").HeaderMenuTrigger | undefined;
|
|
593
|
+
menuTabsProps: Partial<import("../..").TabsProps> | undefined;
|
|
594
|
+
menuCardMinColumnWidth: string | number | undefined;
|
|
595
|
+
logoSrc: string | undefined;
|
|
596
|
+
logoAlt: string | undefined;
|
|
597
|
+
mobileActionsCollapse: boolean | undefined;
|
|
598
|
+
mobileShowFooterActions: boolean | undefined;
|
|
599
|
+
mobilePrimaryActionText: string | undefined;
|
|
600
|
+
mobileSecondaryActionText: string | undefined;
|
|
601
|
+
mobileShowHeaderActions: boolean | undefined;
|
|
602
|
+
mobileMenuType: "drawer" | "dropdown";
|
|
603
|
+
}, {}>;
|
|
604
|
+
export default _default;
|