@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.
Files changed (67) hide show
  1. package/README.md +3 -102
  2. package/esm2020/lib/index.mjs +3 -0
  3. package/esm2020/lib/knowledge-owl-link/knowledge-owl-link-module.mjs +18 -0
  4. package/esm2020/lib/knowledge-owl-link/knowledge-owl-link.mjs +92 -0
  5. package/esm2020/lib/knowledge-owl-link/knowledge-owl-widget-errors.mjs +3 -0
  6. package/esm2020/lib/knowledge-owl-link/public-api.mjs +3 -0
  7. package/esm2020/lib/knowledge-owl-widget/knowledge-owl-widget-errors.mjs +4 -0
  8. package/esm2020/lib/knowledge-owl-widget/knowledge-owl-widget-module.mjs +19 -0
  9. package/esm2020/lib/knowledge-owl-widget/knowledge-owl-widget.mjs +143 -0
  10. package/esm2020/lib/knowledge-owl-widget/public-api.mjs +3 -0
  11. package/esm2020/oncehub-knowledgeowl-angular.mjs +5 -0
  12. package/esm2020/public_api.mjs +2 -0
  13. package/fesm2015/oncehub-knowledgeowl-angular.mjs +279 -0
  14. package/fesm2015/oncehub-knowledgeowl-angular.mjs.map +1 -0
  15. package/fesm2020/oncehub-knowledgeowl-angular.mjs +275 -0
  16. package/fesm2020/oncehub-knowledgeowl-angular.mjs.map +1 -0
  17. package/index.d.ts +5 -0
  18. package/lib/knowledge-owl-link/knowledge-owl-link-module.d.ts +8 -0
  19. package/lib/knowledge-owl-link/knowledge-owl-link.d.ts +37 -0
  20. package/lib/knowledge-owl-link/knowledge-owl-widget-errors.d.ts +2 -0
  21. package/lib/knowledge-owl-widget/knowledge-owl-widget-errors.d.ts +3 -0
  22. package/lib/knowledge-owl-widget/knowledge-owl-widget-module.d.ts +8 -0
  23. package/lib/knowledge-owl-widget/knowledge-owl-widget.d.ts +63 -0
  24. package/package.json +25 -51
  25. package/.eslintrc.json +0 -82
  26. package/.github/workflows/codeql-analysis.yml +0 -71
  27. package/.github/workflows/npm-publish.yml +0 -23
  28. package/.lighthouse/jenkins-x/Kptfile +0 -11
  29. package/.lighthouse/jenkins-x/pullrequest.yaml +0 -278
  30. package/.lighthouse/jenkins-x/release.yaml +0 -269
  31. package/.lighthouse/jenkins-x/triggers.yaml +0 -19
  32. package/.prettierignore +0 -2
  33. package/.prettierrc +0 -3
  34. package/.travis.yml +0 -3
  35. package/CHANGELOG.md +0 -250
  36. package/LICENSE +0 -21
  37. package/OWNERS +0 -4
  38. package/OWNERS_ALIASES +0 -25
  39. package/angular.json +0 -47
  40. package/deploy.sh +0 -19
  41. package/package-deploy/npm-login.js +0 -14
  42. package/src/README.md +0 -5
  43. package/src/lib/knowledge-owl-link/index.ts +0 -1
  44. package/src/lib/knowledge-owl-link/knowledge-owl-link-module.ts +0 -10
  45. package/src/lib/knowledge-owl-link/knowledge-owl-link.spec.ts +0 -51
  46. package/src/lib/knowledge-owl-link/knowledge-owl-link.ts +0 -97
  47. package/src/lib/knowledge-owl-link/knowledge-owl-widget-errors.ts +0 -3
  48. package/src/lib/knowledge-owl-widget/index.ts +0 -1
  49. package/src/lib/knowledge-owl-widget/knowledge-owl-widget-errors.ts +0 -6
  50. package/src/lib/knowledge-owl-widget/knowledge-owl-widget-module.ts +0 -11
  51. package/src/lib/knowledge-owl-widget/knowledge-owl-widget.spec.ts +0 -66
  52. package/src/lib/knowledge-owl-widget/knowledge-owl-widget.ts +0 -162
  53. package/src/lib/tsconfig.json +0 -10
  54. package/src/ng-package.json +0 -7
  55. package/src/package-lock.json +0 -117
  56. package/src/package.json +0 -14
  57. package/src/polyfills.ts +0 -76
  58. package/src/tsconfig.lib.json +0 -31
  59. package/src/tsconfig.spec.json +0 -18
  60. package/test/karma.conf.js +0 -44
  61. package/test/test.ts +0 -24
  62. package/tsconfig.json +0 -34
  63. package/tsconfig.lib.prod.json +0 -9
  64. /package/{src/lib/index.ts → lib/index.d.ts} +0 -0
  65. /package/{src/lib/knowledge-owl-link/public-api.ts → lib/knowledge-owl-link/public-api.d.ts} +0 -0
  66. /package/{src/lib/knowledge-owl-widget/public-api.ts → lib/knowledge-owl-widget/public-api.d.ts} +0 -0
  67. /package/{src/public_api.ts → public_api.d.ts} +0 -0
@@ -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
- }
@@ -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
- }
@@ -1,9 +0,0 @@
1
- {
2
- "extends": "./src/tsconfig.lib.json",
3
- "compilerOptions": {
4
- "declarationMap": false
5
- },
6
- "angularCompilerOptions": {
7
- "compilationMode": "partial"
8
- }
9
- }
File without changes
File without changes