@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
package/src/tsconfig.spec.json
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "../tsconfig.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"outDir": "../out-tsc/spec",
|
|
5
|
-
"types": [
|
|
6
|
-
"jasmine",
|
|
7
|
-
"node"
|
|
8
|
-
]
|
|
9
|
-
},
|
|
10
|
-
"files": [
|
|
11
|
-
"../test/test.ts",
|
|
12
|
-
"polyfills.ts"
|
|
13
|
-
],
|
|
14
|
-
"include": [
|
|
15
|
-
"**/*.spec.ts",
|
|
16
|
-
"**/*.d.ts"
|
|
17
|
-
]
|
|
18
|
-
}
|
package/test/karma.conf.js
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
// Karma configuration file, see link for more information
|
|
2
|
-
// https://karma-runner.github.io/1.0/config/configuration-file.html
|
|
3
|
-
process.env.CHROME_BIN = require('puppeteer').executablePath();
|
|
4
|
-
|
|
5
|
-
module.exports = function (config) {
|
|
6
|
-
config.set({
|
|
7
|
-
basePath: '',
|
|
8
|
-
frameworks: ['jasmine', '@angular-devkit/build-angular'],
|
|
9
|
-
plugins: [
|
|
10
|
-
require('karma-jasmine'),
|
|
11
|
-
require('karma-chrome-launcher'),
|
|
12
|
-
require('karma-jasmine-html-reporter'),
|
|
13
|
-
require('karma-coverage-istanbul-reporter'),
|
|
14
|
-
require('@angular-devkit/build-angular/plugins/karma'),
|
|
15
|
-
require('karma-junit-reporter'),
|
|
16
|
-
],
|
|
17
|
-
files: [
|
|
18
|
-
{
|
|
19
|
-
pattern: '../node_modules/zone.js/dist/zone.min.js',
|
|
20
|
-
included: true,
|
|
21
|
-
watched: false,
|
|
22
|
-
},
|
|
23
|
-
],
|
|
24
|
-
client: {
|
|
25
|
-
clearContext: false, // leave Jasmine Spec Runner output visible in browser
|
|
26
|
-
},
|
|
27
|
-
junitReporter: {
|
|
28
|
-
outputDir: require('path').join(__dirname, '../../reports'),
|
|
29
|
-
outputFile: 'knowledge-owl-angular-test-results.xml',
|
|
30
|
-
},
|
|
31
|
-
coverageIstanbulReporter: {
|
|
32
|
-
dir: require('path').join(__dirname, '../../coverage'),
|
|
33
|
-
reports: ['html', 'lcovonly'],
|
|
34
|
-
fixWebpackSourcePaths: true,
|
|
35
|
-
},
|
|
36
|
-
reporters: ['dots', 'junit'],
|
|
37
|
-
port: 9876,
|
|
38
|
-
colors: true,
|
|
39
|
-
logLevel: config.LOG_INFO,
|
|
40
|
-
autoWatch: true,
|
|
41
|
-
browsers: ['ChromeHeadless'],
|
|
42
|
-
singleRun: true,
|
|
43
|
-
});
|
|
44
|
-
};
|
package/test/test.ts
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
// This file is required by karma.conf.js and loads recursively all the .spec and framework files
|
|
2
|
-
|
|
3
|
-
import 'zone.js';
|
|
4
|
-
import 'zone.js/testing';
|
|
5
|
-
import { getTestBed } from '@angular/core/testing';
|
|
6
|
-
import {
|
|
7
|
-
BrowserDynamicTestingModule,
|
|
8
|
-
platformBrowserDynamicTesting,
|
|
9
|
-
} from '@angular/platform-browser-dynamic/testing';
|
|
10
|
-
|
|
11
|
-
declare const require: any;
|
|
12
|
-
|
|
13
|
-
// First, initialize the Angular testing environment.
|
|
14
|
-
getTestBed().initTestEnvironment(
|
|
15
|
-
BrowserDynamicTestingModule,
|
|
16
|
-
platformBrowserDynamicTesting(),
|
|
17
|
-
{
|
|
18
|
-
teardown: { destroyAfterEach: false },
|
|
19
|
-
}
|
|
20
|
-
);
|
|
21
|
-
// Then we find all the tests.
|
|
22
|
-
const context = require.context('../src/', true, /\.spec\.ts$/);
|
|
23
|
-
// And load the modules.
|
|
24
|
-
context.keys().map(context);
|
package/tsconfig.json
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compileOnSave": false,
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"baseUrl": "./",
|
|
5
|
-
"downlevelIteration": true,
|
|
6
|
-
"importHelpers": true,
|
|
7
|
-
"outDir": "./dist/out-tsc",
|
|
8
|
-
"sourceMap": true,
|
|
9
|
-
"declaration": false,
|
|
10
|
-
"module": "es2020",
|
|
11
|
-
"moduleResolution": "node",
|
|
12
|
-
"emitDecoratorMetadata": true,
|
|
13
|
-
"experimentalDecorators": true,
|
|
14
|
-
"target": "es2020",
|
|
15
|
-
"noUnusedLocals": true,
|
|
16
|
-
"noUnusedParameters": true,
|
|
17
|
-
"typeRoots": [
|
|
18
|
-
"node_modules/@types"
|
|
19
|
-
],
|
|
20
|
-
"lib": [
|
|
21
|
-
"es2017",
|
|
22
|
-
"dom"
|
|
23
|
-
]
|
|
24
|
-
},
|
|
25
|
-
"include": [
|
|
26
|
-
"src/**/*.ts",
|
|
27
|
-
"test/**/*.ts"
|
|
28
|
-
],
|
|
29
|
-
"exclude": [
|
|
30
|
-
// IDEs should not type-check the different node_modules directories of the different packages.
|
|
31
|
-
// This would cause the IDEs to be slower and also linters would check the node_modules.
|
|
32
|
-
"node_modules/"
|
|
33
|
-
]
|
|
34
|
-
}
|
package/tsconfig.lib.prod.json
DELETED
|
File without changes
|
/package/{src/lib/knowledge-owl-link/public-api.ts → lib/knowledge-owl-link/public-api.d.ts}
RENAMED
|
File without changes
|
/package/{src/lib/knowledge-owl-widget/public-api.ts → lib/knowledge-owl-widget/public-api.d.ts}
RENAMED
|
File without changes
|
|
File without changes
|