@coreui/angular-pro 4.2.17 → 4.2.18
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/calendar/calendar/calendar.component.mjs +10 -8
- package/esm2020/lib/calendar/calendar-month/calendar-month.component.mjs +11 -8
- package/esm2020/lib/calendar/calendar.utils.mjs +1 -1
- package/esm2020/lib/date-picker/date-picker.component.mjs +3 -3
- package/esm2020/lib/date-range-picker/date-range-picker/date-range-picker.component.mjs +20 -7
- package/esm2020/lib/dropdown/dropdown/dropdown.component.mjs +3 -3
- package/esm2020/lib/multi-select/multi-select/multi-select.component.mjs +152 -102
- package/esm2020/lib/multi-select/multi-select-option/multi-select-option.component.mjs +11 -8
- package/esm2020/lib/multi-select/multi-select.module.mjs +5 -4
- package/esm2020/lib/smart-table/public_api.mjs +2 -1
- package/esm2020/lib/smart-table/smart-table/smart-table.component.mjs +20 -15
- package/esm2020/lib/smart-table/smart-table-head/smart-table-head.component.mjs +17 -3
- package/esm2020/lib/smart-table/smart-table.module.mjs +3 -3
- package/fesm2015/coreui-angular-pro.mjs +292 -202
- package/fesm2015/coreui-angular-pro.mjs.map +1 -1
- package/fesm2020/coreui-angular-pro.mjs +284 -197
- package/fesm2020/coreui-angular-pro.mjs.map +1 -1
- package/lib/calendar/calendar/calendar.component.d.ts +2 -2
- package/lib/date-range-picker/date-range-picker/date-range-picker.component.d.ts +9 -3
- package/lib/multi-select/multi-select/multi-select.component.d.ts +27 -6
- package/lib/multi-select/multi-select-option/multi-select-option.component.d.ts +1 -1
- package/lib/multi-select/multi-select.module.d.ts +2 -1
- package/lib/smart-table/public_api.d.ts +1 -0
- package/lib/smart-table/smart-table/smart-table.component.d.ts +6 -3
- package/lib/smart-table/smart-table-head/smart-table-head.component.d.ts +5 -1
- package/lib/smart-table/smart-table.module.d.ts +1 -1
- package/package.json +4 -3
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EventEmitter, OnDestroy, OnInit, QueryList } from '@angular/core';
|
|
2
2
|
import { BooleanInput } from '@angular/cdk/coercion';
|
|
3
|
-
import { CalendarService, DateFilterType, DayFormatType, WeekdayFormatType } from '../calendar.service';
|
|
4
3
|
import { CalendarMonthComponent } from '../calendar-month/calendar-month.component';
|
|
4
|
+
import { CalendarService, DateFilterType, DayFormatType, WeekdayFormatType } from '../calendar.service';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CalendarComponent implements OnInit, OnDestroy {
|
|
7
7
|
private calendarService;
|
|
@@ -13,7 +13,7 @@ export declare class CalendarComponent implements OnInit, OnDestroy {
|
|
|
13
13
|
* Default date of the component
|
|
14
14
|
* @type (Date | string)
|
|
15
15
|
*/
|
|
16
|
-
set calendarDate(value: Date | string | number
|
|
16
|
+
set calendarDate(value: Date | string | number);
|
|
17
17
|
get calendarDate(): Date;
|
|
18
18
|
private _calendarDate;
|
|
19
19
|
/**
|
|
@@ -3,6 +3,7 @@ import { ControlValueAccessor, FormControl, FormGroup } from '@angular/forms';
|
|
|
3
3
|
import { BooleanInput } from '@angular/cdk/coercion';
|
|
4
4
|
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
5
5
|
import { Subscription } from 'rxjs';
|
|
6
|
+
import { Options } from '@popperjs/core';
|
|
6
7
|
import { Colors } from '../../coreui.types';
|
|
7
8
|
import { DateFilterType, DayFormatType, WeekdayFormatType } from '../../calendar/calendar.service';
|
|
8
9
|
import { TemplateIdDirective } from '../../shared';
|
|
@@ -130,7 +131,7 @@ export declare class DateRangePickerComponent implements OnInit, OnDestroy, Cont
|
|
|
130
131
|
set endDate(value: Date | null | undefined);
|
|
131
132
|
get endDate(): Date | null | undefined;
|
|
132
133
|
private _endDate?;
|
|
133
|
-
calendarDate
|
|
134
|
+
calendarDate: Date;
|
|
134
135
|
disabledDates: Date[] | Date[][];
|
|
135
136
|
set firstDayOfWeek(value: number);
|
|
136
137
|
get firstDayOfWeek(): number;
|
|
@@ -162,6 +163,11 @@ export declare class DateRangePickerComponent implements OnInit, OnDestroy, Cont
|
|
|
162
163
|
* @default 'short'
|
|
163
164
|
*/
|
|
164
165
|
weekdayFormat: WeekdayFormatType;
|
|
166
|
+
/**
|
|
167
|
+
* Optional popper Options object
|
|
168
|
+
* @type Partial<Options>
|
|
169
|
+
*/
|
|
170
|
+
popperjsOptions: Partial<Options>;
|
|
165
171
|
readonly valueChange: EventEmitter<Date | Date[] | undefined>;
|
|
166
172
|
calendarCellHover: EventEmitter<Date | null>;
|
|
167
173
|
calendarDateChange: EventEmitter<Date>;
|
|
@@ -206,7 +212,7 @@ export declare class DateRangePickerComponent implements OnInit, OnDestroy, Cont
|
|
|
206
212
|
handleCalendarDateChange($event: Date): void;
|
|
207
213
|
handleStartDateChange(date: Date | null): void;
|
|
208
214
|
handleEndDateChange(date: Date | null): void;
|
|
209
|
-
handleClear($event
|
|
215
|
+
handleClear($event?: MouseEvent): void;
|
|
210
216
|
handleStartDateInputChange($event: any): void;
|
|
211
217
|
handleEndDateInputChange($event: any): void;
|
|
212
218
|
forbiddenDate(date: Date): boolean;
|
|
@@ -220,5 +226,5 @@ export declare class DateRangePickerComponent implements OnInit, OnDestroy, Cont
|
|
|
220
226
|
handleStartTimeChange(time: Date | undefined): void;
|
|
221
227
|
handleEndTimeChange(time: Date | undefined): void;
|
|
222
228
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateRangePickerComponent, never>;
|
|
223
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangePickerComponent, "c-date-range-picker", ["cDateRangePicker"], { "dayFormat": "dayFormat"; "calendars": "calendars"; "cleaner": "cleaner"; "format": "format"; "indicator": "indicator"; "inputReadOnly": "inputReadOnly"; "navYearFirst": "navYearFirst"; "placeholder": "placeholder"; "ranges": "ranges"; "rangesButtonsColor": "rangesButtonsColor"; "rangesButtonsSize": "rangesButtonsSize"; "rangesButtonsVariant": "rangesButtonsVariant"; "separator": "separator"; "size": "size"; "timepicker": "timepicker"; "visible": "visible"; "startDate": "startDate"; "endDate": "endDate"; "calendarDate": "calendarDate"; "disabledDates": "disabledDates"; "firstDayOfWeek": "firstDayOfWeek"; "locale": "locale"; "maxDate": "maxDate"; "minDate": "minDate"; "navigation": "navigation"; "range": "range"; "dateFilter": "dateFilter"; "disabled": "disabled"; "value": "value"; "weekdayFormat": "weekdayFormat"; }, { "valueChange": "valueChange"; "calendarCellHover": "calendarCellHover"; "calendarDateChange": "calendarDateChange"; "endDateChange": "endDateChange"; "startDateChange": "startDateChange"; }, ["contentTemplates"], ["*"], false>;
|
|
229
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangePickerComponent, "c-date-range-picker", ["cDateRangePicker"], { "dayFormat": "dayFormat"; "calendars": "calendars"; "cleaner": "cleaner"; "format": "format"; "indicator": "indicator"; "inputReadOnly": "inputReadOnly"; "navYearFirst": "navYearFirst"; "placeholder": "placeholder"; "ranges": "ranges"; "rangesButtonsColor": "rangesButtonsColor"; "rangesButtonsSize": "rangesButtonsSize"; "rangesButtonsVariant": "rangesButtonsVariant"; "separator": "separator"; "size": "size"; "timepicker": "timepicker"; "visible": "visible"; "startDate": "startDate"; "endDate": "endDate"; "calendarDate": "calendarDate"; "disabledDates": "disabledDates"; "firstDayOfWeek": "firstDayOfWeek"; "locale": "locale"; "maxDate": "maxDate"; "minDate": "minDate"; "navigation": "navigation"; "range": "range"; "dateFilter": "dateFilter"; "disabled": "disabled"; "value": "value"; "weekdayFormat": "weekdayFormat"; "popperjsOptions": "popperOptions"; }, { "valueChange": "valueChange"; "calendarCellHover": "calendarCellHover"; "calendarDateChange": "calendarDateChange"; "endDateChange": "endDateChange"; "startDateChange": "startDateChange"; }, ["contentTemplates"], ["*"], false>;
|
|
224
230
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { AfterContentInit, AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, NgZone, OnDestroy, OnInit, QueryList, Renderer2, ViewContainerRef } from '@angular/core';
|
|
1
|
+
import { AfterContentInit, AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, IterableDiffers, NgZone, OnChanges, OnDestroy, OnInit, QueryList, Renderer2, SimpleChanges, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { FocusMonitor, FocusOrigin } from '@angular/cdk/a11y';
|
|
3
3
|
import { BooleanInput } from '@angular/cdk/coercion';
|
|
4
4
|
import { ControlValueAccessor } from '@angular/forms';
|
|
5
|
+
import { Modifier, Options } from '@popperjs/core';
|
|
5
6
|
import { IMultiSelect, IOption } from '../multi-select.type';
|
|
6
7
|
import { MultiSelectService } from '../multi-select.service';
|
|
7
8
|
import { MultiSelectOptionComponent } from '../multi-select-option/multi-select-option.component';
|
|
@@ -9,7 +10,8 @@ import * as i0 from "@angular/core";
|
|
|
9
10
|
interface IPluralMap {
|
|
10
11
|
[k: string]: string;
|
|
11
12
|
}
|
|
12
|
-
export declare
|
|
13
|
+
export declare const observeReferenceModifier: Modifier<string, any>;
|
|
14
|
+
export declare class MultiSelectComponent implements IMultiSelect, ControlValueAccessor, AfterContentInit, AfterViewInit, OnChanges, OnDestroy, OnInit {
|
|
13
15
|
private elementRef;
|
|
14
16
|
private renderer;
|
|
15
17
|
private ngZone;
|
|
@@ -17,7 +19,9 @@ export declare class MultiSelectComponent implements IMultiSelect, ControlValueA
|
|
|
17
19
|
private viewContainerRef;
|
|
18
20
|
private focusMonitor;
|
|
19
21
|
private multiSelectService;
|
|
20
|
-
|
|
22
|
+
private iterableDiffers;
|
|
23
|
+
constructor(elementRef: ElementRef, renderer: Renderer2, ngZone: NgZone, changeDetectorRef: ChangeDetectorRef, viewContainerRef: ViewContainerRef, focusMonitor: FocusMonitor, multiSelectService: MultiSelectService, iterableDiffers: IterableDiffers);
|
|
24
|
+
private readonly differ;
|
|
21
25
|
static ngAcceptInputType_multiple: BooleanInput;
|
|
22
26
|
static ngAcceptInputType_disabled: BooleanInput;
|
|
23
27
|
onChange: any;
|
|
@@ -46,8 +50,12 @@ export declare class MultiSelectComponent implements IMultiSelect, ControlValueA
|
|
|
46
50
|
selectionTypeCounterTextPluralMap?: IPluralMap;
|
|
47
51
|
/**
|
|
48
52
|
* Size the component small or large.
|
|
53
|
+
* @type 'sm' | 'lg' | undefined
|
|
49
54
|
*/
|
|
50
55
|
size?: 'sm' | 'lg';
|
|
56
|
+
/**
|
|
57
|
+
* Initial value of multi-select
|
|
58
|
+
*/
|
|
51
59
|
set value(value: string | string[]);
|
|
52
60
|
get value(): string | string[];
|
|
53
61
|
private _value;
|
|
@@ -56,6 +64,11 @@ export declare class MultiSelectComponent implements IMultiSelect, ControlValueA
|
|
|
56
64
|
get visible(): boolean;
|
|
57
65
|
private _visible;
|
|
58
66
|
readonly visibleChange: EventEmitter<boolean>;
|
|
67
|
+
/**
|
|
68
|
+
* Optional popper Options object
|
|
69
|
+
* @type Partial<Options>
|
|
70
|
+
*/
|
|
71
|
+
popperjsOptions: Partial<Options>;
|
|
59
72
|
isDropdownVisible: boolean;
|
|
60
73
|
set selectedOptions(value: any[]);
|
|
61
74
|
get selectedOptions(): any[];
|
|
@@ -70,8 +83,13 @@ export declare class MultiSelectComponent implements IMultiSelect, ControlValueA
|
|
|
70
83
|
multiSelectOptions: QueryList<MultiSelectOptionComponent>;
|
|
71
84
|
private listKeyManager;
|
|
72
85
|
inputElement: ElementRef;
|
|
73
|
-
|
|
86
|
+
dropdownMenu: ElementRef;
|
|
87
|
+
dropdownToggle: ElementRef;
|
|
88
|
+
dropdown: ElementRef;
|
|
74
89
|
get hostClasses(): {
|
|
90
|
+
disabled: boolean;
|
|
91
|
+
};
|
|
92
|
+
get multiselectClasses(): {
|
|
75
93
|
[x: string]: boolean;
|
|
76
94
|
'form-multi-select': boolean;
|
|
77
95
|
'form-multi-select-selection-tags': boolean;
|
|
@@ -96,10 +114,12 @@ export declare class MultiSelectComponent implements IMultiSelect, ControlValueA
|
|
|
96
114
|
focusOrigin(origin: FocusOrigin): boolean;
|
|
97
115
|
ngOnInit(): void;
|
|
98
116
|
ngOnDestroy(): void;
|
|
117
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
99
118
|
ngAfterContentInit(): void;
|
|
100
119
|
ngAfterViewInit(): void;
|
|
101
120
|
private multiselectSubscribe;
|
|
102
|
-
|
|
121
|
+
selectOptions(): void;
|
|
122
|
+
clearAllOptions($event?: MouseEvent): void;
|
|
103
123
|
selectAllOptions(): void;
|
|
104
124
|
handleTagRemove($event: IOption): void;
|
|
105
125
|
setFocus(): void;
|
|
@@ -110,7 +130,8 @@ export declare class MultiSelectComponent implements IMultiSelect, ControlValueA
|
|
|
110
130
|
handleSearchKeyDown($event: KeyboardEvent): void;
|
|
111
131
|
private selectOption;
|
|
112
132
|
private selectedOptionsUpdate;
|
|
133
|
+
private setFocusMonitor;
|
|
113
134
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
|
|
114
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "c-multi-select", ["cMultiSelect"], { "cleaner": "cleaner"; "disabled": "disabled"; "multiple": "multiple"; "nativeName": "nativeName"; "nativeId": "nativeId"; "optionsMaxHeight": "optionsMaxHeight"; "optionsStyle": "optionsStyle"; "placeholder": "placeholder"; "search": "search"; "searchNoResultsLabel": "searchNoResultsLabel"; "selectAll": "selectAll"; "selectAllLabel": "selectAllLabel"; "selectionType": "selectionType"; "selectionTypeCounterText": "selectionTypeCounterText"; "selectionTypeCounterTextPluralMap": "selectionTypeCounterTextPluralMap"; "size": "size"; "value": "value"; "visible": "visible"; }, { "valueChange": "valueChange"; "visibleChange": "visibleChange"; }, ["multiSelectOptions"], ["*"], false>;
|
|
135
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "c-multi-select", ["cMultiSelect"], { "cleaner": "cleaner"; "disabled": "disabled"; "multiple": "multiple"; "nativeName": "nativeName"; "nativeId": "nativeId"; "optionsMaxHeight": "optionsMaxHeight"; "optionsStyle": "optionsStyle"; "placeholder": "placeholder"; "search": "search"; "searchNoResultsLabel": "searchNoResultsLabel"; "selectAll": "selectAll"; "selectAllLabel": "selectAllLabel"; "selectionType": "selectionType"; "selectionTypeCounterText": "selectionTypeCounterText"; "selectionTypeCounterTextPluralMap": "selectionTypeCounterTextPluralMap"; "size": "size"; "value": "value"; "visible": "visible"; "popperjsOptions": "popperOptions"; }, { "valueChange": "valueChange"; "visibleChange": "visibleChange"; }, ["multiSelectOptions"], ["*"], false>;
|
|
115
136
|
}
|
|
116
137
|
export {};
|
|
@@ -37,7 +37,7 @@ export declare class MultiSelectOptionComponent implements AfterContentInit, Foc
|
|
|
37
37
|
private get tabIndex();
|
|
38
38
|
private get ariaDisabled();
|
|
39
39
|
private get ariaSelected();
|
|
40
|
-
|
|
40
|
+
onKeyUp($event: KeyboardEvent): void;
|
|
41
41
|
private onClick;
|
|
42
42
|
ngAfterContentInit(): void;
|
|
43
43
|
getLabel(): string;
|
|
@@ -9,8 +9,9 @@ import * as i7 from "@angular/common";
|
|
|
9
9
|
import * as i8 from "@angular/cdk/a11y";
|
|
10
10
|
import * as i9 from "../button/button.module";
|
|
11
11
|
import * as i10 from "@angular/forms";
|
|
12
|
+
import * as i11 from "../dropdown/dropdown.module";
|
|
12
13
|
export declare class MultiSelectModule {
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectModule, never>;
|
|
14
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MultiSelectModule, [typeof i1.MultiSelectComponent, typeof i2.MultiSelectOptionComponent, typeof i3.MultiSelectOptgroupComponent, typeof i4.MultiSelectOptgroupLabelComponent, typeof i5.MultiSelectTagComponent, typeof i6.MultiSelectNativeSelectComponent], [typeof i7.CommonModule, typeof i8.A11yModule, typeof i9.ButtonModule, typeof i10.FormsModule], [typeof i1.MultiSelectComponent, typeof i2.MultiSelectOptionComponent, typeof i3.MultiSelectOptgroupComponent, typeof i4.MultiSelectOptgroupLabelComponent, typeof i5.MultiSelectTagComponent]>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MultiSelectModule, [typeof i1.MultiSelectComponent, typeof i2.MultiSelectOptionComponent, typeof i3.MultiSelectOptgroupComponent, typeof i4.MultiSelectOptgroupLabelComponent, typeof i5.MultiSelectTagComponent, typeof i6.MultiSelectNativeSelectComponent], [typeof i7.CommonModule, typeof i8.A11yModule, typeof i9.ButtonModule, typeof i10.FormsModule, typeof i11.DropdownModule], [typeof i1.MultiSelectComponent, typeof i2.MultiSelectOptionComponent, typeof i3.MultiSelectOptgroupComponent, typeof i4.MultiSelectOptgroupLabelComponent, typeof i5.MultiSelectTagComponent]>;
|
|
15
16
|
static ɵinj: i0.ɵɵInjectorDeclaration<MultiSelectModule>;
|
|
16
17
|
}
|
|
@@ -16,9 +16,9 @@ export declare class SmartTableComponent implements ISmartTable, AfterContentIni
|
|
|
16
16
|
static ngAcceptInputType_pagination: BooleanInput;
|
|
17
17
|
static ngAcceptInputType_selectable: BooleanInput;
|
|
18
18
|
constructor(iterableDiffers: IterableDiffers, keyValueDiffers: KeyValueDiffers);
|
|
19
|
-
private itemsDiffer;
|
|
20
|
-
private itemsFilteredDiffer;
|
|
21
|
-
private columFilterValueDiffer;
|
|
19
|
+
private readonly itemsDiffer;
|
|
20
|
+
private readonly itemsFilteredDiffer;
|
|
21
|
+
private readonly columFilterValueDiffer;
|
|
22
22
|
set activePage(value: number);
|
|
23
23
|
get activePage(): number;
|
|
24
24
|
private _activePage;
|
|
@@ -86,6 +86,9 @@ export declare class SmartTableComponent implements ISmartTable, AfterContentIni
|
|
|
86
86
|
templates: {
|
|
87
87
|
[key: string]: (TemplateRef<any> | null);
|
|
88
88
|
};
|
|
89
|
+
columnFilterTemplates: {
|
|
90
|
+
[key: string]: (TemplateRef<any> | null);
|
|
91
|
+
};
|
|
89
92
|
ngAfterContentInit(): void;
|
|
90
93
|
get selectedAll(): boolean | "indeterminate";
|
|
91
94
|
set selectedAll(value: string | boolean);
|
|
@@ -11,6 +11,9 @@ export declare class SmartTableHeadComponent implements OnInit {
|
|
|
11
11
|
selectable?: boolean;
|
|
12
12
|
selectAll?: boolean | string;
|
|
13
13
|
sorterValue?: ISorterValue;
|
|
14
|
+
set columnFilterTemplates(value: any);
|
|
15
|
+
get columnFilterTemplates(): any;
|
|
16
|
+
_columnFilterTemplates?: any;
|
|
14
17
|
columnFilterStateChange: EventEmitter<any>;
|
|
15
18
|
sorterStateChange: EventEmitter<any>;
|
|
16
19
|
selectAllChange: EventEmitter<any>;
|
|
@@ -31,6 +34,7 @@ export declare class SmartTableHeadComponent implements OnInit {
|
|
|
31
34
|
columnSorterEnabled(column: IColumn | string): boolean;
|
|
32
35
|
handleColumnFilterValueChange($event: Event, column: IColumn | string): void;
|
|
33
36
|
handleSelectAllChecked($event: Event): void;
|
|
37
|
+
getColumnFilter(column: IColumn | string): string;
|
|
34
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartTableHeadComponent, never>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartTableHeadComponent, "c-smart-table-head", never, { "columnFilter": "columnFilter"; "columnFilterState": "columnFilterState"; "columnSorter": "columnSorter"; "component": "component"; "columns": "columns"; "selectable": "selectable"; "selectAll": "selectAll"; "sorterValue": "sorterValue"; }, { "columnFilterStateChange": "columnFilterStateChange"; "sorterStateChange": "sorterStateChange"; "selectAllChange": "selectAllChange"; }, never, never, false>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmartTableHeadComponent, "c-smart-table-head", never, { "columnFilter": "columnFilter"; "columnFilterState": "columnFilterState"; "columnSorter": "columnSorter"; "component": "component"; "columns": "columns"; "selectable": "selectable"; "selectAll": "selectAll"; "sorterValue": "sorterValue"; "columnFilterTemplates": "columnFilterTemplates"; }, { "columnFilterStateChange": "columnFilterStateChange"; "sorterStateChange": "sorterStateChange"; "selectAllChange": "selectAllChange"; }, never, never, false>;
|
|
36
40
|
}
|
|
@@ -15,6 +15,6 @@ import * as i13 from "../shared/shared.module";
|
|
|
15
15
|
import * as i14 from "../utilities/utilities.module";
|
|
16
16
|
export declare class SmartTableModule {
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartTableModule, never>;
|
|
18
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartTableModule, [typeof i1.SmartTableComponent, typeof i2.SmartTableFilterComponent, typeof i3.SmartTableItemsPerPageSelectorComponent, typeof i4.SmartTableHeadComponent], [typeof i5.CommonModule, typeof i6.ElementCoverModule, typeof i7.TableModule, typeof i8.PaginationModule, typeof i9.SmartPaginationModule, typeof i10.FormModule, typeof i11.FormsModule, typeof i12.ButtonModule, typeof i13.SharedModule, typeof i11.ReactiveFormsModule, typeof i14.UtilitiesModule], [typeof i1.SmartTableComponent]>;
|
|
18
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartTableModule, [typeof i1.SmartTableComponent, typeof i2.SmartTableFilterComponent, typeof i3.SmartTableItemsPerPageSelectorComponent, typeof i4.SmartTableHeadComponent], [typeof i5.CommonModule, typeof i6.ElementCoverModule, typeof i7.TableModule, typeof i8.PaginationModule, typeof i9.SmartPaginationModule, typeof i10.FormModule, typeof i11.FormsModule, typeof i12.ButtonModule, typeof i13.SharedModule, typeof i11.ReactiveFormsModule, typeof i14.UtilitiesModule], [typeof i1.SmartTableComponent, typeof i2.SmartTableFilterComponent]>;
|
|
19
19
|
static ɵinj: i0.ɵɵInjectorDeclaration<SmartTableModule>;
|
|
20
20
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.18",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
5
|
"homepage": "https://coreui.io/angular",
|
|
6
6
|
"author": {
|
|
@@ -16,15 +16,16 @@
|
|
|
16
16
|
}
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
|
+
"@coreui/coreui-pro": "^4.4.1",
|
|
19
20
|
"@popperjs/core": "~2.11.6",
|
|
21
|
+
"date-fns": "^2.29.0",
|
|
20
22
|
"tslib": "^2.3.0"
|
|
21
23
|
},
|
|
22
24
|
"peerDependencies": {
|
|
23
25
|
"@angular/cdk": "^14.0.0",
|
|
24
26
|
"@angular/common": "^14.0.0",
|
|
25
27
|
"@angular/core": "^14.0.0",
|
|
26
|
-
"@angular/router": "^14.0.0"
|
|
27
|
-
"date-fns": "^2.28.0"
|
|
28
|
+
"@angular/router": "^14.0.0"
|
|
28
29
|
},
|
|
29
30
|
"repository": {
|
|
30
31
|
"type": "git",
|