Files
sign/packages/ui/primitives/document-flow/field-items-advanced-settings/constants.ts

32 lines
617 B
TypeScript
Raw Normal View History

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: '<=',
},
];