diff --git a/.dockerignore b/.dockerignore
index 20cf9cd24e..d7673dbfac 100644
--- a/.dockerignore
+++ b/.dockerignore
@@ -14,3 +14,13 @@ integration
tools
demo-shell/src/
demo-shell/resources/
+/angular.json
+/desktop.ini
+/cspell.json
+/.travis.yml
+/CODE_OF_CONDUCT.md
+/.stylelintignore
+/ALFRESCOCORS.md
+/CONTRIBUTING.md
+/appveyor.yml
+/BROWSER-SUPPORT.md
diff --git a/.gitignore b/.gitignore
index 05cf3cd719..ef96eca235 100644
--- a/.gitignore
+++ b/.gitignore
@@ -31,3 +31,4 @@ src/environments/
/docs/docs.json
/protractorFailuresReport
coverage/
+/desktop.ini
diff --git a/.travis.yml b/.travis.yml
index 8f2dc8eba7..5923d9f4bc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -55,6 +55,7 @@ jobs:
- npm run stylelint || exit 1
- rm -rf tmp && (./scripts/smart-build.sh -b $TRAVIS_BRANCH || exit 1;);
- npm run build:dist || exit 1
+ - npm run bundlesize-check || exit 1
- stage: Unit test
name: core
script:
diff --git a/README.md b/README.md
index 0c76dac03d..1121952421 100644
--- a/README.md
+++ b/README.md
@@ -8,10 +8,6 @@
-
-
-
@@ -20,6 +16,7 @@
+
## Introduction
See the [Introduction page](INTRODUCTION.md) to get started with the Alfresco Application Development Framework.
diff --git a/assets/angular2.png b/assets/angular2.png
deleted file mode 100644
index 7355128e27..0000000000
Binary files a/assets/angular2.png and /dev/null differ
diff --git a/assets/browserstack.png b/assets/browserstack.png
deleted file mode 100644
index 5a0cea27a1..0000000000
Binary files a/assets/browserstack.png and /dev/null differ
diff --git a/demo-shell/proxy.conf.js b/demo-shell/proxy.conf.js
index 773c3410c6..7da0babb2f 100644
--- a/demo-shell/proxy.conf.js
+++ b/demo-shell/proxy.conf.js
@@ -15,7 +15,7 @@ module.exports = {
}
},
"/activiti-app": {
- "target": "http://localhost:9999",
+ "target": "http://localhost:8080",
"secure": false,
"pathRewrite": {
"^/activiti-app/activiti-app": ""
diff --git a/demo-shell/src/app/components/content-node-selector/content-node-selector.component.ts b/demo-shell/src/app/components/content-node-selector/content-node-selector.component.ts
index d933b7fa3f..62738bfed9 100644
--- a/demo-shell/src/app/components/content-node-selector/content-node-selector.component.ts
+++ b/demo-shell/src/app/components/content-node-selector/content-node-selector.component.ts
@@ -16,7 +16,7 @@
*/
import { Component, ViewEncapsulation } from '@angular/core';
-import { SitePaging, SiteEntry, MinimalNodeEntryEntity } from 'alfresco-js-api';
+import { SitePaging, SiteEntry, MinimalNodeEntryEntity } from '@alfresco/js-api';
import { ShareDataRow } from '@alfresco/adf-content-services';
import { DataRow, DataColumn, ThumbnailService } from '@alfresco/adf-core';
@@ -44,20 +44,20 @@ export class ContentNodeSelectorComponent {
customImageResolver: any = null;
defaultSites: SiteEntry[] = [
- { entry: { title: 'MINE', guid: '-my-' } },
- { entry: { title: 'ROOTY', guid: '-root-' } }];
+ new SiteEntry({ entry: { title: 'MINE', guid: '-my-' } }),
+ new SiteEntry({ entry: { title: 'ROOTY', guid: '-root-' } })];
- customSites: SitePaging = {
+ customSites: SitePaging = new SitePaging({
list: {
entries: [
{ entry: { title: 'MINE', guid: '-my-' } },
{ entry: { title: 'ROOTY', guid: '-root-' } }],
pagination: {}
}
- };
+ });
onClickAddSite() {
- const newSiteEntry: SiteEntry = { entry: { title: this.customSideTitle, guid: this.customSideGuid } };
+ const newSiteEntry: SiteEntry = new SiteEntry({ entry: { title: this.customSideTitle, guid: this.customSideGuid } });
this.customSites.list.entries.push(newSiteEntry);
this.customSideGuid = '';
this.customSideTitle = '';
diff --git a/demo-shell/src/app/components/file-view/file-view.component.html b/demo-shell/src/app/components/file-view/file-view.component.html
index 25490e12a2..78aeeee989 100644
--- a/demo-shell/src/app/components/file-view/file-view.component.html
+++ b/demo-shell/src/app/components/file-view/file-view.component.html
@@ -208,16 +208,6 @@
-
-
- Allow Share
-
-
-