Commit 73a84022 authored by Rajeev's avatar Rajeev
Browse files

Issue #SB-27493 Changes to ECML assessment experience

No related merge requests found
Showing with 3053 additions and 3069 deletions
+3053 -3069
......@@ -14,11 +14,6 @@
"options": {
"tsConfig": "projects/common-consumption/tsconfig.lib.json",
"project": "projects/common-consumption/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/common-consumption/tsconfig.lib.prod.json"
}
}
},
"test": {
......@@ -44,13 +39,10 @@
},
"schematics": {
"@schematics/angular:component": {
"style": "scss"
"styleext": "scss"
}
}
}
},
"defaultProject": "commonConsumption",
"cli": {
"analytics": "236206a8-a878-4622-be14-855aff315cc4"
}
"defaultProject": "commonConsumption"
}
\ No newline at end of file
This diff is collapsed.
......@@ -26,9 +26,9 @@
"@angular/router": "^9.1.12",
"@project-sunbird/sb-styles": "~0.0.5",
"core-js": "^2.5.4",
"rxjs": "~6.6.6",
"tslib": "^1.10.0",
"zone.js": "~0.10.2"
"rxjs": "~6.3.3",
"tslib": "^1.9.0",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.15",
......@@ -38,9 +38,9 @@
"@angular/language-service": "^9.1.12",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@types/node": "~8.9.4",
"canvag": "^1.0.3",
"codelyzer": "^5.1.2",
"codelyzer": "~4.5.0",
"copyfiles": "^2.1.1",
"cpy-cli": "^2.0.0",
"jasmine-core": "~2.99.1",
......@@ -62,4 +62,4 @@
"tslint": "~5.11.0",
"typescript": "~3.7.3"
}
}
}
\ No newline at end of file
......@@ -28,7 +28,7 @@ export class TocCurriculumComponent implements OnInit {
@Input() trackableDefaultImage;
@Input() maxAttempts;
@Input() disabled = '';
@ViewChild('chapter') divs: QueryList<any>;
@ViewChild('chapter',{static:false}) divs: QueryList<any>;
@ViewChildren('chapterContainer') chapterContainer: QueryList<any>;
@Input() activeContent;
......@@ -225,4 +225,4 @@ export class TocCurriculumComponent implements OnInit {
this.tocCardClick.emit({ ...event, rollup });
}
}
}
\ No newline at end of file
......@@ -26,7 +26,7 @@ export class TocItemComponent implements OnInit, OnChanges, AfterViewInit, OnDes
@Input() playBtnConfig;
@Input() platform;
@Input() trackableDefaultImage = '';
@ViewChild('chapter') divs: QueryList<any>;
@ViewChild('chapter',{static: false}) divs: QueryList<any>;
@ViewChildren('chapterContainer') chapterContainer: QueryList<any>;
@Input() type = "";
......@@ -266,4 +266,4 @@ export class TocItemComponent implements OnInit, OnChanges, AfterViewInit, OnDes
ngOnDestroy() {
this.subscriptions.forEach(s => s.unsubscribe());
}
}
}
\ No newline at end of file
......@@ -9,7 +9,7 @@ import { PillsColorTheme } from '../models';
export class PillItemComponent {
@ViewChild(TemplateRef) template: TemplateRef<any>;
@ViewChild(TemplateRef,{static:false}) template: TemplateRef<any>;
@Input() name: string;
@Input() icon: string;
......@@ -27,4 +27,4 @@ export class PillItemComponent {
this.onSelect(this, event);
}
}
}
}
\ No newline at end of file
......@@ -18,6 +18,7 @@
]
},
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"fullTemplateTypeCheck": true,
......@@ -28,4 +29,4 @@
"src/test.ts",
"**/*.spec.ts"
]
}
}
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment