@qqt-product/ui 14.0.2 → 14.0.3

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.
@@ -6,7 +6,7 @@ import type { Request } from '@qqt-product/api/dist/utils/request';
6
6
  import type { CloseCircleOutlinedIconType } from '@ant-design/icons-vue/lib/icons/CloseCircleOutlined';
7
7
  import type { SearchOutlinedIconType } from '@ant-design/icons-vue/lib/icons/SearchOutlined';
8
8
  import type { SrmI18n } from '../../utils/type';
9
- import type { Menu, UserInfoType, LayoutConfigType, RouterPropsType, ImgStateList, ExtendMenu, FirstMenuMeta, ColorListType } from './src/types';
9
+ import type { Menu, UserInfoType, LayoutConfigType, RouterPropsType, ImgStateList, ExtendMenu, FirstMenuMeta, SelectedMemu, ColorListType } from './src/types';
10
10
  import type { DefineComponent, PropType, Ref, ComputedRef, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
11
11
  import type { SFCWithInstall } from '@qqt-product/utils/dist/modules/withInstall';
12
12
  import QQTLayout from './src/index.vue';
@@ -115,6 +115,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
115
115
  chatDraggingPositionX: Ref<number>;
116
116
  chatDraggingPositionY: Ref<number | null>;
117
117
  showAiKnowledgeBase: Ref<boolean>;
118
+ showGlobalStyleSettingsMenuPattern: Ref<boolean>;
118
119
  secondMenuShow: Ref<boolean>;
119
120
  siderRef: Ref<any>;
120
121
  menuSelect: (obj: any) => void;
@@ -140,6 +141,10 @@ declare const _default: SFCWithInstall<DefineComponent<{
140
141
  left?: undefined;
141
142
  }>;
142
143
  QLayoutSider: DefineComponent<{
144
+ showGlobalStyleSettingsMenuPattern: {
145
+ type: BooleanConstructor;
146
+ default: boolean;
147
+ };
143
148
  siderWidth: {
144
149
  type: NumberConstructor;
145
150
  default: number;
@@ -276,6 +281,10 @@ declare const _default: SFCWithInstall<DefineComponent<{
276
281
  collapsed: boolean;
277
282
  }, {}>;
278
283
  QMenu: DefineComponent<{
284
+ globalStyleSettingsMenuPattern: {
285
+ type: BooleanConstructor;
286
+ default: boolean;
287
+ };
279
288
  width: {
280
289
  type: NumberConstructor;
281
290
  default: number;
@@ -504,7 +513,168 @@ declare const _default: SFCWithInstall<DefineComponent<{
504
513
  meta: FirstMenuMeta;
505
514
  mode: string;
506
515
  }, {}>;
516
+ subSecondMenu: DefineComponent<{
517
+ defineMode: {
518
+ type: StringConstructor;
519
+ default: string;
520
+ };
521
+ menus: {
522
+ type: {
523
+ (arrayLength: number): Menu[];
524
+ (...items: Menu[]): Menu[];
525
+ new (arrayLength: number): Menu[];
526
+ new (...items: Menu[]): Menu[];
527
+ isArray(arg: any): arg is any[];
528
+ readonly prototype: any[];
529
+ from<T>(arrayLike: ArrayLike<T>): T[];
530
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
531
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
532
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
533
+ of<T_4>(...items: T_4[]): T_4[];
534
+ readonly [Symbol.species]: ArrayConstructor;
535
+ };
536
+ default: () => never[];
537
+ };
538
+ theme: {
539
+ type: StringConstructor;
540
+ };
541
+ mode: {
542
+ type: StringConstructor;
543
+ default: string;
544
+ };
545
+ searchOpenKeys: {
546
+ type: {
547
+ (arrayLength: number): string[];
548
+ (...items: string[]): string[];
549
+ new (arrayLength: number): string[];
550
+ new (...items: string[]): string[];
551
+ isArray(arg: any): arg is any[];
552
+ readonly prototype: any[];
553
+ from<T>(arrayLike: ArrayLike<T>): T[];
554
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
555
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
556
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
557
+ of<T_4>(...items: T_4[]): T_4[];
558
+ readonly [Symbol.species]: ArrayConstructor;
559
+ };
560
+ default: () => never[];
561
+ };
562
+ }, {
563
+ props: any;
564
+ emit: (event: "menuSelect", ...args: any[]) => void;
565
+ router: {
566
+ push: (obj: RouterPropsType) => void;
567
+ };
568
+ state: SelectedMemu;
569
+ secondMenuRouter: (item: ExtendMenu) => void;
570
+ menuSelect: (obj: any) => void;
571
+ readonly QIcon: DefineComponent<{
572
+ type: {
573
+ type: PropType<string>;
574
+ default: string;
575
+ };
576
+ size: {
577
+ type: (StringConstructor | NumberConstructor)[];
578
+ };
579
+ color: {
580
+ type: StringConstructor;
581
+ };
582
+ }, {
583
+ fontSize: ComputedRef<{
584
+ fontSize: string;
585
+ }>;
586
+ iconType: ComputedRef<string>;
587
+ iconColor: ComputedRef<{
588
+ color: string;
589
+ }>;
590
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
591
+ type: {
592
+ type: PropType<string>;
593
+ default: string;
594
+ };
595
+ size: {
596
+ type: (StringConstructor | NumberConstructor)[];
597
+ };
598
+ color: {
599
+ type: StringConstructor;
600
+ };
601
+ }>>, {
602
+ type: string;
603
+ }, {}>;
604
+ QDeepCycleSubMenu: DefineComponent<{
605
+ menuInfo: {
606
+ type: ObjectConstructor;
607
+ default: () => {};
608
+ };
609
+ }, {
610
+ deepCycleMenuRouter: (item: ExtendMenu) => void;
611
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
612
+ menuInfo: {
613
+ type: ObjectConstructor;
614
+ default: () => {};
615
+ };
616
+ }>>, {
617
+ menuInfo: Record<string, any>;
618
+ }, {}>;
619
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "menuSelect"[], "menuSelect", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
620
+ defineMode: {
621
+ type: StringConstructor;
622
+ default: string;
623
+ };
624
+ menus: {
625
+ type: {
626
+ (arrayLength: number): Menu[];
627
+ (...items: Menu[]): Menu[];
628
+ new (arrayLength: number): Menu[];
629
+ new (...items: Menu[]): Menu[];
630
+ isArray(arg: any): arg is any[];
631
+ readonly prototype: any[];
632
+ from<T>(arrayLike: ArrayLike<T>): T[];
633
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
634
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
635
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
636
+ of<T_4>(...items: T_4[]): T_4[];
637
+ readonly [Symbol.species]: ArrayConstructor;
638
+ };
639
+ default: () => never[];
640
+ };
641
+ theme: {
642
+ type: StringConstructor;
643
+ };
644
+ mode: {
645
+ type: StringConstructor;
646
+ default: string;
647
+ };
648
+ searchOpenKeys: {
649
+ type: {
650
+ (arrayLength: number): string[];
651
+ (...items: string[]): string[];
652
+ new (arrayLength: number): string[];
653
+ new (...items: string[]): string[];
654
+ isArray(arg: any): arg is any[];
655
+ readonly prototype: any[];
656
+ from<T>(arrayLike: ArrayLike<T>): T[];
657
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
658
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
659
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
660
+ of<T_4>(...items: T_4[]): T_4[];
661
+ readonly [Symbol.species]: ArrayConstructor;
662
+ };
663
+ default: () => never[];
664
+ };
665
+ }>> & {
666
+ onMenuSelect?: ((...args: any[]) => any) | undefined;
667
+ }, {
668
+ mode: string;
669
+ menus: Menu[];
670
+ defineMode: string;
671
+ searchOpenKeys: string[];
672
+ }, {}>;
507
673
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("menuSelect" | "updateMenuShow" | "updateHistoryList")[], "menuSelect" | "updateMenuShow" | "updateHistoryList", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
674
+ globalStyleSettingsMenuPattern: {
675
+ type: BooleanConstructor;
676
+ default: boolean;
677
+ };
508
678
  width: {
509
679
  type: NumberConstructor;
510
680
  default: number;
@@ -578,6 +748,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
578
748
  menus: ExtendMenu[];
579
749
  secondMenuShow: boolean;
580
750
  collapsed: boolean;
751
+ globalStyleSettingsMenuPattern: boolean;
581
752
  searchState: boolean;
582
753
  currentSearchValue: string;
583
754
  sourceData: ExtendMenu[];
@@ -673,6 +844,10 @@ declare const _default: SFCWithInstall<DefineComponent<{
673
844
  searchState: boolean;
674
845
  }, {}>;
675
846
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("menuSelect" | "schedule-click" | "services-click" | "updateMenuShow" | "collapsed-sider")[], "menuSelect" | "schedule-click" | "services-click" | "updateMenuShow" | "collapsed-sider", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
847
+ showGlobalStyleSettingsMenuPattern: {
848
+ type: BooleanConstructor;
849
+ default: boolean;
850
+ };
676
851
  siderWidth: {
677
852
  type: NumberConstructor;
678
853
  default: number;
@@ -746,6 +921,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
746
921
  }, {
747
922
  mode: string;
748
923
  collapsible: boolean;
924
+ showGlobalStyleSettingsMenuPattern: boolean;
749
925
  siderWidth: number;
750
926
  secondMenuShow: boolean;
751
927
  }, {}>;
@@ -7,7 +7,7 @@ import type { CloseCircleOutlinedIconType } from '@ant-design/icons-vue/lib/icon
7
7
  import type { SearchOutlinedIconType } from '@ant-design/icons-vue/lib/icons/SearchOutlined';
8
8
  import type { SrmI18n } from '../../../utils/type';
9
9
  import type { DefineComponent, Ref, ComputedRef, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType } from 'vue';
10
- import type { RouterPropsType, ImgStateList, ExtendMenu, FirstMenuMeta, ColorListType, Menu, UserInfoType, LayoutConfigType } from './types';
10
+ import type { RouterPropsType, ImgStateList, ExtendMenu, FirstMenuMeta, SelectedMemu, ColorListType, Menu, UserInfoType, LayoutConfigType } from './types';
11
11
  declare const _sfc_main: DefineComponent<{
12
12
  internalOrExternal: {
13
13
  type: BooleanConstructor;
@@ -112,6 +112,7 @@ declare const _sfc_main: DefineComponent<{
112
112
  chatDraggingPositionX: Ref<number>;
113
113
  chatDraggingPositionY: Ref<number | null>;
114
114
  showAiKnowledgeBase: Ref<boolean>;
115
+ showGlobalStyleSettingsMenuPattern: Ref<boolean>;
115
116
  secondMenuShow: Ref<boolean>;
116
117
  siderRef: Ref<any>;
117
118
  menuSelect: (obj: any) => void;
@@ -137,6 +138,10 @@ declare const _sfc_main: DefineComponent<{
137
138
  left?: undefined;
138
139
  }>;
139
140
  QLayoutSider: DefineComponent<{
141
+ showGlobalStyleSettingsMenuPattern: {
142
+ type: BooleanConstructor;
143
+ default: boolean;
144
+ };
140
145
  siderWidth: {
141
146
  type: NumberConstructor;
142
147
  default: number;
@@ -273,6 +278,10 @@ declare const _sfc_main: DefineComponent<{
273
278
  collapsed: boolean;
274
279
  }, {}>;
275
280
  QMenu: DefineComponent<{
281
+ globalStyleSettingsMenuPattern: {
282
+ type: BooleanConstructor;
283
+ default: boolean;
284
+ };
276
285
  width: {
277
286
  type: NumberConstructor;
278
287
  default: number;
@@ -501,7 +510,168 @@ declare const _sfc_main: DefineComponent<{
501
510
  meta: FirstMenuMeta;
502
511
  mode: string;
503
512
  }, {}>;
513
+ subSecondMenu: DefineComponent<{
514
+ defineMode: {
515
+ type: StringConstructor;
516
+ default: string;
517
+ };
518
+ menus: {
519
+ type: {
520
+ (arrayLength: number): Menu[];
521
+ (...items: Menu[]): Menu[];
522
+ new (arrayLength: number): Menu[];
523
+ new (...items: Menu[]): Menu[];
524
+ isArray(arg: any): arg is any[];
525
+ readonly prototype: any[];
526
+ from<T>(arrayLike: ArrayLike<T>): T[];
527
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
528
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
529
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
530
+ of<T_4>(...items: T_4[]): T_4[];
531
+ readonly [Symbol.species]: ArrayConstructor;
532
+ };
533
+ default: () => never[];
534
+ };
535
+ theme: {
536
+ type: StringConstructor;
537
+ };
538
+ mode: {
539
+ type: StringConstructor;
540
+ default: string;
541
+ };
542
+ searchOpenKeys: {
543
+ type: {
544
+ (arrayLength: number): string[];
545
+ (...items: string[]): string[];
546
+ new (arrayLength: number): string[];
547
+ new (...items: string[]): string[];
548
+ isArray(arg: any): arg is any[];
549
+ readonly prototype: any[];
550
+ from<T>(arrayLike: ArrayLike<T>): T[];
551
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
552
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
553
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
554
+ of<T_4>(...items: T_4[]): T_4[];
555
+ readonly [Symbol.species]: ArrayConstructor;
556
+ };
557
+ default: () => never[];
558
+ };
559
+ }, {
560
+ props: any;
561
+ emit: (event: "menuSelect", ...args: any[]) => void;
562
+ router: {
563
+ push: (obj: RouterPropsType) => void;
564
+ };
565
+ state: SelectedMemu;
566
+ secondMenuRouter: (item: ExtendMenu) => void;
567
+ menuSelect: (obj: any) => void;
568
+ readonly QIcon: DefineComponent<{
569
+ type: {
570
+ type: PropType<string>;
571
+ default: string;
572
+ };
573
+ size: {
574
+ type: (StringConstructor | NumberConstructor)[];
575
+ };
576
+ color: {
577
+ type: StringConstructor;
578
+ };
579
+ }, {
580
+ fontSize: ComputedRef<{
581
+ fontSize: string;
582
+ }>;
583
+ iconType: ComputedRef<string>;
584
+ iconColor: ComputedRef<{
585
+ color: string;
586
+ }>;
587
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
588
+ type: {
589
+ type: PropType<string>;
590
+ default: string;
591
+ };
592
+ size: {
593
+ type: (StringConstructor | NumberConstructor)[];
594
+ };
595
+ color: {
596
+ type: StringConstructor;
597
+ };
598
+ }>>, {
599
+ type: string;
600
+ }, {}>;
601
+ QDeepCycleSubMenu: DefineComponent<{
602
+ menuInfo: {
603
+ type: ObjectConstructor;
604
+ default: () => {};
605
+ };
606
+ }, {
607
+ deepCycleMenuRouter: (item: ExtendMenu) => void;
608
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
609
+ menuInfo: {
610
+ type: ObjectConstructor;
611
+ default: () => {};
612
+ };
613
+ }>>, {
614
+ menuInfo: Record<string, any>;
615
+ }, {}>;
616
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "menuSelect"[], "menuSelect", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
617
+ defineMode: {
618
+ type: StringConstructor;
619
+ default: string;
620
+ };
621
+ menus: {
622
+ type: {
623
+ (arrayLength: number): Menu[];
624
+ (...items: Menu[]): Menu[];
625
+ new (arrayLength: number): Menu[];
626
+ new (...items: Menu[]): Menu[];
627
+ isArray(arg: any): arg is any[];
628
+ readonly prototype: any[];
629
+ from<T>(arrayLike: ArrayLike<T>): T[];
630
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
631
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
632
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
633
+ of<T_4>(...items: T_4[]): T_4[];
634
+ readonly [Symbol.species]: ArrayConstructor;
635
+ };
636
+ default: () => never[];
637
+ };
638
+ theme: {
639
+ type: StringConstructor;
640
+ };
641
+ mode: {
642
+ type: StringConstructor;
643
+ default: string;
644
+ };
645
+ searchOpenKeys: {
646
+ type: {
647
+ (arrayLength: number): string[];
648
+ (...items: string[]): string[];
649
+ new (arrayLength: number): string[];
650
+ new (...items: string[]): string[];
651
+ isArray(arg: any): arg is any[];
652
+ readonly prototype: any[];
653
+ from<T>(arrayLike: ArrayLike<T>): T[];
654
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
655
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
656
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
657
+ of<T_4>(...items: T_4[]): T_4[];
658
+ readonly [Symbol.species]: ArrayConstructor;
659
+ };
660
+ default: () => never[];
661
+ };
662
+ }>> & {
663
+ onMenuSelect?: ((...args: any[]) => any) | undefined;
664
+ }, {
665
+ mode: string;
666
+ menus: Menu[];
667
+ defineMode: string;
668
+ searchOpenKeys: string[];
669
+ }, {}>;
504
670
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("menuSelect" | "updateMenuShow" | "updateHistoryList")[], "menuSelect" | "updateMenuShow" | "updateHistoryList", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
671
+ globalStyleSettingsMenuPattern: {
672
+ type: BooleanConstructor;
673
+ default: boolean;
674
+ };
505
675
  width: {
506
676
  type: NumberConstructor;
507
677
  default: number;
@@ -575,6 +745,7 @@ declare const _sfc_main: DefineComponent<{
575
745
  menus: ExtendMenu[];
576
746
  secondMenuShow: boolean;
577
747
  collapsed: boolean;
748
+ globalStyleSettingsMenuPattern: boolean;
578
749
  searchState: boolean;
579
750
  currentSearchValue: string;
580
751
  sourceData: ExtendMenu[];
@@ -670,6 +841,10 @@ declare const _sfc_main: DefineComponent<{
670
841
  searchState: boolean;
671
842
  }, {}>;
672
843
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("menuSelect" | "schedule-click" | "services-click" | "updateMenuShow" | "collapsed-sider")[], "menuSelect" | "schedule-click" | "services-click" | "updateMenuShow" | "collapsed-sider", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
844
+ showGlobalStyleSettingsMenuPattern: {
845
+ type: BooleanConstructor;
846
+ default: boolean;
847
+ };
673
848
  siderWidth: {
674
849
  type: NumberConstructor;
675
850
  default: number;
@@ -743,6 +918,7 @@ declare const _sfc_main: DefineComponent<{
743
918
  }, {
744
919
  mode: string;
745
920
  collapsible: boolean;
921
+ showGlobalStyleSettingsMenuPattern: boolean;
746
922
  siderWidth: number;
747
923
  secondMenuShow: boolean;
748
924
  }, {}>;
@@ -1,7 +1,11 @@
1
1
  import type { SrmI18n } from '../../../../utils/type';
2
2
  import type { DefineComponent, Ref, PropType, ComputedRef, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
3
- import type { Menu, ExtendMenu, FirstMenuMeta, RouterPropsType } from '../types';
3
+ import type { Menu, SelectedMemu, ExtendMenu, FirstMenuMeta, RouterPropsType } from '../types';
4
4
  declare const _sfc_main: DefineComponent<{
5
+ globalStyleSettingsMenuPattern: {
6
+ type: BooleanConstructor;
7
+ default: boolean;
8
+ };
5
9
  width: {
6
10
  type: NumberConstructor;
7
11
  default: number;
@@ -230,7 +234,168 @@ declare const _sfc_main: DefineComponent<{
230
234
  meta: FirstMenuMeta;
231
235
  mode: string;
232
236
  }, {}>;
237
+ subSecondMenu: DefineComponent<{
238
+ defineMode: {
239
+ type: StringConstructor;
240
+ default: string;
241
+ };
242
+ menus: {
243
+ type: {
244
+ (arrayLength: number): Menu[];
245
+ (...items: Menu[]): Menu[];
246
+ new (arrayLength: number): Menu[];
247
+ new (...items: Menu[]): Menu[];
248
+ isArray(arg: any): arg is any[];
249
+ readonly prototype: any[];
250
+ from<T>(arrayLike: ArrayLike<T>): T[];
251
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
252
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
253
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
254
+ of<T_4>(...items: T_4[]): T_4[];
255
+ readonly [Symbol.species]: ArrayConstructor;
256
+ };
257
+ default: () => never[];
258
+ };
259
+ theme: {
260
+ type: StringConstructor;
261
+ };
262
+ mode: {
263
+ type: StringConstructor;
264
+ default: string;
265
+ };
266
+ searchOpenKeys: {
267
+ type: {
268
+ (arrayLength: number): string[];
269
+ (...items: string[]): string[];
270
+ new (arrayLength: number): string[];
271
+ new (...items: string[]): string[];
272
+ isArray(arg: any): arg is any[];
273
+ readonly prototype: any[];
274
+ from<T>(arrayLike: ArrayLike<T>): T[];
275
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
276
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
277
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
278
+ of<T_4>(...items: T_4[]): T_4[];
279
+ readonly [Symbol.species]: ArrayConstructor;
280
+ };
281
+ default: () => never[];
282
+ };
283
+ }, {
284
+ props: any;
285
+ emit: (event: "menuSelect", ...args: any[]) => void;
286
+ router: {
287
+ push: (obj: RouterPropsType) => void;
288
+ };
289
+ state: SelectedMemu;
290
+ secondMenuRouter: (item: ExtendMenu) => void;
291
+ menuSelect: (obj: any) => void;
292
+ readonly QIcon: DefineComponent<{
293
+ type: {
294
+ type: PropType<string>;
295
+ default: string;
296
+ };
297
+ size: {
298
+ type: (StringConstructor | NumberConstructor)[];
299
+ };
300
+ color: {
301
+ type: StringConstructor;
302
+ };
303
+ }, {
304
+ fontSize: ComputedRef<{
305
+ fontSize: string;
306
+ }>;
307
+ iconType: ComputedRef<string>;
308
+ iconColor: ComputedRef<{
309
+ color: string;
310
+ }>;
311
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
312
+ type: {
313
+ type: PropType<string>;
314
+ default: string;
315
+ };
316
+ size: {
317
+ type: (StringConstructor | NumberConstructor)[];
318
+ };
319
+ color: {
320
+ type: StringConstructor;
321
+ };
322
+ }>>, {
323
+ type: string;
324
+ }, {}>;
325
+ QDeepCycleSubMenu: DefineComponent<{
326
+ menuInfo: {
327
+ type: ObjectConstructor;
328
+ default: () => {};
329
+ };
330
+ }, {
331
+ deepCycleMenuRouter: (item: ExtendMenu) => void;
332
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
333
+ menuInfo: {
334
+ type: ObjectConstructor;
335
+ default: () => {};
336
+ };
337
+ }>>, {
338
+ menuInfo: Record<string, any>;
339
+ }, {}>;
340
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "menuSelect"[], "menuSelect", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
341
+ defineMode: {
342
+ type: StringConstructor;
343
+ default: string;
344
+ };
345
+ menus: {
346
+ type: {
347
+ (arrayLength: number): Menu[];
348
+ (...items: Menu[]): Menu[];
349
+ new (arrayLength: number): Menu[];
350
+ new (...items: Menu[]): Menu[];
351
+ isArray(arg: any): arg is any[];
352
+ readonly prototype: any[];
353
+ from<T>(arrayLike: ArrayLike<T>): T[];
354
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
355
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
356
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
357
+ of<T_4>(...items: T_4[]): T_4[];
358
+ readonly [Symbol.species]: ArrayConstructor;
359
+ };
360
+ default: () => never[];
361
+ };
362
+ theme: {
363
+ type: StringConstructor;
364
+ };
365
+ mode: {
366
+ type: StringConstructor;
367
+ default: string;
368
+ };
369
+ searchOpenKeys: {
370
+ type: {
371
+ (arrayLength: number): string[];
372
+ (...items: string[]): string[];
373
+ new (arrayLength: number): string[];
374
+ new (...items: string[]): string[];
375
+ isArray(arg: any): arg is any[];
376
+ readonly prototype: any[];
377
+ from<T>(arrayLike: ArrayLike<T>): T[];
378
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
379
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
380
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
381
+ of<T_4>(...items: T_4[]): T_4[];
382
+ readonly [Symbol.species]: ArrayConstructor;
383
+ };
384
+ default: () => never[];
385
+ };
386
+ }>> & {
387
+ onMenuSelect?: ((...args: any[]) => any) | undefined;
388
+ }, {
389
+ mode: string;
390
+ menus: Menu[];
391
+ defineMode: string;
392
+ searchOpenKeys: string[];
393
+ }, {}>;
233
394
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("menuSelect" | "updateMenuShow" | "updateHistoryList")[], "menuSelect" | "updateMenuShow" | "updateHistoryList", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
395
+ globalStyleSettingsMenuPattern: {
396
+ type: BooleanConstructor;
397
+ default: boolean;
398
+ };
234
399
  width: {
235
400
  type: NumberConstructor;
236
401
  default: number;
@@ -304,6 +469,7 @@ declare const _sfc_main: DefineComponent<{
304
469
  menus: ExtendMenu[];
305
470
  secondMenuShow: boolean;
306
471
  collapsed: boolean;
472
+ globalStyleSettingsMenuPattern: boolean;
307
473
  searchState: boolean;
308
474
  currentSearchValue: string;
309
475
  sourceData: ExtendMenu[];