Merge branch 'main' into next

This commit is contained in:
katherinehhh 2024-10-18 15:39:52 +08:00
commit bc0de80479
3 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ export class IdFieldInterface extends CollectionFieldInterface {
'x-read-pretty': true, 'x-read-pretty': true,
}, },
}; };
availableTypes = ['bigInt', 'integer', 'string']; availableTypes = ['bigInt', 'integer'];
properties = { properties = {
'uiSchema.title': { 'uiSchema.title': {
type: 'string', type: 'string',

View File

@ -24,7 +24,7 @@ export class NanoidFieldInterface extends CollectionFieldInterface {
'x-component': 'NanoIDInput', 'x-component': 'NanoIDInput',
}, },
}; };
availableTypes = ['string', 'nanoid']; availableTypes = ['nanoid'];
properties = { properties = {
'uiSchema.title': { 'uiSchema.title': {
type: 'string', type: 'string',

View File

@ -26,7 +26,7 @@ export class UUIDFieldInterface extends CollectionFieldInterface {
'x-validator': 'uuid', 'x-validator': 'uuid',
}, },
}; };
availableTypes = ['string', 'uuid']; availableTypes = ['uid', 'uuid'];
properties = { properties = {
'uiSchema.title': { 'uiSchema.title': {
type: 'string', type: 'string',