@material/dialog
Advanced tools
Comparing version 15.0.0-canary.21d1196a7.0 to 15.0.0-canary.22bf82024.0
@@ -6,3 +6,3 @@ # Change Log | ||
# [15.0.0-canary.21d1196a7.0](https://github.com/material-components/material-components-web/compare/v14.0.0...v15.0.0-canary.21d1196a7.0) (2023-01-09) | ||
# [15.0.0-canary.22bf82024.0](https://github.com/material-components/material-components-web/compare/v14.0.0...v15.0.0-canary.22bf82024.0) (2023-09-18) | ||
@@ -12,2 +12,4 @@ | ||
* **dialog:** Add tabindex=-1 to dialog surface and set its outline to 0 ([4e840d6](https://github.com/material-components/material-components-web/commit/4e840d68533ef04e438c0b10f1047627a1d01e0c)) | ||
* **dialog:** fix dialog close button z-index in dark mode ([26bacc3](https://github.com/material-components/material-components-web/commit/26bacc3feee6ea39c95b35b73c99040399b0f530)) | ||
* **dialog:** Fix fullscreen scrim z-index during animation ([39f9424](https://github.com/material-components/material-components-web/commit/39f9424b3806fe8d5b45f1f0cc02fb5b4a7a6998)) | ||
@@ -18,3 +20,5 @@ | ||
* **dialog:** Add `z-indez` token to dialog theme styles mixin ([93fc524](https://github.com/material-components/material-components-web/commit/93fc524b7889f5789096c9be8799ed5b619aed43)) | ||
* **dialog:** add a scrim-less dialog, that does not block interaction with the page ([2a6ddc1](https://github.com/material-components/material-components-web/commit/2a6ddc1cff903da5e17766a214d76fc8cb3904d8)) | ||
* **dialog:** Add display mixin ([bebf5bf](https://github.com/material-components/material-components-web/commit/bebf5bfdf0ca880e6ce4a4b8c2f13f62bf433abe)) | ||
* **dialog:** Adding container-surface-tint as supported token for theme-API. ([446734f](https://github.com/material-components/material-components-web/commit/446734f27bf1f7eadbf9d30c248649f46dd52cda)) |
{ | ||
"name": "@material/dialog", | ||
"version": "15.0.0-canary.21d1196a7.0", | ||
"version": "15.0.0-canary.22bf82024.0", | ||
"description": "The Material Components Web dialog component", | ||
@@ -21,16 +21,16 @@ "license": "MIT", | ||
"dependencies": { | ||
"@material/animation": "15.0.0-canary.21d1196a7.0", | ||
"@material/base": "15.0.0-canary.21d1196a7.0", | ||
"@material/button": "15.0.0-canary.21d1196a7.0", | ||
"@material/dom": "15.0.0-canary.21d1196a7.0", | ||
"@material/elevation": "15.0.0-canary.21d1196a7.0", | ||
"@material/feature-targeting": "15.0.0-canary.21d1196a7.0", | ||
"@material/icon-button": "15.0.0-canary.21d1196a7.0", | ||
"@material/ripple": "15.0.0-canary.21d1196a7.0", | ||
"@material/rtl": "15.0.0-canary.21d1196a7.0", | ||
"@material/shape": "15.0.0-canary.21d1196a7.0", | ||
"@material/theme": "15.0.0-canary.21d1196a7.0", | ||
"@material/tokens": "15.0.0-canary.21d1196a7.0", | ||
"@material/touch-target": "15.0.0-canary.21d1196a7.0", | ||
"@material/typography": "15.0.0-canary.21d1196a7.0", | ||
"@material/animation": "15.0.0-canary.22bf82024.0", | ||
"@material/base": "15.0.0-canary.22bf82024.0", | ||
"@material/button": "15.0.0-canary.22bf82024.0", | ||
"@material/dom": "15.0.0-canary.22bf82024.0", | ||
"@material/elevation": "15.0.0-canary.22bf82024.0", | ||
"@material/feature-targeting": "15.0.0-canary.22bf82024.0", | ||
"@material/icon-button": "15.0.0-canary.22bf82024.0", | ||
"@material/ripple": "15.0.0-canary.22bf82024.0", | ||
"@material/rtl": "15.0.0-canary.22bf82024.0", | ||
"@material/shape": "15.0.0-canary.22bf82024.0", | ||
"@material/theme": "15.0.0-canary.22bf82024.0", | ||
"@material/tokens": "15.0.0-canary.22bf82024.0", | ||
"@material/touch-target": "15.0.0-canary.22bf82024.0", | ||
"@material/typography": "15.0.0-canary.22bf82024.0", | ||
"tslib": "^2.1.0" | ||
@@ -41,3 +41,3 @@ }, | ||
}, | ||
"gitHead": "361e536c54e276112f021b419f666618a20599f6" | ||
"gitHead": "eda4fad2a8a727b69db60b828bd92df7a8956143" | ||
} |
@@ -110,3 +110,4 @@ <!--docs: | ||
aria-labelledby="my-dialog-title" | ||
aria-describedby="my-dialog-content"> | ||
aria-describedby="my-dialog-content" | ||
tabindex="-1"> | ||
<div class="mdc-dialog__content" id="my-dialog-content"> | ||
@@ -148,3 +149,4 @@ Discard draft? | ||
aria-labelledby="my-dialog-title" | ||
aria-describedby="my-dialog-content"> | ||
aria-describedby="my-dialog-content" | ||
tabindex="-1"> | ||
<!-- Title cannot contain leading whitespace due to mdc-typography-baseline-top() --> | ||
@@ -190,3 +192,4 @@ <h2 class="mdc-dialog__title" id="my-dialog-title"><!-- | ||
aria-labelledby="my-dialog-title" | ||
aria-describedby="my-dialog-content"> | ||
aria-describedby="my-dialog-content" | ||
tabindex="-1"> | ||
<!-- Title cannot contain leading whitespace due to mdc-typography-baseline-top() --> | ||
@@ -254,3 +257,4 @@ <h2 class="mdc-dialog__title" id="my-dialog-title"><!-- | ||
aria-labelledby="my-dialog-title" | ||
aria-describedby="my-dialog-content"> | ||
aria-describedby="my-dialog-content" | ||
tabindex="-1"> | ||
<div class="mdc-dialog__header"> | ||
@@ -310,3 +314,3 @@ <h2 class="mdc-dialog__title" id="my-dialog-title"> | ||
<div class="mdc-dialog__container"> | ||
<div class="mdc-dialog__surface"> | ||
<div class="mdc-dialog__surface" tabindex="-1"> | ||
<button class="mdc-icon-button material-icons mdc-dialog__close" data-mdc-dialog-action="close"> | ||
@@ -313,0 +317,0 @@ close |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1650065
7962
589
+ Added@material/animation@15.0.0-canary.22bf82024.0(transitive)
+ Added@material/base@15.0.0-canary.22bf82024.0(transitive)
+ Added@material/button@15.0.0-canary.22bf82024.0(transitive)
+ Added@material/density@15.0.0-canary.22bf82024.0(transitive)
+ Added@material/dom@15.0.0-canary.22bf82024.0(transitive)
+ Added@material/elevation@15.0.0-canary.22bf82024.0(transitive)
+ Added@material/feature-targeting@15.0.0-canary.22bf82024.0(transitive)
+ Added@material/focus-ring@15.0.0-canary.22bf82024.0(transitive)
+ Added@material/icon-button@15.0.0-canary.22bf82024.0(transitive)
+ Added@material/ripple@15.0.0-canary.22bf82024.0(transitive)
+ Added@material/rtl@15.0.0-canary.22bf82024.0(transitive)
+ Added@material/shape@15.0.0-canary.22bf82024.0(transitive)
+ Added@material/theme@15.0.0-canary.22bf82024.0(transitive)
+ Added@material/tokens@15.0.0-canary.22bf82024.0(transitive)
+ Added@material/touch-target@15.0.0-canary.22bf82024.0(transitive)
+ Added@material/typography@15.0.0-canary.22bf82024.0(transitive)
- Removed@material/animation@15.0.0-canary.21d1196a7.0(transitive)
- Removed@material/base@15.0.0-canary.21d1196a7.0(transitive)
- Removed@material/button@15.0.0-canary.21d1196a7.0(transitive)
- Removed@material/density@15.0.0-canary.21d1196a7.0(transitive)
- Removed@material/dom@15.0.0-canary.21d1196a7.0(transitive)
- Removed@material/elevation@15.0.0-canary.21d1196a7.0(transitive)
- Removed@material/feature-targeting@15.0.0-canary.21d1196a7.0(transitive)
- Removed@material/focus-ring@15.0.0-canary.21d1196a7.0(transitive)
- Removed@material/icon-button@15.0.0-canary.21d1196a7.0(transitive)
- Removed@material/ripple@15.0.0-canary.21d1196a7.0(transitive)
- Removed@material/rtl@15.0.0-canary.21d1196a7.0(transitive)
- Removed@material/shape@15.0.0-canary.21d1196a7.0(transitive)
- Removed@material/theme@15.0.0-canary.21d1196a7.0(transitive)
- Removed@material/tokens@15.0.0-canary.21d1196a7.0(transitive)
- Removed@material/touch-target@15.0.0-canary.21d1196a7.0(transitive)
- Removed@material/typography@15.0.0-canary.21d1196a7.0(transitive)
Updated@material/feature-targeting@15.0.0-canary.22bf82024.0