You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/app/doc/parts/options/options.component.ts
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -19,25 +19,25 @@ export class OptionsComponent implements OnInit {
19
19
name: 'closable',
20
20
type: 'boolean',
21
21
defaultValue: 'true',
22
-
description: 'Show / hide the cross icon at the top right corner of the modal'
22
+
description: 'Show / hide the cross icon at the top right corner of the modal.'
23
23
},
24
24
{
25
25
name: 'escapable',
26
26
type: 'boolean',
27
27
defaultValue: 'true',
28
-
description: 'Enable / disable the modal for listening to the escape keypress event (if pressed and this option is set to true, it will close the current opened modal or the latest opened if you have several modals opened at the same time). ⚠️ NOT RECOMMANDED for accessibility reasons.'
28
+
description: 'Enable / disable the modal for listening to the escape keypress event (if pressed and this option is set to true, it will close the current opened modal or the latest opened if you have several modals opened at the same time). ⚠️ NOT RECOMMENDED for accessibility reasons.'
29
29
},
30
30
{
31
31
name: 'dismissable',
32
32
type: 'boolean',
33
33
defaultValue: 'true',
34
-
description: 'Enable / disable the modal backdrop for listening to the click event (if backdrop is clicked and this option is set to true, it will close the current opened modal or the latest opened if you have several modals opened at the same time)'
34
+
description: 'Enable / disable the modal backdrop for listening to the click event (if backdrop is clicked and this option is set to true, it will close the current opened modal or the latest opened if you have several modals opened at the same time).'
35
35
},
36
36
{
37
37
name: 'identifier',
38
38
type: 'string',
39
39
defaultValue: 'undefined',
40
-
description: 'REQUIRED ― The identifiant of the modal instance. Retrieve a modal easily by its identifier'
40
+
description: 'REQUIRED ― The identifier of the modal instance. Retrieve a modal easily by its identifier.'
41
41
},
42
42
{
43
43
name: 'force',
@@ -49,7 +49,7 @@ export class OptionsComponent implements OnInit {
49
49
name: 'customClass',
50
50
type: 'string',
51
51
defaultValue: "'nsm-dialog-animation-fade'",
52
-
description: 'All the additionnal classes you want to add to the modal (e.g.: any bootstrap modal class). You can add several classes by giving a string with space-separated class names'
52
+
description: 'All the additionnal classes you want to add to the modal (e.g.: any bootstrap modal class). You can add several classes by giving a string with space-separated class names.'
53
53
},
54
54
{
55
55
name: 'backdrop',
@@ -79,19 +79,19 @@ export class OptionsComponent implements OnInit {
79
79
name: 'ariaLabel',
80
80
type: 'string',
81
81
defaultValue: 'undefined',
82
-
description: 'Define a accessible title for your modal.'
82
+
description: 'Define an accessible title for your modal.'
83
83
},
84
84
{
85
85
name: 'ariaLabelledBy',
86
86
type: 'string',
87
87
defaultValue: 'undefined',
88
-
description: 'Define a accessible title for your modal. Enter the id of your title content.'
88
+
description: 'Define an accessible title for your modal. Enter the id of your title content.'
89
89
},
90
90
{
91
91
name: 'ariaDescribedBy',
92
92
type: 'string',
93
93
defaultValue: 'undefined',
94
-
description: 'Define a accessible description for your modal. Enter the id of your description content.'
94
+
description: 'Define an accessible description for your modal. Enter the id of your description content.'
0 commit comments