igniteui-angular 16.0.17 → 16.0.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/esm2022/lib/calendar/calendar.mjs +33 -6
- package/esm2022/lib/calendar/days-view/days-view.component.mjs +2 -2
- package/esm2022/lib/services/exporter-common/base-export-service.mjs +9 -2
- package/esm2022/lib/splitter/splitter-pane/splitter-pane.component.mjs +2 -3
- package/esm2022/lib/splitter/splitter.component.mjs +22 -19
- package/fesm2022/igniteui-angular.mjs +63 -27
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/calendar/calendar.d.ts +1 -1
- package/lib/splitter/splitter.component.d.ts +5 -0
- package/package.json +1 -1
|
@@ -128,7 +128,7 @@ export declare class Calendar {
|
|
|
128
128
|
getPrevMonth(date: Date): Date;
|
|
129
129
|
getNextYear(date: Date): Date;
|
|
130
130
|
getPrevYear(date: Date): Date;
|
|
131
|
-
getWeekNumber(date: Date):
|
|
131
|
+
getWeekNumber(date: Date, weekStart: WEEKDAYS | number): any;
|
|
132
132
|
private generateICalendarDate;
|
|
133
133
|
private isPreviousMonth;
|
|
134
134
|
private isNextMonth;
|
|
@@ -174,6 +174,11 @@ export declare class IgxSplitterComponent implements AfterContentInit {
|
|
|
174
174
|
* This method assigns the order of each pane.
|
|
175
175
|
*/
|
|
176
176
|
private assignFlexOrder;
|
|
177
|
+
/**
|
|
178
|
+
* @hidden @internal
|
|
179
|
+
* Calculates new sizes for the panes based on move delta and initial sizes
|
|
180
|
+
*/
|
|
181
|
+
private calcNewSizes;
|
|
177
182
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxSplitterComponent, never>;
|
|
178
183
|
static ɵcmp: i0.ɵɵComponentDeclaration<IgxSplitterComponent, "igx-splitter", never, { "type": { "alias": "type"; "required": false; }; }, { "resizeStart": "resizeStart"; "resizing": "resizing"; "resizeEnd": "resizeEnd"; }, ["panes"], ["igx-splitter-pane"], true, never>;
|
|
179
184
|
}
|
package/package.json
CHANGED