Skip to content

Commit 001278b

Browse files
committed
Merge pull request #4009 from material-components:release-please--branches--master--components--web
PiperOrigin-RevId: 515159864
2 parents a6176de + 68f1f1c commit 001278b

13 files changed

+36
-776
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.0.0-pre.3"
2+
".": "1.0.0-pre.4"
33
}

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# Changelog
22

3+
## [1.0.0-pre.4](https://github.com/material-components/material-web/compare/v1.0.0-pre.3...v1.0.0-pre.4) (2023-03-08)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **icon,iconbutton,list:** use material symbols for icons
9+
10+
### Features
11+
12+
* **field:** add resizability ([fd605d5](https://github.com/material-components/material-web/commit/fd605d537ce3584c97ffca375e019615c26b748b))
13+
* **tokens:** generate tokens v0.161 ([e2cd832](https://github.com/material-components/material-web/commit/e2cd8327b60691f093fd389f7a259d217f1d9b89))
14+
15+
16+
### Bug Fixes
17+
18+
* **all:** update non-menu components to v0.161 ([828d7ae](https://github.com/material-components/material-web/commit/828d7aeb4d3144e3a0229cc4fa81e7c7135c4760))
19+
* **icon,iconbutton,list:** use material symbols for icons ([232982e](https://github.com/material-components/material-web/commit/232982ef034872968924dbb5620f59352c4028c2))
20+
* **icon:** mark icon and icon button as beta ([ff3d379](https://github.com/material-components/material-web/commit/ff3d379bc874be338c5aa8a9afa1593a879fdefa))
21+
* **text-field:** apply suffix-color and icon size tokens ([a969fda](https://github.com/material-components/material-web/commit/a969fdadb61e2d3ffedd17ddbc9ebe019d5f054c))
22+
* **text-field:** remove indicator expansion animation ([d755d10](https://github.com/material-components/material-web/commit/d755d107fa487e9a06c4279dbd76a1074437e369))
23+
* **textfield:** outlined label jumping horizontally with leading icon ([c98f5e0](https://github.com/material-components/material-web/commit/c98f5e017d2bb74caaf88c94c2866e155b61c98e))
24+
* update license year and holder ([510a867](https://github.com/material-components/material-web/commit/510a867f0d4e95663a6e311b368bc879fecb8361)), closes [#3073](https://github.com/material-components/material-web/issues/3073)
25+
26+
27+
### Miscellaneous Chores
28+
29+
* update next version ([a6176de](https://github.com/material-components/material-web/commit/a6176de68460c3e37aa74e1ffac5457eb093bba3))
30+
* update next version ([367e76a](https://github.com/material-components/material-web/commit/367e76aecfae9e6e3cd99094fa021e77f2d7b80a))
31+
* update next version ([9a36b3a](https://github.com/material-components/material-web/commit/9a36b3a9ae0c7d3181b66e36e6f27907c8565656))
32+
333
## [1.0.0-pre.3](https://github.com/material-components/material-web/compare/v1.0.0-pre.2...v1.0.0-pre.3) (2023-02-22)
434

535

controller/form-controller.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66

77
import {ReactiveController, ReactiveControllerHost} from 'lit';
88

9-
import {bound} from '../decorators/bound.js';
10-
119
import {isFormAssociated} from './form-associated.js';
1210
import {shimLabelSupport, SUPPORTS_FACE_LABEL} from './shim-label-activation.js';
1311

@@ -93,8 +91,7 @@ export class FormController implements ReactiveController {
9391
this.form?.removeEventListener('formdata', this.formDataListener);
9492
}
9593

96-
@bound
97-
private formDataListener(event: FormDataEvent) {
94+
private readonly formDataListener = (event: FormDataEvent) => {
9895
if (this.element.disabled) {
9996
// Check for truthiness since some elements may not support disabling.
10097
return;
@@ -117,5 +114,5 @@ export class FormController implements ReactiveController {
117114
}
118115

119116
event.formData.append(this.element.name, value);
120-
}
117+
};
121118
}

controller/foundation.ts

Lines changed: 0 additions & 32 deletions
This file was deleted.

controller/foundation_test.ts

Lines changed: 0 additions & 22 deletions
This file was deleted.

controller/observer-foundation.ts

Lines changed: 0 additions & 41 deletions
This file was deleted.

controller/observer-foundation_test.ts

Lines changed: 0 additions & 95 deletions
This file was deleted.

0 commit comments

Comments
 (0)