@qqt-product/ui 14.0.3 → 14.0.4
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.es.js +4027 -4026
- package/dist/index.umd.js +84 -84
- package/dist/lib/components/layout/index.d.ts +1 -0
- package/dist/lib/components/layout/src/index.vue.d.ts +1 -0
- package/dist/lib/components/layout/src/menu/menu.vue.d.ts +2 -1
- package/dist/lib/components/layout/src/sider/index.vue.d.ts +1 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -406,6 +406,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
406
406
|
currentActive: Ref<number>;
|
|
407
407
|
meta: Ref<FirstMenuMeta | undefined>;
|
|
408
408
|
isEffectiveRoutePath: Ref<boolean>;
|
|
409
|
+
customMode: ComputedRef<"vertical" | "inline">;
|
|
409
410
|
firstMenuSelect: (item: ExtendMenu, index: number) => void;
|
|
410
411
|
updateMenuBadgeCount: (firstMenuPath: string, count: number) => void;
|
|
411
412
|
menuSelect: () => void;
|
|
@@ -403,6 +403,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
403
403
|
currentActive: Ref<number>;
|
|
404
404
|
meta: Ref<FirstMenuMeta | undefined>;
|
|
405
405
|
isEffectiveRoutePath: Ref<boolean>;
|
|
406
|
+
customMode: ComputedRef<"vertical" | "inline">;
|
|
406
407
|
firstMenuSelect: (item: ExtendMenu, index: number) => void;
|
|
407
408
|
updateMenuBadgeCount: (firstMenuPath: string, count: number) => void;
|
|
408
409
|
menuSelect: () => void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { SrmI18n } from '../../../../utils/type';
|
|
2
|
-
import type { DefineComponent, Ref,
|
|
2
|
+
import type { DefineComponent, Ref, ComputedRef, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
3
3
|
import type { Menu, SelectedMemu, ExtendMenu, FirstMenuMeta, RouterPropsType } from '../types';
|
|
4
4
|
declare const _sfc_main: DefineComponent<{
|
|
5
5
|
globalStyleSettingsMenuPattern: {
|
|
@@ -127,6 +127,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
127
127
|
currentActive: Ref<number>;
|
|
128
128
|
meta: Ref<FirstMenuMeta | undefined>;
|
|
129
129
|
isEffectiveRoutePath: Ref<boolean>;
|
|
130
|
+
customMode: ComputedRef<"vertical" | "inline">;
|
|
130
131
|
firstMenuSelect: (item: ExtendMenu, index: number) => void;
|
|
131
132
|
updateMenuBadgeCount: (firstMenuPath: string, count: number) => void;
|
|
132
133
|
menuSelect: () => void;
|
|
@@ -269,6 +269,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
269
269
|
currentActive: Ref<number>;
|
|
270
270
|
meta: Ref<FirstMenuMeta | undefined>;
|
|
271
271
|
isEffectiveRoutePath: Ref<boolean>;
|
|
272
|
+
customMode: ComputedRef<"vertical" | "inline">;
|
|
272
273
|
firstMenuSelect: (item: ExtendMenu, index: number) => void;
|
|
273
274
|
updateMenuBadgeCount: (firstMenuPath: string, count: number) => void;
|
|
274
275
|
menuSelect: () => void;
|