Skip to content

Commit

Permalink
chore(release): 7.2.17
Browse files Browse the repository at this point in the history
  • Loading branch information
laixiangran committed May 12, 2019
1 parent 8171a12 commit e1f5322
Show file tree
Hide file tree
Showing 22 changed files with 41 additions and 65 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<a name="7.2.17"></a>
## [7.2.17](https://github.com/laixiangran/ng-xdesign/compare/7.2.16...7.2.17) (2019-05-12)



<a name="7.2.16"></a>
## [7.2.16](https://github.com/laixiangran/ng-xdesign/compare/7.2.15...7.2.16) (2019-05-12)

Expand Down
2 changes: 0 additions & 2 deletions docs/app.0cb3aa.bundle.js

This file was deleted.

2 changes: 2 additions & 0 deletions docs/app.5166d0.bundle.js

Large diffs are not rendered by default.

File renamed without changes.
2 changes: 1 addition & 1 deletion docs/app.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">

<link rel="shortcut icon" href="favicon.png"><link href="app.css?2e69997c401ff756cf6b" rel="stylesheet"></head>
<link rel="shortcut icon" href="favicon.png"><link href="app.css?d087443ec08b15fdbced" rel="stylesheet"></head>
<body>
<nb-app-root></nb-app-root>
<script type="text/javascript" src="0.73592e.chunk.js?2e69997c401ff756cf6b"></script><script type="text/javascript" src="polyfills.593aa3.bundle.js?2e69997c401ff756cf6b"></script><script type="text/javascript" src="app.0cb3aa.bundle.js?2e69997c401ff756cf6b"></script></body>
<script type="text/javascript" src="0.73592e.chunk.js?d087443ec08b15fdbced"></script><script type="text/javascript" src="polyfills.593aa3.bundle.js?d087443ec08b15fdbced"></script><script type="text/javascript" src="app.5166d0.bundle.js?d087443ec08b15fdbced"></script></body>
</html>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-xdesign-test",
"version": "7.2.16",
"version": "7.2.17",
"description": "xdesign - A enterprize angular ui component library",
"author": "laixiangran <laixiangran@163.com>",
"license": "MIT",
Expand Down
10 changes: 5 additions & 5 deletions src/component/animation/public_api.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export * from './collapse-animations';
export * from './fade-animations';
export * from './slide-animations';
export * from './zoom-animations';
export * from './animation-consts';
export { collapseAnimation } from './collapse-animations';
export { fadeAnimation } from './fade-animations';
export { slideAnimation } from './slide-animations';
export { zoomAnimation } from './zoom-animations';
export { AnimationCurves, AnimationDuration } from './animation-consts';
2 changes: 1 addition & 1 deletion src/component/button/button.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root',
})
export class ButtonConfig {
export class NbButtonConfig {

/**
* button default theme
Expand Down
3 changes: 1 addition & 2 deletions src/component/button/button.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,4 @@ const components = [
...components
]
})
export class NbButtonModule {
}
export class NbButtonModule {}
4 changes: 2 additions & 2 deletions src/component/button/button.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {

import { coerceBooleanProperty } from '../util/coerce';
import { dedupleClassName } from '../util/dom';
import { ButtonConfig } from './button.config';
import { NbButtonConfig } from './button.config';
import { OnChange } from '../core/decorators';

/** default button theme types */
Expand Down Expand Up @@ -53,7 +53,7 @@ export class NbButtonComponent implements OnChanges, AfterViewInit {

constructor(
private _el: ElementRef,
private _config: ButtonConfig
private _config: NbButtonConfig
) {
Object.assign(this, _config);
}
Expand Down
6 changes: 3 additions & 3 deletions src/component/button/public_api.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from './button';
export * from './button.module';
export * from './button.config';
export { NbButtonComponent, NbButtonAnchorComponent } from './button';
export { NbButtonModule } from './button.module';
export { NbButtonConfig } from './button.config';
4 changes: 2 additions & 2 deletions src/component/code-box/public_api.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from './code-box';
export * from './code-box.module';
export { NbCodeBoxComponent } from './code-box';
export { NbCodeBoxModule } from './code-box.module';
4 changes: 2 additions & 2 deletions src/component/code-highlighter/public_api.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from './code-highlighter';
export * from './code-highlighter.module';
export { NbCodeHighlighterComponent } from './code-highlighter';
export { NbCodeHighlighterModule } from './code-highlighter.module';
2 changes: 1 addition & 1 deletion src/component/grid/public_api.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

export * from './grid.module';
export { NbGridModule } from './grid.module';
28 changes: 0 additions & 28 deletions src/component/no-animation/readme.md

This file was deleted.

4 changes: 2 additions & 2 deletions src/component/overlay/public_api.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export * from './overlay';
export * from './overlay.module';
export { NbOverlayComponent } from './overlay';
export { NbOverlayModule } from './overlay.module';
export { DynamicComponentService } from './dynamic-component.service';
export { NbOverlayOriginDirective } from './overlay-origin.directive';

2 changes: 1 addition & 1 deletion src/component/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-xdesign-test",
"version": "7.2.16",
"version": "7.2.17",
"description": "xdesign - A enterprize angular ui component library",
"author": "laixiangran <laixiangran@163.com>",
"keywords": ["angular", "one design"],
Expand Down
4 changes: 2 additions & 2 deletions src/component/tabs/public_api.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from './tabs';
export * from './tabs.module';
export { NbTabsComponent } from './tabs';
export { NbTabsModule } from './tabs.module';
6 changes: 3 additions & 3 deletions src/component/tooltip/public_api.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from './tooltip';
export * from './tiplayer';
export * from './tooltip.module';
export { NbTooltipDirective } from './tooltip';
export { NbTiplayerComponent } from './tiplayer';
export { NbTooltipModule } from './tooltip.module';
2 changes: 1 addition & 1 deletion src/component/types/public_api.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './common-wrap';
export { FunctionProp } from './common-wrap';
8 changes: 4 additions & 4 deletions src/demo/button/button.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { Component, AfterViewInit } from '@angular/core';

import { ButtonConfig } from '../../component/button';
export function getButtonConfig(): ButtonConfig {
return Object.assign(new ButtonConfig, { theme: 'default' });
import { NbButtonConfig } from '../../component/button';
export function getNbButtonConfig(): NbButtonConfig {
return Object.assign(new NbButtonConfig, { theme: 'default' });
}

@Component({
selector: 'demo-button',
templateUrl: './button.html',
styleUrls: ['./button.less'],
providers: [{ provide: ButtonConfig, useFactory: getButtonConfig }]
providers: [{ provide: NbButtonConfig, useFactory: getNbButtonConfig }]
})
export class ButtonDemo {

Expand Down

0 comments on commit e1f5322

Please sign in to comment.