@corp-products/ui-components 4.1.6 → 4.1.8
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/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Button } from 'primeng/button';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
|
-
import { TemplateRef, OnInit, EventEmitter, PipeTransform, OnDestroy, SimpleChanges, Type, EnvironmentInjector, ApplicationRef, ViewContainerRef, OnChanges, ElementRef, Renderer2 } from '@angular/core';
|
|
3
|
+
import { TemplateRef, OnInit, EventEmitter, PipeTransform, OnDestroy, AfterViewInit, SimpleChanges, Type, EnvironmentInjector, ApplicationRef, ViewContainerRef, OnChanges, ElementRef, Renderer2 } from '@angular/core';
|
|
4
4
|
import { Params, Router, ActivatedRoute } from '@angular/router';
|
|
5
5
|
import { DynamicDialogRef, DialogService, DynamicDialogConfig } from 'primeng/dynamicdialog';
|
|
6
6
|
import { FormGroup, FormControl, ValidatorFn, AbstractControl, ValidationErrors } from '@angular/forms';
|
|
@@ -165,6 +165,7 @@ declare enum ErrorsWithValuesKeysEnum {
|
|
|
165
165
|
maxSize = "MAX_SIZE",
|
|
166
166
|
maxFiles = "MAX_FILES",
|
|
167
167
|
allowedTypes = "ALLOWED_TYPES",
|
|
168
|
+
emailDomain = "EMAIL_DOMAIN",
|
|
168
169
|
maxRepeatedChars = "MAX_REPEATED_CHARS"
|
|
169
170
|
}
|
|
170
171
|
|
|
@@ -236,7 +237,7 @@ declare class AutoCompleteComponent extends BaseInputComponent {
|
|
|
236
237
|
static ɵcmp: i0.ɵɵComponentDeclaration<AutoCompleteComponent, "stc-auto-complete", never, { "selectedItemTemplate": { "alias": "selectedItemTemplate"; "required": false; }; "items": { "alias": "items"; "required": false; }; "minLengthToSearch": { "alias": "minLengthToSearch"; "required": false; }; "delay": { "alias": "delay"; "required": false; }; "basicInput": { "alias": "basicInput"; "required": false; }; "typeAhead": { "alias": "typeAhead"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "allowedDomains": { "alias": "allowedDomains"; "required": false; }; }, { "onSearch": "onSearch"; "selectOption": "selectOption"; }, never, never, true, never>;
|
|
237
238
|
}
|
|
238
239
|
|
|
239
|
-
declare class DatePickerComponent extends BaseInputComponent {
|
|
240
|
+
declare class DatePickerComponent extends BaseInputComponent implements AfterViewInit {
|
|
240
241
|
showIcon: boolean;
|
|
241
242
|
showClear: boolean;
|
|
242
243
|
basicInput: boolean;
|
|
@@ -252,7 +253,7 @@ declare class DatePickerComponent extends BaseInputComponent {
|
|
|
252
253
|
withoutTime: boolean;
|
|
253
254
|
innerControl: FormControl<Date | null>;
|
|
254
255
|
constructor();
|
|
255
|
-
|
|
256
|
+
ngAfterViewInit(): void;
|
|
256
257
|
selectCurrentTime(e: any): void;
|
|
257
258
|
clearButtonClick(e: any): void;
|
|
258
259
|
afterClearDate(): void;
|