Skip to content

Commit 8a9a823

Browse files
committed
refactor: project cleanup
1 parent 731287a commit 8a9a823

File tree

6 files changed

+76
-33
lines changed

6 files changed

+76
-33
lines changed

CHANGELOG.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
### [@coreui/angular](https://coreui.io/) changelog
2+
3+
##### `v2.1.0`
4+
- feat: sidebar nav-link `attributes` - optional JS object with valid JS API naming:
5+
- valid attributes: `rel`, `target`, `hidden`, `disabled`, etc...
6+
- item example:
7+
```
8+
...
9+
{
10+
name: 'Try CoreUI PRO',
11+
url: 'https://coreui.io/pro/react/',
12+
icon: 'cui-layers icons',
13+
variant: 'danger',
14+
attributes: { target: '_blank', rel: "noopener" },
15+
},
16+
....
17+
```
18+
- update `@coreui/coreui` to `2.1.3`
19+
- update `rxjs` to `^6.3.3`
20+
- update `@angular-devkit/build-angular` to `~0.8.8`
21+
- update `@angular-devkit/build-ng-packagr` to `~0.8.8`
22+
- update `@angular/cli` to `^6.2.8`
23+
- update `@types/jasmine` to `~2.8.12`
24+
- update `@types/jasminewd2` to `~2.0.6`
25+
- update `@types/node` to `~10.12.10`
26+
- update `jasmine-core` to `~3.3.0`
27+
- update `karma-jasmine-html-reporter` to `^1.4.0`
28+
- update `ng-packagr` to `^3.0.6`
29+
- update `shelljs` to `^0.8.3`
30+
- update `ts-node` to `~6.2.0`
31+
- update `tsickle` to `^0.34.0`
32+
- update `typescript` to `~2.9.2`
33+

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ $ npm install @coreui/angular --save
5959
### Yarn
6060

6161
``` bash
62-
$ yarn add @coreui/angular@2.0.0
62+
$ yarn add @coreui/angular@2.1.0
6363
```
6464

6565
## Usage

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/angular-dev",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"license": "MIT",
55
"author": {
66
"name": "Łukasz Holeczek",

projects/coreui/angular/package.json

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
{
22
"name": "@coreui/angular",
3-
"version": "2.0.1",
3+
"version": "2.1.0",
4+
"description": "CoreUI Angular Bootstrap 4 components",
45
"license": "MIT",
6+
"homepage": "https://coreui.io/angular",
57
"author": {
68
"name": "Łukasz Holeczek",
79
"url": "http://holeczek.pl",
@@ -18,5 +20,12 @@
1820
"@angular/common": "^6.1.10",
1921
"@angular/core": "^6.1.10",
2022
"@coreui/coreui": "^2.1.3"
23+
},
24+
"repository": {
25+
"type": "git",
26+
"url": "https://github.com/coreui/coreui-angular.git"
27+
},
28+
"bugs": {
29+
"url": "https://github.com/coreui/coreui-angular/issues"
2130
}
2231
}

projects/coreui/angular/src/lib/sidebar/app-sidebar-nav.component.ts

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Component, Directive, ElementRef, Inject, Injectable, HostBinding, HostListener, Input, OnInit, Renderer2, ViewEncapsulation } from '@angular/core';
2-
import { Replace } from './../shared';
1+
import { Component, Directive, ElementRef, HostBinding, HostListener, Input, OnInit, Renderer2 } from '@angular/core';
2+
import { Replace } from '../shared';
33

44
@Directive({
55
selector: '[appNavDropdown]'
@@ -37,11 +37,11 @@ export class LinkAttributesDirective implements OnInit {
3737
constructor(private renderer: Renderer2, private el: ElementRef) {}
3838

3939
ngOnInit() {
40-
const attribs = this.appLinkAttributes
41-
for (let attr in attribs) {
42-
if (attr==='style' && typeof(attribs[attr])==='object' ) {
40+
const attribs = this.appLinkAttributes;
41+
for (const attr in attribs) {
42+
if (attr === 'style' && typeof(attribs[attr]) === 'object' ) {
4343
this.setStyle(attribs[attr]);
44-
} else if (attr==='class') {
44+
} else if (attr === 'class') {
4545
this.addClass(attribs[attr]);
4646
} else {
4747
this.setAttrib(attr, attribs[attr]);
@@ -50,20 +50,20 @@ export class LinkAttributesDirective implements OnInit {
5050
}
5151

5252
private setStyle(styles) {
53-
for (let style in styles) {
53+
for (const style in styles) {
5454
this.renderer.setStyle(this.el.nativeElement, style, styles[style] );
5555
}
5656
}
5757

5858
private addClass(classes) {
59-
let classArray = Array.isArray(classes) ? classes : classes.split(" ")
59+
const classArray = Array.isArray(classes) ? classes : classes.split(' ');
6060
classArray.forEach(element => {
61-
this.renderer.addClass(this.el.nativeElement, element );
61+
this.renderer.addClass(this.el.nativeElement, element );
6262
});
6363
}
6464

6565
private setAttrib(key, value) {
66-
let newAttr = document.createAttribute(key);
66+
const newAttr = document.createAttribute(key);
6767
newAttr.value = value;
6868
this.renderer.setAttribute(this.el.nativeElement, key, value );
6969
}
@@ -181,21 +181,21 @@ export class AppSidebarNavLinkComponent implements OnInit {
181181
@Input() link: any;
182182

183183
public getClasses() {
184-
const disabled = this.isDisabled()
184+
const disabled = this.isDisabled();
185185
const classes = {
186186
'nav-link': true,
187187
'disabled': disabled,
188188
'btn-link': disabled
189-
}
189+
};
190190
if (this.hasVariant()) {
191191
const variant = `nav-link-${this.link.variant}`;
192-
classes[variant] = true;
192+
classes[variant] = true;
193193
}
194-
return classes
194+
return classes;
195195
}
196196

197197
public getLinkType() {
198-
return this.isDisabled() ? 'disabled' : this.isExternalLink() ? 'external' : ''
198+
return this.isDisabled() ? 'disabled' : this.isExternalLink() ? 'external' : '';
199199
}
200200

201201
public hasVariant() {

projects/coreui/angular/tslint.json

+16-15
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
{
2-
"extends": "../../../tslint.json",
3-
"rules": {
4-
"directive-selector": [
5-
true,
6-
"attribute",
7-
"app",
8-
"camelCase"
9-
],
10-
"component-selector": [
11-
true,
12-
"element",
13-
"app",
14-
"kebab-case"
15-
]
16-
}
2+
"extends": "../../../tslint.json",
3+
"rules": {
4+
"directive-selector": [
5+
true,
6+
"attribute",
7+
"app",
8+
"camelCase"
9+
],
10+
"component-selector": [
11+
true,
12+
"element",
13+
"app",
14+
"kebab-case"
15+
],
16+
"forin": false
17+
}
1718
}

0 commit comments

Comments
 (0)