@material/list
Advanced tools
Comparing version 15.0.0-canary.202823f54.0 to 15.0.0-canary.205b20b36.0
@@ -6,3 +6,3 @@ # Change Log | ||
# [15.0.0-canary.202823f54.0](https://github.com/material-components/material-components-web/compare/v14.0.0...v15.0.0-canary.202823f54.0) (2023-01-11) | ||
# [15.0.0-canary.205b20b36.0](https://github.com/material-components/material-components-web/compare/v14.0.0...v15.0.0-canary.205b20b36.0) (2023-09-13) | ||
@@ -12,6 +12,11 @@ | ||
* **list:** Remove ripple styles for disabled items in deprecated list. ([f52358d](https://github.com/material-components/material-components-web/commit/f52358dd0796308919bb78deffc573d0d933c7de)) | ||
* correct behavior of checkboxes/radios in a list. ([f771b09](https://github.com/material-components/material-components-web/commit/f771b091ce1e5b1b97b3a508f1459e4665008a80)) | ||
* **list:** Allow alt + enter to select index for lists. ([113b1a3](https://github.com/material-components/material-components-web/commit/113b1a38e87337fdd00c7495fda3299df2dbc317)) | ||
* **list:** behavior in case of changing focus from -1 to -1 with forceUpdate: true ([ae278a2](https://github.com/material-components/material-components-web/commit/ae278a2fe94fdb8c5d0716fb34cbe84a691d6146)) | ||
* **list:** Fix list leading/trailing icon theming ([36a4cba](https://github.com/material-components/material-components-web/commit/36a4cba9944392b391b86d41405ee21fb97f4c22)) | ||
* **list:** Fixes how list handles `CTRL-A` keyboard interactions for multi-selection lists when there are disabled list items. ([a911b38](https://github.com/material-components/material-components-web/commit/a911b386b2fded69e3468ef42e7ef25eb33fcd70)) | ||
* **list:** Fixing css for calculating `$mdc-list-subheader-margin` param. ([357f2e5](https://github.com/material-components/material-components-web/commit/357f2e5f15f6374c9d93da135a8b070239ba7464)) | ||
* **list:** Initialize selectedIndex as an array for checkbox list ([0347671](https://github.com/material-components/material-components-web/commit/034767110778aab3e5f0a3240937d8a07c21197e)) | ||
* **list:** only set overflow hidden on mdc-list-item--with-leading-image ([033ae08](https://github.com/material-components/material-components-web/commit/033ae083aad9ad4376e64aa328df936c7adb5a32)) | ||
* **list:** rolling back update of list styles since this is causing failures. ([eb103d4](https://github.com/material-components/material-components-web/commit/eb103d4b5d33e0d1535ea28ca0089d2c7002fab6)) | ||
@@ -18,0 +23,0 @@ |
@@ -380,6 +380,3 @@ /** | ||
var target = evt.target; | ||
// Toggle the checkbox only if it's not the target of the event, or the | ||
// checkbox will have 2 change events. | ||
var toggleCheckbox = !matches(target, strings.CHECKBOX_RADIO_SELECTOR); | ||
this.foundation.handleClick(index, toggleCheckbox, evt); | ||
this.foundation.handleClick(index, matches(target, strings.CHECKBOX_RADIO_SELECTOR), evt); | ||
}; | ||
@@ -386,0 +383,0 @@ return MDCList; |
@@ -387,3 +387,4 @@ /** | ||
} | ||
else if ((isEnter || isSpace) && eventHasModifiers([])) { | ||
else if ((isEnter || isSpace) && | ||
(eventHasModifiers([]) || eventHasModifiers(['Alt']))) { | ||
if (isRootListItem) { | ||
@@ -390,0 +391,0 @@ // Return early if enter key is pressed on anchor element which triggers |
{ | ||
"name": "@material/list", | ||
"description": "The Material Components for the web list component", | ||
"version": "15.0.0-canary.202823f54.0", | ||
"version": "15.0.0-canary.205b20b36.0", | ||
"license": "MIT", | ||
@@ -20,15 +20,15 @@ "main": "dist/mdc.list.js", | ||
"dependencies": { | ||
"@material/base": "15.0.0-canary.202823f54.0", | ||
"@material/density": "15.0.0-canary.202823f54.0", | ||
"@material/dom": "15.0.0-canary.202823f54.0", | ||
"@material/feature-targeting": "15.0.0-canary.202823f54.0", | ||
"@material/ripple": "15.0.0-canary.202823f54.0", | ||
"@material/rtl": "15.0.0-canary.202823f54.0", | ||
"@material/shape": "15.0.0-canary.202823f54.0", | ||
"@material/theme": "15.0.0-canary.202823f54.0", | ||
"@material/tokens": "15.0.0-canary.202823f54.0", | ||
"@material/typography": "15.0.0-canary.202823f54.0", | ||
"@material/base": "15.0.0-canary.205b20b36.0", | ||
"@material/density": "15.0.0-canary.205b20b36.0", | ||
"@material/dom": "15.0.0-canary.205b20b36.0", | ||
"@material/feature-targeting": "15.0.0-canary.205b20b36.0", | ||
"@material/ripple": "15.0.0-canary.205b20b36.0", | ||
"@material/rtl": "15.0.0-canary.205b20b36.0", | ||
"@material/shape": "15.0.0-canary.205b20b36.0", | ||
"@material/theme": "15.0.0-canary.205b20b36.0", | ||
"@material/tokens": "15.0.0-canary.205b20b36.0", | ||
"@material/typography": "15.0.0-canary.205b20b36.0", | ||
"tslib": "^2.1.0" | ||
}, | ||
"gitHead": "6a4dbcb0b4c7d96a85ebe59a5ff66d2469e177a0" | ||
"gitHead": "00fdcf619c34c502844acb0f2485e99595aa138d" | ||
} |
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
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
Sorry, the diff of this file is not supported yet
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
1738429
12466
+ Added@material/animation@15.0.0-canary.205b20b36.0(transitive)
+ Added@material/base@15.0.0-canary.205b20b36.0(transitive)
+ Added@material/density@15.0.0-canary.205b20b36.0(transitive)
+ Added@material/dom@15.0.0-canary.205b20b36.0(transitive)
+ Added@material/elevation@15.0.0-canary.205b20b36.0(transitive)
+ Added@material/feature-targeting@15.0.0-canary.205b20b36.0(transitive)
+ Added@material/ripple@15.0.0-canary.205b20b36.0(transitive)
+ Added@material/rtl@15.0.0-canary.205b20b36.0(transitive)
+ Added@material/shape@15.0.0-canary.205b20b36.0(transitive)
+ Added@material/theme@15.0.0-canary.205b20b36.0(transitive)
+ Added@material/tokens@15.0.0-canary.205b20b36.0(transitive)
+ Added@material/typography@15.0.0-canary.205b20b36.0(transitive)
- Removed@material/animation@15.0.0-canary.202823f54.0(transitive)
- Removed@material/base@15.0.0-canary.202823f54.0(transitive)
- Removed@material/density@15.0.0-canary.202823f54.0(transitive)
- Removed@material/dom@15.0.0-canary.202823f54.0(transitive)
- Removed@material/elevation@15.0.0-canary.202823f54.0(transitive)
- Removed@material/feature-targeting@15.0.0-canary.202823f54.0(transitive)
- Removed@material/ripple@15.0.0-canary.202823f54.0(transitive)
- Removed@material/rtl@15.0.0-canary.202823f54.0(transitive)
- Removed@material/shape@15.0.0-canary.202823f54.0(transitive)
- Removed@material/theme@15.0.0-canary.202823f54.0(transitive)
- Removed@material/tokens@15.0.0-canary.202823f54.0(transitive)
- Removed@material/typography@15.0.0-canary.202823f54.0(transitive)
Updated@material/feature-targeting@15.0.0-canary.205b20b36.0