From 25f6ffdca95894275ff1f940ada0cd1b616d43b7 Mon Sep 17 00:00:00 2001 From: Dmitriy Shekhovtsov Date: Mon, 11 Jul 2016 19:13:16 +0300 Subject: [PATCH 01/24] 1.0.18 --- CHANGELOG.md | 38 ++++++++++++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a85af8ee27..360882dd68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,41 @@ + +## [1.0.18](https://github.com/valor-software/ng2-bootstrap/compare/v1.0.17...v1.0.18) (2016-07-11) + + +### Bug Fixes + +* **demo:** add "dropdownMenu" ([#580](https://github.com/valor-software/ng2-bootstrap/issues/580)) ([686a96e](https://github.com/valor-software/ng2-bootstrap/commit/686a96e)) +* **docs:** fix typo ([#612](https://github.com/valor-software/ng2-bootstrap/issues/612)) ([7ddd532](https://github.com/valor-software/ng2-bootstrap/commit/7ddd532)), closes [#612](https://github.com/valor-software/ng2-bootstrap/issues/612) +* **docs:** nonInput is by default ([#581](https://github.com/valor-software/ng2-bootstrap/issues/581)) ([b23ced0](https://github.com/valor-software/ng2-bootstrap/commit/b23ced0)) +* **dropdown:** explicitly markForCheck() ([#566](https://github.com/valor-software/ng2-bootstrap/issues/566)) ([0ce4328](https://github.com/valor-software/ng2-bootstrap/commit/0ce4328)) +* **dropdown:** prop disabled renamed to isDisabled ([#615](https://github.com/valor-software/ng2-bootstrap/issues/615)) ([8a1d6f8](https://github.com/valor-software/ng2-bootstrap/commit/8a1d6f8)) +* **header-component:** fix style ([ccfe948](https://github.com/valor-software/ng2-bootstrap/commit/ccfe948)) +* **modal:** don't hide on out click if backdrop === 'static' ([#629](https://github.com/valor-software/ng2-bootstrap/issues/629)) ([df85712](https://github.com/valor-software/ng2-bootstrap/commit/df85712)) +* **modal:** fix typo in MODAL_DIRECTIVES ([#630](https://github.com/valor-software/ng2-bootstrap/issues/630)) ([8c4c125](https://github.com/valor-software/ng2-bootstrap/commit/8c4c125)), closes [#630](https://github.com/valor-software/ng2-bootstrap/issues/630) +* **modals:** modal backdrop and onclick events handling ([b39b856](https://github.com/valor-software/ng2-bootstrap/commit/b39b856)), closes [#687](https://github.com/valor-software/ng2-bootstrap/issues/687) [#703](https://github.com/valor-software/ng2-bootstrap/issues/703) [#708](https://github.com/valor-software/ng2-bootstrap/issues/708) +* **package:** include js map files in bundles ([1ffd2b4](https://github.com/valor-software/ng2-bootstrap/commit/1ffd2b4)), closes [#632](https://github.com/valor-software/ng2-bootstrap/issues/632) +* **readme:** alert component name fixed ([e9a1d04](https://github.com/valor-software/ng2-bootstrap/commit/e9a1d04)), closes [#552](https://github.com/valor-software/ng2-bootstrap/issues/552) +* **style:** fix top menu z-index ([e70e578](https://github.com/valor-software/ng2-bootstrap/commit/e70e578)) +* **tests:** fix failing test for buttons and accordion ([8ea9c10](https://github.com/valor-software/ng2-bootstrap/commit/8ea9c10)) +* **typeahead:** removed incorrect behavior to do ENTER behavior on TAB. TAB should simply skip to next field as expected. ([#715](https://github.com/valor-software/ng2-bootstrap/issues/715)) ([758ad1b](https://github.com/valor-software/ng2-bootstrap/commit/758ad1b)), closes [#686](https://github.com/valor-software/ng2-bootstrap/issues/686) [#490](https://github.com/valor-software/ng2-bootstrap/issues/490) [#689](https://github.com/valor-software/ng2-bootstrap/issues/689) + + +### Features + +* **demo:** new build process with ng2-webpack-config ([5c8fcf1](https://github.com/valor-software/ng2-bootstrap/commit/5c8fcf1)) +* **docs:** added modals section ([6ab3a07](https://github.com/valor-software/ng2-bootstrap/commit/6ab3a07)) +* **docs:** applied new docs style ([d84211a](https://github.com/valor-software/ng2-bootstrap/commit/d84211a)) +* **docs:** menues and contents updated ([2155df6](https://github.com/valor-software/ng2-bootstrap/commit/2155df6)) +* **package:** angular updated to rc3, fix hash (active route) ([#636](https://github.com/valor-software/ng2-bootstrap/issues/636)) ([70a84cf](https://github.com/valor-software/ng2-bootstrap/commit/70a84cf)), closes [#636](https://github.com/valor-software/ng2-bootstrap/issues/636) +* **typeahead:** rxjs version ([#584](https://github.com/valor-software/ng2-bootstrap/issues/584)) ([48b8abb](https://github.com/valor-software/ng2-bootstrap/commit/48b8abb)), closes [#536](https://github.com/valor-software/ng2-bootstrap/issues/536) [#637](https://github.com/valor-software/ng2-bootstrap/issues/637) + + +### BREAKING CHANGES + +* dropdown: * dropdown property `disabled` renamed to `isDisabled` + + + ## [1.0.17](https://github.com/valor-software/ng2-bootstrap/compare/v1.0.16...v1.0.17) (2016-05-31) diff --git a/package.json b/package.json index d45740ea4d..83368f83a0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ng2-bootstrap", - "version": "1.0.17", + "version": "1.0.18", "description": "angular2 bootstrap components", "scripts": { "typedoc": "typedoc", From 753cc67e314d660aa2a357c3e37bb3f46a648b01 Mon Sep 17 00:00:00 2001 From: Dmitriy Shekhovtsov Date: Mon, 11 Jul 2016 19:43:15 +0300 Subject: [PATCH 02/24] fix(build): fixed prod build webpack config --- CHANGELOG.md | 4 ++-- components/typeahead/typeahead.directive.ts | 4 ++-- package.json | 4 ++-- typings.json | 3 +-- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 360882dd68..2b33615c18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,8 +32,8 @@ ### BREAKING CHANGES -* dropdown: * dropdown property `disabled` renamed to `isDisabled` - +* dropdown: dropdown property `disabled` renamed to `isDisabled` +* ng2-bootstrap: missprint MODAL_DIRECTVES renamed to MODAL_DIRECTIVES diff --git a/components/typeahead/typeahead.directive.ts b/components/typeahead/typeahead.directive.ts index 13e4ec8ade..aaa6293055 100644 --- a/components/typeahead/typeahead.directive.ts +++ b/components/typeahead/typeahead.directive.ts @@ -7,6 +7,8 @@ import {TypeaheadUtils} from './typeahead-utils'; import {TypeaheadContainerComponent} from './typeahead-container.component'; import {TypeaheadOptions} from './typeahead-options.class'; +import {Observable} from 'rxjs/Rx'; + import 'rxjs/add/observable/from'; import 'rxjs/add/operator/debounceTime'; import 'rxjs/add/operator/filter'; @@ -14,8 +16,6 @@ import 'rxjs/add/operator/map'; import 'rxjs/add/operator/mergeMap'; import 'rxjs/add/operator/toArray'; -import {Observable} from 'rxjs/Observable'; - import {global} from '@angular/core/src/facade/lang'; /* tslint:disable */ const KeyboardEvent = (global as any).KeyboardEvent as KeyboardEvent; diff --git a/package.json b/package.json index 83368f83a0..c2681895e9 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "flow.lint": "npm run flow.eslint && npm run flow.tslint", "flow.changelog": "./node_modules/.bin/conventional-changelog -i CHANGELOG.md -s -p angular -v", "flow.github-release": "./node_modules/.bin/conventional-github-releaser -p angular", - "flow.build:prod": "NODE_ENV=production ./node_modules/.bin/webpack --progress --color", + "flow.build:prod": "NODE_ENV=production ./node_modules/.bin/webpack --progress --color --display-error-details --display-cached", "flow.build:dev": "./node_modules/.bin/webpack --progress --color", "flow.serve:dev": "./node_modules/.bin/webpack-dev-server --hot --inline --colors --display-error-details --display-cached", "flow.serve:prod": "NODE_ENV=production ./node_modules/.bin/webpack-dev-server --hot --inline --colors --display-error-details --display-cached", @@ -87,7 +87,7 @@ "gulp-tslint": "5.0.0", "lite-server": "2.2.0", "marked": "0.3.5", - "ng2-webpack-config": "github:valor-software/ng2-webpack-config", + "ng2-webpack-config": "0.0.3", "pre-commit": "1.1.3", "reflect-metadata": "0.1.2", "require-dir": "0.3.0", diff --git a/typings.json b/typings.json index 3fdb203d2f..714cc54f0c 100644 --- a/typings.json +++ b/typings.json @@ -1,7 +1,6 @@ { "dependencies": { - "moment": "registry:npm/moment#2.10.5+20160211003958", - "webpack": "registry:npm/webpack#1.12.9+20160219013405" + "webpack": "registry:npm/webpack#1.12.9+20160418172948" }, "devDependencies": {}, "globalDependencies": { From 4771f6f2a6e214c03209e7f1bf9647db7c22cb25 Mon Sep 17 00:00:00 2001 From: Dmitriy Schekhovtsov Date: Tue, 12 Jul 2016 02:09:29 +0300 Subject: [PATCH 03/24] fix(build): emit helpers --- .config/bundle-system.js | 4 ++-- package.json | 2 +- tsconfig.publish.json | 21 +++++++++++++++++++++ 3 files changed, 24 insertions(+), 3 deletions(-) create mode 100644 tsconfig.publish.json diff --git a/.config/bundle-system.js b/.config/bundle-system.js index 3867b37a7f..b34a051a71 100755 --- a/.config/bundle-system.js +++ b/.config/bundle-system.js @@ -22,9 +22,9 @@ const targetFolder = path.resolve('./bundles'); async.waterfall([ cleanBundlesFolder, getSystemJsBundleConfig, - buildSystemJs({minify: false, sourceMaps: true, mangle: false}), + buildSystemJs({minify: false, sourceMaps: true, mangle: false, noEmitHelpers: false, declaration: true}), getSystemJsBundleConfig, - buildSystemJs({minify: true, sourceMaps: true, mangle: false}), + buildSystemJs({minify: true, sourceMaps: true, mangle: false, noEmitHelpers: false, declaration: true}), gzipSystemJsBundle ], err => { if (err) { diff --git a/package.json b/package.json index c2681895e9..f7297d39ad 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "flow.docs": "npm run typedoc -- --exclude '**/*.spec.ts' ./components/", "flow.install:typings": "./node_modules/.bin/typings install", "flow.compile": "npm run flow.install:typings && npm run flow.compile:common && npm run flow.compile:system", - "flow.compile:common": "./node_modules/.bin/tsc -d", + "flow.compile:common": "./node_modules/.bin/tsc -p tsconfig.publish.json", "flow.compile:system": "./.config/bundle-system.js", "flow.copy:src": "./node_modules/.bin/cpy ng2-bootstrap.ts \"components/*.ts\" ts --parents", "flow.clean": "./node_modules/.bin/del bundles coverage demo-build typings \"components/**/*.+(js|d.ts|js.map)\" dist \"ng2-bootstrap.+(js|d.ts|js.map)\"", diff --git a/tsconfig.publish.json b/tsconfig.publish.json new file mode 100644 index 0000000000..252e8305f8 --- /dev/null +++ b/tsconfig.publish.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "commonjs", + "moduleResolution": "node", + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "sourceMap": true, + "noEmitHelpers": false, + "noImplicitAny": true, + "declaration": true + }, + "exclude": [ + "node_modules" + ], + "files": [ + "./typings/index.d.ts", + "./demo/custom-typings.d.ts", + "./ng2-bootstrap.ts" + ] +} From 257993ddf0305c77fe2657f36138e594e13d3068 Mon Sep 17 00:00:00 2001 From: Dmitriy Schekhovtsov Date: Tue, 12 Jul 2016 02:13:25 +0300 Subject: [PATCH 04/24] 1.0.19 --- CHANGELOG.md | 40 ++++++++++++++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b33615c18..8b5d9cf4d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,43 @@ + +## [1.0.19](https://github.com/valor-software/ng2-bootstrap/compare/v1.0.17...v1.0.19) (2016-07-11) + + +### Bug Fixes + +* **build:** emit helpers ([4771f6f](https://github.com/valor-software/ng2-bootstrap/commit/4771f6f)) +* **build:** fixed prod build webpack config ([753cc67](https://github.com/valor-software/ng2-bootstrap/commit/753cc67)) +* **demo:** add "dropdownMenu" ([#580](https://github.com/valor-software/ng2-bootstrap/issues/580)) ([686a96e](https://github.com/valor-software/ng2-bootstrap/commit/686a96e)) +* **docs:** fix typo ([#612](https://github.com/valor-software/ng2-bootstrap/issues/612)) ([7ddd532](https://github.com/valor-software/ng2-bootstrap/commit/7ddd532)), closes [#612](https://github.com/valor-software/ng2-bootstrap/issues/612) +* **docs:** nonInput is by default ([#581](https://github.com/valor-software/ng2-bootstrap/issues/581)) ([b23ced0](https://github.com/valor-software/ng2-bootstrap/commit/b23ced0)) +* **dropdown:** explicitly markForCheck() ([#566](https://github.com/valor-software/ng2-bootstrap/issues/566)) ([0ce4328](https://github.com/valor-software/ng2-bootstrap/commit/0ce4328)) +* **dropdown:** prop disabled renamed to isDisabled ([#615](https://github.com/valor-software/ng2-bootstrap/issues/615)) ([8a1d6f8](https://github.com/valor-software/ng2-bootstrap/commit/8a1d6f8)) +* **header-component:** fix style ([ccfe948](https://github.com/valor-software/ng2-bootstrap/commit/ccfe948)) +* **modal:** don't hide on out click if backdrop === 'static' ([#629](https://github.com/valor-software/ng2-bootstrap/issues/629)) ([df85712](https://github.com/valor-software/ng2-bootstrap/commit/df85712)) +* **modal:** fix typo in MODAL_DIRECTIVES ([#630](https://github.com/valor-software/ng2-bootstrap/issues/630)) ([8c4c125](https://github.com/valor-software/ng2-bootstrap/commit/8c4c125)), closes [#630](https://github.com/valor-software/ng2-bootstrap/issues/630) +* **modals:** modal backdrop and onclick events handling ([b39b856](https://github.com/valor-software/ng2-bootstrap/commit/b39b856)), closes [#687](https://github.com/valor-software/ng2-bootstrap/issues/687) [#703](https://github.com/valor-software/ng2-bootstrap/issues/703) [#708](https://github.com/valor-software/ng2-bootstrap/issues/708) +* **package:** include js map files in bundles ([1ffd2b4](https://github.com/valor-software/ng2-bootstrap/commit/1ffd2b4)), closes [#632](https://github.com/valor-software/ng2-bootstrap/issues/632) +* **readme:** alert component name fixed ([e9a1d04](https://github.com/valor-software/ng2-bootstrap/commit/e9a1d04)), closes [#552](https://github.com/valor-software/ng2-bootstrap/issues/552) +* **style:** fix top menu z-index ([e70e578](https://github.com/valor-software/ng2-bootstrap/commit/e70e578)) +* **tests:** fix failing test for buttons and accordion ([8ea9c10](https://github.com/valor-software/ng2-bootstrap/commit/8ea9c10)) +* **typeahead:** removed incorrect behavior to do ENTER behavior on TAB. TAB should simply skip to next field as expected. ([#715](https://github.com/valor-software/ng2-bootstrap/issues/715)) ([758ad1b](https://github.com/valor-software/ng2-bootstrap/commit/758ad1b)), closes [#686](https://github.com/valor-software/ng2-bootstrap/issues/686) [#490](https://github.com/valor-software/ng2-bootstrap/issues/490) [#689](https://github.com/valor-software/ng2-bootstrap/issues/689) + + +### Features + +* **demo:** new build process with ng2-webpack-config ([5c8fcf1](https://github.com/valor-software/ng2-bootstrap/commit/5c8fcf1)) +* **docs:** added modals section ([6ab3a07](https://github.com/valor-software/ng2-bootstrap/commit/6ab3a07)) +* **docs:** applied new docs style ([d84211a](https://github.com/valor-software/ng2-bootstrap/commit/d84211a)) +* **docs:** menues and contents updated ([2155df6](https://github.com/valor-software/ng2-bootstrap/commit/2155df6)) +* **package:** angular updated to rc3, fix hash (active route) ([#636](https://github.com/valor-software/ng2-bootstrap/issues/636)) ([70a84cf](https://github.com/valor-software/ng2-bootstrap/commit/70a84cf)), closes [#636](https://github.com/valor-software/ng2-bootstrap/issues/636) +* **typeahead:** rxjs version ([#584](https://github.com/valor-software/ng2-bootstrap/issues/584)) ([48b8abb](https://github.com/valor-software/ng2-bootstrap/commit/48b8abb)), closes [#536](https://github.com/valor-software/ng2-bootstrap/issues/536) [#637](https://github.com/valor-software/ng2-bootstrap/issues/637) + + +### BREAKING CHANGES + +* dropdown: * dropdown property `disabled` renamed to `isDisabled` + + + ## [1.0.18](https://github.com/valor-software/ng2-bootstrap/compare/v1.0.17...v1.0.18) (2016-07-11) diff --git a/package.json b/package.json index f7297d39ad..2c3705e1b9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ng2-bootstrap", - "version": "1.0.18", + "version": "1.0.19", "description": "angular2 bootstrap components", "scripts": { "typedoc": "typedoc", From e01bfd55edda8ec5c8bf7a6fd7e85bf837860138 Mon Sep 17 00:00:00 2001 From: Dmitriy Schekhovtsov Date: Tue, 12 Jul 2016 02:22:28 +0300 Subject: [PATCH 05/24] chore(changelog): removed v1.0.18 --- CHANGELOG.md | 40 +--------------------------------------- 1 file changed, 1 insertion(+), 39 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b5d9cf4d3..617ea2ae25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,45 +35,7 @@ ### BREAKING CHANGES * dropdown: * dropdown property `disabled` renamed to `isDisabled` - - - - -## [1.0.18](https://github.com/valor-software/ng2-bootstrap/compare/v1.0.17...v1.0.18) (2016-07-11) - - -### Bug Fixes - -* **demo:** add "dropdownMenu" ([#580](https://github.com/valor-software/ng2-bootstrap/issues/580)) ([686a96e](https://github.com/valor-software/ng2-bootstrap/commit/686a96e)) -* **docs:** fix typo ([#612](https://github.com/valor-software/ng2-bootstrap/issues/612)) ([7ddd532](https://github.com/valor-software/ng2-bootstrap/commit/7ddd532)), closes [#612](https://github.com/valor-software/ng2-bootstrap/issues/612) -* **docs:** nonInput is by default ([#581](https://github.com/valor-software/ng2-bootstrap/issues/581)) ([b23ced0](https://github.com/valor-software/ng2-bootstrap/commit/b23ced0)) -* **dropdown:** explicitly markForCheck() ([#566](https://github.com/valor-software/ng2-bootstrap/issues/566)) ([0ce4328](https://github.com/valor-software/ng2-bootstrap/commit/0ce4328)) -* **dropdown:** prop disabled renamed to isDisabled ([#615](https://github.com/valor-software/ng2-bootstrap/issues/615)) ([8a1d6f8](https://github.com/valor-software/ng2-bootstrap/commit/8a1d6f8)) -* **header-component:** fix style ([ccfe948](https://github.com/valor-software/ng2-bootstrap/commit/ccfe948)) -* **modal:** don't hide on out click if backdrop === 'static' ([#629](https://github.com/valor-software/ng2-bootstrap/issues/629)) ([df85712](https://github.com/valor-software/ng2-bootstrap/commit/df85712)) -* **modal:** fix typo in MODAL_DIRECTIVES ([#630](https://github.com/valor-software/ng2-bootstrap/issues/630)) ([8c4c125](https://github.com/valor-software/ng2-bootstrap/commit/8c4c125)), closes [#630](https://github.com/valor-software/ng2-bootstrap/issues/630) -* **modals:** modal backdrop and onclick events handling ([b39b856](https://github.com/valor-software/ng2-bootstrap/commit/b39b856)), closes [#687](https://github.com/valor-software/ng2-bootstrap/issues/687) [#703](https://github.com/valor-software/ng2-bootstrap/issues/703) [#708](https://github.com/valor-software/ng2-bootstrap/issues/708) -* **package:** include js map files in bundles ([1ffd2b4](https://github.com/valor-software/ng2-bootstrap/commit/1ffd2b4)), closes [#632](https://github.com/valor-software/ng2-bootstrap/issues/632) -* **readme:** alert component name fixed ([e9a1d04](https://github.com/valor-software/ng2-bootstrap/commit/e9a1d04)), closes [#552](https://github.com/valor-software/ng2-bootstrap/issues/552) -* **style:** fix top menu z-index ([e70e578](https://github.com/valor-software/ng2-bootstrap/commit/e70e578)) -* **tests:** fix failing test for buttons and accordion ([8ea9c10](https://github.com/valor-software/ng2-bootstrap/commit/8ea9c10)) -* **typeahead:** removed incorrect behavior to do ENTER behavior on TAB. TAB should simply skip to next field as expected. ([#715](https://github.com/valor-software/ng2-bootstrap/issues/715)) ([758ad1b](https://github.com/valor-software/ng2-bootstrap/commit/758ad1b)), closes [#686](https://github.com/valor-software/ng2-bootstrap/issues/686) [#490](https://github.com/valor-software/ng2-bootstrap/issues/490) [#689](https://github.com/valor-software/ng2-bootstrap/issues/689) - - -### Features - -* **demo:** new build process with ng2-webpack-config ([5c8fcf1](https://github.com/valor-software/ng2-bootstrap/commit/5c8fcf1)) -* **docs:** added modals section ([6ab3a07](https://github.com/valor-software/ng2-bootstrap/commit/6ab3a07)) -* **docs:** applied new docs style ([d84211a](https://github.com/valor-software/ng2-bootstrap/commit/d84211a)) -* **docs:** menues and contents updated ([2155df6](https://github.com/valor-software/ng2-bootstrap/commit/2155df6)) -* **package:** angular updated to rc3, fix hash (active route) ([#636](https://github.com/valor-software/ng2-bootstrap/issues/636)) ([70a84cf](https://github.com/valor-software/ng2-bootstrap/commit/70a84cf)), closes [#636](https://github.com/valor-software/ng2-bootstrap/issues/636) -* **typeahead:** rxjs version ([#584](https://github.com/valor-software/ng2-bootstrap/issues/584)) ([48b8abb](https://github.com/valor-software/ng2-bootstrap/commit/48b8abb)), closes [#536](https://github.com/valor-software/ng2-bootstrap/issues/536) [#637](https://github.com/valor-software/ng2-bootstrap/issues/637) - - -### BREAKING CHANGES - -* dropdown: dropdown property `disabled` renamed to `isDisabled` -* ng2-bootstrap: missprint MODAL_DIRECTVES renamed to MODAL_DIRECTIVES +* ng2-bootstrap: misprint MODAL_DIRECTVES renamed to MODAL_DIRECTIVES From c661772de1ac736484775b1b5a25f7f2257886dc Mon Sep 17 00:00:00 2001 From: Dmitriy Schekhovtsov Date: Tue, 12 Jul 2016 02:40:49 +0300 Subject: [PATCH 06/24] fix(package): removed peer dependency to router --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 2c3705e1b9..4092c505cd 100644 --- a/package.json +++ b/package.json @@ -56,8 +56,7 @@ "@angular/common": "2.0.0-rc.4", "@angular/compiler": "2.0.0-rc.4", "@angular/core": "2.0.0-rc.4", - "@angular/forms": "0.2.0", - "@angular/router": "3.0.0-beta.2" + "@angular/forms": "0.2.0" }, "devDependencies": { "@angular/common": "2.0.0-rc.4", From 5e88303ea9b51bd539ca3848b474d45639036eba Mon Sep 17 00:00:00 2001 From: Dmitriy Schekhovtsov Date: Tue, 12 Jul 2016 02:41:29 +0300 Subject: [PATCH 07/24] 1.0.20 --- CHANGELOG.md | 10 ++++++++++ package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 617ea2ae25..bda515ef4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ + +## [1.0.20](https://github.com/valor-software/ng2-bootstrap/compare/v1.0.19...v1.0.20) (2016-07-11) + + +### Bug Fixes + +* **package:** removed peer dependency to router ([c661772](https://github.com/valor-software/ng2-bootstrap/commit/c661772)) + + + ## [1.0.19](https://github.com/valor-software/ng2-bootstrap/compare/v1.0.17...v1.0.19) (2016-07-11) diff --git a/package.json b/package.json index 4092c505cd..133233caf8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ng2-bootstrap", - "version": "1.0.19", + "version": "1.0.20", "description": "angular2 bootstrap components", "scripts": { "typedoc": "typedoc", From 50f3e09a484589f6cc1e7f49f5f42c8d306f3ec9 Mon Sep 17 00:00:00 2001 From: Dmitriy Shekhovtsov Date: Tue, 12 Jul 2016 13:39:37 +0300 Subject: [PATCH 08/24] chore(publish): enable source maps --- .npmignore | 2 +- components/carousel/carousel.component.ts | 1 - components/modal/modal-backdrop.component.ts | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.npmignore b/.npmignore index 27b70f34d8..c56966912f 100644 --- a/.npmignore +++ b/.npmignore @@ -18,7 +18,7 @@ webpack.config.js #typescript sources *.ts -*.js.map +#*.js.map !/bundles/*.js.map !*.d.ts /components/**/*.ts diff --git a/components/carousel/carousel.component.ts b/components/carousel/carousel.component.ts index a0f1b06975..80f2ade053 100644 --- a/components/carousel/carousel.component.ts +++ b/components/carousel/carousel.component.ts @@ -205,4 +205,3 @@ export class CarouselComponent implements OnDestroy { } } } - diff --git a/components/modal/modal-backdrop.component.ts b/components/modal/modal-backdrop.component.ts index 15f1f65227..359ce3ff2a 100644 --- a/components/modal/modal-backdrop.component.ts +++ b/components/modal/modal-backdrop.component.ts @@ -29,4 +29,3 @@ export class ModalBackdropComponent { this.element = element; } } - From ac6b92b0834b9321e643acf9d3baf836a24bede1 Mon Sep 17 00:00:00 2001 From: Dmitriy Shekhovtsov Date: Tue, 12 Jul 2016 13:40:40 +0300 Subject: [PATCH 09/24] 1.0.21 --- CHANGELOG.md | 5 +++++ package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bda515ef4d..842b4582a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ + +## [1.0.21](https://github.com/valor-software/ng2-bootstrap/compare/v1.0.20...v1.0.21) (2016-07-12) + + + ## [1.0.20](https://github.com/valor-software/ng2-bootstrap/compare/v1.0.19...v1.0.20) (2016-07-11) diff --git a/package.json b/package.json index 133233caf8..0d7924dc76 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ng2-bootstrap", - "version": "1.0.20", + "version": "1.0.21", "description": "angular2 bootstrap components", "scripts": { "typedoc": "typedoc", From fa7cca62450641229fdda47eac9f0e4c653f330d Mon Sep 17 00:00:00 2001 From: Dmitriy Shekhovtsov Date: Tue, 12 Jul 2016 13:58:52 +0300 Subject: [PATCH 10/24] chore(publish): disable source maps, they produce to much warnings --- .npmignore | 2 +- tsconfig.publish.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.npmignore b/.npmignore index c56966912f..27b70f34d8 100644 --- a/.npmignore +++ b/.npmignore @@ -18,7 +18,7 @@ webpack.config.js #typescript sources *.ts -#*.js.map +*.js.map !/bundles/*.js.map !*.d.ts /components/**/*.ts diff --git a/tsconfig.publish.json b/tsconfig.publish.json index 252e8305f8..ab8db11e70 100644 --- a/tsconfig.publish.json +++ b/tsconfig.publish.json @@ -5,7 +5,7 @@ "moduleResolution": "node", "emitDecoratorMetadata": true, "experimentalDecorators": true, - "sourceMap": true, + "sourceMap": false, "noEmitHelpers": false, "noImplicitAny": true, "declaration": true From fdbd4930853eb145bddb97815187fb9ce59d110d Mon Sep 17 00:00:00 2001 From: Dmitriy Shekhovtsov Date: Tue, 12 Jul 2016 14:00:17 +0300 Subject: [PATCH 11/24] 1.0.22 --- CHANGELOG.md | 5 +++++ package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 842b4582a3..3d9d17cba0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ + +## [1.0.22](https://github.com/valor-software/ng2-bootstrap/compare/v1.0.21...v1.0.22) (2016-07-12) + + + ## [1.0.21](https://github.com/valor-software/ng2-bootstrap/compare/v1.0.20...v1.0.21) (2016-07-12) diff --git a/package.json b/package.json index 0d7924dc76..6de4a44c94 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ng2-bootstrap", - "version": "1.0.21", + "version": "1.0.22", "description": "angular2 bootstrap components", "scripts": { "typedoc": "typedoc", From 1bc316fe1928b7c1861b28b1ae097879c3b3bfb9 Mon Sep 17 00:00:00 2001 From: GP Gooiker Date: Thu, 14 Jul 2016 13:39:04 +0200 Subject: [PATCH 12/24] fix(dropdown): Add the dropdown-menu class to dropdown menus fixes #541, closes #732 --- components/dropdown/dropdown-menu.directive.ts | 8 +++++++- components/dropdown/readme.md | 2 +- demo/components/dropdown/dropdown-demo.html | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/components/dropdown/dropdown-menu.directive.ts b/components/dropdown/dropdown-menu.directive.ts index a68ec296f6..a6e3960a16 100644 --- a/components/dropdown/dropdown-menu.directive.ts +++ b/components/dropdown/dropdown-menu.directive.ts @@ -1,10 +1,16 @@ -import {Directive, ElementRef, Host, OnInit} from '@angular/core'; +import {Directive, ElementRef, Host, OnInit, HostBinding} from '@angular/core'; import {DropdownDirective} from './dropdown.directive'; @Directive({selector: '[dropdownMenu]'}) export class DropdownMenuDirective implements OnInit { public dropdown:DropdownDirective; public el:ElementRef; + + /* tslint:disable:no-unused-variable */ + @HostBinding('class.dropdown-menu') + public addClass:boolean = true; + /* tslint:enable:no-unused-variable */ + public constructor(@Host() dropdown:DropdownDirective, el:ElementRef) { this.dropdown = dropdown; this.el = el; diff --git a/components/dropdown/readme.md b/components/dropdown/readme.md index 8e7e97c3ae..269d571b46 100644 --- a/components/dropdown/readme.md +++ b/components/dropdown/readme.md @@ -8,7 +8,7 @@ import { DROPDOWN_DIRECTIVES } from 'ng2-bootstrap/components/dropdown'; ```html
- +
diff --git a/demo/components/dropdown/dropdown-demo.html b/demo/components/dropdown/dropdown-demo.html index 624e4b3cee..aff3c3e700 100644 --- a/demo/components/dropdown/dropdown-demo.html +++ b/demo/components/dropdown/dropdown-demo.html @@ -16,7 +16,7 @@ -
diff --git a/demo/config.ts b/demo/config.ts index 944773c4bf..3fdd03a921 100644 --- a/demo/config.ts +++ b/demo/config.ts @@ -84,9 +84,7 @@ export const routes:RouterConfig = [ component: TypeaheadSectionComponent }, { path: '**', - redirectTo: '', - data: ['Getting started'], - component: GettingStartedSectionComponent + redirectTo: '/' } ]; diff --git a/demo/index.ts b/demo/index.ts index 62dc11938b..caac478010 100644 --- a/demo/index.ts +++ b/demo/index.ts @@ -4,7 +4,7 @@ import {Ng2BootstrapConfig, Ng2BootstrapTheme} from '../ng2-bootstrap'; import {MainMenuComponent} from './components/main-menu/main-menu.component'; import {TopMenuComponent} from './components/top-menu/top-menu.component'; import {bootstrap} from '@angular/platform-browser-dynamic'; -import {APP_BASE_HREF, HashLocationStrategy, LocationStrategy} from '@angular/common'; +import {HashLocationStrategy, LocationStrategy} from '@angular/common'; import {APP_ROUTER_PROVIDERS} from './config'; import {ROUTER_DIRECTIVES, Router, NavigationEnd} from '@angular/router'; @@ -56,6 +56,5 @@ bootstrap(DemoComponent, [ APP_ROUTER_PROVIDERS, disableDeprecatedForms(), provideForms(), - {provide: APP_BASE_HREF, useValue: '/'}, {provide: LocationStrategy, useClass: HashLocationStrategy} ]); From d95d57edaf43209a944468cb2440f44c4be78d21 Mon Sep 17 00:00:00 2001 From: Dmitriy Shekhovtsov Date: Mon, 18 Jul 2016 14:57:48 +0300 Subject: [PATCH 24/24] 1.0.24 --- CHANGELOG.md | 16 ++++++++++++++++ package.json | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index faaecb782a..8bc94e8874 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ + +## [1.0.24](https://github.com/valor-software/ng2-bootstrap/compare/v1.0.23...v1.0.24) (2016-07-18) + + +### Bug Fixes + +* **modals:** fixed modals fade in animation ([2b95c95](https://github.com/valor-software/ng2-bootstrap/commit/2b95c95)), closes [#687](https://github.com/valor-software/ng2-bootstrap/issues/687) + + +### Features + +* **tooltip:** add implementation for tooltipClass ([#664](https://github.com/valor-software/ng2-bootstrap/issues/664)) ([fa4475a](https://github.com/valor-software/ng2-bootstrap/commit/fa4475a)) +* **tooltip:** tooltip html content ([#724](https://github.com/valor-software/ng2-bootstrap/issues/724)) ([9070125](https://github.com/valor-software/ng2-bootstrap/commit/9070125)) + + + ## [1.0.23](https://github.com/valor-software/ng2-bootstrap/compare/v1.0.22...v1.0.23) (2016-07-14) diff --git a/package.json b/package.json index 3988cc5727..82712b0e86 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ng2-bootstrap", - "version": "1.0.23", + "version": "1.0.24", "description": "angular2 bootstrap components", "scripts": { "typedoc": "typedoc",