Skip to content

Commit fa26b45

Browse files
authored
Merge branch '9.1.x' into vmihalkov/fix-6321-9.1.x
2 parents 8f7c095 + 9aa6661 commit fa26b45

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

projects/igniteui-angular/src/lib/core/styles/components/dialog/_dialog-theme.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,15 @@
161161
color: --var($theme, 'message-color');
162162
max-width: 40ch;
163163
padding: $dialog-message-padding;
164+
165+
@media all and (-ms-high-contrast: none)
166+
{
167+
max-width: map-get((
168+
material: 62ch,
169+
fluent: 48ch,
170+
bootstrap: 60ch,
171+
), $variant);
172+
}
164173
}
165174

166175
%igx-dialog-actions {

projects/igniteui-angular/src/lib/grids/grid-base.directive.ts

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3335,24 +3335,23 @@ export class IgxGridBaseDirective extends DisplayDensityBase implements
33353335
}
33363336

33373337
/**
3338-
* Gets the outlet used to attach the grid's overlays to.
3338+
* Gets/Sets the outlet used to attach the grid's overlays to.
33393339
* @remark
33403340
* If set, returns the outlet defined outside the grid. Otherwise returns the grid's internal outlet directive.
33413341
*/
3342+
@Input()
33423343
get outlet() {
33433344
return this.resolveOutlet();
33443345
}
33453346

3347+
set outlet(val: IgxOverlayOutletDirective) {
3348+
this._userOutletDirective = val;
3349+
}
3350+
33463351
protected resolveOutlet() {
33473352
return this._userOutletDirective ? this._userOutletDirective : this._outletDirective;
33483353
}
33493354

3350-
/**
3351-
* Sets the outlet used to attach the grid's overlays to.
3352-
*/
3353-
set outlet(val: any) {
3354-
this._userOutletDirective = val;
3355-
}
33563355

33573356
/**
33583357
* Gets the default row height.

0 commit comments

Comments
 (0)