cnhis-design-vue 3.1.15-beta.8 → 3.1.15-beta.9
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/es/packages/form-config/index.d.ts +27 -31
- package/es/packages/form-config/src/FormConfig.js +5 -5
- package/es/packages/form-config/src/FormConfig.vue.d.ts +310 -313
- package/es/packages/form-config/src/components/FormConfigCreator.vue.d.ts +3 -3
- package/es/packages/form-config/src/components/FormConfigEdit.vue.d.ts +4 -6
- package/es/packages/form-config/src/hooks/useConfigurationField.js +5 -3
- package/es/packages/form-config/src/hooks/usePresetRenderer.d.ts +2 -2
- package/es/packages/form-config/src/hooks/usePresetRenderer.js +2 -2
- package/es/packages/form-config/src/types/index.d.ts +1 -1
- package/es/packages/form-render/index.d.ts +3 -3
- package/es/packages/form-render/src/FormRender.vue.d.ts +3 -3
- package/es/packages/form-render/src/components/renderer/select.js +15 -8
- package/es/packages/form-render/src/hooks/useAsyncQueue.d.ts +2 -2
- package/es/packages/form-render/src/hooks/useAsyncQueue.js +4 -8
- package/es/packages/form-render/src/hooks/useFormContext.js +10 -4
- package/es/packages/form-render/src/hooks/useFormRenderLifeCycle.d.ts +2 -2
- package/es/packages/form-render/src/types/index.d.ts +7 -3
- package/es/packages/form-render/src/utils/index.d.ts +1 -1
- package/es/packages/form-render/src/utils/index.js +17 -6
- package/es/packages/shortcut-setter/index.d.ts +3 -3
- package/es/packages/shortcut-setter/src/ShortcutSetter.vue.d.ts +3 -3
- package/package.json +1 -1
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
/// <reference types="lodash" />
|
|
2
2
|
import { Func } from '../../../../es/src/types';
|
|
3
|
-
import {
|
|
3
|
+
import { PropType } from 'vue';
|
|
4
|
+
import { FormConfigTextFormatter } from '../../../../es/packages/form-config/src/types';
|
|
4
5
|
import { FieldItem } from '../../../../es/packages/form-render';
|
|
5
6
|
declare const _default: import("vue").DefineComponent<{
|
|
6
|
-
|
|
7
|
-
type:
|
|
8
|
-
required: false;
|
|
7
|
+
textFormatter: {
|
|
8
|
+
type: PropType<FormConfigTextFormatter>;
|
|
9
9
|
};
|
|
10
10
|
}, {
|
|
11
|
-
props: {
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
12
|
+
textFormatter: {
|
|
13
|
+
type: PropType<FormConfigTextFormatter>;
|
|
14
|
+
};
|
|
15
|
+
}>> & {
|
|
16
|
+
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
17
|
+
}>>;
|
|
14
18
|
commonConfig: {
|
|
15
19
|
onMove: ({ to, from }: import("sortablejs").SortableEvent) => void;
|
|
16
20
|
onChoose: ({ target, item }: import("sortablejs").SortableEvent) => void;
|
|
@@ -89,13 +93,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
89
93
|
urlConfig?: {
|
|
90
94
|
url?: string | undefined;
|
|
91
95
|
method?: "delete" | "post" | "get" | "patch" | "put" | undefined;
|
|
92
|
-
dependKey?: Record<string, string> |
|
|
96
|
+
dependKey?: string | Record<string, string> | (string | {
|
|
93
97
|
paramName: string;
|
|
94
|
-
paramValue
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
paramValue: string;
|
|
98
|
-
}[] | undefined;
|
|
98
|
+
paramValue?: string | undefined;
|
|
99
|
+
required?: boolean | undefined;
|
|
100
|
+
})[] | undefined;
|
|
99
101
|
params?: import("../../../../es/src/types").AnyObject | undefined;
|
|
100
102
|
nameKey?: string | undefined;
|
|
101
103
|
valueKey?: string | undefined;
|
|
@@ -1742,13 +1744,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1742
1744
|
urlConfig?: {
|
|
1743
1745
|
url?: string | undefined;
|
|
1744
1746
|
method?: "delete" | "post" | "get" | "patch" | "put" | undefined;
|
|
1745
|
-
dependKey?: Record<string, string> |
|
|
1747
|
+
dependKey?: string | Record<string, string> | (string | {
|
|
1746
1748
|
paramName: string;
|
|
1747
|
-
paramValue
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
paramValue: string;
|
|
1751
|
-
}[] | undefined;
|
|
1749
|
+
paramValue?: string | undefined;
|
|
1750
|
+
required?: boolean | undefined;
|
|
1751
|
+
})[] | undefined;
|
|
1752
1752
|
params?: import("../../../../es/src/types").AnyObject | undefined;
|
|
1753
1753
|
nameKey?: string | undefined;
|
|
1754
1754
|
valueKey?: string | undefined;
|
|
@@ -3326,7 +3326,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3326
3326
|
}[] | undefined;
|
|
3327
3327
|
}[]>;
|
|
3328
3328
|
addItem: (fieldItem: FieldItem) => void;
|
|
3329
|
-
|
|
3329
|
+
textFormatter: FormConfigTextFormatter;
|
|
3330
3330
|
getRenderer: (fieldItem: FieldItem) => import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>;
|
|
3331
3331
|
currentEditField: import("vue").Ref<FieldItem | undefined>;
|
|
3332
3332
|
formConfigEditRef: import("vue").Ref<{
|
|
@@ -3334,19 +3334,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3334
3334
|
} | undefined>;
|
|
3335
3335
|
SlotRender: import("vue").DefineComponent<{
|
|
3336
3336
|
renderer: {
|
|
3337
|
-
type:
|
|
3337
|
+
type: PropType<string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | Func<any[], any>>;
|
|
3338
3338
|
required: true;
|
|
3339
3339
|
};
|
|
3340
3340
|
rootSlots: {
|
|
3341
|
-
type:
|
|
3341
|
+
type: PropType<Record<string, Func<any[], any>>>;
|
|
3342
3342
|
};
|
|
3343
3343
|
}, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
3344
3344
|
renderer: {
|
|
3345
|
-
type:
|
|
3345
|
+
type: PropType<string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | Func<any[], any>>;
|
|
3346
3346
|
required: true;
|
|
3347
3347
|
};
|
|
3348
3348
|
rootSlots: {
|
|
3349
|
-
type:
|
|
3349
|
+
type: PropType<Record<string, Func<any[], any>>>;
|
|
3350
3350
|
};
|
|
3351
3351
|
}>>, {}>;
|
|
3352
3352
|
Draggable: import("vue").DefineComponent<{
|
|
@@ -3496,13 +3496,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3496
3496
|
urlConfig?: {
|
|
3497
3497
|
url?: string | undefined;
|
|
3498
3498
|
method?: "delete" | "post" | "get" | "patch" | "put" | undefined;
|
|
3499
|
-
dependKey?: Record<string, string> |
|
|
3500
|
-
paramName: string;
|
|
3501
|
-
paramValue: string;
|
|
3502
|
-
} | {
|
|
3499
|
+
dependKey?: string | Record<string, string> | (string | {
|
|
3503
3500
|
paramName: string;
|
|
3504
|
-
paramValue
|
|
3505
|
-
|
|
3501
|
+
paramValue?: string | undefined;
|
|
3502
|
+
required?: boolean | undefined;
|
|
3503
|
+
})[] | undefined;
|
|
3506
3504
|
params?: import("../../../../es/src/types").AnyObject | undefined;
|
|
3507
3505
|
nameKey?: string | undefined;
|
|
3508
3506
|
valueKey?: string | undefined;
|
|
@@ -5086,59 +5084,59 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5086
5084
|
prevOldField: null;
|
|
5087
5085
|
onFormChange: ({ fieldKey, value }: import("../../../../es/packages/form-render").FormChangePayload) => void;
|
|
5088
5086
|
NModal: import("vue").DefineComponent<{
|
|
5089
|
-
onEsc:
|
|
5090
|
-
'onUpdate:show':
|
|
5091
|
-
onUpdateShow:
|
|
5092
|
-
onAfterEnter:
|
|
5093
|
-
onBeforeLeave:
|
|
5094
|
-
onAfterLeave:
|
|
5095
|
-
onClose:
|
|
5096
|
-
onPositiveClick:
|
|
5097
|
-
onNegativeClick:
|
|
5098
|
-
onMaskClick:
|
|
5087
|
+
onEsc: PropType<() => void>;
|
|
5088
|
+
'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
5089
|
+
onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
5090
|
+
onAfterEnter: PropType<() => void>;
|
|
5091
|
+
onBeforeLeave: PropType<() => void>;
|
|
5092
|
+
onAfterLeave: PropType<() => void>;
|
|
5093
|
+
onClose: PropType<() => any>;
|
|
5094
|
+
onPositiveClick: PropType<() => any>;
|
|
5095
|
+
onNegativeClick: PropType<() => any>;
|
|
5096
|
+
onMaskClick: PropType<(e: MouseEvent) => void>;
|
|
5099
5097
|
internalDialog: BooleanConstructor;
|
|
5100
5098
|
internalAppear: {
|
|
5101
|
-
type:
|
|
5099
|
+
type: PropType<boolean | undefined>;
|
|
5102
5100
|
default: undefined;
|
|
5103
5101
|
};
|
|
5104
|
-
overlayStyle:
|
|
5105
|
-
onBeforeHide:
|
|
5106
|
-
onAfterHide:
|
|
5107
|
-
onHide:
|
|
5108
|
-
icon:
|
|
5102
|
+
overlayStyle: PropType<string | import("vue").CSSProperties>;
|
|
5103
|
+
onBeforeHide: PropType<() => void>;
|
|
5104
|
+
onAfterHide: PropType<() => void>;
|
|
5105
|
+
onHide: PropType<(value: false) => void>;
|
|
5106
|
+
icon: PropType<() => import("vue").VNodeChild>;
|
|
5109
5107
|
type: {
|
|
5110
|
-
readonly type:
|
|
5108
|
+
readonly type: PropType<"default" | "info" | "success" | "warning" | "error">;
|
|
5111
5109
|
readonly default: "default";
|
|
5112
5110
|
};
|
|
5113
|
-
title:
|
|
5111
|
+
title: PropType<string | (() => import("vue").VNodeChild)>;
|
|
5114
5112
|
closable: {
|
|
5115
5113
|
readonly type: BooleanConstructor;
|
|
5116
5114
|
readonly default: true;
|
|
5117
5115
|
};
|
|
5118
5116
|
negativeText: StringConstructor;
|
|
5119
5117
|
positiveText: StringConstructor;
|
|
5120
|
-
positiveButtonProps:
|
|
5121
|
-
negativeButtonProps:
|
|
5122
|
-
content:
|
|
5123
|
-
action:
|
|
5118
|
+
positiveButtonProps: PropType<import("naive-ui").ButtonProps>;
|
|
5119
|
+
negativeButtonProps: PropType<import("naive-ui").ButtonProps>;
|
|
5120
|
+
content: PropType<string | (() => import("vue").VNodeChild)>;
|
|
5121
|
+
action: PropType<() => import("vue").VNodeChild>;
|
|
5124
5122
|
showIcon: {
|
|
5125
5123
|
readonly type: BooleanConstructor;
|
|
5126
5124
|
readonly default: true;
|
|
5127
5125
|
};
|
|
5128
5126
|
loading: BooleanConstructor;
|
|
5129
5127
|
bordered: BooleanConstructor;
|
|
5130
|
-
iconPlacement:
|
|
5131
|
-
contentStyle:
|
|
5132
|
-
headerStyle:
|
|
5133
|
-
headerExtraStyle:
|
|
5134
|
-
footerStyle:
|
|
5128
|
+
iconPlacement: PropType<import("naive-ui/es/dialog/src/interface").IconPlacement>;
|
|
5129
|
+
contentStyle: PropType<string | import("vue").CSSProperties>;
|
|
5130
|
+
headerStyle: PropType<string | import("vue").CSSProperties>;
|
|
5131
|
+
headerExtraStyle: PropType<string | import("vue").CSSProperties>;
|
|
5132
|
+
footerStyle: PropType<string | import("vue").CSSProperties>;
|
|
5135
5133
|
embedded: BooleanConstructor;
|
|
5136
5134
|
segmented: {
|
|
5137
|
-
readonly type:
|
|
5135
|
+
readonly type: PropType<boolean | import("naive-ui/es/card/src/Card").Segmented>;
|
|
5138
5136
|
readonly default: false;
|
|
5139
5137
|
};
|
|
5140
5138
|
size: {
|
|
5141
|
-
readonly type:
|
|
5139
|
+
readonly type: PropType<"small" | "medium" | "large" | "huge">;
|
|
5142
5140
|
readonly default: "medium";
|
|
5143
5141
|
};
|
|
5144
5142
|
hoverable: BooleanConstructor;
|
|
@@ -5152,14 +5150,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5152
5150
|
type: BooleanConstructor;
|
|
5153
5151
|
default: boolean;
|
|
5154
5152
|
};
|
|
5155
|
-
preset:
|
|
5156
|
-
to:
|
|
5153
|
+
preset: PropType<"dialog" | "confirm" | "card">;
|
|
5154
|
+
to: PropType<string | HTMLElement>;
|
|
5157
5155
|
displayDirective: {
|
|
5158
|
-
type:
|
|
5156
|
+
type: PropType<"show" | "if">;
|
|
5159
5157
|
default: string;
|
|
5160
5158
|
};
|
|
5161
5159
|
transformOrigin: {
|
|
5162
|
-
type:
|
|
5160
|
+
type: PropType<"center" | "mouse">;
|
|
5163
5161
|
default: string;
|
|
5164
5162
|
};
|
|
5165
5163
|
zIndex: NumberConstructor;
|
|
@@ -5179,7 +5177,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5179
5177
|
type: BooleanConstructor;
|
|
5180
5178
|
default: boolean;
|
|
5181
5179
|
};
|
|
5182
|
-
theme:
|
|
5180
|
+
theme: PropType<import("naive-ui/es/_mixins").Theme<"Modal", {
|
|
5183
5181
|
color: string;
|
|
5184
5182
|
textColor: string;
|
|
5185
5183
|
boxShadow: string;
|
|
@@ -5461,7 +5459,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5461
5459
|
closeSize: string;
|
|
5462
5460
|
}, any>;
|
|
5463
5461
|
}>>;
|
|
5464
|
-
themeOverrides:
|
|
5462
|
+
themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Modal", {
|
|
5465
5463
|
color: string;
|
|
5466
5464
|
textColor: string;
|
|
5467
5465
|
boxShadow: string;
|
|
@@ -5743,7 +5741,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5743
5741
|
closeSize: string;
|
|
5744
5742
|
}, any>;
|
|
5745
5743
|
}>>>;
|
|
5746
|
-
builtinThemeOverrides:
|
|
5744
|
+
builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Modal", {
|
|
5747
5745
|
color: string;
|
|
5748
5746
|
textColor: string;
|
|
5749
5747
|
boxShadow: string;
|
|
@@ -6048,59 +6046,59 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6048
6046
|
themeClass: import("vue").Ref<string> | undefined;
|
|
6049
6047
|
onRender: (() => void) | undefined;
|
|
6050
6048
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6051
|
-
onEsc:
|
|
6052
|
-
'onUpdate:show':
|
|
6053
|
-
onUpdateShow:
|
|
6054
|
-
onAfterEnter:
|
|
6055
|
-
onBeforeLeave:
|
|
6056
|
-
onAfterLeave:
|
|
6057
|
-
onClose:
|
|
6058
|
-
onPositiveClick:
|
|
6059
|
-
onNegativeClick:
|
|
6060
|
-
onMaskClick:
|
|
6049
|
+
onEsc: PropType<() => void>;
|
|
6050
|
+
'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
6051
|
+
onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
6052
|
+
onAfterEnter: PropType<() => void>;
|
|
6053
|
+
onBeforeLeave: PropType<() => void>;
|
|
6054
|
+
onAfterLeave: PropType<() => void>;
|
|
6055
|
+
onClose: PropType<() => any>;
|
|
6056
|
+
onPositiveClick: PropType<() => any>;
|
|
6057
|
+
onNegativeClick: PropType<() => any>;
|
|
6058
|
+
onMaskClick: PropType<(e: MouseEvent) => void>;
|
|
6061
6059
|
internalDialog: BooleanConstructor;
|
|
6062
6060
|
internalAppear: {
|
|
6063
|
-
type:
|
|
6061
|
+
type: PropType<boolean | undefined>;
|
|
6064
6062
|
default: undefined;
|
|
6065
6063
|
};
|
|
6066
|
-
overlayStyle:
|
|
6067
|
-
onBeforeHide:
|
|
6068
|
-
onAfterHide:
|
|
6069
|
-
onHide:
|
|
6070
|
-
icon:
|
|
6064
|
+
overlayStyle: PropType<string | import("vue").CSSProperties>;
|
|
6065
|
+
onBeforeHide: PropType<() => void>;
|
|
6066
|
+
onAfterHide: PropType<() => void>;
|
|
6067
|
+
onHide: PropType<(value: false) => void>;
|
|
6068
|
+
icon: PropType<() => import("vue").VNodeChild>;
|
|
6071
6069
|
type: {
|
|
6072
|
-
readonly type:
|
|
6070
|
+
readonly type: PropType<"default" | "info" | "success" | "warning" | "error">;
|
|
6073
6071
|
readonly default: "default";
|
|
6074
6072
|
};
|
|
6075
|
-
title:
|
|
6073
|
+
title: PropType<string | (() => import("vue").VNodeChild)>;
|
|
6076
6074
|
closable: {
|
|
6077
6075
|
readonly type: BooleanConstructor;
|
|
6078
6076
|
readonly default: true;
|
|
6079
6077
|
};
|
|
6080
6078
|
negativeText: StringConstructor;
|
|
6081
6079
|
positiveText: StringConstructor;
|
|
6082
|
-
positiveButtonProps:
|
|
6083
|
-
negativeButtonProps:
|
|
6084
|
-
content:
|
|
6085
|
-
action:
|
|
6080
|
+
positiveButtonProps: PropType<import("naive-ui").ButtonProps>;
|
|
6081
|
+
negativeButtonProps: PropType<import("naive-ui").ButtonProps>;
|
|
6082
|
+
content: PropType<string | (() => import("vue").VNodeChild)>;
|
|
6083
|
+
action: PropType<() => import("vue").VNodeChild>;
|
|
6086
6084
|
showIcon: {
|
|
6087
6085
|
readonly type: BooleanConstructor;
|
|
6088
6086
|
readonly default: true;
|
|
6089
6087
|
};
|
|
6090
6088
|
loading: BooleanConstructor;
|
|
6091
6089
|
bordered: BooleanConstructor;
|
|
6092
|
-
iconPlacement:
|
|
6093
|
-
contentStyle:
|
|
6094
|
-
headerStyle:
|
|
6095
|
-
headerExtraStyle:
|
|
6096
|
-
footerStyle:
|
|
6090
|
+
iconPlacement: PropType<import("naive-ui/es/dialog/src/interface").IconPlacement>;
|
|
6091
|
+
contentStyle: PropType<string | import("vue").CSSProperties>;
|
|
6092
|
+
headerStyle: PropType<string | import("vue").CSSProperties>;
|
|
6093
|
+
headerExtraStyle: PropType<string | import("vue").CSSProperties>;
|
|
6094
|
+
footerStyle: PropType<string | import("vue").CSSProperties>;
|
|
6097
6095
|
embedded: BooleanConstructor;
|
|
6098
6096
|
segmented: {
|
|
6099
|
-
readonly type:
|
|
6097
|
+
readonly type: PropType<boolean | import("naive-ui/es/card/src/Card").Segmented>;
|
|
6100
6098
|
readonly default: false;
|
|
6101
6099
|
};
|
|
6102
6100
|
size: {
|
|
6103
|
-
readonly type:
|
|
6101
|
+
readonly type: PropType<"small" | "medium" | "large" | "huge">;
|
|
6104
6102
|
readonly default: "medium";
|
|
6105
6103
|
};
|
|
6106
6104
|
hoverable: BooleanConstructor;
|
|
@@ -6114,14 +6112,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6114
6112
|
type: BooleanConstructor;
|
|
6115
6113
|
default: boolean;
|
|
6116
6114
|
};
|
|
6117
|
-
preset:
|
|
6118
|
-
to:
|
|
6115
|
+
preset: PropType<"dialog" | "confirm" | "card">;
|
|
6116
|
+
to: PropType<string | HTMLElement>;
|
|
6119
6117
|
displayDirective: {
|
|
6120
|
-
type:
|
|
6118
|
+
type: PropType<"show" | "if">;
|
|
6121
6119
|
default: string;
|
|
6122
6120
|
};
|
|
6123
6121
|
transformOrigin: {
|
|
6124
|
-
type:
|
|
6122
|
+
type: PropType<"center" | "mouse">;
|
|
6125
6123
|
default: string;
|
|
6126
6124
|
};
|
|
6127
6125
|
zIndex: NumberConstructor;
|
|
@@ -6141,7 +6139,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6141
6139
|
type: BooleanConstructor;
|
|
6142
6140
|
default: boolean;
|
|
6143
6141
|
};
|
|
6144
|
-
theme:
|
|
6142
|
+
theme: PropType<import("naive-ui/es/_mixins").Theme<"Modal", {
|
|
6145
6143
|
color: string;
|
|
6146
6144
|
textColor: string;
|
|
6147
6145
|
boxShadow: string;
|
|
@@ -6423,7 +6421,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6423
6421
|
closeSize: string;
|
|
6424
6422
|
}, any>;
|
|
6425
6423
|
}>>;
|
|
6426
|
-
themeOverrides:
|
|
6424
|
+
themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Modal", {
|
|
6427
6425
|
color: string;
|
|
6428
6426
|
textColor: string;
|
|
6429
6427
|
boxShadow: string;
|
|
@@ -6705,7 +6703,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6705
6703
|
closeSize: string;
|
|
6706
6704
|
}, any>;
|
|
6707
6705
|
}>>>;
|
|
6708
|
-
builtinThemeOverrides:
|
|
6706
|
+
builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Modal", {
|
|
6709
6707
|
color: string;
|
|
6710
6708
|
textColor: string;
|
|
6711
6709
|
boxShadow: string;
|
|
@@ -7028,7 +7026,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7028
7026
|
readonly loading: BooleanConstructor;
|
|
7029
7027
|
readonly disabled: BooleanConstructor;
|
|
7030
7028
|
readonly circle: BooleanConstructor;
|
|
7031
|
-
readonly size:
|
|
7029
|
+
readonly size: PropType<import("naive-ui/es/button/src/interface").Size>;
|
|
7032
7030
|
readonly ghost: BooleanConstructor;
|
|
7033
7031
|
readonly round: BooleanConstructor;
|
|
7034
7032
|
readonly secondary: BooleanConstructor;
|
|
@@ -7044,32 +7042,32 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7044
7042
|
readonly default: true;
|
|
7045
7043
|
};
|
|
7046
7044
|
readonly tag: {
|
|
7047
|
-
readonly type:
|
|
7045
|
+
readonly type: PropType<keyof HTMLElementTagNameMap>;
|
|
7048
7046
|
readonly default: "button";
|
|
7049
7047
|
};
|
|
7050
7048
|
readonly type: {
|
|
7051
|
-
readonly type:
|
|
7049
|
+
readonly type: PropType<import("naive-ui/es/button/src/interface").Type>;
|
|
7052
7050
|
readonly default: "default";
|
|
7053
7051
|
};
|
|
7054
7052
|
readonly dashed: BooleanConstructor;
|
|
7055
7053
|
readonly iconPlacement: {
|
|
7056
|
-
readonly type:
|
|
7054
|
+
readonly type: PropType<"left" | "right">;
|
|
7057
7055
|
readonly default: "left";
|
|
7058
7056
|
};
|
|
7059
7057
|
readonly attrType: {
|
|
7060
|
-
readonly type:
|
|
7058
|
+
readonly type: PropType<"button" | "reset" | "submit">;
|
|
7061
7059
|
readonly default: "button";
|
|
7062
7060
|
};
|
|
7063
7061
|
readonly bordered: {
|
|
7064
7062
|
readonly type: BooleanConstructor;
|
|
7065
7063
|
readonly default: true;
|
|
7066
7064
|
};
|
|
7067
|
-
readonly onClick:
|
|
7065
|
+
readonly onClick: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
7068
7066
|
readonly nativeFocusBehavior: {
|
|
7069
7067
|
readonly type: BooleanConstructor;
|
|
7070
7068
|
readonly default: boolean;
|
|
7071
7069
|
};
|
|
7072
|
-
readonly theme:
|
|
7070
|
+
readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
7073
7071
|
heightTiny: string;
|
|
7074
7072
|
heightSmall: string;
|
|
7075
7073
|
heightMedium: string;
|
|
@@ -7273,7 +7271,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7273
7271
|
iconSizeLarge: string;
|
|
7274
7272
|
rippleDuration: string;
|
|
7275
7273
|
}, any>>;
|
|
7276
|
-
readonly themeOverrides:
|
|
7274
|
+
readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
7277
7275
|
heightTiny: string;
|
|
7278
7276
|
heightSmall: string;
|
|
7279
7277
|
heightMedium: string;
|
|
@@ -7477,7 +7475,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7477
7475
|
iconSizeLarge: string;
|
|
7478
7476
|
rippleDuration: string;
|
|
7479
7477
|
}, any>>>;
|
|
7480
|
-
readonly builtinThemeOverrides:
|
|
7478
|
+
readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
7481
7479
|
heightTiny: string;
|
|
7482
7480
|
heightSmall: string;
|
|
7483
7481
|
heightMedium: string;
|
|
@@ -7745,7 +7743,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7745
7743
|
readonly loading: BooleanConstructor;
|
|
7746
7744
|
readonly disabled: BooleanConstructor;
|
|
7747
7745
|
readonly circle: BooleanConstructor;
|
|
7748
|
-
readonly size:
|
|
7746
|
+
readonly size: PropType<import("naive-ui/es/button/src/interface").Size>;
|
|
7749
7747
|
readonly ghost: BooleanConstructor;
|
|
7750
7748
|
readonly round: BooleanConstructor;
|
|
7751
7749
|
readonly secondary: BooleanConstructor;
|
|
@@ -7761,32 +7759,32 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7761
7759
|
readonly default: true;
|
|
7762
7760
|
};
|
|
7763
7761
|
readonly tag: {
|
|
7764
|
-
readonly type:
|
|
7762
|
+
readonly type: PropType<keyof HTMLElementTagNameMap>;
|
|
7765
7763
|
readonly default: "button";
|
|
7766
7764
|
};
|
|
7767
7765
|
readonly type: {
|
|
7768
|
-
readonly type:
|
|
7766
|
+
readonly type: PropType<import("naive-ui/es/button/src/interface").Type>;
|
|
7769
7767
|
readonly default: "default";
|
|
7770
7768
|
};
|
|
7771
7769
|
readonly dashed: BooleanConstructor;
|
|
7772
7770
|
readonly iconPlacement: {
|
|
7773
|
-
readonly type:
|
|
7771
|
+
readonly type: PropType<"left" | "right">;
|
|
7774
7772
|
readonly default: "left";
|
|
7775
7773
|
};
|
|
7776
7774
|
readonly attrType: {
|
|
7777
|
-
readonly type:
|
|
7775
|
+
readonly type: PropType<"button" | "reset" | "submit">;
|
|
7778
7776
|
readonly default: "button";
|
|
7779
7777
|
};
|
|
7780
7778
|
readonly bordered: {
|
|
7781
7779
|
readonly type: BooleanConstructor;
|
|
7782
7780
|
readonly default: true;
|
|
7783
7781
|
};
|
|
7784
|
-
readonly onClick:
|
|
7782
|
+
readonly onClick: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
7785
7783
|
readonly nativeFocusBehavior: {
|
|
7786
7784
|
readonly type: BooleanConstructor;
|
|
7787
7785
|
readonly default: boolean;
|
|
7788
7786
|
};
|
|
7789
|
-
readonly theme:
|
|
7787
|
+
readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
7790
7788
|
heightTiny: string;
|
|
7791
7789
|
heightSmall: string;
|
|
7792
7790
|
heightMedium: string;
|
|
@@ -7990,7 +7988,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7990
7988
|
iconSizeLarge: string;
|
|
7991
7989
|
rippleDuration: string;
|
|
7992
7990
|
}, any>>;
|
|
7993
|
-
readonly themeOverrides:
|
|
7991
|
+
readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
7994
7992
|
heightTiny: string;
|
|
7995
7993
|
heightSmall: string;
|
|
7996
7994
|
heightMedium: string;
|
|
@@ -8194,7 +8192,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8194
8192
|
iconSizeLarge: string;
|
|
8195
8193
|
rippleDuration: string;
|
|
8196
8194
|
}, any>>>;
|
|
8197
|
-
readonly builtinThemeOverrides:
|
|
8195
|
+
readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
8198
8196
|
heightTiny: string;
|
|
8199
8197
|
heightSmall: string;
|
|
8200
8198
|
heightMedium: string;
|
|
@@ -8422,7 +8420,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8422
8420
|
}>;
|
|
8423
8421
|
NButtonGroup: import("vue").DefineComponent<{
|
|
8424
8422
|
readonly size: {
|
|
8425
|
-
readonly type:
|
|
8423
|
+
readonly type: PropType<import("naive-ui/es/button/src/interface").Size | undefined>;
|
|
8426
8424
|
readonly default: undefined;
|
|
8427
8425
|
};
|
|
8428
8426
|
readonly vertical: BooleanConstructor;
|
|
@@ -8431,7 +8429,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8431
8429
|
mergedClsPrefix: import("vue").ComputedRef<string>;
|
|
8432
8430
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8433
8431
|
readonly size: {
|
|
8434
|
-
readonly type:
|
|
8432
|
+
readonly type: PropType<import("naive-ui/es/button/src/interface").Size | undefined>;
|
|
8435
8433
|
readonly default: undefined;
|
|
8436
8434
|
};
|
|
8437
8435
|
readonly vertical: BooleanConstructor;
|
|
@@ -8440,22 +8438,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8440
8438
|
readonly vertical: boolean;
|
|
8441
8439
|
}>;
|
|
8442
8440
|
NPopconfirm: import("vue").DefineComponent<{
|
|
8443
|
-
positiveText:
|
|
8444
|
-
negativeText:
|
|
8441
|
+
positiveText: PropType<string | null>;
|
|
8442
|
+
negativeText: PropType<string | null>;
|
|
8445
8443
|
showIcon: {
|
|
8446
8444
|
type: BooleanConstructor;
|
|
8447
8445
|
default: boolean;
|
|
8448
8446
|
};
|
|
8449
8447
|
trigger: {
|
|
8450
|
-
type:
|
|
8448
|
+
type: PropType<import("naive-ui").PopoverTrigger>;
|
|
8451
8449
|
default: string;
|
|
8452
8450
|
};
|
|
8453
|
-
positiveButtonProps:
|
|
8454
|
-
negativeButtonProps:
|
|
8455
|
-
onPositiveClick:
|
|
8456
|
-
onNegativeClick:
|
|
8451
|
+
positiveButtonProps: PropType<import("naive-ui").ButtonProps>;
|
|
8452
|
+
negativeButtonProps: PropType<import("naive-ui").ButtonProps>;
|
|
8453
|
+
onPositiveClick: PropType<(e: MouseEvent) => any>;
|
|
8454
|
+
onNegativeClick: PropType<(e: MouseEvent) => any>;
|
|
8457
8455
|
show: {
|
|
8458
|
-
type:
|
|
8456
|
+
type: PropType<boolean | undefined>;
|
|
8459
8457
|
default: undefined;
|
|
8460
8458
|
};
|
|
8461
8459
|
defaultShow: BooleanConstructor;
|
|
@@ -8473,19 +8471,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8473
8471
|
};
|
|
8474
8472
|
raw: BooleanConstructor;
|
|
8475
8473
|
placement: {
|
|
8476
|
-
type:
|
|
8474
|
+
type: PropType<import("vueuc").FollowerPlacement>;
|
|
8477
8475
|
default: string;
|
|
8478
8476
|
};
|
|
8479
8477
|
x: NumberConstructor;
|
|
8480
8478
|
y: NumberConstructor;
|
|
8481
8479
|
arrowPointToCenter: BooleanConstructor;
|
|
8482
8480
|
disabled: BooleanConstructor;
|
|
8483
|
-
getDisabled:
|
|
8481
|
+
getDisabled: PropType<() => boolean>;
|
|
8484
8482
|
displayDirective: {
|
|
8485
|
-
type:
|
|
8483
|
+
type: PropType<"show" | "if">;
|
|
8486
8484
|
default: string;
|
|
8487
8485
|
};
|
|
8488
|
-
arrowStyle:
|
|
8486
|
+
arrowStyle: PropType<string | import("vue").CSSProperties>;
|
|
8489
8487
|
flip: {
|
|
8490
8488
|
type: BooleanConstructor;
|
|
8491
8489
|
default: boolean;
|
|
@@ -8495,7 +8493,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8495
8493
|
default: boolean;
|
|
8496
8494
|
};
|
|
8497
8495
|
width: {
|
|
8498
|
-
type:
|
|
8496
|
+
type: PropType<number | "trigger">;
|
|
8499
8497
|
default: undefined;
|
|
8500
8498
|
};
|
|
8501
8499
|
overlap: BooleanConstructor;
|
|
@@ -8505,36 +8503,36 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8505
8503
|
};
|
|
8506
8504
|
zIndex: NumberConstructor;
|
|
8507
8505
|
to: {
|
|
8508
|
-
type:
|
|
8506
|
+
type: PropType<string | boolean | HTMLElement>;
|
|
8509
8507
|
default: undefined;
|
|
8510
8508
|
};
|
|
8511
8509
|
scrollable: BooleanConstructor;
|
|
8512
|
-
contentStyle:
|
|
8513
|
-
headerStyle:
|
|
8514
|
-
footerStyle:
|
|
8515
|
-
onClickoutside:
|
|
8516
|
-
'onUpdate:show':
|
|
8517
|
-
onUpdateShow:
|
|
8510
|
+
contentStyle: PropType<string | import("vue").CSSProperties>;
|
|
8511
|
+
headerStyle: PropType<string | import("vue").CSSProperties>;
|
|
8512
|
+
footerStyle: PropType<string | import("vue").CSSProperties>;
|
|
8513
|
+
onClickoutside: PropType<(e: MouseEvent) => void>;
|
|
8514
|
+
'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
8515
|
+
onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
8518
8516
|
internalDeactivateImmediately: BooleanConstructor;
|
|
8519
8517
|
internalSyncTargetWithParent: BooleanConstructor;
|
|
8520
8518
|
internalInheritedEventHandlers: {
|
|
8521
|
-
type:
|
|
8519
|
+
type: PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
|
|
8522
8520
|
default: () => never[];
|
|
8523
8521
|
};
|
|
8524
8522
|
internalTrapFocus: BooleanConstructor;
|
|
8525
8523
|
internalExtraClass: {
|
|
8526
|
-
type:
|
|
8524
|
+
type: PropType<string[]>;
|
|
8527
8525
|
default: () => never[];
|
|
8528
8526
|
};
|
|
8529
|
-
onShow:
|
|
8530
|
-
onHide:
|
|
8527
|
+
onShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
|
8528
|
+
onHide: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
|
8531
8529
|
arrow: {
|
|
8532
|
-
type:
|
|
8530
|
+
type: PropType<boolean | undefined>;
|
|
8533
8531
|
default: undefined;
|
|
8534
8532
|
};
|
|
8535
8533
|
minWidth: NumberConstructor;
|
|
8536
8534
|
maxWidth: NumberConstructor;
|
|
8537
|
-
theme:
|
|
8535
|
+
theme: PropType<import("naive-ui/es/_mixins").Theme<"Popconfirm", {
|
|
8538
8536
|
fontSize: string;
|
|
8539
8537
|
iconColor: string;
|
|
8540
8538
|
iconSize: string;
|
|
@@ -8758,7 +8756,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8758
8756
|
padding: string;
|
|
8759
8757
|
}, any>;
|
|
8760
8758
|
}>>;
|
|
8761
|
-
themeOverrides:
|
|
8759
|
+
themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Popconfirm", {
|
|
8762
8760
|
fontSize: string;
|
|
8763
8761
|
iconColor: string;
|
|
8764
8762
|
iconSize: string;
|
|
@@ -8982,7 +8980,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8982
8980
|
padding: string;
|
|
8983
8981
|
}, any>;
|
|
8984
8982
|
}>>>;
|
|
8985
|
-
builtinThemeOverrides:
|
|
8983
|
+
builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Popconfirm", {
|
|
8986
8984
|
fontSize: string;
|
|
8987
8985
|
iconColor: string;
|
|
8988
8986
|
iconSize: string;
|
|
@@ -9560,22 +9558,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9560
9558
|
syncPosition: () => void;
|
|
9561
9559
|
setShow: (value: boolean) => void;
|
|
9562
9560
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9563
|
-
positiveText:
|
|
9564
|
-
negativeText:
|
|
9561
|
+
positiveText: PropType<string | null>;
|
|
9562
|
+
negativeText: PropType<string | null>;
|
|
9565
9563
|
showIcon: {
|
|
9566
9564
|
type: BooleanConstructor;
|
|
9567
9565
|
default: boolean;
|
|
9568
9566
|
};
|
|
9569
9567
|
trigger: {
|
|
9570
|
-
type:
|
|
9568
|
+
type: PropType<import("naive-ui").PopoverTrigger>;
|
|
9571
9569
|
default: string;
|
|
9572
9570
|
};
|
|
9573
|
-
positiveButtonProps:
|
|
9574
|
-
negativeButtonProps:
|
|
9575
|
-
onPositiveClick:
|
|
9576
|
-
onNegativeClick:
|
|
9571
|
+
positiveButtonProps: PropType<import("naive-ui").ButtonProps>;
|
|
9572
|
+
negativeButtonProps: PropType<import("naive-ui").ButtonProps>;
|
|
9573
|
+
onPositiveClick: PropType<(e: MouseEvent) => any>;
|
|
9574
|
+
onNegativeClick: PropType<(e: MouseEvent) => any>;
|
|
9577
9575
|
show: {
|
|
9578
|
-
type:
|
|
9576
|
+
type: PropType<boolean | undefined>;
|
|
9579
9577
|
default: undefined;
|
|
9580
9578
|
};
|
|
9581
9579
|
defaultShow: BooleanConstructor;
|
|
@@ -9593,19 +9591,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9593
9591
|
};
|
|
9594
9592
|
raw: BooleanConstructor;
|
|
9595
9593
|
placement: {
|
|
9596
|
-
type:
|
|
9594
|
+
type: PropType<import("vueuc").FollowerPlacement>;
|
|
9597
9595
|
default: string;
|
|
9598
9596
|
};
|
|
9599
9597
|
x: NumberConstructor;
|
|
9600
9598
|
y: NumberConstructor;
|
|
9601
9599
|
arrowPointToCenter: BooleanConstructor;
|
|
9602
9600
|
disabled: BooleanConstructor;
|
|
9603
|
-
getDisabled:
|
|
9601
|
+
getDisabled: PropType<() => boolean>;
|
|
9604
9602
|
displayDirective: {
|
|
9605
|
-
type:
|
|
9603
|
+
type: PropType<"show" | "if">;
|
|
9606
9604
|
default: string;
|
|
9607
9605
|
};
|
|
9608
|
-
arrowStyle:
|
|
9606
|
+
arrowStyle: PropType<string | import("vue").CSSProperties>;
|
|
9609
9607
|
flip: {
|
|
9610
9608
|
type: BooleanConstructor;
|
|
9611
9609
|
default: boolean;
|
|
@@ -9615,7 +9613,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9615
9613
|
default: boolean;
|
|
9616
9614
|
};
|
|
9617
9615
|
width: {
|
|
9618
|
-
type:
|
|
9616
|
+
type: PropType<number | "trigger">;
|
|
9619
9617
|
default: undefined;
|
|
9620
9618
|
};
|
|
9621
9619
|
overlap: BooleanConstructor;
|
|
@@ -9625,36 +9623,36 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9625
9623
|
};
|
|
9626
9624
|
zIndex: NumberConstructor;
|
|
9627
9625
|
to: {
|
|
9628
|
-
type:
|
|
9626
|
+
type: PropType<string | boolean | HTMLElement>;
|
|
9629
9627
|
default: undefined;
|
|
9630
9628
|
};
|
|
9631
9629
|
scrollable: BooleanConstructor;
|
|
9632
|
-
contentStyle:
|
|
9633
|
-
headerStyle:
|
|
9634
|
-
footerStyle:
|
|
9635
|
-
onClickoutside:
|
|
9636
|
-
'onUpdate:show':
|
|
9637
|
-
onUpdateShow:
|
|
9630
|
+
contentStyle: PropType<string | import("vue").CSSProperties>;
|
|
9631
|
+
headerStyle: PropType<string | import("vue").CSSProperties>;
|
|
9632
|
+
footerStyle: PropType<string | import("vue").CSSProperties>;
|
|
9633
|
+
onClickoutside: PropType<(e: MouseEvent) => void>;
|
|
9634
|
+
'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
9635
|
+
onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
9638
9636
|
internalDeactivateImmediately: BooleanConstructor;
|
|
9639
9637
|
internalSyncTargetWithParent: BooleanConstructor;
|
|
9640
9638
|
internalInheritedEventHandlers: {
|
|
9641
|
-
type:
|
|
9639
|
+
type: PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
|
|
9642
9640
|
default: () => never[];
|
|
9643
9641
|
};
|
|
9644
9642
|
internalTrapFocus: BooleanConstructor;
|
|
9645
9643
|
internalExtraClass: {
|
|
9646
|
-
type:
|
|
9644
|
+
type: PropType<string[]>;
|
|
9647
9645
|
default: () => never[];
|
|
9648
9646
|
};
|
|
9649
|
-
onShow:
|
|
9650
|
-
onHide:
|
|
9647
|
+
onShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
|
9648
|
+
onHide: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
|
9651
9649
|
arrow: {
|
|
9652
|
-
type:
|
|
9650
|
+
type: PropType<boolean | undefined>;
|
|
9653
9651
|
default: undefined;
|
|
9654
9652
|
};
|
|
9655
9653
|
minWidth: NumberConstructor;
|
|
9656
9654
|
maxWidth: NumberConstructor;
|
|
9657
|
-
theme:
|
|
9655
|
+
theme: PropType<import("naive-ui/es/_mixins").Theme<"Popconfirm", {
|
|
9658
9656
|
fontSize: string;
|
|
9659
9657
|
iconColor: string;
|
|
9660
9658
|
iconSize: string;
|
|
@@ -9878,7 +9876,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9878
9876
|
padding: string;
|
|
9879
9877
|
}, any>;
|
|
9880
9878
|
}>>;
|
|
9881
|
-
themeOverrides:
|
|
9879
|
+
themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Popconfirm", {
|
|
9882
9880
|
fontSize: string;
|
|
9883
9881
|
iconColor: string;
|
|
9884
9882
|
iconSize: string;
|
|
@@ -10102,7 +10100,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10102
10100
|
padding: string;
|
|
10103
10101
|
}, any>;
|
|
10104
10102
|
}>>>;
|
|
10105
|
-
builtinThemeOverrides:
|
|
10103
|
+
builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Popconfirm", {
|
|
10106
10104
|
fontSize: string;
|
|
10107
10105
|
iconColor: string;
|
|
10108
10106
|
iconSize: string;
|
|
@@ -10355,14 +10353,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10355
10353
|
}>;
|
|
10356
10354
|
CFormRender: import("../../../../es/src/types").SFCWithInstall<import("vue").DefineComponent<{
|
|
10357
10355
|
fieldList: {
|
|
10358
|
-
type:
|
|
10356
|
+
type: PropType<FieldItem[]>;
|
|
10359
10357
|
};
|
|
10360
10358
|
initialData: {
|
|
10361
|
-
type:
|
|
10359
|
+
type: PropType<import("../../../../es/src/types").AnyObject>;
|
|
10362
10360
|
default: () => {};
|
|
10363
10361
|
};
|
|
10364
10362
|
fieldVisitor: {
|
|
10365
|
-
type:
|
|
10363
|
+
type: PropType<import("../../../../es/packages/form-render").FieldVisitor>;
|
|
10366
10364
|
};
|
|
10367
10365
|
column: {
|
|
10368
10366
|
type: NumberConstructor;
|
|
@@ -10381,7 +10379,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10381
10379
|
default: number;
|
|
10382
10380
|
};
|
|
10383
10381
|
schema: {
|
|
10384
|
-
type:
|
|
10382
|
+
type: PropType<import("@formily/json-schema").Stringify<{
|
|
10385
10383
|
[key: symbol]: any;
|
|
10386
10384
|
[key: `x-${string}`]: any;
|
|
10387
10385
|
[key: `x-${number}`]: any;
|
|
@@ -10440,18 +10438,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10440
10438
|
}>>;
|
|
10441
10439
|
};
|
|
10442
10440
|
components: {
|
|
10443
|
-
type:
|
|
10441
|
+
type: PropType<Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>>;
|
|
10444
10442
|
default: () => {};
|
|
10445
10443
|
};
|
|
10446
10444
|
businessFilter: {
|
|
10447
|
-
type:
|
|
10445
|
+
type: PropType<import("../../../../es/packages/form-render").FormBusinessFilter>;
|
|
10448
10446
|
};
|
|
10449
10447
|
scope: {
|
|
10450
|
-
type:
|
|
10448
|
+
type: PropType<import("../../../../es/src/types").AnyObject>;
|
|
10451
10449
|
default: () => {};
|
|
10452
10450
|
};
|
|
10453
10451
|
annotation: {
|
|
10454
|
-
type:
|
|
10452
|
+
type: PropType<import("../../../../es/src/types").AnyObject>;
|
|
10455
10453
|
};
|
|
10456
10454
|
consumer: {
|
|
10457
10455
|
type: BooleanConstructor;
|
|
@@ -10461,23 +10459,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10461
10459
|
type: StringConstructor;
|
|
10462
10460
|
};
|
|
10463
10461
|
lifeCycle: {
|
|
10464
|
-
type:
|
|
10462
|
+
type: PropType<Partial<{
|
|
10465
10463
|
onSetup(): void;
|
|
10466
10464
|
beforeRequest(fieldKey: string, params?: import("../../../../es/src/types").AnyObject | undefined): void | import("../../../../es/src/types").WithUndefined<import("../../../../es/src/types").AnyObject>;
|
|
10467
|
-
afterRequest(fieldKey: string, payload?:
|
|
10465
|
+
afterRequest(fieldKey: string, payload?: any): import("../../../../es/src/types").AnyObject[];
|
|
10468
10466
|
}>>;
|
|
10469
10467
|
};
|
|
10470
10468
|
}, {
|
|
10471
10469
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
10472
10470
|
fieldList: {
|
|
10473
|
-
type:
|
|
10471
|
+
type: PropType<FieldItem[]>;
|
|
10474
10472
|
};
|
|
10475
10473
|
initialData: {
|
|
10476
|
-
type:
|
|
10474
|
+
type: PropType<import("../../../../es/src/types").AnyObject>;
|
|
10477
10475
|
default: () => {};
|
|
10478
10476
|
};
|
|
10479
10477
|
fieldVisitor: {
|
|
10480
|
-
type:
|
|
10478
|
+
type: PropType<import("../../../../es/packages/form-render").FieldVisitor>;
|
|
10481
10479
|
};
|
|
10482
10480
|
column: {
|
|
10483
10481
|
type: NumberConstructor;
|
|
@@ -10496,7 +10494,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10496
10494
|
default: number;
|
|
10497
10495
|
};
|
|
10498
10496
|
schema: {
|
|
10499
|
-
type:
|
|
10497
|
+
type: PropType<import("@formily/json-schema").Stringify<{
|
|
10500
10498
|
[key: symbol]: any;
|
|
10501
10499
|
[key: `x-${string}`]: any;
|
|
10502
10500
|
[key: `x-${number}`]: any;
|
|
@@ -10555,18 +10553,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10555
10553
|
}>>;
|
|
10556
10554
|
};
|
|
10557
10555
|
components: {
|
|
10558
|
-
type:
|
|
10556
|
+
type: PropType<Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>>;
|
|
10559
10557
|
default: () => {};
|
|
10560
10558
|
};
|
|
10561
10559
|
businessFilter: {
|
|
10562
|
-
type:
|
|
10560
|
+
type: PropType<import("../../../../es/packages/form-render").FormBusinessFilter>;
|
|
10563
10561
|
};
|
|
10564
10562
|
scope: {
|
|
10565
|
-
type:
|
|
10563
|
+
type: PropType<import("../../../../es/src/types").AnyObject>;
|
|
10566
10564
|
default: () => {};
|
|
10567
10565
|
};
|
|
10568
10566
|
annotation: {
|
|
10569
|
-
type:
|
|
10567
|
+
type: PropType<import("../../../../es/src/types").AnyObject>;
|
|
10570
10568
|
};
|
|
10571
10569
|
consumer: {
|
|
10572
10570
|
type: BooleanConstructor;
|
|
@@ -10576,10 +10574,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10576
10574
|
type: StringConstructor;
|
|
10577
10575
|
};
|
|
10578
10576
|
lifeCycle: {
|
|
10579
|
-
type:
|
|
10577
|
+
type: PropType<Partial<{
|
|
10580
10578
|
onSetup(): void;
|
|
10581
10579
|
beforeRequest(fieldKey: string, params?: import("../../../../es/src/types").AnyObject | undefined): void | import("../../../../es/src/types").WithUndefined<import("../../../../es/src/types").AnyObject>;
|
|
10582
|
-
afterRequest(fieldKey: string, payload?:
|
|
10580
|
+
afterRequest(fieldKey: string, payload?: any): import("../../../../es/src/types").AnyObject[];
|
|
10583
10581
|
}>>;
|
|
10584
10582
|
};
|
|
10585
10583
|
}>> & {
|
|
@@ -10785,38 +10783,38 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10785
10783
|
}>;
|
|
10786
10784
|
NForm: import("vue").DefineComponent<{
|
|
10787
10785
|
readonly inline: BooleanConstructor;
|
|
10788
|
-
readonly labelWidth:
|
|
10789
|
-
readonly labelAlign:
|
|
10786
|
+
readonly labelWidth: PropType<string | number>;
|
|
10787
|
+
readonly labelAlign: PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
|
|
10790
10788
|
readonly labelPlacement: {
|
|
10791
|
-
readonly type:
|
|
10789
|
+
readonly type: PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
|
|
10792
10790
|
readonly default: "top";
|
|
10793
10791
|
};
|
|
10794
10792
|
readonly model: {
|
|
10795
|
-
readonly type:
|
|
10793
|
+
readonly type: PropType<Record<string, any>>;
|
|
10796
10794
|
readonly default: () => void;
|
|
10797
10795
|
};
|
|
10798
|
-
readonly rules:
|
|
10796
|
+
readonly rules: PropType<import("naive-ui").FormRules>;
|
|
10799
10797
|
readonly disabled: BooleanConstructor;
|
|
10800
|
-
readonly size:
|
|
10798
|
+
readonly size: PropType<import("naive-ui/es/form/src/interface").Size>;
|
|
10801
10799
|
readonly showRequireMark: {
|
|
10802
|
-
readonly type:
|
|
10800
|
+
readonly type: PropType<boolean | undefined>;
|
|
10803
10801
|
readonly default: undefined;
|
|
10804
10802
|
};
|
|
10805
|
-
readonly requireMarkPlacement:
|
|
10803
|
+
readonly requireMarkPlacement: PropType<"left" | "right" | "right-hanging">;
|
|
10806
10804
|
readonly showFeedback: {
|
|
10807
10805
|
readonly type: BooleanConstructor;
|
|
10808
10806
|
readonly default: true;
|
|
10809
10807
|
};
|
|
10810
10808
|
readonly onSubmit: {
|
|
10811
|
-
readonly type:
|
|
10809
|
+
readonly type: PropType<(e: Event) => void>;
|
|
10812
10810
|
readonly default: (e: Event) => void;
|
|
10813
10811
|
};
|
|
10814
10812
|
readonly showLabel: {
|
|
10815
|
-
readonly type:
|
|
10813
|
+
readonly type: PropType<boolean | undefined>;
|
|
10816
10814
|
readonly default: undefined;
|
|
10817
10815
|
};
|
|
10818
|
-
readonly validateMessages:
|
|
10819
|
-
readonly theme:
|
|
10816
|
+
readonly validateMessages: PropType<Partial<import("naive-ui/es/form/src/interface").FormValidateMessages>>;
|
|
10817
|
+
readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
10820
10818
|
blankHeightSmall: string;
|
|
10821
10819
|
blankHeightMedium: string;
|
|
10822
10820
|
blankHeightLarge: string;
|
|
@@ -10847,7 +10845,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10847
10845
|
labelTextAlignVertical: string;
|
|
10848
10846
|
labelTextAlignHorizontal: string;
|
|
10849
10847
|
}, any>>;
|
|
10850
|
-
readonly themeOverrides:
|
|
10848
|
+
readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
10851
10849
|
blankHeightSmall: string;
|
|
10852
10850
|
blankHeightMedium: string;
|
|
10853
10851
|
blankHeightLarge: string;
|
|
@@ -10878,7 +10876,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10878
10876
|
labelTextAlignVertical: string;
|
|
10879
10877
|
labelTextAlignHorizontal: string;
|
|
10880
10878
|
}, any>>>;
|
|
10881
|
-
readonly builtinThemeOverrides:
|
|
10879
|
+
readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
10882
10880
|
blankHeightSmall: string;
|
|
10883
10881
|
blankHeightMedium: string;
|
|
10884
10882
|
blankHeightLarge: string;
|
|
@@ -10913,38 +10911,38 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10913
10911
|
mergedClsPrefix: import("vue").ComputedRef<string>;
|
|
10914
10912
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
10915
10913
|
readonly inline: BooleanConstructor;
|
|
10916
|
-
readonly labelWidth:
|
|
10917
|
-
readonly labelAlign:
|
|
10914
|
+
readonly labelWidth: PropType<string | number>;
|
|
10915
|
+
readonly labelAlign: PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
|
|
10918
10916
|
readonly labelPlacement: {
|
|
10919
|
-
readonly type:
|
|
10917
|
+
readonly type: PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
|
|
10920
10918
|
readonly default: "top";
|
|
10921
10919
|
};
|
|
10922
10920
|
readonly model: {
|
|
10923
|
-
readonly type:
|
|
10921
|
+
readonly type: PropType<Record<string, any>>;
|
|
10924
10922
|
readonly default: () => void;
|
|
10925
10923
|
};
|
|
10926
|
-
readonly rules:
|
|
10924
|
+
readonly rules: PropType<import("naive-ui").FormRules>;
|
|
10927
10925
|
readonly disabled: BooleanConstructor;
|
|
10928
|
-
readonly size:
|
|
10926
|
+
readonly size: PropType<import("naive-ui/es/form/src/interface").Size>;
|
|
10929
10927
|
readonly showRequireMark: {
|
|
10930
|
-
readonly type:
|
|
10928
|
+
readonly type: PropType<boolean | undefined>;
|
|
10931
10929
|
readonly default: undefined;
|
|
10932
10930
|
};
|
|
10933
|
-
readonly requireMarkPlacement:
|
|
10931
|
+
readonly requireMarkPlacement: PropType<"left" | "right" | "right-hanging">;
|
|
10934
10932
|
readonly showFeedback: {
|
|
10935
10933
|
readonly type: BooleanConstructor;
|
|
10936
10934
|
readonly default: true;
|
|
10937
10935
|
};
|
|
10938
10936
|
readonly onSubmit: {
|
|
10939
|
-
readonly type:
|
|
10937
|
+
readonly type: PropType<(e: Event) => void>;
|
|
10940
10938
|
readonly default: (e: Event) => void;
|
|
10941
10939
|
};
|
|
10942
10940
|
readonly showLabel: {
|
|
10943
|
-
readonly type:
|
|
10941
|
+
readonly type: PropType<boolean | undefined>;
|
|
10944
10942
|
readonly default: undefined;
|
|
10945
10943
|
};
|
|
10946
|
-
readonly validateMessages:
|
|
10947
|
-
readonly theme:
|
|
10944
|
+
readonly validateMessages: PropType<Partial<import("naive-ui/es/form/src/interface").FormValidateMessages>>;
|
|
10945
|
+
readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
10948
10946
|
blankHeightSmall: string;
|
|
10949
10947
|
blankHeightMedium: string;
|
|
10950
10948
|
blankHeightLarge: string;
|
|
@@ -10975,7 +10973,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10975
10973
|
labelTextAlignVertical: string;
|
|
10976
10974
|
labelTextAlignHorizontal: string;
|
|
10977
10975
|
}, any>>;
|
|
10978
|
-
readonly themeOverrides:
|
|
10976
|
+
readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
10979
10977
|
blankHeightSmall: string;
|
|
10980
10978
|
blankHeightMedium: string;
|
|
10981
10979
|
blankHeightLarge: string;
|
|
@@ -11006,7 +11004,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11006
11004
|
labelTextAlignVertical: string;
|
|
11007
11005
|
labelTextAlignHorizontal: string;
|
|
11008
11006
|
}, any>>>;
|
|
11009
|
-
readonly builtinThemeOverrides:
|
|
11007
|
+
readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
11010
11008
|
blankHeightSmall: string;
|
|
11011
11009
|
blankHeightMedium: string;
|
|
11012
11010
|
blankHeightLarge: string;
|
|
@@ -11048,24 +11046,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11048
11046
|
readonly showLabel: boolean | undefined;
|
|
11049
11047
|
}>;
|
|
11050
11048
|
NTabPane: import("vue").DefineComponent<{
|
|
11051
|
-
readonly tab:
|
|
11049
|
+
readonly tab: PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
11052
11050
|
[key: string]: any;
|
|
11053
11051
|
}> | (() => import("vue").VNodeChild)>;
|
|
11054
11052
|
readonly name: {
|
|
11055
|
-
readonly type:
|
|
11053
|
+
readonly type: PropType<string | number>;
|
|
11056
11054
|
readonly required: true;
|
|
11057
11055
|
};
|
|
11058
11056
|
readonly disabled: BooleanConstructor;
|
|
11059
11057
|
readonly displayDirective: {
|
|
11060
|
-
readonly type:
|
|
11058
|
+
readonly type: PropType<"show" | "if" | "show:lazy">;
|
|
11061
11059
|
readonly default: "if";
|
|
11062
11060
|
};
|
|
11063
11061
|
readonly closable: {
|
|
11064
|
-
readonly type:
|
|
11062
|
+
readonly type: PropType<boolean | undefined>;
|
|
11065
11063
|
readonly default: undefined;
|
|
11066
11064
|
};
|
|
11067
|
-
readonly tabProps:
|
|
11068
|
-
readonly label:
|
|
11065
|
+
readonly tabProps: PropType<import("vue").HTMLAttributes>;
|
|
11066
|
+
readonly label: PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
11069
11067
|
[key: string]: any;
|
|
11070
11068
|
}> | (() => import("vue").VNodeChild)>;
|
|
11071
11069
|
}, {
|
|
@@ -11073,24 +11071,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11073
11071
|
class: import("vue").Ref<string | undefined>;
|
|
11074
11072
|
mergedClsPrefix: import("vue").Ref<string>;
|
|
11075
11073
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11076
|
-
readonly tab:
|
|
11074
|
+
readonly tab: PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
11077
11075
|
[key: string]: any;
|
|
11078
11076
|
}> | (() => import("vue").VNodeChild)>;
|
|
11079
11077
|
readonly name: {
|
|
11080
|
-
readonly type:
|
|
11078
|
+
readonly type: PropType<string | number>;
|
|
11081
11079
|
readonly required: true;
|
|
11082
11080
|
};
|
|
11083
11081
|
readonly disabled: BooleanConstructor;
|
|
11084
11082
|
readonly displayDirective: {
|
|
11085
|
-
readonly type:
|
|
11083
|
+
readonly type: PropType<"show" | "if" | "show:lazy">;
|
|
11086
11084
|
readonly default: "if";
|
|
11087
11085
|
};
|
|
11088
11086
|
readonly closable: {
|
|
11089
|
-
readonly type:
|
|
11087
|
+
readonly type: PropType<boolean | undefined>;
|
|
11090
11088
|
readonly default: undefined;
|
|
11091
11089
|
};
|
|
11092
|
-
readonly tabProps:
|
|
11093
|
-
readonly label:
|
|
11090
|
+
readonly tabProps: PropType<import("vue").HTMLAttributes>;
|
|
11091
|
+
readonly label: PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
11094
11092
|
[key: string]: any;
|
|
11095
11093
|
}> | (() => import("vue").VNodeChild)>;
|
|
11096
11094
|
}>>, {
|
|
@@ -11099,41 +11097,41 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11099
11097
|
readonly displayDirective: "show" | "if" | "show:lazy";
|
|
11100
11098
|
}>;
|
|
11101
11099
|
NTabs: import("vue").DefineComponent<{
|
|
11102
|
-
readonly value:
|
|
11103
|
-
readonly defaultValue:
|
|
11100
|
+
readonly value: PropType<string | number>;
|
|
11101
|
+
readonly defaultValue: PropType<string | number>;
|
|
11104
11102
|
readonly trigger: {
|
|
11105
|
-
readonly type:
|
|
11103
|
+
readonly type: PropType<"click" | "hover">;
|
|
11106
11104
|
readonly default: "click";
|
|
11107
11105
|
};
|
|
11108
11106
|
readonly type: {
|
|
11109
|
-
readonly type:
|
|
11107
|
+
readonly type: PropType<import("naive-ui/es/tabs/src/interface").TabsType>;
|
|
11110
11108
|
readonly default: "bar";
|
|
11111
11109
|
};
|
|
11112
11110
|
readonly closable: BooleanConstructor;
|
|
11113
|
-
readonly justifyContent:
|
|
11111
|
+
readonly justifyContent: PropType<"center" | "start" | "end" | "space-around" | "space-between" | "space-evenly">;
|
|
11114
11112
|
readonly size: {
|
|
11115
|
-
readonly type:
|
|
11113
|
+
readonly type: PropType<"small" | "medium" | "large">;
|
|
11116
11114
|
readonly default: "medium";
|
|
11117
11115
|
};
|
|
11118
|
-
readonly tabStyle:
|
|
11116
|
+
readonly tabStyle: PropType<string | import("vue").CSSProperties>;
|
|
11119
11117
|
readonly barWidth: NumberConstructor;
|
|
11120
11118
|
readonly paneClass: StringConstructor;
|
|
11121
|
-
readonly paneStyle:
|
|
11122
|
-
readonly addable:
|
|
11119
|
+
readonly paneStyle: PropType<string | import("vue").CSSProperties>;
|
|
11120
|
+
readonly addable: PropType<import("naive-ui/es/tabs/src/interface").Addable>;
|
|
11123
11121
|
readonly tabsPadding: {
|
|
11124
11122
|
readonly type: NumberConstructor;
|
|
11125
11123
|
readonly default: 0;
|
|
11126
11124
|
};
|
|
11127
11125
|
readonly animated: BooleanConstructor;
|
|
11128
|
-
readonly onBeforeLeave:
|
|
11129
|
-
readonly onAdd:
|
|
11130
|
-
readonly 'onUpdate:value':
|
|
11131
|
-
readonly onUpdateValue:
|
|
11132
|
-
readonly onClose:
|
|
11133
|
-
readonly labelSize:
|
|
11134
|
-
readonly activeName:
|
|
11135
|
-
readonly onActiveNameChange:
|
|
11136
|
-
readonly theme:
|
|
11126
|
+
readonly onBeforeLeave: PropType<import("naive-ui/es/tabs/src/interface").OnBeforeLeave>;
|
|
11127
|
+
readonly onAdd: PropType<() => void>;
|
|
11128
|
+
readonly 'onUpdate:value': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnUpdateValue>>;
|
|
11129
|
+
readonly onUpdateValue: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnUpdateValue>>;
|
|
11130
|
+
readonly onClose: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnClose>>;
|
|
11131
|
+
readonly labelSize: PropType<"small" | "medium" | "large">;
|
|
11132
|
+
readonly activeName: PropType<string | number>;
|
|
11133
|
+
readonly onActiveNameChange: PropType<import("naive-ui/es/_utils").MaybeArray<(value: never) => void>>;
|
|
11134
|
+
readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Tabs", {
|
|
11137
11135
|
colorSegment: string;
|
|
11138
11136
|
tabFontSizeCard: string;
|
|
11139
11137
|
tabTextColorLine: string;
|
|
@@ -11200,7 +11198,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11200
11198
|
closeSize: string;
|
|
11201
11199
|
closeIconSize: string;
|
|
11202
11200
|
}, any>>;
|
|
11203
|
-
readonly themeOverrides:
|
|
11201
|
+
readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
|
|
11204
11202
|
colorSegment: string;
|
|
11205
11203
|
tabFontSizeCard: string;
|
|
11206
11204
|
tabTextColorLine: string;
|
|
@@ -11267,7 +11265,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11267
11265
|
closeSize: string;
|
|
11268
11266
|
closeIconSize: string;
|
|
11269
11267
|
}, any>>>;
|
|
11270
|
-
readonly builtinThemeOverrides:
|
|
11268
|
+
readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
|
|
11271
11269
|
colorSegment: string;
|
|
11272
11270
|
tabFontSizeCard: string;
|
|
11273
11271
|
tabTextColorLine: string;
|
|
@@ -11431,41 +11429,41 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11431
11429
|
onAnimationAfterEnter: () => void;
|
|
11432
11430
|
onRender: (() => void) | undefined;
|
|
11433
11431
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11434
|
-
readonly value:
|
|
11435
|
-
readonly defaultValue:
|
|
11432
|
+
readonly value: PropType<string | number>;
|
|
11433
|
+
readonly defaultValue: PropType<string | number>;
|
|
11436
11434
|
readonly trigger: {
|
|
11437
|
-
readonly type:
|
|
11435
|
+
readonly type: PropType<"click" | "hover">;
|
|
11438
11436
|
readonly default: "click";
|
|
11439
11437
|
};
|
|
11440
11438
|
readonly type: {
|
|
11441
|
-
readonly type:
|
|
11439
|
+
readonly type: PropType<import("naive-ui/es/tabs/src/interface").TabsType>;
|
|
11442
11440
|
readonly default: "bar";
|
|
11443
11441
|
};
|
|
11444
11442
|
readonly closable: BooleanConstructor;
|
|
11445
|
-
readonly justifyContent:
|
|
11443
|
+
readonly justifyContent: PropType<"center" | "start" | "end" | "space-around" | "space-between" | "space-evenly">;
|
|
11446
11444
|
readonly size: {
|
|
11447
|
-
readonly type:
|
|
11445
|
+
readonly type: PropType<"small" | "medium" | "large">;
|
|
11448
11446
|
readonly default: "medium";
|
|
11449
11447
|
};
|
|
11450
|
-
readonly tabStyle:
|
|
11448
|
+
readonly tabStyle: PropType<string | import("vue").CSSProperties>;
|
|
11451
11449
|
readonly barWidth: NumberConstructor;
|
|
11452
11450
|
readonly paneClass: StringConstructor;
|
|
11453
|
-
readonly paneStyle:
|
|
11454
|
-
readonly addable:
|
|
11451
|
+
readonly paneStyle: PropType<string | import("vue").CSSProperties>;
|
|
11452
|
+
readonly addable: PropType<import("naive-ui/es/tabs/src/interface").Addable>;
|
|
11455
11453
|
readonly tabsPadding: {
|
|
11456
11454
|
readonly type: NumberConstructor;
|
|
11457
11455
|
readonly default: 0;
|
|
11458
11456
|
};
|
|
11459
11457
|
readonly animated: BooleanConstructor;
|
|
11460
|
-
readonly onBeforeLeave:
|
|
11461
|
-
readonly onAdd:
|
|
11462
|
-
readonly 'onUpdate:value':
|
|
11463
|
-
readonly onUpdateValue:
|
|
11464
|
-
readonly onClose:
|
|
11465
|
-
readonly labelSize:
|
|
11466
|
-
readonly activeName:
|
|
11467
|
-
readonly onActiveNameChange:
|
|
11468
|
-
readonly theme:
|
|
11458
|
+
readonly onBeforeLeave: PropType<import("naive-ui/es/tabs/src/interface").OnBeforeLeave>;
|
|
11459
|
+
readonly onAdd: PropType<() => void>;
|
|
11460
|
+
readonly 'onUpdate:value': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnUpdateValue>>;
|
|
11461
|
+
readonly onUpdateValue: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnUpdateValue>>;
|
|
11462
|
+
readonly onClose: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/tabs/src/interface").OnClose>>;
|
|
11463
|
+
readonly labelSize: PropType<"small" | "medium" | "large">;
|
|
11464
|
+
readonly activeName: PropType<string | number>;
|
|
11465
|
+
readonly onActiveNameChange: PropType<import("naive-ui/es/_utils").MaybeArray<(value: never) => void>>;
|
|
11466
|
+
readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Tabs", {
|
|
11469
11467
|
colorSegment: string;
|
|
11470
11468
|
tabFontSizeCard: string;
|
|
11471
11469
|
tabTextColorLine: string;
|
|
@@ -11532,7 +11530,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11532
11530
|
closeSize: string;
|
|
11533
11531
|
closeIconSize: string;
|
|
11534
11532
|
}, any>>;
|
|
11535
|
-
readonly themeOverrides:
|
|
11533
|
+
readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
|
|
11536
11534
|
colorSegment: string;
|
|
11537
11535
|
tabFontSizeCard: string;
|
|
11538
11536
|
tabTextColorLine: string;
|
|
@@ -11599,7 +11597,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11599
11597
|
closeSize: string;
|
|
11600
11598
|
closeIconSize: string;
|
|
11601
11599
|
}, any>>>;
|
|
11602
|
-
readonly builtinThemeOverrides:
|
|
11600
|
+
readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
|
|
11603
11601
|
colorSegment: string;
|
|
11604
11602
|
tabFontSizeCard: string;
|
|
11605
11603
|
tabTextColorLine: string;
|
|
@@ -11677,11 +11675,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11677
11675
|
NConfigProvider: import("vue").DefineComponent<{
|
|
11678
11676
|
readonly abstract: BooleanConstructor;
|
|
11679
11677
|
readonly bordered: {
|
|
11680
|
-
readonly type:
|
|
11678
|
+
readonly type: PropType<boolean | undefined>;
|
|
11681
11679
|
readonly default: undefined;
|
|
11682
11680
|
};
|
|
11683
11681
|
readonly clsPrefix: StringConstructor;
|
|
11684
|
-
readonly locale:
|
|
11682
|
+
readonly locale: PropType<{
|
|
11685
11683
|
name: string;
|
|
11686
11684
|
global: {
|
|
11687
11685
|
undo: string;
|
|
@@ -11792,26 +11790,26 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11792
11790
|
tipOriginalSize: string;
|
|
11793
11791
|
};
|
|
11794
11792
|
} | null>;
|
|
11795
|
-
readonly dateLocale:
|
|
11793
|
+
readonly dateLocale: PropType<import("naive-ui/es/locales/date/enUS").NDateLocale | null>;
|
|
11796
11794
|
readonly namespace: StringConstructor;
|
|
11797
|
-
readonly rtl:
|
|
11795
|
+
readonly rtl: PropType<import("naive-ui/es/config-provider/src/internal-interface").RtlProp>;
|
|
11798
11796
|
readonly tag: {
|
|
11799
11797
|
readonly type: StringConstructor;
|
|
11800
11798
|
readonly default: "div";
|
|
11801
11799
|
};
|
|
11802
|
-
readonly hljs:
|
|
11803
|
-
readonly theme:
|
|
11804
|
-
readonly themeOverrides:
|
|
11805
|
-
readonly componentOptions:
|
|
11806
|
-
readonly icons:
|
|
11807
|
-
readonly breakpoints:
|
|
11800
|
+
readonly hljs: PropType<import("naive-ui/es/_mixins").Hljs>;
|
|
11801
|
+
readonly theme: PropType<import("naive-ui").GlobalTheme | null>;
|
|
11802
|
+
readonly themeOverrides: PropType<import("naive-ui").GlobalThemeOverrides | null>;
|
|
11803
|
+
readonly componentOptions: PropType<import("naive-ui").GlobalComponentConfig>;
|
|
11804
|
+
readonly icons: PropType<import("naive-ui").GlobalIconConfig>;
|
|
11805
|
+
readonly breakpoints: PropType<import("naive-ui/es/config-provider/src/internal-interface").Breakpoints>;
|
|
11808
11806
|
readonly preflightStyleDisabled: BooleanConstructor;
|
|
11809
11807
|
readonly inlineThemeDisabled: {
|
|
11810
11808
|
readonly type: BooleanConstructor;
|
|
11811
11809
|
readonly default: undefined;
|
|
11812
11810
|
};
|
|
11813
11811
|
readonly as: {
|
|
11814
|
-
readonly type:
|
|
11812
|
+
readonly type: PropType<string | undefined>;
|
|
11815
11813
|
readonly validator: () => boolean;
|
|
11816
11814
|
readonly default: undefined;
|
|
11817
11815
|
};
|
|
@@ -11824,11 +11822,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11824
11822
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11825
11823
|
readonly abstract: BooleanConstructor;
|
|
11826
11824
|
readonly bordered: {
|
|
11827
|
-
readonly type:
|
|
11825
|
+
readonly type: PropType<boolean | undefined>;
|
|
11828
11826
|
readonly default: undefined;
|
|
11829
11827
|
};
|
|
11830
11828
|
readonly clsPrefix: StringConstructor;
|
|
11831
|
-
readonly locale:
|
|
11829
|
+
readonly locale: PropType<{
|
|
11832
11830
|
name: string;
|
|
11833
11831
|
global: {
|
|
11834
11832
|
undo: string;
|
|
@@ -11939,26 +11937,26 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11939
11937
|
tipOriginalSize: string;
|
|
11940
11938
|
};
|
|
11941
11939
|
} | null>;
|
|
11942
|
-
readonly dateLocale:
|
|
11940
|
+
readonly dateLocale: PropType<import("naive-ui/es/locales/date/enUS").NDateLocale | null>;
|
|
11943
11941
|
readonly namespace: StringConstructor;
|
|
11944
|
-
readonly rtl:
|
|
11942
|
+
readonly rtl: PropType<import("naive-ui/es/config-provider/src/internal-interface").RtlProp>;
|
|
11945
11943
|
readonly tag: {
|
|
11946
11944
|
readonly type: StringConstructor;
|
|
11947
11945
|
readonly default: "div";
|
|
11948
11946
|
};
|
|
11949
|
-
readonly hljs:
|
|
11950
|
-
readonly theme:
|
|
11951
|
-
readonly themeOverrides:
|
|
11952
|
-
readonly componentOptions:
|
|
11953
|
-
readonly icons:
|
|
11954
|
-
readonly breakpoints:
|
|
11947
|
+
readonly hljs: PropType<import("naive-ui/es/_mixins").Hljs>;
|
|
11948
|
+
readonly theme: PropType<import("naive-ui").GlobalTheme | null>;
|
|
11949
|
+
readonly themeOverrides: PropType<import("naive-ui").GlobalThemeOverrides | null>;
|
|
11950
|
+
readonly componentOptions: PropType<import("naive-ui").GlobalComponentConfig>;
|
|
11951
|
+
readonly icons: PropType<import("naive-ui").GlobalIconConfig>;
|
|
11952
|
+
readonly breakpoints: PropType<import("naive-ui/es/config-provider/src/internal-interface").Breakpoints>;
|
|
11955
11953
|
readonly preflightStyleDisabled: BooleanConstructor;
|
|
11956
11954
|
readonly inlineThemeDisabled: {
|
|
11957
11955
|
readonly type: BooleanConstructor;
|
|
11958
11956
|
readonly default: undefined;
|
|
11959
11957
|
};
|
|
11960
11958
|
readonly as: {
|
|
11961
|
-
readonly type:
|
|
11959
|
+
readonly type: PropType<string | undefined>;
|
|
11962
11960
|
readonly validator: () => boolean;
|
|
11963
11961
|
readonly default: undefined;
|
|
11964
11962
|
};
|
|
@@ -11972,14 +11970,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11972
11970
|
}>;
|
|
11973
11971
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "formChange"[], "formChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11974
11972
|
fieldList: {
|
|
11975
|
-
type:
|
|
11973
|
+
type: PropType<FieldItem[]>;
|
|
11976
11974
|
};
|
|
11977
11975
|
initialData: {
|
|
11978
|
-
type:
|
|
11976
|
+
type: PropType<import("../../../../es/src/types").AnyObject>;
|
|
11979
11977
|
default: () => {};
|
|
11980
11978
|
};
|
|
11981
11979
|
fieldVisitor: {
|
|
11982
|
-
type:
|
|
11980
|
+
type: PropType<import("../../../../es/packages/form-render").FieldVisitor>;
|
|
11983
11981
|
};
|
|
11984
11982
|
column: {
|
|
11985
11983
|
type: NumberConstructor;
|
|
@@ -11998,7 +11996,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11998
11996
|
default: number;
|
|
11999
11997
|
};
|
|
12000
11998
|
schema: {
|
|
12001
|
-
type:
|
|
11999
|
+
type: PropType<import("@formily/json-schema").Stringify<{
|
|
12002
12000
|
[key: symbol]: any;
|
|
12003
12001
|
[key: `x-${string}`]: any;
|
|
12004
12002
|
[key: `x-${number}`]: any;
|
|
@@ -12057,18 +12055,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
12057
12055
|
}>>;
|
|
12058
12056
|
};
|
|
12059
12057
|
components: {
|
|
12060
|
-
type:
|
|
12058
|
+
type: PropType<Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>>;
|
|
12061
12059
|
default: () => {};
|
|
12062
12060
|
};
|
|
12063
12061
|
businessFilter: {
|
|
12064
|
-
type:
|
|
12062
|
+
type: PropType<import("../../../../es/packages/form-render").FormBusinessFilter>;
|
|
12065
12063
|
};
|
|
12066
12064
|
scope: {
|
|
12067
|
-
type:
|
|
12065
|
+
type: PropType<import("../../../../es/src/types").AnyObject>;
|
|
12068
12066
|
default: () => {};
|
|
12069
12067
|
};
|
|
12070
12068
|
annotation: {
|
|
12071
|
-
type:
|
|
12069
|
+
type: PropType<import("../../../../es/src/types").AnyObject>;
|
|
12072
12070
|
};
|
|
12073
12071
|
consumer: {
|
|
12074
12072
|
type: BooleanConstructor;
|
|
@@ -12078,10 +12076,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
12078
12076
|
type: StringConstructor;
|
|
12079
12077
|
};
|
|
12080
12078
|
lifeCycle: {
|
|
12081
|
-
type:
|
|
12079
|
+
type: PropType<Partial<{
|
|
12082
12080
|
onSetup(): void;
|
|
12083
12081
|
beforeRequest(fieldKey: string, params?: import("../../../../es/src/types").AnyObject | undefined): void | import("../../../../es/src/types").WithUndefined<import("../../../../es/src/types").AnyObject>;
|
|
12084
|
-
afterRequest(fieldKey: string, payload?:
|
|
12082
|
+
afterRequest(fieldKey: string, payload?: any): import("../../../../es/src/types").AnyObject[];
|
|
12085
12083
|
}>>;
|
|
12086
12084
|
};
|
|
12087
12085
|
}>> & {
|
|
@@ -12102,9 +12100,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
12102
12100
|
onSubmit?: ((payload: FieldItem) => any) | undefined;
|
|
12103
12101
|
}, {}>;
|
|
12104
12102
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12105
|
-
|
|
12106
|
-
type:
|
|
12107
|
-
required: false;
|
|
12103
|
+
textFormatter: {
|
|
12104
|
+
type: PropType<FormConfigTextFormatter>;
|
|
12108
12105
|
};
|
|
12109
12106
|
}>>, {}>;
|
|
12110
12107
|
export default _default;
|