@qqt-product/ui 14.1.0 → 14.1.2
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.
|
@@ -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;
|