Interface: BooleanProperty
Hierarchy​
BaseProperty
<boolean
>↳
BooleanProperty
Properties​
Field​
• Optional
Field: ComponentType
<FieldProps
<boolean
, any
, any
>>
If you need to render a custom field, you can create a component that
takes FieldProps
as props. You receive the value, a function to
update the value and additional utility props such as if there is an error.
You can customize it by passing custom props that are received
in the component.
Inherited from​
Defined in​
packages/firecms/src/types/properties.ts:133
Preview​
• Optional
Preview: ComponentType
<PropertyPreviewProps
<boolean
, any
, Record
<string
, any
>>>
Configure how a property is displayed as a preview, e.g. in the collection view. You can customize it by passing custom props that are received in the component.
Inherited from​
Defined in​
packages/firecms/src/types/properties.ts:140
columnWidth​
• Optional
columnWidth: number
Width in pixels of this column in the collection view. If not set the width is inferred based on the other configurations
Inherited from​
Defined in​
packages/firecms/src/types/properties.ts:99
customProps​
• Optional
customProps: any
Additional props that are passed to the components defined in field
or in preview
.
Inherited from​
Defined in​
packages/firecms/src/types/properties.ts:146
dataType​
• dataType: "boolean"
Datatype of the property
Overrides​
Defined in​
packages/firecms/src/types/properties.ts:323
defaultValue​
• Optional
defaultValue: boolean
This value will be set by default for new entities.
Inherited from​
Defined in​
packages/firecms/src/types/properties.ts:151
description​
• Optional
description: string
Property description, always displayed under the field
Inherited from​
Defined in​
packages/firecms/src/types/properties.ts:80
disabled​
• Optional
disabled: boolean
| PropertyDisabledConfig
Is this field disabled. When set to true, it gets rendered as a disabled field. You can also specify a configuration for defining the behaviour of disabled properties (including custom messages, clear value on disabled or hide the field completely)
Inherited from​
Defined in​
packages/firecms/src/types/properties.ts:119
fieldConfig​
• Optional
fieldConfig: string
You can use this prop to reuse a property that has been defined
in the top level of the CMS in the prop fields
.
All the configuration will be taken from the inherited config, and
overwritten by the current property config.
Inherited from​
Defined in​
packages/firecms/src/types/properties.ts:88
hideFromCollection​
• Optional
hideFromCollection: boolean
Do not show this property in the collection view
Inherited from​
BaseProperty.hideFromCollection
Defined in​
packages/firecms/src/types/properties.ts:104
longDescription​
• Optional
longDescription: string
Longer description of a field, displayed under a popover
Inherited from​
Defined in​
packages/firecms/src/types/properties.ts:93
name​
• Optional
name: string
Property name (e.g. Product)
Inherited from​
Defined in​
packages/firecms/src/types/properties.ts:75
readOnly​
• Optional
readOnly: boolean
Is this a read only property. When set to true, it gets rendered as a preview.
Inherited from​
Defined in​
packages/firecms/src/types/properties.ts:110
validation​
• Optional
validation: PropertyValidationSchema
Rules for validating this property