add-calculator-mdimran0509 0.0.5 → 0.0.6
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.
@@ -1,5 +1,7 @@
|
|
1
1
|
import * as i0 from '@angular/core';
|
2
|
-
import { Injectable, Component } from '@angular/core';
|
2
|
+
import { Injectable, Component, NgModule } from '@angular/core';
|
3
|
+
import { CommonModule } from '@angular/common';
|
4
|
+
import { FormsModule } from '@angular/forms';
|
3
5
|
|
4
6
|
class AddCalculatorService {
|
5
7
|
constructor() { }
|
@@ -30,6 +32,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
30
32
|
` }]
|
31
33
|
}] });
|
32
34
|
|
35
|
+
class AddCalculatorModule {
|
36
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: AddCalculatorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
37
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.12", ngImport: i0, type: AddCalculatorModule, imports: [CommonModule,
|
38
|
+
FormsModule,
|
39
|
+
// ← import the standalone component here
|
40
|
+
AddCalculatorComponent], exports: [AddCalculatorComponent] });
|
41
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: AddCalculatorModule, imports: [CommonModule,
|
42
|
+
FormsModule] });
|
43
|
+
}
|
44
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImport: i0, type: AddCalculatorModule, decorators: [{
|
45
|
+
type: NgModule,
|
46
|
+
args: [{
|
47
|
+
// No declarations because it's a standalone component
|
48
|
+
imports: [
|
49
|
+
CommonModule,
|
50
|
+
FormsModule,
|
51
|
+
// ← import the standalone component here
|
52
|
+
AddCalculatorComponent
|
53
|
+
],
|
54
|
+
// Now you can export it
|
55
|
+
exports: [AddCalculatorComponent]
|
56
|
+
}]
|
57
|
+
}] });
|
58
|
+
|
33
59
|
/*
|
34
60
|
* Public API Surface of add-calculator
|
35
61
|
*/
|
@@ -38,5 +64,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.12", ngImpo
|
|
38
64
|
* Generated bundle index. Do not edit.
|
39
65
|
*/
|
40
66
|
|
41
|
-
export { AddCalculatorComponent, AddCalculatorService };
|
67
|
+
export { AddCalculatorComponent, AddCalculatorModule, AddCalculatorService };
|
42
68
|
//# sourceMappingURL=add-calculator-mdimran0509.mjs.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"add-calculator-mdimran0509.mjs","sources":["../../../projects/add-calculator/src/lib/add-calculator.service.ts","../../../projects/add-calculator/src/lib/add-calculator.component.ts","../../../projects/add-calculator/src/public-api.ts","../../../projects/add-calculator/src/add-calculator-mdimran0509.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class AddCalculatorService {\r\n\r\n constructor() { }\r\n}\r\n","import { Component } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'lib-add-calculator',\r\n imports: [],\r\n template: `\r\n <p>\r\n add-calculator works!\r\n </p>\r\n `,\r\n styles: ``\r\n})\r\nexport class AddCalculatorComponent {\r\n\r\n}\r\n","/*\r\n * Public API Surface of add-calculator\r\n */\r\n\r\nexport * from './lib/add-calculator.service';\r\nexport * from './lib/add-calculator.component';\r\n\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"add-calculator-mdimran0509.mjs","sources":["../../../projects/add-calculator/src/lib/add-calculator.service.ts","../../../projects/add-calculator/src/lib/add-calculator.component.ts","../../../projects/add-calculator/src/lib/add-calculator.module.ts","../../../projects/add-calculator/src/public-api.ts","../../../projects/add-calculator/src/add-calculator-mdimran0509.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class AddCalculatorService {\r\n\r\n constructor() { }\r\n}\r\n","import { Component } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'lib-add-calculator',\r\n imports: [],\r\n template: `\r\n <p>\r\n add-calculator works!\r\n </p>\r\n `,\r\n styles: ``\r\n})\r\nexport class AddCalculatorComponent {\r\n\r\n}\r\n","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\nimport { FormsModule } from '@angular/forms';\r\nimport { AddCalculatorComponent } from './add-calculator.component';\r\n\r\n@NgModule({\r\n // No declarations because it's a standalone component\r\n imports: [\r\n CommonModule,\r\n FormsModule,\r\n\r\n // ← import the standalone component here\r\n AddCalculatorComponent\r\n ],\r\n // Now you can export it\r\n exports: [AddCalculatorComponent]\r\n})\r\nexport class AddCalculatorModule {}\r\n","/*\r\n * Public API Surface of add-calculator\r\n */\r\n\r\nexport * from './lib/add-calculator.service';\r\n/** Components */\r\nexport * from './lib/add-calculator.component';\r\n\r\n/** Modules */\r\nexport * from './lib/add-calculator.module';\r\n\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;MAKa,oBAAoB,CAAA;AAE/B,IAAA,WAAA,GAAA;wGAFW,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAApB,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,oBAAoB,cAFnB,MAAM,EAAA,CAAA;;4FAEP,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBAHhC,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;MCQY,sBAAsB,CAAA;wGAAtB,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAtB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,sBAAsB,EAPvB,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,CAAA;;;;AAIT,EAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,MAAA,EAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;4FAGU,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBAVlC,SAAS;+BACE,oBAAoB,EAAA,OAAA,EACrB,EAAE,EACD,QAAA,EAAA,CAAA;;;;AAIT,EAAA,CAAA,EAAA;;;MCQU,mBAAmB,CAAA;wGAAnB,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA;AAAnB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,mBAAmB,YAT5B,YAAY;YACZ,WAAW;;AAGX,YAAA,sBAAsB,aAGd,sBAAsB,CAAA,EAAA,CAAA;AAErB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,mBAAmB,YAT5B,YAAY;YACZ,WAAW,CAAA,EAAA,CAAA;;4FAQF,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAZ/B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;;AAER,oBAAA,OAAO,EAAE;wBACP,YAAY;wBACZ,WAAW;;wBAGX;AACD,qBAAA;;oBAED,OAAO,EAAE,CAAC,sBAAsB;AACjC,iBAAA;;;AChBD;;AAEG;;ACFH;;AAEG;;;;"}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
import * as i1 from "@angular/common";
|
3
|
+
import * as i2 from "@angular/forms";
|
4
|
+
import * as i3 from "./add-calculator.component";
|
5
|
+
export declare class AddCalculatorModule {
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AddCalculatorModule, never>;
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AddCalculatorModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i3.AddCalculatorComponent], [typeof i3.AddCalculatorComponent]>;
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AddCalculatorModule>;
|
9
|
+
}
|
package/package.json
CHANGED