@corp-products/ui-components 4.2.4 → 4.2.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.
package/index.d.ts
CHANGED
|
@@ -269,6 +269,7 @@ declare class InputComponent extends BaseInputComponent {
|
|
|
269
269
|
prefix: string;
|
|
270
270
|
rows: number;
|
|
271
271
|
cols: number;
|
|
272
|
+
maxLength: number | null;
|
|
272
273
|
autoResize: boolean;
|
|
273
274
|
basicInput: boolean;
|
|
274
275
|
noStyle: boolean;
|
|
@@ -282,7 +283,7 @@ declare class InputComponent extends BaseInputComponent {
|
|
|
282
283
|
constructor();
|
|
283
284
|
clearInput(): void;
|
|
284
285
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputComponent, never>;
|
|
285
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "stc-input", never, { "type": { "alias": "type"; "required": false; }; "contentType": { "alias": "contentType"; "required": false; }; "size": { "alias": "size"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "autoResize": { "alias": "autoResize"; "required": false; }; "basicInput": { "alias": "basicInput"; "required": false; }; "noStyle": { "alias": "noStyle"; "required": false; }; "canClear": { "alias": "canClear"; "required": false; }; "hideOptionalLabel": { "alias": "hideOptionalLabel"; "required": false; }; "inputDirection": { "alias": "inputDirection"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "defaultColor": { "alias": "defaultColor"; "required": false; }; "iconClass": { "alias": "iconClass"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
286
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "stc-input", never, { "type": { "alias": "type"; "required": false; }; "contentType": { "alias": "contentType"; "required": false; }; "size": { "alias": "size"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "autoResize": { "alias": "autoResize"; "required": false; }; "basicInput": { "alias": "basicInput"; "required": false; }; "noStyle": { "alias": "noStyle"; "required": false; }; "canClear": { "alias": "canClear"; "required": false; }; "hideOptionalLabel": { "alias": "hideOptionalLabel"; "required": false; }; "inputDirection": { "alias": "inputDirection"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "defaultColor": { "alias": "defaultColor"; "required": false; }; "iconClass": { "alias": "iconClass"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
286
287
|
}
|
|
287
288
|
|
|
288
289
|
interface LabelValue<T> {
|
|
@@ -723,6 +724,7 @@ declare class DualCalendarComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
723
724
|
calendarContainer: ElementRef;
|
|
724
725
|
hijriCal: NgbCalendarIslamicUmalqura;
|
|
725
726
|
renderer: Renderer2;
|
|
727
|
+
private hostEl;
|
|
726
728
|
constructor();
|
|
727
729
|
ngOnChanges(changes: SimpleChanges): void;
|
|
728
730
|
ngOnInit(): void;
|
|
@@ -730,6 +732,7 @@ declare class DualCalendarComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
730
732
|
moveElementToBody(): void;
|
|
731
733
|
wrapperVisible(): void;
|
|
732
734
|
wrapperHidden(): void;
|
|
735
|
+
private positionCalendar;
|
|
733
736
|
setDate(value: string | null): void;
|
|
734
737
|
onDocumentClick(event: MouseEvent): void;
|
|
735
738
|
private structToNgbDate;
|