Socket
Socket
Sign inDemoInstall

@material/menu

Package Overview
Dependencies
Maintainers
14
Versions
1689
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@material/menu - npm Package Compare versions

Comparing version 15.0.0-canary.202823f54.0 to 15.0.0-canary.205b20b36.0

_menu.scss

10

CHANGELOG.md

@@ -6,9 +6,17 @@ # 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)
### Bug Fixes
* **menu:** Account for empty map being passed to theme mixin ([0c52ade](https://github.com/material-components/material-components-web/commit/0c52adeab4a46fb942e7ac64a950d094b54716f8))
* **menu:** do not require all for theme-styles ([1fb4b1a](https://github.com/material-components/material-components-web/commit/1fb4b1a063ecaec1ad0d508b3f5ae5aca3e96652))
* **menu:** make require-all a theme-styles param. ([c64a277](https://github.com/material-components/material-components-web/commit/c64a2776efe4f0aaaee5c32f5fb9ef3570483213))
### Features
* **menu:** Add `static-styles` mixin ([a274583](https://github.com/material-components/material-components-web/commit/a274583b97fd1fe27eaaca9cba5f890173bebb2e))
* add elevation theming to menu ([86bde5c](https://github.com/material-components/material-components-web/commit/86bde5c063e806f975d836d6a875f2fdaa7cdc67))
* add icon support to menu theming ([40b18d0](https://github.com/material-components/material-components-web/commit/40b18d04314549060c2b4a28ed425cba9976687b))
* **menu:** working on theming API ([f1e0371](https://github.com/material-components/material-components-web/commit/f1e0371502ee9bfe48f3501a63f70a42bfd79cb8))

1

foundation.d.ts

@@ -44,3 +44,2 @@ /**

};
private closeAnimationEndTimerId;
private defaultFocusState;

@@ -47,0 +46,0 @@ private selectedIndex;

@@ -26,3 +26,2 @@ /**

import { cssClasses as listCssClasses } from '@material/list/constants';
import { MDCMenuSurfaceFoundation } from '@material/menu-surface/foundation';
import { cssClasses, DefaultFocusState, numbers, strings } from './constants';

@@ -34,3 +33,2 @@ /** MDC Menu Foundation */

var _this = _super.call(this, __assign(__assign({}, MDCMenuFoundation.defaultAdapter), adapter)) || this;
_this.closeAnimationEndTimerId = 0;
_this.defaultFocusState = DefaultFocusState.LIST_ROOT;

@@ -89,5 +87,2 @@ _this.selectedIndex = -1;

MDCMenuFoundation.prototype.destroy = function () {
if (this.closeAnimationEndTimerId) {
clearTimeout(this.closeAnimationEndTimerId);
}
this.adapter.closeSurface();

@@ -103,3 +98,2 @@ };

MDCMenuFoundation.prototype.handleItemAction = function (listItem) {
var _this = this;
var index = this.adapter.getElementIndex(listItem);

@@ -112,12 +106,5 @@ if (index < 0) {

this.adapter.closeSurface(skipRestoreFocus);
// Wait for the menu to close before adding/removing classes that affect
// styles.
this.closeAnimationEndTimerId = setTimeout(function () {
// Recompute the index in case the menu contents have changed.
var recomputedIndex = _this.adapter.getElementIndex(listItem);
if (recomputedIndex >= 0 &&
_this.adapter.isSelectableItemAtIndex(recomputedIndex)) {
_this.setSelectedIndex(recomputedIndex);
}
}, MDCMenuSurfaceFoundation.numbers.TRANSITION_CLOSE_DURATION);
if (this.adapter.isSelectableItemAtIndex(index)) {
this.setSelectedIndex(index);
}
};

@@ -124,0 +111,0 @@ MDCMenuFoundation.prototype.handleMenuSurfaceOpened = function () {

{
"name": "@material/menu",
"version": "15.0.0-canary.202823f54.0",
"version": "15.0.0-canary.205b20b36.0",
"description": "The Material Components for the web menu component",

@@ -20,16 +20,16 @@ "license": "MIT",

"dependencies": {
"@material/base": "15.0.0-canary.202823f54.0",
"@material/dom": "15.0.0-canary.202823f54.0",
"@material/elevation": "15.0.0-canary.202823f54.0",
"@material/feature-targeting": "15.0.0-canary.202823f54.0",
"@material/list": "15.0.0-canary.202823f54.0",
"@material/menu-surface": "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/base": "15.0.0-canary.205b20b36.0",
"@material/dom": "15.0.0-canary.205b20b36.0",
"@material/elevation": "15.0.0-canary.205b20b36.0",
"@material/feature-targeting": "15.0.0-canary.205b20b36.0",
"@material/list": "15.0.0-canary.205b20b36.0",
"@material/menu-surface": "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",
"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 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

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc