Skip to content

Commit

Permalink
release: 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk committed Dec 15, 2017
1 parent 519726b commit d0a501e
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 11 deletions.
9 changes: 9 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ title:
type: Other
---

### 0.3.1

`2017-12-15`

- @delon/theme
- 新增重载更多 `_HttpClient``get``post``delete` 方法
- 新增导出所有 Pipes
- 修复 `MenuService` 重复调用 `resume` 导致快捷菜单重复,[#107](https://github.com/cipchk/ng-alain/pull/107)

### 0.3.0

`2017-12-14`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "delon",
"version": "0.3.0",
"version": "0.3.1",
"typings": "index.d.ts",
"description": "Delon is a set of essential modules for ng-alain.",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion scaffold
2 changes: 1 addition & 1 deletion src/core/abc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@delon/abc",
"version": "0.3.0",
"version": "0.3.1",
"description": "@delon/abc",
"main": "./bundles/abc.umd.js",
"module": "./index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/core/acl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@delon/acl",
"version": "0.3.0",
"version": "0.3.1",
"description": "@delon/acl",
"main": "./bundles/acl.umd.js",
"module": "./index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/core/auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@delon/auth",
"version": "0.3.0",
"version": "0.3.1",
"description": "@delon/auth",
"main": "./bundles/auth.umd.js",
"module": "./index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/core/theme/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@delon/theme",
"version": "0.3.0",
"version": "0.3.1",
"description": "@delon/theme",
"main": "./bundles/theme.umd.js",
"module": "./index.js",
Expand Down
6 changes: 2 additions & 4 deletions src/core/theme/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@ const globals = {

'rxjs/Observer': 'Rx',
'rxjs/Observable': 'Rx',
'rxjs/observable/fromEvent': 'Rx.Observable',
'rxjs/operators/tap': 'Rx.Observable.prototype',
'rxjs/operators/catchError': 'Rx.Observable.prototype',
'rxjs/operators/filter': 'Rx.Observable.prototype'
'rxjs/operators': 'Rx.Observable.prototype',
'rxjs/observable/fromEvent': 'Rx.Observable'
};

module.exports = {
Expand Down
2 changes: 1 addition & 1 deletion src/core/theme/services/modal/modal.helper.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Injectable } from '@angular/core';
import { NzModalService } from 'ng-zorro-antd';
import { Observable } from 'rxjs/Observable';
import { filter } from 'rxjs/operators/filter';
import { filter } from 'rxjs/operators';

/**
* 对话框辅助类
Expand Down

0 comments on commit d0a501e

Please sign in to comment.