igniteui-angular 19.0.10 → 19.0.12
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/fesm2022/igniteui-angular.mjs +8 -8
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/core/styles/components/chip/_chip-theme.scss +3 -1
- package/lib/core/styles/components/combo/_combo-theme.scss +8 -0
- package/lib/services/exporter-common/base-export-service.d.ts +1 -0
- package/package.json +1 -1
- package/styles/igniteui-angular-dark.css +1 -1
- package/styles/igniteui-angular.css +1 -1
- package/styles/igniteui-bootstrap-dark.css +1 -1
- package/styles/igniteui-bootstrap-light.css +1 -1
- package/styles/igniteui-dark-green.css +1 -1
- package/styles/igniteui-fluent-dark-excel.css +1 -1
- package/styles/igniteui-fluent-dark-word.css +1 -1
- package/styles/igniteui-fluent-dark.css +1 -1
- package/styles/igniteui-fluent-light-excel.css +1 -1
- package/styles/igniteui-fluent-light-word.css +1 -1
- package/styles/igniteui-fluent-light.css +1 -1
- package/styles/igniteui-indigo-dark.css +1 -1
- package/styles/igniteui-indigo-light.css +1 -1
- package/styles/maps/igniteui-angular-dark.css.map +1 -1
- package/styles/maps/igniteui-angular.css.map +1 -1
- package/styles/maps/igniteui-bootstrap-dark.css.map +1 -1
- package/styles/maps/igniteui-bootstrap-light.css.map +1 -1
- package/styles/maps/igniteui-dark-green.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark-excel.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark-word.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark.css.map +1 -1
- package/styles/maps/igniteui-fluent-light-excel.css.map +1 -1
- package/styles/maps/igniteui-fluent-light-word.css.map +1 -1
- package/styles/maps/igniteui-fluent-light.css.map +1 -1
- package/styles/maps/igniteui-indigo-dark.css.map +1 -1
- package/styles/maps/igniteui-indigo-light.css.map +1 -1
|
@@ -2,7 +2,7 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { Injectable, Directive, Input, HostListener, EventEmitter, InjectionToken, isDevMode, inject, PLATFORM_ID, Inject, ElementRef, ViewContainerRef, createComponent, Output, HostBinding, Self, Optional, booleanAttribute, SecurityContext, DestroyRef, Component, ContentChildren, ContentChild, RendererStyleFlags2, Pipe, ViewChild, LOCALE_ID, forwardRef, Host, QueryList, ViewChildren, TemplateRef, ChangeDetectionStrategy, SimpleChange, SkipSelf, CUSTOM_ELEMENTS_SCHEMA, reflectComponentType, NgModule } from '@angular/core';
|
|
3
3
|
import * as i4 from '@angular/forms';
|
|
4
4
|
import { NgModel, NgControl, FormControlName, NG_VALUE_ACCESSOR, Validators, NG_VALIDATORS, FormGroup, FormsModule, RequiredValidator, MinValidator, MaxValidator, EmailValidator, MinLengthValidator, MaxLengthValidator, PatternValidator, FormControl, ReactiveFormsModule } from '@angular/forms';
|
|
5
|
-
import { Observable, NEVER, Subject, fromEvent, BehaviorSubject, interval, animationFrameScheduler, noop, merge, Subscription, timer,
|
|
5
|
+
import { Observable, NEVER, Subject, fromEvent, BehaviorSubject, interval, animationFrameScheduler, noop, merge, Subscription, timer, pipe } from 'rxjs';
|
|
6
6
|
import { takeUntil, filter, throttle, throttleTime, first as first$2, startWith, take, debounce, tap, switchMap, skipLast, debounceTime, map, shareReplay, takeWhile, timeout, pluck } from 'rxjs/operators';
|
|
7
7
|
import { isPlatformBrowser, formatDate as formatDate$1, CurrencyPipe, formatPercent, formatNumber, getLocaleCurrencyCode, DatePipe, getLocaleDateFormat, FormatWidth, getLocaleDateTimeFormat, DOCUMENT, NgIf, NgTemplateOutlet, NgClass, NgSwitch, NgSwitchCase, NgSwitchDefault, NgFor, TitleCasePipe, getLocaleFirstDayOfWeek, NgStyle, getLocaleCurrencySymbol, formatCurrency as formatCurrency$1, getLocaleNumberFormat, NumberFormatStyle, DecimalPipe, PercentPipe, getCurrencySymbol, AsyncPipe } from '@angular/common';
|
|
8
8
|
import { mergeWith, isEqual as isEqual$1 } from 'lodash-es';
|
|
@@ -2296,8 +2296,7 @@ class IgxBaseExporter {
|
|
|
2296
2296
|
}, {});
|
|
2297
2297
|
}
|
|
2298
2298
|
else {
|
|
2299
|
-
|
|
2300
|
-
record.data = record.data.filter(d => filteredHeaders.indexOf(d) === -1);
|
|
2299
|
+
record.data = record.data.filter((_, i) => !record.references[i].skip);
|
|
2301
2300
|
}
|
|
2302
2301
|
}
|
|
2303
2302
|
const rowArgs = {
|
|
@@ -2524,15 +2523,15 @@ class IgxBaseExporter {
|
|
|
2524
2523
|
getAllChildColumnsAndData(island, childData, expansionStateVal, grid) {
|
|
2525
2524
|
const hierarchicalOwner = `${GRID_CHILD}${++this.rowIslandCounter}`;
|
|
2526
2525
|
const columnList = this._ownersMap.get(island).columns;
|
|
2527
|
-
const
|
|
2528
|
-
|
|
2529
|
-
.map(col => col.header ? col.header : col.field);
|
|
2526
|
+
const columnHeaders = columnList.filter(col => col.headerType === ExportHeaderType.ColumnHeader);
|
|
2527
|
+
const columnHeader = columnHeaders.map(col => col.header ? col.header : col.field);
|
|
2530
2528
|
const headerRecord = {
|
|
2531
2529
|
data: columnHeader,
|
|
2532
2530
|
level: island.level,
|
|
2533
2531
|
type: ExportRecordType.HeaderRecord,
|
|
2534
2532
|
owner: island,
|
|
2535
2533
|
hidden: !expansionStateVal,
|
|
2534
|
+
references: columnHeaders,
|
|
2536
2535
|
hierarchicalOwner
|
|
2537
2536
|
};
|
|
2538
2537
|
if (childData && childData.length > 0) {
|
|
@@ -30843,7 +30842,8 @@ class IgxDayItemComponent {
|
|
|
30843
30842
|
return this.elementRef.nativeElement;
|
|
30844
30843
|
}
|
|
30845
30844
|
get isSelectedCSS() {
|
|
30846
|
-
const selectable = !this.isInactive ||
|
|
30845
|
+
const selectable = !this.isInactive || this.isWithinPreviewRange ||
|
|
30846
|
+
(this.isWithinRange && this.selection === "range");
|
|
30847
30847
|
return !this.isDisabled && selectable && this.selected;
|
|
30848
30848
|
}
|
|
30849
30849
|
get isInactive() {
|
|
@@ -55458,7 +55458,7 @@ class IgxColumnMovingDragDirective extends IgxDragDirective {
|
|
|
55458
55458
|
source: this.column
|
|
55459
55459
|
};
|
|
55460
55460
|
this.column.grid.columnMovingStart.emit(movingStartArgs);
|
|
55461
|
-
this.subscription$ = fromEvent(this.column.grid.document.defaultView, 'keydown').pipe(takeUntil
|
|
55461
|
+
this.subscription$ = fromEvent(this.column.grid.document.defaultView, 'keydown').pipe(takeUntil(this._destroy)).subscribe((ev) => {
|
|
55462
55462
|
if (ev.key === this.platformUtil.KEYMAP.ESCAPE) {
|
|
55463
55463
|
this.onEscape(ev);
|
|
55464
55464
|
}
|