Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
## [angular](./README.md) version `changelog`

###### `v2.0.0`
- fix(dropdowns): dropup misplaced temp fix
- chore: update `@coreui/icons` to `0.3.0`
- refactor(coreui-icons): move to `@coreui/icons v0.3.0`
- update: `@angular/*` to `6.1.6`
- update: `angular-devkit/build-angular` to `0.7.5`
- update: `@angular/cli` to `6.1.5`
- update: `rxjs` to `6.3.0`
- update: `rxjs-compat` to `6.3.0`
- update: `@types/node` to `10.9.4`
- update: `jasmine-core` to `3.2.1`
- update: `karma-coverage-istanbul-reporter` to `2.0.2`
- update: `karma-jasmine-html-reporter` to `1.3.1`

###### `v2.0.0-rc.4`
- fix(forms): validation classes example closes #95
- fix(forms): card-header-actions example
Expand Down
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coreui/coreui-free-angular-admin-template",
"version": "2.0.0-rc.4",
"version": "2.0.0",
"description": "CoreUI Free Angular 2+ Admin Template",
"author": {
"name": "Łukasz Holeczek",
Expand All @@ -27,19 +27,19 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^6.1.2",
"@angular/common": "^6.1.2",
"@angular/compiler": "^6.1.2",
"@angular/core": "^6.1.2",
"@angular/forms": "^6.1.2",
"@angular/http": "^6.1.2",
"@angular/platform-browser": "^6.1.2",
"@angular/platform-browser-dynamic": "^6.1.2",
"@angular/router": "^6.1.2",
"@angular/animations": "^6.1.6",
"@angular/common": "^6.1.6",
"@angular/compiler": "^6.1.6",
"@angular/core": "^6.1.6",
"@angular/forms": "^6.1.6",
"@angular/http": "^6.1.6",
"@angular/platform-browser": "^6.1.6",
"@angular/platform-browser-dynamic": "^6.1.6",
"@angular/router": "^6.1.6",
"@coreui/angular": "^2.0.0-rc.1",
"@coreui/coreui": "^2.0.4",
"@coreui/coreui-plugin-chartjs-custom-tooltips": "^1.2.0",
"@coreui/icons": "0.2.0",
"@coreui/icons": "0.3.0",
"bootstrap": "^4.1.3",
"chart.js": "^2.7.2",
"core-js": "^2.5.7",
Expand All @@ -50,28 +50,28 @@
"ng2-charts": "^1.6.0",
"ngx-bootstrap": "^3.0.1",
"ngx-perfect-scrollbar": "^6.3.0",
"rxjs": "^6.2.2",
"rxjs-compat": "^6.2.2",
"rxjs": "^6.3.0",
"rxjs-compat": "^6.3.0",
"simple-line-icons": "^2.4.1",
"ts-helpers": "^1.1.2",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.7.3",
"@angular/cli": "^6.1.3",
"@angular/compiler-cli": "^6.1.2",
"@angular/language-service": "^6.1.2",
"@angular-devkit/build-angular": "^0.7.5",
"@angular/cli": "^6.1.5",
"@angular/compiler-cli": "^6.1.6",
"@angular/language-service": "^6.1.6",
"@types/jasmine": "^2.8.8",
"@types/jasminewd2": "^2.0.3",
"@types/node": "^10.7.0",
"@types/node": "^10.9.4",
"codelyzer": "^4.4.4",
"jasmine-core": "^3.2.0",
"jasmine-core": "^3.2.1",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-coverage-istanbul-reporter": "^2.0.2",
"karma-jasmine": "^1.1.2",
"karma-jasmine-html-reporter": "^1.3.0",
"karma-jasmine-html-reporter": "^1.3.1",
"protractor": "5.4.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
Expand Down
3 changes: 3 additions & 0 deletions src/app/views/buttons/dropdowns.component.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.dropup .dropdown-menu {
transform: none!important;
}
4 changes: 2 additions & 2 deletions src/app/views/buttons/dropdowns.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,10 @@
</div>
<div class="card-body">
<div class="btn-group" dropdown [dropup]="isDropup">
<button dropdownToggle type="button" class="btn btn-primary dropdown-toggle">
<button id="button-dropup" dropdownToggle type="button" class="btn btn-primary dropdown-toggle">
Dropup <span class="caret"></span>
</button>
<ul *dropdownMenu class="dropdown-menu" role="menu">
<ul id="dropdown-dropup" *dropdownMenu class="dropdown-menu" role="menu" aria-labelledby="button-dropup">
<li role="menuitem"><a class="dropdown-item" href="#">Action</a></li>
<li role="menuitem"><a class="dropdown-item" href="#">Another action</a>
</li>
Expand Down
1 change: 1 addition & 0 deletions src/app/views/buttons/dropdowns.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { Component } from '@angular/core';

@Component({
templateUrl: 'dropdowns.component.html',
styleUrls: ['dropdowns.component.css']
})
export class DropdownsComponent {

Expand Down
Loading