igniteui-angular 16.1.3 → 16.1.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/esm2022/lib/core/utils.mjs +2 -2
- package/esm2022/lib/grids/common/strategy.mjs +2 -1
- package/esm2022/lib/grids/filtering/excel-style/excel-style-conditional-filter.component.mjs +6 -3
- package/esm2022/lib/grids/grid/grid.component.mjs +15 -3
- package/esm2022/lib/snackbar/snackbar.component.mjs +4 -3
- package/fesm2022/igniteui-angular.mjs +21 -6
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/core/styles/components/rating/_rating-theme.scss +5 -5
- package/lib/core/styles/components/snackbar/_snackbar-theme.scss +14 -24
- package/lib/grids/grid/grid.component.d.ts +9 -0
- package/lib/snackbar/snackbar.component.d.ts +1 -1
- package/package.json +2 -2
- 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
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
igc-rating::part(value-label) {
|
|
55
|
-
color:
|
|
55
|
+
color: var-get($theme, 'value-label');
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
igc-rating[disabled]::part(label),
|
|
@@ -61,9 +61,9 @@
|
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
igc-rating[disabled] {
|
|
64
|
-
--symbol-empty-color: var(
|
|
65
|
-
--symbol-full-color: var(
|
|
66
|
-
--symbol-empty-filter:
|
|
67
|
-
--symbol-full-filter:
|
|
64
|
+
--symbol-empty-color: #{var-get($theme, 'disabled-empty-symbol-color')};
|
|
65
|
+
--symbol-full-color: #{var-get($theme, 'disabled-full-symbol-color')};
|
|
66
|
+
--disabled-symbol-empty-filter: #{var-get($theme, 'symbol-empty-filter')};
|
|
67
|
+
--disabled-symbol-full-filter: #{var-get($theme, 'symbol-full-filter')};
|
|
68
68
|
}
|
|
69
69
|
}
|
|
@@ -81,8 +81,6 @@
|
|
|
81
81
|
|
|
82
82
|
$snackbar-min-height: rem(48px);
|
|
83
83
|
$snackbar-padding: rem(7px) rem(24px);
|
|
84
|
-
$snackbar-button-left-margin: rem(24px);
|
|
85
|
-
$snackbar-button-line-height: rem(16px);
|
|
86
84
|
$snackbar-button-font-weight: 600;
|
|
87
85
|
|
|
88
86
|
%igx-snackbar-display {
|
|
@@ -94,38 +92,30 @@
|
|
|
94
92
|
min-height: $snackbar-min-height;
|
|
95
93
|
padding: $snackbar-padding;
|
|
96
94
|
margin: rem(8px);
|
|
95
|
+
gap: rem(24px);
|
|
97
96
|
color: var-get($theme, 'text-color');
|
|
98
97
|
background: var-get($theme, 'background');
|
|
99
98
|
backface-visibility: hidden;
|
|
100
99
|
box-shadow: var-get($theme, 'shadow');
|
|
101
100
|
border-radius: var-get($theme, 'border-radius');
|
|
102
101
|
backdrop-filter: blur(8px);
|
|
103
|
-
}
|
|
104
102
|
|
|
105
|
-
|
|
106
|
-
|
|
103
|
+
[igxButton] {
|
|
104
|
+
@include animation(fade-in .35s ease-out);
|
|
105
|
+
--ig-size: 1;
|
|
106
|
+
background: transparent;
|
|
107
|
+
color: var-get($theme, 'button-color');
|
|
108
|
+
-webkit-tap-highlight-color: transparent;
|
|
109
|
+
box-shadow: none;
|
|
110
|
+
}
|
|
107
111
|
}
|
|
108
112
|
|
|
109
113
|
%igx-snackbar-button {
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
text-transform: uppercase;
|
|
116
|
-
user-select: none;
|
|
117
|
-
font-weight: $snackbar-button-font-weight;
|
|
118
|
-
-webkit-tap-highlight-color: transparent;
|
|
119
|
-
outline: none;
|
|
120
|
-
transition: color .2s ease;
|
|
121
|
-
font-size: inherit;
|
|
122
|
-
font-family: inherit;
|
|
123
|
-
cursor: pointer;
|
|
124
|
-
@include animation('fade-in' .35s ease-out);
|
|
125
|
-
|
|
126
|
-
&:hover {
|
|
127
|
-
color: var-get($theme, 'button-color');
|
|
128
|
-
}
|
|
114
|
+
display: contents;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
%igx-snackbar-message {
|
|
118
|
+
@include animation(fade-in .35s ease-out);
|
|
129
119
|
}
|
|
130
120
|
}
|
|
131
121
|
|
|
@@ -10,6 +10,7 @@ import { IGroupingExpression } from '../../data-operations/grouping-expression.i
|
|
|
10
10
|
import { CellType, GridType, IgxGridMasterDetailContext, IgxGroupByRowSelectorTemplateContext, IgxGroupByRowTemplateContext, RowType } from '../common/grid.interface';
|
|
11
11
|
import { ISortingExpression } from '../../data-operations/sorting-strategy';
|
|
12
12
|
import { IGridGroupingStrategy } from '../common/strategy';
|
|
13
|
+
import { Observable, Subject } from 'rxjs';
|
|
13
14
|
import * as i0 from "@angular/core";
|
|
14
15
|
export interface IGroupingDoneEventArgs extends IBaseEventArgs {
|
|
15
16
|
expressions: Array<ISortingExpression> | ISortingExpression;
|
|
@@ -235,6 +236,14 @@ export declare class IgxGridComponent extends IgxGridBaseDirective implements Gr
|
|
|
235
236
|
get totalItemCount(): number;
|
|
236
237
|
private get _gridAPI();
|
|
237
238
|
private childDetailTemplates;
|
|
239
|
+
/**
|
|
240
|
+
* @hidden @internal
|
|
241
|
+
*/
|
|
242
|
+
groupingPerformedSubject: Subject<void>;
|
|
243
|
+
/**
|
|
244
|
+
* @hidden @internal
|
|
245
|
+
*/
|
|
246
|
+
groupingPerformed$: Observable<void>;
|
|
238
247
|
/**
|
|
239
248
|
* Gets/Sets the group by state.
|
|
240
249
|
*
|
|
@@ -127,5 +127,5 @@ export declare class IgxSnackbarComponent extends IgxNotificationsDirective impl
|
|
|
127
127
|
*/
|
|
128
128
|
ngOnInit(): void;
|
|
129
129
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxSnackbarComponent, never>;
|
|
130
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IgxSnackbarComponent, "igx-snackbar", never, { "id": { "alias": "id"; "required": false; }; "actionText": { "alias": "actionText"; "required": false; }; "positionSettings": { "alias": "positionSettings"; "required": false; }; }, { "clicked": "clicked"; "animationStarted": "animationStarted"; "animationDone": "animationDone"; }, never, ["*"], true, never>;
|
|
130
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IgxSnackbarComponent, "igx-snackbar", never, { "id": { "alias": "id"; "required": false; }; "actionText": { "alias": "actionText"; "required": false; }; "positionSettings": { "alias": "positionSettings"; "required": false; }; }, { "clicked": "clicked"; "animationStarted": "animationStarted"; "animationDone": "animationDone"; }, never, ["*", "[igxButton]"], true, never>;
|
|
131
131
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-angular",
|
|
3
|
-
"version": "16.1.
|
|
3
|
+
"version": "16.1.4",
|
|
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",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"igniteui-trial-watermark": "^3.0.2",
|
|
77
77
|
"lodash-es": "^4.17.21",
|
|
78
78
|
"uuid": "^9.0.0",
|
|
79
|
-
"igniteui-theming": "^3.
|
|
79
|
+
"igniteui-theming": "^3.3.0",
|
|
80
80
|
"@igniteui/material-icons-extended": "^3.0.0"
|
|
81
81
|
},
|
|
82
82
|
"peerDependencies": {
|