diff --git a/src/app/options/options.component.html b/src/app/options/options.component.html
index 162613b1..fcca49ec 100644
--- a/src/app/options/options.component.html
+++ b/src/app/options/options.component.html
@@ -75,13 +75,13 @@
@if (ex._validation) {
}
} @else {
`,
+ code: ``,
id: 3,
anchor: 'Dsep',
},
-
{
header: 'Comma separator',
text: `For separate input with commas`,
- code: ``,
+ code: ``,
id: 4,
anchor: 'comma_sep',
},
+ {
+ header: 'Zero separator',
+ text: 'You can divide your input by thousands',
+ code: ``,
+ id: 5,
+ anchor: 'sep0',
+ },
];
export const SepExamples: TExample[] = [
@@ -52,7 +58,6 @@ export const SepExamples: TExample[] = [
_decimalMarker: ',',
control: { form: new UntypedFormControl(''), model: '' },
},
-
{
_placeholder: 'separator',
_mask: 'separator',
@@ -60,4 +65,9 @@ export const SepExamples: TExample[] = [
_decimalMarker: '.',
control: { form: new UntypedFormControl(''), model: '' },
},
+ {
+ _placeholder: 'separator.0',
+ _mask: 'separator.0',
+ control: { form: new UntypedFormControl(''), model: '' },
+ },
];