@qqt-product/ui 11.0.11 → 11.0.13
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 +8345 -8351
- package/dist/index.umd.js +85 -85
- package/dist/lib/components/detail-grid/index.d.ts +11 -1
- package/dist/lib/components/detail-grid/src/detail-grid.vue.d.ts +11 -1
- package/dist/lib/components/edit-grid/index.d.ts +11 -1
- package/dist/lib/components/edit-grid/src/edit-grid-types.d.ts +4 -0
- package/dist/lib/components/edit-grid/src/edit-grid.vue.d.ts +11 -1
- package/dist/lib/components/edit-grid/src/hook/use-grid-height-hook.d.ts +1 -1
- package/dist/lib/components/edit-page-layout/src/edit-page-layout-types.d.ts +1 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -59,6 +59,10 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
59
59
|
readonly type: PropType<boolean>;
|
|
60
60
|
readonly default: false;
|
|
61
61
|
};
|
|
62
|
+
readonly setMaxHeight: {
|
|
63
|
+
readonly type: PropType<boolean>;
|
|
64
|
+
readonly default: true;
|
|
65
|
+
};
|
|
62
66
|
}, {
|
|
63
67
|
groupName: Ref<string>;
|
|
64
68
|
groupNameI18nKey: Ref<string>;
|
|
@@ -68,7 +72,8 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
68
72
|
[key: string]: string | boolean;
|
|
69
73
|
}>;
|
|
70
74
|
buttons: Ref<PageButton[]>;
|
|
71
|
-
|
|
75
|
+
setMaxHeight: Ref<boolean>;
|
|
76
|
+
wrapBoxHeight: ComputedRef<string | number>;
|
|
72
77
|
isVertical: ComputedRef<boolean>;
|
|
73
78
|
xGrid: Ref<VxeGridInstance<any> | undefined>;
|
|
74
79
|
gridOptions: {
|
|
@@ -2693,6 +2698,10 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
2693
2698
|
readonly type: PropType<boolean>;
|
|
2694
2699
|
readonly default: false;
|
|
2695
2700
|
};
|
|
2701
|
+
readonly setMaxHeight: {
|
|
2702
|
+
readonly type: PropType<boolean>;
|
|
2703
|
+
readonly default: true;
|
|
2704
|
+
};
|
|
2696
2705
|
}>>, {
|
|
2697
2706
|
readonly total: Record<string, any>;
|
|
2698
2707
|
readonly columns: ColumnItem[];
|
|
@@ -2707,5 +2716,6 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
2707
2716
|
readonly slot: boolean;
|
|
2708
2717
|
readonly vxeGridConfig: VxeGridProps<VxeTableDataRow>;
|
|
2709
2718
|
readonly useAllConfig: boolean;
|
|
2719
|
+
readonly setMaxHeight: boolean;
|
|
2710
2720
|
}, {}>>;
|
|
2711
2721
|
export default _default;
|
|
@@ -55,6 +55,10 @@ declare const _sfc_main: DefineComponent<{
|
|
|
55
55
|
readonly type: PropType<boolean>;
|
|
56
56
|
readonly default: false;
|
|
57
57
|
};
|
|
58
|
+
readonly setMaxHeight: {
|
|
59
|
+
readonly type: PropType<boolean>;
|
|
60
|
+
readonly default: true;
|
|
61
|
+
};
|
|
58
62
|
}, {
|
|
59
63
|
groupName: Ref<string>;
|
|
60
64
|
groupNameI18nKey: Ref<string>;
|
|
@@ -64,7 +68,8 @@ declare const _sfc_main: DefineComponent<{
|
|
|
64
68
|
[key: string]: string | boolean;
|
|
65
69
|
}>;
|
|
66
70
|
buttons: Ref<PageButton[]>;
|
|
67
|
-
|
|
71
|
+
setMaxHeight: Ref<boolean>;
|
|
72
|
+
wrapBoxHeight: ComputedRef<string | number>;
|
|
68
73
|
isVertical: ComputedRef<boolean>;
|
|
69
74
|
xGrid: Ref<VxeGridInstance<any> | undefined>;
|
|
70
75
|
gridOptions: {
|
|
@@ -2689,6 +2694,10 @@ declare const _sfc_main: DefineComponent<{
|
|
|
2689
2694
|
readonly type: PropType<boolean>;
|
|
2690
2695
|
readonly default: false;
|
|
2691
2696
|
};
|
|
2697
|
+
readonly setMaxHeight: {
|
|
2698
|
+
readonly type: PropType<boolean>;
|
|
2699
|
+
readonly default: true;
|
|
2700
|
+
};
|
|
2692
2701
|
}>>, {
|
|
2693
2702
|
readonly total: Record<string, any>;
|
|
2694
2703
|
readonly columns: ColumnItem[];
|
|
@@ -2703,5 +2712,6 @@ declare const _sfc_main: DefineComponent<{
|
|
|
2703
2712
|
readonly slot: boolean;
|
|
2704
2713
|
readonly vxeGridConfig: VxeGridProps<VxeTableDataRow>;
|
|
2705
2714
|
readonly useAllConfig: boolean;
|
|
2715
|
+
readonly setMaxHeight: boolean;
|
|
2706
2716
|
}, {}>;
|
|
2707
2717
|
export default _sfc_main;
|
|
@@ -61,6 +61,10 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
61
61
|
readonly type: PropType<boolean>;
|
|
62
62
|
readonly default: false;
|
|
63
63
|
};
|
|
64
|
+
readonly setMaxHeight: {
|
|
65
|
+
readonly type: PropType<boolean>;
|
|
66
|
+
readonly default: true;
|
|
67
|
+
};
|
|
64
68
|
}, {
|
|
65
69
|
groupName: Ref<string>;
|
|
66
70
|
groupNameI18nKey: Ref<string>;
|
|
@@ -71,7 +75,8 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
71
75
|
}>;
|
|
72
76
|
buttons: Ref<PageButton[]>;
|
|
73
77
|
total: Ref<Record<string, any>>;
|
|
74
|
-
|
|
78
|
+
setMaxHeight: Ref<boolean>;
|
|
79
|
+
wrapBoxHeight: ComputedRef<string | number>;
|
|
75
80
|
isVertical: ComputedRef<boolean>;
|
|
76
81
|
xGrid: Ref<VxeGridInstance<any> | undefined>;
|
|
77
82
|
gridOptions: {
|
|
@@ -2697,6 +2702,10 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
2697
2702
|
readonly type: PropType<boolean>;
|
|
2698
2703
|
readonly default: false;
|
|
2699
2704
|
};
|
|
2705
|
+
readonly setMaxHeight: {
|
|
2706
|
+
readonly type: PropType<boolean>;
|
|
2707
|
+
readonly default: true;
|
|
2708
|
+
};
|
|
2700
2709
|
}>>, {
|
|
2701
2710
|
readonly total: Record<string, any>;
|
|
2702
2711
|
readonly columns: ColumnItem[];
|
|
@@ -2711,5 +2720,6 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
2711
2720
|
readonly slot: boolean;
|
|
2712
2721
|
readonly vxeGridConfig: VxeGridProps<VxeTableDataRow>;
|
|
2713
2722
|
readonly useAllConfig: boolean;
|
|
2723
|
+
readonly setMaxHeight: boolean;
|
|
2714
2724
|
}, {}>>;
|
|
2715
2725
|
export default _default;
|
|
@@ -54,6 +54,10 @@ export declare const editGridProps: {
|
|
|
54
54
|
readonly type: PropType<boolean>;
|
|
55
55
|
readonly default: false;
|
|
56
56
|
};
|
|
57
|
+
readonly setMaxHeight: {
|
|
58
|
+
readonly type: PropType<boolean>;
|
|
59
|
+
readonly default: true;
|
|
60
|
+
};
|
|
57
61
|
};
|
|
58
62
|
export type EditGridProps = ExtractPropTypes<typeof editGridProps>;
|
|
59
63
|
export interface EditGridReturnType {
|
|
@@ -56,6 +56,10 @@ declare const _sfc_main: DefineComponent<{
|
|
|
56
56
|
readonly type: PropType<boolean>;
|
|
57
57
|
readonly default: false;
|
|
58
58
|
};
|
|
59
|
+
readonly setMaxHeight: {
|
|
60
|
+
readonly type: PropType<boolean>;
|
|
61
|
+
readonly default: true;
|
|
62
|
+
};
|
|
59
63
|
}, {
|
|
60
64
|
groupName: Ref<string>;
|
|
61
65
|
groupNameI18nKey: Ref<string>;
|
|
@@ -66,7 +70,8 @@ declare const _sfc_main: DefineComponent<{
|
|
|
66
70
|
}>;
|
|
67
71
|
buttons: Ref<PageButton[]>;
|
|
68
72
|
total: Ref<Record<string, any>>;
|
|
69
|
-
|
|
73
|
+
setMaxHeight: Ref<boolean>;
|
|
74
|
+
wrapBoxHeight: ComputedRef<string | number>;
|
|
70
75
|
isVertical: ComputedRef<boolean>;
|
|
71
76
|
xGrid: Ref<VxeGridInstance<any> | undefined>;
|
|
72
77
|
gridOptions: {
|
|
@@ -2692,6 +2697,10 @@ declare const _sfc_main: DefineComponent<{
|
|
|
2692
2697
|
readonly type: PropType<boolean>;
|
|
2693
2698
|
readonly default: false;
|
|
2694
2699
|
};
|
|
2700
|
+
readonly setMaxHeight: {
|
|
2701
|
+
readonly type: PropType<boolean>;
|
|
2702
|
+
readonly default: true;
|
|
2703
|
+
};
|
|
2695
2704
|
}>>, {
|
|
2696
2705
|
readonly total: Record<string, any>;
|
|
2697
2706
|
readonly columns: ColumnItem[];
|
|
@@ -2706,5 +2715,6 @@ declare const _sfc_main: DefineComponent<{
|
|
|
2706
2715
|
readonly slot: boolean;
|
|
2707
2716
|
readonly vxeGridConfig: VxeGridProps<VxeTableDataRow>;
|
|
2708
2717
|
readonly useAllConfig: boolean;
|
|
2718
|
+
readonly setMaxHeight: boolean;
|
|
2709
2719
|
}, {}>;
|
|
2710
2720
|
export default _sfc_main;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { Ref, ComputedRef } from 'vue';
|
|
2
2
|
import type { VxeGridProps } from 'vxe-table';
|
|
3
3
|
import { RecordString } from '../../../edit-page-layout';
|
|
4
|
-
export default function useGridHeight(config: VxeGridProps, pageData: Ref<RecordString>, groupCode: Ref<string>): ComputedRef<number>;
|
|
4
|
+
export default function useGridHeight(config: VxeGridProps, pageData: Ref<RecordString>, groupCode: Ref<string>): ComputedRef<string | number>;
|