@memberjunction/ng-query-viewer 4.2.0 → 4.3.0
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/dist/__tests__/exports.test.d.ts +2 -0
- package/dist/__tests__/exports.test.d.ts.map +1 -0
- package/dist/__tests__/exports.test.js +17 -0
- package/dist/__tests__/exports.test.js.map +1 -0
- package/dist/__tests__/index.test.d.ts +2 -0
- package/dist/__tests__/index.test.d.ts.map +1 -0
- package/dist/__tests__/index.test.js +7 -0
- package/dist/__tests__/index.test.js.map +1 -0
- package/package.json +13 -11
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"exports.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/exports.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { describe, it, expect } from 'vitest';
|
|
2
|
+
import { existsSync } from 'fs';
|
|
3
|
+
import { resolve } from 'path';
|
|
4
|
+
describe('@memberjunction/ng-query-viewer', () => {
|
|
5
|
+
it('should have a public API entry point', () => {
|
|
6
|
+
const pkgRoot = resolve(__dirname, '../..');
|
|
7
|
+
const hasPublicApi = existsSync(resolve(pkgRoot, 'src/public-api.ts'));
|
|
8
|
+
const hasIndex = existsSync(resolve(pkgRoot, 'src/index.ts'));
|
|
9
|
+
expect(hasPublicApi || hasIndex).toBe(true);
|
|
10
|
+
});
|
|
11
|
+
it('should have a package.json with correct name', () => {
|
|
12
|
+
const pkgRoot = resolve(__dirname, '../..');
|
|
13
|
+
const pkg = require(resolve(pkgRoot, 'package.json'));
|
|
14
|
+
expect(pkg.name).toBe('@memberjunction/ng-query-viewer');
|
|
15
|
+
});
|
|
16
|
+
});
|
|
17
|
+
//# sourceMappingURL=exports.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"exports.test.js","sourceRoot":"","sources":["../../src/__tests__/exports.test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAC9C,OAAO,EAAE,UAAU,EAAE,MAAM,IAAI,CAAC;AAChC,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAE/B,QAAQ,CAAC,iCAAiC,EAAE,GAAG,EAAE;IAC/C,EAAE,CAAC,sCAAsC,EAAE,GAAG,EAAE;QAC9C,MAAM,OAAO,GAAG,OAAO,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;QAC5C,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,CAAC,OAAO,EAAE,mBAAmB,CAAC,CAAC,CAAC;QACvE,MAAM,QAAQ,GAAG,UAAU,CAAC,OAAO,CAAC,OAAO,EAAE,cAAc,CAAC,CAAC,CAAC;QAC9D,MAAM,CAAC,YAAY,IAAI,QAAQ,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAC9C,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,8CAA8C,EAAE,GAAG,EAAE;QACtD,MAAM,OAAO,GAAG,OAAO,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;QAC5C,MAAM,GAAG,GAAG,OAAO,CAAC,OAAO,CAAC,OAAO,EAAE,cAAc,CAAC,CAAC,CAAC;QACtD,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,iCAAiC,CAAC,CAAC;IAC3D,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/index.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.test.js","sourceRoot":"","sources":["../../src/__tests__/index.test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAE9C,QAAQ,CAAC,iCAAiC,EAAE,GAAG,EAAE;IAC/C,EAAE,CAAC,4BAA4B,EAAE,GAAG,EAAE;QACpC,MAAM,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAC1B,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/ng-query-viewer",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.0",
|
|
4
4
|
"description": "MemberJunction: Angular components for viewing and executing stored queries with parameter input, interactive results grid, and entity linking",
|
|
5
5
|
"main": "./dist/public-api.js",
|
|
6
6
|
"typings": "./dist/public-api.d.ts",
|
|
@@ -8,8 +8,9 @@
|
|
|
8
8
|
"/dist"
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
|
-
"test": "echo \"
|
|
12
|
-
"build": "ngc"
|
|
11
|
+
"test": "echo \"No tests configured yet\"",
|
|
12
|
+
"build": "ngc",
|
|
13
|
+
"test:watch": "vitest"
|
|
13
14
|
},
|
|
14
15
|
"keywords": [
|
|
15
16
|
"memberjunction",
|
|
@@ -24,7 +25,8 @@
|
|
|
24
25
|
"license": "ISC",
|
|
25
26
|
"devDependencies": {
|
|
26
27
|
"@angular/compiler": "21.1.3",
|
|
27
|
-
"@angular/compiler-cli": "21.1.3"
|
|
28
|
+
"@angular/compiler-cli": "21.1.3",
|
|
29
|
+
"vitest": "^4.0.18"
|
|
28
30
|
},
|
|
29
31
|
"peerDependencies": {
|
|
30
32
|
"@angular/common": "21.1.3",
|
|
@@ -35,13 +37,13 @@
|
|
|
35
37
|
"ag-grid-community": "^35.0.1"
|
|
36
38
|
},
|
|
37
39
|
"dependencies": {
|
|
38
|
-
"@memberjunction/core-entities": "4.
|
|
39
|
-
"@memberjunction/export-engine": "4.
|
|
40
|
-
"@memberjunction/global": "4.
|
|
41
|
-
"@memberjunction/core": "4.
|
|
42
|
-
"@memberjunction/ng-shared-generic": "4.
|
|
43
|
-
"@memberjunction/ng-export-service": "4.
|
|
44
|
-
"@memberjunction/ng-notifications": "4.
|
|
40
|
+
"@memberjunction/core-entities": "4.3.0",
|
|
41
|
+
"@memberjunction/export-engine": "4.3.0",
|
|
42
|
+
"@memberjunction/global": "4.3.0",
|
|
43
|
+
"@memberjunction/core": "4.3.0",
|
|
44
|
+
"@memberjunction/ng-shared-generic": "4.3.0",
|
|
45
|
+
"@memberjunction/ng-export-service": "4.3.0",
|
|
46
|
+
"@memberjunction/ng-notifications": "4.3.0",
|
|
45
47
|
"rxjs": "^7.8.2",
|
|
46
48
|
"tslib": "^2.8.1"
|
|
47
49
|
},
|