@colijnit/corecomponents_v12 256.1.10 → 256.1.11
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/bundles/colijnit-corecomponents_v12.umd.js +49 -31
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/base/base-input.component.js +56 -42
- package/fesm2015/colijnit-corecomponents_v12.js +41 -27
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/base/base-input.component.d.ts +10 -7
- package/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { AfterViewInit, ChangeDetectorRef, ComponentFactoryResolver, ElementRef, EventEmitter, OnDestroy, OnInit, ViewContainerRef } from
|
|
2
|
-
import { AsyncValidatorFn, FormControl, NgModel, ValidatorFn } from
|
|
3
|
-
import { FormInputUserModelChangeListenerService } from
|
|
4
|
-
import { NgZoneWrapperService } from
|
|
5
|
-
import { CoreComponentsIcon } from
|
|
6
|
-
import { FormComponent } from
|
|
7
|
-
import { ScreenConfigAdapterComponent } from
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ComponentFactoryResolver, ElementRef, EventEmitter, OnDestroy, OnInit, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { AsyncValidatorFn, FormControl, NgModel, ValidatorFn } from '@angular/forms';
|
|
3
|
+
import { FormInputUserModelChangeListenerService } from '../../core/service/form-input-user-change-listener.service';
|
|
4
|
+
import { NgZoneWrapperService } from '../../core/service/ng-zone-wrapper.service';
|
|
5
|
+
import { CoreComponentsIcon } from '../../core/enum/core-components-icon.enum';
|
|
6
|
+
import { FormComponent } from '../form/form.component';
|
|
7
|
+
import { ScreenConfigAdapterComponent } from '../../interfaces/screen-config-adapter.component.interface';
|
|
8
8
|
import { OverlayService } from '../../service/overlay.service';
|
|
9
9
|
/**
|
|
10
10
|
* Abstract base class for all concrete form input components that contain a native <input> element. Provides common data and functionality, such as
|
|
@@ -97,6 +97,8 @@ export declare abstract class BaseInputComponent<T> implements OnInit, OnDestroy
|
|
|
97
97
|
get isDestroyed(): boolean;
|
|
98
98
|
input: HTMLInputElement | HTMLTextAreaElement;
|
|
99
99
|
keepFocus: boolean;
|
|
100
|
+
canceled: boolean;
|
|
101
|
+
private conditionResolver;
|
|
100
102
|
set canSaveOrCancel(value: boolean);
|
|
101
103
|
get canSaveOrCancel(): boolean;
|
|
102
104
|
objectConfigName: string;
|
|
@@ -141,6 +143,7 @@ export declare abstract class BaseInputComponent<T> implements OnInit, OnDestroy
|
|
|
141
143
|
setModel(value: any): void;
|
|
142
144
|
requestFocus(): void;
|
|
143
145
|
doFocus(event?: any): any;
|
|
146
|
+
private waitForCancelCondition;
|
|
144
147
|
doBlur(event?: any, handleCommit?: boolean): Promise<any>;
|
|
145
148
|
detectChanges(): void;
|
|
146
149
|
markForCheck(): void;
|