igniteui-angular 19.2.0-alpha.1 → 19.2.0-alpha.2
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 +16 -16
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/core/styles/components/calendar/_calendar-theme.scss +25 -25
- package/lib/core/styles/components/grid/_grid-theme.scss +11 -0
- package/lib/data-operations/filtering-condition.d.ts +5 -13
- package/lib/grids/hierarchical-grid/hierarchical-grid-base.directive.d.ts +1 -1
- package/lib/grids/pivot-grid/pivot-grid.component.d.ts +2 -1
- package/lib/grids/pivot-grid/pivot-header-row.component.d.ts +0 -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
|
@@ -1158,7 +1158,7 @@
|
|
|
1158
1158
|
display: flex;
|
|
1159
1159
|
justify-content: space-between;
|
|
1160
1160
|
|
|
1161
|
-
@if $variant
|
|
1161
|
+
@if $variant == 'bootstrap' {
|
|
1162
1162
|
&:nth-child(2) {
|
|
1163
1163
|
%date-inner-week-number {
|
|
1164
1164
|
border-start-start-radius: var-get($theme, 'week-number-border-radius');
|
|
@@ -1222,28 +1222,6 @@
|
|
|
1222
1222
|
}
|
|
1223
1223
|
}
|
|
1224
1224
|
|
|
1225
|
-
%date-inner-week-number {
|
|
1226
|
-
min-width: auto;
|
|
1227
|
-
width: $date-size;
|
|
1228
|
-
color: var-get($theme, 'week-number-foreground');
|
|
1229
|
-
background: var-get($theme, 'week-number-background');
|
|
1230
|
-
|
|
1231
|
-
&::after {
|
|
1232
|
-
display: none !important;
|
|
1233
|
-
}
|
|
1234
|
-
|
|
1235
|
-
&::before {
|
|
1236
|
-
content: '';
|
|
1237
|
-
position: absolute;
|
|
1238
|
-
background: var-get($theme, 'week-number-background');
|
|
1239
|
-
//border-inline: rem(1px) solid var-get($theme, 'week-number-background');
|
|
1240
|
-
inset-inline-start: rem(-1px);
|
|
1241
|
-
inset-block-start: 100%;
|
|
1242
|
-
height: calc($date-size / 2);
|
|
1243
|
-
width: $date-size;
|
|
1244
|
-
}
|
|
1245
|
-
}
|
|
1246
|
-
|
|
1247
1225
|
%label-week-number {
|
|
1248
1226
|
text-align: center;
|
|
1249
1227
|
|
|
@@ -1272,9 +1250,8 @@
|
|
|
1272
1250
|
position: absolute;
|
|
1273
1251
|
background: var-get($theme, 'week-number-background');
|
|
1274
1252
|
border-inline: rem(1px) solid var-get($theme, 'week-number-background');
|
|
1275
|
-
inset-inline-start: rem(-1px);
|
|
1276
1253
|
inset-block-start: 100%;
|
|
1277
|
-
height:
|
|
1254
|
+
height: calc(#{$date-view-row-gap} + #{rem(if($variant == 'indigo', 0px, 2px))});
|
|
1278
1255
|
width: $date-size;
|
|
1279
1256
|
}
|
|
1280
1257
|
}
|
|
@@ -1507,6 +1484,29 @@
|
|
|
1507
1484
|
height: $date-size;
|
|
1508
1485
|
}
|
|
1509
1486
|
}
|
|
1487
|
+
|
|
1488
|
+
&%date-inner-week-number {
|
|
1489
|
+
min-width: auto;
|
|
1490
|
+
width: $date-size;
|
|
1491
|
+
color: var-get($theme, 'week-number-foreground');
|
|
1492
|
+
background: var-get($theme, 'week-number-background');
|
|
1493
|
+
|
|
1494
|
+
// This is not an actual date and should not change it's border when changing the date border
|
|
1495
|
+
border-color: var-get($theme, 'week-number-background');
|
|
1496
|
+
|
|
1497
|
+
&::after {
|
|
1498
|
+
display: none !important;
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
&::before {
|
|
1502
|
+
content: '';
|
|
1503
|
+
position: absolute;
|
|
1504
|
+
background: var-get($theme, 'week-number-background');
|
|
1505
|
+
inset-block-start: 100%;
|
|
1506
|
+
height: calc(#{$date-view-row-gap} + #{rem(if($variant == 'indigo', 0, 2px))});
|
|
1507
|
+
width: $date-size;
|
|
1508
|
+
}
|
|
1509
|
+
}
|
|
1510
1510
|
}
|
|
1511
1511
|
|
|
1512
1512
|
%date-weekend {
|
|
@@ -3500,6 +3500,17 @@
|
|
|
3500
3500
|
}
|
|
3501
3501
|
}
|
|
3502
3502
|
|
|
3503
|
+
.igx-pivot-grid-row-filler__wrapper {
|
|
3504
|
+
.igx-grid-thead__wrapper {
|
|
3505
|
+
height: 100%;
|
|
3506
|
+
border-bottom: initial;
|
|
3507
|
+
|
|
3508
|
+
.igx-grid-th {
|
|
3509
|
+
height: 100%;
|
|
3510
|
+
}
|
|
3511
|
+
}
|
|
3512
|
+
}
|
|
3513
|
+
|
|
3503
3514
|
%igx-grid__tbody-pivot-mrl-dimension {
|
|
3504
3515
|
.igx-grid-th {
|
|
3505
3516
|
border-bottom: none;
|
|
@@ -15,6 +15,7 @@ export declare class IgxFilteringOperand {
|
|
|
15
15
|
conditionList(): string[];
|
|
16
16
|
/**
|
|
17
17
|
* Returns an array of names of the conditions which are visible in the UI, including "In" and "Not In", allowing the creation of sub-queries.
|
|
18
|
+
* @hidden @internal
|
|
18
19
|
*/
|
|
19
20
|
extendedConditionList(): string[];
|
|
20
21
|
/**
|
|
@@ -29,10 +30,7 @@ export declare class IgxFilteringOperand {
|
|
|
29
30
|
* @param operation The filtering operation.
|
|
30
31
|
*/
|
|
31
32
|
append(operation: IFilteringOperation): void;
|
|
32
|
-
|
|
33
|
-
* @hidden
|
|
34
|
-
*/
|
|
35
|
-
findValueInSet(target: any, searchVal: Set<any>): boolean;
|
|
33
|
+
protected findValueInSet(target: any, searchVal: Set<any>): boolean;
|
|
36
34
|
}
|
|
37
35
|
/**
|
|
38
36
|
* Provides filtering operations for booleans
|
|
@@ -54,10 +52,7 @@ declare class IgxBaseDateTimeFilteringOperand extends IgxFilteringOperand {
|
|
|
54
52
|
* @memberof IgxDateFilteringOperand
|
|
55
53
|
*/
|
|
56
54
|
static getDateParts(date: Date, dateFormat?: string): IDateParts;
|
|
57
|
-
|
|
58
|
-
* @hidden
|
|
59
|
-
*/
|
|
60
|
-
findValueInSet(target: any, searchVal: Set<any>): boolean;
|
|
55
|
+
protected findValueInSet(target: any, searchVal: Set<any>): boolean;
|
|
61
56
|
protected validateInputData(target: Date): void;
|
|
62
57
|
}
|
|
63
58
|
/**
|
|
@@ -67,17 +62,14 @@ declare class IgxBaseDateTimeFilteringOperand extends IgxFilteringOperand {
|
|
|
67
62
|
*/
|
|
68
63
|
export declare class IgxDateFilteringOperand extends IgxBaseDateTimeFilteringOperand {
|
|
69
64
|
protected constructor();
|
|
70
|
-
findValueInSet(target: any, searchVal: Set<any>): boolean;
|
|
65
|
+
protected findValueInSet(target: any, searchVal: Set<any>): boolean;
|
|
71
66
|
}
|
|
72
67
|
export declare class IgxDateTimeFilteringOperand extends IgxBaseDateTimeFilteringOperand {
|
|
73
68
|
protected constructor();
|
|
74
69
|
}
|
|
75
70
|
export declare class IgxTimeFilteringOperand extends IgxBaseDateTimeFilteringOperand {
|
|
76
71
|
protected constructor();
|
|
77
|
-
|
|
78
|
-
* @hidden
|
|
79
|
-
*/
|
|
80
|
-
findValueInSet(target: any, searchVal: Set<any>): boolean;
|
|
72
|
+
protected findValueInSet(target: any, searchVal: Set<any>): boolean;
|
|
81
73
|
}
|
|
82
74
|
/**
|
|
83
75
|
* Provides filtering operations for numbers
|
|
@@ -26,6 +26,7 @@ export declare const IgxHierarchicalTransactionServiceFactory: {
|
|
|
26
26
|
};
|
|
27
27
|
export declare abstract class IgxHierarchicalGridBaseDirective extends IgxGridBaseDirective implements GridType {
|
|
28
28
|
gridAPI: IgxHierarchicalGridAPIService;
|
|
29
|
+
navigation: IgxHierarchicalGridNavigationService;
|
|
29
30
|
/**
|
|
30
31
|
* Gets/Sets the key indicating whether a row has children. If row has no children it does not render an expand indicator.
|
|
31
32
|
*
|
|
@@ -86,7 +87,6 @@ export declare abstract class IgxHierarchicalGridBaseDirective extends IgxGridBa
|
|
|
86
87
|
abstract rootGrid: GridType;
|
|
87
88
|
abstract expandChildren: boolean;
|
|
88
89
|
constructor(validationService: IgxGridValidationService, selectionService: IgxGridSelectionService, colResizingService: IgxColumnResizingService, gridAPI: IgxHierarchicalGridAPIService, transactionFactory: IgxFlatTransactionFactory, elementRef: ElementRef<HTMLElement>, zone: NgZone, document: any, cdr: ChangeDetectorRef, differs: IterableDiffers, viewRef: ViewContainerRef, injector: Injector, envInjector: EnvironmentInjector, navigation: IgxHierarchicalGridNavigationService, filteringService: IgxFilteringService, textHighlightService: IgxTextHighlightService, overlayService: IgxOverlayService, summaryService: IgxGridSummaryService, localeId: string, platform: PlatformUtil, _diTransactions?: TransactionService<Transaction, State>);
|
|
89
|
-
navigation: IgxHierarchicalGridNavigationService;
|
|
90
90
|
/**
|
|
91
91
|
* @hidden
|
|
92
92
|
*/
|
|
@@ -50,6 +50,7 @@ import * as i0 from "@angular/core";
|
|
|
50
50
|
* ```
|
|
51
51
|
*/
|
|
52
52
|
export declare class IgxPivotGridComponent extends IgxGridBaseDirective implements OnInit, AfterContentInit, GridType, AfterViewInit, OnChanges {
|
|
53
|
+
navigation: IgxPivotGridNavigationService;
|
|
53
54
|
/**
|
|
54
55
|
* Emitted when the dimension collection is changed via the grid chip area.
|
|
55
56
|
*
|
|
@@ -513,7 +514,6 @@ export declare class IgxPivotGridComponent extends IgxGridBaseDirective implemen
|
|
|
513
514
|
set batchEditing(_val: boolean);
|
|
514
515
|
get selectedRows(): any[];
|
|
515
516
|
constructor(validationService: IgxGridValidationService, selectionService: IgxGridSelectionService, colResizingService: IgxPivotColumnResizingService, gridAPI: GridBaseAPIService<IgxGridBaseDirective & GridType>, transactionFactory: IgxFlatTransactionFactory, elementRef: ElementRef<HTMLElement>, zone: NgZone, document: any, cdr: ChangeDetectorRef, differs: IterableDiffers, viewRef: ViewContainerRef, injector: Injector, envInjector: EnvironmentInjector, navigation: IgxPivotGridNavigationService, filteringService: IgxFilteringService, textHighlightService: IgxTextHighlightService, overlayService: IgxOverlayService, summaryService: IgxGridSummaryService, localeId: string, platform: PlatformUtil, _diTransactions?: TransactionService<Transaction, State>);
|
|
516
|
-
navigation: IgxPivotGridNavigationService;
|
|
517
517
|
/**
|
|
518
518
|
* @hidden
|
|
519
519
|
*/
|
|
@@ -545,6 +545,7 @@ export declare class IgxPivotGridComponent extends IgxGridBaseDirective implemen
|
|
|
545
545
|
get allDimensions(): IPivotDimension[];
|
|
546
546
|
protected get allVisibleDimensions(): IPivotDimension[];
|
|
547
547
|
protected get shouldResize(): boolean;
|
|
548
|
+
protected get emptyBottomSize(): number;
|
|
548
549
|
/** @hidden @internal */
|
|
549
550
|
createFilterESF(dropdown: any, column: ColumnType, options: OverlaySettings, shouldReatach: boolean): {
|
|
550
551
|
id: any;
|
|
@@ -25,7 +25,6 @@ export declare class IgxPivotHeaderRowComponent extends IgxGridHeaderRowComponen
|
|
|
25
25
|
filterDropdownDimensions: Set<any>;
|
|
26
26
|
filterAreaDimensions: Set<any>;
|
|
27
27
|
private _dropPos;
|
|
28
|
-
private valueData;
|
|
29
28
|
private _subMenuPositionSettings;
|
|
30
29
|
private _subMenuOverlaySettings;
|
|
31
30
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-angular",
|
|
3
|
-
"version": "19.2.0-alpha.
|
|
3
|
+
"version": "19.2.0-alpha.2",
|
|
4
4
|
"description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
|
|
5
5
|
"author": "Infragistics",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|