@colijnit/corecomponents_v12 260.1.15 → 260.1.16
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 +12 -25
- 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 +5 -16
- package/esm2015/lib/components/base/commit-buttons/commit-buttons.component.js +2 -2
- package/esm2015/lib/components/input-text/input-text.component.js +3 -1
- package/esm2015/lib/components/list-of-values/list-of-values.component.js +53 -53
- package/esm2015/lib/directives/screen-configuration/screen-configuration.directive.js +2 -2
- package/fesm2015/colijnit-corecomponents_v12.js +60 -69
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/base/base-input.component.d.ts +1 -3
- package/package.json +1 -1
|
@@ -102,12 +102,11 @@ export declare abstract class BaseInputComponent<T> implements OnInit, OnDestroy
|
|
|
102
102
|
get isDestroyed(): boolean;
|
|
103
103
|
input: HTMLInputElement | HTMLTextAreaElement;
|
|
104
104
|
keepFocus: boolean;
|
|
105
|
-
canceled: boolean;
|
|
106
|
-
private conditionResolver;
|
|
107
105
|
set canSaveOrCancel(value: boolean);
|
|
108
106
|
get canSaveOrCancel(): boolean;
|
|
109
107
|
objectConfigName: string;
|
|
110
108
|
validationError: string;
|
|
109
|
+
shouldCommit: boolean;
|
|
111
110
|
protected _markedAsUserTouched: boolean;
|
|
112
111
|
protected _destroyed: boolean;
|
|
113
112
|
protected _hasOnPushCdStrategy: boolean;
|
|
@@ -149,7 +148,6 @@ export declare abstract class BaseInputComponent<T> implements OnInit, OnDestroy
|
|
|
149
148
|
setModel(value: any): void;
|
|
150
149
|
requestFocus(): void;
|
|
151
150
|
doFocus(event?: any): any;
|
|
152
|
-
private waitForCancelCondition;
|
|
153
151
|
doBlur(event?: any, handleCommit?: boolean): Promise<any>;
|
|
154
152
|
detectChanges(): void;
|
|
155
153
|
markForCheck(): void;
|