File tree Expand file tree Collapse file tree 3 files changed +13
-13
lines changed
projects/igniteui-angular/src/lib Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
1
< div class ="igx-splitter-bar "
2
- [class.igx-splitter-bar--vertical] =' type === 0 '
3
- [style.cursor] =' cursor '
2
+ [class.igx-splitter-bar--vertical] =" type === 0 "
3
+ [style.cursor] =" cursor "
4
4
igxDrag
5
5
[ghost] ="false "
6
- [dragDirection] =' dragDir '
7
- (dragStart) =' onDragStart($event) '
6
+ [dragDirection] =" dragDir "
7
+ (dragStart) =" onDragStart($event) "
8
8
(dragMove) ="onDragMove($event) "
9
9
(dragEnd) ="onDragEnd($event) "
10
10
>
11
- < div class ="igx-splitter-bar__expander--start " igxDragIgnore (click) =' onCollapsing(false) ' [hidden] =' prevButtonHidden ' > </ div >
11
+ < div class ="igx-splitter-bar__expander--start " igxDragIgnore (click) =" onCollapsing(false) " [hidden] =" prevButtonHidden " > </ div >
12
12
< div class ="igx-splitter-bar__handle " > </ div >
13
- < div class ="igx-splitter-bar__expander--end " igxDragIgnore (click) =' onCollapsing(true) ' [hidden] =' nextButtonHidden ' > </ div >
13
+ < div class ="igx-splitter-bar__expander--end " igxDragIgnore (click) =" onCollapsing(true) " [hidden] =" nextButtonHidden " > </ div >
14
14
</ div >
Original file line number Diff line number Diff line change 1
1
< ng-content select ="igx-splitter-pane "> </ ng-content >
2
2
< ng-container *ngFor ="let pane of panes; let last = last; let index= index; ">
3
- < igx-splitter-bar *ngIf ="!last " [order] =' pane.order + 1 ' role =' separator '
3
+ < igx-splitter-bar *ngIf ="!last " [order] =" pane.order + 1 " role =" separator "
4
4
[type] ="type "
5
5
[pane] ="pane "
6
- [siblings] =' getPaneSiblingsByOrder(pane.order + 1, index) '
6
+ [siblings] =" getPaneSiblingsByOrder(pane.order + 1, index) "
7
7
(moveStart) ="onMoveStart($event) "
8
8
(moving) ="onMoving($event) "
9
- (movingEnd) =' onMoveEnd($event) ' >
9
+ (movingEnd) =" onMoveEnd($event) " >
10
10
</ igx-splitter-bar >
11
11
</ ng-container >
Original file line number Diff line number Diff line change 1
1
< ng-template #defaultTitle >
2
- < ng-content *ngIf ="isTitleVisible " select =' [igxStepTitle] ' > </ ng-content >
3
- < ng-content *ngIf ="isTitleVisible " select =' [igxStepSubtitle] ' > </ ng-content >
2
+ < ng-content *ngIf ="isTitleVisible " select =" [igxStepTitle] " > </ ng-content >
3
+ < ng-content *ngIf ="isTitleVisible " select =" [igxStepSubtitle] " > </ ng-content >
4
4
</ ng-template >
5
5
6
6
< ng-template #contentTemplate >
7
7
< div [ngClass] ="contentClasses " #contentContainer >
8
- < ng-content *ngIf ="active || collapsing " select =' [igxStepContent] ' > </ ng-content >
8
+ < ng-content *ngIf ="active || collapsing " select =" [igxStepContent] " > </ ng-content >
9
9
</ div >
10
10
</ ng-template >
11
11
14
14
</ ng-template >
15
15
16
16
< ng-template #customIndicator >
17
- < ng-content select =' [igxStepIndicator] ' > </ ng-content >
17
+ < ng-content select =" [igxStepIndicator] " > </ ng-content >
18
18
</ ng-template >
19
19
20
20
< div class ="igx-stepper__step-header " igxRipple [ngClass] ="stepHeaderClasses " (keydown) ="handleKeydown($event) "
You can’t perform that action at this time.
0 commit comments