Skip to content

Commit

Permalink
Update to version 2.1.55
Browse files Browse the repository at this point in the history
  • Loading branch information
yaroslavOshyyko committed Jun 23, 2017
1 parent d093835 commit 977fd9c
Show file tree
Hide file tree
Showing 26 changed files with 58 additions and 50 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 2.1.55

### Features

* **add-product-component:** Get category from parentCategory=1, in text updates support for inner categories
* **add-props-component:** Sets parent category=1, in text updates support for inner categories

# 2.1.54

### Features
Expand Down
4 changes: 2 additions & 2 deletions modules/add-product-component/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodeart/add-product-component",
"version": "2.1.54",
"version": "2.1.55",
"description": "Form to add new product",
"main": "index.ts",
"scripts": {
Expand All @@ -9,6 +9,6 @@
"author": "",
"license": "ISC",
"dependencies": {
"@nodeart/productservice": "2.1.54"
"@nodeart/productservice": "2.1.55"
}
}
2 changes: 1 addition & 1 deletion modules/add-product-component/src/add-product.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ export class AddProductComponent implements OnInit {
* Get categories
*/
getCategories(){
this.productService.getCategories().subscribe( data => {
this.productService.getCategories('1').subscribe( data => {
if(data.val()) {
this.categories = data.val().map(item => {
item['_source']['id'] = item['_id'];
Expand Down
4 changes: 2 additions & 2 deletions modules/add-props-component/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@nodeart/add-props-component",
"description": "Form to add new categories, attributes, tags",
"version": "2.1.54",
"version": "2.1.55",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@nodeart/productservice": "2.1.54"
"@nodeart/productservice": "2.1.55"
}
}
3 changes: 2 additions & 1 deletion modules/add-props-component/src/add-props.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ export class AddPropsComponent implements OnInit {
this.categoryForm = fb.group({
name: '',
tags: [],
attrs: []
attrs: [],
parentCategory: '1'
});
this.attributeForm = fb.group({
name: '',
Expand Down
4 changes: 2 additions & 2 deletions modules/attributes-search-component/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nodeart/attributes-search-component",
"description": "Generate attrribute filter component that integrates into Product List Component",
"version": "2.1.54",
"version": "2.1.55",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand All @@ -13,6 +13,6 @@
"author": "",
"license": "ISC",
"dependencies": {
"@nodeart/productservice": "2.1.54"
"@nodeart/productservice": "2.1.55"
}
}
6 changes: 3 additions & 3 deletions modules/auth-service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodeart/auth-service",
"version": "2.1.54",
"version": "2.1.55",
"description": "",
"main": "index.ts",
"scripts": {
Expand All @@ -9,7 +9,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"@nodeart/dal": "2.1.54",
"@nodeart/session-flow": "2.1.54"
"@nodeart/dal": "2.1.55",
"@nodeart/session-flow": "2.1.55"
}
}
4 changes: 2 additions & 2 deletions modules/basket-component/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodeart/basket-component",
"version": "2.1.54",
"version": "2.1.55",
"description": "Display user basket",
"main": "index.ts",
"scripts": {
Expand All @@ -13,6 +13,6 @@
"author": "",
"license": "ISC",
"dependencies": {
"@nodeart/basketservice": "2.1.54"
"@nodeart/basketservice": "2.1.55"
}
}
6 changes: 3 additions & 3 deletions modules/basketservice/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodeart/basketservice",
"version": "2.1.54",
"version": "2.1.55",
"description": "Save and remove products in basket, track user basket history",
"main": "index.ts",
"scripts": {
Expand All @@ -13,7 +13,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"@nodeart/dal": "2.1.54",
"@nodeart/session-flow": "2.1.54"
"@nodeart/dal": "2.1.55",
"@nodeart/session-flow": "2.1.55"
}
}
4 changes: 2 additions & 2 deletions modules/categories-component/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nodeart/categories-component",
"description": "Component that display available Categories",
"version": "2.1.54",
"version": "2.1.55",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand All @@ -13,6 +13,6 @@
"author": "",
"license": "ISC",
"dependencies": {
"@nodeart/productservice": "2.1.54"
"@nodeart/productservice": "2.1.55"
}
}
2 changes: 1 addition & 1 deletion modules/category-filter-component/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
},
"author": "",
"license": "ISC",
"version": "2.1.54"
"version": "2.1.55"
}
4 changes: 2 additions & 2 deletions modules/dal/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodeart/dal",
"version": "2.1.54",
"version": "2.1.55",
"description": "Bridge for database connector(for now only Firebase).",
"main": "index.ts",
"scripts": {
Expand All @@ -9,6 +9,6 @@
"author": "",
"license": "ISC",
"dependencies": {
"@nodeart/firebase-connector": "2.1.54"
"@nodeart/firebase-connector": "2.1.55"
}
}
2 changes: 1 addition & 1 deletion modules/firebase-connector/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
"@types/jasmine": "2.2.30",
"@types/node": "6.0.54"
},
"version": "2.1.54"
"version": "2.1.55"
}
6 changes: 3 additions & 3 deletions modules/general-categories-all/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodeart/general-categories-all",
"version": "2.1.54",
"version": "2.1.55",
"description": "",
"main": "index.ts",
"scripts": {
Expand All @@ -9,7 +9,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"@nodeart/productservice": "2.1.54",
"@nodeart/loading-indicator": "2.1.54"
"@nodeart/productservice": "2.1.55",
"@nodeart/loading-indicator": "2.1.55"
}
}
2 changes: 1 addition & 1 deletion modules/loading-indicator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
},
"author": "",
"license": "ISC",
"version": "2.1.54"
"version": "2.1.55"
}
2 changes: 1 addition & 1 deletion modules/nodeart-components-loader/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
"dependencies": {
"loader-utils": "0.2.16"
},
"version": "2.1.54"
"version": "2.1.55"
}
4 changes: 2 additions & 2 deletions modules/payments-component/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodeart/payments-component",
"version": "2.1.54",
"version": "2.1.55",
"description": "",
"main": "index.ts",
"scripts": {
Expand All @@ -10,6 +10,6 @@
"license": "ISC",
"dependencies": {
"@types/stripe": "0.0.34",
"@nodeart/basketservice": "2.1.54"
"@nodeart/basketservice": "2.1.55"
}
}
6 changes: 3 additions & 3 deletions modules/product-component/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"author": "",
"license": "ISC",
"dependencies": {
"@nodeart/basketservice": "2.1.54",
"@nodeart/productservice": "2.1.54"
"@nodeart/basketservice": "2.1.55",
"@nodeart/productservice": "2.1.55"
},
"version": "2.1.54"
"version": "2.1.55"
}
8 changes: 4 additions & 4 deletions modules/products-general-component/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodeart/products-general-component",
"version": "2.1.54",
"version": "2.1.55",
"description": "",
"main": "index.ts",
"scripts": {
Expand All @@ -9,8 +9,8 @@
"author": "",
"license": "ISC",
"dependencies": {
"@nodeart/productservice": "2.1.54",
"@nodeart/category-filter-component": "2.1.54",
"@nodeart/general-categories-all": "2.1.54"
"@nodeart/productservice": "2.1.55",
"@nodeart/category-filter-component": "2.1.55",
"@nodeart/general-categories-all": "2.1.55"
}
}
8 changes: 4 additions & 4 deletions modules/products-list-component/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodeart/products-list-component",
"version": "2.1.54",
"version": "2.1.55",
"description": "Displays product from specific category",
"main": "index.ts",
"scripts": {
Expand All @@ -13,8 +13,8 @@
"author": "",
"license": "ISC",
"dependencies": {
"@nodeart/productservice": "2.1.54",
"@nodeart/attributes-search-component": "2.1.54",
"@nodeart/tags-search-component": "2.1.54"
"@nodeart/productservice": "2.1.55",
"@nodeart/attributes-search-component": "2.1.55",
"@nodeart/tags-search-component": "2.1.55"
}
}
4 changes: 2 additions & 2 deletions modules/productservice/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodeart/productservice",
"version": "2.1.54",
"version": "2.1.55",
"description": "Service that send work to DAL related to products (search, filted, get categories, attributes, tags etc.)",
"main": "index.ts",
"scripts": {
Expand All @@ -9,6 +9,6 @@
"author": "",
"license": "ISC",
"dependencies": {
"@nodeart/dal": "2.1.54"
"@nodeart/dal": "2.1.55"
}
}
4 changes: 2 additions & 2 deletions modules/search-bar-component/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodeart/search-bar-component",
"version": "2.1.54",
"version": "2.1.55",
"description": "Live search input for products",
"main": "index.ts",
"scripts": {
Expand All @@ -9,6 +9,6 @@
"author": "",
"license": "ISC",
"dependencies": {
"@nodeart/productservice": "2.1.54"
"@nodeart/productservice": "2.1.55"
}
}
4 changes: 2 additions & 2 deletions modules/seo-text-component/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodeart/seo-text-component",
"version": "2.1.54",
"version": "2.1.55",
"description": "Seo text component display seo text block of specific url",
"main": "index.ts",
"scripts": {
Expand All @@ -9,6 +9,6 @@
"author": "",
"license": "ISC",
"dependencies": {
"@nodeart/dal": "2.1.54"
"@nodeart/dal": "2.1.55"
}
}
2 changes: 1 addition & 1 deletion modules/session-flow/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
},
"author": "",
"license": "ISC",
"version": "2.1.54"
"version": "2.1.55"
}
4 changes: 2 additions & 2 deletions modules/tags-search-component/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodeart/tags-search-component",
"version": "2.1.54",
"version": "2.1.55",
"description": "Generate tags filter that integrate into Product List Component",
"main": "index.ts",
"scripts": {
Expand All @@ -13,6 +13,6 @@
"author": "",
"license": "ISC",
"dependencies": {
"@nodeart/productservice": "2.1.54"
"@nodeart/productservice": "2.1.55"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodeart/store-components",
"version": "2.1.54",
"version": "2.1.55",
"description": "Nodeart store components for quick and easy scaffolding of online store in Angular",
"main": "index.ts",
"scripts": {
Expand Down

0 comments on commit 977fd9c

Please sign in to comment.