-
-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(backward-compat): fix angular12 backward compat
- Loading branch information
Showing
13 changed files
with
13,169 additions
and
44,163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Build | ||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Use Node.js 12.8 | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' | ||
- name: Install dependencies | ||
run: npm install | ||
- name: Lint and Test | ||
run: npm run test && npm run lint | ||
- name: Build | ||
run: npm run build:ci && cp -R dist/demo/browser ./docs/demo | ||
- name: GitHub Pages action | ||
uses: peaceiris/[email protected] | ||
with: | ||
github_token: ${{ secrets.ACCESS_TOKEN }} | ||
publish_dir: ./docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,7 @@ speed-measure-plugin*.json | |
.history/* | ||
|
||
# misc | ||
/.angular/cache | ||
/.sass-cache | ||
/connect.lock | ||
/coverage | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
body.dark { | ||
background: #212121; | ||
color: #fafafa; | ||
} | ||
|
||
.dark code { | ||
color: #e09393; | ||
} | ||
|
||
.dark a, | ||
.dark .menu ul.list li a.active { | ||
color: #7fc9ff; | ||
} | ||
|
||
.dark .menu { | ||
background: #212121; | ||
border-right: 1px solid #444; | ||
} | ||
|
||
.dark .menu ul.list li a { | ||
color: #fafafa; | ||
} | ||
|
||
.dark .menu ul.list li.divider { | ||
background: #444; | ||
} | ||
|
||
.dark .xs-menu ul.list li:nth-child(2) { | ||
margin: 0; | ||
background: none; | ||
} | ||
|
||
.dark .menu ul.list li:nth-child(2) { | ||
margin: 0; | ||
background: none; | ||
} | ||
|
||
.dark #book-search-input { | ||
background: #212121; | ||
border-top: 1px solid #444; | ||
border-bottom: 1px solid #444; | ||
color: #fafafa; | ||
} | ||
|
||
.dark .table.metadata > tbody > tr:hover { | ||
color: #555; | ||
} | ||
|
||
.dark .table-bordered { | ||
border: 1px solid #444; | ||
} | ||
|
||
.dark .table-bordered > tbody > tr > td, | ||
.dark .table-bordered > tbody > tr > th, | ||
.dark .table-bordered > tfoot > tr > td, | ||
.dark .table-bordered > tfoot > tr > th, | ||
.dark .table-bordered > thead > tr > td, | ||
.dark .table-bordered > thead > tr > th { | ||
border: 1px solid #444; | ||
} | ||
|
||
.dark .coverage a, | ||
.dark .coverage-count { | ||
color: #fafafa; | ||
} | ||
|
||
.dark .coverage-header { | ||
color: black; | ||
} | ||
|
||
.dark .routes svg text, | ||
.dark .routes svg a { | ||
fill: white; | ||
} | ||
.dark .routes svg rect { | ||
fill: #212121 !important; | ||
} | ||
|
||
.dark .navbar-default, | ||
.dark .btn-default { | ||
background-color: black; | ||
border-color: #444; | ||
color: #fafafa; | ||
} | ||
|
||
.dark .navbar-default .navbar-brand { | ||
color: #fafafa; | ||
} | ||
|
||
.dark .overview .card, | ||
.dark .modules .card { | ||
background: #171717; | ||
color: #fafafa; | ||
border: 1px solid #444; | ||
} | ||
.dark .overview .card a { | ||
color: #fafafa; | ||
} | ||
|
||
.dark .modules .card-header { | ||
background: none; | ||
border-bottom: 1px solid #444; | ||
} | ||
|
||
.dark .module .list-group-item { | ||
background: none; | ||
border: 1px solid #444; | ||
} | ||
|
||
.dark .container-fluid.module h3 a { | ||
color: #337ab7; | ||
} | ||
|
||
.dark table.params thead { | ||
background: #484848; | ||
color: #fafafa; | ||
} |
Oops, something went wrong.