@silver-formily/vue 2.2.1 → 2.3.0
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/README.en.md +10 -16
- package/README.md +10 -16
- package/esm/components/ExpressionScope.mjs +1 -1
- package/esm/components/FormConsumer.mjs +1 -1
- package/esm/components/FormConsumer.mjs.map +1 -1
- package/esm/components/ReactiveField.mjs +1 -1
- package/esm/components/ReactiveField.mjs.map +1 -1
- package/esm/components/RecursionField.mjs +6 -6
- package/esm/components/SchemaField.mjs +1 -1
- package/esm/components/SchemaField.mjs.map +1 -1
- package/esm/shared/connect.mjs +1 -1
- package/esm/shared/connect.mjs.map +1 -1
- package/esm/vue/src/components/ArrayField.d.ts +58 -0
- package/esm/{components → vue/src/components}/ExpressionScope.d.ts +1 -1
- package/esm/vue/src/components/Field.d.ts +58 -0
- package/esm/vue/src/components/FormConsumer.d.ts +4 -0
- package/esm/{components → vue/src/components}/FormProvider.d.ts +1 -1
- package/esm/{components → vue/src/components}/ObjectField.d.ts +20 -20
- package/esm/{components → vue/src/components}/ReactiveField.d.ts +1 -1
- package/esm/vue/src/components/RecursionField.d.ts +22 -0
- package/esm/{components → vue/src/components}/SchemaField.d.ts +1101 -1099
- package/esm/vue/src/components/VoidField.d.ts +42 -0
- package/esm/{hooks → vue/src/hooks}/useFieldSchema.d.ts +1 -1
- package/esm/vue/src/shared/connect.d.ts +5 -0
- package/esm/{utils → vue/src/utils}/fieldProps.d.ts +16 -16
- package/esm/{utils → vue/src/utils}/getRawComponent.d.ts +2 -2
- package/esm/{utils → vue/src/utils}/recursionFieldProps.d.ts +12 -12
- package/esm/{utils → vue/src/utils}/schemaFieldProps.d.ts +74 -74
- package/package.json +24 -32
- package/esm/components/ArrayField.d.ts +0 -58
- package/esm/components/Field.d.ts +0 -58
- package/esm/components/FormConsumer.d.ts +0 -4
- package/esm/components/RecursionField.d.ts +0 -22
- package/esm/components/VoidField.d.ts +0 -42
- package/esm/shared/connect.d.ts +0 -9
- /package/esm/{components → vue/src/components}/index.d.ts +0 -0
- /package/esm/{hooks → vue/src/hooks}/index.d.ts +0 -0
- /package/esm/{hooks → vue/src/hooks}/useAttach.d.ts +0 -0
- /package/esm/{hooks → vue/src/hooks}/useField.d.ts +0 -0
- /package/esm/{hooks → vue/src/hooks}/useForm.d.ts +0 -0
- /package/esm/{hooks → vue/src/hooks}/useFormEffects.d.ts +0 -0
- /package/esm/{hooks → vue/src/hooks}/useInjectionCleaner.d.ts +0 -0
- /package/esm/{hooks → vue/src/hooks}/useParentForm.d.ts +0 -0
- /package/esm/{index.d.ts → vue/src/index.d.ts} +0 -0
- /package/esm/{shared → vue/src/shared}/context.d.ts +0 -0
- /package/esm/{shared → vue/src/shared}/index.d.ts +0 -0
- /package/esm/{types → vue/src/types}/index.d.ts +0 -0
- /package/esm/{types → vue/src/types}/validator.d.ts +0 -0
- /package/esm/{utils → vue/src/utils}/reactiveFieldHelpers.d.ts +0 -0
- /package/esm/{utils → vue/src/utils}/resolveSchemaProps.d.ts +0 -0
- /package/esm/{utils → vue/src/utils}/runtimeProps.d.ts +0 -0
|
@@ -2,73 +2,73 @@ import { ISchema, SchemaTypes } from '@formily/json-schema';
|
|
|
2
2
|
import { ISchemaFieldVueFactoryOptions, SchemaExpressionScope, SchemaVueComponents } from '../types';
|
|
3
3
|
export declare function createSchemaField<Components extends SchemaVueComponents = SchemaVueComponents>(options?: ISchemaFieldVueFactoryOptions<Components>): {
|
|
4
4
|
SchemaField: import('vue').DefineComponent<{
|
|
5
|
-
schema?: ISchema;
|
|
5
|
+
schema?: ISchema | undefined;
|
|
6
6
|
components?: {
|
|
7
7
|
[key: string]: import('vue').Component;
|
|
8
|
-
};
|
|
9
|
-
scope?: SchemaExpressionScope;
|
|
10
|
-
name?: import('@formily/json-schema').SchemaKey;
|
|
11
|
-
basePath?: import('@formily/shared').FormPathPattern;
|
|
12
|
-
onlyRenderProperties?: boolean;
|
|
13
|
-
onlyRenderSelf?: boolean;
|
|
14
|
-
mapProperties?: import('..').ISchemaMapper;
|
|
15
|
-
filterProperties?: import('..').ISchemaFilter;
|
|
8
|
+
} | undefined;
|
|
9
|
+
scope?: SchemaExpressionScope | undefined;
|
|
10
|
+
name?: import('@formily/json-schema').SchemaKey | undefined;
|
|
11
|
+
basePath?: import('@formily/shared').FormPathPattern | undefined;
|
|
12
|
+
onlyRenderProperties?: boolean | undefined;
|
|
13
|
+
onlyRenderSelf?: boolean | undefined;
|
|
14
|
+
mapProperties?: import('..').ISchemaMapper | undefined;
|
|
15
|
+
filterProperties?: import('..').ISchemaFilter | undefined;
|
|
16
16
|
}, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
17
17
|
[key: string]: any;
|
|
18
18
|
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
19
|
-
schema?: ISchema;
|
|
19
|
+
schema?: ISchema | undefined;
|
|
20
20
|
components?: {
|
|
21
21
|
[key: string]: import('vue').Component;
|
|
22
|
-
};
|
|
23
|
-
scope?: SchemaExpressionScope;
|
|
24
|
-
name?: import('@formily/json-schema').SchemaKey;
|
|
25
|
-
basePath?: import('@formily/shared').FormPathPattern;
|
|
26
|
-
onlyRenderProperties?: boolean;
|
|
27
|
-
onlyRenderSelf?: boolean;
|
|
28
|
-
mapProperties?: import('..').ISchemaMapper;
|
|
29
|
-
filterProperties?: import('..').ISchemaFilter;
|
|
22
|
+
} | undefined;
|
|
23
|
+
scope?: SchemaExpressionScope | undefined;
|
|
24
|
+
name?: import('@formily/json-schema').SchemaKey | undefined;
|
|
25
|
+
basePath?: import('@formily/shared').FormPathPattern | undefined;
|
|
26
|
+
onlyRenderProperties?: boolean | undefined;
|
|
27
|
+
onlyRenderSelf?: boolean | undefined;
|
|
28
|
+
mapProperties?: import('..').ISchemaMapper | undefined;
|
|
29
|
+
filterProperties?: import('..').ISchemaFilter | undefined;
|
|
30
30
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
31
31
|
SchemaMarkupField: import('vue').DefineComponent<{
|
|
32
|
-
readonly format?: string;
|
|
33
|
-
readonly required?: string | boolean | string[];
|
|
34
|
-
readonly pattern?: string | RegExp;
|
|
35
|
-
readonly maximum?: string | number;
|
|
36
|
-
readonly maxItems?: string | number;
|
|
37
|
-
readonly minItems?: string | number;
|
|
38
|
-
readonly maxLength?: string | number;
|
|
39
|
-
readonly minLength?: string | number;
|
|
40
|
-
readonly exclusiveMaximum?: string | number;
|
|
41
|
-
readonly exclusiveMinimum?: string | number;
|
|
42
|
-
readonly minimum?: string | number;
|
|
43
|
-
readonly enum?: string | import('@formily/json-schema').SchemaEnum<string
|
|
32
|
+
readonly format?: string | undefined;
|
|
33
|
+
readonly required?: string | boolean | string[] | undefined;
|
|
34
|
+
readonly pattern?: string | RegExp | undefined;
|
|
35
|
+
readonly maximum?: string | number | undefined;
|
|
36
|
+
readonly maxItems?: string | number | undefined;
|
|
37
|
+
readonly minItems?: string | number | undefined;
|
|
38
|
+
readonly maxLength?: string | number | undefined;
|
|
39
|
+
readonly minLength?: string | number | undefined;
|
|
40
|
+
readonly exclusiveMaximum?: string | number | undefined;
|
|
41
|
+
readonly exclusiveMinimum?: string | number | undefined;
|
|
42
|
+
readonly minimum?: string | number | undefined;
|
|
43
|
+
readonly enum?: string | import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
44
44
|
readonly const?: any;
|
|
45
|
-
readonly multipleOf?: string | number;
|
|
46
|
-
readonly uniqueItems?: boolean;
|
|
47
|
-
readonly maxProperties?: string | number;
|
|
48
|
-
readonly minProperties?: string | number;
|
|
49
|
-
readonly name?: import('@formily/json-schema').SchemaKey;
|
|
50
|
-
readonly title?: string;
|
|
51
|
-
readonly description?: string;
|
|
52
|
-
readonly readOnly?: boolean;
|
|
45
|
+
readonly multipleOf?: string | number | undefined;
|
|
46
|
+
readonly uniqueItems?: boolean | undefined;
|
|
47
|
+
readonly maxProperties?: string | number | undefined;
|
|
48
|
+
readonly minProperties?: string | number | undefined;
|
|
49
|
+
readonly name?: import('@formily/json-schema').SchemaKey | undefined;
|
|
50
|
+
readonly title?: string | undefined;
|
|
51
|
+
readonly description?: string | undefined;
|
|
52
|
+
readonly readOnly?: boolean | undefined;
|
|
53
53
|
readonly 'x-content'?: any;
|
|
54
|
-
readonly version?: string;
|
|
54
|
+
readonly version?: string | undefined;
|
|
55
55
|
readonly default?: any;
|
|
56
|
-
readonly writeOnly?: boolean;
|
|
57
|
-
readonly properties?: string | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
58
|
-
readonly items?: string | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
56
|
+
readonly writeOnly?: boolean | undefined;
|
|
57
|
+
readonly properties?: string | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
58
|
+
readonly items?: string | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
59
59
|
readonly additionalItems?: string | import('@formily/json-schema').Stringify<{
|
|
60
60
|
[key: symbol]: any;
|
|
61
61
|
[key: `x-${string}`]: any;
|
|
62
62
|
[key: `x-${number}`]: any;
|
|
63
63
|
version?: string;
|
|
64
64
|
name?: import('@formily/json-schema').SchemaKey;
|
|
65
|
-
title?: string;
|
|
66
|
-
description?: string;
|
|
65
|
+
title?: string | undefined;
|
|
66
|
+
description?: string | undefined;
|
|
67
67
|
default?: any;
|
|
68
68
|
readOnly?: boolean;
|
|
69
69
|
writeOnly?: boolean;
|
|
70
70
|
type?: SchemaTypes;
|
|
71
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
71
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
72
72
|
const?: any;
|
|
73
73
|
multipleOf?: number;
|
|
74
74
|
maximum?: number;
|
|
@@ -87,22 +87,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
87
87
|
format?: string;
|
|
88
88
|
$ref?: string;
|
|
89
89
|
$namespace?: string;
|
|
90
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
91
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
92
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
93
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
94
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
95
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
90
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
91
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
92
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
93
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
94
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
95
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
96
96
|
"x-value"?: any;
|
|
97
97
|
"x-index"?: number;
|
|
98
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
99
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
100
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
101
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
102
|
-
"x-decorator-props"?: Record<string, unknown
|
|
103
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
104
|
-
"x-component-props"?: Record<string, unknown
|
|
105
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
98
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
99
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
100
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
101
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
102
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
103
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
104
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
105
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
106
106
|
"x-content"?: any;
|
|
107
107
|
"x-data"?: any;
|
|
108
108
|
"x-visible"?: boolean;
|
|
@@ -112,21 +112,21 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
112
112
|
"x-read-only"?: boolean;
|
|
113
113
|
"x-read-pretty"?: boolean;
|
|
114
114
|
"x-compile-omitted"?: string[];
|
|
115
|
-
}
|
|
116
|
-
readonly patternProperties?: string | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
115
|
+
}> | undefined;
|
|
116
|
+
readonly patternProperties?: string | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
117
117
|
readonly additionalProperties?: string | import('@formily/json-schema').Stringify<{
|
|
118
118
|
[key: symbol]: any;
|
|
119
119
|
[key: `x-${string}`]: any;
|
|
120
120
|
[key: `x-${number}`]: any;
|
|
121
121
|
version?: string;
|
|
122
122
|
name?: import('@formily/json-schema').SchemaKey;
|
|
123
|
-
title?: string;
|
|
124
|
-
description?: string;
|
|
123
|
+
title?: string | undefined;
|
|
124
|
+
description?: string | undefined;
|
|
125
125
|
default?: any;
|
|
126
126
|
readOnly?: boolean;
|
|
127
127
|
writeOnly?: boolean;
|
|
128
128
|
type?: SchemaTypes;
|
|
129
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
129
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
130
130
|
const?: any;
|
|
131
131
|
multipleOf?: number;
|
|
132
132
|
maximum?: number;
|
|
@@ -145,22 +145,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
145
145
|
format?: string;
|
|
146
146
|
$ref?: string;
|
|
147
147
|
$namespace?: string;
|
|
148
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
149
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
150
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
151
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
152
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
153
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
148
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
149
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
150
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
151
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
152
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
153
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
154
154
|
"x-value"?: any;
|
|
155
155
|
"x-index"?: number;
|
|
156
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
157
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
158
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
159
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
160
|
-
"x-decorator-props"?: Record<string, unknown
|
|
161
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
162
|
-
"x-component-props"?: Record<string, unknown
|
|
163
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
156
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
157
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
158
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
159
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
160
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
161
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
162
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
163
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
164
164
|
"x-content"?: any;
|
|
165
165
|
"x-data"?: any;
|
|
166
166
|
"x-visible"?: boolean;
|
|
@@ -170,64 +170,66 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
170
170
|
"x-read-only"?: boolean;
|
|
171
171
|
"x-read-pretty"?: boolean;
|
|
172
172
|
"x-compile-omitted"?: string[];
|
|
173
|
-
}
|
|
173
|
+
}> | undefined;
|
|
174
174
|
readonly 'x-index'?: any;
|
|
175
175
|
readonly 'x-pattern'?: any;
|
|
176
176
|
readonly 'x-display'?: any;
|
|
177
|
-
readonly 'x-validator'?: string |
|
|
177
|
+
readonly 'x-validator'?: string | import('../types/validator').ValidatorFunction<any> | import('../types/validator').IValidatorRules<any> | import('../types/validator').MultiValidator<any> | undefined;
|
|
178
178
|
readonly 'x-decorator'?: any;
|
|
179
179
|
readonly 'x-decorator-props'?: any;
|
|
180
180
|
readonly 'x-component'?: any;
|
|
181
181
|
readonly 'x-component-props'?: any;
|
|
182
182
|
readonly 'x-reactions'?: any;
|
|
183
|
-
readonly 'x-visible'?: boolean;
|
|
184
|
-
readonly 'x-hidden'?: boolean;
|
|
185
|
-
readonly 'x-disabled'?: boolean;
|
|
186
|
-
readonly 'x-editable'?: boolean;
|
|
187
|
-
readonly 'x-read-only'?: boolean;
|
|
188
|
-
readonly 'x-read-pretty'?: boolean;
|
|
183
|
+
readonly 'x-visible'?: boolean | undefined;
|
|
184
|
+
readonly 'x-hidden'?: boolean | undefined;
|
|
185
|
+
readonly 'x-disabled'?: boolean | undefined;
|
|
186
|
+
readonly 'x-editable'?: boolean | undefined;
|
|
187
|
+
readonly 'x-read-only'?: boolean | undefined;
|
|
188
|
+
readonly 'x-read-pretty'?: boolean | undefined;
|
|
189
189
|
readonly 'x-decorator-content'?: any;
|
|
190
|
-
}, () =>
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
readonly
|
|
194
|
-
readonly
|
|
195
|
-
readonly
|
|
196
|
-
readonly
|
|
197
|
-
readonly
|
|
198
|
-
readonly
|
|
199
|
-
readonly
|
|
200
|
-
readonly
|
|
201
|
-
readonly
|
|
202
|
-
readonly
|
|
190
|
+
}, (() => null) | (() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
191
|
+
[key: string]: any;
|
|
192
|
+
}>), {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
193
|
+
readonly format?: string | undefined;
|
|
194
|
+
readonly required?: string | boolean | string[] | undefined;
|
|
195
|
+
readonly pattern?: string | RegExp | undefined;
|
|
196
|
+
readonly maximum?: string | number | undefined;
|
|
197
|
+
readonly maxItems?: string | number | undefined;
|
|
198
|
+
readonly minItems?: string | number | undefined;
|
|
199
|
+
readonly maxLength?: string | number | undefined;
|
|
200
|
+
readonly minLength?: string | number | undefined;
|
|
201
|
+
readonly exclusiveMaximum?: string | number | undefined;
|
|
202
|
+
readonly exclusiveMinimum?: string | number | undefined;
|
|
203
|
+
readonly minimum?: string | number | undefined;
|
|
204
|
+
readonly enum?: string | import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
203
205
|
readonly const?: any;
|
|
204
|
-
readonly multipleOf?: string | number;
|
|
205
|
-
readonly uniqueItems?: boolean;
|
|
206
|
-
readonly maxProperties?: string | number;
|
|
207
|
-
readonly minProperties?: string | number;
|
|
208
|
-
readonly name?: import('@formily/json-schema').SchemaKey;
|
|
209
|
-
readonly title?: string;
|
|
210
|
-
readonly description?: string;
|
|
211
|
-
readonly readOnly?: boolean;
|
|
206
|
+
readonly multipleOf?: string | number | undefined;
|
|
207
|
+
readonly uniqueItems?: boolean | undefined;
|
|
208
|
+
readonly maxProperties?: string | number | undefined;
|
|
209
|
+
readonly minProperties?: string | number | undefined;
|
|
210
|
+
readonly name?: import('@formily/json-schema').SchemaKey | undefined;
|
|
211
|
+
readonly title?: string | undefined;
|
|
212
|
+
readonly description?: string | undefined;
|
|
213
|
+
readonly readOnly?: boolean | undefined;
|
|
212
214
|
readonly 'x-content'?: any;
|
|
213
|
-
readonly version?: string;
|
|
215
|
+
readonly version?: string | undefined;
|
|
214
216
|
readonly default?: any;
|
|
215
|
-
readonly writeOnly?: boolean;
|
|
216
|
-
readonly properties?: string | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
217
|
-
readonly items?: string | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
217
|
+
readonly writeOnly?: boolean | undefined;
|
|
218
|
+
readonly properties?: string | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
219
|
+
readonly items?: string | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
218
220
|
readonly additionalItems?: string | import('@formily/json-schema').Stringify<{
|
|
219
221
|
[key: symbol]: any;
|
|
220
222
|
[key: `x-${string}`]: any;
|
|
221
223
|
[key: `x-${number}`]: any;
|
|
222
224
|
version?: string;
|
|
223
225
|
name?: import('@formily/json-schema').SchemaKey;
|
|
224
|
-
title?: string;
|
|
225
|
-
description?: string;
|
|
226
|
+
title?: string | undefined;
|
|
227
|
+
description?: string | undefined;
|
|
226
228
|
default?: any;
|
|
227
229
|
readOnly?: boolean;
|
|
228
230
|
writeOnly?: boolean;
|
|
229
231
|
type?: SchemaTypes;
|
|
230
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
232
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
231
233
|
const?: any;
|
|
232
234
|
multipleOf?: number;
|
|
233
235
|
maximum?: number;
|
|
@@ -246,22 +248,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
246
248
|
format?: string;
|
|
247
249
|
$ref?: string;
|
|
248
250
|
$namespace?: string;
|
|
249
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
250
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
251
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
252
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
253
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
254
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
251
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
252
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
253
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
254
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
255
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
256
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
255
257
|
"x-value"?: any;
|
|
256
258
|
"x-index"?: number;
|
|
257
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
258
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
259
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
260
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
261
|
-
"x-decorator-props"?: Record<string, unknown
|
|
262
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
263
|
-
"x-component-props"?: Record<string, unknown
|
|
264
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
259
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
260
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
261
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
262
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
263
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
264
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
265
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
266
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
265
267
|
"x-content"?: any;
|
|
266
268
|
"x-data"?: any;
|
|
267
269
|
"x-visible"?: boolean;
|
|
@@ -271,21 +273,21 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
271
273
|
"x-read-only"?: boolean;
|
|
272
274
|
"x-read-pretty"?: boolean;
|
|
273
275
|
"x-compile-omitted"?: string[];
|
|
274
|
-
}
|
|
275
|
-
readonly patternProperties?: string | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
276
|
+
}> | undefined;
|
|
277
|
+
readonly patternProperties?: string | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
276
278
|
readonly additionalProperties?: string | import('@formily/json-schema').Stringify<{
|
|
277
279
|
[key: symbol]: any;
|
|
278
280
|
[key: `x-${string}`]: any;
|
|
279
281
|
[key: `x-${number}`]: any;
|
|
280
282
|
version?: string;
|
|
281
283
|
name?: import('@formily/json-schema').SchemaKey;
|
|
282
|
-
title?: string;
|
|
283
|
-
description?: string;
|
|
284
|
+
title?: string | undefined;
|
|
285
|
+
description?: string | undefined;
|
|
284
286
|
default?: any;
|
|
285
287
|
readOnly?: boolean;
|
|
286
288
|
writeOnly?: boolean;
|
|
287
289
|
type?: SchemaTypes;
|
|
288
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
290
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
289
291
|
const?: any;
|
|
290
292
|
multipleOf?: number;
|
|
291
293
|
maximum?: number;
|
|
@@ -304,22 +306,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
304
306
|
format?: string;
|
|
305
307
|
$ref?: string;
|
|
306
308
|
$namespace?: string;
|
|
307
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
308
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
309
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
310
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
311
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
312
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
309
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
310
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
311
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
312
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
313
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
314
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
313
315
|
"x-value"?: any;
|
|
314
316
|
"x-index"?: number;
|
|
315
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
316
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
317
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
318
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
319
|
-
"x-decorator-props"?: Record<string, unknown
|
|
320
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
321
|
-
"x-component-props"?: Record<string, unknown
|
|
322
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
317
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
318
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
319
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
320
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
321
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
322
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
323
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
324
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
323
325
|
"x-content"?: any;
|
|
324
326
|
"x-data"?: any;
|
|
325
327
|
"x-visible"?: boolean;
|
|
@@ -329,64 +331,64 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
329
331
|
"x-read-only"?: boolean;
|
|
330
332
|
"x-read-pretty"?: boolean;
|
|
331
333
|
"x-compile-omitted"?: string[];
|
|
332
|
-
}
|
|
334
|
+
}> | undefined;
|
|
333
335
|
readonly 'x-index'?: any;
|
|
334
336
|
readonly 'x-pattern'?: any;
|
|
335
337
|
readonly 'x-display'?: any;
|
|
336
|
-
readonly 'x-validator'?: string |
|
|
338
|
+
readonly 'x-validator'?: string | import('../types/validator').ValidatorFunction<any> | import('../types/validator').IValidatorRules<any> | import('../types/validator').MultiValidator<any> | undefined;
|
|
337
339
|
readonly 'x-decorator'?: any;
|
|
338
340
|
readonly 'x-decorator-props'?: any;
|
|
339
341
|
readonly 'x-component'?: any;
|
|
340
342
|
readonly 'x-component-props'?: any;
|
|
341
343
|
readonly 'x-reactions'?: any;
|
|
342
|
-
readonly 'x-visible'?: boolean;
|
|
343
|
-
readonly 'x-hidden'?: boolean;
|
|
344
|
-
readonly 'x-disabled'?: boolean;
|
|
345
|
-
readonly 'x-editable'?: boolean;
|
|
346
|
-
readonly 'x-read-only'?: boolean;
|
|
347
|
-
readonly 'x-read-pretty'?: boolean;
|
|
344
|
+
readonly 'x-visible'?: boolean | undefined;
|
|
345
|
+
readonly 'x-hidden'?: boolean | undefined;
|
|
346
|
+
readonly 'x-disabled'?: boolean | undefined;
|
|
347
|
+
readonly 'x-editable'?: boolean | undefined;
|
|
348
|
+
readonly 'x-read-only'?: boolean | undefined;
|
|
349
|
+
readonly 'x-read-pretty'?: boolean | undefined;
|
|
348
350
|
readonly 'x-decorator-content'?: any;
|
|
349
351
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
350
352
|
SchemaStringField: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
351
|
-
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
352
|
-
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey>;
|
|
353
|
-
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
354
|
-
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
353
|
+
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
354
|
+
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey | undefined>;
|
|
355
|
+
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
356
|
+
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
355
357
|
default: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
356
358
|
readOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
357
359
|
writeOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
358
|
-
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string
|
|
360
|
+
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string> | undefined>;
|
|
359
361
|
const: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
360
|
-
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
361
|
-
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
362
|
-
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
363
|
-
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
364
|
-
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
365
|
-
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
366
|
-
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
367
|
-
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {})>;
|
|
368
|
-
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
369
|
-
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
362
|
+
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
363
|
+
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
364
|
+
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
365
|
+
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
366
|
+
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
367
|
+
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
368
|
+
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
369
|
+
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {}) | undefined>;
|
|
370
|
+
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
371
|
+
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
370
372
|
uniqueItems: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
371
|
-
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
372
|
-
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
373
|
-
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[]>;
|
|
374
|
-
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
375
|
-
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
376
|
-
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
373
|
+
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
374
|
+
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
375
|
+
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[] | undefined>;
|
|
376
|
+
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
377
|
+
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
378
|
+
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
377
379
|
additionalItems: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
378
380
|
[key: symbol]: any;
|
|
379
381
|
[key: `x-${string}`]: any;
|
|
380
382
|
[key: `x-${number}`]: any;
|
|
381
383
|
version?: string;
|
|
382
384
|
name?: import('@formily/json-schema').SchemaKey;
|
|
383
|
-
title?: string;
|
|
384
|
-
description?: string;
|
|
385
|
+
title?: string | undefined;
|
|
386
|
+
description?: string | undefined;
|
|
385
387
|
default?: any;
|
|
386
388
|
readOnly?: boolean;
|
|
387
389
|
writeOnly?: boolean;
|
|
388
390
|
type?: SchemaTypes;
|
|
389
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
391
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
390
392
|
const?: any;
|
|
391
393
|
multipleOf?: number;
|
|
392
394
|
maximum?: number;
|
|
@@ -405,22 +407,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
405
407
|
format?: string;
|
|
406
408
|
$ref?: string;
|
|
407
409
|
$namespace?: string;
|
|
408
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
409
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
410
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
411
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
412
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
413
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
410
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
411
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
412
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
413
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
414
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
415
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
414
416
|
"x-value"?: any;
|
|
415
417
|
"x-index"?: number;
|
|
416
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
417
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
418
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
419
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
420
|
-
"x-decorator-props"?: Record<string, unknown
|
|
421
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
422
|
-
"x-component-props"?: Record<string, unknown
|
|
423
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
418
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
419
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
420
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
421
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
422
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
423
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
424
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
425
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
424
426
|
"x-content"?: any;
|
|
425
427
|
"x-data"?: any;
|
|
426
428
|
"x-visible"?: boolean;
|
|
@@ -430,21 +432,21 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
430
432
|
"x-read-only"?: boolean;
|
|
431
433
|
"x-read-pretty"?: boolean;
|
|
432
434
|
"x-compile-omitted"?: string[];
|
|
433
|
-
}
|
|
434
|
-
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
435
|
+
}> | undefined>;
|
|
436
|
+
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
435
437
|
additionalProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
436
438
|
[key: symbol]: any;
|
|
437
439
|
[key: `x-${string}`]: any;
|
|
438
440
|
[key: `x-${number}`]: any;
|
|
439
441
|
version?: string;
|
|
440
442
|
name?: import('@formily/json-schema').SchemaKey;
|
|
441
|
-
title?: string;
|
|
442
|
-
description?: string;
|
|
443
|
+
title?: string | undefined;
|
|
444
|
+
description?: string | undefined;
|
|
443
445
|
default?: any;
|
|
444
446
|
readOnly?: boolean;
|
|
445
447
|
writeOnly?: boolean;
|
|
446
448
|
type?: SchemaTypes;
|
|
447
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
449
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
448
450
|
const?: any;
|
|
449
451
|
multipleOf?: number;
|
|
450
452
|
maximum?: number;
|
|
@@ -463,22 +465,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
463
465
|
format?: string;
|
|
464
466
|
$ref?: string;
|
|
465
467
|
$namespace?: string;
|
|
466
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
467
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
468
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
469
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
470
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
471
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
468
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
469
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
470
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
471
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
472
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
473
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
472
474
|
"x-value"?: any;
|
|
473
475
|
"x-index"?: number;
|
|
474
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
475
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
476
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
477
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
478
|
-
"x-decorator-props"?: Record<string, unknown
|
|
479
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
480
|
-
"x-component-props"?: Record<string, unknown
|
|
481
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
476
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
477
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
478
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
479
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
480
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
481
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
482
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
483
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
482
484
|
"x-content"?: any;
|
|
483
485
|
"x-data"?: any;
|
|
484
486
|
"x-visible"?: boolean;
|
|
@@ -488,11 +490,11 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
488
490
|
"x-read-only"?: boolean;
|
|
489
491
|
"x-read-pretty"?: boolean;
|
|
490
492
|
"x-compile-omitted"?: string[];
|
|
491
|
-
}
|
|
493
|
+
}> | undefined>;
|
|
492
494
|
'x-index': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
493
495
|
'x-pattern': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
494
496
|
'x-display': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
495
|
-
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator>;
|
|
497
|
+
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator | undefined>;
|
|
496
498
|
'x-decorator': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
497
499
|
'x-decorator-props': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
498
500
|
'x-decorator-content': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
@@ -509,45 +511,45 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
509
511
|
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
510
512
|
[key: string]: any;
|
|
511
513
|
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
512
|
-
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
513
|
-
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey>;
|
|
514
|
-
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
515
|
-
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
514
|
+
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
515
|
+
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey | undefined>;
|
|
516
|
+
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
517
|
+
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
516
518
|
default: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
517
519
|
readOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
518
520
|
writeOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
519
|
-
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string
|
|
521
|
+
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string> | undefined>;
|
|
520
522
|
const: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
521
|
-
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
522
|
-
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
523
|
-
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
524
|
-
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
525
|
-
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
526
|
-
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
527
|
-
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
528
|
-
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {})>;
|
|
529
|
-
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
530
|
-
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
523
|
+
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
524
|
+
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
525
|
+
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
526
|
+
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
527
|
+
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
528
|
+
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
529
|
+
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
530
|
+
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {}) | undefined>;
|
|
531
|
+
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
532
|
+
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
531
533
|
uniqueItems: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
532
|
-
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
533
|
-
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
534
|
-
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[]>;
|
|
535
|
-
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
536
|
-
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
537
|
-
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
534
|
+
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
535
|
+
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
536
|
+
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[] | undefined>;
|
|
537
|
+
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
538
|
+
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
539
|
+
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
538
540
|
additionalItems: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
539
541
|
[key: symbol]: any;
|
|
540
542
|
[key: `x-${string}`]: any;
|
|
541
543
|
[key: `x-${number}`]: any;
|
|
542
544
|
version?: string;
|
|
543
545
|
name?: import('@formily/json-schema').SchemaKey;
|
|
544
|
-
title?: string;
|
|
545
|
-
description?: string;
|
|
546
|
+
title?: string | undefined;
|
|
547
|
+
description?: string | undefined;
|
|
546
548
|
default?: any;
|
|
547
549
|
readOnly?: boolean;
|
|
548
550
|
writeOnly?: boolean;
|
|
549
551
|
type?: SchemaTypes;
|
|
550
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
552
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
551
553
|
const?: any;
|
|
552
554
|
multipleOf?: number;
|
|
553
555
|
maximum?: number;
|
|
@@ -566,22 +568,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
566
568
|
format?: string;
|
|
567
569
|
$ref?: string;
|
|
568
570
|
$namespace?: string;
|
|
569
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
570
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
571
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
572
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
573
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
574
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
571
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
572
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
573
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
574
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
575
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
576
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
575
577
|
"x-value"?: any;
|
|
576
578
|
"x-index"?: number;
|
|
577
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
578
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
579
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
580
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
581
|
-
"x-decorator-props"?: Record<string, unknown
|
|
582
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
583
|
-
"x-component-props"?: Record<string, unknown
|
|
584
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
579
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
580
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
581
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
582
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
583
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
584
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
585
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
586
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
585
587
|
"x-content"?: any;
|
|
586
588
|
"x-data"?: any;
|
|
587
589
|
"x-visible"?: boolean;
|
|
@@ -591,21 +593,21 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
591
593
|
"x-read-only"?: boolean;
|
|
592
594
|
"x-read-pretty"?: boolean;
|
|
593
595
|
"x-compile-omitted"?: string[];
|
|
594
|
-
}
|
|
595
|
-
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
596
|
+
}> | undefined>;
|
|
597
|
+
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
596
598
|
additionalProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
597
599
|
[key: symbol]: any;
|
|
598
600
|
[key: `x-${string}`]: any;
|
|
599
601
|
[key: `x-${number}`]: any;
|
|
600
602
|
version?: string;
|
|
601
603
|
name?: import('@formily/json-schema').SchemaKey;
|
|
602
|
-
title?: string;
|
|
603
|
-
description?: string;
|
|
604
|
+
title?: string | undefined;
|
|
605
|
+
description?: string | undefined;
|
|
604
606
|
default?: any;
|
|
605
607
|
readOnly?: boolean;
|
|
606
608
|
writeOnly?: boolean;
|
|
607
609
|
type?: SchemaTypes;
|
|
608
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
610
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
609
611
|
const?: any;
|
|
610
612
|
multipleOf?: number;
|
|
611
613
|
maximum?: number;
|
|
@@ -624,22 +626,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
624
626
|
format?: string;
|
|
625
627
|
$ref?: string;
|
|
626
628
|
$namespace?: string;
|
|
627
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
628
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
629
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
630
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
631
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
632
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
629
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
630
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
631
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
632
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
633
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
634
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
633
635
|
"x-value"?: any;
|
|
634
636
|
"x-index"?: number;
|
|
635
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
636
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
637
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
638
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
639
|
-
"x-decorator-props"?: Record<string, unknown
|
|
640
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
641
|
-
"x-component-props"?: Record<string, unknown
|
|
642
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
637
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
638
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
639
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
640
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
641
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
642
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
643
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
644
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
643
645
|
"x-content"?: any;
|
|
644
646
|
"x-data"?: any;
|
|
645
647
|
"x-visible"?: boolean;
|
|
@@ -649,11 +651,11 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
649
651
|
"x-read-only"?: boolean;
|
|
650
652
|
"x-read-pretty"?: boolean;
|
|
651
653
|
"x-compile-omitted"?: string[];
|
|
652
|
-
}
|
|
654
|
+
}> | undefined>;
|
|
653
655
|
'x-index': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
654
656
|
'x-pattern': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
655
657
|
'x-display': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
656
|
-
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator>;
|
|
658
|
+
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator | undefined>;
|
|
657
659
|
'x-decorator': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
658
660
|
'x-decorator-props': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
659
661
|
'x-decorator-content': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
@@ -669,45 +671,45 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
669
671
|
'x-read-pretty': import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
670
672
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
671
673
|
SchemaObjectField: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
672
|
-
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
673
|
-
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey>;
|
|
674
|
-
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
675
|
-
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
674
|
+
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
675
|
+
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey | undefined>;
|
|
676
|
+
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
677
|
+
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
676
678
|
default: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
677
679
|
readOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
678
680
|
writeOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
679
|
-
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string
|
|
681
|
+
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string> | undefined>;
|
|
680
682
|
const: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
681
|
-
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
682
|
-
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
683
|
-
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
684
|
-
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
685
|
-
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
686
|
-
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
687
|
-
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
688
|
-
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {})>;
|
|
689
|
-
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
690
|
-
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
683
|
+
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
684
|
+
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
685
|
+
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
686
|
+
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
687
|
+
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
688
|
+
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
689
|
+
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
690
|
+
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {}) | undefined>;
|
|
691
|
+
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
692
|
+
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
691
693
|
uniqueItems: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
692
|
-
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
693
|
-
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
694
|
-
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[]>;
|
|
695
|
-
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
696
|
-
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
697
|
-
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
694
|
+
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
695
|
+
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
696
|
+
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[] | undefined>;
|
|
697
|
+
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
698
|
+
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
699
|
+
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
698
700
|
additionalItems: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
699
701
|
[key: symbol]: any;
|
|
700
702
|
[key: `x-${string}`]: any;
|
|
701
703
|
[key: `x-${number}`]: any;
|
|
702
704
|
version?: string;
|
|
703
705
|
name?: import('@formily/json-schema').SchemaKey;
|
|
704
|
-
title?: string;
|
|
705
|
-
description?: string;
|
|
706
|
+
title?: string | undefined;
|
|
707
|
+
description?: string | undefined;
|
|
706
708
|
default?: any;
|
|
707
709
|
readOnly?: boolean;
|
|
708
710
|
writeOnly?: boolean;
|
|
709
711
|
type?: SchemaTypes;
|
|
710
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
712
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
711
713
|
const?: any;
|
|
712
714
|
multipleOf?: number;
|
|
713
715
|
maximum?: number;
|
|
@@ -726,22 +728,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
726
728
|
format?: string;
|
|
727
729
|
$ref?: string;
|
|
728
730
|
$namespace?: string;
|
|
729
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
730
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
731
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
732
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
733
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
734
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
731
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
732
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
733
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
734
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
735
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
736
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
735
737
|
"x-value"?: any;
|
|
736
738
|
"x-index"?: number;
|
|
737
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
738
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
739
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
740
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
741
|
-
"x-decorator-props"?: Record<string, unknown
|
|
742
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
743
|
-
"x-component-props"?: Record<string, unknown
|
|
744
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
739
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
740
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
741
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
742
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
743
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
744
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
745
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
746
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
745
747
|
"x-content"?: any;
|
|
746
748
|
"x-data"?: any;
|
|
747
749
|
"x-visible"?: boolean;
|
|
@@ -751,21 +753,21 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
751
753
|
"x-read-only"?: boolean;
|
|
752
754
|
"x-read-pretty"?: boolean;
|
|
753
755
|
"x-compile-omitted"?: string[];
|
|
754
|
-
}
|
|
755
|
-
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
756
|
+
}> | undefined>;
|
|
757
|
+
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
756
758
|
additionalProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
757
759
|
[key: symbol]: any;
|
|
758
760
|
[key: `x-${string}`]: any;
|
|
759
761
|
[key: `x-${number}`]: any;
|
|
760
762
|
version?: string;
|
|
761
763
|
name?: import('@formily/json-schema').SchemaKey;
|
|
762
|
-
title?: string;
|
|
763
|
-
description?: string;
|
|
764
|
+
title?: string | undefined;
|
|
765
|
+
description?: string | undefined;
|
|
764
766
|
default?: any;
|
|
765
767
|
readOnly?: boolean;
|
|
766
768
|
writeOnly?: boolean;
|
|
767
769
|
type?: SchemaTypes;
|
|
768
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
770
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
769
771
|
const?: any;
|
|
770
772
|
multipleOf?: number;
|
|
771
773
|
maximum?: number;
|
|
@@ -784,22 +786,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
784
786
|
format?: string;
|
|
785
787
|
$ref?: string;
|
|
786
788
|
$namespace?: string;
|
|
787
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
788
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
789
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
790
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
791
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
792
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
789
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
790
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
791
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
792
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
793
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
794
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
793
795
|
"x-value"?: any;
|
|
794
796
|
"x-index"?: number;
|
|
795
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
796
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
797
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
798
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
799
|
-
"x-decorator-props"?: Record<string, unknown
|
|
800
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
801
|
-
"x-component-props"?: Record<string, unknown
|
|
802
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
797
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
798
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
799
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
800
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
801
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
802
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
803
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
804
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
803
805
|
"x-content"?: any;
|
|
804
806
|
"x-data"?: any;
|
|
805
807
|
"x-visible"?: boolean;
|
|
@@ -809,11 +811,11 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
809
811
|
"x-read-only"?: boolean;
|
|
810
812
|
"x-read-pretty"?: boolean;
|
|
811
813
|
"x-compile-omitted"?: string[];
|
|
812
|
-
}
|
|
814
|
+
}> | undefined>;
|
|
813
815
|
'x-index': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
814
816
|
'x-pattern': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
815
817
|
'x-display': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
816
|
-
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator>;
|
|
818
|
+
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator | undefined>;
|
|
817
819
|
'x-decorator': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
818
820
|
'x-decorator-props': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
819
821
|
'x-decorator-content': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
@@ -830,45 +832,45 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
830
832
|
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
831
833
|
[key: string]: any;
|
|
832
834
|
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
833
|
-
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
834
|
-
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey>;
|
|
835
|
-
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
836
|
-
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
835
|
+
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
836
|
+
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey | undefined>;
|
|
837
|
+
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
838
|
+
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
837
839
|
default: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
838
840
|
readOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
839
841
|
writeOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
840
|
-
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string
|
|
842
|
+
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string> | undefined>;
|
|
841
843
|
const: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
842
|
-
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
843
|
-
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
844
|
-
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
845
|
-
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
846
|
-
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
847
|
-
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
848
|
-
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
849
|
-
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {})>;
|
|
850
|
-
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
851
|
-
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
844
|
+
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
845
|
+
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
846
|
+
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
847
|
+
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
848
|
+
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
849
|
+
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
850
|
+
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
851
|
+
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {}) | undefined>;
|
|
852
|
+
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
853
|
+
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
852
854
|
uniqueItems: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
853
|
-
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
854
|
-
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
855
|
-
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[]>;
|
|
856
|
-
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
857
|
-
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
858
|
-
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
855
|
+
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
856
|
+
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
857
|
+
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[] | undefined>;
|
|
858
|
+
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
859
|
+
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
860
|
+
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
859
861
|
additionalItems: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
860
862
|
[key: symbol]: any;
|
|
861
863
|
[key: `x-${string}`]: any;
|
|
862
864
|
[key: `x-${number}`]: any;
|
|
863
865
|
version?: string;
|
|
864
866
|
name?: import('@formily/json-schema').SchemaKey;
|
|
865
|
-
title?: string;
|
|
866
|
-
description?: string;
|
|
867
|
+
title?: string | undefined;
|
|
868
|
+
description?: string | undefined;
|
|
867
869
|
default?: any;
|
|
868
870
|
readOnly?: boolean;
|
|
869
871
|
writeOnly?: boolean;
|
|
870
872
|
type?: SchemaTypes;
|
|
871
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
873
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
872
874
|
const?: any;
|
|
873
875
|
multipleOf?: number;
|
|
874
876
|
maximum?: number;
|
|
@@ -887,22 +889,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
887
889
|
format?: string;
|
|
888
890
|
$ref?: string;
|
|
889
891
|
$namespace?: string;
|
|
890
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
891
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
892
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
893
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
894
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
895
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
892
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
893
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
894
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
895
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
896
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
897
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
896
898
|
"x-value"?: any;
|
|
897
899
|
"x-index"?: number;
|
|
898
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
899
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
900
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
901
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
902
|
-
"x-decorator-props"?: Record<string, unknown
|
|
903
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
904
|
-
"x-component-props"?: Record<string, unknown
|
|
905
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
900
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
901
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
902
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
903
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
904
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
905
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
906
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
907
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
906
908
|
"x-content"?: any;
|
|
907
909
|
"x-data"?: any;
|
|
908
910
|
"x-visible"?: boolean;
|
|
@@ -912,21 +914,21 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
912
914
|
"x-read-only"?: boolean;
|
|
913
915
|
"x-read-pretty"?: boolean;
|
|
914
916
|
"x-compile-omitted"?: string[];
|
|
915
|
-
}
|
|
916
|
-
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
917
|
+
}> | undefined>;
|
|
918
|
+
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
917
919
|
additionalProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
918
920
|
[key: symbol]: any;
|
|
919
921
|
[key: `x-${string}`]: any;
|
|
920
922
|
[key: `x-${number}`]: any;
|
|
921
923
|
version?: string;
|
|
922
924
|
name?: import('@formily/json-schema').SchemaKey;
|
|
923
|
-
title?: string;
|
|
924
|
-
description?: string;
|
|
925
|
+
title?: string | undefined;
|
|
926
|
+
description?: string | undefined;
|
|
925
927
|
default?: any;
|
|
926
928
|
readOnly?: boolean;
|
|
927
929
|
writeOnly?: boolean;
|
|
928
930
|
type?: SchemaTypes;
|
|
929
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
931
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
930
932
|
const?: any;
|
|
931
933
|
multipleOf?: number;
|
|
932
934
|
maximum?: number;
|
|
@@ -945,22 +947,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
945
947
|
format?: string;
|
|
946
948
|
$ref?: string;
|
|
947
949
|
$namespace?: string;
|
|
948
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
949
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
950
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
951
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
952
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
953
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
950
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
951
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
952
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
953
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
954
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
955
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
954
956
|
"x-value"?: any;
|
|
955
957
|
"x-index"?: number;
|
|
956
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
957
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
958
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
959
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
960
|
-
"x-decorator-props"?: Record<string, unknown
|
|
961
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
962
|
-
"x-component-props"?: Record<string, unknown
|
|
963
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
958
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
959
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
960
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
961
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
962
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
963
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
964
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
965
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
964
966
|
"x-content"?: any;
|
|
965
967
|
"x-data"?: any;
|
|
966
968
|
"x-visible"?: boolean;
|
|
@@ -970,11 +972,11 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
970
972
|
"x-read-only"?: boolean;
|
|
971
973
|
"x-read-pretty"?: boolean;
|
|
972
974
|
"x-compile-omitted"?: string[];
|
|
973
|
-
}
|
|
975
|
+
}> | undefined>;
|
|
974
976
|
'x-index': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
975
977
|
'x-pattern': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
976
978
|
'x-display': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
977
|
-
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator>;
|
|
979
|
+
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator | undefined>;
|
|
978
980
|
'x-decorator': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
979
981
|
'x-decorator-props': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
980
982
|
'x-decorator-content': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
@@ -990,45 +992,45 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
990
992
|
'x-read-pretty': import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
991
993
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
992
994
|
SchemaArrayField: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
993
|
-
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
994
|
-
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey>;
|
|
995
|
-
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
996
|
-
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
995
|
+
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
996
|
+
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey | undefined>;
|
|
997
|
+
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
998
|
+
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
997
999
|
default: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
998
1000
|
readOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
999
1001
|
writeOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1000
|
-
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string
|
|
1002
|
+
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string> | undefined>;
|
|
1001
1003
|
const: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1002
|
-
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1003
|
-
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1004
|
-
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1005
|
-
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1006
|
-
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1007
|
-
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1008
|
-
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1009
|
-
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {})>;
|
|
1010
|
-
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1011
|
-
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1004
|
+
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1005
|
+
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1006
|
+
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1007
|
+
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1008
|
+
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1009
|
+
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1010
|
+
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1011
|
+
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {}) | undefined>;
|
|
1012
|
+
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1013
|
+
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1012
1014
|
uniqueItems: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1013
|
-
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1014
|
-
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1015
|
-
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[]>;
|
|
1016
|
-
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1017
|
-
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1018
|
-
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1015
|
+
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1016
|
+
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1017
|
+
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[] | undefined>;
|
|
1018
|
+
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1019
|
+
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1020
|
+
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1019
1021
|
additionalItems: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
1020
1022
|
[key: symbol]: any;
|
|
1021
1023
|
[key: `x-${string}`]: any;
|
|
1022
1024
|
[key: `x-${number}`]: any;
|
|
1023
1025
|
version?: string;
|
|
1024
1026
|
name?: import('@formily/json-schema').SchemaKey;
|
|
1025
|
-
title?: string;
|
|
1026
|
-
description?: string;
|
|
1027
|
+
title?: string | undefined;
|
|
1028
|
+
description?: string | undefined;
|
|
1027
1029
|
default?: any;
|
|
1028
1030
|
readOnly?: boolean;
|
|
1029
1031
|
writeOnly?: boolean;
|
|
1030
1032
|
type?: SchemaTypes;
|
|
1031
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
1033
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
1032
1034
|
const?: any;
|
|
1033
1035
|
multipleOf?: number;
|
|
1034
1036
|
maximum?: number;
|
|
@@ -1047,22 +1049,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1047
1049
|
format?: string;
|
|
1048
1050
|
$ref?: string;
|
|
1049
1051
|
$namespace?: string;
|
|
1050
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1051
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1052
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1053
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1054
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1055
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1052
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1053
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1054
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1055
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1056
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1057
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1056
1058
|
"x-value"?: any;
|
|
1057
1059
|
"x-index"?: number;
|
|
1058
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
1059
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
1060
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
1061
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1062
|
-
"x-decorator-props"?: Record<string, unknown
|
|
1063
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1064
|
-
"x-component-props"?: Record<string, unknown
|
|
1065
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
1060
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
1061
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
1062
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
1063
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1064
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
1065
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1066
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
1067
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
1066
1068
|
"x-content"?: any;
|
|
1067
1069
|
"x-data"?: any;
|
|
1068
1070
|
"x-visible"?: boolean;
|
|
@@ -1072,21 +1074,21 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1072
1074
|
"x-read-only"?: boolean;
|
|
1073
1075
|
"x-read-pretty"?: boolean;
|
|
1074
1076
|
"x-compile-omitted"?: string[];
|
|
1075
|
-
}
|
|
1076
|
-
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1077
|
+
}> | undefined>;
|
|
1078
|
+
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1077
1079
|
additionalProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
1078
1080
|
[key: symbol]: any;
|
|
1079
1081
|
[key: `x-${string}`]: any;
|
|
1080
1082
|
[key: `x-${number}`]: any;
|
|
1081
1083
|
version?: string;
|
|
1082
1084
|
name?: import('@formily/json-schema').SchemaKey;
|
|
1083
|
-
title?: string;
|
|
1084
|
-
description?: string;
|
|
1085
|
+
title?: string | undefined;
|
|
1086
|
+
description?: string | undefined;
|
|
1085
1087
|
default?: any;
|
|
1086
1088
|
readOnly?: boolean;
|
|
1087
1089
|
writeOnly?: boolean;
|
|
1088
1090
|
type?: SchemaTypes;
|
|
1089
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
1091
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
1090
1092
|
const?: any;
|
|
1091
1093
|
multipleOf?: number;
|
|
1092
1094
|
maximum?: number;
|
|
@@ -1105,22 +1107,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1105
1107
|
format?: string;
|
|
1106
1108
|
$ref?: string;
|
|
1107
1109
|
$namespace?: string;
|
|
1108
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1109
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1110
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1111
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1112
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1113
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1110
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1111
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1112
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1113
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1114
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1115
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1114
1116
|
"x-value"?: any;
|
|
1115
1117
|
"x-index"?: number;
|
|
1116
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
1117
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
1118
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
1119
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1120
|
-
"x-decorator-props"?: Record<string, unknown
|
|
1121
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1122
|
-
"x-component-props"?: Record<string, unknown
|
|
1123
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
1118
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
1119
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
1120
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
1121
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1122
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
1123
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1124
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
1125
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
1124
1126
|
"x-content"?: any;
|
|
1125
1127
|
"x-data"?: any;
|
|
1126
1128
|
"x-visible"?: boolean;
|
|
@@ -1130,11 +1132,11 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1130
1132
|
"x-read-only"?: boolean;
|
|
1131
1133
|
"x-read-pretty"?: boolean;
|
|
1132
1134
|
"x-compile-omitted"?: string[];
|
|
1133
|
-
}
|
|
1135
|
+
}> | undefined>;
|
|
1134
1136
|
'x-index': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1135
1137
|
'x-pattern': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1136
1138
|
'x-display': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1137
|
-
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator>;
|
|
1139
|
+
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator | undefined>;
|
|
1138
1140
|
'x-decorator': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1139
1141
|
'x-decorator-props': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1140
1142
|
'x-decorator-content': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
@@ -1151,45 +1153,45 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1151
1153
|
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1152
1154
|
[key: string]: any;
|
|
1153
1155
|
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1154
|
-
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1155
|
-
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey>;
|
|
1156
|
-
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1157
|
-
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1156
|
+
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1157
|
+
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey | undefined>;
|
|
1158
|
+
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1159
|
+
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1158
1160
|
default: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1159
1161
|
readOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1160
1162
|
writeOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1161
|
-
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string
|
|
1163
|
+
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string> | undefined>;
|
|
1162
1164
|
const: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1163
|
-
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1164
|
-
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1165
|
-
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1166
|
-
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1167
|
-
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1168
|
-
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1169
|
-
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1170
|
-
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {})>;
|
|
1171
|
-
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1172
|
-
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1165
|
+
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1166
|
+
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1167
|
+
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1168
|
+
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1169
|
+
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1170
|
+
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1171
|
+
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1172
|
+
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {}) | undefined>;
|
|
1173
|
+
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1174
|
+
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1173
1175
|
uniqueItems: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1174
|
-
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1175
|
-
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1176
|
-
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[]>;
|
|
1177
|
-
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1178
|
-
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1179
|
-
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1176
|
+
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1177
|
+
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1178
|
+
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[] | undefined>;
|
|
1179
|
+
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1180
|
+
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1181
|
+
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1180
1182
|
additionalItems: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
1181
1183
|
[key: symbol]: any;
|
|
1182
1184
|
[key: `x-${string}`]: any;
|
|
1183
1185
|
[key: `x-${number}`]: any;
|
|
1184
1186
|
version?: string;
|
|
1185
1187
|
name?: import('@formily/json-schema').SchemaKey;
|
|
1186
|
-
title?: string;
|
|
1187
|
-
description?: string;
|
|
1188
|
+
title?: string | undefined;
|
|
1189
|
+
description?: string | undefined;
|
|
1188
1190
|
default?: any;
|
|
1189
1191
|
readOnly?: boolean;
|
|
1190
1192
|
writeOnly?: boolean;
|
|
1191
1193
|
type?: SchemaTypes;
|
|
1192
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
1194
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
1193
1195
|
const?: any;
|
|
1194
1196
|
multipleOf?: number;
|
|
1195
1197
|
maximum?: number;
|
|
@@ -1208,22 +1210,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1208
1210
|
format?: string;
|
|
1209
1211
|
$ref?: string;
|
|
1210
1212
|
$namespace?: string;
|
|
1211
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1212
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1213
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1214
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1215
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1216
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1213
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1214
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1215
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1216
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1217
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1218
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1217
1219
|
"x-value"?: any;
|
|
1218
1220
|
"x-index"?: number;
|
|
1219
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
1220
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
1221
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
1222
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1223
|
-
"x-decorator-props"?: Record<string, unknown
|
|
1224
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1225
|
-
"x-component-props"?: Record<string, unknown
|
|
1226
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
1221
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
1222
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
1223
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
1224
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1225
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
1226
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1227
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
1228
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
1227
1229
|
"x-content"?: any;
|
|
1228
1230
|
"x-data"?: any;
|
|
1229
1231
|
"x-visible"?: boolean;
|
|
@@ -1233,21 +1235,21 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1233
1235
|
"x-read-only"?: boolean;
|
|
1234
1236
|
"x-read-pretty"?: boolean;
|
|
1235
1237
|
"x-compile-omitted"?: string[];
|
|
1236
|
-
}
|
|
1237
|
-
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1238
|
+
}> | undefined>;
|
|
1239
|
+
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1238
1240
|
additionalProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
1239
1241
|
[key: symbol]: any;
|
|
1240
1242
|
[key: `x-${string}`]: any;
|
|
1241
1243
|
[key: `x-${number}`]: any;
|
|
1242
1244
|
version?: string;
|
|
1243
1245
|
name?: import('@formily/json-schema').SchemaKey;
|
|
1244
|
-
title?: string;
|
|
1245
|
-
description?: string;
|
|
1246
|
+
title?: string | undefined;
|
|
1247
|
+
description?: string | undefined;
|
|
1246
1248
|
default?: any;
|
|
1247
1249
|
readOnly?: boolean;
|
|
1248
1250
|
writeOnly?: boolean;
|
|
1249
1251
|
type?: SchemaTypes;
|
|
1250
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
1252
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
1251
1253
|
const?: any;
|
|
1252
1254
|
multipleOf?: number;
|
|
1253
1255
|
maximum?: number;
|
|
@@ -1266,22 +1268,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1266
1268
|
format?: string;
|
|
1267
1269
|
$ref?: string;
|
|
1268
1270
|
$namespace?: string;
|
|
1269
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1270
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1271
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1272
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1273
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1274
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1271
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1272
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1273
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1274
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1275
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1276
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1275
1277
|
"x-value"?: any;
|
|
1276
1278
|
"x-index"?: number;
|
|
1277
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
1278
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
1279
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
1280
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1281
|
-
"x-decorator-props"?: Record<string, unknown
|
|
1282
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1283
|
-
"x-component-props"?: Record<string, unknown
|
|
1284
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
1279
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
1280
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
1281
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
1282
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1283
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
1284
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1285
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
1286
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
1285
1287
|
"x-content"?: any;
|
|
1286
1288
|
"x-data"?: any;
|
|
1287
1289
|
"x-visible"?: boolean;
|
|
@@ -1291,11 +1293,11 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1291
1293
|
"x-read-only"?: boolean;
|
|
1292
1294
|
"x-read-pretty"?: boolean;
|
|
1293
1295
|
"x-compile-omitted"?: string[];
|
|
1294
|
-
}
|
|
1296
|
+
}> | undefined>;
|
|
1295
1297
|
'x-index': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1296
1298
|
'x-pattern': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1297
1299
|
'x-display': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1298
|
-
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator>;
|
|
1300
|
+
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator | undefined>;
|
|
1299
1301
|
'x-decorator': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1300
1302
|
'x-decorator-props': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1301
1303
|
'x-decorator-content': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
@@ -1311,45 +1313,45 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1311
1313
|
'x-read-pretty': import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1312
1314
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1313
1315
|
SchemaBooleanField: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1314
|
-
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1315
|
-
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey>;
|
|
1316
|
-
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1317
|
-
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1316
|
+
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1317
|
+
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey | undefined>;
|
|
1318
|
+
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1319
|
+
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1318
1320
|
default: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1319
1321
|
readOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1320
1322
|
writeOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1321
|
-
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string
|
|
1323
|
+
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string> | undefined>;
|
|
1322
1324
|
const: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1323
|
-
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1324
|
-
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1325
|
-
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1326
|
-
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1327
|
-
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1328
|
-
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1329
|
-
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1330
|
-
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {})>;
|
|
1331
|
-
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1332
|
-
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1325
|
+
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1326
|
+
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1327
|
+
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1328
|
+
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1329
|
+
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1330
|
+
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1331
|
+
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1332
|
+
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {}) | undefined>;
|
|
1333
|
+
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1334
|
+
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1333
1335
|
uniqueItems: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1334
|
-
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1335
|
-
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1336
|
-
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[]>;
|
|
1337
|
-
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1338
|
-
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1339
|
-
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1336
|
+
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1337
|
+
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1338
|
+
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[] | undefined>;
|
|
1339
|
+
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1340
|
+
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1341
|
+
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1340
1342
|
additionalItems: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
1341
1343
|
[key: symbol]: any;
|
|
1342
1344
|
[key: `x-${string}`]: any;
|
|
1343
1345
|
[key: `x-${number}`]: any;
|
|
1344
1346
|
version?: string;
|
|
1345
1347
|
name?: import('@formily/json-schema').SchemaKey;
|
|
1346
|
-
title?: string;
|
|
1347
|
-
description?: string;
|
|
1348
|
+
title?: string | undefined;
|
|
1349
|
+
description?: string | undefined;
|
|
1348
1350
|
default?: any;
|
|
1349
1351
|
readOnly?: boolean;
|
|
1350
1352
|
writeOnly?: boolean;
|
|
1351
1353
|
type?: SchemaTypes;
|
|
1352
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
1354
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
1353
1355
|
const?: any;
|
|
1354
1356
|
multipleOf?: number;
|
|
1355
1357
|
maximum?: number;
|
|
@@ -1368,22 +1370,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1368
1370
|
format?: string;
|
|
1369
1371
|
$ref?: string;
|
|
1370
1372
|
$namespace?: string;
|
|
1371
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1372
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1373
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1374
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1375
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1376
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1373
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1374
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1375
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1376
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1377
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1378
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1377
1379
|
"x-value"?: any;
|
|
1378
1380
|
"x-index"?: number;
|
|
1379
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
1380
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
1381
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
1382
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1383
|
-
"x-decorator-props"?: Record<string, unknown
|
|
1384
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1385
|
-
"x-component-props"?: Record<string, unknown
|
|
1386
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
1381
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
1382
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
1383
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
1384
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1385
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
1386
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1387
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
1388
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
1387
1389
|
"x-content"?: any;
|
|
1388
1390
|
"x-data"?: any;
|
|
1389
1391
|
"x-visible"?: boolean;
|
|
@@ -1393,21 +1395,21 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1393
1395
|
"x-read-only"?: boolean;
|
|
1394
1396
|
"x-read-pretty"?: boolean;
|
|
1395
1397
|
"x-compile-omitted"?: string[];
|
|
1396
|
-
}
|
|
1397
|
-
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1398
|
+
}> | undefined>;
|
|
1399
|
+
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1398
1400
|
additionalProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
1399
1401
|
[key: symbol]: any;
|
|
1400
1402
|
[key: `x-${string}`]: any;
|
|
1401
1403
|
[key: `x-${number}`]: any;
|
|
1402
1404
|
version?: string;
|
|
1403
1405
|
name?: import('@formily/json-schema').SchemaKey;
|
|
1404
|
-
title?: string;
|
|
1405
|
-
description?: string;
|
|
1406
|
+
title?: string | undefined;
|
|
1407
|
+
description?: string | undefined;
|
|
1406
1408
|
default?: any;
|
|
1407
1409
|
readOnly?: boolean;
|
|
1408
1410
|
writeOnly?: boolean;
|
|
1409
1411
|
type?: SchemaTypes;
|
|
1410
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
1412
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
1411
1413
|
const?: any;
|
|
1412
1414
|
multipleOf?: number;
|
|
1413
1415
|
maximum?: number;
|
|
@@ -1426,22 +1428,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1426
1428
|
format?: string;
|
|
1427
1429
|
$ref?: string;
|
|
1428
1430
|
$namespace?: string;
|
|
1429
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1430
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1431
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1432
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1433
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1434
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1431
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1432
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1433
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1434
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1435
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1436
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1435
1437
|
"x-value"?: any;
|
|
1436
1438
|
"x-index"?: number;
|
|
1437
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
1438
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
1439
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
1440
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1441
|
-
"x-decorator-props"?: Record<string, unknown
|
|
1442
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1443
|
-
"x-component-props"?: Record<string, unknown
|
|
1444
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
1439
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
1440
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
1441
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
1442
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1443
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
1444
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1445
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
1446
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
1445
1447
|
"x-content"?: any;
|
|
1446
1448
|
"x-data"?: any;
|
|
1447
1449
|
"x-visible"?: boolean;
|
|
@@ -1451,11 +1453,11 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1451
1453
|
"x-read-only"?: boolean;
|
|
1452
1454
|
"x-read-pretty"?: boolean;
|
|
1453
1455
|
"x-compile-omitted"?: string[];
|
|
1454
|
-
}
|
|
1456
|
+
}> | undefined>;
|
|
1455
1457
|
'x-index': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1456
1458
|
'x-pattern': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1457
1459
|
'x-display': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1458
|
-
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator>;
|
|
1460
|
+
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator | undefined>;
|
|
1459
1461
|
'x-decorator': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1460
1462
|
'x-decorator-props': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1461
1463
|
'x-decorator-content': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
@@ -1472,45 +1474,45 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1472
1474
|
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1473
1475
|
[key: string]: any;
|
|
1474
1476
|
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1475
|
-
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1476
|
-
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey>;
|
|
1477
|
-
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1478
|
-
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1477
|
+
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1478
|
+
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey | undefined>;
|
|
1479
|
+
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1480
|
+
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1479
1481
|
default: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1480
1482
|
readOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1481
1483
|
writeOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1482
|
-
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string
|
|
1484
|
+
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string> | undefined>;
|
|
1483
1485
|
const: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1484
|
-
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1485
|
-
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1486
|
-
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1487
|
-
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1488
|
-
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1489
|
-
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1490
|
-
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1491
|
-
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {})>;
|
|
1492
|
-
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1493
|
-
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1486
|
+
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1487
|
+
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1488
|
+
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1489
|
+
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1490
|
+
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1491
|
+
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1492
|
+
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1493
|
+
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {}) | undefined>;
|
|
1494
|
+
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1495
|
+
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1494
1496
|
uniqueItems: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1495
|
-
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1496
|
-
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1497
|
-
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[]>;
|
|
1498
|
-
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1499
|
-
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1500
|
-
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1497
|
+
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1498
|
+
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1499
|
+
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[] | undefined>;
|
|
1500
|
+
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1501
|
+
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1502
|
+
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1501
1503
|
additionalItems: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
1502
1504
|
[key: symbol]: any;
|
|
1503
1505
|
[key: `x-${string}`]: any;
|
|
1504
1506
|
[key: `x-${number}`]: any;
|
|
1505
1507
|
version?: string;
|
|
1506
1508
|
name?: import('@formily/json-schema').SchemaKey;
|
|
1507
|
-
title?: string;
|
|
1508
|
-
description?: string;
|
|
1509
|
+
title?: string | undefined;
|
|
1510
|
+
description?: string | undefined;
|
|
1509
1511
|
default?: any;
|
|
1510
1512
|
readOnly?: boolean;
|
|
1511
1513
|
writeOnly?: boolean;
|
|
1512
1514
|
type?: SchemaTypes;
|
|
1513
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
1515
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
1514
1516
|
const?: any;
|
|
1515
1517
|
multipleOf?: number;
|
|
1516
1518
|
maximum?: number;
|
|
@@ -1529,22 +1531,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1529
1531
|
format?: string;
|
|
1530
1532
|
$ref?: string;
|
|
1531
1533
|
$namespace?: string;
|
|
1532
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1533
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1534
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1535
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1536
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1537
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1534
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1535
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1536
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1537
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1538
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1539
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1538
1540
|
"x-value"?: any;
|
|
1539
1541
|
"x-index"?: number;
|
|
1540
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
1541
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
1542
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
1543
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1544
|
-
"x-decorator-props"?: Record<string, unknown
|
|
1545
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1546
|
-
"x-component-props"?: Record<string, unknown
|
|
1547
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
1542
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
1543
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
1544
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
1545
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1546
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
1547
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1548
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
1549
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
1548
1550
|
"x-content"?: any;
|
|
1549
1551
|
"x-data"?: any;
|
|
1550
1552
|
"x-visible"?: boolean;
|
|
@@ -1554,21 +1556,21 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1554
1556
|
"x-read-only"?: boolean;
|
|
1555
1557
|
"x-read-pretty"?: boolean;
|
|
1556
1558
|
"x-compile-omitted"?: string[];
|
|
1557
|
-
}
|
|
1558
|
-
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1559
|
+
}> | undefined>;
|
|
1560
|
+
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1559
1561
|
additionalProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
1560
1562
|
[key: symbol]: any;
|
|
1561
1563
|
[key: `x-${string}`]: any;
|
|
1562
1564
|
[key: `x-${number}`]: any;
|
|
1563
1565
|
version?: string;
|
|
1564
1566
|
name?: import('@formily/json-schema').SchemaKey;
|
|
1565
|
-
title?: string;
|
|
1566
|
-
description?: string;
|
|
1567
|
+
title?: string | undefined;
|
|
1568
|
+
description?: string | undefined;
|
|
1567
1569
|
default?: any;
|
|
1568
1570
|
readOnly?: boolean;
|
|
1569
1571
|
writeOnly?: boolean;
|
|
1570
1572
|
type?: SchemaTypes;
|
|
1571
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
1573
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
1572
1574
|
const?: any;
|
|
1573
1575
|
multipleOf?: number;
|
|
1574
1576
|
maximum?: number;
|
|
@@ -1587,22 +1589,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1587
1589
|
format?: string;
|
|
1588
1590
|
$ref?: string;
|
|
1589
1591
|
$namespace?: string;
|
|
1590
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1591
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1592
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1593
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1594
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1595
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1592
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1593
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1594
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1595
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1596
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1597
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1596
1598
|
"x-value"?: any;
|
|
1597
1599
|
"x-index"?: number;
|
|
1598
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
1599
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
1600
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
1601
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1602
|
-
"x-decorator-props"?: Record<string, unknown
|
|
1603
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1604
|
-
"x-component-props"?: Record<string, unknown
|
|
1605
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
1600
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
1601
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
1602
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
1603
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1604
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
1605
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1606
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
1607
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
1606
1608
|
"x-content"?: any;
|
|
1607
1609
|
"x-data"?: any;
|
|
1608
1610
|
"x-visible"?: boolean;
|
|
@@ -1612,11 +1614,11 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1612
1614
|
"x-read-only"?: boolean;
|
|
1613
1615
|
"x-read-pretty"?: boolean;
|
|
1614
1616
|
"x-compile-omitted"?: string[];
|
|
1615
|
-
}
|
|
1617
|
+
}> | undefined>;
|
|
1616
1618
|
'x-index': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1617
1619
|
'x-pattern': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1618
1620
|
'x-display': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1619
|
-
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator>;
|
|
1621
|
+
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator | undefined>;
|
|
1620
1622
|
'x-decorator': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1621
1623
|
'x-decorator-props': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1622
1624
|
'x-decorator-content': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
@@ -1632,45 +1634,45 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1632
1634
|
'x-read-pretty': import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1633
1635
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1634
1636
|
SchemaDateField: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1635
|
-
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1636
|
-
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey>;
|
|
1637
|
-
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1638
|
-
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1637
|
+
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1638
|
+
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey | undefined>;
|
|
1639
|
+
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1640
|
+
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1639
1641
|
default: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1640
1642
|
readOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1641
1643
|
writeOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1642
|
-
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string
|
|
1644
|
+
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string> | undefined>;
|
|
1643
1645
|
const: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1644
|
-
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1645
|
-
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1646
|
-
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1647
|
-
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1648
|
-
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1649
|
-
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1650
|
-
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1651
|
-
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {})>;
|
|
1652
|
-
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1653
|
-
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1646
|
+
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1647
|
+
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1648
|
+
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1649
|
+
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1650
|
+
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1651
|
+
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1652
|
+
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1653
|
+
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {}) | undefined>;
|
|
1654
|
+
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1655
|
+
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1654
1656
|
uniqueItems: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1655
|
-
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1656
|
-
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1657
|
-
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[]>;
|
|
1658
|
-
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1659
|
-
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1660
|
-
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1657
|
+
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1658
|
+
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1659
|
+
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[] | undefined>;
|
|
1660
|
+
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1661
|
+
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1662
|
+
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1661
1663
|
additionalItems: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
1662
1664
|
[key: symbol]: any;
|
|
1663
1665
|
[key: `x-${string}`]: any;
|
|
1664
1666
|
[key: `x-${number}`]: any;
|
|
1665
1667
|
version?: string;
|
|
1666
1668
|
name?: import('@formily/json-schema').SchemaKey;
|
|
1667
|
-
title?: string;
|
|
1668
|
-
description?: string;
|
|
1669
|
+
title?: string | undefined;
|
|
1670
|
+
description?: string | undefined;
|
|
1669
1671
|
default?: any;
|
|
1670
1672
|
readOnly?: boolean;
|
|
1671
1673
|
writeOnly?: boolean;
|
|
1672
1674
|
type?: SchemaTypes;
|
|
1673
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
1675
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
1674
1676
|
const?: any;
|
|
1675
1677
|
multipleOf?: number;
|
|
1676
1678
|
maximum?: number;
|
|
@@ -1689,22 +1691,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1689
1691
|
format?: string;
|
|
1690
1692
|
$ref?: string;
|
|
1691
1693
|
$namespace?: string;
|
|
1692
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1693
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1694
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1695
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1696
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1697
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1694
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1695
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1696
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1697
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1698
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1699
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1698
1700
|
"x-value"?: any;
|
|
1699
1701
|
"x-index"?: number;
|
|
1700
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
1701
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
1702
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
1703
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1704
|
-
"x-decorator-props"?: Record<string, unknown
|
|
1705
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1706
|
-
"x-component-props"?: Record<string, unknown
|
|
1707
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
1702
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
1703
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
1704
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
1705
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1706
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
1707
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1708
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
1709
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
1708
1710
|
"x-content"?: any;
|
|
1709
1711
|
"x-data"?: any;
|
|
1710
1712
|
"x-visible"?: boolean;
|
|
@@ -1714,21 +1716,21 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1714
1716
|
"x-read-only"?: boolean;
|
|
1715
1717
|
"x-read-pretty"?: boolean;
|
|
1716
1718
|
"x-compile-omitted"?: string[];
|
|
1717
|
-
}
|
|
1718
|
-
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1719
|
+
}> | undefined>;
|
|
1720
|
+
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1719
1721
|
additionalProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
1720
1722
|
[key: symbol]: any;
|
|
1721
1723
|
[key: `x-${string}`]: any;
|
|
1722
1724
|
[key: `x-${number}`]: any;
|
|
1723
1725
|
version?: string;
|
|
1724
1726
|
name?: import('@formily/json-schema').SchemaKey;
|
|
1725
|
-
title?: string;
|
|
1726
|
-
description?: string;
|
|
1727
|
+
title?: string | undefined;
|
|
1728
|
+
description?: string | undefined;
|
|
1727
1729
|
default?: any;
|
|
1728
1730
|
readOnly?: boolean;
|
|
1729
1731
|
writeOnly?: boolean;
|
|
1730
1732
|
type?: SchemaTypes;
|
|
1731
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
1733
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
1732
1734
|
const?: any;
|
|
1733
1735
|
multipleOf?: number;
|
|
1734
1736
|
maximum?: number;
|
|
@@ -1747,22 +1749,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1747
1749
|
format?: string;
|
|
1748
1750
|
$ref?: string;
|
|
1749
1751
|
$namespace?: string;
|
|
1750
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1751
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1752
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1753
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1754
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1755
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1752
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1753
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1754
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1755
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1756
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1757
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1756
1758
|
"x-value"?: any;
|
|
1757
1759
|
"x-index"?: number;
|
|
1758
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
1759
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
1760
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
1761
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1762
|
-
"x-decorator-props"?: Record<string, unknown
|
|
1763
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1764
|
-
"x-component-props"?: Record<string, unknown
|
|
1765
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
1760
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
1761
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
1762
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
1763
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1764
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
1765
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1766
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
1767
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
1766
1768
|
"x-content"?: any;
|
|
1767
1769
|
"x-data"?: any;
|
|
1768
1770
|
"x-visible"?: boolean;
|
|
@@ -1772,11 +1774,11 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1772
1774
|
"x-read-only"?: boolean;
|
|
1773
1775
|
"x-read-pretty"?: boolean;
|
|
1774
1776
|
"x-compile-omitted"?: string[];
|
|
1775
|
-
}
|
|
1777
|
+
}> | undefined>;
|
|
1776
1778
|
'x-index': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1777
1779
|
'x-pattern': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1778
1780
|
'x-display': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1779
|
-
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator>;
|
|
1781
|
+
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator | undefined>;
|
|
1780
1782
|
'x-decorator': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1781
1783
|
'x-decorator-props': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1782
1784
|
'x-decorator-content': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
@@ -1793,45 +1795,45 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1793
1795
|
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1794
1796
|
[key: string]: any;
|
|
1795
1797
|
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1796
|
-
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1797
|
-
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey>;
|
|
1798
|
-
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1799
|
-
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1798
|
+
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1799
|
+
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey | undefined>;
|
|
1800
|
+
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1801
|
+
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1800
1802
|
default: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1801
1803
|
readOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1802
1804
|
writeOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1803
|
-
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string
|
|
1805
|
+
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string> | undefined>;
|
|
1804
1806
|
const: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1805
|
-
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1806
|
-
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1807
|
-
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1808
|
-
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1809
|
-
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1810
|
-
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1811
|
-
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1812
|
-
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {})>;
|
|
1813
|
-
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1814
|
-
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1807
|
+
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1808
|
+
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1809
|
+
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1810
|
+
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1811
|
+
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1812
|
+
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1813
|
+
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1814
|
+
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {}) | undefined>;
|
|
1815
|
+
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1816
|
+
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1815
1817
|
uniqueItems: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1816
|
-
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1817
|
-
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1818
|
-
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[]>;
|
|
1819
|
-
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1820
|
-
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1821
|
-
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1818
|
+
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1819
|
+
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1820
|
+
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[] | undefined>;
|
|
1821
|
+
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1822
|
+
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1823
|
+
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1822
1824
|
additionalItems: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
1823
1825
|
[key: symbol]: any;
|
|
1824
1826
|
[key: `x-${string}`]: any;
|
|
1825
1827
|
[key: `x-${number}`]: any;
|
|
1826
1828
|
version?: string;
|
|
1827
1829
|
name?: import('@formily/json-schema').SchemaKey;
|
|
1828
|
-
title?: string;
|
|
1829
|
-
description?: string;
|
|
1830
|
+
title?: string | undefined;
|
|
1831
|
+
description?: string | undefined;
|
|
1830
1832
|
default?: any;
|
|
1831
1833
|
readOnly?: boolean;
|
|
1832
1834
|
writeOnly?: boolean;
|
|
1833
1835
|
type?: SchemaTypes;
|
|
1834
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
1836
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
1835
1837
|
const?: any;
|
|
1836
1838
|
multipleOf?: number;
|
|
1837
1839
|
maximum?: number;
|
|
@@ -1850,22 +1852,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1850
1852
|
format?: string;
|
|
1851
1853
|
$ref?: string;
|
|
1852
1854
|
$namespace?: string;
|
|
1853
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1854
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1855
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1856
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1857
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1858
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1855
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1856
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1857
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1858
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1859
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1860
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1859
1861
|
"x-value"?: any;
|
|
1860
1862
|
"x-index"?: number;
|
|
1861
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
1862
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
1863
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
1864
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1865
|
-
"x-decorator-props"?: Record<string, unknown
|
|
1866
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1867
|
-
"x-component-props"?: Record<string, unknown
|
|
1868
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
1863
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
1864
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
1865
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
1866
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1867
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
1868
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1869
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
1870
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
1869
1871
|
"x-content"?: any;
|
|
1870
1872
|
"x-data"?: any;
|
|
1871
1873
|
"x-visible"?: boolean;
|
|
@@ -1875,21 +1877,21 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1875
1877
|
"x-read-only"?: boolean;
|
|
1876
1878
|
"x-read-pretty"?: boolean;
|
|
1877
1879
|
"x-compile-omitted"?: string[];
|
|
1878
|
-
}
|
|
1879
|
-
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1880
|
+
}> | undefined>;
|
|
1881
|
+
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1880
1882
|
additionalProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
1881
1883
|
[key: symbol]: any;
|
|
1882
1884
|
[key: `x-${string}`]: any;
|
|
1883
1885
|
[key: `x-${number}`]: any;
|
|
1884
1886
|
version?: string;
|
|
1885
1887
|
name?: import('@formily/json-schema').SchemaKey;
|
|
1886
|
-
title?: string;
|
|
1887
|
-
description?: string;
|
|
1888
|
+
title?: string | undefined;
|
|
1889
|
+
description?: string | undefined;
|
|
1888
1890
|
default?: any;
|
|
1889
1891
|
readOnly?: boolean;
|
|
1890
1892
|
writeOnly?: boolean;
|
|
1891
1893
|
type?: SchemaTypes;
|
|
1892
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
1894
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
1893
1895
|
const?: any;
|
|
1894
1896
|
multipleOf?: number;
|
|
1895
1897
|
maximum?: number;
|
|
@@ -1908,22 +1910,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1908
1910
|
format?: string;
|
|
1909
1911
|
$ref?: string;
|
|
1910
1912
|
$namespace?: string;
|
|
1911
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1912
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1913
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1914
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1915
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1916
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
1913
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1914
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1915
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1916
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1917
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
1918
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
1917
1919
|
"x-value"?: any;
|
|
1918
1920
|
"x-index"?: number;
|
|
1919
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
1920
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
1921
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
1922
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1923
|
-
"x-decorator-props"?: Record<string, unknown
|
|
1924
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
1925
|
-
"x-component-props"?: Record<string, unknown
|
|
1926
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
1921
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
1922
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
1923
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
1924
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1925
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
1926
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
1927
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
1928
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
1927
1929
|
"x-content"?: any;
|
|
1928
1930
|
"x-data"?: any;
|
|
1929
1931
|
"x-visible"?: boolean;
|
|
@@ -1933,11 +1935,11 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1933
1935
|
"x-read-only"?: boolean;
|
|
1934
1936
|
"x-read-pretty"?: boolean;
|
|
1935
1937
|
"x-compile-omitted"?: string[];
|
|
1936
|
-
}
|
|
1938
|
+
}> | undefined>;
|
|
1937
1939
|
'x-index': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1938
1940
|
'x-pattern': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1939
1941
|
'x-display': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1940
|
-
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator>;
|
|
1942
|
+
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator | undefined>;
|
|
1941
1943
|
'x-decorator': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1942
1944
|
'x-decorator-props': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1943
1945
|
'x-decorator-content': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
@@ -1953,45 +1955,45 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
1953
1955
|
'x-read-pretty': import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1954
1956
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1955
1957
|
SchemaDateTimeField: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1956
|
-
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1957
|
-
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey>;
|
|
1958
|
-
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1959
|
-
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1958
|
+
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1959
|
+
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey | undefined>;
|
|
1960
|
+
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1961
|
+
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1960
1962
|
default: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1961
1963
|
readOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1962
1964
|
writeOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1963
|
-
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string
|
|
1965
|
+
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string> | undefined>;
|
|
1964
1966
|
const: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
1965
|
-
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1966
|
-
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1967
|
-
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1968
|
-
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1969
|
-
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1970
|
-
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1971
|
-
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1972
|
-
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {})>;
|
|
1973
|
-
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1974
|
-
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1967
|
+
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1968
|
+
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1969
|
+
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1970
|
+
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1971
|
+
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1972
|
+
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1973
|
+
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1974
|
+
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {}) | undefined>;
|
|
1975
|
+
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1976
|
+
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1975
1977
|
uniqueItems: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
1976
|
-
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1977
|
-
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
1978
|
-
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[]>;
|
|
1979
|
-
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
1980
|
-
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1981
|
-
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
1978
|
+
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1979
|
+
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
1980
|
+
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[] | undefined>;
|
|
1981
|
+
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
1982
|
+
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1983
|
+
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
1982
1984
|
additionalItems: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
1983
1985
|
[key: symbol]: any;
|
|
1984
1986
|
[key: `x-${string}`]: any;
|
|
1985
1987
|
[key: `x-${number}`]: any;
|
|
1986
1988
|
version?: string;
|
|
1987
1989
|
name?: import('@formily/json-schema').SchemaKey;
|
|
1988
|
-
title?: string;
|
|
1989
|
-
description?: string;
|
|
1990
|
+
title?: string | undefined;
|
|
1991
|
+
description?: string | undefined;
|
|
1990
1992
|
default?: any;
|
|
1991
1993
|
readOnly?: boolean;
|
|
1992
1994
|
writeOnly?: boolean;
|
|
1993
1995
|
type?: SchemaTypes;
|
|
1994
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
1996
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
1995
1997
|
const?: any;
|
|
1996
1998
|
multipleOf?: number;
|
|
1997
1999
|
maximum?: number;
|
|
@@ -2010,22 +2012,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2010
2012
|
format?: string;
|
|
2011
2013
|
$ref?: string;
|
|
2012
2014
|
$namespace?: string;
|
|
2013
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2014
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2015
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2016
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2017
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2018
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2015
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2016
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2017
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2018
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2019
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2020
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2019
2021
|
"x-value"?: any;
|
|
2020
2022
|
"x-index"?: number;
|
|
2021
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
2022
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
2023
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
2024
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2025
|
-
"x-decorator-props"?: Record<string, unknown
|
|
2026
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2027
|
-
"x-component-props"?: Record<string, unknown
|
|
2028
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
2023
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
2024
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
2025
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
2026
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2027
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
2028
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2029
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
2030
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
2029
2031
|
"x-content"?: any;
|
|
2030
2032
|
"x-data"?: any;
|
|
2031
2033
|
"x-visible"?: boolean;
|
|
@@ -2035,21 +2037,21 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2035
2037
|
"x-read-only"?: boolean;
|
|
2036
2038
|
"x-read-pretty"?: boolean;
|
|
2037
2039
|
"x-compile-omitted"?: string[];
|
|
2038
|
-
}
|
|
2039
|
-
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2040
|
+
}> | undefined>;
|
|
2041
|
+
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
2040
2042
|
additionalProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
2041
2043
|
[key: symbol]: any;
|
|
2042
2044
|
[key: `x-${string}`]: any;
|
|
2043
2045
|
[key: `x-${number}`]: any;
|
|
2044
2046
|
version?: string;
|
|
2045
2047
|
name?: import('@formily/json-schema').SchemaKey;
|
|
2046
|
-
title?: string;
|
|
2047
|
-
description?: string;
|
|
2048
|
+
title?: string | undefined;
|
|
2049
|
+
description?: string | undefined;
|
|
2048
2050
|
default?: any;
|
|
2049
2051
|
readOnly?: boolean;
|
|
2050
2052
|
writeOnly?: boolean;
|
|
2051
2053
|
type?: SchemaTypes;
|
|
2052
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
2054
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
2053
2055
|
const?: any;
|
|
2054
2056
|
multipleOf?: number;
|
|
2055
2057
|
maximum?: number;
|
|
@@ -2068,22 +2070,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2068
2070
|
format?: string;
|
|
2069
2071
|
$ref?: string;
|
|
2070
2072
|
$namespace?: string;
|
|
2071
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2072
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2073
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2074
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2075
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2076
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2073
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2074
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2075
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2076
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2077
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2078
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2077
2079
|
"x-value"?: any;
|
|
2078
2080
|
"x-index"?: number;
|
|
2079
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
2080
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
2081
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
2082
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2083
|
-
"x-decorator-props"?: Record<string, unknown
|
|
2084
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2085
|
-
"x-component-props"?: Record<string, unknown
|
|
2086
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
2081
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
2082
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
2083
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
2084
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2085
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
2086
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2087
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
2088
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
2087
2089
|
"x-content"?: any;
|
|
2088
2090
|
"x-data"?: any;
|
|
2089
2091
|
"x-visible"?: boolean;
|
|
@@ -2093,11 +2095,11 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2093
2095
|
"x-read-only"?: boolean;
|
|
2094
2096
|
"x-read-pretty"?: boolean;
|
|
2095
2097
|
"x-compile-omitted"?: string[];
|
|
2096
|
-
}
|
|
2098
|
+
}> | undefined>;
|
|
2097
2099
|
'x-index': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2098
2100
|
'x-pattern': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2099
2101
|
'x-display': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2100
|
-
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator>;
|
|
2102
|
+
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator | undefined>;
|
|
2101
2103
|
'x-decorator': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2102
2104
|
'x-decorator-props': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2103
2105
|
'x-decorator-content': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
@@ -2114,45 +2116,45 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2114
2116
|
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2115
2117
|
[key: string]: any;
|
|
2116
2118
|
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
2117
|
-
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2118
|
-
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey>;
|
|
2119
|
-
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2120
|
-
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2119
|
+
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2120
|
+
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey | undefined>;
|
|
2121
|
+
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2122
|
+
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2121
2123
|
default: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2122
2124
|
readOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
2123
2125
|
writeOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
2124
|
-
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string
|
|
2126
|
+
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string> | undefined>;
|
|
2125
2127
|
const: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2126
|
-
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2127
|
-
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2128
|
-
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2129
|
-
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2130
|
-
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2131
|
-
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2132
|
-
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2133
|
-
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {})>;
|
|
2134
|
-
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2135
|
-
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2128
|
+
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2129
|
+
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2130
|
+
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2131
|
+
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2132
|
+
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2133
|
+
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2134
|
+
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2135
|
+
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {}) | undefined>;
|
|
2136
|
+
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2137
|
+
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2136
2138
|
uniqueItems: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
2137
|
-
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2138
|
-
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2139
|
-
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[]>;
|
|
2140
|
-
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2141
|
-
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2142
|
-
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2139
|
+
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2140
|
+
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2141
|
+
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[] | undefined>;
|
|
2142
|
+
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2143
|
+
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
2144
|
+
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
2143
2145
|
additionalItems: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
2144
2146
|
[key: symbol]: any;
|
|
2145
2147
|
[key: `x-${string}`]: any;
|
|
2146
2148
|
[key: `x-${number}`]: any;
|
|
2147
2149
|
version?: string;
|
|
2148
2150
|
name?: import('@formily/json-schema').SchemaKey;
|
|
2149
|
-
title?: string;
|
|
2150
|
-
description?: string;
|
|
2151
|
+
title?: string | undefined;
|
|
2152
|
+
description?: string | undefined;
|
|
2151
2153
|
default?: any;
|
|
2152
2154
|
readOnly?: boolean;
|
|
2153
2155
|
writeOnly?: boolean;
|
|
2154
2156
|
type?: SchemaTypes;
|
|
2155
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
2157
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
2156
2158
|
const?: any;
|
|
2157
2159
|
multipleOf?: number;
|
|
2158
2160
|
maximum?: number;
|
|
@@ -2171,22 +2173,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2171
2173
|
format?: string;
|
|
2172
2174
|
$ref?: string;
|
|
2173
2175
|
$namespace?: string;
|
|
2174
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2175
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2176
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2177
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2178
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2179
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2176
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2177
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2178
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2179
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2180
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2181
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2180
2182
|
"x-value"?: any;
|
|
2181
2183
|
"x-index"?: number;
|
|
2182
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
2183
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
2184
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
2185
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2186
|
-
"x-decorator-props"?: Record<string, unknown
|
|
2187
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2188
|
-
"x-component-props"?: Record<string, unknown
|
|
2189
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
2184
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
2185
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
2186
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
2187
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2188
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
2189
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2190
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
2191
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
2190
2192
|
"x-content"?: any;
|
|
2191
2193
|
"x-data"?: any;
|
|
2192
2194
|
"x-visible"?: boolean;
|
|
@@ -2196,21 +2198,21 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2196
2198
|
"x-read-only"?: boolean;
|
|
2197
2199
|
"x-read-pretty"?: boolean;
|
|
2198
2200
|
"x-compile-omitted"?: string[];
|
|
2199
|
-
}
|
|
2200
|
-
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2201
|
+
}> | undefined>;
|
|
2202
|
+
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
2201
2203
|
additionalProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
2202
2204
|
[key: symbol]: any;
|
|
2203
2205
|
[key: `x-${string}`]: any;
|
|
2204
2206
|
[key: `x-${number}`]: any;
|
|
2205
2207
|
version?: string;
|
|
2206
2208
|
name?: import('@formily/json-schema').SchemaKey;
|
|
2207
|
-
title?: string;
|
|
2208
|
-
description?: string;
|
|
2209
|
+
title?: string | undefined;
|
|
2210
|
+
description?: string | undefined;
|
|
2209
2211
|
default?: any;
|
|
2210
2212
|
readOnly?: boolean;
|
|
2211
2213
|
writeOnly?: boolean;
|
|
2212
2214
|
type?: SchemaTypes;
|
|
2213
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
2215
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
2214
2216
|
const?: any;
|
|
2215
2217
|
multipleOf?: number;
|
|
2216
2218
|
maximum?: number;
|
|
@@ -2229,22 +2231,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2229
2231
|
format?: string;
|
|
2230
2232
|
$ref?: string;
|
|
2231
2233
|
$namespace?: string;
|
|
2232
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2233
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2234
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2235
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2236
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2237
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2234
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2235
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2236
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2237
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2238
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2239
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2238
2240
|
"x-value"?: any;
|
|
2239
2241
|
"x-index"?: number;
|
|
2240
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
2241
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
2242
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
2243
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2244
|
-
"x-decorator-props"?: Record<string, unknown
|
|
2245
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2246
|
-
"x-component-props"?: Record<string, unknown
|
|
2247
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
2242
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
2243
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
2244
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
2245
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2246
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
2247
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2248
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
2249
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
2248
2250
|
"x-content"?: any;
|
|
2249
2251
|
"x-data"?: any;
|
|
2250
2252
|
"x-visible"?: boolean;
|
|
@@ -2254,11 +2256,11 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2254
2256
|
"x-read-only"?: boolean;
|
|
2255
2257
|
"x-read-pretty"?: boolean;
|
|
2256
2258
|
"x-compile-omitted"?: string[];
|
|
2257
|
-
}
|
|
2259
|
+
}> | undefined>;
|
|
2258
2260
|
'x-index': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2259
2261
|
'x-pattern': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2260
2262
|
'x-display': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2261
|
-
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator>;
|
|
2263
|
+
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator | undefined>;
|
|
2262
2264
|
'x-decorator': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2263
2265
|
'x-decorator-props': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2264
2266
|
'x-decorator-content': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
@@ -2274,45 +2276,45 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2274
2276
|
'x-read-pretty': import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
2275
2277
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2276
2278
|
SchemaVoidField: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2277
|
-
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2278
|
-
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey>;
|
|
2279
|
-
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2280
|
-
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2279
|
+
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2280
|
+
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey | undefined>;
|
|
2281
|
+
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2282
|
+
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2281
2283
|
default: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2282
2284
|
readOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
2283
2285
|
writeOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
2284
|
-
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string
|
|
2286
|
+
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string> | undefined>;
|
|
2285
2287
|
const: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2286
|
-
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2287
|
-
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2288
|
-
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2289
|
-
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2290
|
-
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2291
|
-
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2292
|
-
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2293
|
-
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {})>;
|
|
2294
|
-
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2295
|
-
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2288
|
+
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2289
|
+
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2290
|
+
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2291
|
+
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2292
|
+
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2293
|
+
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2294
|
+
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2295
|
+
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {}) | undefined>;
|
|
2296
|
+
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2297
|
+
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2296
2298
|
uniqueItems: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
2297
|
-
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2298
|
-
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2299
|
-
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[]>;
|
|
2300
|
-
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2301
|
-
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2302
|
-
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2299
|
+
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2300
|
+
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2301
|
+
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[] | undefined>;
|
|
2302
|
+
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2303
|
+
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
2304
|
+
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
2303
2305
|
additionalItems: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
2304
2306
|
[key: symbol]: any;
|
|
2305
2307
|
[key: `x-${string}`]: any;
|
|
2306
2308
|
[key: `x-${number}`]: any;
|
|
2307
2309
|
version?: string;
|
|
2308
2310
|
name?: import('@formily/json-schema').SchemaKey;
|
|
2309
|
-
title?: string;
|
|
2310
|
-
description?: string;
|
|
2311
|
+
title?: string | undefined;
|
|
2312
|
+
description?: string | undefined;
|
|
2311
2313
|
default?: any;
|
|
2312
2314
|
readOnly?: boolean;
|
|
2313
2315
|
writeOnly?: boolean;
|
|
2314
2316
|
type?: SchemaTypes;
|
|
2315
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
2317
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
2316
2318
|
const?: any;
|
|
2317
2319
|
multipleOf?: number;
|
|
2318
2320
|
maximum?: number;
|
|
@@ -2331,22 +2333,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2331
2333
|
format?: string;
|
|
2332
2334
|
$ref?: string;
|
|
2333
2335
|
$namespace?: string;
|
|
2334
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2335
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2336
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2337
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2338
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2339
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2336
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2337
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2338
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2339
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2340
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2341
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2340
2342
|
"x-value"?: any;
|
|
2341
2343
|
"x-index"?: number;
|
|
2342
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
2343
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
2344
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
2345
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2346
|
-
"x-decorator-props"?: Record<string, unknown
|
|
2347
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2348
|
-
"x-component-props"?: Record<string, unknown
|
|
2349
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
2344
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
2345
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
2346
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
2347
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2348
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
2349
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2350
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
2351
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
2350
2352
|
"x-content"?: any;
|
|
2351
2353
|
"x-data"?: any;
|
|
2352
2354
|
"x-visible"?: boolean;
|
|
@@ -2356,21 +2358,21 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2356
2358
|
"x-read-only"?: boolean;
|
|
2357
2359
|
"x-read-pretty"?: boolean;
|
|
2358
2360
|
"x-compile-omitted"?: string[];
|
|
2359
|
-
}
|
|
2360
|
-
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2361
|
+
}> | undefined>;
|
|
2362
|
+
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
2361
2363
|
additionalProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
2362
2364
|
[key: symbol]: any;
|
|
2363
2365
|
[key: `x-${string}`]: any;
|
|
2364
2366
|
[key: `x-${number}`]: any;
|
|
2365
2367
|
version?: string;
|
|
2366
2368
|
name?: import('@formily/json-schema').SchemaKey;
|
|
2367
|
-
title?: string;
|
|
2368
|
-
description?: string;
|
|
2369
|
+
title?: string | undefined;
|
|
2370
|
+
description?: string | undefined;
|
|
2369
2371
|
default?: any;
|
|
2370
2372
|
readOnly?: boolean;
|
|
2371
2373
|
writeOnly?: boolean;
|
|
2372
2374
|
type?: SchemaTypes;
|
|
2373
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
2375
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
2374
2376
|
const?: any;
|
|
2375
2377
|
multipleOf?: number;
|
|
2376
2378
|
maximum?: number;
|
|
@@ -2389,22 +2391,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2389
2391
|
format?: string;
|
|
2390
2392
|
$ref?: string;
|
|
2391
2393
|
$namespace?: string;
|
|
2392
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2393
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2394
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2395
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2396
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2397
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2394
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2395
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2396
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2397
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2398
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2399
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2398
2400
|
"x-value"?: any;
|
|
2399
2401
|
"x-index"?: number;
|
|
2400
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
2401
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
2402
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
2403
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2404
|
-
"x-decorator-props"?: Record<string, unknown
|
|
2405
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2406
|
-
"x-component-props"?: Record<string, unknown
|
|
2407
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
2402
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
2403
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
2404
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
2405
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2406
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
2407
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2408
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
2409
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
2408
2410
|
"x-content"?: any;
|
|
2409
2411
|
"x-data"?: any;
|
|
2410
2412
|
"x-visible"?: boolean;
|
|
@@ -2414,11 +2416,11 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2414
2416
|
"x-read-only"?: boolean;
|
|
2415
2417
|
"x-read-pretty"?: boolean;
|
|
2416
2418
|
"x-compile-omitted"?: string[];
|
|
2417
|
-
}
|
|
2419
|
+
}> | undefined>;
|
|
2418
2420
|
'x-index': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2419
2421
|
'x-pattern': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2420
2422
|
'x-display': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2421
|
-
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator>;
|
|
2423
|
+
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator | undefined>;
|
|
2422
2424
|
'x-decorator': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2423
2425
|
'x-decorator-props': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2424
2426
|
'x-decorator-content': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
@@ -2435,45 +2437,45 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2435
2437
|
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2436
2438
|
[key: string]: any;
|
|
2437
2439
|
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
2438
|
-
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2439
|
-
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey>;
|
|
2440
|
-
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2441
|
-
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2440
|
+
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2441
|
+
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey | undefined>;
|
|
2442
|
+
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2443
|
+
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2442
2444
|
default: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2443
2445
|
readOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
2444
2446
|
writeOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
2445
|
-
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string
|
|
2447
|
+
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string> | undefined>;
|
|
2446
2448
|
const: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2447
|
-
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2448
|
-
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2449
|
-
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2450
|
-
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2451
|
-
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2452
|
-
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2453
|
-
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2454
|
-
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {})>;
|
|
2455
|
-
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2456
|
-
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2449
|
+
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2450
|
+
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2451
|
+
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2452
|
+
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2453
|
+
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2454
|
+
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2455
|
+
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2456
|
+
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {}) | undefined>;
|
|
2457
|
+
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2458
|
+
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2457
2459
|
uniqueItems: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
2458
|
-
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2459
|
-
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2460
|
-
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[]>;
|
|
2461
|
-
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2462
|
-
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2463
|
-
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2460
|
+
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2461
|
+
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2462
|
+
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[] | undefined>;
|
|
2463
|
+
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2464
|
+
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
2465
|
+
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
2464
2466
|
additionalItems: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
2465
2467
|
[key: symbol]: any;
|
|
2466
2468
|
[key: `x-${string}`]: any;
|
|
2467
2469
|
[key: `x-${number}`]: any;
|
|
2468
2470
|
version?: string;
|
|
2469
2471
|
name?: import('@formily/json-schema').SchemaKey;
|
|
2470
|
-
title?: string;
|
|
2471
|
-
description?: string;
|
|
2472
|
+
title?: string | undefined;
|
|
2473
|
+
description?: string | undefined;
|
|
2472
2474
|
default?: any;
|
|
2473
2475
|
readOnly?: boolean;
|
|
2474
2476
|
writeOnly?: boolean;
|
|
2475
2477
|
type?: SchemaTypes;
|
|
2476
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
2478
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
2477
2479
|
const?: any;
|
|
2478
2480
|
multipleOf?: number;
|
|
2479
2481
|
maximum?: number;
|
|
@@ -2492,22 +2494,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2492
2494
|
format?: string;
|
|
2493
2495
|
$ref?: string;
|
|
2494
2496
|
$namespace?: string;
|
|
2495
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2496
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2497
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2498
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2499
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2500
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2497
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2498
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2499
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2500
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2501
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2502
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2501
2503
|
"x-value"?: any;
|
|
2502
2504
|
"x-index"?: number;
|
|
2503
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
2504
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
2505
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
2506
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2507
|
-
"x-decorator-props"?: Record<string, unknown
|
|
2508
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2509
|
-
"x-component-props"?: Record<string, unknown
|
|
2510
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
2505
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
2506
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
2507
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
2508
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2509
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
2510
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2511
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
2512
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
2511
2513
|
"x-content"?: any;
|
|
2512
2514
|
"x-data"?: any;
|
|
2513
2515
|
"x-visible"?: boolean;
|
|
@@ -2517,21 +2519,21 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2517
2519
|
"x-read-only"?: boolean;
|
|
2518
2520
|
"x-read-pretty"?: boolean;
|
|
2519
2521
|
"x-compile-omitted"?: string[];
|
|
2520
|
-
}
|
|
2521
|
-
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2522
|
+
}> | undefined>;
|
|
2523
|
+
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
2522
2524
|
additionalProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
2523
2525
|
[key: symbol]: any;
|
|
2524
2526
|
[key: `x-${string}`]: any;
|
|
2525
2527
|
[key: `x-${number}`]: any;
|
|
2526
2528
|
version?: string;
|
|
2527
2529
|
name?: import('@formily/json-schema').SchemaKey;
|
|
2528
|
-
title?: string;
|
|
2529
|
-
description?: string;
|
|
2530
|
+
title?: string | undefined;
|
|
2531
|
+
description?: string | undefined;
|
|
2530
2532
|
default?: any;
|
|
2531
2533
|
readOnly?: boolean;
|
|
2532
2534
|
writeOnly?: boolean;
|
|
2533
2535
|
type?: SchemaTypes;
|
|
2534
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
2536
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
2535
2537
|
const?: any;
|
|
2536
2538
|
multipleOf?: number;
|
|
2537
2539
|
maximum?: number;
|
|
@@ -2550,22 +2552,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2550
2552
|
format?: string;
|
|
2551
2553
|
$ref?: string;
|
|
2552
2554
|
$namespace?: string;
|
|
2553
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2554
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2555
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2556
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2557
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2558
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2555
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2556
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2557
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2558
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2559
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2560
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2559
2561
|
"x-value"?: any;
|
|
2560
2562
|
"x-index"?: number;
|
|
2561
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
2562
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
2563
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
2564
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2565
|
-
"x-decorator-props"?: Record<string, unknown
|
|
2566
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2567
|
-
"x-component-props"?: Record<string, unknown
|
|
2568
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
2563
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
2564
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
2565
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
2566
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2567
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
2568
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2569
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
2570
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
2569
2571
|
"x-content"?: any;
|
|
2570
2572
|
"x-data"?: any;
|
|
2571
2573
|
"x-visible"?: boolean;
|
|
@@ -2575,11 +2577,11 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2575
2577
|
"x-read-only"?: boolean;
|
|
2576
2578
|
"x-read-pretty"?: boolean;
|
|
2577
2579
|
"x-compile-omitted"?: string[];
|
|
2578
|
-
}
|
|
2580
|
+
}> | undefined>;
|
|
2579
2581
|
'x-index': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2580
2582
|
'x-pattern': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2581
2583
|
'x-display': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2582
|
-
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator>;
|
|
2584
|
+
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator | undefined>;
|
|
2583
2585
|
'x-decorator': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2584
2586
|
'x-decorator-props': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2585
2587
|
'x-decorator-content': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
@@ -2595,45 +2597,45 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2595
2597
|
'x-read-pretty': import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
2596
2598
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2597
2599
|
SchemaNumberField: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2598
|
-
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2599
|
-
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey>;
|
|
2600
|
-
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2601
|
-
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2600
|
+
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2601
|
+
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey | undefined>;
|
|
2602
|
+
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2603
|
+
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2602
2604
|
default: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2603
2605
|
readOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
2604
2606
|
writeOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
2605
|
-
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string
|
|
2607
|
+
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string> | undefined>;
|
|
2606
2608
|
const: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2607
|
-
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2608
|
-
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2609
|
-
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2610
|
-
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2611
|
-
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2612
|
-
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2613
|
-
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2614
|
-
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {})>;
|
|
2615
|
-
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2616
|
-
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2609
|
+
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2610
|
+
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2611
|
+
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2612
|
+
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2613
|
+
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2614
|
+
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2615
|
+
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2616
|
+
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {}) | undefined>;
|
|
2617
|
+
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2618
|
+
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2617
2619
|
uniqueItems: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
2618
|
-
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2619
|
-
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2620
|
-
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[]>;
|
|
2621
|
-
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2622
|
-
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2623
|
-
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2620
|
+
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2621
|
+
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2622
|
+
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[] | undefined>;
|
|
2623
|
+
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2624
|
+
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
2625
|
+
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
2624
2626
|
additionalItems: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
2625
2627
|
[key: symbol]: any;
|
|
2626
2628
|
[key: `x-${string}`]: any;
|
|
2627
2629
|
[key: `x-${number}`]: any;
|
|
2628
2630
|
version?: string;
|
|
2629
2631
|
name?: import('@formily/json-schema').SchemaKey;
|
|
2630
|
-
title?: string;
|
|
2631
|
-
description?: string;
|
|
2632
|
+
title?: string | undefined;
|
|
2633
|
+
description?: string | undefined;
|
|
2632
2634
|
default?: any;
|
|
2633
2635
|
readOnly?: boolean;
|
|
2634
2636
|
writeOnly?: boolean;
|
|
2635
2637
|
type?: SchemaTypes;
|
|
2636
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
2638
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
2637
2639
|
const?: any;
|
|
2638
2640
|
multipleOf?: number;
|
|
2639
2641
|
maximum?: number;
|
|
@@ -2652,22 +2654,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2652
2654
|
format?: string;
|
|
2653
2655
|
$ref?: string;
|
|
2654
2656
|
$namespace?: string;
|
|
2655
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2656
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2657
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2658
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2659
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2660
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2657
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2658
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2659
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2660
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2661
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2662
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2661
2663
|
"x-value"?: any;
|
|
2662
2664
|
"x-index"?: number;
|
|
2663
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
2664
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
2665
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
2666
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2667
|
-
"x-decorator-props"?: Record<string, unknown
|
|
2668
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2669
|
-
"x-component-props"?: Record<string, unknown
|
|
2670
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
2665
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
2666
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
2667
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
2668
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2669
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
2670
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2671
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
2672
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
2671
2673
|
"x-content"?: any;
|
|
2672
2674
|
"x-data"?: any;
|
|
2673
2675
|
"x-visible"?: boolean;
|
|
@@ -2677,21 +2679,21 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2677
2679
|
"x-read-only"?: boolean;
|
|
2678
2680
|
"x-read-pretty"?: boolean;
|
|
2679
2681
|
"x-compile-omitted"?: string[];
|
|
2680
|
-
}
|
|
2681
|
-
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2682
|
+
}> | undefined>;
|
|
2683
|
+
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
2682
2684
|
additionalProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
2683
2685
|
[key: symbol]: any;
|
|
2684
2686
|
[key: `x-${string}`]: any;
|
|
2685
2687
|
[key: `x-${number}`]: any;
|
|
2686
2688
|
version?: string;
|
|
2687
2689
|
name?: import('@formily/json-schema').SchemaKey;
|
|
2688
|
-
title?: string;
|
|
2689
|
-
description?: string;
|
|
2690
|
+
title?: string | undefined;
|
|
2691
|
+
description?: string | undefined;
|
|
2690
2692
|
default?: any;
|
|
2691
2693
|
readOnly?: boolean;
|
|
2692
2694
|
writeOnly?: boolean;
|
|
2693
2695
|
type?: SchemaTypes;
|
|
2694
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
2696
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
2695
2697
|
const?: any;
|
|
2696
2698
|
multipleOf?: number;
|
|
2697
2699
|
maximum?: number;
|
|
@@ -2710,22 +2712,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2710
2712
|
format?: string;
|
|
2711
2713
|
$ref?: string;
|
|
2712
2714
|
$namespace?: string;
|
|
2713
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2714
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2715
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2716
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2717
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2718
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2715
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2716
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2717
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2718
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2719
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2720
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2719
2721
|
"x-value"?: any;
|
|
2720
2722
|
"x-index"?: number;
|
|
2721
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
2722
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
2723
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
2724
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2725
|
-
"x-decorator-props"?: Record<string, unknown
|
|
2726
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2727
|
-
"x-component-props"?: Record<string, unknown
|
|
2728
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
2723
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
2724
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
2725
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
2726
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2727
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
2728
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2729
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
2730
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
2729
2731
|
"x-content"?: any;
|
|
2730
2732
|
"x-data"?: any;
|
|
2731
2733
|
"x-visible"?: boolean;
|
|
@@ -2735,11 +2737,11 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2735
2737
|
"x-read-only"?: boolean;
|
|
2736
2738
|
"x-read-pretty"?: boolean;
|
|
2737
2739
|
"x-compile-omitted"?: string[];
|
|
2738
|
-
}
|
|
2740
|
+
}> | undefined>;
|
|
2739
2741
|
'x-index': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2740
2742
|
'x-pattern': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2741
2743
|
'x-display': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2742
|
-
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator>;
|
|
2744
|
+
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator | undefined>;
|
|
2743
2745
|
'x-decorator': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2744
2746
|
'x-decorator-props': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2745
2747
|
'x-decorator-content': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
@@ -2756,45 +2758,45 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2756
2758
|
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2757
2759
|
[key: string]: any;
|
|
2758
2760
|
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
2759
|
-
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2760
|
-
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey>;
|
|
2761
|
-
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2762
|
-
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2761
|
+
version: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2762
|
+
name: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaKey | undefined>;
|
|
2763
|
+
title: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2764
|
+
description: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2763
2765
|
default: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2764
2766
|
readOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
2765
2767
|
writeOnly: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
2766
|
-
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string
|
|
2768
|
+
enum: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaEnum<string> | undefined>;
|
|
2767
2769
|
const: import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2768
|
-
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2769
|
-
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2770
|
-
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2771
|
-
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2772
|
-
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2773
|
-
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2774
|
-
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2775
|
-
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {})>;
|
|
2776
|
-
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2777
|
-
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2770
|
+
multipleOf: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2771
|
+
maximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2772
|
+
exclusiveMaximum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2773
|
+
minimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2774
|
+
exclusiveMinimum: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2775
|
+
maxLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2776
|
+
minLength: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2777
|
+
pattern: import('../utils/runtimeProps').RuntimeProp<string | RegExp | (string & {}) | undefined>;
|
|
2778
|
+
maxItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2779
|
+
minItems: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2778
2780
|
uniqueItems: import('../utils/runtimeProps').RuntimeProp<boolean>;
|
|
2779
|
-
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2780
|
-
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {})>;
|
|
2781
|
-
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[]>;
|
|
2782
|
-
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {})>;
|
|
2783
|
-
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2784
|
-
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2781
|
+
maxProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2782
|
+
minProperties: import('../utils/runtimeProps').RuntimeProp<number | (string & {}) | undefined>;
|
|
2783
|
+
required: import('../utils/runtimeProps').RuntimeProp<string | boolean | (string & {}) | string[] | undefined>;
|
|
2784
|
+
format: import('../utils/runtimeProps').RuntimeProp<string | (string & {}) | undefined>;
|
|
2785
|
+
properties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
2786
|
+
items: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
2785
2787
|
additionalItems: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
2786
2788
|
[key: symbol]: any;
|
|
2787
2789
|
[key: `x-${string}`]: any;
|
|
2788
2790
|
[key: `x-${number}`]: any;
|
|
2789
2791
|
version?: string;
|
|
2790
2792
|
name?: import('@formily/json-schema').SchemaKey;
|
|
2791
|
-
title?: string;
|
|
2792
|
-
description?: string;
|
|
2793
|
+
title?: string | undefined;
|
|
2794
|
+
description?: string | undefined;
|
|
2793
2795
|
default?: any;
|
|
2794
2796
|
readOnly?: boolean;
|
|
2795
2797
|
writeOnly?: boolean;
|
|
2796
2798
|
type?: SchemaTypes;
|
|
2797
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
2799
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
2798
2800
|
const?: any;
|
|
2799
2801
|
multipleOf?: number;
|
|
2800
2802
|
maximum?: number;
|
|
@@ -2813,22 +2815,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2813
2815
|
format?: string;
|
|
2814
2816
|
$ref?: string;
|
|
2815
2817
|
$namespace?: string;
|
|
2816
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2817
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2818
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2819
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2820
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2821
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2818
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2819
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2820
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2821
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2822
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2823
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2822
2824
|
"x-value"?: any;
|
|
2823
2825
|
"x-index"?: number;
|
|
2824
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
2825
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
2826
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
2827
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2828
|
-
"x-decorator-props"?: Record<string, unknown
|
|
2829
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2830
|
-
"x-component-props"?: Record<string, unknown
|
|
2831
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
2826
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
2827
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
2828
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
2829
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2830
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
2831
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2832
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
2833
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
2832
2834
|
"x-content"?: any;
|
|
2833
2835
|
"x-data"?: any;
|
|
2834
2836
|
"x-visible"?: boolean;
|
|
@@ -2838,21 +2840,21 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2838
2840
|
"x-read-only"?: boolean;
|
|
2839
2841
|
"x-read-pretty"?: boolean;
|
|
2840
2842
|
"x-compile-omitted"?: string[];
|
|
2841
|
-
}
|
|
2842
|
-
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2843
|
+
}> | undefined>;
|
|
2844
|
+
patternProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined>;
|
|
2843
2845
|
additionalProperties: import('../utils/runtimeProps').RuntimeProp<(string & {}) | import('@formily/json-schema').Stringify<{
|
|
2844
2846
|
[key: symbol]: any;
|
|
2845
2847
|
[key: `x-${string}`]: any;
|
|
2846
2848
|
[key: `x-${number}`]: any;
|
|
2847
2849
|
version?: string;
|
|
2848
2850
|
name?: import('@formily/json-schema').SchemaKey;
|
|
2849
|
-
title?: string;
|
|
2850
|
-
description?: string;
|
|
2851
|
+
title?: string | undefined;
|
|
2852
|
+
description?: string | undefined;
|
|
2851
2853
|
default?: any;
|
|
2852
2854
|
readOnly?: boolean;
|
|
2853
2855
|
writeOnly?: boolean;
|
|
2854
2856
|
type?: SchemaTypes;
|
|
2855
|
-
enum?: import('@formily/json-schema').SchemaEnum<string
|
|
2857
|
+
enum?: import('@formily/json-schema').SchemaEnum<string> | undefined;
|
|
2856
2858
|
const?: any;
|
|
2857
2859
|
multipleOf?: number;
|
|
2858
2860
|
maximum?: number;
|
|
@@ -2871,22 +2873,22 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2871
2873
|
format?: string;
|
|
2872
2874
|
$ref?: string;
|
|
2873
2875
|
$namespace?: string;
|
|
2874
|
-
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2875
|
-
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2876
|
-
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2877
|
-
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2878
|
-
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string
|
|
2879
|
-
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any
|
|
2876
|
+
definitions?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2877
|
+
properties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2878
|
+
items?: import('@formily/json-schema').SchemaItems<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2879
|
+
additionalItems?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2880
|
+
patternProperties?: import('@formily/json-schema').SchemaProperties<string, string, Record<string, unknown>, Record<string, unknown>, import('@formily/core').FormPatternTypes, import('@formily/core').FieldDisplayTypes, import('..').SchemaFieldValidator, string> | undefined;
|
|
2881
|
+
additionalProperties?: import('@formily/json-schema').Stringify</*elided*/ any> | undefined;
|
|
2880
2882
|
"x-value"?: any;
|
|
2881
2883
|
"x-index"?: number;
|
|
2882
|
-
"x-pattern"?: import('@formily/core').FormPatternTypes;
|
|
2883
|
-
"x-display"?: import('@formily/core').FieldDisplayTypes;
|
|
2884
|
-
"x-validator"?: import('..').SchemaFieldValidator;
|
|
2885
|
-
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2886
|
-
"x-decorator-props"?: Record<string, unknown
|
|
2887
|
-
"x-component"?: string | (string & {}) | ((...args: any[]) => any);
|
|
2888
|
-
"x-component-props"?: Record<string, unknown
|
|
2889
|
-
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any
|
|
2884
|
+
"x-pattern"?: import('@formily/core').FormPatternTypes | undefined;
|
|
2885
|
+
"x-display"?: import('@formily/core').FieldDisplayTypes | undefined;
|
|
2886
|
+
"x-validator"?: import('..').SchemaFieldValidator | undefined;
|
|
2887
|
+
"x-decorator"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2888
|
+
"x-decorator-props"?: Record<string, unknown> | undefined;
|
|
2889
|
+
"x-component"?: string | (string & {}) | ((...args: any[]) => any) | undefined;
|
|
2890
|
+
"x-component-props"?: Record<string, unknown> | undefined;
|
|
2891
|
+
"x-reactions"?: import('@formily/json-schema').SchemaReactions<any> | undefined;
|
|
2890
2892
|
"x-content"?: any;
|
|
2891
2893
|
"x-data"?: any;
|
|
2892
2894
|
"x-visible"?: boolean;
|
|
@@ -2896,11 +2898,11 @@ export declare function createSchemaField<Components extends SchemaVueComponents
|
|
|
2896
2898
|
"x-read-only"?: boolean;
|
|
2897
2899
|
"x-read-pretty"?: boolean;
|
|
2898
2900
|
"x-compile-omitted"?: string[];
|
|
2899
|
-
}
|
|
2901
|
+
}> | undefined>;
|
|
2900
2902
|
'x-index': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2901
2903
|
'x-pattern': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2902
2904
|
'x-display': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2903
|
-
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator>;
|
|
2905
|
+
'x-validator': import('../utils/runtimeProps').RuntimeProp<import('..').SchemaFieldValidator | undefined>;
|
|
2904
2906
|
'x-decorator': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2905
2907
|
'x-decorator-props': import('../utils/runtimeProps').RuntimeProp<any>;
|
|
2906
2908
|
'x-decorator-content': import('../utils/runtimeProps').RuntimeProp<any>;
|