File tree Expand file tree Collapse file tree 4 files changed +14
-6
lines changed Expand file tree Collapse file tree 4 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 1
1
node_modules
2
2
src /* .js
3
3
src /* .js.map
4
+ /compiled
5
+ * .metadata.json
6
+ * .map.js
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " angular-2-dropdown-multiselect" ,
3
- "version" : " 1.0.5 " ,
3
+ "version" : " 1.0.6 " ,
4
4
"description" : " Customizable dropdown multiselect in Angular 2 with bootstrap css." ,
5
5
"main" : " src/multiselect-dropdown.ts" ,
6
6
"repository" : {
23
23
"devDependencies" : {
24
24
"@angular/common" : " ^4.0.0" ,
25
25
"@angular/compiler" : " ^4.0.0" ,
26
+ "@angular/compiler-cli" : " ^4.0.0" ,
26
27
"@angular/core" : " ^4.0.0" ,
27
28
"@angular/forms" : " ^4.0.0" ,
28
- "rxjs" : " ^5.1.0" ,
29
- "zone.js" : " ^0.7.6" ,
29
+ "@angular/platform-server" : " ^4.0.0" ,
30
30
"codelyzer" : " ^2.0.0" ,
31
- "typescript" : " ^2.1.5"
31
+ "rxjs" : " ^5.1.0" ,
32
+ "typescript" : " ^2.2.2" ,
33
+ "zone.js" : " ^0.7.6"
32
34
}
33
35
}
Original file line number Diff line number Diff line change @@ -123,9 +123,9 @@ export class MultiSelectSearchFilter implements PipeTransform {
123
123
<li *ngIf="settings.showCheckAll || settings.showUncheckAll" class="dropdown-divider divider"></li>
124
124
<li class="dropdown-item" [ngStyle]="getItemStyle(option)" *ngFor="let option of options | searchFilter:searchFilterText"
125
125
(click)="!option.isLabel && setSelected($event, option)" [class.dropdown-header]="option.isLabel">
126
- <template [ngIf]="option.isLabel">
126
+ <ng- template [ngIf]="option.isLabel">
127
127
{{ option.name }}
128
- </template>
128
+ </ng- template>
129
129
<a *ngIf="!option.isLabel" href="javascript:;" role="menuitem" tabindex="-1">
130
130
<input *ngIf="settings.checkedStyle === 'checkboxes'" type="checkbox"
131
131
[checked]="isSelected(option)" (click)="preventCheckboxCheck($event, option)"/>
Original file line number Diff line number Diff line change 9
9
"experimentalDecorators" : true ,
10
10
"skipLibCheck" : true ,
11
11
"skipDefaultLibCheck" : true
12
+ },
13
+ "angularCompilerOptions" : {
14
+ "genDir" : " compiled"
12
15
}
13
16
}
You can’t perform that action at this time.
0 commit comments