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 = {
140
140
'element is inside an ngIf'
141
141
] ,
142
142
'mdc-select' : [
143
+ // TODO(crisbeto): remove this exception once #22187 lands.
144
+ 'should float the label on focus if it has a placeholder' ,
145
+
143
146
// These tests are excluded, because they're verifying the functionality that positions
144
147
// the select panel over the trigger which isn't supported in the MDC select.
145
148
'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';
25
25
26
26
/** Represents an input event on a `matChipInput`. */
27
27
export interface MatChipInputEvent {
28
- /**
28
+ /**
29
29
* The native `<input>` element that the event is being fired for.
30
30
* @deprecated Use `MatChipInputEvent#chipInput.inputElement` instead.
31
31
* @breaking -change 13.0.0 This property will be removed.
@@ -34,9 +34,9 @@ export interface MatChipInputEvent {
34
34
35
35
/** The value of the input. */
36
36
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.
40
40
* @breaking -change 13.0.0 This property will be made required.
41
41
*/
42
42
chipInput ?: MatChipInput ;
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ import {MatChipTextControl} from './chip-text-control';
25
25
26
26
/** Represents an input event on a `matChipInput`. */
27
27
export interface MatChipInputEvent {
28
- /**
28
+ /**
29
29
* The native `<input>` element that the event is being fired for.
30
30
* @deprecated Use `MatChipInputEvent#chipInput.inputElement` instead.
31
31
* @breaking -change 13.0.0 This property will be removed.
@@ -34,9 +34,9 @@ export interface MatChipInputEvent {
34
34
35
35
/** The value of the input. */
36
36
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.
40
40
* @breaking -change 13.0.0 This property will be made required.
41
41
*/
42
42
chipInput ?: MatChipInput ;
You can’t perform that action at this time.
0 commit comments