vft 0.0.404 → 0.0.405
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/components/super-form/index.d.ts +6 -6
- package/es/components/super-form/super-form.vue.d.ts +1 -1
- package/es/components/super-form/types.d.ts +1 -1
- package/es/package.json.d.ts +1 -1
- package/es/package.json.js +1 -1
- package/lib/components/super-form/index.d.ts +6 -6
- package/lib/components/super-form/super-form.vue.d.ts +1 -1
- package/lib/components/super-form/types.d.ts +1 -1
- package/lib/package.json.cjs +1 -1
- package/lib/package.json.d.ts +1 -1
- package/package.json +5 -5
- package/web-types.json +1 -1
|
@@ -9,7 +9,7 @@ export declare const VftSuperForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
9
9
|
default: string;
|
|
10
10
|
};
|
|
11
11
|
labelWidth: {
|
|
12
|
-
type: import("vue").PropType<
|
|
12
|
+
type: import("vue").PropType<string | number>;
|
|
13
13
|
default: string;
|
|
14
14
|
};
|
|
15
15
|
showResetButton: {
|
|
@@ -154,7 +154,7 @@ export declare const VftSuperForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
154
154
|
}, import("vue").PublicProps, {
|
|
155
155
|
size: import("vft/es/constants").ComponentSize;
|
|
156
156
|
labelPosition: "left" | "right" | "top";
|
|
157
|
-
labelWidth:
|
|
157
|
+
labelWidth: string | number;
|
|
158
158
|
showResetButton: boolean;
|
|
159
159
|
showSubmitButton: boolean;
|
|
160
160
|
showCommonButton: boolean;
|
|
@@ -186,7 +186,7 @@ export declare const VftSuperForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
186
186
|
default: string;
|
|
187
187
|
};
|
|
188
188
|
labelWidth: {
|
|
189
|
-
type: import("vue").PropType<
|
|
189
|
+
type: import("vue").PropType<string | number>;
|
|
190
190
|
default: string;
|
|
191
191
|
};
|
|
192
192
|
showResetButton: {
|
|
@@ -325,7 +325,7 @@ export declare const VftSuperForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
325
325
|
}, {}, {}, {}, {
|
|
326
326
|
size: import("vft/es/constants").ComponentSize;
|
|
327
327
|
labelPosition: "left" | "right" | "top";
|
|
328
|
-
labelWidth:
|
|
328
|
+
labelWidth: string | number;
|
|
329
329
|
showResetButton: boolean;
|
|
330
330
|
showSubmitButton: boolean;
|
|
331
331
|
showCommonButton: boolean;
|
|
@@ -354,7 +354,7 @@ export declare const VftSuperForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
354
354
|
default: string;
|
|
355
355
|
};
|
|
356
356
|
labelWidth: {
|
|
357
|
-
type: import("vue").PropType<
|
|
357
|
+
type: import("vue").PropType<string | number>;
|
|
358
358
|
default: string;
|
|
359
359
|
};
|
|
360
360
|
showResetButton: {
|
|
@@ -499,7 +499,7 @@ export declare const VftSuperForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
499
499
|
}, string, {
|
|
500
500
|
size: import("vft/es/constants").ComponentSize;
|
|
501
501
|
labelPosition: "left" | "right" | "top";
|
|
502
|
-
labelWidth:
|
|
502
|
+
labelWidth: string | number;
|
|
503
503
|
showResetButton: boolean;
|
|
504
504
|
showSubmitButton: boolean;
|
|
505
505
|
showCommonButton: boolean;
|
|
@@ -85,7 +85,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
85
85
|
}>, {
|
|
86
86
|
size: import("vft/es/constants").ComponentSize;
|
|
87
87
|
labelPosition: "left" | "right" | "top";
|
|
88
|
-
labelWidth:
|
|
88
|
+
labelWidth: string | number;
|
|
89
89
|
showResetButton: boolean;
|
|
90
90
|
showSubmitButton: boolean;
|
|
91
91
|
showCommonButton: boolean;
|
|
@@ -177,7 +177,7 @@ export interface SuperFormProps extends FormInnerProps {
|
|
|
177
177
|
/** 重置与提交按钮互换位置 */
|
|
178
178
|
submitResetReverse?: boolean;
|
|
179
179
|
labelPosition?: 'left' | 'right' | 'top';
|
|
180
|
-
labelWidth?:
|
|
180
|
+
labelWidth?: string | number;
|
|
181
181
|
}
|
|
182
182
|
/** 表单配置模式接口 */
|
|
183
183
|
export interface FormSchema {
|
package/es/package.json.d.ts
CHANGED
package/es/package.json.js
CHANGED
|
@@ -9,7 +9,7 @@ export declare const VftSuperForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
9
9
|
default: string;
|
|
10
10
|
};
|
|
11
11
|
labelWidth: {
|
|
12
|
-
type: import("vue").PropType<
|
|
12
|
+
type: import("vue").PropType<string | number>;
|
|
13
13
|
default: string;
|
|
14
14
|
};
|
|
15
15
|
showResetButton: {
|
|
@@ -154,7 +154,7 @@ export declare const VftSuperForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
154
154
|
}, import("vue").PublicProps, {
|
|
155
155
|
size: import("vft/es/constants").ComponentSize;
|
|
156
156
|
labelPosition: "left" | "right" | "top";
|
|
157
|
-
labelWidth:
|
|
157
|
+
labelWidth: string | number;
|
|
158
158
|
showResetButton: boolean;
|
|
159
159
|
showSubmitButton: boolean;
|
|
160
160
|
showCommonButton: boolean;
|
|
@@ -186,7 +186,7 @@ export declare const VftSuperForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
186
186
|
default: string;
|
|
187
187
|
};
|
|
188
188
|
labelWidth: {
|
|
189
|
-
type: import("vue").PropType<
|
|
189
|
+
type: import("vue").PropType<string | number>;
|
|
190
190
|
default: string;
|
|
191
191
|
};
|
|
192
192
|
showResetButton: {
|
|
@@ -325,7 +325,7 @@ export declare const VftSuperForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
325
325
|
}, {}, {}, {}, {
|
|
326
326
|
size: import("vft/es/constants").ComponentSize;
|
|
327
327
|
labelPosition: "left" | "right" | "top";
|
|
328
|
-
labelWidth:
|
|
328
|
+
labelWidth: string | number;
|
|
329
329
|
showResetButton: boolean;
|
|
330
330
|
showSubmitButton: boolean;
|
|
331
331
|
showCommonButton: boolean;
|
|
@@ -354,7 +354,7 @@ export declare const VftSuperForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
354
354
|
default: string;
|
|
355
355
|
};
|
|
356
356
|
labelWidth: {
|
|
357
|
-
type: import("vue").PropType<
|
|
357
|
+
type: import("vue").PropType<string | number>;
|
|
358
358
|
default: string;
|
|
359
359
|
};
|
|
360
360
|
showResetButton: {
|
|
@@ -499,7 +499,7 @@ export declare const VftSuperForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
499
499
|
}, string, {
|
|
500
500
|
size: import("vft/es/constants").ComponentSize;
|
|
501
501
|
labelPosition: "left" | "right" | "top";
|
|
502
|
-
labelWidth:
|
|
502
|
+
labelWidth: string | number;
|
|
503
503
|
showResetButton: boolean;
|
|
504
504
|
showSubmitButton: boolean;
|
|
505
505
|
showCommonButton: boolean;
|
|
@@ -85,7 +85,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
85
85
|
}>, {
|
|
86
86
|
size: import("vft/es/constants").ComponentSize;
|
|
87
87
|
labelPosition: "left" | "right" | "top";
|
|
88
|
-
labelWidth:
|
|
88
|
+
labelWidth: string | number;
|
|
89
89
|
showResetButton: boolean;
|
|
90
90
|
showSubmitButton: boolean;
|
|
91
91
|
showCommonButton: boolean;
|
|
@@ -177,7 +177,7 @@ export interface SuperFormProps extends FormInnerProps {
|
|
|
177
177
|
/** 重置与提交按钮互换位置 */
|
|
178
178
|
submitResetReverse?: boolean;
|
|
179
179
|
labelPosition?: 'left' | 'right' | 'top';
|
|
180
|
-
labelWidth?:
|
|
180
|
+
labelWidth?: string | number;
|
|
181
181
|
}
|
|
182
182
|
/** 表单配置模式接口 */
|
|
183
183
|
export interface FormSchema {
|
package/lib/package.json.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e="0.0.
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e="0.0.405";exports.version=e;
|
package/lib/package.json.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vft",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.405",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "lib/index.cjs",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -55,12 +55,12 @@
|
|
|
55
55
|
"resize-detector": "0.3.0",
|
|
56
56
|
"sortablejs": "1.15.0",
|
|
57
57
|
"photoswipe": "5.4.4",
|
|
58
|
+
"@vft/router": "0.0.67",
|
|
59
|
+
"@vft/utils": "0.0.140",
|
|
58
60
|
"@vft/constants": "0.0.72",
|
|
59
|
-
"@vft/store": "0.0.54",
|
|
60
61
|
"@vft/directives": "0.0.36",
|
|
61
|
-
"@vft/
|
|
62
|
-
"@vft/
|
|
63
|
-
"@vft/router": "0.0.67"
|
|
62
|
+
"@vft/store": "0.0.54",
|
|
63
|
+
"@vft/use": "0.0.82"
|
|
64
64
|
},
|
|
65
65
|
"vetur": {
|
|
66
66
|
"tags": "tags.json",
|