diff --git a/ng2-components/ng2-alfresco-documentlist/README.md b/ng2-components/ng2-alfresco-documentlist/README.md index 553577f348..7ccfae68b1 100644 --- a/ng2-components/ng2-alfresco-documentlist/README.md +++ b/ng2-components/ng2-alfresco-documentlist/README.md @@ -193,7 +193,7 @@ _For a complete example source code please refer to [DocumentList Demo](https://github.com/Alfresco/alfresco-ng2-components/tree/master/ng2-components/ng2-alfresco-documentlist/demo) repository._ -### Breadcrumb +### Breadcrumb Component DocumentList provides simple breadcrumb element to indicate the current position within a navigation hierarchy. @@ -206,7 +206,12 @@ DocumentList provides simple breadcrumb element to indicate the current position ![Breadcrumb](docs/assets/breadcrumb.png) -Parent folder button is not displayed when breadcrumb is enabled. +#### Properties + +| Name | Type | Description | +| --- | --- | --- | +| `target` | DocumentList | DocumentList component to operate with. Upon clicks will instruct the given component to update. | +| `folderNode` | MinimalNodeEntryEntity | Active node, builds UI based on `folderNode.path.elements` collection. | ### Creation Menu Action diff --git a/ng2-components/ng2-alfresco-documentlist/package.json b/ng2-components/ng2-alfresco-documentlist/package.json index 8b94faf66f..307f0954b7 100644 --- a/ng2-components/ng2-alfresco-documentlist/package.json +++ b/ng2-components/ng2-alfresco-documentlist/package.json @@ -6,8 +6,8 @@ "scripts": { "clean": "npm install rimraf && npm run clean-build && rimraf dist node_modules typings", "clean-build": "rimraf index.js index.js.map index.d.ts'src/{,**/}**.js' 'src/{,**/}**.js.map' 'src/{,**/}**.d.ts' bundles", - "build": "npm run clean-build && npm run tslint && rimraf dist && npm run tsc && npm run build.umd", - "build:w": "npm run clean-build && npm run tslint && rimraf dist && npm run tsc:w && npm run build.umd", + "build": "npm run clean-build && npm run tslint && rimraf dist && npm run tsc && license-check && npm run build.umd", + "build:w": "npm run clean-build && npm run tslint && rimraf dist && npm run tsc:w && license-check && npm run build.umd", "tslint": "tslint -c tslint.json 'src/{,**/}**.ts' 'index.ts' -e '{,**/}**.d.ts' -e './gulpfile.ts'", "tsc": "tsc", "tsc:w": "tsc -w",