master-control 0.4.89 → 0.4.90
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/esm2022/lib/age-date/age-date.component.mjs +3 -3
- package/esm2022/lib/amount-textbox/amount-textbox.component.mjs +3 -3
- package/esm2022/lib/annuity-calculator-radio/annuity-calculator-radio.component.mjs +7 -10
- package/esm2022/lib/autocomplete/autocomplete.component.mjs +3 -3
- package/esm2022/lib/checkbox/checkbox.component.mjs +3 -3
- package/esm2022/lib/dob/dob.component.mjs +3 -3
- package/esm2022/lib/email-with-domain/email-with-domain.component.mjs +9 -14
- package/esm2022/lib/file-preview/file-preview.component.mjs +7 -10
- package/esm2022/lib/iframe/iframe.component.mjs +7 -10
- package/esm2022/lib/info-textbox/info-textbox.component.mjs +9 -14
- package/esm2022/lib/master-control.service.mjs +1 -4
- package/esm2022/lib/mob-number/mob-number.component.mjs +3 -3
- package/esm2022/lib/multiple-select/multiple-select.component.mjs +3 -3
- package/esm2022/lib/otp-mob-number/otp-mob-number.component.mjs +9 -14
- package/esm2022/lib/otp-textbox/otp-textbox.component.mjs +11 -15
- package/esm2022/lib/radio/radio.component.mjs +3 -3
- package/esm2022/lib/search-multi-select/search-multi-select.component.mjs +13 -18
- package/esm2022/lib/select/select.component.mjs +3 -3
- package/esm2022/lib/select-textbox/select-textbox.component.mjs +3 -3
- package/esm2022/lib/subscript-textbox/subscript-textbox.component.mjs +9 -14
- package/esm2022/lib/suffix-textbox/suffix-textbox.component.mjs +10 -15
- package/esm2022/lib/tag-mob-number/tag-mob-number.component.mjs +10 -15
- package/esm2022/lib/textarea/textarea.component.mjs +3 -3
- package/esm2022/lib/textbox/textbox.component.mjs +3 -3
- package/esm2022/lib/textbox-with-image/textbox-with-image.component.mjs +9 -14
- package/esm2022/lib/textbox-with-text/textbox-with-text.component.mjs +9 -14
- package/esm2022/lib/textbox-with-underscore/textbox-with-underscore.component.mjs +9 -14
- package/esm2022/lib/toggle/toggle.component.mjs +3 -3
- package/esm2022/lib/upload/upload.component.mjs +3 -3
- package/fesm2022/master-control.mjs +110 -162
- package/fesm2022/master-control.mjs.map +1 -1
- package/lib/annuity-calculator-radio/annuity-calculator-radio.component.d.ts +1 -3
- package/lib/email-with-domain/email-with-domain.component.d.ts +0 -3
- package/lib/file-preview/file-preview.component.d.ts +1 -3
- package/lib/iframe/iframe.component.d.ts +1 -3
- package/lib/info-textbox/info-textbox.component.d.ts +0 -3
- package/lib/master-control.service.d.ts +0 -1
- package/lib/otp-mob-number/otp-mob-number.component.d.ts +0 -3
- package/lib/otp-textbox/otp-textbox.component.d.ts +1 -3
- package/lib/search-multi-select/search-multi-select.component.d.ts +0 -3
- package/lib/subscript-textbox/subscript-textbox.component.d.ts +0 -3
- package/lib/suffix-textbox/suffix-textbox.component.d.ts +0 -3
- package/lib/tag-mob-number/tag-mob-number.component.d.ts +0 -3
- package/lib/textbox-with-image/textbox-with-image.component.d.ts +0 -3
- package/lib/textbox-with-text/textbox-with-text.component.d.ts +0 -3
- package/lib/textbox-with-underscore/textbox-with-underscore.component.d.ts +0 -3
- package/master-control-0.4.90.tgz +0 -0
- package/package.json +1 -1
- package/master-control-0.4.89.tgz +0 -0
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
import { EventEmitter, ElementRef } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import { MatRadioChange } from '@angular/material/radio';
|
|
4
|
-
import { MasterControlService } from '../master-control.service';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
5
|
export declare class AnnuityCalculatorRadioComponent implements ControlValueAccessor {
|
|
7
6
|
private el;
|
|
8
|
-
|
|
9
|
-
constructor(el: ElementRef, service: MasterControlService);
|
|
7
|
+
constructor(el: ElementRef);
|
|
10
8
|
ngOnInit(): void;
|
|
11
9
|
reactiveFormControlobject: any;
|
|
12
10
|
field: any;
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
import { MasterControlService } from '../master-control.service';
|
|
2
1
|
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class EmailWithDomainComponent {
|
|
4
|
-
masterService: MasterControlService;
|
|
5
|
-
constructor(masterService: MasterControlService);
|
|
6
3
|
pincode: any;
|
|
7
4
|
emailUser: any;
|
|
8
5
|
emailDomain: any;
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { EventEmitter, OnInit, OnDestroy } from '@angular/core';
|
|
2
2
|
import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
|
|
3
|
-
import { MasterControlService } from '../master-control.service';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class FilePreviewComponent implements OnInit, OnDestroy {
|
|
6
5
|
private sanitizer;
|
|
7
|
-
masterService: MasterControlService;
|
|
8
6
|
field: import("@angular/core").InputSignal<any>;
|
|
9
7
|
file: import("@angular/core").InputSignal<File | null>;
|
|
10
8
|
closed: EventEmitter<void>;
|
|
@@ -12,7 +10,7 @@ export declare class FilePreviewComponent implements OnInit, OnDestroy {
|
|
|
12
10
|
fileObjectUrl: any;
|
|
13
11
|
textContent: any;
|
|
14
12
|
safeFileUrl: SafeResourceUrl | null;
|
|
15
|
-
constructor(sanitizer: DomSanitizer
|
|
13
|
+
constructor(sanitizer: DomSanitizer);
|
|
16
14
|
isImage(): any;
|
|
17
15
|
isPdf(): any;
|
|
18
16
|
isText(): any;
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
|
|
3
|
-
import { MasterControlService } from '../master-control.service';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class IframeComponent implements OnInit {
|
|
6
5
|
private sanitizer;
|
|
7
|
-
masterService: MasterControlService;
|
|
8
6
|
field: any;
|
|
9
7
|
safeUrl: SafeResourceUrl | null;
|
|
10
|
-
constructor(sanitizer: DomSanitizer
|
|
8
|
+
constructor(sanitizer: DomSanitizer);
|
|
11
9
|
ngOnInit(): void;
|
|
12
10
|
getIframeUrl(): any;
|
|
13
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<IframeComponent, never>;
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
import { MasterControlService } from '../master-control.service';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class InfoTextboxComponent implements ControlValueAccessor {
|
|
6
|
-
service: MasterControlService;
|
|
7
|
-
constructor(service: MasterControlService);
|
|
8
5
|
field: any;
|
|
9
6
|
inputValue: any;
|
|
10
7
|
reactiveFormControlobject: any;
|
|
@@ -8,7 +8,6 @@ export declare class MasterControlService {
|
|
|
8
8
|
restoreTableFieldState(key?: any): any | null;
|
|
9
9
|
addComasToNumberValues(value: any, isRemoveRupeeSymbol?: any): any;
|
|
10
10
|
removeComasAndCurrencySymbolFromNumberValues(value: any): any;
|
|
11
|
-
replaceSpacesWithUnderscores(value: string): string;
|
|
12
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<MasterControlService, never>;
|
|
13
12
|
static ɵprov: i0.ɵɵInjectableDeclaration<MasterControlService>;
|
|
14
13
|
}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
import { MasterControlService } from '../master-control.service';
|
|
2
1
|
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class OtpMobNumberComponent {
|
|
4
|
-
service: MasterControlService;
|
|
5
|
-
constructor(service: MasterControlService);
|
|
6
3
|
CountryCode: any;
|
|
7
4
|
field: any;
|
|
8
5
|
inputValue: any;
|
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
import { MasterControlService } from '../master-control.service';
|
|
2
1
|
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class OtpTextboxComponent {
|
|
4
|
-
|
|
5
|
-
constructor(service: MasterControlService);
|
|
3
|
+
constructor();
|
|
6
4
|
field: any;
|
|
7
5
|
inputValue: any;
|
|
8
6
|
reactiveFormControlobject: any;
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import { MatSelectChange } from '@angular/material/select';
|
|
2
|
-
import { MasterControlService } from '../master-control.service';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class SearchMultiSelectComponent {
|
|
5
|
-
service: MasterControlService;
|
|
6
|
-
constructor(service: MasterControlService);
|
|
7
4
|
field: any;
|
|
8
5
|
selectedValues: any;
|
|
9
6
|
visibleChip: any;
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
import { MasterControlService } from '../master-control.service';
|
|
2
1
|
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class SubscriptTextboxComponent {
|
|
4
|
-
service: MasterControlService;
|
|
5
|
-
constructor(service: MasterControlService);
|
|
6
3
|
inputValue: any;
|
|
7
4
|
field: any;
|
|
8
5
|
reactiveFormControlobject: any;
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { MasterControlService } from '../master-control.service';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class SuffixTextboxComponent {
|
|
5
|
-
service: MasterControlService;
|
|
6
|
-
constructor(service: MasterControlService);
|
|
7
4
|
field: any;
|
|
8
5
|
inputValue: any;
|
|
9
6
|
reactiveFormControlobject: any;
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
import { MasterControlService } from '../master-control.service';
|
|
2
1
|
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class TagMobNumberComponent {
|
|
4
|
-
service: MasterControlService;
|
|
5
|
-
constructor(service: MasterControlService);
|
|
6
3
|
CountryCode: any;
|
|
7
4
|
field: any;
|
|
8
5
|
inputValue: any;
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { MasterControlService } from '../master-control.service';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class TextboxWithImageComponent {
|
|
5
|
-
service: MasterControlService;
|
|
6
|
-
constructor(service: MasterControlService);
|
|
7
4
|
field: any;
|
|
8
5
|
inputValue: any;
|
|
9
6
|
reactiveFormControlobject: any;
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { MasterControlService } from '../master-control.service';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class TextboxWithTextComponent {
|
|
5
|
-
service: MasterControlService;
|
|
6
|
-
constructor(service: MasterControlService);
|
|
7
4
|
inputValue: any;
|
|
8
5
|
reactiveFormControlobject: any;
|
|
9
6
|
field: any;
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
import { MasterControlService } from '../master-control.service';
|
|
2
1
|
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class TextboxWithUnderscoreComponent {
|
|
4
|
-
service: MasterControlService;
|
|
5
|
-
constructor(service: MasterControlService);
|
|
6
3
|
field: any;
|
|
7
4
|
inputValue: any;
|
|
8
5
|
reactiveFormControlobject: any;
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|