File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -8,5 +8,6 @@ export * from "./state/module";
8
8
export * from "./transition/module" ;
9
9
export * from "./url/module" ;
10
10
export * from "./view/module" ;
11
+ export * from "./globals" ;
11
12
12
13
export { UIRouter } from "./router" ;
Original file line number Diff line number Diff line change @@ -91,17 +91,16 @@ export interface ParentUiViewInject {
91
91
// <div style="padding: 1em; border: 1px solid lightgrey;">
92
92
//
93
93
// <div #content style="color: lightgrey; font-size: smaller;">
94
- // <div>ui-view #{{uiViewData.id}} created by '{{ parentContext.name || "(root)" }}' state</div>
95
- // <div>name: (absolute) '{{uiViewData.fqn}}' (contextual) '{{uiViewData.name}}@{{parentContext.name}}' </div>
96
- // <div>currently filled by: '{{(uiViewData.config && uiViewData.config.viewDecl.$context) || 'empty...'}}'</div>
94
+ // <div>ui-view #{{uiViewData? .id}} created by '{{ parentContext? .name || "(root)" }}' state</div>
95
+ // <div>name: (absolute) '{{uiViewData? .fqn}}' (contextual) '{{uiViewData? .name}}@{{parentContext? .name}}' </div>
96
+ // <div>currently filled by: '{{(uiViewData? .config && uiViewData? .config? .viewDecl? .$context) || 'empty...'}}'</div>
97
97
// </div>
98
98
//
99
99
// </div>`
100
100
} )
101
101
export class UiView {
102
102
@Input ( ) name : string ;
103
- @Input ( ) set 'ui-view' ( val ) { this . name = val ; }
104
-
103
+ @Input ( 'ui-view' ) set _name ( val ) { this . name = val ; }
105
104
componentRef : ComponentRef ;
106
105
deregister : Function ;
107
106
uiViewData : any = { } ;
You can’t perform that action at this time.
0 commit comments