igniteui-angular 20.0.3 → 20.0.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/fesm2022/igniteui-angular.mjs +77 -23
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/index.d.ts +7 -4
- package/lib/core/styles/components/drop-down/_drop-down-theme.scss +5 -9
- package/lib/core/styles/components/grid/_grid-theme.scss +13 -12
- package/lib/core/styles/components/input/_input-group-theme.scss +1 -1
- 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
package/index.d.ts
CHANGED
|
@@ -3779,7 +3779,7 @@ declare class IgxSorting implements IGridSortingStrategy {
|
|
|
3779
3779
|
* Returns an array containing the grouped result.
|
|
3780
3780
|
* @internal
|
|
3781
3781
|
*/
|
|
3782
|
-
protected groupDataRecursive(data: any[], state: IGroupingState, level: number, parent: IGroupByRecord, metadata: IGroupByRecord[], grid?: GridType, groupsRecords?: any[], fullResult?: IGroupByResult):
|
|
3782
|
+
protected groupDataRecursive(data: any[], state: IGroupingState, level: number, parent: IGroupByRecord, metadata: IGroupByRecord[], grid?: GridType, groupsRecords?: any[], fullResult?: IGroupByResult): IGroupByResult;
|
|
3783
3783
|
/**
|
|
3784
3784
|
* Retrieves the value of the specified field from the given object, considering date and time data types.
|
|
3785
3785
|
* `key`: The key of the field to retrieve.
|
|
@@ -34448,7 +34448,7 @@ declare class IgxPivotRowDimensionMrlRowComponent extends IgxGridHeaderRowCompon
|
|
|
34448
34448
|
* </igx-pivot-grid>
|
|
34449
34449
|
* ```
|
|
34450
34450
|
*/
|
|
34451
|
-
declare class IgxPivotGridComponent extends IgxGridBaseDirective implements OnInit, AfterContentInit,
|
|
34451
|
+
declare class IgxPivotGridComponent extends IgxGridBaseDirective implements OnInit, AfterContentInit, PivotGridType, AfterViewInit, OnChanges {
|
|
34452
34452
|
navigation: IgxPivotGridNavigationService;
|
|
34453
34453
|
/**
|
|
34454
34454
|
* Emitted when the dimension collection is changed via the grid chip area.
|
|
@@ -41178,6 +41178,7 @@ declare class IgxSplitterPaneComponent {
|
|
|
41178
41178
|
private el;
|
|
41179
41179
|
private _minSize;
|
|
41180
41180
|
private _maxSize;
|
|
41181
|
+
private _order;
|
|
41181
41182
|
/**
|
|
41182
41183
|
* @hidden @internal
|
|
41183
41184
|
* Gets/Sets the 'display' property of the current pane.
|
|
@@ -41232,7 +41233,8 @@ declare class IgxSplitterPaneComponent {
|
|
|
41232
41233
|
*/
|
|
41233
41234
|
collapsedChange: EventEmitter<boolean>;
|
|
41234
41235
|
/** @hidden @internal */
|
|
41235
|
-
order: number;
|
|
41236
|
+
get order(): number;
|
|
41237
|
+
set order(val: number);
|
|
41236
41238
|
/**
|
|
41237
41239
|
* @hidden @internal
|
|
41238
41240
|
* Gets/Sets the `overflow`.
|
|
@@ -41358,6 +41360,7 @@ declare interface ISplitterBarResizeEventArgs {
|
|
|
41358
41360
|
declare class IgxSplitterComponent implements AfterContentInit {
|
|
41359
41361
|
document: any;
|
|
41360
41362
|
private elementRef;
|
|
41363
|
+
private zone;
|
|
41361
41364
|
/**
|
|
41362
41365
|
* Gets the list of splitter panes.
|
|
41363
41366
|
*
|
|
@@ -41441,7 +41444,7 @@ declare class IgxSplitterComponent implements AfterContentInit {
|
|
|
41441
41444
|
* The sibling pane in each pair of panes divided by a splitter bar.
|
|
41442
41445
|
*/
|
|
41443
41446
|
private sibling;
|
|
41444
|
-
constructor(document: any, elementRef: ElementRef);
|
|
41447
|
+
constructor(document: any, elementRef: ElementRef, zone: NgZone);
|
|
41445
41448
|
/**
|
|
41446
41449
|
* Gets/Sets the splitter orientation.
|
|
41447
41450
|
*
|
|
@@ -299,20 +299,16 @@
|
|
|
299
299
|
bottom: 0;
|
|
300
300
|
}
|
|
301
301
|
|
|
302
|
-
igx-icon
|
|
302
|
+
igx-icon,
|
|
303
|
+
igc-icon {
|
|
303
304
|
justify-content: center;
|
|
304
|
-
--component-size: 1;
|
|
305
|
-
|
|
306
|
-
@if $variant == 'fluent' {
|
|
307
|
-
--component-size: 3;
|
|
308
|
-
}
|
|
309
305
|
|
|
310
306
|
@if $variant == 'indigo' {
|
|
311
307
|
$icon-size: sizable(rem(14px), rem(16px), rem(16px));
|
|
312
308
|
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
309
|
+
--size: #{$icon-size};
|
|
310
|
+
} @else {
|
|
311
|
+
--component-size: 1;
|
|
316
312
|
}
|
|
317
313
|
}
|
|
318
314
|
}
|
|
@@ -456,12 +456,12 @@
|
|
|
456
456
|
|
|
457
457
|
@if not($grid-shadow) {
|
|
458
458
|
$grid-elevation: map.get($grid-schema, 'grid-elevation');
|
|
459
|
-
$grid-shadow: elevation(
|
|
459
|
+
$grid-shadow: elevation($grid-elevation);
|
|
460
460
|
}
|
|
461
461
|
|
|
462
462
|
@if not($drag-shadow) {
|
|
463
463
|
$drag-elevation: map.get($grid-schema, 'drag-elevation');
|
|
464
|
-
$drag-shadow: elevation(
|
|
464
|
+
$drag-shadow: elevation($drag-elevation);
|
|
465
465
|
}
|
|
466
466
|
|
|
467
467
|
@if not($drop-area-border-radius) {
|
|
@@ -758,8 +758,7 @@
|
|
|
758
758
|
igx-time-picker {
|
|
759
759
|
position: relative;
|
|
760
760
|
height: calc(100% - #{$editing-outline-width * 2});
|
|
761
|
-
width:
|
|
762
|
-
inset-inline-start: $editing-outline-width;
|
|
761
|
+
width: 100% !important;
|
|
763
762
|
overflow: hidden;
|
|
764
763
|
}
|
|
765
764
|
|
|
@@ -1535,6 +1534,9 @@
|
|
|
1535
1534
|
}
|
|
1536
1535
|
|
|
1537
1536
|
%igx-grid__td--bool {
|
|
1537
|
+
display: flex;
|
|
1538
|
+
flex-grow: 1;
|
|
1539
|
+
|
|
1538
1540
|
igx-icon {
|
|
1539
1541
|
--component-size: #{if($variant == 'indigo', 2, 1)};
|
|
1540
1542
|
}
|
|
@@ -1804,7 +1806,6 @@
|
|
|
1804
1806
|
padding-inline-end: rem(4px) !important;
|
|
1805
1807
|
|
|
1806
1808
|
> igx-icon {
|
|
1807
|
-
margin-inline-start: auto;
|
|
1808
1809
|
color: color($color: 'error');
|
|
1809
1810
|
width: var(--igx-icon-size, rem(18px));
|
|
1810
1811
|
height: var(--igx-icon-size, rem(18px));
|
|
@@ -1910,11 +1911,10 @@
|
|
|
1910
1911
|
%igx-grid__td--editing {
|
|
1911
1912
|
background: var-get($theme, 'cell-editing-background') !important;
|
|
1912
1913
|
box-shadow: inset 0 0 0 $editing-outline-width var-get($theme, 'edit-mode-color');
|
|
1913
|
-
padding:
|
|
1914
|
+
padding-inline: rem(4px);
|
|
1914
1915
|
|
|
1915
1916
|
&.igx-grid__td--invalid {
|
|
1916
1917
|
box-shadow: inset 0 0 0 rem(2px) color($color: 'error') !important;
|
|
1917
|
-
padding-inline-end: rem(4px) !important;
|
|
1918
1918
|
}
|
|
1919
1919
|
|
|
1920
1920
|
&%grid-cell-number {
|
|
@@ -2105,7 +2105,7 @@
|
|
|
2105
2105
|
|
|
2106
2106
|
.sort-icon {
|
|
2107
2107
|
color: var-get($theme, 'header-selected-text-color');
|
|
2108
|
-
|
|
2108
|
+
|
|
2109
2109
|
::after {
|
|
2110
2110
|
background: var-get($theme, 'header-selected-background');
|
|
2111
2111
|
}
|
|
@@ -2133,7 +2133,7 @@
|
|
|
2133
2133
|
&%igx-grid-th--sorted {
|
|
2134
2134
|
.sort-icon {
|
|
2135
2135
|
color: var-get($theme, 'header-selected-text-color');
|
|
2136
|
-
|
|
2136
|
+
|
|
2137
2137
|
> igx-icon {
|
|
2138
2138
|
color: inherit;
|
|
2139
2139
|
}
|
|
@@ -2141,7 +2141,7 @@
|
|
|
2141
2141
|
&:focus,
|
|
2142
2142
|
&:hover {
|
|
2143
2143
|
color: var-get($theme, 'header-selected-text-color');
|
|
2144
|
-
|
|
2144
|
+
|
|
2145
2145
|
> igx-icon {
|
|
2146
2146
|
color: inherit;
|
|
2147
2147
|
}
|
|
@@ -2198,14 +2198,14 @@
|
|
|
2198
2198
|
.sort-icon {
|
|
2199
2199
|
opacity: 1;
|
|
2200
2200
|
color: var-get($theme, 'sorted-header-icon-color');
|
|
2201
|
-
|
|
2201
|
+
|
|
2202
2202
|
> igx-icon {
|
|
2203
2203
|
color: inherit;
|
|
2204
2204
|
}
|
|
2205
2205
|
|
|
2206
2206
|
&:hover {
|
|
2207
2207
|
color: var-get($theme, 'sortable-header-icon-hover-color');
|
|
2208
|
-
|
|
2208
|
+
|
|
2209
2209
|
> igx-icon {
|
|
2210
2210
|
color: inherit;
|
|
2211
2211
|
}
|
|
@@ -2241,6 +2241,7 @@
|
|
|
2241
2241
|
%grid-cell-number {
|
|
2242
2242
|
text-align: $grid-cell-align-num;
|
|
2243
2243
|
justify-content: flex-end;
|
|
2244
|
+
flex-grow: 1;
|
|
2244
2245
|
|
|
2245
2246
|
%grid-cell-header-icons {
|
|
2246
2247
|
justify-content: flex-start;
|
package/package.json
CHANGED