@material/auto-init
Advanced tools
Comparing version
@@ -6,4 +6,4 @@ # Change Log | ||
# [15.0.0-canary.419b23cc6.0](https://github.com/material-components/material-components-web/compare/v14.0.0...v15.0.0-canary.419b23cc6.0) (2023-03-14) | ||
# [15.0.0-canary.423edc3dc.0](https://github.com/material-components/material-components-web/compare/v14.0.0...v15.0.0-canary.423edc3dc.0) (2024-06-26) | ||
**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 */ |
14
index.js
@@ -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.419b23cc6.0", | ||
"version": "15.0.0-canary.423edc3dc.0", | ||
"main": "dist/mdc.autoInit.js", | ||
@@ -15,6 +15,6 @@ "module": "index.js", | ||
"dependencies": { | ||
"@material/base": "15.0.0-canary.419b23cc6.0", | ||
"@material/base": "15.0.0-canary.423edc3dc.0", | ||
"tslib": "^2.1.0" | ||
}, | ||
"gitHead": "3b1188210d22a02ba5ae948779bf92655e47aac3" | ||
"gitHead": "19b2c5a95782b4928b3aecb29a1075c42aee53e5" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
50059
0.14%+ Added
- Removed