master-control 0.0.4 → 0.0.7

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.
Binary file
@@ -0,0 +1,7 @@
1
+ {
2
+ "$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
3
+ "dest": "../../dist/master-control",
4
+ "lib": {
5
+ "entryFile": "src/public-api.ts"
6
+ }
7
+ }
package/package.json CHANGED
@@ -1,25 +1,12 @@
1
- {
2
- "name": "master-control",
3
- "version": "0.0.4",
4
- "peerDependencies": {
5
- "@angular/common": "^18.2.0",
6
- "@angular/core": "^18.2.0"
7
- },
8
- "dependencies": {
9
- "tslib": "^2.3.0"
10
- },
11
- "sideEffects": false,
12
- "module": "fesm2022/master-control.mjs",
13
- "typings": "index.d.ts",
14
- "exports": {
15
- "./package.json": {
16
- "default": "./package.json"
17
- },
18
- ".": {
19
- "types": "./index.d.ts",
20
- "esm2022": "./esm2022/master-control.mjs",
21
- "esm": "./esm2022/master-control.mjs",
22
- "default": "./fesm2022/master-control.mjs"
23
- }
24
- }
25
- }
1
+ {
2
+ "name": "master-control",
3
+ "version": "0.0.7",
4
+ "peerDependencies": {
5
+ "@angular/common": "^18.2.0",
6
+ "@angular/core": "^18.2.0"
7
+ },
8
+ "dependencies": {
9
+ "tslib": "^2.3.0"
10
+ },
11
+ "sideEffects": false
12
+ }
@@ -0,0 +1,44 @@
1
+ <h1>spannnnnn</h1>
2
+ <!-- @switch (field().controlType) {
3
+ @case('text') {
4
+ <lib-textbox [field]="field()"></lib-textbox>
5
+ }
6
+
7
+ @case('select') {
8
+ <app-select [field]="field()" />
9
+ }
10
+
11
+ @case('radio') {
12
+ <app-radio-button [field]="field()" />
13
+ }
14
+
15
+ @case('toggle') {
16
+ <app-toggle [field]="field()" />
17
+ }
18
+
19
+ @case('file') {
20
+ <app-upload [field]="field()" />
21
+ }
22
+
23
+ @case('date') {
24
+ <app-dob [field]="field()" />
25
+ }
26
+
27
+ @case('mobileNumber') {
28
+ <app-mob-number [field]="field()" />
29
+ }
30
+
31
+ @case('info') {
32
+ <app-info [field]="field()" />
33
+ }
34
+
35
+ @case('checkbox') {
36
+ <app-checkbox [field]="field()" />
37
+ }
38
+
39
+ @case('textarea') {
40
+ <app-textarea [field]="field()" />
41
+ }
42
+ } -->
43
+
44
+ <input type="text"/>
@@ -0,0 +1,23 @@
1
+ import { ComponentFixture, TestBed } from '@angular/core/testing';
2
+
3
+ import { MasterControlComponent } from './master-control.component';
4
+
5
+ describe('MasterControlComponent', () => {
6
+ let component: MasterControlComponent;
7
+ let fixture: ComponentFixture<MasterControlComponent>;
8
+
9
+ beforeEach(async () => {
10
+ await TestBed.configureTestingModule({
11
+ imports: [MasterControlComponent]
12
+ })
13
+ .compileComponents();
14
+
15
+ fixture = TestBed.createComponent(MasterControlComponent);
16
+ component = fixture.componentInstance;
17
+ fixture.detectChanges();
18
+ });
19
+
20
+ it('should create', () => {
21
+ expect(component).toBeTruthy();
22
+ });
23
+ });
@@ -0,0 +1,28 @@
1
+ import { Component, input } from '@angular/core';
2
+ import { ToggleComponent } from '../../../../../src/app/controls/toggle/toggle.component';
3
+ import { CommonModule } from '@angular/common';
4
+ import { TextboxComponent } from '../textbox/textbox.component';
5
+ // import { TextboxComponent } from '../../../../../src/app/controls/textbox/textbox.component';
6
+ // import { RadioButtonComponent } from '../../../../../src/app/controls/radio-button/radio-button.component';
7
+ // import { SelectComponent } from '../../../../../src/app/controls/select/select.component';
8
+ // import { UploadComponent } from '../../../../../src/app/controls/upload/upload.component';
9
+ // import { DobComponent } from '../../../../../src/app/controls/dob/dob.component';
10
+ // import { MobNumberComponent } from '../../../../../src/app/controls/mob-number/mob-number.component';
11
+ // import { InfoComponent } from '../../../../../src/app/controls/info/info.component';
12
+ // import { CheckboxComponent } from '../../../../../src/app/controls/checkbox/checkbox.component';
13
+ // import { TextareaComponent } from '../../../../../src/app/controls/textarea/textarea.component';
14
+
15
+ @Component({
16
+ selector: 'lib-master-control',
17
+ standalone: true,
18
+ imports: [CommonModule, TextboxComponent],
19
+ templateUrl: './master-control.component.html',
20
+ styleUrl: './master-control.component.css'
21
+ })
22
+ export class MasterControlComponent {
23
+ // field: any = input.required<any>();
24
+ constructor() {
25
+ console.log('master Component Library')
26
+ }
27
+
28
+ }
@@ -0,0 +1,23 @@
1
+ import { ComponentFixture, TestBed } from '@angular/core/testing';
2
+
3
+ import { MasterControlComponent } from './master-control.component';
4
+
5
+ describe('MasterControlComponent', () => {
6
+ let component: MasterControlComponent;
7
+ let fixture: ComponentFixture<MasterControlComponent>;
8
+
9
+ beforeEach(async () => {
10
+ await TestBed.configureTestingModule({
11
+ imports: [MasterControlComponent]
12
+ })
13
+ .compileComponents();
14
+
15
+ fixture = TestBed.createComponent(MasterControlComponent);
16
+ component = fixture.componentInstance;
17
+ fixture.detectChanges();
18
+ });
19
+
20
+ it('should create', () => {
21
+ expect(component).toBeTruthy();
22
+ });
23
+ });
@@ -0,0 +1,15 @@
1
+ import { Component } from '@angular/core';
2
+
3
+ @Component({
4
+ selector: 'lib-master-control',
5
+ standalone: true,
6
+ imports: [],
7
+ template: `
8
+ <h1>spannnnnn</h1>
9
+ <input type="text"/>
10
+ `,
11
+ styles: ``
12
+ })
13
+ export class MasterControlComponent {
14
+
15
+ }
@@ -0,0 +1,16 @@
1
+ import { TestBed } from '@angular/core/testing';
2
+
3
+ import { MasterControlService } from './master-control.service';
4
+
5
+ describe('MasterControlService', () => {
6
+ let service: MasterControlService;
7
+
8
+ beforeEach(() => {
9
+ TestBed.configureTestingModule({});
10
+ service = TestBed.inject(MasterControlService);
11
+ });
12
+
13
+ it('should be created', () => {
14
+ expect(service).toBeTruthy();
15
+ });
16
+ });
@@ -0,0 +1,9 @@
1
+ import { Injectable } from '@angular/core';
2
+
3
+ @Injectable({
4
+ providedIn: 'root'
5
+ })
6
+ export class MasterControlService {
7
+
8
+ constructor() { }
9
+ }
File without changes
@@ -0,0 +1,23 @@
1
+ <label class="field-lable" *ngIf="field() && field().visible">{{field().label}}</label>
2
+ <mat-form-field class="w-100" appearance="outline" *ngIf="field() && field().visible">
3
+ <input
4
+ matInput
5
+ autocomplete="none"
6
+ [type]="field().controlType"
7
+ [placeholder]="field().placeHolder"
8
+ [maxLength]="field().validators.maxLength"
9
+ [minLength]="field().validators.minLength"
10
+ [disabled]="field().isDisable"
11
+ [required]="field().validators.required"
12
+ [pattern]="field().validators.pattern"
13
+ />
14
+ <mat-error *ngIf="false">
15
+ {{ field().validators.requiredMessage }}
16
+ </mat-error>
17
+ </mat-form-field>
18
+ <div class="error-message" *ngIf="false">
19
+ {{field().validators.requiredMessage}}.
20
+ </div>
21
+ <div class="error-message" *ngIf="false">
22
+ {{field().validators.patternMessage}}.
23
+ </div>
@@ -0,0 +1,20 @@
1
+ import { Component, input } from '@angular/core';
2
+ import { MatInputModule } from '@angular/material/input';
3
+ import { MatFormFieldModule } from '@angular/material/form-field';
4
+ import { CommonModule } from '@angular/common';
5
+
6
+ @Component({
7
+ selector: 'lib-textbox',
8
+ standalone: true,
9
+ imports: [
10
+ MatInputModule,
11
+ MatFormFieldModule ,
12
+ CommonModule
13
+ ],
14
+ templateUrl: './textbox.component.html',
15
+ styleUrl: './textbox.component.css'
16
+ })
17
+ export class TextboxComponent {
18
+ constructor(){}
19
+ field : any = input.required<any>();
20
+ }
@@ -1,2 +1,6 @@
1
- export * from './lib/master-control.service';
2
- export * from './lib/master-control.component';
1
+ /*
2
+ * Public API Surface of master-control
3
+ */
4
+
5
+ export * from './lib/master-control.service';
6
+ export * from './lib/master-control.component';
@@ -0,0 +1,15 @@
1
+ /* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
2
+ /* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
3
+ {
4
+ "extends": "../../tsconfig.json",
5
+ "compilerOptions": {
6
+ "outDir": "../../out-tsc/lib",
7
+ "declaration": true,
8
+ "declarationMap": true,
9
+ "inlineSources": true,
10
+ "types": []
11
+ },
12
+ "exclude": [
13
+ "**/*.spec.ts"
14
+ ]
15
+ }
@@ -0,0 +1,11 @@
1
+ /* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
2
+ /* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
3
+ {
4
+ "extends": "./tsconfig.lib.json",
5
+ "compilerOptions": {
6
+ "declarationMap": false
7
+ },
8
+ "angularCompilerOptions": {
9
+ "compilationMode": "partial"
10
+ }
11
+ }
@@ -0,0 +1,15 @@
1
+ /* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
2
+ /* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
3
+ {
4
+ "extends": "../../tsconfig.json",
5
+ "compilerOptions": {
6
+ "outDir": "../../out-tsc/spec",
7
+ "types": [
8
+ "jasmine"
9
+ ]
10
+ },
11
+ "include": [
12
+ "**/*.spec.ts",
13
+ "**/*.d.ts"
14
+ ]
15
+ }
@@ -1,19 +0,0 @@
1
- import { Component } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class MasterControlComponent {
4
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MasterControlComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
5
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MasterControlComponent, isStandalone: true, selector: "lib-master-control", ngImport: i0, template: `
6
- <p>
7
- master-control works!
8
- </p>
9
- `, isInline: true, styles: [""] });
10
- }
11
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MasterControlComponent, decorators: [{
12
- type: Component,
13
- args: [{ selector: 'lib-master-control', standalone: true, imports: [], template: `
14
- <p>
15
- master-control works!
16
- </p>
17
- ` }]
18
- }] });
19
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFzdGVyLWNvbnRyb2wuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvbWFzdGVyLWNvbnRyb2wvc3JjL2xpYi9tYXN0ZXItY29udHJvbC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFhMUMsTUFBTSxPQUFPLHNCQUFzQjt3R0FBdEIsc0JBQXNCOzRGQUF0QixzQkFBc0IsOEVBUHZCOzs7O0dBSVQ7OzRGQUdVLHNCQUFzQjtrQkFYbEMsU0FBUzsrQkFDRSxvQkFBb0IsY0FDbEIsSUFBSSxXQUNQLEVBQUUsWUFDRDs7OztHQUlUIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2xpYi1tYXN0ZXItY29udHJvbCcsXHJcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcclxuICBpbXBvcnRzOiBbXSxcclxuICB0ZW1wbGF0ZTogYFxyXG4gICAgPHA+XHJcbiAgICAgIG1hc3Rlci1jb250cm9sIHdvcmtzIVxyXG4gICAgPC9wPlxyXG4gIGAsXHJcbiAgc3R5bGVzOiBgYFxyXG59KVxyXG5leHBvcnQgY2xhc3MgTWFzdGVyQ29udHJvbENvbXBvbmVudCB7XHJcblxyXG59XHJcbiJdfQ==
@@ -1,14 +0,0 @@
1
- import { Injectable } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class MasterControlService {
4
- constructor() { }
5
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MasterControlService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
6
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MasterControlService, providedIn: 'root' });
7
- }
8
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MasterControlService, decorators: [{
9
- type: Injectable,
10
- args: [{
11
- providedIn: 'root'
12
- }]
13
- }], ctorParameters: () => [] });
14
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFzdGVyLWNvbnRyb2wuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL21hc3Rlci1jb250cm9sL3NyYy9saWIvbWFzdGVyLWNvbnRyb2wuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUszQyxNQUFNLE9BQU8sb0JBQW9CO0lBRS9CLGdCQUFnQixDQUFDO3dHQUZOLG9CQUFvQjs0R0FBcEIsb0JBQW9CLGNBRm5CLE1BQU07OzRGQUVQLG9CQUFvQjtrQkFIaEMsVUFBVTttQkFBQztvQkFDVixVQUFVLEVBQUUsTUFBTTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5ASW5qZWN0YWJsZSh7XHJcbiAgcHJvdmlkZWRJbjogJ3Jvb3QnXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBNYXN0ZXJDb250cm9sU2VydmljZSB7XHJcblxyXG4gIGNvbnN0cnVjdG9yKCkgeyB9XHJcbn1cclxuIl19
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './public-api';
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFzdGVyLWNvbnRyb2wuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9wcm9qZWN0cy9tYXN0ZXItY29udHJvbC9zcmMvbWFzdGVyLWNvbnRyb2wudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -1,6 +0,0 @@
1
- /*
2
- * Public API Surface of master-control
3
- */
4
- export * from './lib/master-control.service';
5
- export * from './lib/master-control.component';
6
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL21hc3Rlci1jb250cm9sL3NyYy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLGdDQUFnQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLypcclxuICogUHVibGljIEFQSSBTdXJmYWNlIG9mIG1hc3Rlci1jb250cm9sXHJcbiAqL1xyXG5cclxuZXhwb3J0ICogZnJvbSAnLi9saWIvbWFzdGVyLWNvbnRyb2wuc2VydmljZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL21hc3Rlci1jb250cm9sLmNvbXBvbmVudCc7XHJcbiJdfQ==
@@ -1,42 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { Injectable, Component } from '@angular/core';
3
-
4
- class MasterControlService {
5
- constructor() { }
6
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MasterControlService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
7
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MasterControlService, providedIn: 'root' });
8
- }
9
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MasterControlService, decorators: [{
10
- type: Injectable,
11
- args: [{
12
- providedIn: 'root'
13
- }]
14
- }], ctorParameters: () => [] });
15
-
16
- class MasterControlComponent {
17
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MasterControlComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
18
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MasterControlComponent, isStandalone: true, selector: "lib-master-control", ngImport: i0, template: `
19
- <p>
20
- master-control works!
21
- </p>
22
- `, isInline: true, styles: [""] });
23
- }
24
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MasterControlComponent, decorators: [{
25
- type: Component,
26
- args: [{ selector: 'lib-master-control', standalone: true, imports: [], template: `
27
- <p>
28
- master-control works!
29
- </p>
30
- ` }]
31
- }] });
32
-
33
- /*
34
- * Public API Surface of master-control
35
- */
36
-
37
- /**
38
- * Generated bundle index. Do not edit.
39
- */
40
-
41
- export { MasterControlComponent, MasterControlService };
42
- //# sourceMappingURL=master-control.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"master-control.mjs","sources":["../../../projects/master-control/src/lib/master-control.service.ts","../../../projects/master-control/src/lib/master-control.component.ts","../../../projects/master-control/src/public-api.ts","../../../projects/master-control/src/master-control.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class MasterControlService {\r\n\r\n constructor() { }\r\n}\r\n","import { Component } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'lib-master-control',\r\n standalone: true,\r\n imports: [],\r\n template: `\r\n <p>\r\n master-control works!\r\n </p>\r\n `,\r\n styles: ``\r\n})\r\nexport class MasterControlComponent {\r\n\r\n}\r\n","/*\r\n * Public API Surface of master-control\r\n */\r\n\r\nexport * from './lib/master-control.service';\r\nexport * from './lib/master-control.component';\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,GAAiB;wGAFN,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,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,CAAA;;4FAEP,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBAHhC,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE,MAAM;AACnB,iBAAA,CAAA;;;MCSY,sBAAsB,CAAA;wGAAtB,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,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,CAAA;;4FAGU,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBAXlC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,oBAAoB,EAClB,UAAA,EAAA,IAAI,EACP,OAAA,EAAA,EAAE,EACD,QAAA,EAAA,CAAA;;;;AAIT,EAAA,CAAA,EAAA,CAAA;;;ACVH;;AAEG;;ACFH;;AAEG;;;;"}
package/index.d.ts DELETED
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="master-control" />
5
- export * from './public-api';
@@ -1,5 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class MasterControlComponent {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<MasterControlComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<MasterControlComponent, "lib-master-control", never, {}, {}, never, never, true, never>;
5
- }
@@ -1,6 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class MasterControlService {
3
- constructor();
4
- static ɵfac: i0.ɵɵFactoryDeclaration<MasterControlService, never>;
5
- static ɵprov: i0.ɵɵInjectableDeclaration<MasterControlService>;
6
- }
Binary file