69
69
<ImportExample @item ={{ @model.name }} @package ={{ this.module }} />
70
70
{{ /if }}
71
71
<p class =" description" >{{ html-safe @model.description }} </p >
72
-
73
- {{ #if (or @model.methods @model.properties @model.events )}}
72
+ <hr >
73
+ {{ #if @model.methods }}
74
+ <h2 >Methods</h2 >
75
+ <Methods @model ={{ @model }} @filterData ={{ this.filterData }} />
76
+ {{ /if }}
77
+ {{ #if @model.properties }}
78
+ <h2 >Properties</h2 >
79
+ <Properties @model ={{ @model }} @filterData ={{ this.filterData }} />
80
+ {{ /if }}
81
+ {{ #if @model.events }}
82
+ <h2 >Events</h2 >
83
+ <Events @model ={{ @model }} @filterData ={{ this.filterData }} />
84
+ {{ /if }}
85
+ </article >
86
+ <div class =" on-this-page-wrapper" >
87
+ <div class =" on-this-page-wrapper-header" >On this page</div >
88
+ <hr >
89
+ {{ #if (or @model.methods @model.properties @model.events )}}
74
90
<div class =" tabbed-layout" >
75
- <nav class =" tabbed-layout__menu" >
76
- <LinkTo @route ={{ concat this.parentName " .index" }} @models ={{ array @model.project.id @model.projectVersion.compactVersion @model.name }} @query ={{ hash anchor =undefined }} class =" tabbed-layout__menu__item" @activeClass =" tabbed-layout__menu__item_selected" @current-when ={{ concat this.parentName " .index" }} data-test-tab =" index" >
77
- <span >Index</span >
78
- </LinkTo >
79
- {{ #if @model.methods }}
80
- <LinkTo @route ={{ concat this.parentName " .methods" }} @models ={{ array @model.project.id @model.projectVersion.compactVersion @model.name }} @query ={{ hash anchor =undefined }} class =" tabbed-layout__menu__item" @activeClass =" tabbed-layout__menu__item_selected" @current-when ={{ concat this.parentName " .methods" }} data-test-tab =" methods" >
81
- <span >Methods</span >
82
- </LinkTo >
83
- {{ /if }}
84
- {{ #if @model.properties }}
85
- <LinkTo @route ={{ concat this.parentName " .properties" }} @models ={{ array @model.project.id @model.projectVersion.compactVersion @model.name }} @query ={{ hash anchor =undefined }} class =" tabbed-layout__menu__item" @activeClass =" tabbed-layout__menu__item_selected" @current-when ={{ concat this.parentName " .properties" }} data-test-tab =" properties" >
86
- <span >Properties</span >
87
- </LinkTo >
88
- {{ /if }}
89
- {{ #if @model.events }}
90
- <LinkTo @route ={{ concat this.parentName " .events" }} @models ={{ array @model.project.id @model.projectVersion.compactVersion @model.name }} @query ={{ hash anchor =undefined }} class =" tabbed-layout__menu__item" @activeClass =" tabbed-layout__menu__item_selected" @current-when ={{ concat this.parentName " .events" }} data-test-tab =" events" >
91
- <span >Events</span >
92
- </LinkTo >
93
- {{ /if }}
94
- </nav >
95
- <section >
96
- Show:
91
+ <section class =" access-checkbox-list" >
97
92
<label class =" access-checkbox" >
98
93
<input id =" inherited-toggle"
99
94
data-test-checkbox =" inherited"
128
123
</label >
129
124
</section >
130
125
<hr >
131
- {{ outlet }}
132
126
</div >
127
+ {{ outlet }}
133
128
{{ /if }}
134
-
135
- </article >
129
+ </div >
0 commit comments