@colijnit/corecomponents_v12 260.1.15 → 260.1.17
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 +74 -34
- 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/filter-item/filter-item.component.js +55 -8
- 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/core/enum/filterItem-mode.enum.js +9 -3
- package/esm2015/lib/directives/screen-configuration/screen-configuration.directive.js +2 -2
- package/fesm2015/colijnit-corecomponents_v12.js +122 -78
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/base/base-input.component.d.ts +1 -3
- package/lib/components/filter-item/filter-item.component.d.ts +3 -0
- package/lib/core/enum/filterItem-mode.enum.d.ts +2 -0
- 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;
|
|
@@ -91,7 +91,9 @@ export declare class FilterItemComponent implements OnInit, ScreenConfigAdapterC
|
|
|
91
91
|
private _createModelForSliderMode;
|
|
92
92
|
private _createModelForNullableSliderMode;
|
|
93
93
|
private _createModelForCheckboxToText;
|
|
94
|
+
private _createModelForCheckboxToTFText;
|
|
94
95
|
private _createModelForCheckboxToSimpleText;
|
|
96
|
+
private _createModelForCheckboxToTFSimpleText;
|
|
95
97
|
private _createModelForCheckboxToBinary;
|
|
96
98
|
private _createModelForDateField;
|
|
97
99
|
private _createModelForDateRange;
|
|
@@ -103,6 +105,7 @@ export declare class FilterItemComponent implements OnInit, ScreenConfigAdapterC
|
|
|
103
105
|
private _uncheckAll;
|
|
104
106
|
private _readModelForSliderMode;
|
|
105
107
|
private _readModelForCheckboxToText;
|
|
108
|
+
private _readModelForCheckboxToTFText;
|
|
106
109
|
private _readModelForCheckboxToBinary;
|
|
107
110
|
private _readModelForDateField;
|
|
108
111
|
private _readModelForDateRangeField;
|
|
@@ -11,5 +11,7 @@ export declare enum FilterItemMode {
|
|
|
11
11
|
Checkbox = "checkbox",
|
|
12
12
|
CheckboxToSimpleText = "checkboxToSimpleText",
|
|
13
13
|
CheckboxToText = "checkboxToText",
|
|
14
|
+
CheckboxToTFSimpleText = "checkboxToTFSimpleText",
|
|
15
|
+
CheckboxToTFText = "checkboxToTFText",
|
|
14
16
|
CheckboxToBinary = "checkboxToBinary"
|
|
15
17
|
}
|