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

@vaadin/vaadin-notification

Package Overview
Dependencies
Maintainers
14
Versions
252
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/vaadin-notification - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

2

package.json

@@ -13,3 +13,3 @@ {

"name": "@vaadin/vaadin-notification",
"version": "1.2.0",
"version": "1.2.1",
"main": "vaadin-notification.js",

@@ -16,0 +16,0 @@ "author": "Vaadin Ltd",

@@ -266,3 +266,3 @@ /**

static get version() {
return '1.2.0';
return '1.2.1';
}

@@ -362,2 +362,4 @@

this._oldTemplate = template;
const rendererChanged = this._oldRenderer !== renderer;
this._oldRenderer = renderer;

@@ -368,7 +370,12 @@

while (this._card.firstChild) {
this._card.removeChild(this._card.firstChild);
if (rendererChanged) {
while (this._card.firstChild) {
this._card.removeChild(this._card.firstChild);
}
}
if (opened) {
if (!this._didAnimateNotificationAppend) {
this._animatedAppendNotificationCard();
}
this.render();

@@ -474,9 +481,14 @@ }

_animatedAppendNotificationCard() {
this._card.setAttribute('opening', '');
this._appendNotificationCard();
const listener = () => {
this._card.removeEventListener('animationend', listener);
this._card.removeAttribute('opening');
};
this._card.addEventListener('animationend', listener);
if (this._card) {
this._card.setAttribute('opening', '');
this._appendNotificationCard();
const listener = () => {
this._card.removeEventListener('animationend', listener);
this._card.removeAttribute('opening');
};
this._card.addEventListener('animationend', listener);
this._didAnimateNotificationAppend = true;
} else {
this._didAnimateNotificationAppend = false;
}
}

@@ -483,0 +495,0 @@

@@ -5,5 +5,5 @@ import '@vaadin/vaadin-lumo-styles/color.js';

import '@vaadin/vaadin-lumo-styles/typography.js';
const $_documentContainer = document.createElement('template');
import { html } from '@polymer/polymer/lib/utils/html-tag.js';
$_documentContainer.innerHTML = `<dom-module id="lumo-notification-card" theme-for="vaadin-notification-card">
const $_documentContainer = html`<dom-module id="lumo-notification-card" theme-for="vaadin-notification-card">
<template>

@@ -10,0 +10,0 @@ <style>

import '@vaadin/vaadin-material-styles/color.js';
import '@vaadin/vaadin-material-styles/typography.js';
import '@vaadin/vaadin-material-styles/shadow.js';
const $_documentContainer = document.createElement('template');
import { html } from '@polymer/polymer/lib/utils/html-tag.js';
$_documentContainer.innerHTML = `<dom-module id="material-notification-container" theme-for="vaadin-notification-container">
const $_documentContainer = html`<dom-module id="material-notification-container" theme-for="vaadin-notification-container">
<template>

@@ -8,0 +8,0 @@ <style>

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