@datadayrepos/json-schema-types 0.0.3 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/internalScema.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export type { ExtendedJson7, JSONSchema7TypeName, JSONSchema7Type, JSONSchema7Object, JSONSchema7Array, JSONSchema7Version, JSONSchema7Definition, JSONSchema7, } from './jsonSchema';
|
|
2
|
-
export type { GenericObjectType, ABYSchema, ABYAllSchemaPackage, ABYSchemaDefinition, ABYSchemaTypeName, ABYSchemaType, FieldsMap, UISpec, WidgetNames, UISchema, UISchemaDetail, ErrSchema, FormMeta, FormConfig, } from './internalScema';
|
|
2
|
+
export type { GenericObjectType, ABYSchema, ABYAllSchemaPackage, ABYSchemaDefinition, ABYSchemaTypeName, ABYSchemaType, FieldsMap, UISpec, WidgetNames, UISchema, UISchemaDetail, ErrSchema, FormMeta, FormProps, FormConfig, } from './internalScema';
|
package/dist/internalScema.d.ts
CHANGED
|
@@ -127,7 +127,7 @@ export type UISchemaDetail = {
|
|
|
127
127
|
'ui:disabled'?: string;
|
|
128
128
|
'ui:order'?: string[];
|
|
129
129
|
'ui:placeholder'?: string;
|
|
130
|
-
[uiProp: string]: any;
|
|
130
|
+
[uiProp: `ui:${string}`]: any;
|
|
131
131
|
};
|
|
132
132
|
export type ErrSchema = {
|
|
133
133
|
[key: string]: ErrSchemaDetail;
|
|
@@ -138,7 +138,7 @@ export type ErrSchemaDetail = {
|
|
|
138
138
|
};
|
|
139
139
|
'err:required'?: boolean;
|
|
140
140
|
'err:unique'?: string;
|
|
141
|
-
[errProp: string]: any;
|
|
141
|
+
[errProp: `err:${string}`]: any;
|
|
142
142
|
};
|
|
143
143
|
/** ********************** FormConfig */
|
|
144
144
|
export type FormConfig = {
|