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

@material/auto-init

Package Overview
Dependencies
Maintainers
14
Versions
1664
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@material/auto-init - npm Package Compare versions

Comparing version 15.0.0-canary.d0788120f.0 to 15.0.0-canary.d153db62b.0

2

CHANGELOG.md

@@ -6,4 +6,4 @@ # Change Log

# [15.0.0-canary.d0788120f.0](https://github.com/material-components/material-components-web/compare/v14.0.0...v15.0.0-canary.d0788120f.0) (2023-05-09)
# [15.0.0-canary.d153db62b.0](https://github.com/material-components/material-components-web/compare/v14.0.0...v15.0.0-canary.d153db62b.0) (2023-09-19)
**Note:** Version bump only for package @material/auto-init

@@ -202,17 +202,17 @@ /**

var CONSOLE_WARN = console.warn.bind(console);
function emit(evtType, evtData, shouldBubble) {
function emit(eventType, eventData, shouldBubble) {
if (shouldBubble === void 0) {
shouldBubble = false;
}
var evt;
var event;
if (typeof CustomEvent === 'function') {
evt = new CustomEvent(evtType, {
event = new CustomEvent(eventType, {
bubbles: shouldBubble,
detail: evtData
detail: eventData
});
} else {
evt = document.createEvent('CustomEvent');
evt.initCustomEvent(evtType, shouldBubble, false, evtData);
event = document.createEvent('CustomEvent');
event.initCustomEvent(eventType, shouldBubble, false, eventData);
}
document.dispatchEvent(evt);
document.dispatchEvent(event);
}

@@ -219,0 +219,0 @@ /* istanbul ignore next: optional argument is not a branch statement */

@@ -29,16 +29,16 @@ /**

var CONSOLE_WARN = console.warn.bind(console);
function emit(evtType, evtData, shouldBubble) {
function emit(eventType, eventData, shouldBubble) {
if (shouldBubble === void 0) { shouldBubble = false; }
var evt;
var event;
if (typeof CustomEvent === 'function') {
evt = new CustomEvent(evtType, {
event = new CustomEvent(eventType, {
bubbles: shouldBubble,
detail: evtData,
detail: eventData,
});
}
else {
evt = document.createEvent('CustomEvent');
evt.initCustomEvent(evtType, shouldBubble, false, evtData);
event = document.createEvent('CustomEvent');
event.initCustomEvent(eventType, shouldBubble, false, eventData);
}
document.dispatchEvent(evt);
document.dispatchEvent(event);
}

@@ -45,0 +45,0 @@ /* istanbul ignore next: optional argument is not a branch statement */

{
"name": "@material/auto-init",
"description": "Declarative, easy-to-use auto-initialization for Material Components for the web",
"version": "15.0.0-canary.d0788120f.0",
"version": "15.0.0-canary.d153db62b.0",
"main": "dist/mdc.autoInit.js",

@@ -15,6 +15,6 @@ "module": "index.js",

"dependencies": {
"@material/base": "15.0.0-canary.d0788120f.0",
"@material/base": "15.0.0-canary.d153db62b.0",
"tslib": "^2.1.0"
},
"gitHead": "7eccbee262206623b89c40dadb4e11abe30d5e45"
"gitHead": "4ca05c144c691cd06cd5926fe0bc54818e462202"
}

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