@qqt-product/ui 14.0.3 → 14.0.6
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 +4238 -4221
- package/dist/index.umd.js +84 -84
- package/dist/lib/components/detail-page-layout/index.d.ts +10 -0
- package/dist/lib/components/detail-page-layout/src/detail-page-layout.vue.d.ts +11 -1
- 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
|
@@ -101,6 +101,11 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
101
101
|
type: StringConstructor;
|
|
102
102
|
default: string;
|
|
103
103
|
};
|
|
104
|
+
} & {
|
|
105
|
+
isDetail: {
|
|
106
|
+
type: PropType<boolean>;
|
|
107
|
+
default: boolean;
|
|
108
|
+
};
|
|
104
109
|
}, {
|
|
105
110
|
instance: Ref<Expose | undefined>;
|
|
106
111
|
classes: ComputedRef<{
|
|
@@ -212,6 +217,11 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
212
217
|
type: StringConstructor;
|
|
213
218
|
default: string;
|
|
214
219
|
};
|
|
220
|
+
} & {
|
|
221
|
+
isDetail: {
|
|
222
|
+
type: PropType<boolean>;
|
|
223
|
+
default: boolean;
|
|
224
|
+
};
|
|
215
225
|
}>>, {
|
|
216
226
|
pattern: Pattern;
|
|
217
227
|
currentRow: CurrentRow;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { DefineComponent,
|
|
1
|
+
import type { DefineComponent, Ref, ComputedRef, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
2
|
import type { roleValidator, CurrentRow, UserInfo, Pattern, patternValidator, RemoteConfig, DetailApiFunctionType, PageButton, PageButtonPosition, pageButtonPositionValidator, RecordString, Expose, ComputedFormFieldsItem } from '../../edit-page-layout';
|
|
3
3
|
declare const _sfc_main: DefineComponent<{
|
|
4
4
|
showPageHeader: {
|
|
@@ -97,6 +97,11 @@ declare const _sfc_main: DefineComponent<{
|
|
|
97
97
|
type: StringConstructor;
|
|
98
98
|
default: string;
|
|
99
99
|
};
|
|
100
|
+
} & {
|
|
101
|
+
isDetail: {
|
|
102
|
+
type: PropType<boolean>;
|
|
103
|
+
default: boolean;
|
|
104
|
+
};
|
|
100
105
|
}, {
|
|
101
106
|
instance: Ref<Expose | undefined>;
|
|
102
107
|
classes: ComputedRef<{
|
|
@@ -208,6 +213,11 @@ declare const _sfc_main: DefineComponent<{
|
|
|
208
213
|
type: StringConstructor;
|
|
209
214
|
default: string;
|
|
210
215
|
};
|
|
216
|
+
} & {
|
|
217
|
+
isDetail: {
|
|
218
|
+
type: PropType<boolean>;
|
|
219
|
+
default: boolean;
|
|
220
|
+
};
|
|
211
221
|
}>>, {
|
|
212
222
|
pattern: Pattern;
|
|
213
223
|
currentRow: CurrentRow;
|
|
@@ -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;
|