Files
documenso/packages/ui/primitives/document-flow/field-items-advanced-settings/constants.ts
Catalin Pit 7b5c57e8af chore: add more field types (#1141)
Adds a number of new field types and capabilities to existing fields.

A massive change with far too many moving pieces to document in a single commit.
2024-07-18 23:45:44 +10:00

32 lines
617 B
TypeScript

export const numberFormatValues = [
{
label: '123,456,789.00',
value: '123,456,789.00',
},
{
label: '123.456.789,00',
value: '123.456.789,00',
},
{
label: '123456,789.00',
value: '123456,789.00',
},
];
export const checkboxValidationRules = ['Select at least', 'Select exactly', 'Select at most'];
export const checkboxValidationLength = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
export const checkboxValidationSigns = [
{
label: 'Select at least',
value: '>=',
},
{
label: 'Select exactly',
value: '=',
},
{
label: 'Select at most',
value: '<=',
},
];