@manticsoftware/rad-angular 0.0.1
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
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component } from '@angular/core';
|
|
3
|
+
|
|
4
|
+
class RadAngular {
|
|
5
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: RadAngular, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.4", type: RadAngular, isStandalone: true, selector: "lib-rad-angular", ngImport: i0, template: ` <p>rad-angular works!</p> `, isInline: true, styles: [""] });
|
|
7
|
+
}
|
|
8
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImport: i0, type: RadAngular, decorators: [{
|
|
9
|
+
type: Component,
|
|
10
|
+
args: [{ selector: 'lib-rad-angular', imports: [], template: ` <p>rad-angular works!</p> ` }]
|
|
11
|
+
}] });
|
|
12
|
+
|
|
13
|
+
/*
|
|
14
|
+
* Public API Surface of rad-angular
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Generated bundle index. Do not edit.
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
export { RadAngular };
|
|
22
|
+
//# sourceMappingURL=manticsoftware-rad-angular.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"manticsoftware-rad-angular.mjs","sources":["../../../projects/rad-angular/src/lib/rad-angular.ts","../../../projects/rad-angular/src/public-api.ts","../../../projects/rad-angular/src/manticsoftware-rad-angular.ts"],"sourcesContent":["import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-rad-angular',\n imports: [],\n template: ` <p>rad-angular works!</p> `,\n styles: ``,\n})\nexport class RadAngular {}\n","/*\n * Public API Surface of rad-angular\n */\n\nexport * from './lib/rad-angular';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAQa,UAAU,CAAA;uGAAV,UAAU,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAV,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAU,2EAHX,CAAA,2BAAA,CAA6B,EAAA,QAAA,EAAA,IAAA,EAAA,MAAA,EAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;2FAG5B,UAAU,EAAA,UAAA,EAAA,CAAA;kBANtB,SAAS;+BACE,iBAAiB,EAAA,OAAA,EAClB,EAAE,EAAA,QAAA,EACD,CAAA,2BAAA,CAA6B,EAAA;;;ACLzC;;AAEG;;ACFH;;AAEG;;;;"}
|
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@manticsoftware/rad-angular",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Reusable Angular library package for Mantic RAD.",
|
|
5
|
+
"peerDependencies": {
|
|
6
|
+
"@angular/common": "^21.2.0",
|
|
7
|
+
"@angular/core": "^21.2.0"
|
|
8
|
+
},
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"tslib": "^2.3.0"
|
|
11
|
+
},
|
|
12
|
+
"sideEffects": false,
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
16
|
+
"module": "fesm2022/manticsoftware-rad-angular.mjs",
|
|
17
|
+
"typings": "types/manticsoftware-rad-angular.d.ts",
|
|
18
|
+
"exports": {
|
|
19
|
+
"./package.json": {
|
|
20
|
+
"default": "./package.json"
|
|
21
|
+
},
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./types/manticsoftware-rad-angular.d.ts",
|
|
24
|
+
"default": "./fesm2022/manticsoftware-rad-angular.mjs"
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
|
|
3
|
+
declare class RadAngular {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadAngular, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadAngular, "lib-rad-angular", never, {}, {}, never, never, true, never>;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export { RadAngular };
|