@oncehub/knowledgeowl-angular 4.1.6 → 4.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -102
- package/esm2020/lib/index.mjs +3 -0
- package/esm2020/lib/knowledge-owl-link/knowledge-owl-link-module.mjs +18 -0
- package/esm2020/lib/knowledge-owl-link/knowledge-owl-link.mjs +92 -0
- package/esm2020/lib/knowledge-owl-link/knowledge-owl-widget-errors.mjs +3 -0
- package/esm2020/lib/knowledge-owl-link/public-api.mjs +3 -0
- package/esm2020/lib/knowledge-owl-widget/knowledge-owl-widget-errors.mjs +4 -0
- package/esm2020/lib/knowledge-owl-widget/knowledge-owl-widget-module.mjs +19 -0
- package/esm2020/lib/knowledge-owl-widget/knowledge-owl-widget.mjs +143 -0
- package/esm2020/lib/knowledge-owl-widget/public-api.mjs +3 -0
- package/esm2020/oncehub-knowledgeowl-angular.mjs +5 -0
- package/esm2020/public_api.mjs +2 -0
- package/fesm2015/oncehub-knowledgeowl-angular.mjs +279 -0
- package/fesm2015/oncehub-knowledgeowl-angular.mjs.map +1 -0
- package/fesm2020/oncehub-knowledgeowl-angular.mjs +275 -0
- package/fesm2020/oncehub-knowledgeowl-angular.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/knowledge-owl-link/knowledge-owl-link-module.d.ts +8 -0
- package/lib/knowledge-owl-link/knowledge-owl-link.d.ts +37 -0
- package/lib/knowledge-owl-link/knowledge-owl-widget-errors.d.ts +2 -0
- package/lib/knowledge-owl-widget/knowledge-owl-widget-errors.d.ts +3 -0
- package/lib/knowledge-owl-widget/knowledge-owl-widget-module.d.ts +8 -0
- package/lib/knowledge-owl-widget/knowledge-owl-widget.d.ts +63 -0
- package/package.json +25 -51
- package/.eslintrc.json +0 -82
- package/.github/workflows/codeql-analysis.yml +0 -71
- package/.github/workflows/npm-publish.yml +0 -23
- package/.lighthouse/jenkins-x/Kptfile +0 -11
- package/.lighthouse/jenkins-x/pullrequest.yaml +0 -278
- package/.lighthouse/jenkins-x/release.yaml +0 -269
- package/.lighthouse/jenkins-x/triggers.yaml +0 -19
- package/.prettierignore +0 -2
- package/.prettierrc +0 -3
- package/.travis.yml +0 -3
- package/CHANGELOG.md +0 -250
- package/LICENSE +0 -21
- package/OWNERS +0 -4
- package/OWNERS_ALIASES +0 -25
- package/angular.json +0 -47
- package/deploy.sh +0 -19
- package/package-deploy/npm-login.js +0 -14
- package/src/README.md +0 -5
- package/src/lib/knowledge-owl-link/index.ts +0 -1
- package/src/lib/knowledge-owl-link/knowledge-owl-link-module.ts +0 -10
- package/src/lib/knowledge-owl-link/knowledge-owl-link.spec.ts +0 -51
- package/src/lib/knowledge-owl-link/knowledge-owl-link.ts +0 -97
- package/src/lib/knowledge-owl-link/knowledge-owl-widget-errors.ts +0 -3
- package/src/lib/knowledge-owl-widget/index.ts +0 -1
- package/src/lib/knowledge-owl-widget/knowledge-owl-widget-errors.ts +0 -6
- package/src/lib/knowledge-owl-widget/knowledge-owl-widget-module.ts +0 -11
- package/src/lib/knowledge-owl-widget/knowledge-owl-widget.spec.ts +0 -66
- package/src/lib/knowledge-owl-widget/knowledge-owl-widget.ts +0 -162
- package/src/lib/tsconfig.json +0 -10
- package/src/ng-package.json +0 -7
- package/src/package-lock.json +0 -117
- package/src/package.json +0 -14
- package/src/polyfills.ts +0 -76
- package/src/tsconfig.lib.json +0 -31
- package/src/tsconfig.spec.json +0 -18
- package/test/karma.conf.js +0 -44
- package/test/test.ts +0 -24
- package/tsconfig.json +0 -34
- package/tsconfig.lib.prod.json +0 -9
- /package/{src/lib/index.ts → lib/index.d.ts} +0 -0
- /package/{src/lib/knowledge-owl-link/public-api.ts → lib/knowledge-owl-link/public-api.d.ts} +0 -0
- /package/{src/lib/knowledge-owl-widget/public-api.ts → lib/knowledge-owl-widget/public-api.d.ts} +0 -0
- /package/{src/public_api.ts → public_api.d.ts} +0 -0
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import { NgModule } from '@angular/core';
|
|
3
|
-
import { KnowledgeOwlLink } from './knowledge-owl-link';
|
|
4
|
-
|
|
5
|
-
@NgModule({
|
|
6
|
-
imports: [CommonModule],
|
|
7
|
-
exports: [KnowledgeOwlLink],
|
|
8
|
-
declarations: [KnowledgeOwlLink],
|
|
9
|
-
})
|
|
10
|
-
export class KnowledgeOwlLinkModule {}
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import { Component, Provider, Type } from '@angular/core';
|
|
2
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
3
|
-
import { KnowledgeOwlLinkModule } from './index';
|
|
4
|
-
import { getKnowledgeLinkArticleMissingError } from './knowledge-owl-widget-errors';
|
|
5
|
-
|
|
6
|
-
@Component({
|
|
7
|
-
template: `<a knowledgeOwlLink>Test link</a>`,
|
|
8
|
-
})
|
|
9
|
-
class KnowledgeOwlLinkWithoutArticle {}
|
|
10
|
-
|
|
11
|
-
@Component({
|
|
12
|
-
template: `
|
|
13
|
-
<a knowledgeOwlLink="https://knowledgeowl.article.com/help/test-article"
|
|
14
|
-
>Test link</a
|
|
15
|
-
>
|
|
16
|
-
`,
|
|
17
|
-
})
|
|
18
|
-
class KnowledgeOwlLinkWithValidInputs {}
|
|
19
|
-
|
|
20
|
-
describe('KnowledgeOwl link with missing credentials', () => {
|
|
21
|
-
it('should throw error without knowledgeOwlLink', () => {
|
|
22
|
-
const fixture = createComponent(KnowledgeOwlLinkWithoutArticle, [
|
|
23
|
-
{ provide: 'KOProjectURL', useValue: 'https://knowledgeowl.com' },
|
|
24
|
-
]);
|
|
25
|
-
expect(() => fixture.detectChanges()).toThrowError(
|
|
26
|
-
getKnowledgeLinkArticleMissingError().message
|
|
27
|
-
);
|
|
28
|
-
});
|
|
29
|
-
});
|
|
30
|
-
|
|
31
|
-
describe('KnowledgeOwl link', () => {
|
|
32
|
-
it('should not throw error when given correct inputs', () => {
|
|
33
|
-
const fixture = createComponent(KnowledgeOwlLinkWithValidInputs, [
|
|
34
|
-
{ provide: 'KOProjectURL', useValue: 'https://knowledgeowl.com' },
|
|
35
|
-
]);
|
|
36
|
-
expect(() => fixture.detectChanges()).not.toThrowError();
|
|
37
|
-
});
|
|
38
|
-
});
|
|
39
|
-
|
|
40
|
-
const createComponent = <T>(
|
|
41
|
-
component: Type<T>,
|
|
42
|
-
providers: Provider[] = []
|
|
43
|
-
): ComponentFixture<T> => {
|
|
44
|
-
TestBed.configureTestingModule({
|
|
45
|
-
imports: [KnowledgeOwlLinkModule],
|
|
46
|
-
declarations: [component],
|
|
47
|
-
providers,
|
|
48
|
-
}).compileComponents();
|
|
49
|
-
|
|
50
|
-
return TestBed.createComponent<T>(component);
|
|
51
|
-
};
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
AfterContentInit,
|
|
3
|
-
ElementRef,
|
|
4
|
-
HostListener,
|
|
5
|
-
Inject,
|
|
6
|
-
Input,
|
|
7
|
-
Directive,
|
|
8
|
-
} from '@angular/core';
|
|
9
|
-
import { getKnowledgeLinkArticleMissingError } from './knowledge-owl-widget-errors';
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* Knowledge Owl Link
|
|
13
|
-
*/
|
|
14
|
-
@Directive({
|
|
15
|
-
selector: `a[knowledgeOwlLink]`,
|
|
16
|
-
exportAs: 'knowledgeOwlLink',
|
|
17
|
-
})
|
|
18
|
-
export class KnowledgeOwlLink implements AfterContentInit {
|
|
19
|
-
@Input()
|
|
20
|
-
knowledgeOwlLink: string;
|
|
21
|
-
|
|
22
|
-
constructor(
|
|
23
|
-
protected elementRef: ElementRef,
|
|
24
|
-
@Inject('KOProjectURL') private projectURL: string
|
|
25
|
-
) {}
|
|
26
|
-
|
|
27
|
-
getHostElement(): HTMLElement {
|
|
28
|
-
return this.elementRef.nativeElement;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
ngAfterContentInit(): void {
|
|
32
|
-
this._validateLinkInputs();
|
|
33
|
-
this._initLink();
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
@HostListener('click', ['$event'])
|
|
37
|
-
openArticle(event: Event): void {
|
|
38
|
-
event.preventDefault();
|
|
39
|
-
// Convert the KO link into the widget link
|
|
40
|
-
let widgetHref;
|
|
41
|
-
if (this.knowledgeOwlLink.includes('#')) {
|
|
42
|
-
const widgetlink = this.knowledgeOwlLink.split('#');
|
|
43
|
-
const widgetlink1 =
|
|
44
|
-
widgetlink[0].replace('/help/', '/help/fetch-article/hash/') +
|
|
45
|
-
'?widget=true';
|
|
46
|
-
const widgetlink2 = '#' + widgetlink[1];
|
|
47
|
-
widgetHref = widgetlink1.concat(widgetlink2);
|
|
48
|
-
} else {
|
|
49
|
-
widgetHref =
|
|
50
|
-
this.knowledgeOwlLink.replace('/help/', '/help/fetch-article/hash/') +
|
|
51
|
-
'?widget=true';
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
if (window['__ko16']) {
|
|
55
|
-
// Wait until widget loads completely
|
|
56
|
-
window['__ko16'].openArticle(widgetHref);
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
/**
|
|
61
|
-
* Private methods
|
|
62
|
-
*/
|
|
63
|
-
|
|
64
|
-
/**
|
|
65
|
-
* Initialize link
|
|
66
|
-
*
|
|
67
|
-
* @private
|
|
68
|
-
*/
|
|
69
|
-
private _initLink() {
|
|
70
|
-
this.knowledgeOwlLink = `${this.projectURL}/help/${this.knowledgeOwlLink}`; // Updating article link to have complete URL
|
|
71
|
-
const nativeElement = this.getHostElement();
|
|
72
|
-
if (nativeElement.tagName === 'A') {
|
|
73
|
-
// Updating link for <a>
|
|
74
|
-
nativeElement.setAttribute('href', this.knowledgeOwlLink);
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
/**
|
|
79
|
-
* Validates all required inputs of knowledge-owl-link
|
|
80
|
-
*
|
|
81
|
-
* @private
|
|
82
|
-
*/
|
|
83
|
-
private _validateLinkInputs() {
|
|
84
|
-
this._validateArticlePresence();
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
/**
|
|
88
|
-
* Validates presence of article URL for link
|
|
89
|
-
*
|
|
90
|
-
* @private
|
|
91
|
-
*/
|
|
92
|
-
private _validateArticlePresence() {
|
|
93
|
-
if (!this.knowledgeOwlLink) {
|
|
94
|
-
throw getKnowledgeLinkArticleMissingError();
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './public-api';
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
/** @docs-private */
|
|
2
|
-
export const getKnowledgeWidgetPoductKeyMissingError = (): Error =>
|
|
3
|
-
Error('knowledge-owl-widget requires product key as input.');
|
|
4
|
-
|
|
5
|
-
export const getKnowledgeWidgetInvalidProductURLError = (): Error =>
|
|
6
|
-
Error('knowledge-owl-widget requires valid product URL as provider.');
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { KnowledgeOwlWidget } from './knowledge-owl-widget';
|
|
4
|
-
|
|
5
|
-
@NgModule({
|
|
6
|
-
imports: [CommonModule],
|
|
7
|
-
exports: [KnowledgeOwlWidget],
|
|
8
|
-
declarations: [KnowledgeOwlWidget],
|
|
9
|
-
providers: [],
|
|
10
|
-
})
|
|
11
|
-
export class KnowledgeOwlWidgetModule {}
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
import { Component, Provider, Type } from '@angular/core';
|
|
2
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
3
|
-
import { KnowledgeOwlWidgetModule } from './index';
|
|
4
|
-
import {
|
|
5
|
-
getKnowledgeWidgetPoductKeyMissingError,
|
|
6
|
-
getKnowledgeWidgetInvalidProductURLError,
|
|
7
|
-
} from './knowledge-owl-widget-errors';
|
|
8
|
-
|
|
9
|
-
@Component({
|
|
10
|
-
template: `<knowledge-owl-widget></knowledge-owl-widget>`,
|
|
11
|
-
})
|
|
12
|
-
class KnowledgeOwlWidgetWithoutCredentials {}
|
|
13
|
-
|
|
14
|
-
@Component({
|
|
15
|
-
template: `<knowledge-owl-widget></knowledge-owl-widget>`,
|
|
16
|
-
})
|
|
17
|
-
class KnowledgeOwlWidgetWithoutProjectKey {}
|
|
18
|
-
|
|
19
|
-
@Component({
|
|
20
|
-
template: `
|
|
21
|
-
<knowledge-owl-widget [projectKey]="'testkey'"></knowledge-owl-widget>
|
|
22
|
-
`,
|
|
23
|
-
})
|
|
24
|
-
class KnowledgeOwlWidgetWithCredentials {}
|
|
25
|
-
|
|
26
|
-
describe('KnowledgeOwl widget with missing credentials', () => {
|
|
27
|
-
it('should throw KnowledgeWidgetProductURLMissingError error', () => {
|
|
28
|
-
const fixture = createComponent(KnowledgeOwlWidgetWithoutCredentials, [
|
|
29
|
-
{ provide: 'KOProjectURL', useValue: 'https://' },
|
|
30
|
-
]);
|
|
31
|
-
expect(() => fixture.detectChanges()).toThrowError(
|
|
32
|
-
getKnowledgeWidgetInvalidProductURLError().message
|
|
33
|
-
);
|
|
34
|
-
});
|
|
35
|
-
|
|
36
|
-
it('should throw KnowledgeWidgetProductKeyMissingError error', () => {
|
|
37
|
-
const fixture = createComponent(KnowledgeOwlWidgetWithoutProjectKey, [
|
|
38
|
-
{ provide: 'KOProjectURL', useValue: 'https://knowledgeowl.com' },
|
|
39
|
-
]);
|
|
40
|
-
expect(() => fixture.detectChanges()).toThrowError(
|
|
41
|
-
getKnowledgeWidgetPoductKeyMissingError().message
|
|
42
|
-
);
|
|
43
|
-
});
|
|
44
|
-
});
|
|
45
|
-
|
|
46
|
-
describe('KnowledgeOwl widget', () => {
|
|
47
|
-
it('should not throw error when given correct inputs', () => {
|
|
48
|
-
const fixture = createComponent(KnowledgeOwlWidgetWithCredentials, [
|
|
49
|
-
{ provide: 'KOProjectURL', useValue: 'https://knowledgeowl.com' },
|
|
50
|
-
]);
|
|
51
|
-
expect(() => fixture.detectChanges()).not.toThrowError();
|
|
52
|
-
});
|
|
53
|
-
});
|
|
54
|
-
|
|
55
|
-
const createComponent = <T>(
|
|
56
|
-
component: Type<T>,
|
|
57
|
-
providers: Provider[] = []
|
|
58
|
-
): ComponentFixture<T> => {
|
|
59
|
-
TestBed.configureTestingModule({
|
|
60
|
-
imports: [KnowledgeOwlWidgetModule],
|
|
61
|
-
declarations: [component],
|
|
62
|
-
providers,
|
|
63
|
-
}).compileComponents();
|
|
64
|
-
|
|
65
|
-
return TestBed.createComponent<T>(component);
|
|
66
|
-
};
|
|
@@ -1,162 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
AfterContentInit,
|
|
3
|
-
ChangeDetectionStrategy,
|
|
4
|
-
Component,
|
|
5
|
-
Inject,
|
|
6
|
-
Input,
|
|
7
|
-
OnInit,
|
|
8
|
-
ViewEncapsulation,
|
|
9
|
-
} from '@angular/core';
|
|
10
|
-
import {
|
|
11
|
-
getKnowledgeWidgetPoductKeyMissingError,
|
|
12
|
-
getKnowledgeWidgetInvalidProductURLError,
|
|
13
|
-
} from './knowledge-owl-widget-errors';
|
|
14
|
-
|
|
15
|
-
/** Regex to validate article URL is valid or not */
|
|
16
|
-
const urlValidatorRegex =
|
|
17
|
-
/(http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/;
|
|
18
|
-
|
|
19
|
-
@Component({
|
|
20
|
-
selector: 'knowledge-owl-widget',
|
|
21
|
-
template: '',
|
|
22
|
-
encapsulation: ViewEncapsulation.None,
|
|
23
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
24
|
-
exportAs: 'knowledgeOwlWidget',
|
|
25
|
-
providers: [],
|
|
26
|
-
})
|
|
27
|
-
export class KnowledgeOwlWidget implements OnInit, AfterContentInit {
|
|
28
|
-
/** Flag to check initial page location updated */
|
|
29
|
-
isPageLocationUpdated = false;
|
|
30
|
-
|
|
31
|
-
/** Product key to access KnowledgeOwl widget. */
|
|
32
|
-
@Input()
|
|
33
|
-
projectKey: string;
|
|
34
|
-
|
|
35
|
-
/** Current page location for widget context. */
|
|
36
|
-
private _pageLocation: string;
|
|
37
|
-
@Input() set pageLocation(value: string) {
|
|
38
|
-
this._pageLocation = value.trim();
|
|
39
|
-
this._updatePageLocation();
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
get pageLocation(): string {
|
|
43
|
-
return this._pageLocation;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
constructor(@Inject('KOProjectURL') private projectURL: string) {}
|
|
47
|
-
|
|
48
|
-
ngOnInit(): void {
|
|
49
|
-
this._initWidget();
|
|
50
|
-
this._loadScript();
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
ngAfterContentInit(): void {
|
|
54
|
-
this._validateWidgetInputs();
|
|
55
|
-
this._initPageLocation();
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
/** Opens the widget. */
|
|
59
|
-
open(article = ''): void {
|
|
60
|
-
if (!window['__ko16']) {
|
|
61
|
-
return;
|
|
62
|
-
}
|
|
63
|
-
if (article) {
|
|
64
|
-
const widgetHref = `${this.projectURL}/help/fetch-article/hash/${article}`;
|
|
65
|
-
window['__ko16'].openArticle(widgetHref);
|
|
66
|
-
} else {
|
|
67
|
-
window['__ko16']._toggleOpen();
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
/**
|
|
72
|
-
* Validates the widget's inputs.
|
|
73
|
-
*
|
|
74
|
-
* @private
|
|
75
|
-
*/
|
|
76
|
-
protected _validateWidgetInputs(): void {
|
|
77
|
-
this._validateProductURL();
|
|
78
|
-
this._validateProductKey();
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
/**
|
|
82
|
-
* Private methods
|
|
83
|
-
*/
|
|
84
|
-
|
|
85
|
-
/**
|
|
86
|
-
* Throws an error if the productKey input is missing.
|
|
87
|
-
*
|
|
88
|
-
* @private
|
|
89
|
-
*/
|
|
90
|
-
private _validateProductKey() {
|
|
91
|
-
if (!this.projectKey) {
|
|
92
|
-
throw getKnowledgeWidgetPoductKeyMissingError();
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
/**
|
|
97
|
-
* Throws an error if the productURL input is missing.
|
|
98
|
-
*
|
|
99
|
-
* @private
|
|
100
|
-
*/
|
|
101
|
-
private _validateProductURL() {
|
|
102
|
-
if (!this.projectURL || !urlValidatorRegex.test(this.projectURL)) {
|
|
103
|
-
throw getKnowledgeWidgetInvalidProductURLError();
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
/**
|
|
108
|
-
* Initializes the widget.
|
|
109
|
-
*
|
|
110
|
-
* @private
|
|
111
|
-
*/
|
|
112
|
-
private _initWidget() {
|
|
113
|
-
const ko16p = [];
|
|
114
|
-
ko16p.push(['_setProject', this.projectKey]);
|
|
115
|
-
window['_ko16_p'] = ko16p;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
/**
|
|
119
|
-
* Loads script into page
|
|
120
|
-
*
|
|
121
|
-
* @private
|
|
122
|
-
*/
|
|
123
|
-
private _loadScript() {
|
|
124
|
-
const ko = document.createElement('script');
|
|
125
|
-
ko.type = 'text/javascript';
|
|
126
|
-
ko.async = true;
|
|
127
|
-
ko.src = `${this.projectURL}/javascript/ko-index?__pc=${this.projectKey}`;
|
|
128
|
-
document.head.appendChild(ko);
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
/**
|
|
132
|
-
* Init page location first time
|
|
133
|
-
*/
|
|
134
|
-
private _initPageLocation() {
|
|
135
|
-
const updatePageLocationInterval = setInterval(() => {
|
|
136
|
-
if (!this.pageLocation || this.isPageLocationUpdated) {
|
|
137
|
-
clearInterval(updatePageLocationInterval);
|
|
138
|
-
}
|
|
139
|
-
if (
|
|
140
|
-
!this.isPageLocationUpdated &&
|
|
141
|
-
window['__ko16'] &&
|
|
142
|
-
this.pageLocation
|
|
143
|
-
) {
|
|
144
|
-
// Updating page location once
|
|
145
|
-
window['__ko16'].updatePageLoc(this.pageLocation);
|
|
146
|
-
this.isPageLocationUpdated = true;
|
|
147
|
-
}
|
|
148
|
-
});
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
/**
|
|
152
|
-
* Update page location on change
|
|
153
|
-
*
|
|
154
|
-
* @private
|
|
155
|
-
*/
|
|
156
|
-
private _updatePageLocation() {
|
|
157
|
-
if (!window['__ko16'] || !this.pageLocation) {
|
|
158
|
-
return;
|
|
159
|
-
}
|
|
160
|
-
window['__ko16'].updatePageLoc(this.pageLocation);
|
|
161
|
-
}
|
|
162
|
-
}
|
package/src/lib/tsconfig.json
DELETED
package/src/ng-package.json
DELETED
package/src/package-lock.json
DELETED
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "knowledgeowl-angular",
|
|
3
|
-
"version": "4.1.3",
|
|
4
|
-
"lockfileVersion": 2,
|
|
5
|
-
"requires": true,
|
|
6
|
-
"packages": {
|
|
7
|
-
"": {
|
|
8
|
-
"name": "knowledgeowl-angular",
|
|
9
|
-
"version": "4.1.3",
|
|
10
|
-
"license": "MIT",
|
|
11
|
-
"peerDependencies": {
|
|
12
|
-
"@angular/common": "14.2.12",
|
|
13
|
-
"@angular/core": "14.2.12"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"node_modules/@angular/common": {
|
|
17
|
-
"version": "14.2.12",
|
|
18
|
-
"resolved": "https://registry.npmjs.org/@angular/common/-/common-14.2.12.tgz",
|
|
19
|
-
"integrity": "sha512-oZunh9wfInFWhNO1P8uoEs/o4u8kerKMhw8GruywKm1TV7gHDP2Fi5WHGjFqq3XYptgBTPCTSEfyLX6Cwq1PUw==",
|
|
20
|
-
"peer": true,
|
|
21
|
-
"dependencies": {
|
|
22
|
-
"tslib": "^2.3.0"
|
|
23
|
-
},
|
|
24
|
-
"engines": {
|
|
25
|
-
"node": "^14.15.0 || >=16.10.0"
|
|
26
|
-
},
|
|
27
|
-
"peerDependencies": {
|
|
28
|
-
"@angular/core": "14.2.12",
|
|
29
|
-
"rxjs": "^6.5.3 || ^7.4.0"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
"node_modules/@angular/core": {
|
|
33
|
-
"version": "14.2.12",
|
|
34
|
-
"resolved": "https://registry.npmjs.org/@angular/core/-/core-14.2.12.tgz",
|
|
35
|
-
"integrity": "sha512-sGQxU5u4uawwvJa6jOTmGoisJiQ5HIN/RoBw99CmoqZIVyUSg9IRJJC1KVdH8gbpWBNLkElZv21lwJTL/msWyg==",
|
|
36
|
-
"peer": true,
|
|
37
|
-
"dependencies": {
|
|
38
|
-
"tslib": "^2.3.0"
|
|
39
|
-
},
|
|
40
|
-
"engines": {
|
|
41
|
-
"node": "^14.15.0 || >=16.10.0"
|
|
42
|
-
},
|
|
43
|
-
"peerDependencies": {
|
|
44
|
-
"rxjs": "^6.5.3 || ^7.4.0",
|
|
45
|
-
"zone.js": "~0.11.4 || ~0.12.0"
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
"node_modules/rxjs": {
|
|
49
|
-
"version": "7.8.1",
|
|
50
|
-
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz",
|
|
51
|
-
"integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==",
|
|
52
|
-
"peer": true,
|
|
53
|
-
"dependencies": {
|
|
54
|
-
"tslib": "^2.1.0"
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
"node_modules/tslib": {
|
|
58
|
-
"version": "2.6.0",
|
|
59
|
-
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz",
|
|
60
|
-
"integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==",
|
|
61
|
-
"peer": true
|
|
62
|
-
},
|
|
63
|
-
"node_modules/zone.js": {
|
|
64
|
-
"version": "0.12.0",
|
|
65
|
-
"resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.12.0.tgz",
|
|
66
|
-
"integrity": "sha512-XtC+I5dXU14HrzidAKBNMqneIVUykLEAA1x+v4KVrd6AUPWlwYORF8KgsVqvgdHiKZ4BkxxjvYi/ksEixTPR0Q==",
|
|
67
|
-
"peer": true,
|
|
68
|
-
"dependencies": {
|
|
69
|
-
"tslib": "^2.3.0"
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
},
|
|
73
|
-
"dependencies": {
|
|
74
|
-
"@angular/common": {
|
|
75
|
-
"version": "14.2.12",
|
|
76
|
-
"resolved": "https://registry.npmjs.org/@angular/common/-/common-14.2.12.tgz",
|
|
77
|
-
"integrity": "sha512-oZunh9wfInFWhNO1P8uoEs/o4u8kerKMhw8GruywKm1TV7gHDP2Fi5WHGjFqq3XYptgBTPCTSEfyLX6Cwq1PUw==",
|
|
78
|
-
"peer": true,
|
|
79
|
-
"requires": {
|
|
80
|
-
"tslib": "^2.3.0"
|
|
81
|
-
}
|
|
82
|
-
},
|
|
83
|
-
"@angular/core": {
|
|
84
|
-
"version": "14.2.12",
|
|
85
|
-
"resolved": "https://registry.npmjs.org/@angular/core/-/core-14.2.12.tgz",
|
|
86
|
-
"integrity": "sha512-sGQxU5u4uawwvJa6jOTmGoisJiQ5HIN/RoBw99CmoqZIVyUSg9IRJJC1KVdH8gbpWBNLkElZv21lwJTL/msWyg==",
|
|
87
|
-
"peer": true,
|
|
88
|
-
"requires": {
|
|
89
|
-
"tslib": "^2.3.0"
|
|
90
|
-
}
|
|
91
|
-
},
|
|
92
|
-
"rxjs": {
|
|
93
|
-
"version": "7.8.1",
|
|
94
|
-
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz",
|
|
95
|
-
"integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==",
|
|
96
|
-
"peer": true,
|
|
97
|
-
"requires": {
|
|
98
|
-
"tslib": "^2.1.0"
|
|
99
|
-
}
|
|
100
|
-
},
|
|
101
|
-
"tslib": {
|
|
102
|
-
"version": "2.6.0",
|
|
103
|
-
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz",
|
|
104
|
-
"integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==",
|
|
105
|
-
"peer": true
|
|
106
|
-
},
|
|
107
|
-
"zone.js": {
|
|
108
|
-
"version": "0.12.0",
|
|
109
|
-
"resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.12.0.tgz",
|
|
110
|
-
"integrity": "sha512-XtC+I5dXU14HrzidAKBNMqneIVUykLEAA1x+v4KVrd6AUPWlwYORF8KgsVqvgdHiKZ4BkxxjvYi/ksEixTPR0Q==",
|
|
111
|
-
"peer": true,
|
|
112
|
-
"requires": {
|
|
113
|
-
"tslib": "^2.3.0"
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
}
|
package/src/package.json
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "knowledgeowl-angular",
|
|
3
|
-
"version": "4.1.3",
|
|
4
|
-
"description": "Knowledge Owl Angular",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"repository": {
|
|
7
|
-
"type": "git",
|
|
8
|
-
"url": "https://github.com/scheduleonce/knowledgeowl-angular"
|
|
9
|
-
},
|
|
10
|
-
"peerDependencies": {
|
|
11
|
-
"@angular/common": "14.2.12",
|
|
12
|
-
"@angular/core": "14.2.12"
|
|
13
|
-
}
|
|
14
|
-
}
|
package/src/polyfills.ts
DELETED
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file includes polyfills needed by Angular and is loaded before the app.
|
|
3
|
-
* You can add your own extra polyfills to this file.
|
|
4
|
-
*
|
|
5
|
-
* This file is divided into 2 sections:
|
|
6
|
-
* 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
|
|
7
|
-
* 2. Application imports. Files imported after ZoneJS that should be loaded before your main
|
|
8
|
-
* file.
|
|
9
|
-
*
|
|
10
|
-
* The current setup is for so-called "evergreen" browsers; the last versions of browsers that
|
|
11
|
-
* automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),
|
|
12
|
-
* Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.
|
|
13
|
-
*
|
|
14
|
-
* Learn more in https://angular.io/docs/ts/latest/guide/browser-support.html
|
|
15
|
-
*/
|
|
16
|
-
|
|
17
|
-
/***************************************************************************************************
|
|
18
|
-
* BROWSER POLYFILLS
|
|
19
|
-
*/
|
|
20
|
-
|
|
21
|
-
/** IE9, IE10 and IE11 requires all of the following polyfills. **/
|
|
22
|
-
// import 'core-js/es6/symbol';
|
|
23
|
-
// import 'core-js/es6/object';
|
|
24
|
-
// import 'core-js/es6/function';
|
|
25
|
-
// import 'core-js/es6/parse-int';
|
|
26
|
-
// import 'core-js/es6/parse-float';
|
|
27
|
-
// import 'core-js/es6/number';
|
|
28
|
-
// import 'core-js/es6/math';
|
|
29
|
-
// import 'core-js/es6/string';
|
|
30
|
-
// import 'core-js/es6/date';
|
|
31
|
-
// import 'core-js/es6/array';
|
|
32
|
-
// import 'core-js/es6/regexp';
|
|
33
|
-
// import 'core-js/es6/map';
|
|
34
|
-
// import 'core-js/es6/weak-map';
|
|
35
|
-
// import 'core-js/es6/set';
|
|
36
|
-
|
|
37
|
-
/** IE10 and IE11 requires the following for NgClass support on SVG elements */
|
|
38
|
-
// import 'classlist.js'; // Run `npm install --save classlist.js`.
|
|
39
|
-
|
|
40
|
-
/** IE10 and IE11 requires the following for the Reflect API. */
|
|
41
|
-
// import 'core-js/es6/reflect';
|
|
42
|
-
|
|
43
|
-
/** Evergreen browsers require these. **/
|
|
44
|
-
// Used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove.
|
|
45
|
-
import 'core-js/es7/reflect';
|
|
46
|
-
|
|
47
|
-
/**
|
|
48
|
-
* Web Animations `@angular/platform-browser/animations`
|
|
49
|
-
* Only required if AnimationBuilder is used within the application and using IE/Edge or Safari.
|
|
50
|
-
* Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0).
|
|
51
|
-
**/
|
|
52
|
-
// import 'web-animations-js'; // Run `npm install --save web-animations-js`.
|
|
53
|
-
|
|
54
|
-
/**
|
|
55
|
-
* By default, zone.js will patch all possible macroTask and DomEvents
|
|
56
|
-
* user can disable parts of macroTask/DomEvents patch by setting following flags
|
|
57
|
-
*/
|
|
58
|
-
|
|
59
|
-
// (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame
|
|
60
|
-
// (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick
|
|
61
|
-
// (window as any).__zone_symbol__BLACK_LISTED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames
|
|
62
|
-
|
|
63
|
-
/*
|
|
64
|
-
* in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js
|
|
65
|
-
* with the following flag, it will bypass `zone.js` patch for IE/Edge
|
|
66
|
-
*/
|
|
67
|
-
// (window as any).__Zone_enable_cross_context_check = true;
|
|
68
|
-
|
|
69
|
-
/***************************************************************************************************
|
|
70
|
-
* Zone JS is required by default for Angular itself.
|
|
71
|
-
*/
|
|
72
|
-
import 'zone.js'; // Included with Angular CLI.
|
|
73
|
-
|
|
74
|
-
/***************************************************************************************************
|
|
75
|
-
* APPLICATION IMPORTS
|
|
76
|
-
*/
|
package/src/tsconfig.lib.json
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "../tsconfig.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"outDir": "../../out-tsc/lib",
|
|
5
|
-
"declarationMap": true,
|
|
6
|
-
"target": "es2020",
|
|
7
|
-
"module": "es2015",
|
|
8
|
-
"moduleResolution": "node",
|
|
9
|
-
"declaration": true,
|
|
10
|
-
"sourceMap": true,
|
|
11
|
-
"inlineSources": true,
|
|
12
|
-
"emitDecoratorMetadata": true,
|
|
13
|
-
"experimentalDecorators": true,
|
|
14
|
-
"importHelpers": true,
|
|
15
|
-
"types": [],
|
|
16
|
-
"lib": [
|
|
17
|
-
"dom",
|
|
18
|
-
"es2015"
|
|
19
|
-
]
|
|
20
|
-
},
|
|
21
|
-
"angularCompilerOptions": {
|
|
22
|
-
"skipTemplateCodegen": true,
|
|
23
|
-
"strictMetadataEmit": true,
|
|
24
|
-
"fullTemplateTypeCheck": true,
|
|
25
|
-
"strictInjectionParameters": true,
|
|
26
|
-
"enableResourceInlining": true
|
|
27
|
-
},
|
|
28
|
-
"exclude": [
|
|
29
|
-
"**/*.spec.ts"
|
|
30
|
-
]
|
|
31
|
-
}
|