6
6
transitionDuration =options.transitionDuration
7
7
open =modalIsOpened
8
8
onSubmit = (action " confirm" )
9
- onHide = (action " decline" ) as | modal |
10
- }}
9
+ onHide = (action " decline" )
10
+ as | modal | }}
11
11
{{ #modal.header }}
12
12
{{ #if options.titleComponent }}
13
13
{{ component
14
14
options.titleComponent
15
- options =options
16
- }}
15
+ options =options }}
17
16
{{ else }}
18
17
{{ #bs-modal/header/title title =options.title }} {{ options.title }} {{ /bs-modal/header/title }}
19
18
{{ /if }}
23
22
{{ component
24
23
options.bodyComponent
25
24
options =options
26
- updatePromptValue = (action " updatePromptValue" )
27
- }}
25
+ updatePromptValue = (action " updatePromptValue" )}}
28
26
{{ else }}
27
+ {{! template-lint-disable attribute-indentation }}
29
28
<p >{{ options.body }} </p >
30
- {{ #bs-form model =this onSubmit = (action " confirm" ) as |form |}}
31
- {{ form.element property =" promptValue" label =options.inputLabel }}
29
+ {{ #bs-form
30
+ model =this
31
+ onSubmit = (action " confirm" )
32
+ as |form |}}
33
+ {{ form.element
34
+ property =" promptValue"
35
+ label =options.inputLabel }}
32
36
{{ /bs-form }}
33
37
{{ /if }}
34
38
{{ /modal.body }}
39
43
options =options
40
44
confirmDisabled =confirmDisabled
41
45
confirm = (action modal.submit )
42
- decline = (action modal.close )
43
- }}
46
+ decline = (action modal.close )}}
44
47
{{ else }}
45
48
<p >{{ options.footer }} </p >
46
49
{{ bs-button
50
53
iconActive =options.declineIconActive
51
54
iconInactive =options.declineIconInactive
52
55
size =options.declineButtonSize
53
- onClick = (action modal.close )
54
- }}
56
+ onClick = (action modal.close )}}
55
57
{{ bs-button
56
58
type =options.confirmButtonType
57
59
defaultText =options.confirm
60
62
iconActive =options.confirmIconActive
61
63
iconInactive =options.confirmIconInactive
62
64
size =options.confirmButtonSize
63
- onClick = (action modal.submit )
64
- }}
65
+ onClick = (action modal.submit )}}
65
66
{{ /if }}
66
67
{{ /modal.footer }}
67
68
{{ /bs-modal }}
0 commit comments