@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
package/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "@uzum-tech/ui",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.12.0",
|
|
6
6
|
"js-types-syntax": "typescript",
|
|
7
7
|
"contributions": {
|
|
8
8
|
"html": {
|
|
@@ -2117,6 +2117,11 @@
|
|
|
2117
2117
|
"description": "Props for icons in footer.",
|
|
2118
2118
|
"default": "undefined"
|
|
2119
2119
|
},
|
|
2120
|
+
{
|
|
2121
|
+
"name": "footer-suffix-icon-props",
|
|
2122
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/chat",
|
|
2123
|
+
"type": "object"
|
|
2124
|
+
},
|
|
2120
2125
|
{
|
|
2121
2126
|
"name": "empty-props",
|
|
2122
2127
|
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/chat",
|
|
@@ -2200,6 +2205,13 @@
|
|
|
2200
2205
|
"type": "string | number",
|
|
2201
2206
|
"description": "Container height of the chat component.",
|
|
2202
2207
|
"default": "800"
|
|
2208
|
+
},
|
|
2209
|
+
{
|
|
2210
|
+
"name": "bubble-actions",
|
|
2211
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/chat",
|
|
2212
|
+
"type": "ChatBubbleAction[]",
|
|
2213
|
+
"description": "Array of actions available in the context menu when right-clicking on a message bubble. Each action defines a key, label, handler, and optional visibility function.",
|
|
2214
|
+
"default": "undefined"
|
|
2203
2215
|
}
|
|
2204
2216
|
],
|
|
2205
2217
|
"js": {
|
|
@@ -7590,7 +7602,12 @@
|
|
|
7590
7602
|
}
|
|
7591
7603
|
],
|
|
7592
7604
|
"js": {
|
|
7593
|
-
"events": [
|
|
7605
|
+
"events": [
|
|
7606
|
+
{
|
|
7607
|
+
"name": "click",
|
|
7608
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/icon"
|
|
7609
|
+
}
|
|
7610
|
+
]
|
|
7594
7611
|
}
|
|
7595
7612
|
},
|
|
7596
7613
|
{
|
|
@@ -18173,6 +18190,841 @@
|
|
|
18173
18190
|
"js": {
|
|
18174
18191
|
"events": []
|
|
18175
18192
|
}
|
|
18193
|
+
},
|
|
18194
|
+
{
|
|
18195
|
+
"name": "UHeader",
|
|
18196
|
+
"description": "",
|
|
18197
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18198
|
+
"source": {
|
|
18199
|
+
"symbol": "UHeader"
|
|
18200
|
+
},
|
|
18201
|
+
"slots": [
|
|
18202
|
+
{
|
|
18203
|
+
"name": "logo",
|
|
18204
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18205
|
+
"description": "Logo content."
|
|
18206
|
+
},
|
|
18207
|
+
{
|
|
18208
|
+
"name": "navigation",
|
|
18209
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18210
|
+
"description": "Navigation content."
|
|
18211
|
+
},
|
|
18212
|
+
{
|
|
18213
|
+
"name": "action",
|
|
18214
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18215
|
+
"description": "Action area content."
|
|
18216
|
+
},
|
|
18217
|
+
{
|
|
18218
|
+
"name": "mobile-actions",
|
|
18219
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18220
|
+
"description": "Custom actions content for mobile menu header."
|
|
18221
|
+
},
|
|
18222
|
+
{
|
|
18223
|
+
"name": "mobile-footer",
|
|
18224
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18225
|
+
"description": "Custom footer content for mobile menu."
|
|
18226
|
+
}
|
|
18227
|
+
],
|
|
18228
|
+
"attributes": [],
|
|
18229
|
+
"props": [
|
|
18230
|
+
{
|
|
18231
|
+
"name": "menu-options",
|
|
18232
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18233
|
+
"type": "MenuOption[]",
|
|
18234
|
+
"description": "Navigation data rendered as tabs with grid dropdown cards.",
|
|
18235
|
+
"default": "[]"
|
|
18236
|
+
},
|
|
18237
|
+
{
|
|
18238
|
+
"name": "lang-options",
|
|
18239
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18240
|
+
"type": "LangOption[]",
|
|
18241
|
+
"description": "Language options for the language switcher.",
|
|
18242
|
+
"default": "[en, ru, uz]"
|
|
18243
|
+
},
|
|
18244
|
+
{
|
|
18245
|
+
"name": "default-lang",
|
|
18246
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18247
|
+
"type": "string | number",
|
|
18248
|
+
"description": "Default language key (if not set, first option is used).",
|
|
18249
|
+
"default": "undefined"
|
|
18250
|
+
},
|
|
18251
|
+
{
|
|
18252
|
+
"name": "menu-placement",
|
|
18253
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18254
|
+
"type": "'horizontal' | 'vertical' | 'top' | 'bottom' | 'left' | 'right'",
|
|
18255
|
+
"description": "Orientation of the internal `u-tabs`.",
|
|
18256
|
+
"default": "'horizontal'"
|
|
18257
|
+
},
|
|
18258
|
+
{
|
|
18259
|
+
"name": "menu-trigger",
|
|
18260
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18261
|
+
"type": "'click' | 'hover'",
|
|
18262
|
+
"description": "How tabs switch between sections.",
|
|
18263
|
+
"default": "'hover'"
|
|
18264
|
+
},
|
|
18265
|
+
{
|
|
18266
|
+
"name": "menu-value",
|
|
18267
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18268
|
+
"type": "string | number | null",
|
|
18269
|
+
"description": "Controlled active menu key.",
|
|
18270
|
+
"default": "undefined"
|
|
18271
|
+
},
|
|
18272
|
+
{
|
|
18273
|
+
"name": "default-menu-value",
|
|
18274
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18275
|
+
"type": "string | number | null",
|
|
18276
|
+
"description": "Default active menu key.",
|
|
18277
|
+
"default": "null"
|
|
18278
|
+
},
|
|
18279
|
+
{
|
|
18280
|
+
"name": "menu-tabs-props",
|
|
18281
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18282
|
+
"type": "Partial<TabsProps>",
|
|
18283
|
+
"description": "Additional props forwarded to `u-tabs`.",
|
|
18284
|
+
"default": "{}"
|
|
18285
|
+
},
|
|
18286
|
+
{
|
|
18287
|
+
"name": "menu-card-min-column-width",
|
|
18288
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18289
|
+
"type": "number | string",
|
|
18290
|
+
"description": "Minimum width of the dropdown grid columns.",
|
|
18291
|
+
"default": "220"
|
|
18292
|
+
},
|
|
18293
|
+
{
|
|
18294
|
+
"name": "logo-src",
|
|
18295
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18296
|
+
"type": "string",
|
|
18297
|
+
"description": "Source for the default logo when the slot is not provided.",
|
|
18298
|
+
"default": "kapitalbank-logo.svg"
|
|
18299
|
+
},
|
|
18300
|
+
{
|
|
18301
|
+
"name": "logo-alt",
|
|
18302
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18303
|
+
"type": "string",
|
|
18304
|
+
"description": "Alt text for the fallback logo.",
|
|
18305
|
+
"default": "'Header logo'"
|
|
18306
|
+
},
|
|
18307
|
+
{
|
|
18308
|
+
"name": "responsive",
|
|
18309
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18310
|
+
"type": "boolean",
|
|
18311
|
+
"description": "Enable responsive/mobile adaptation.",
|
|
18312
|
+
"default": "true"
|
|
18313
|
+
},
|
|
18314
|
+
{
|
|
18315
|
+
"name": "mobile-menu-type",
|
|
18316
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18317
|
+
"type": "'drawer' | 'dropdown'",
|
|
18318
|
+
"description": "Type of mobile menu presentation.",
|
|
18319
|
+
"default": "'drawer'"
|
|
18320
|
+
},
|
|
18321
|
+
{
|
|
18322
|
+
"name": "mobile-actions-collapse",
|
|
18323
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18324
|
+
"type": "boolean",
|
|
18325
|
+
"description": "Hide most action buttons on mobile, keeping only search.",
|
|
18326
|
+
"default": "true"
|
|
18327
|
+
},
|
|
18328
|
+
{
|
|
18329
|
+
"name": "mobile-show-footer-actions",
|
|
18330
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18331
|
+
"type": "boolean",
|
|
18332
|
+
"description": "Show footer action buttons in mobile menu.",
|
|
18333
|
+
"default": "true"
|
|
18334
|
+
},
|
|
18335
|
+
{
|
|
18336
|
+
"name": "mobile-primary-action-text",
|
|
18337
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18338
|
+
"type": "string",
|
|
18339
|
+
"description": "Text for primary action button in mobile footer.",
|
|
18340
|
+
"default": "'Стать клиентом'"
|
|
18341
|
+
},
|
|
18342
|
+
{
|
|
18343
|
+
"name": "mobile-secondary-action-text",
|
|
18344
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18345
|
+
"type": "string",
|
|
18346
|
+
"description": "Text for secondary action button in mobile footer.",
|
|
18347
|
+
"default": "'Перейти в приложение'"
|
|
18348
|
+
},
|
|
18349
|
+
{
|
|
18350
|
+
"name": "mobile-show-header-actions",
|
|
18351
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18352
|
+
"type": "boolean",
|
|
18353
|
+
"description": "Show header actions (language, search, preview, logout) in mobile menu.",
|
|
18354
|
+
"default": "true"
|
|
18355
|
+
},
|
|
18356
|
+
{
|
|
18357
|
+
"name": "mobile-breakpoint",
|
|
18358
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18359
|
+
"type": "number",
|
|
18360
|
+
"description": "Breakpoint (px) at which mobile mode activates.",
|
|
18361
|
+
"default": "768"
|
|
18362
|
+
},
|
|
18363
|
+
{
|
|
18364
|
+
"name": "mobile-footer-buttons-round",
|
|
18365
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18366
|
+
"type": "boolean",
|
|
18367
|
+
"description": "Make mobile footer buttons rounded.",
|
|
18368
|
+
"default": "true"
|
|
18369
|
+
},
|
|
18370
|
+
{
|
|
18371
|
+
"name": "mobile-close-icon-size",
|
|
18372
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18373
|
+
"type": "number",
|
|
18374
|
+
"description": "Size of the close icon in mobile menu header (px).",
|
|
18375
|
+
"default": "24"
|
|
18376
|
+
},
|
|
18377
|
+
{
|
|
18378
|
+
"name": "mobile-close-icon-color",
|
|
18379
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18380
|
+
"type": "string",
|
|
18381
|
+
"description": "Color of the close icon in mobile menu header.",
|
|
18382
|
+
"default": "undefined"
|
|
18383
|
+
}
|
|
18384
|
+
],
|
|
18385
|
+
"js": {
|
|
18386
|
+
"events": [
|
|
18387
|
+
{
|
|
18388
|
+
"name": "search",
|
|
18389
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18390
|
+
"type": "HeaderSearchHandler",
|
|
18391
|
+
"description": "Async function to handle search queries and return results. Signature: `(query: string) => Promise<HeaderSearchResult[]> \\| HeaderSearchResult[]`",
|
|
18392
|
+
"default": "undefined"
|
|
18393
|
+
},
|
|
18394
|
+
{
|
|
18395
|
+
"name": "update-menu-value",
|
|
18396
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18397
|
+
"type": "(value: string | number | null) => void",
|
|
18398
|
+
"description": "Same as `on-update:menu-value` (kebab-case alias).",
|
|
18399
|
+
"default": "-"
|
|
18400
|
+
},
|
|
18401
|
+
{
|
|
18402
|
+
"name": "update-menu-value",
|
|
18403
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18404
|
+
},
|
|
18405
|
+
{
|
|
18406
|
+
"name": "update:menu-value",
|
|
18407
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18408
|
+
"type": "(value: string | number | null) => void",
|
|
18409
|
+
"description": "Callback when the active menu key changes.",
|
|
18410
|
+
"default": "-"
|
|
18411
|
+
}
|
|
18412
|
+
]
|
|
18413
|
+
}
|
|
18414
|
+
},
|
|
18415
|
+
{
|
|
18416
|
+
"name": "UHeaderNavigation",
|
|
18417
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18418
|
+
"source": {
|
|
18419
|
+
"symbol": "UHeaderNavigation"
|
|
18420
|
+
},
|
|
18421
|
+
"slots": [],
|
|
18422
|
+
"attributes": [],
|
|
18423
|
+
"props": [
|
|
18424
|
+
{
|
|
18425
|
+
"name": "menu-options",
|
|
18426
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18427
|
+
"type": "Array"
|
|
18428
|
+
},
|
|
18429
|
+
{
|
|
18430
|
+
"name": "menu-placement",
|
|
18431
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18432
|
+
"type": "string"
|
|
18433
|
+
},
|
|
18434
|
+
{
|
|
18435
|
+
"name": "menu-trigger",
|
|
18436
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18437
|
+
"type": "string"
|
|
18438
|
+
},
|
|
18439
|
+
{
|
|
18440
|
+
"name": "menu-value",
|
|
18441
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18442
|
+
"type": "string | number"
|
|
18443
|
+
},
|
|
18444
|
+
{
|
|
18445
|
+
"name": "menu-tabs-props",
|
|
18446
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18447
|
+
"type": "object"
|
|
18448
|
+
},
|
|
18449
|
+
{
|
|
18450
|
+
"name": "menu-card-min-column-width",
|
|
18451
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18452
|
+
"type": "number | string"
|
|
18453
|
+
},
|
|
18454
|
+
{
|
|
18455
|
+
"name": "merged-cls-prefix",
|
|
18456
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18457
|
+
"type": "string"
|
|
18458
|
+
},
|
|
18459
|
+
{
|
|
18460
|
+
"name": "menu-pane-class",
|
|
18461
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18462
|
+
"type": "string"
|
|
18463
|
+
},
|
|
18464
|
+
{
|
|
18465
|
+
"name": "menu-pane-wrapper-class",
|
|
18466
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18467
|
+
"type": "string"
|
|
18468
|
+
}
|
|
18469
|
+
],
|
|
18470
|
+
"js": {
|
|
18471
|
+
"events": [
|
|
18472
|
+
{
|
|
18473
|
+
"name": "update-menu-value",
|
|
18474
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18475
|
+
},
|
|
18476
|
+
{
|
|
18477
|
+
"name": "update-menu-value",
|
|
18478
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18479
|
+
}
|
|
18480
|
+
]
|
|
18481
|
+
}
|
|
18482
|
+
},
|
|
18483
|
+
{
|
|
18484
|
+
"name": "UHeaderMobile",
|
|
18485
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18486
|
+
"source": {
|
|
18487
|
+
"symbol": "UHeaderMobile"
|
|
18488
|
+
},
|
|
18489
|
+
"slots": [],
|
|
18490
|
+
"attributes": [],
|
|
18491
|
+
"props": [
|
|
18492
|
+
{
|
|
18493
|
+
"name": "visible",
|
|
18494
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18495
|
+
"type": "boolean"
|
|
18496
|
+
},
|
|
18497
|
+
{
|
|
18498
|
+
"name": "menu-options",
|
|
18499
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18500
|
+
"type": "Array"
|
|
18501
|
+
},
|
|
18502
|
+
{
|
|
18503
|
+
"name": "active-menu-value",
|
|
18504
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18505
|
+
"type": "string | number"
|
|
18506
|
+
},
|
|
18507
|
+
{
|
|
18508
|
+
"name": "lang-options",
|
|
18509
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18510
|
+
"type": "Array"
|
|
18511
|
+
},
|
|
18512
|
+
{
|
|
18513
|
+
"name": "current-lang",
|
|
18514
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18515
|
+
"type": "object"
|
|
18516
|
+
},
|
|
18517
|
+
{
|
|
18518
|
+
"name": "merged-cls-prefix",
|
|
18519
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18520
|
+
"type": "string"
|
|
18521
|
+
},
|
|
18522
|
+
{
|
|
18523
|
+
"name": "css-vars",
|
|
18524
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18525
|
+
"type": "object"
|
|
18526
|
+
},
|
|
18527
|
+
{
|
|
18528
|
+
"name": "menu-type",
|
|
18529
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18530
|
+
"type": "string"
|
|
18531
|
+
},
|
|
18532
|
+
{
|
|
18533
|
+
"name": "drawer-placement",
|
|
18534
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18535
|
+
"type": "string"
|
|
18536
|
+
},
|
|
18537
|
+
{
|
|
18538
|
+
"name": "drawer-width",
|
|
18539
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18540
|
+
"type": "string"
|
|
18541
|
+
},
|
|
18542
|
+
{
|
|
18543
|
+
"name": "show-footer-actions",
|
|
18544
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18545
|
+
"type": "boolean"
|
|
18546
|
+
},
|
|
18547
|
+
{
|
|
18548
|
+
"name": "primary-action-text",
|
|
18549
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18550
|
+
"type": "string"
|
|
18551
|
+
},
|
|
18552
|
+
{
|
|
18553
|
+
"name": "secondary-action-text",
|
|
18554
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18555
|
+
"type": "string"
|
|
18556
|
+
},
|
|
18557
|
+
{
|
|
18558
|
+
"name": "show-header-actions",
|
|
18559
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18560
|
+
"type": "boolean"
|
|
18561
|
+
}
|
|
18562
|
+
],
|
|
18563
|
+
"js": {
|
|
18564
|
+
"events": [
|
|
18565
|
+
{
|
|
18566
|
+
"name": "toggle",
|
|
18567
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18568
|
+
},
|
|
18569
|
+
{
|
|
18570
|
+
"name": "close",
|
|
18571
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18572
|
+
},
|
|
18573
|
+
{
|
|
18574
|
+
"name": "menu-item-click",
|
|
18575
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18576
|
+
},
|
|
18577
|
+
{
|
|
18578
|
+
"name": "language-select",
|
|
18579
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18580
|
+
},
|
|
18581
|
+
{
|
|
18582
|
+
"name": "primary-action",
|
|
18583
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18584
|
+
},
|
|
18585
|
+
{
|
|
18586
|
+
"name": "secondary-action",
|
|
18587
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18588
|
+
},
|
|
18589
|
+
{
|
|
18590
|
+
"name": "search-click",
|
|
18591
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18592
|
+
},
|
|
18593
|
+
{
|
|
18594
|
+
"name": "search",
|
|
18595
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18596
|
+
},
|
|
18597
|
+
{
|
|
18598
|
+
"name": "search-result-select",
|
|
18599
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18600
|
+
},
|
|
18601
|
+
{
|
|
18602
|
+
"name": "preview",
|
|
18603
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18604
|
+
},
|
|
18605
|
+
{
|
|
18606
|
+
"name": "logout",
|
|
18607
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18608
|
+
}
|
|
18609
|
+
]
|
|
18610
|
+
}
|
|
18611
|
+
},
|
|
18612
|
+
{
|
|
18613
|
+
"name": "UHeaderActions",
|
|
18614
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18615
|
+
"source": {
|
|
18616
|
+
"symbol": "UHeaderActions"
|
|
18617
|
+
},
|
|
18618
|
+
"slots": [],
|
|
18619
|
+
"attributes": [],
|
|
18620
|
+
"props": [
|
|
18621
|
+
{
|
|
18622
|
+
"name": "lang-options",
|
|
18623
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18624
|
+
"type": "Array"
|
|
18625
|
+
},
|
|
18626
|
+
{
|
|
18627
|
+
"name": "current-lang",
|
|
18628
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18629
|
+
"type": "object"
|
|
18630
|
+
},
|
|
18631
|
+
{
|
|
18632
|
+
"name": "merged-cls-prefix",
|
|
18633
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18634
|
+
"type": "string"
|
|
18635
|
+
},
|
|
18636
|
+
{
|
|
18637
|
+
"name": "responsive",
|
|
18638
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18639
|
+
"type": "boolean"
|
|
18640
|
+
},
|
|
18641
|
+
{
|
|
18642
|
+
"name": "is-mobile",
|
|
18643
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18644
|
+
"type": "boolean"
|
|
18645
|
+
},
|
|
18646
|
+
{
|
|
18647
|
+
"name": "mobile-actions-collapse",
|
|
18648
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18649
|
+
"type": "boolean"
|
|
18650
|
+
},
|
|
18651
|
+
{
|
|
18652
|
+
"name": "css-vars",
|
|
18653
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18654
|
+
"type": "object"
|
|
18655
|
+
}
|
|
18656
|
+
],
|
|
18657
|
+
"js": {
|
|
18658
|
+
"events": [
|
|
18659
|
+
{
|
|
18660
|
+
"name": "search",
|
|
18661
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18662
|
+
},
|
|
18663
|
+
{
|
|
18664
|
+
"name": "preview",
|
|
18665
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18666
|
+
},
|
|
18667
|
+
{
|
|
18668
|
+
"name": "logout",
|
|
18669
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18670
|
+
},
|
|
18671
|
+
{
|
|
18672
|
+
"name": "language-select",
|
|
18673
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18674
|
+
},
|
|
18675
|
+
{
|
|
18676
|
+
"name": "search-result-select",
|
|
18677
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18678
|
+
}
|
|
18679
|
+
]
|
|
18680
|
+
}
|
|
18681
|
+
},
|
|
18682
|
+
{
|
|
18683
|
+
"name": "UHeaderDesktopLayout",
|
|
18684
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18685
|
+
"source": {
|
|
18686
|
+
"symbol": "UHeaderDesktopLayout"
|
|
18687
|
+
},
|
|
18688
|
+
"slots": [],
|
|
18689
|
+
"attributes": [],
|
|
18690
|
+
"props": [
|
|
18691
|
+
{
|
|
18692
|
+
"name": "merged-cls-prefix",
|
|
18693
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18694
|
+
"type": "string"
|
|
18695
|
+
},
|
|
18696
|
+
{
|
|
18697
|
+
"name": "theme-class",
|
|
18698
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18699
|
+
"type": "string"
|
|
18700
|
+
},
|
|
18701
|
+
{
|
|
18702
|
+
"name": "css-vars",
|
|
18703
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18704
|
+
"type": "object"
|
|
18705
|
+
}
|
|
18706
|
+
],
|
|
18707
|
+
"js": {
|
|
18708
|
+
"events": []
|
|
18709
|
+
}
|
|
18710
|
+
},
|
|
18711
|
+
{
|
|
18712
|
+
"name": "UHeaderMobileLayout",
|
|
18713
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18714
|
+
"source": {
|
|
18715
|
+
"symbol": "UHeaderMobileLayout"
|
|
18716
|
+
},
|
|
18717
|
+
"slots": [],
|
|
18718
|
+
"attributes": [],
|
|
18719
|
+
"props": [
|
|
18720
|
+
{
|
|
18721
|
+
"name": "merged-cls-prefix",
|
|
18722
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18723
|
+
"type": "string"
|
|
18724
|
+
},
|
|
18725
|
+
{
|
|
18726
|
+
"name": "theme-class",
|
|
18727
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18728
|
+
"type": "string"
|
|
18729
|
+
},
|
|
18730
|
+
{
|
|
18731
|
+
"name": "css-vars",
|
|
18732
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18733
|
+
"type": "object"
|
|
18734
|
+
}
|
|
18735
|
+
],
|
|
18736
|
+
"js": {
|
|
18737
|
+
"events": []
|
|
18738
|
+
}
|
|
18739
|
+
},
|
|
18740
|
+
{
|
|
18741
|
+
"name": "UHeaderSearchMobile",
|
|
18742
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18743
|
+
"source": {
|
|
18744
|
+
"symbol": "UHeaderSearchMobile"
|
|
18745
|
+
},
|
|
18746
|
+
"slots": [],
|
|
18747
|
+
"attributes": [],
|
|
18748
|
+
"props": [
|
|
18749
|
+
{
|
|
18750
|
+
"name": "show",
|
|
18751
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18752
|
+
"type": "boolean"
|
|
18753
|
+
},
|
|
18754
|
+
{
|
|
18755
|
+
"name": "css-vars",
|
|
18756
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18757
|
+
"type": "object"
|
|
18758
|
+
},
|
|
18759
|
+
{
|
|
18760
|
+
"name": "merged-cls-prefix",
|
|
18761
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18762
|
+
"type": "string"
|
|
18763
|
+
}
|
|
18764
|
+
],
|
|
18765
|
+
"js": {
|
|
18766
|
+
"events": [
|
|
18767
|
+
{
|
|
18768
|
+
"name": "close",
|
|
18769
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18770
|
+
},
|
|
18771
|
+
{
|
|
18772
|
+
"name": "search",
|
|
18773
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18774
|
+
},
|
|
18775
|
+
{
|
|
18776
|
+
"name": "search-result-select",
|
|
18777
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18778
|
+
}
|
|
18779
|
+
]
|
|
18780
|
+
}
|
|
18781
|
+
},
|
|
18782
|
+
{
|
|
18783
|
+
"name": "UHeaderSearchDesktop",
|
|
18784
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18785
|
+
"source": {
|
|
18786
|
+
"symbol": "UHeaderSearchDesktop"
|
|
18787
|
+
},
|
|
18788
|
+
"slots": [],
|
|
18789
|
+
"attributes": [],
|
|
18790
|
+
"props": [
|
|
18791
|
+
{
|
|
18792
|
+
"name": "search-value",
|
|
18793
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18794
|
+
"type": "string"
|
|
18795
|
+
},
|
|
18796
|
+
{
|
|
18797
|
+
"name": "search-results",
|
|
18798
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18799
|
+
"type": "Array"
|
|
18800
|
+
},
|
|
18801
|
+
{
|
|
18802
|
+
"name": "search-loading",
|
|
18803
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18804
|
+
"type": "boolean"
|
|
18805
|
+
},
|
|
18806
|
+
{
|
|
18807
|
+
"name": "merged-cls-prefix",
|
|
18808
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18809
|
+
"type": "string"
|
|
18810
|
+
},
|
|
18811
|
+
{
|
|
18812
|
+
"name": "css-vars",
|
|
18813
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18814
|
+
"type": "object"
|
|
18815
|
+
}
|
|
18816
|
+
],
|
|
18817
|
+
"js": {
|
|
18818
|
+
"events": [
|
|
18819
|
+
{
|
|
18820
|
+
"name": "search-input",
|
|
18821
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18822
|
+
},
|
|
18823
|
+
{
|
|
18824
|
+
"name": "search-close",
|
|
18825
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18826
|
+
},
|
|
18827
|
+
{
|
|
18828
|
+
"name": "search-submit",
|
|
18829
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18830
|
+
},
|
|
18831
|
+
{
|
|
18832
|
+
"name": "result-select",
|
|
18833
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18834
|
+
}
|
|
18835
|
+
]
|
|
18836
|
+
}
|
|
18837
|
+
},
|
|
18838
|
+
{
|
|
18839
|
+
"name": "UHeaderSearchResults",
|
|
18840
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18841
|
+
"source": {
|
|
18842
|
+
"symbol": "UHeaderSearchResults"
|
|
18843
|
+
},
|
|
18844
|
+
"slots": [],
|
|
18845
|
+
"attributes": [],
|
|
18846
|
+
"props": [
|
|
18847
|
+
{
|
|
18848
|
+
"name": "version",
|
|
18849
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18850
|
+
"type": "string"
|
|
18851
|
+
},
|
|
18852
|
+
{
|
|
18853
|
+
"name": "results",
|
|
18854
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18855
|
+
"type": "Array"
|
|
18856
|
+
},
|
|
18857
|
+
{
|
|
18858
|
+
"name": "loading",
|
|
18859
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18860
|
+
"type": "boolean"
|
|
18861
|
+
},
|
|
18862
|
+
{
|
|
18863
|
+
"name": "query",
|
|
18864
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18865
|
+
"type": "string"
|
|
18866
|
+
},
|
|
18867
|
+
{
|
|
18868
|
+
"name": "merged-cls-prefix",
|
|
18869
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18870
|
+
"type": "string"
|
|
18871
|
+
},
|
|
18872
|
+
{
|
|
18873
|
+
"name": "css-vars",
|
|
18874
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header",
|
|
18875
|
+
"type": "object"
|
|
18876
|
+
}
|
|
18877
|
+
],
|
|
18878
|
+
"js": {
|
|
18879
|
+
"events": [
|
|
18880
|
+
{
|
|
18881
|
+
"name": "select",
|
|
18882
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/header"
|
|
18883
|
+
}
|
|
18884
|
+
]
|
|
18885
|
+
}
|
|
18886
|
+
},
|
|
18887
|
+
{
|
|
18888
|
+
"name": "UIconBar",
|
|
18889
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/icon-bar",
|
|
18890
|
+
"source": {
|
|
18891
|
+
"symbol": "UIconBar"
|
|
18892
|
+
},
|
|
18893
|
+
"slots": [],
|
|
18894
|
+
"attributes": [],
|
|
18895
|
+
"props": [
|
|
18896
|
+
{
|
|
18897
|
+
"name": "items",
|
|
18898
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/icon-bar",
|
|
18899
|
+
"type": "Array"
|
|
18900
|
+
},
|
|
18901
|
+
{
|
|
18902
|
+
"name": "cols",
|
|
18903
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/icon-bar",
|
|
18904
|
+
"type": "number"
|
|
18905
|
+
},
|
|
18906
|
+
{
|
|
18907
|
+
"name": "grid-props",
|
|
18908
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/icon-bar",
|
|
18909
|
+
"type": "object"
|
|
18910
|
+
},
|
|
18911
|
+
{
|
|
18912
|
+
"name": "item-size",
|
|
18913
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/icon-bar",
|
|
18914
|
+
"type": "number | string"
|
|
18915
|
+
}
|
|
18916
|
+
],
|
|
18917
|
+
"js": {
|
|
18918
|
+
"events": []
|
|
18919
|
+
}
|
|
18920
|
+
},
|
|
18921
|
+
{
|
|
18922
|
+
"name": "UIconBarItem",
|
|
18923
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/icon-bar",
|
|
18924
|
+
"source": {
|
|
18925
|
+
"symbol": "UIconBarItem"
|
|
18926
|
+
},
|
|
18927
|
+
"slots": [],
|
|
18928
|
+
"attributes": [],
|
|
18929
|
+
"props": [
|
|
18930
|
+
{
|
|
18931
|
+
"name": "label",
|
|
18932
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/icon-bar",
|
|
18933
|
+
"type": "string"
|
|
18934
|
+
},
|
|
18935
|
+
{
|
|
18936
|
+
"name": "icon",
|
|
18937
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/icon-bar",
|
|
18938
|
+
"type": "Function"
|
|
18939
|
+
},
|
|
18940
|
+
{
|
|
18941
|
+
"name": "icon-size",
|
|
18942
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/icon-bar",
|
|
18943
|
+
"type": "number | string"
|
|
18944
|
+
},
|
|
18945
|
+
{
|
|
18946
|
+
"name": "span",
|
|
18947
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/icon-bar",
|
|
18948
|
+
"type": "number | string"
|
|
18949
|
+
},
|
|
18950
|
+
{
|
|
18951
|
+
"name": "typography-props",
|
|
18952
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/icon-bar",
|
|
18953
|
+
"type": "object"
|
|
18954
|
+
}
|
|
18955
|
+
],
|
|
18956
|
+
"js": {
|
|
18957
|
+
"events": []
|
|
18958
|
+
}
|
|
18959
|
+
},
|
|
18960
|
+
{
|
|
18961
|
+
"name": "UQrCode",
|
|
18962
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/qr-code",
|
|
18963
|
+
"source": {
|
|
18964
|
+
"symbol": "UQrCode"
|
|
18965
|
+
},
|
|
18966
|
+
"slots": [],
|
|
18967
|
+
"attributes": [],
|
|
18968
|
+
"props": [
|
|
18969
|
+
{
|
|
18970
|
+
"name": "value",
|
|
18971
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/qr-code",
|
|
18972
|
+
"type": "string"
|
|
18973
|
+
},
|
|
18974
|
+
{
|
|
18975
|
+
"name": "color",
|
|
18976
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/qr-code",
|
|
18977
|
+
"type": "string"
|
|
18978
|
+
},
|
|
18979
|
+
{
|
|
18980
|
+
"name": "background-color",
|
|
18981
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/qr-code",
|
|
18982
|
+
"type": "string"
|
|
18983
|
+
},
|
|
18984
|
+
{
|
|
18985
|
+
"name": "icon-src",
|
|
18986
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/qr-code",
|
|
18987
|
+
"type": "string"
|
|
18988
|
+
},
|
|
18989
|
+
{
|
|
18990
|
+
"name": "icon-size",
|
|
18991
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/qr-code",
|
|
18992
|
+
"type": "number"
|
|
18993
|
+
},
|
|
18994
|
+
{
|
|
18995
|
+
"name": "icon-background-color",
|
|
18996
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/qr-code",
|
|
18997
|
+
"type": "string"
|
|
18998
|
+
},
|
|
18999
|
+
{
|
|
19000
|
+
"name": "icon-border-radius",
|
|
19001
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/qr-code",
|
|
19002
|
+
"type": "number"
|
|
19003
|
+
},
|
|
19004
|
+
{
|
|
19005
|
+
"name": "size",
|
|
19006
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/qr-code",
|
|
19007
|
+
"type": "number"
|
|
19008
|
+
},
|
|
19009
|
+
{
|
|
19010
|
+
"name": "padding",
|
|
19011
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/qr-code",
|
|
19012
|
+
"type": "number | string"
|
|
19013
|
+
},
|
|
19014
|
+
{
|
|
19015
|
+
"name": "error-correction-level",
|
|
19016
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/qr-code",
|
|
19017
|
+
"type": "string"
|
|
19018
|
+
},
|
|
19019
|
+
{
|
|
19020
|
+
"name": "type",
|
|
19021
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/qr-code",
|
|
19022
|
+
"type": "string"
|
|
19023
|
+
}
|
|
19024
|
+
],
|
|
19025
|
+
"js": {
|
|
19026
|
+
"events": []
|
|
19027
|
+
}
|
|
18176
19028
|
}
|
|
18177
19029
|
]
|
|
18178
19030
|
}
|