feat: update to Angular 11 (#5826)

This commit is contained in:
Sergey Andrievskiy 2021-01-19 13:52:09 +03:00 committed by GitHub
parent 98166c5274
commit ebe181085b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 2902 additions and 3306 deletions

View file

@ -5,7 +5,7 @@
// framework component themes (styles tied to theme variables)
@import '~@nebular/theme/styles/globals';
@import '~@nebular/auth/styles/all';
@import '~@nebular/auth/styles/globals';
@import '~bootstrap/scss/functions';
@import '~bootstrap/scss/variables';

View file

@ -54,7 +54,7 @@
<nb-card-body class="checkbox-radio">
<div class="demo-items">
<nb-checkbox>Checkbox 1</nb-checkbox>
<nb-checkbox [value]="true">Checkbox 2</nb-checkbox>
<nb-checkbox checked>Checkbox 2</nb-checkbox>
</div>
<div class="demo-items">
<nb-radio-group [(value)]="radioGroupValue">

View file

@ -1,17 +1,14 @@
{
"extends": "../tsconfig.base.json",
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/app",
"baseUrl": "./"
},
"exclude": [
"test.ts",
"**/*.spec.ts",
"../node_modules/@nebular/**/*.spec.ts"
"files": [
"main.ts",
"polyfills.ts"
],
"include": [
"../src/*.ts",
"../src/**/*.ts",
"../node_modules/@nebular/**/*.ts"
"**/*.d.ts"
]
}

View file

@ -1,5 +1,5 @@
{
"extends": "../tsconfig.base.json",
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/spec",
"baseUrl": "./",