@colijnit/corecomponents_v12 259.1.15 → 259.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 +95 -10
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/filter-item/filter-item.component.js +4 -3
- package/esm2015/lib/components/input-date-picker/input-date-picker.component.js +5 -2
- package/esm2015/lib/components/input-date-range-picker/input-date-range-picker.component.js +5 -2
- package/esm2015/lib/components/input-text/input-text.component.js +88 -8
- package/esm2015/lib/components/simple-grid/simple-grid.component.js +9 -1
- package/fesm2015/colijnit-corecomponents_v12.js +104 -9
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/filter-item/filter-item.component.d.ts +1 -0
- package/lib/components/input-date-picker/input-date-picker.component.d.ts +1 -0
- package/lib/components/input-date-range-picker/input-date-range-picker.component.d.ts +1 -0
- package/lib/components/input-text/input-text.component.d.ts +5 -1
- package/package.json +1 -1
|
@@ -32,6 +32,7 @@ export declare class FilterItemComponent implements OnInit, ScreenConfigAdapterC
|
|
|
32
32
|
sliderDefaultMax: number;
|
|
33
33
|
fullRangeIsNull: boolean;
|
|
34
34
|
canFilterByCode: boolean;
|
|
35
|
+
firstDayOfWeek: string;
|
|
35
36
|
set model(newModel: any);
|
|
36
37
|
get model(): any;
|
|
37
38
|
set configObject(value: ObjectConfiguration);
|
|
@@ -14,6 +14,7 @@ export declare class InputDatePickerComponent extends BaseInputDatePickerDirecti
|
|
|
14
14
|
elementRef?: ElementRef;
|
|
15
15
|
modelAsString: string;
|
|
16
16
|
private _calendarComponentRef;
|
|
17
|
+
firstDayOfWeek: string;
|
|
17
18
|
showClass(): boolean;
|
|
18
19
|
constructor(formComponent: FormComponent, changeDetector: ChangeDetectorRef, overlayService: OverlayService, componentFactoryResolver: ComponentFactoryResolver, formUserChangeListener?: FormInputUserModelChangeListenerService, ngZoneWrapper?: NgZoneWrapperService, elementRef?: ElementRef);
|
|
19
20
|
handleDateSelected(date: Date): void;
|
|
@@ -6,6 +6,7 @@ export declare class InputDateRangePickerComponent extends BaseInputDatePickerDi
|
|
|
6
6
|
private readonly EARLIEST_DATE;
|
|
7
7
|
private readonly LATEST_DATE;
|
|
8
8
|
private _doubleCalendarComponentRef;
|
|
9
|
+
firstDayOfWeek: string;
|
|
9
10
|
firstInput: ElementRef;
|
|
10
11
|
secondInput: ElementRef;
|
|
11
12
|
showClass(): boolean;
|
|
@@ -35,6 +35,7 @@ export declare class InputTextComponent extends BaseInputComponent<any> implemen
|
|
|
35
35
|
rightIconData: SafeHtml | undefined;
|
|
36
36
|
selectOnFocus: boolean;
|
|
37
37
|
emptyPlace: boolean;
|
|
38
|
+
firstDayOfWeek: string;
|
|
38
39
|
noStyle: boolean;
|
|
39
40
|
hideArrowButtons: boolean;
|
|
40
41
|
get isDate(): boolean;
|
|
@@ -55,10 +56,11 @@ export declare class InputTextComponent extends BaseInputComponent<any> implemen
|
|
|
55
56
|
get model(): any;
|
|
56
57
|
get pipedModel(): any;
|
|
57
58
|
isFocusedOnDate: boolean;
|
|
59
|
+
weekInputBuffer: string;
|
|
60
|
+
isWeekInputMode: boolean;
|
|
58
61
|
private _isLeftIconMouseDown;
|
|
59
62
|
private _isRightIconMouseDown;
|
|
60
63
|
constructor(formComponent: FormComponent, injector: Injector, changeDetector: ChangeDetectorRef, overlayService: OverlayService, componentFactoryResolver: ComponentFactoryResolver, formUserChangeListener?: FormInputUserModelChangeListenerService, ngZoneWrapper?: NgZoneWrapperService, elementRef?: ElementRef);
|
|
61
|
-
excludeNonDigitChars(event: any): boolean;
|
|
62
64
|
handleLeftIconClick(event: MouseEvent): void;
|
|
63
65
|
handleLeftIconMouseDown(event: MouseEvent): void;
|
|
64
66
|
handleLeftIconMouseUp(event: MouseEvent): void;
|
|
@@ -69,4 +71,6 @@ export declare class InputTextComponent extends BaseInputComponent<any> implemen
|
|
|
69
71
|
handleBlur(event: FocusEvent): void;
|
|
70
72
|
handleDoFocus(event: MouseEvent): void;
|
|
71
73
|
clearInput(event: MouseEvent): void;
|
|
74
|
+
handleKeyDownInput(event: KeyboardEvent): void;
|
|
75
|
+
private convertWeekToDate;
|
|
72
76
|
}
|