This will enable forwards compatibility for `positioning="top-layer"` with popover.
BREAKING CHANGE: refactor `fixed` property to `positioning="fixed"` in Menu and `menuFixed` to `menuPositioning="fixed"`
PiperOrigin-RevId: 567723646
BREAKING CHANGE: if overriding margin on a dialog's content, swap it to padding. If a dialog's slotted first or last child has built-in margin (such as `<h3>` or `<p>`), remove the top/bottom margin as needed (since margin swapped to padding, there's no more margin collapsing).
PiperOrigin-RevId: 564509429
BREAKING CHANGE: replace `headline-text-type` and `supporting-text-type` tokens with `-font`, `-size`, `-line-height`, and `-weight`
PiperOrigin-RevId: 563160825
Fixes#4647Fixes#4285
BREAKING CHANGE: See https://github.com/material-components/material-web/discussions/4675 for more details.
Dialogs use the native `<dialog>` interface, which uses a `<form method="dialog">` to set up dialog actions.
```html
<md-dialog>
<div slot="headline">A simple dialog</div>
<form id="form" method="dialog" slot="content">
This is a dialog with text content.
</form>
<div slot="actions">
<md-text-button form="form" value="close">Close</md-text-button>
<md-text-button form="form" value="ok">OK</md-text-button>
</div>
</md-dialog>
```
PiperOrigin-RevId: 555702952
BREAKING CHANGE: Fullscreen dialogs weren't matching spec, so we're removing them for now to avoid future breaking changes. They will be re-added later.
PiperOrigin-RevId: 554583471