@memberjunction/ng-simple-record-list 4.1.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.
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"simple-record-list.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/simple-record-list.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tests for simple-record-list package:
|
|
3
|
+
* - Module export verification
|
|
4
|
+
*/
|
|
5
|
+
import { describe, it, expect, vi } from 'vitest';
|
|
6
|
+
vi.mock('@angular/core', () => ({
|
|
7
|
+
Component: () => (target) => target,
|
|
8
|
+
NgModule: () => (target) => target,
|
|
9
|
+
Input: () => () => { },
|
|
10
|
+
Output: () => () => { },
|
|
11
|
+
EventEmitter: class {
|
|
12
|
+
emit() { }
|
|
13
|
+
},
|
|
14
|
+
}));
|
|
15
|
+
describe('simple-record-list package', () => {
|
|
16
|
+
it('should be a valid module', () => {
|
|
17
|
+
expect(true).toBe(true);
|
|
18
|
+
});
|
|
19
|
+
});
|
|
20
|
+
//# sourceMappingURL=simple-record-list.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"simple-record-list.test.js","sourceRoot":"","sources":["../../src/__tests__/simple-record-list.test.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,EAAE,QAAQ,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,QAAQ,CAAC;AAElD,EAAE,CAAC,IAAI,CAAC,eAAe,EAAE,GAAG,EAAE,CAAC,CAAC;IAC9B,SAAS,EAAE,GAAG,EAAE,CAAC,CAAC,MAAgB,EAAE,EAAE,CAAC,MAAM;IAC7C,QAAQ,EAAE,GAAG,EAAE,CAAC,CAAC,MAAgB,EAAE,EAAE,CAAC,MAAM;IAC5C,KAAK,EAAE,GAAG,EAAE,CAAC,GAAG,EAAE,GAAE,CAAC;IACrB,MAAM,EAAE,GAAG,EAAE,CAAC,GAAG,EAAE,GAAE,CAAC;IACtB,YAAY,EAAE;QAAQ,IAAI,KAAI,CAAC;KAAE;CAClC,CAAC,CAAC,CAAC;AAEJ,QAAQ,CAAC,4BAA4B,EAAE,GAAG,EAAE;IAC1C,EAAE,CAAC,0BAA0B,EAAE,GAAG,EAAE;QAClC,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-simple-record-list",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.0",
|
|
4
4
|
"description": "MemberJunction: Very simple and reusable Angular component for displaying, editing, creating and deleting records in any entity",
|
|
5
5
|
"main": "./dist/public-api.js",
|
|
6
6
|
"typings": "./dist/public-api.d.ts",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"/dist"
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
|
-
"test": "echo \"
|
|
11
|
+
"test": "echo \"No tests configured yet\"",
|
|
12
12
|
"build": "ngc"
|
|
13
13
|
},
|
|
14
14
|
"keywords": [],
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
"@angular/router": "21.1.3"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@memberjunction/core": "4.
|
|
29
|
-
"@memberjunction/core-entities": "4.
|
|
30
|
-
"@memberjunction/global": "4.
|
|
31
|
-
"@memberjunction/ng-container-directives": "4.
|
|
32
|
-
"@memberjunction/ng-entity-form-dialog": "4.
|
|
33
|
-
"@memberjunction/ng-notifications": "4.
|
|
34
|
-
"@memberjunction/ng-shared-generic": "4.
|
|
28
|
+
"@memberjunction/core": "4.3.0",
|
|
29
|
+
"@memberjunction/core-entities": "4.3.0",
|
|
30
|
+
"@memberjunction/global": "4.3.0",
|
|
31
|
+
"@memberjunction/ng-container-directives": "4.3.0",
|
|
32
|
+
"@memberjunction/ng-entity-form-dialog": "4.3.0",
|
|
33
|
+
"@memberjunction/ng-notifications": "4.3.0",
|
|
34
|
+
"@memberjunction/ng-shared-generic": "4.3.0",
|
|
35
35
|
"@progress/kendo-angular-buttons": "22.0.1",
|
|
36
36
|
"@progress/kendo-angular-dialog": "22.0.1",
|
|
37
37
|
"@progress/kendo-angular-dropdowns": "22.0.1",
|