igniteui-angular 19.2.11 → 19.2.13
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 +268 -42
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/calendar/common/model.d.ts +31 -1
- package/lib/combo/combo.common.d.ts +1 -0
- package/lib/core/styles/components/column-actions/_column-actions-theme.scss +1 -1
- package/lib/core/styles/components/combo/_combo-theme.scss +7 -0
- package/lib/core/styles/components/grid/_grid-theme.scss +11 -10
- package/lib/core/styles/components/input/_input-group-component.scss +30 -0
- package/lib/core/styles/components/input/_input-group-theme.scss +69 -5
- package/lib/directives/tooltip/tooltip.directive.d.ts +1 -0
- package/lib/grids/common/strategy.d.ts +1 -1
- package/lib/grids/grid-public-row.d.ts +39 -0
- package/lib/grids/pivot-grid/pivot-grid.component.d.ts +6 -2
- package/lib/grids/pivot-grid/pivot-util.d.ts +2 -0
- package/lib/input-group/input-group.component.d.ts +1 -1
- package/lib/select/select.component.d.ts +1 -0
- package/lib/splitter/splitter-pane/splitter-pane.component.d.ts +3 -1
- package/lib/splitter/splitter.component.d.ts +3 -2
- 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
|
@@ -36,8 +36,38 @@ export declare class CalendarDay {
|
|
|
36
36
|
get date(): number;
|
|
37
37
|
/** Returns the timestamp since epoch in milliseconds. */
|
|
38
38
|
get timestamp(): number;
|
|
39
|
-
/** Returns the
|
|
39
|
+
/** Returns the ISO 8601 week number. */
|
|
40
40
|
get week(): number;
|
|
41
|
+
/**
|
|
42
|
+
* Gets the week number based on week start day.
|
|
43
|
+
* Uses ISO 8601 (first Thursday rule) only when weekStart is Monday (1).
|
|
44
|
+
* For other week starts, uses simple counting from January 1st.
|
|
45
|
+
*/
|
|
46
|
+
getWeekNumber(weekStart?: number): number;
|
|
47
|
+
/**
|
|
48
|
+
* Calculates week number using ISO 8601 standard (Monday start, first Thursday rule).
|
|
49
|
+
*/
|
|
50
|
+
private calculateISO8601WeekNumber;
|
|
51
|
+
/**
|
|
52
|
+
* Calculates week number using simple counting from January 1st.
|
|
53
|
+
*/
|
|
54
|
+
private calculateSimpleWeekNumber;
|
|
55
|
+
/**
|
|
56
|
+
* Gets the Thursday of the current date's week (ISO 8601 helper).
|
|
57
|
+
*/
|
|
58
|
+
private getThursdayOfWeek;
|
|
59
|
+
/**
|
|
60
|
+
* Gets the Thursday of the first week of the given year (ISO 8601 helper).
|
|
61
|
+
*/
|
|
62
|
+
private getFirstWeekThursday;
|
|
63
|
+
/**
|
|
64
|
+
* Calculates the number of weeks between two Thursday dates (ISO 8601 helper).
|
|
65
|
+
*/
|
|
66
|
+
private getWeeksDifference;
|
|
67
|
+
/**
|
|
68
|
+
* Gets the last week number of the previous year (ISO 8601 helper).
|
|
69
|
+
*/
|
|
70
|
+
private getPreviousYearLastWeek;
|
|
41
71
|
/** Returns the underlying native date instance. */
|
|
42
72
|
get native(): Date;
|
|
43
73
|
/**
|
|
@@ -557,6 +557,7 @@ export declare abstract class IgxComboBaseDirective implements IgxComboBase, Aft
|
|
|
557
557
|
protected complexTemplate: TemplateRef<any>;
|
|
558
558
|
protected prefixes: QueryList<IgxPrefixDirective>;
|
|
559
559
|
protected suffixes: QueryList<IgxSuffixDirective>;
|
|
560
|
+
protected internalSuffixes: QueryList<IgxSuffixDirective>;
|
|
560
561
|
/** @hidden @internal */
|
|
561
562
|
get searchValue(): string;
|
|
562
563
|
set searchValue(val: string);
|
|
@@ -263,6 +263,13 @@
|
|
|
263
263
|
padding: 0;
|
|
264
264
|
}
|
|
265
265
|
}
|
|
266
|
+
|
|
267
|
+
&:not(.igx-input-group--disabled){
|
|
268
|
+
%igx-combo__clear-button {
|
|
269
|
+
color: var-get($theme, 'clear-button-foreground');
|
|
270
|
+
background: var-get($theme, 'clear-button-background');
|
|
271
|
+
}
|
|
272
|
+
}
|
|
266
273
|
}
|
|
267
274
|
|
|
268
275
|
%form-group-bundle:not(%form-group-bundle--disabled):focus-within {
|
|
@@ -737,8 +737,7 @@
|
|
|
737
737
|
igx-time-picker {
|
|
738
738
|
position: relative;
|
|
739
739
|
height: calc(100% - #{$editing-outline-width * 2});
|
|
740
|
-
width:
|
|
741
|
-
inset-inline-start: $editing-outline-width;
|
|
740
|
+
width: 100% !important;
|
|
742
741
|
overflow: hidden;
|
|
743
742
|
}
|
|
744
743
|
|
|
@@ -1514,6 +1513,9 @@
|
|
|
1514
1513
|
}
|
|
1515
1514
|
|
|
1516
1515
|
%igx-grid__td--bool {
|
|
1516
|
+
display: flex;
|
|
1517
|
+
flex-grow: 1;
|
|
1518
|
+
|
|
1517
1519
|
igx-icon {
|
|
1518
1520
|
--component-size: #{if($variant == 'indigo', 2, 1)};
|
|
1519
1521
|
}
|
|
@@ -1783,7 +1785,6 @@
|
|
|
1783
1785
|
padding-inline-end: rem(4px) !important;
|
|
1784
1786
|
|
|
1785
1787
|
> igx-icon {
|
|
1786
|
-
margin-inline-start: auto;
|
|
1787
1788
|
color: color($color: 'error');
|
|
1788
1789
|
width: var(--igx-icon-size, rem(18px));
|
|
1789
1790
|
height: var(--igx-icon-size, rem(18px));
|
|
@@ -1889,11 +1890,10 @@
|
|
|
1889
1890
|
%igx-grid__td--editing {
|
|
1890
1891
|
background: var-get($theme, 'cell-editing-background') !important;
|
|
1891
1892
|
box-shadow: inset 0 0 0 $editing-outline-width var-get($theme, 'edit-mode-color');
|
|
1892
|
-
padding:
|
|
1893
|
+
padding-inline: rem(4px);
|
|
1893
1894
|
|
|
1894
1895
|
&.igx-grid__td--invalid {
|
|
1895
1896
|
box-shadow: inset 0 0 0 rem(2px) color($color: 'error') !important;
|
|
1896
|
-
padding-inline-end: rem(4px) !important;
|
|
1897
1897
|
}
|
|
1898
1898
|
|
|
1899
1899
|
&%grid-cell-number {
|
|
@@ -2084,7 +2084,7 @@
|
|
|
2084
2084
|
|
|
2085
2085
|
.sort-icon {
|
|
2086
2086
|
color: var-get($theme, 'header-selected-text-color');
|
|
2087
|
-
|
|
2087
|
+
|
|
2088
2088
|
::after {
|
|
2089
2089
|
background: var-get($theme, 'header-selected-background');
|
|
2090
2090
|
}
|
|
@@ -2112,7 +2112,7 @@
|
|
|
2112
2112
|
&%igx-grid-th--sorted {
|
|
2113
2113
|
.sort-icon {
|
|
2114
2114
|
color: var-get($theme, 'header-selected-text-color');
|
|
2115
|
-
|
|
2115
|
+
|
|
2116
2116
|
> igx-icon {
|
|
2117
2117
|
color: inherit;
|
|
2118
2118
|
}
|
|
@@ -2120,7 +2120,7 @@
|
|
|
2120
2120
|
&:focus,
|
|
2121
2121
|
&:hover {
|
|
2122
2122
|
color: var-get($theme, 'header-selected-text-color');
|
|
2123
|
-
|
|
2123
|
+
|
|
2124
2124
|
> igx-icon {
|
|
2125
2125
|
color: inherit;
|
|
2126
2126
|
}
|
|
@@ -2177,14 +2177,14 @@
|
|
|
2177
2177
|
.sort-icon {
|
|
2178
2178
|
opacity: 1;
|
|
2179
2179
|
color: var-get($theme, 'sorted-header-icon-color');
|
|
2180
|
-
|
|
2180
|
+
|
|
2181
2181
|
> igx-icon {
|
|
2182
2182
|
color: inherit;
|
|
2183
2183
|
}
|
|
2184
2184
|
|
|
2185
2185
|
&:hover {
|
|
2186
2186
|
color: var-get($theme, 'sortable-header-icon-hover-color');
|
|
2187
|
-
|
|
2187
|
+
|
|
2188
2188
|
> igx-icon {
|
|
2189
2189
|
color: inherit;
|
|
2190
2190
|
}
|
|
@@ -2220,6 +2220,7 @@
|
|
|
2220
2220
|
%grid-cell-number {
|
|
2221
2221
|
text-align: $grid-cell-align-num;
|
|
2222
2222
|
justify-content: flex-end;
|
|
2223
|
+
flex-grow: 1;
|
|
2223
2224
|
|
|
2224
2225
|
%grid-cell-header-icons {
|
|
2225
2226
|
justify-content: flex-start;
|
|
@@ -1000,6 +1000,36 @@
|
|
|
1000
1000
|
}
|
|
1001
1001
|
}
|
|
1002
1002
|
|
|
1003
|
+
@include mx(bootstrap, warning) {
|
|
1004
|
+
@include e(input) {
|
|
1005
|
+
@extend %bootstrap-input--warning !optional;
|
|
1006
|
+
|
|
1007
|
+
&:hover {
|
|
1008
|
+
@extend %bootstrap-input--warning !optional;
|
|
1009
|
+
}
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
@include e(file-input) {
|
|
1013
|
+
@extend %bootstrap-input--warning !optional;
|
|
1014
|
+
|
|
1015
|
+
&:hover {
|
|
1016
|
+
@extend %bootstrap-input--warning !optional;
|
|
1017
|
+
}
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
@include e(label) {
|
|
1021
|
+
@extend %bootstrap-label !optional;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
@include e(textarea) {
|
|
1025
|
+
@extend %bootstrap-input--warning !optional;
|
|
1026
|
+
|
|
1027
|
+
&:hover {
|
|
1028
|
+
@extend %bootstrap-input--warning !optional;
|
|
1029
|
+
}
|
|
1030
|
+
}
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1003
1033
|
@include mx(bootstrap, textarea-group) {
|
|
1004
1034
|
@include e(bundle) {
|
|
1005
1035
|
@extend %form-group-bundle-bootstrap--textarea !optional;
|
|
@@ -496,12 +496,23 @@
|
|
|
496
496
|
}
|
|
497
497
|
}
|
|
498
498
|
}
|
|
499
|
+
|
|
500
|
+
&:not(%form-group-display--focused, %form-group-display--filled) {
|
|
501
|
+
&:has(input:not(:placeholder-shown, [type='file'])) {
|
|
502
|
+
%form-group-label {
|
|
503
|
+
@include type-style('subtitle-1');
|
|
504
|
+
transform: translateY(0);
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
}
|
|
499
508
|
}
|
|
500
509
|
}
|
|
501
510
|
|
|
502
511
|
%form-group-placeholder {
|
|
503
|
-
|
|
504
|
-
|
|
512
|
+
&:has(input:placeholder-shown, textarea:placeholder-shown) {
|
|
513
|
+
%form-group-label {
|
|
514
|
+
transition: none !important;
|
|
515
|
+
}
|
|
505
516
|
}
|
|
506
517
|
}
|
|
507
518
|
|
|
@@ -1004,13 +1015,20 @@
|
|
|
1004
1015
|
|
|
1005
1016
|
%form-group-label--focused-border,
|
|
1006
1017
|
%form-group-label--filled-border,
|
|
1007
|
-
%form-group-label--placeholder-border,
|
|
1008
1018
|
%form-group-label--file-border {
|
|
1009
1019
|
%igx-input-group__notch {
|
|
1010
1020
|
border-block-start-color: transparent !important;
|
|
1011
1021
|
}
|
|
1012
1022
|
}
|
|
1013
1023
|
|
|
1024
|
+
%form-group-label--placeholder-border {
|
|
1025
|
+
&:has(input:placeholder-shown, textarea:placeholder-shown) {
|
|
1026
|
+
%igx-input-group__notch {
|
|
1027
|
+
border-block-start-color: transparent !important;
|
|
1028
|
+
}
|
|
1029
|
+
}
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1014
1032
|
%form-group-label--focused-border {
|
|
1015
1033
|
%form-group-bundle-start {
|
|
1016
1034
|
border-inline-start-width: rem(2px);
|
|
@@ -1098,6 +1116,26 @@
|
|
|
1098
1116
|
width: calc(100% - #{rem(2px)});
|
|
1099
1117
|
}
|
|
1100
1118
|
}
|
|
1119
|
+
|
|
1120
|
+
%textarea-group:not(%form-group-display--focused, %form-group-display--filled) {
|
|
1121
|
+
&:has(textarea:not(:placeholder-shown)) {
|
|
1122
|
+
%form-group-textarea-label:not(%textarea-group-label--focused) {
|
|
1123
|
+
@include type-style('subtitle-1');
|
|
1124
|
+
|
|
1125
|
+
top: calc($input-top-padding - #{rem(3px)});
|
|
1126
|
+
transform: translateY(0);
|
|
1127
|
+
margin-bottom: auto;
|
|
1128
|
+
}
|
|
1129
|
+
}
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
%textarea-group:not(%form-group-display--focused, %form-group-display--filled) {
|
|
1133
|
+
&:has(%form-group-display--border, textarea:not(:placeholder-shown)) {
|
|
1134
|
+
%igx-input-group__notch {
|
|
1135
|
+
border-block-start-width: rem(1px);
|
|
1136
|
+
}
|
|
1137
|
+
}
|
|
1138
|
+
}
|
|
1101
1139
|
}
|
|
1102
1140
|
|
|
1103
1141
|
%form-group-textarea-group-bundle {
|
|
@@ -2172,12 +2210,38 @@
|
|
|
2172
2210
|
|
|
2173
2211
|
%bootstrap-input--success {
|
|
2174
2212
|
border: rem(1px) solid var-get($theme, 'success-secondary-color');
|
|
2175
|
-
|
|
2213
|
+
|
|
2214
|
+
&:focus {
|
|
2215
|
+
box-shadow: 0 0 0 rem(4px) var-get($theme, 'success-shadow-color');
|
|
2216
|
+
|
|
2217
|
+
+ %bootstrap-file-input {
|
|
2218
|
+
box-shadow: 0 0 0 rem(4px) var-get($theme, 'success-shadow-color');
|
|
2219
|
+
}
|
|
2220
|
+
}
|
|
2176
2221
|
}
|
|
2177
2222
|
|
|
2178
2223
|
%bootstrap-input--error {
|
|
2179
2224
|
border: rem(1px) solid var-get($theme, 'error-secondary-color');
|
|
2180
|
-
|
|
2225
|
+
|
|
2226
|
+
&:focus {
|
|
2227
|
+
box-shadow: 0 0 0 rem(4px) var-get($theme, 'error-shadow-color');
|
|
2228
|
+
|
|
2229
|
+
+ %bootstrap-file-input {
|
|
2230
|
+
box-shadow: 0 0 0 rem(4px) var-get($theme, 'error-shadow-color');
|
|
2231
|
+
}
|
|
2232
|
+
}
|
|
2233
|
+
}
|
|
2234
|
+
|
|
2235
|
+
%bootstrap-input--warning {
|
|
2236
|
+
border: rem(1px) solid var-get($theme, 'warning-secondary-color');
|
|
2237
|
+
|
|
2238
|
+
&:focus {
|
|
2239
|
+
box-shadow: 0 0 0 rem(4px) color($color: 'warn', $variant: 500, $opacity: 0.38);
|
|
2240
|
+
|
|
2241
|
+
+ %bootstrap-file-input {
|
|
2242
|
+
box-shadow: 0 0 0 rem(4px) color($color: 'warn', $variant: 500, $opacity: 0.38);
|
|
2243
|
+
}
|
|
2244
|
+
}
|
|
2181
2245
|
}
|
|
2182
2246
|
|
|
2183
2247
|
%bootstrap-input--disabled {
|
|
@@ -80,6 +80,7 @@ export declare class IgxTooltipDirective extends IgxToggleDirective implements O
|
|
|
80
80
|
*/
|
|
81
81
|
tooltipTarget: IgxTooltipTargetDirective;
|
|
82
82
|
private _destroy$;
|
|
83
|
+
private _document;
|
|
83
84
|
/** @hidden */
|
|
84
85
|
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, overlayService: IgxOverlayService, navigationService: IgxNavigationService);
|
|
85
86
|
/** @hidden */
|
|
@@ -49,7 +49,7 @@ export declare class IgxSorting implements IGridSortingStrategy {
|
|
|
49
49
|
* Returns an array containing the grouped result.
|
|
50
50
|
* @internal
|
|
51
51
|
*/
|
|
52
|
-
protected groupDataRecursive(data: any[], state: IGroupingState, level: number, parent: IGroupByRecord, metadata: IGroupByRecord[], grid?: GridType, groupsRecords?: any[], fullResult?: IGroupByResult):
|
|
52
|
+
protected groupDataRecursive(data: any[], state: IGroupingState, level: number, parent: IGroupByRecord, metadata: IGroupByRecord[], grid?: GridType, groupsRecords?: any[], fullResult?: IGroupByResult): IGroupByResult;
|
|
53
53
|
/**
|
|
54
54
|
* Retrieves the value of the specified field from the given object, considering date and time data types.
|
|
55
55
|
* `key`: The key of the field to retrieve.
|
|
@@ -2,6 +2,7 @@ import { IGroupByRecord } from '../data-operations/groupby-record.interface';
|
|
|
2
2
|
import { IgxSummaryResult } from './summaries/grid-summary';
|
|
3
3
|
import { ITreeGridRecord } from './tree-grid/tree-grid.interfaces';
|
|
4
4
|
import { CellType, GridType, IGridValidationState, RowType } from './common/grid.interface';
|
|
5
|
+
import { IgxPivotGridComponent } from './pivot-grid/public_api';
|
|
5
6
|
declare abstract class BaseRow implements RowType {
|
|
6
7
|
index: number;
|
|
7
8
|
/**
|
|
@@ -356,4 +357,42 @@ export declare class IgxSummaryRow implements RowType {
|
|
|
356
357
|
constructor(grid: GridType, index: number, _summaries?: Map<string, IgxSummaryResult[]>);
|
|
357
358
|
private getRootParent;
|
|
358
359
|
}
|
|
360
|
+
export declare class IgxPivotGridRow implements RowType {
|
|
361
|
+
/** The index of the row within the grid */
|
|
362
|
+
index: number;
|
|
363
|
+
/**
|
|
364
|
+
* The grid that contains the row.
|
|
365
|
+
*/
|
|
366
|
+
grid: IgxPivotGridComponent;
|
|
367
|
+
private _data?;
|
|
368
|
+
constructor(grid: IgxPivotGridComponent, index: number, data?: any);
|
|
369
|
+
/**
|
|
370
|
+
* The data passed to the row component.
|
|
371
|
+
*/
|
|
372
|
+
get data(): any;
|
|
373
|
+
/**
|
|
374
|
+
* Returns the view index calculated per the grid page.
|
|
375
|
+
*/
|
|
376
|
+
get viewIndex(): number;
|
|
377
|
+
/**
|
|
378
|
+
* Gets the row key.
|
|
379
|
+
* A row in the grid is identified either by:
|
|
380
|
+
* - primaryKey data value,
|
|
381
|
+
* - the whole rowData, if the primaryKey is omitted.
|
|
382
|
+
*
|
|
383
|
+
* ```typescript
|
|
384
|
+
* let rowKey = row.key;
|
|
385
|
+
* ```
|
|
386
|
+
*/
|
|
387
|
+
get key(): any;
|
|
388
|
+
/**
|
|
389
|
+
* Gets whether the row is selected.
|
|
390
|
+
* Default value is `false`.
|
|
391
|
+
* ```typescript
|
|
392
|
+
* row.selected = true;
|
|
393
|
+
* ```
|
|
394
|
+
*/
|
|
395
|
+
get selected(): boolean;
|
|
396
|
+
set selected(val: boolean);
|
|
397
|
+
}
|
|
359
398
|
export {};
|
|
@@ -2,7 +2,7 @@ import { AfterContentInit, AfterViewInit, ChangeDetectorRef, EventEmitter, Eleme
|
|
|
2
2
|
import { IgxGridBaseDirective } from '../grid-base.directive';
|
|
3
3
|
import { IgxFilteringService } from '../filtering/grid-filtering.service';
|
|
4
4
|
import { IgxGridSelectionService } from '../selection/selection.service';
|
|
5
|
-
import { ColumnType, GridType, IgxColumnTemplateContext, RowType } from '../common/grid.interface';
|
|
5
|
+
import { ColumnType, GridType, IgxColumnTemplateContext, PivotGridType, RowType } from '../common/grid.interface';
|
|
6
6
|
import { IgxGridSummaryService } from '../summaries/grid-summary.service';
|
|
7
7
|
import { IDimensionsChange, IgxPivotGridValueTemplateContext, IPivotConfiguration, IPivotConfigurationChangedEventArgs, IPivotDimension, IPivotValue, IValuesChange, PivotDimensionType, IPivotUISettings } from './pivot-grid.interface';
|
|
8
8
|
import { IgxPivotHeaderRowComponent } from './pivot-header-row.component';
|
|
@@ -49,7 +49,7 @@ import * as i0 from "@angular/core";
|
|
|
49
49
|
* </igx-pivot-grid>
|
|
50
50
|
* ```
|
|
51
51
|
*/
|
|
52
|
-
export declare class IgxPivotGridComponent extends IgxGridBaseDirective implements OnInit, AfterContentInit,
|
|
52
|
+
export declare class IgxPivotGridComponent extends IgxGridBaseDirective implements OnInit, AfterContentInit, PivotGridType, AfterViewInit, OnChanges {
|
|
53
53
|
navigation: IgxPivotGridNavigationService;
|
|
54
54
|
/**
|
|
55
55
|
* Emitted when the dimension collection is changed via the grid chip area.
|
|
@@ -984,6 +984,10 @@ export declare class IgxPivotGridComponent extends IgxGridBaseDirective implemen
|
|
|
984
984
|
protected rowDimensionByName(memberName: string): IPivotDimension;
|
|
985
985
|
protected calculateResizerTop(): any;
|
|
986
986
|
protected updateDefaultRowHeight(): void;
|
|
987
|
+
/**
|
|
988
|
+
* @hidden @internal
|
|
989
|
+
*/
|
|
990
|
+
createRow(index: number, data?: any): RowType;
|
|
987
991
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxPivotGridComponent, [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { optional: true; }]>;
|
|
988
992
|
static ɵcmp: i0.ɵɵComponentDeclaration<IgxPivotGridComponent, "igx-pivot-grid", never, { "valueChipTemplate": { "alias": "valueChipTemplate"; "required": false; }; "rowDimensionHeaderTemplate": { "alias": "rowDimensionHeaderTemplate"; "required": false; }; "pivotConfiguration": { "alias": "pivotConfiguration"; "required": false; }; "autoGenerateConfig": { "alias": "autoGenerateConfig"; "required": false; }; "pivotUI": { "alias": "pivotUI"; "required": false; }; "superCompactMode": { "alias": "superCompactMode"; "required": false; }; "pivotValueCloneStrategy": { "alias": "pivotValueCloneStrategy"; "required": false; }; "addRowEmptyTemplate": { "alias": "addRowEmptyTemplate"; "required": false; }; "autoGenerateExclude": { "alias": "autoGenerateExclude"; "required": false; }; "snackbarDisplayTime": { "alias": "snackbarDisplayTime"; "required": false; }; "defaultExpandState": { "alias": "defaultExpandState"; "required": false; }; "pagingMode": { "alias": "pagingMode"; "required": false; }; "hideRowSelectors": { "alias": "hideRowSelectors"; "required": false; }; "rowDraggable": { "alias": "rowDraggable"; "required": false; }; "allowAdvancedFiltering": { "alias": "allowAdvancedFiltering"; "required": false; }; "filterMode": { "alias": "filterMode"; "required": false; }; "allowFiltering": { "alias": "allowFiltering"; "required": false; }; "page": { "alias": "page"; "required": false; }; "perPage": { "alias": "perPage"; "required": false; }; "summaryRowHeight": { "alias": "summaryRowHeight"; "required": false; }; "rowEditable": { "alias": "rowEditable"; "required": false; }; "pinning": { "alias": "pinning"; "required": false; }; "summaryPosition": { "alias": "summaryPosition"; "required": false; }; "summaryCalculationMode": { "alias": "summaryCalculationMode"; "required": false; }; "showSummaryOnCollapse": { "alias": "showSummaryOnCollapse"; "required": false; }; "batchEditing": { "alias": "batchEditing"; "required": false; }; "id": { "alias": "id"; "required": false; }; "data": { "alias": "data"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "emptyPivotGridTemplate": { "alias": "emptyPivotGridTemplate"; "required": false; }; }, { "dimensionsChange": "dimensionsChange"; "pivotConfigurationChange": "pivotConfigurationChange"; "dimensionInit": "dimensionInit"; "valueInit": "valueInit"; "dimensionsSortingExpressionsChange": "dimensionsSortingExpressionsChange"; "valuesChange": "valuesChange"; "cellEdit": "cellEdit"; "cellEditDone": "cellEditDone"; "cellEditEnter": "cellEditEnter"; "cellEditExit": "cellEditExit"; "columnMovingStart": "columnMovingStart"; "columnMoving": "columnMoving"; "columnMovingEnd": "columnMovingEnd"; "columnPin": "columnPin"; "columnPinned": "columnPinned"; "rowAdd": "rowAdd"; "rowAdded": "rowAdded"; "rowDeleted": "rowDeleted"; "rowDelete": "rowDelete"; "rowDragStart": "rowDragStart"; "rowDragEnd": "rowDragEnd"; "rowEditEnter": "rowEditEnter"; "rowEdit": "rowEdit"; "rowEditDone": "rowEditDone"; "rowEditExit": "rowEditExit"; "rowPinning": "rowPinning"; "rowPinned": "rowPinned"; }, ["valueChipTemplateDirective", "rowDimensionHeaderDirective"], ["igx-grid-toolbar,igc-grid-toolbar", "igx-grid-footer,igc-grid-footer", "igx-grid-state,igc-grid-state"], true, never>;
|
|
989
993
|
static ngAcceptInputType_autoGenerateConfig: unknown;
|
|
@@ -29,4 +29,6 @@ export declare class PivotUtil {
|
|
|
29
29
|
private static applyHierarchyChildren;
|
|
30
30
|
static getAggregateList(val: IPivotValue, grid: PivotGridType): IPivotAggregator[];
|
|
31
31
|
static getAggregatorsForValue(value: IPivotValue, grid: PivotGridType): IPivotAggregator[];
|
|
32
|
+
static updateColumnTypeByAggregator(columns: any[], value: IPivotValue, isSingleValue: boolean): void;
|
|
33
|
+
private static getColumnDataTypeForValue;
|
|
32
34
|
}
|
|
@@ -151,7 +151,7 @@ export declare class IgxInputGroupComponent implements IgxInputGroupBase {
|
|
|
151
151
|
/** @hidden @internal */
|
|
152
152
|
get hasSuffixes(): any;
|
|
153
153
|
/** @hidden @internal */
|
|
154
|
-
set suffixes(items: QueryList<
|
|
154
|
+
set suffixes(items: QueryList<IgxSuffixDirective>);
|
|
155
155
|
/**
|
|
156
156
|
* Returns whether the `IgxInputGroupComponent` has border.
|
|
157
157
|
* ```typescript
|
|
@@ -60,6 +60,7 @@ export declare class IgxSelectComponent extends IgxDropDownComponent implements
|
|
|
60
60
|
children: QueryList<IgxSelectItemComponent>;
|
|
61
61
|
protected prefixes: QueryList<IgxPrefixDirective>;
|
|
62
62
|
protected suffixes: QueryList<IgxSuffixDirective>;
|
|
63
|
+
protected internalSuffixes: QueryList<IgxSuffixDirective>;
|
|
63
64
|
/** @hidden @internal */
|
|
64
65
|
label: IgxLabelDirective;
|
|
65
66
|
/**
|
|
@@ -18,6 +18,7 @@ export declare class IgxSplitterPaneComponent {
|
|
|
18
18
|
private el;
|
|
19
19
|
private _minSize;
|
|
20
20
|
private _maxSize;
|
|
21
|
+
private _order;
|
|
21
22
|
/**
|
|
22
23
|
* @hidden @internal
|
|
23
24
|
* Gets/Sets the 'display' property of the current pane.
|
|
@@ -72,7 +73,8 @@ export declare class IgxSplitterPaneComponent {
|
|
|
72
73
|
*/
|
|
73
74
|
collapsedChange: EventEmitter<boolean>;
|
|
74
75
|
/** @hidden @internal */
|
|
75
|
-
order: number;
|
|
76
|
+
get order(): number;
|
|
77
|
+
set order(val: number);
|
|
76
78
|
/**
|
|
77
79
|
* @hidden @internal
|
|
78
80
|
* Gets/Sets the `overflow`.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AfterContentInit, ElementRef, EventEmitter, QueryList } from '@angular/core';
|
|
1
|
+
import { AfterContentInit, ElementRef, EventEmitter, NgZone, QueryList } from '@angular/core';
|
|
2
2
|
import { DragDirection, IDragMoveEventArgs, IDragStartEventArgs } from '../directives/drag-drop/drag-drop.directive';
|
|
3
3
|
import { IgxSplitterPaneComponent } from './splitter-pane/splitter-pane.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
@@ -42,6 +42,7 @@ export declare interface ISplitterBarResizeEventArgs {
|
|
|
42
42
|
export declare class IgxSplitterComponent implements AfterContentInit {
|
|
43
43
|
document: any;
|
|
44
44
|
private elementRef;
|
|
45
|
+
private zone;
|
|
45
46
|
/**
|
|
46
47
|
* Gets the list of splitter panes.
|
|
47
48
|
*
|
|
@@ -125,7 +126,7 @@ export declare class IgxSplitterComponent implements AfterContentInit {
|
|
|
125
126
|
* The sibling pane in each pair of panes divided by a splitter bar.
|
|
126
127
|
*/
|
|
127
128
|
private sibling;
|
|
128
|
-
constructor(document: any, elementRef: ElementRef);
|
|
129
|
+
constructor(document: any, elementRef: ElementRef, zone: NgZone);
|
|
129
130
|
/**
|
|
130
131
|
* Gets/Sets the splitter orientation.
|
|
131
132
|
*
|
package/package.json
CHANGED