Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@smui/menu

Package Overview
Dependencies
Maintainers
1
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@smui/menu - npm Package Compare versions

Comparing version 2.0.0-beta.1 to 3.0.0-beta.0

2

bare.js

@@ -8,2 +8,2 @@ import Menu from './Menu.svelte';

export {SelectionGroup, SelectionGroupIcon};
export { SelectionGroup, SelectionGroupIcon };

@@ -6,2 +6,34 @@ # Change Log

# [3.0.0-beta.0](https://github.com/hperrin/svelte-material-ui/compare/v2.0.0-beta.1...v3.0.0-beta.0) (2021-04-11)
### Bug Fixes
* button styling, menu events ([53d0282](https://github.com/hperrin/svelte-material-ui/commit/53d02828f9704b50e3dff9213a55815840d11098))
* fix some demo bugs ([f551776](https://github.com/hperrin/svelte-material-ui/commit/f551776e6121f2feb241ca20dcec691b6582eae4))
* fixed event bubbling ([8b40fa0](https://github.com/hperrin/svelte-material-ui/commit/8b40fa04b463ee40819eda96785efb69b01e3e3a))
* list item ripples and menus ([4010556](https://github.com/hperrin/svelte-material-ui/commit/4010556b84b634177c706f0e6cec20b0c8500743))
* more components fixes ([fbdf204](https://github.com/hperrin/svelte-material-ui/commit/fbdf204a320fa0ed9ee5ec593e6bcbf3678fae79))
* update all the sass imports ([172a557](https://github.com/hperrin/svelte-material-ui/commit/172a55777a506ac26bbe524ca8cab79904512f24))
### Features
* add getElement method to all components ([f293cf3](https://github.com/hperrin/svelte-material-ui/commit/f293cf365e30fa8d291b1428f5db683625572402))
* updated IconButton for MDC v10 ([1a6fc5a](https://github.com/hperrin/svelte-material-ui/commit/1a6fc5a019167ff7d4d1f1c35f843e7686069e3a))
* updated Menu for MDC v10 ([ddd6262](https://github.com/hperrin/svelte-material-ui/commit/ddd6262faa7b833472c6bf8ccca6017e6e06ebbe))
* updated Select Menus for MDC v10 ([f066d20](https://github.com/hperrin/svelte-material-ui/commit/f066d20024b4b7385bb87cfb3b7231087c16ac31))
* updated site for SMUI 3 components ([f24c25f](https://github.com/hperrin/svelte-material-ui/commit/f24c25f7cb0b66fbec1417fd8aa7ff8c51c90fde))
* updated TopAppBar for MDC v10 ([6cf291d](https://github.com/hperrin/svelte-material-ui/commit/6cf291df3c5833b4938b95ff26138643d3511bcb))
* upgrade upstream MDC components to v10 ([d47c59a](https://github.com/hperrin/svelte-material-ui/commit/d47c59af50bbec2b7de810261b3cb7a2ffe59180))
### BREAKING CHANGES
* Upgrading to v10 of upstream components. Their APIs will change. View the component READMEs.
# [2.0.0-beta.1](https://github.com/hperrin/svelte-material-ui/compare/v2.0.0-beta.0...v2.0.0-beta.1) (2021-03-27)

@@ -8,0 +40,0 @@

import './_index.scss';
export * from './bare.js';
export {default} from './bare.js';
export { default } from './bare.js';
{
"name": "@smui/menu",
"version": "2.0.0-beta.1",
"version": "3.0.0-beta.0",
"description": "Svelte Material UI - Menu",

@@ -15,3 +15,3 @@ "keywords": [

"scripts": {
"prepare": "echo \"$(npx glob '**/*' | sed 's/^/-I /' | paste -s -d ' ' -) --no-source-map _style.scss bare.css\" | xargs sass",
"prepare": "sass --no-source-map -I node_modules _style.scss bare.css",
"test": "echo \"Error: no test specified\" && exit 1"

@@ -32,12 +32,12 @@ },

"dependencies": {
"@material/menu": "^4.0.0",
"@smui/common": "^2.0.0-beta.1",
"@smui/list": "^2.0.0-beta.1",
"@smui/menu-surface": "^2.0.0-beta.1"
"@material/dom": "^10.0.0",
"@material/menu": "^10.0.0",
"@smui/common": "^3.0.0-beta.0",
"@smui/list": "^3.0.0-beta.0",
"@smui/menu-surface": "^3.0.0-beta.0"
},
"devDependencies": {
"glob-cmd": "0.0.7",
"sass": "^1.30.0"
"sass": "^1.32.8"
},
"gitHead": "5e48c98403f409cad9f6b9c96f2a320fe7b3b5c6"
"gitHead": "df924bdae36977405f6184097c456f2a8d4d3db6"
}

@@ -5,6 +5,2 @@ # Svelte Material UI - Menu

See [MDC Menu](https://material.io/develop/web/components/menus/) for more information on API and Sass mixins.
See [the Sass variable file](https://github.com/material-components/material-components-web/blob/v3.1.1/packages/mdc-menu/_variables.scss) for styling variables.
# Installation

@@ -22,8 +18,14 @@

*in action:* https://sveltematerialui.com/demo/menu
_in action:_ https://sveltematerialui.com/demo/menu
*demo code:* https://github.com/hperrin/svelte-material-ui/blob/master/site/src/routes/demo/menu.svelte
_demo code:_ https://github.com/hperrin/svelte-material-ui/blob/master/site/src/routes/demo/menu.svelte
# Exports
todo...
todo...
# More Information
See [Menus](https://material.io/components/menus) in the Material design spec.
See [Menu](https://github.com/material-components/material-components-web/tree/v10.0.0/packages/mdc-menu) in MDC-Web for information about the upstream library's architecture.

@@ -1,3 +0,3 @@

import {classAdderBuilder} from '@smui/common/classAdderBuilder.js';
import Graphic from '@smui/list/Graphic.js';
import { classAdderBuilder } from '@smui/common/internal.js';
import Graphic from '@smui/list/Graphic.svelte';

@@ -7,3 +7,2 @@ export default classAdderBuilder({

component: Graphic,
contexts: {}
});
});

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

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