Variable: RBooleanFieldValue
ts
const RBooleanFieldValue: readonly [true, false, null];Supported boolean field values representing ternary logic when null is included. Includes true/false for standard boolean states plus optional null for indeterminate/unknown/mixed state. Can be configured as strict boolean field (true/false only) or ternary field (true/false/null) depending on use case.
Example
typescript
// Ternary logic with all three states
const ternaryChoices: RBooleanFieldValue[] = [true, false, null];
// Boolean logic only (no indeterminate)
const booleanChoices: RBooleanFieldValue[] = [true, false];
// Permission states (ternary example)
const permission: RBooleanFieldValue = null; // "Inherited"
// Setting state (boolean example)
const darkMode: RBooleanFieldValue = true; // "Enabled"