File tree Expand file tree Collapse file tree 3 files changed +11
-8
lines changed
material-experimental/mdc-chips Expand file tree Collapse file tree 3 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -140,6 +140,9 @@ export const config = {
140140 'element is inside an ngIf'
141141 ] ,
142142 'mdc-select' : [
143+ // TODO(crisbeto): remove this exception once #22187 lands.
144+ 'should float the label on focus if it has a placeholder' ,
145+
143146 // These tests are excluded, because they're verifying the functionality that positions
144147 // the select panel over the trigger which isn't supported in the MDC select.
145148 'should set the width of the overlay based on a larger trigger width' ,
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ import {MatChipTextControl} from './chip-text-control';
2525
2626/** Represents an input event on a `matChipInput`. */
2727export interface MatChipInputEvent {
28- /**
28+ /**
2929 * The native `<input>` element that the event is being fired for.
3030 * @deprecated Use `MatChipInputEvent#chipInput.inputElement` instead.
3131 * @breaking -change 13.0.0 This property will be removed.
@@ -34,9 +34,9 @@ export interface MatChipInputEvent {
3434
3535 /** The value of the input. */
3636 value : string ;
37-
38- /**
39- * Reference to the chip input that emitted the event.
37+
38+ /**
39+ * Reference to the chip input that emitted the event.
4040 * @breaking -change 13.0.0 This property will be made required.
4141 */
4242 chipInput ?: MatChipInput ;
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ import {MatChipTextControl} from './chip-text-control';
2525
2626/** Represents an input event on a `matChipInput`. */
2727export interface MatChipInputEvent {
28- /**
28+ /**
2929 * The native `<input>` element that the event is being fired for.
3030 * @deprecated Use `MatChipInputEvent#chipInput.inputElement` instead.
3131 * @breaking -change 13.0.0 This property will be removed.
@@ -34,9 +34,9 @@ export interface MatChipInputEvent {
3434
3535 /** The value of the input. */
3636 value : string ;
37-
38- /**
39- * Reference to the chip input that emitted the event.
37+
38+ /**
39+ * Reference to the chip input that emitted the event.
4040 * @breaking -change 13.0.0 This property will be made required.
4141 */
4242 chipInput ?: MatChipInput ;
You can’t perform that action at this time.
0 commit comments