@leanix/components 0.4.3 → 0.4.4
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/esm2020/lib/forms-ui/components/date-input/date-input.component.mjs +5 -4
- package/esm2020/lib/forms-ui/components/date-picker-ui/date-formatter.mjs +8 -0
- package/esm2020/lib/forms-ui/components/date-picker-ui/datepicker-inner.component.mjs +310 -0
- package/esm2020/lib/forms-ui/components/date-picker-ui/datepicker-ui.module.mjs +28 -0
- package/esm2020/lib/forms-ui/components/date-picker-ui/datepicker.component.mjs +205 -0
- package/esm2020/lib/forms-ui/components/date-picker-ui/datepicker.config.mjs +29 -0
- package/esm2020/lib/forms-ui/components/date-picker-ui/daypicker.component.mjs +305 -0
- package/esm2020/lib/forms-ui/components/date-picker-ui/isBs3.mjs +2 -0
- package/esm2020/lib/forms-ui/components/date-picker-ui/monthpicker.component.mjs +149 -0
- package/esm2020/lib/forms-ui/components/date-picker-ui/yearpicker.component.mjs +153 -0
- package/esm2020/lib/forms-ui/forms-ui.module.mjs +6 -6
- package/fesm2015/leanix-components.mjs +1151 -8
- package/fesm2015/leanix-components.mjs.map +1 -1
- package/fesm2020/leanix-components.mjs +1150 -8
- package/fesm2020/leanix-components.mjs.map +1 -1
- package/lib/forms-ui/components/date-picker-ui/date-formatter.d.ts +3 -0
- package/lib/forms-ui/components/date-picker-ui/datepicker-inner.component.d.ts +78 -0
- package/lib/forms-ui/components/date-picker-ui/datepicker-ui.module.d.ts +15 -0
- package/lib/forms-ui/components/date-picker-ui/datepicker.component.d.ts +81 -0
- package/lib/forms-ui/components/date-picker-ui/datepicker.config.d.ts +22 -0
- package/lib/forms-ui/components/date-picker-ui/daypicker.component.d.ts +17 -0
- package/lib/forms-ui/components/date-picker-ui/isBs3.d.ts +1 -0
- package/lib/forms-ui/components/date-picker-ui/monthpicker.component.d.ts +14 -0
- package/lib/forms-ui/components/date-picker-ui/yearpicker.component.d.ts +14 -0
- package/lib/forms-ui/forms-ui.module.d.ts +2 -2
- package/package.json +1 -1
- package/src/lib/forms-ui/components/date-picker-ui/README.md +8 -0
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { DateFormatter } from './date-formatter';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DatePickerInnerComponent implements OnInit, OnChanges {
|
|
5
|
+
locale: string;
|
|
6
|
+
datepickerMode: string;
|
|
7
|
+
startingDay: number;
|
|
8
|
+
yearRange: number;
|
|
9
|
+
minDate: Date;
|
|
10
|
+
maxDate: Date;
|
|
11
|
+
minMode: string;
|
|
12
|
+
maxMode: string;
|
|
13
|
+
showWeeks: boolean;
|
|
14
|
+
formatDay: string;
|
|
15
|
+
formatMonth: string;
|
|
16
|
+
formatYear: string;
|
|
17
|
+
formatDayHeader: string;
|
|
18
|
+
formatDayTitle: string;
|
|
19
|
+
formatMonthTitle: string;
|
|
20
|
+
onlyCurrentMonth: boolean;
|
|
21
|
+
shortcutPropagation: boolean;
|
|
22
|
+
customClass: {
|
|
23
|
+
date: Date;
|
|
24
|
+
mode: string;
|
|
25
|
+
clazz: string;
|
|
26
|
+
}[];
|
|
27
|
+
monthColLimit: number;
|
|
28
|
+
yearColLimit: number;
|
|
29
|
+
dateDisabled: {
|
|
30
|
+
date: Date;
|
|
31
|
+
mode: string;
|
|
32
|
+
}[];
|
|
33
|
+
dayDisabled: number[];
|
|
34
|
+
initDate: Date;
|
|
35
|
+
selectionDone: EventEmitter<Date>;
|
|
36
|
+
update: EventEmitter<Date>;
|
|
37
|
+
activeDateChange: EventEmitter<Date>;
|
|
38
|
+
stepDay: any;
|
|
39
|
+
stepMonth: any;
|
|
40
|
+
stepYear: any;
|
|
41
|
+
uniqueId: string;
|
|
42
|
+
protected modes: string[];
|
|
43
|
+
protected dateFormatter: DateFormatter;
|
|
44
|
+
protected _activeDate: Date;
|
|
45
|
+
protected selectedDate: Date;
|
|
46
|
+
protected activeDateId: string;
|
|
47
|
+
protected refreshViewHandlerDay: Function;
|
|
48
|
+
protected compareHandlerDay: Function;
|
|
49
|
+
protected refreshViewHandlerMonth: Function;
|
|
50
|
+
protected compareHandlerMonth: Function;
|
|
51
|
+
protected refreshViewHandlerYear: Function;
|
|
52
|
+
protected compareHandlerYear: Function;
|
|
53
|
+
get activeDate(): Date;
|
|
54
|
+
set activeDate(value: Date);
|
|
55
|
+
ngOnInit(): void;
|
|
56
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
57
|
+
checkIfActiveDateGotUpdated(activeDate: any): void;
|
|
58
|
+
setCompareHandler(handler: Function, type: string): void;
|
|
59
|
+
compare(date1: Date, date2: Date): number | undefined;
|
|
60
|
+
setRefreshViewHandler(handler: Function, type: string): void;
|
|
61
|
+
refreshView(): void;
|
|
62
|
+
dateFilter(date: Date, format: string): string;
|
|
63
|
+
isActive(dateObject: any): boolean;
|
|
64
|
+
createDateObject(date: Date, format: string): any;
|
|
65
|
+
split(arr: any[], size: number): any[];
|
|
66
|
+
fixTimeZone(date: Date): Date;
|
|
67
|
+
select(date: Date, isManual?: boolean): void;
|
|
68
|
+
move(direction: number): void;
|
|
69
|
+
toggleMode(_direction: number): void;
|
|
70
|
+
protected getCustomClassForDate(date: Date): string;
|
|
71
|
+
protected compareDateDisabled(date1Disabled: {
|
|
72
|
+
date: Date;
|
|
73
|
+
mode: string;
|
|
74
|
+
}, date2: Date): number | undefined;
|
|
75
|
+
protected isDisabled(date: Date): boolean;
|
|
76
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerInnerComponent, never>;
|
|
77
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerInnerComponent, "datepicker-inner", never, { "locale": "locale"; "datepickerMode": "datepickerMode"; "startingDay": "startingDay"; "yearRange": "yearRange"; "minDate": "minDate"; "maxDate": "maxDate"; "minMode": "minMode"; "maxMode": "maxMode"; "showWeeks": "showWeeks"; "formatDay": "formatDay"; "formatMonth": "formatMonth"; "formatYear": "formatYear"; "formatDayHeader": "formatDayHeader"; "formatDayTitle": "formatDayTitle"; "formatMonthTitle": "formatMonthTitle"; "onlyCurrentMonth": "onlyCurrentMonth"; "shortcutPropagation": "shortcutPropagation"; "customClass": "customClass"; "monthColLimit": "monthColLimit"; "yearColLimit": "yearColLimit"; "dateDisabled": "dateDisabled"; "dayDisabled": "dayDisabled"; "initDate": "initDate"; "activeDate": "activeDate"; }, { "selectionDone": "selectionDone"; "update": "update"; "activeDateChange": "activeDateChange"; }, never, ["*"], false, never>;
|
|
78
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./datepicker.component";
|
|
4
|
+
import * as i2 from "./datepicker-inner.component";
|
|
5
|
+
import * as i3 from "./daypicker.component";
|
|
6
|
+
import * as i4 from "./monthpicker.component";
|
|
7
|
+
import * as i5 from "./yearpicker.component";
|
|
8
|
+
import * as i6 from "@angular/common";
|
|
9
|
+
import * as i7 from "@angular/forms";
|
|
10
|
+
export declare class DatepickerUiModule {
|
|
11
|
+
static forRoot(): ModuleWithProviders<DatepickerUiModule>;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DatepickerUiModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DatepickerUiModule, [typeof i1.DatePickerComponent, typeof i2.DatePickerInnerComponent, typeof i3.DayPickerComponent, typeof i4.MonthPickerComponent, typeof i5.YearPickerComponent], [typeof i6.CommonModule, typeof i7.FormsModule], [typeof i1.DatePickerComponent, typeof i2.DatePickerInnerComponent, typeof i3.DayPickerComponent, typeof i4.MonthPickerComponent, typeof i5.YearPickerComponent]>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DatepickerUiModule>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { EventEmitter, Provider } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import { DatePickerInnerComponent } from './datepicker-inner.component';
|
|
4
|
+
import { DatepickerConfig } from './datepicker.config';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare const DATEPICKER_CONTROL_VALUE_ACCESSOR: Provider;
|
|
7
|
+
export declare class DatePickerComponent implements ControlValueAccessor {
|
|
8
|
+
/** sets datepicker mode, supports: `day`, `month`, `year` */
|
|
9
|
+
datepickerMode: string;
|
|
10
|
+
/** default date to show if `ng-model` value is not specified */
|
|
11
|
+
initDate: Date;
|
|
12
|
+
/** oldest selectable date */
|
|
13
|
+
minDate: Date;
|
|
14
|
+
/** latest selectable date */
|
|
15
|
+
maxDate: Date;
|
|
16
|
+
/** set lower datepicker mode, supports: `day`, `month`, `year` */
|
|
17
|
+
minMode: string;
|
|
18
|
+
/** sets upper datepicker mode, supports: `day`, `month`, `year` */
|
|
19
|
+
maxMode: string;
|
|
20
|
+
/** if false week numbers will be hidden */
|
|
21
|
+
showWeeks: boolean;
|
|
22
|
+
/** format of day in month */
|
|
23
|
+
formatDay: string;
|
|
24
|
+
/** format of month in year */
|
|
25
|
+
formatMonth: string;
|
|
26
|
+
/** format of year in year range */
|
|
27
|
+
formatYear: string;
|
|
28
|
+
/** format of day in week header */
|
|
29
|
+
formatDayHeader: string;
|
|
30
|
+
/** format of title when selecting day */
|
|
31
|
+
formatDayTitle: string;
|
|
32
|
+
/** format of title when selecting month */
|
|
33
|
+
formatMonthTitle: string;
|
|
34
|
+
/** starting day of the week from 0-6 (0=Sunday, ..., 6=Saturday) */
|
|
35
|
+
startingDay: number;
|
|
36
|
+
/** number of years displayed in year selection */
|
|
37
|
+
yearRange: number;
|
|
38
|
+
/** if true only dates from the currently displayed month will be shown */
|
|
39
|
+
onlyCurrentMonth: boolean;
|
|
40
|
+
/** if true shortcut`s event propagation will be disabled */
|
|
41
|
+
shortcutPropagation: boolean;
|
|
42
|
+
/** number of months displayed in a single row of month picker */
|
|
43
|
+
monthColLimit: number;
|
|
44
|
+
/** number of years displayed in a single row of year picker */
|
|
45
|
+
yearColLimit: number;
|
|
46
|
+
/** array of custom css classes to be applied to targeted dates */
|
|
47
|
+
customClass: {
|
|
48
|
+
date: Date;
|
|
49
|
+
mode: string;
|
|
50
|
+
clazz: string;
|
|
51
|
+
}[];
|
|
52
|
+
/** array of disabled dates */
|
|
53
|
+
dateDisabled: {
|
|
54
|
+
date: Date;
|
|
55
|
+
mode: string;
|
|
56
|
+
}[];
|
|
57
|
+
/** disabled days of the week from 0-6 (0=Sunday, ..., 6=Saturday) */
|
|
58
|
+
dayDisabled: number[];
|
|
59
|
+
/** currently active date */
|
|
60
|
+
get activeDate(): Date;
|
|
61
|
+
set activeDate(value: Date);
|
|
62
|
+
selectionDone: EventEmitter<Date>;
|
|
63
|
+
/** callback to invoke when the activeDate is changed. */
|
|
64
|
+
activeDateChange: EventEmitter<Date>;
|
|
65
|
+
_datePicker: DatePickerInnerComponent;
|
|
66
|
+
onChange: any;
|
|
67
|
+
onTouched: any;
|
|
68
|
+
config: DatepickerConfig;
|
|
69
|
+
protected _now: Date;
|
|
70
|
+
protected _activeDate: Date;
|
|
71
|
+
constructor(config: DatepickerConfig);
|
|
72
|
+
configureOptions(): void;
|
|
73
|
+
onUpdate(event: Date): void;
|
|
74
|
+
onSelectionDone(event: Date): void;
|
|
75
|
+
onActiveDateChange(event: Date): void;
|
|
76
|
+
writeValue(value: any): void;
|
|
77
|
+
registerOnChange(fn: () => void): void;
|
|
78
|
+
registerOnTouched(fn: () => void): void;
|
|
79
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerComponent, never>;
|
|
80
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent, "datepicker", never, { "datepickerMode": "datepickerMode"; "initDate": "initDate"; "minDate": "minDate"; "maxDate": "maxDate"; "minMode": "minMode"; "maxMode": "maxMode"; "showWeeks": "showWeeks"; "formatDay": "formatDay"; "formatMonth": "formatMonth"; "formatYear": "formatYear"; "formatDayHeader": "formatDayHeader"; "formatDayTitle": "formatDayTitle"; "formatMonthTitle": "formatMonthTitle"; "startingDay": "startingDay"; "yearRange": "yearRange"; "onlyCurrentMonth": "onlyCurrentMonth"; "shortcutPropagation": "shortcutPropagation"; "monthColLimit": "monthColLimit"; "yearColLimit": "yearColLimit"; "customClass": "customClass"; "dateDisabled": "dateDisabled"; "dayDisabled": "dayDisabled"; "activeDate": "activeDate"; }, { "selectionDone": "selectionDone"; "activeDateChange": "activeDateChange"; }, never, never, false, never>;
|
|
81
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class DatepickerConfig {
|
|
3
|
+
locale: string;
|
|
4
|
+
datepickerMode: string;
|
|
5
|
+
startingDay: number;
|
|
6
|
+
yearRange: number;
|
|
7
|
+
minMode: string;
|
|
8
|
+
maxMode: string;
|
|
9
|
+
showWeeks: boolean;
|
|
10
|
+
formatDay: string;
|
|
11
|
+
formatMonth: string;
|
|
12
|
+
formatYear: string;
|
|
13
|
+
formatDayHeader: string;
|
|
14
|
+
formatDayTitle: string;
|
|
15
|
+
formatMonthTitle: string;
|
|
16
|
+
onlyCurrentMonth: boolean;
|
|
17
|
+
monthColLimit: number;
|
|
18
|
+
yearColLimit: number;
|
|
19
|
+
shortcutPropagation: boolean;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DatepickerConfig, never>;
|
|
21
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DatepickerConfig>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DatePickerInnerComponent } from './datepicker-inner.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DayPickerComponent implements OnInit {
|
|
5
|
+
labels: any[];
|
|
6
|
+
title: string;
|
|
7
|
+
rows: any[];
|
|
8
|
+
weekNumbers: number[];
|
|
9
|
+
datePicker: DatePickerInnerComponent;
|
|
10
|
+
constructor(datePicker: DatePickerInnerComponent);
|
|
11
|
+
get isBs4(): boolean;
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
protected getDates(startDate: Date, n: number): Date[];
|
|
14
|
+
protected getISO8601WeekNumber(date: Date): number;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DayPickerComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DayPickerComponent, "daypicker", never, {}, {}, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const isBs3: () => boolean;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DatePickerInnerComponent } from './datepicker-inner.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MonthPickerComponent implements OnInit {
|
|
5
|
+
title: string;
|
|
6
|
+
rows: any[];
|
|
7
|
+
datePicker: DatePickerInnerComponent;
|
|
8
|
+
maxMode: string;
|
|
9
|
+
constructor(datePicker: DatePickerInnerComponent);
|
|
10
|
+
get isBs4(): boolean;
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonthPickerComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonthPickerComponent, "monthpicker", never, {}, {}, never, never, false, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DatePickerInnerComponent } from './datepicker-inner.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class YearPickerComponent implements OnInit {
|
|
5
|
+
datePicker: DatePickerInnerComponent;
|
|
6
|
+
title: string;
|
|
7
|
+
rows: any[];
|
|
8
|
+
constructor(datePicker: DatePickerInnerComponent);
|
|
9
|
+
get isBs4(): boolean;
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
protected getStartingYear(year: number): number;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<YearPickerComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<YearPickerComponent, "yearpicker", never, {}, {}, never, never, false, never>;
|
|
14
|
+
}
|
|
@@ -43,7 +43,7 @@ import * as i41 from "./directives/form-submit.directive";
|
|
|
43
43
|
import * as i42 from "@angular/common";
|
|
44
44
|
import * as i43 from "@angular/forms";
|
|
45
45
|
import * as i44 from "@ngx-translate/core";
|
|
46
|
-
import * as i45 from "
|
|
46
|
+
import * as i45 from "./components/date-picker-ui/datepicker-ui.module";
|
|
47
47
|
import * as i46 from "ngx-infinite-scroll";
|
|
48
48
|
import * as i47 from "@angular/cdk/clipboard";
|
|
49
49
|
import * as i48 from "@angular/cdk/overlay";
|
|
@@ -51,6 +51,6 @@ import * as i49 from "../core-ui/core-ui.module";
|
|
|
51
51
|
import * as i50 from "./components/drag-and-drop-list/drag-and-drop-list.module";
|
|
52
52
|
export declare class LxFormsModule {
|
|
53
53
|
static ɵfac: i0.ɵɵFactoryDeclaration<LxFormsModule, never>;
|
|
54
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LxFormsModule, [typeof i1.BasicDropdownComponent, typeof i2.ExpandedDropdownComponent, typeof i3.BasicDropdownItemComponent, typeof i4.BreadcrumbComponent, typeof i5.CopyButtonComponent, typeof i6.CurrencyInputComponent, typeof i7.CurrencySymbolComponent, typeof i8.DateInputComponent, typeof i9.FilterSelectionPipe, typeof i10.FilterTermPipe, typeof i11.FormErrorComponent, typeof i12.IconComponent, typeof i13.KeyboardActionSourceDirective, typeof i14.MarkInvalidDirective, typeof i15.MultiSelectComponent, typeof i16.OptionComponent, typeof i17.OptionGroupComponent, typeof i18.OptionGroupDropdownComponent, typeof i19.OptionsDropdownComponent, typeof i20.OptionsSubDropdownComponent, typeof i21.CdkOptionsDropdownComponent, typeof i22.CdkOptionsSubDropdownComponent, typeof i23.PickerComponent, typeof i24.PickerOptionComponent, typeof i25.PickerTriggerDirective, typeof i26.PillListComponent, typeof i27.PillItemComponent, typeof i28.ResponsiveInputComponent, typeof i29.SelectableItemDirective, typeof i30.SelectedOptionDirective, typeof i31.SelectDropdownDirective, typeof i32.SingleSelectComponent, typeof i33.SelectListComponent, typeof i34.SliderToggleComponent, typeof i35.SortingDropdownComponent, typeof i36.SortingDropdownTriggerComponent, typeof i37.InputComponent, typeof i38.FormatNumberPipe, typeof i39.FormErrorDirective, typeof i40.ErrorMessageComponent, typeof i41.FormSubmitDirective], [typeof i42.CommonModule, typeof i43.FormsModule, typeof i43.ReactiveFormsModule, typeof i44.TranslateModule, typeof i45.
|
|
54
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LxFormsModule, [typeof i1.BasicDropdownComponent, typeof i2.ExpandedDropdownComponent, typeof i3.BasicDropdownItemComponent, typeof i4.BreadcrumbComponent, typeof i5.CopyButtonComponent, typeof i6.CurrencyInputComponent, typeof i7.CurrencySymbolComponent, typeof i8.DateInputComponent, typeof i9.FilterSelectionPipe, typeof i10.FilterTermPipe, typeof i11.FormErrorComponent, typeof i12.IconComponent, typeof i13.KeyboardActionSourceDirective, typeof i14.MarkInvalidDirective, typeof i15.MultiSelectComponent, typeof i16.OptionComponent, typeof i17.OptionGroupComponent, typeof i18.OptionGroupDropdownComponent, typeof i19.OptionsDropdownComponent, typeof i20.OptionsSubDropdownComponent, typeof i21.CdkOptionsDropdownComponent, typeof i22.CdkOptionsSubDropdownComponent, typeof i23.PickerComponent, typeof i24.PickerOptionComponent, typeof i25.PickerTriggerDirective, typeof i26.PillListComponent, typeof i27.PillItemComponent, typeof i28.ResponsiveInputComponent, typeof i29.SelectableItemDirective, typeof i30.SelectedOptionDirective, typeof i31.SelectDropdownDirective, typeof i32.SingleSelectComponent, typeof i33.SelectListComponent, typeof i34.SliderToggleComponent, typeof i35.SortingDropdownComponent, typeof i36.SortingDropdownTriggerComponent, typeof i37.InputComponent, typeof i38.FormatNumberPipe, typeof i39.FormErrorDirective, typeof i40.ErrorMessageComponent, typeof i41.FormSubmitDirective], [typeof i42.CommonModule, typeof i43.FormsModule, typeof i43.ReactiveFormsModule, typeof i44.TranslateModule, typeof i45.DatepickerUiModule, typeof i46.InfiniteScrollModule, typeof i47.ClipboardModule, typeof i48.OverlayModule, typeof i49.LxCoreUiModule, typeof i50.LxDragAndDropListModule], [typeof i1.BasicDropdownComponent, typeof i2.ExpandedDropdownComponent, typeof i3.BasicDropdownItemComponent, typeof i4.BreadcrumbComponent, typeof i5.CopyButtonComponent, typeof i6.CurrencyInputComponent, typeof i7.CurrencySymbolComponent, typeof i8.DateInputComponent, typeof i9.FilterSelectionPipe, typeof i10.FilterTermPipe, typeof i11.FormErrorComponent, typeof i12.IconComponent, typeof i13.KeyboardActionSourceDirective, typeof i14.MarkInvalidDirective, typeof i15.MultiSelectComponent, typeof i16.OptionComponent, typeof i17.OptionGroupComponent, typeof i18.OptionGroupDropdownComponent, typeof i19.OptionsDropdownComponent, typeof i20.OptionsSubDropdownComponent, typeof i21.CdkOptionsDropdownComponent, typeof i22.CdkOptionsSubDropdownComponent, typeof i23.PickerComponent, typeof i24.PickerOptionComponent, typeof i25.PickerTriggerDirective, typeof i26.PillListComponent, typeof i27.PillItemComponent, typeof i28.ResponsiveInputComponent, typeof i29.SelectableItemDirective, typeof i31.SelectDropdownDirective, typeof i30.SelectedOptionDirective, typeof i33.SelectListComponent, typeof i32.SingleSelectComponent, typeof i34.SliderToggleComponent, typeof i35.SortingDropdownComponent, typeof i36.SortingDropdownTriggerComponent, typeof i38.FormatNumberPipe, typeof i39.FormErrorDirective, typeof i41.FormSubmitDirective, typeof i40.ErrorMessageComponent, typeof i50.LxDragAndDropListModule]>;
|
|
55
55
|
static ɵinj: i0.ɵɵInjectorDeclaration<LxFormsModule>;
|
|
56
56
|
}
|
package/package.json
CHANGED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
This module has been copied from ngx-bootstrap project
|
|
2
|
+
|
|
3
|
+
https://github.com/valor-software/ngx-bootstrap/blob/v5.6.2/src/datepicker/datepicker.module.ts
|
|
4
|
+
|
|
5
|
+
While upgrading to Angular 16, ngx-bootstrap has some compatibility issues. So we decided to remove this dependency and copy over the
|
|
6
|
+
only component we need (datepicker) from the project.
|
|
7
|
+
|
|
8
|
+
Changing this module isn't recommended, instead find an appropriate date-picker from some other package which has LTS.
|