mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
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.
32 lines
617 B
TypeScript
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: '<=',
|
|
},
|
|
];
|