myrta-ui 1.1.90 → 1.1.91

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,65 +0,0 @@
1
- import { ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
2
- import { ControlValueAccessor } from '@angular/forms';
3
- import { Overlay } from '@angular/cdk/overlay';
4
- import { Field } from '../../../services';
5
- import { InputDateSizesTypes, InputDateValueTypes } from './input-date.enum';
6
- import { InputDateTimeValueTypes, InputDateTimeValueWithId } from '../input-date-time/models/input-date-time.model';
7
- import { PositionType } from '../../../enums/overlay';
8
- import * as i0 from "@angular/core";
9
- export declare class InputDateComponent implements OnInit, OnDestroy, ControlValueAccessor {
10
- private _overlay;
11
- private _detector;
12
- private _elementRef;
13
- private _clickSubscription;
14
- private _overlayRef;
15
- displayValue: string;
16
- selectedDate: Date | null;
17
- mask: string;
18
- errorMessage: string | null;
19
- uuid: string;
20
- fields: Field[];
21
- format: string;
22
- minDate: string | null;
23
- maxDate: string | null;
24
- isSilentValidation: boolean;
25
- isManualInput: boolean;
26
- closeAfterSelect: boolean;
27
- required: boolean;
28
- size: InputDateSizesTypes;
29
- customClasses: string;
30
- disabled: boolean;
31
- readonly: boolean;
32
- placeholder: string;
33
- popupPosition: PositionType;
34
- invalid: boolean;
35
- invalidMessage: string | string[];
36
- checkInvalid: true | false | null;
37
- changed: EventEmitter<InputDateTimeValueTypes>;
38
- modelChange: EventEmitter<InputDateTimeValueWithId>;
39
- blurred: EventEmitter<InputDateTimeValueWithId>;
40
- dateInput: ElementRef;
41
- private onChange;
42
- private onTouched;
43
- constructor(_overlay: Overlay, _detector: ChangeDetectorRef, _elementRef: ElementRef);
44
- ngOnInit(): void;
45
- ngOnDestroy(): void;
46
- get checkValidClasses(): string;
47
- get getClasses(): string;
48
- get isViewCleanIcon(): boolean;
49
- writeValue(value: string): void;
50
- registerOnChange(fn: (value: string) => void): void;
51
- registerOnTouched(fn: () => void): void;
52
- setDisabledState(isDisabled: boolean): void;
53
- set value(value: string);
54
- onInput(event: Event): void;
55
- private processInput;
56
- onBlur(): void;
57
- openCalendar(): void;
58
- onDateSelected(date: Date): void;
59
- closeCalendar(): void;
60
- clickToIconCalendar(): void;
61
- clickToIconClear(): void;
62
- updateValue(insideValue: InputDateValueTypes): void;
63
- static ɵfac: i0.ɵɵFactoryDeclaration<InputDateComponent, never>;
64
- static ɵcmp: i0.ɵɵComponentDeclaration<InputDateComponent, "mrx-input-date", never, { "fields": "fields"; "format": "format"; "minDate": "minDate"; "maxDate": "maxDate"; "isSilentValidation": "isSilentValidation"; "isManualInput": "isManualInput"; "closeAfterSelect": "closeAfterSelect"; "required": "required"; "size": "size"; "customClasses": "customClasses"; "disabled": "disabled"; "readonly": "readonly"; "placeholder": "placeholder"; "popupPosition": "popupPosition"; "invalid": "invalid"; "invalidMessage": "invalidMessage"; "checkInvalid": "checkInvalid"; }, { "changed": "changed"; "modelChange": "modelChange"; "blurred": "blurred"; }, never, never>;
65
- }
@@ -1,11 +0,0 @@
1
- export declare enum InputDateSizesEnum {
2
- 'small' = "mrx-input-date-sm",
3
- 'medium' = "mrx-input-date-md",
4
- 'large' = "mrx-input-date-lg"
5
- }
6
- export declare type InputDateSizesTypes = 'small' | 'medium' | 'large';
7
- export declare type InputDateValueTypes = string;
8
- export interface InputDateValueWithId {
9
- value: InputDateValueTypes;
10
- id: string;
11
- }
@@ -1,14 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./input-date.component";
3
- import * as i2 from "./components/date-calendar/date-calendar.component";
4
- import * as i3 from "@angular/common";
5
- import * as i4 from "@angular/forms";
6
- import * as i5 from "../../error-message/error-message.module";
7
- import * as i6 from "../../label/label.module";
8
- import * as i7 from "../../save-state/save-state.module";
9
- import * as i8 from "ngx-mask";
10
- export declare class InputDateModule {
11
- static ɵfac: i0.ɵɵFactoryDeclaration<InputDateModule, never>;
12
- static ɵmod: i0.ɵɵNgModuleDeclaration<InputDateModule, [typeof i1.InputDateComponent, typeof i2.DateCalendarComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.ErrorMessageModule, typeof i6.LabelModule, typeof i7.SaveStateModule, typeof i8.NgxMaskModule], [typeof i1.InputDateComponent]>;
13
- static ɵinj: i0.ɵɵInjectorDeclaration<InputDateModule>;
14
- }
@@ -1,13 +0,0 @@
1
- import { ConnectedPosition } from '@angular/cdk/overlay';
2
- export declare type PositionType = 'top' | 'bottom' | 'left' | 'right' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end';
3
- export declare enum PositionEnum {
4
- Top = "top",
5
- Bottom = "bottom",
6
- Left = "left",
7
- Right = "right",
8
- TopStart = "top-start",
9
- TopEnd = "top-end",
10
- BottomStart = "bottom-start",
11
- BottomEnd = "bottom-end"
12
- }
13
- export declare const PositionStrategyEnum: Record<PositionType, ConnectedPosition[]>;