Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-vue-notifications

Package Overview
Dependencies
6
Maintainers
3
Versions
93
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 24.2.4 to 25.1.35

8

CHANGELOG.md

@@ -5,10 +5,2 @@ # Changelog

### Toast
#### Bug Fixes
- `F186544` - Resolved issue where the Toast Destroy method was causing an exception.
## 24.1.41 (2023-12-18)
### Message

@@ -15,0 +7,0 @@

2

dist/ej2-vue-notifications.umd.min.js
/*!
* filename: ej2-vue-notifications.umd.min.js
* version : 24.2.4
* version : 25.1.35
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.

@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license.

{
"_from": "@syncfusion/ej2-vue-notifications@*",
"_id": "@syncfusion/ej2-vue-notifications@24.2.3",
"_id": "@syncfusion/ej2-vue-notifications@21.5.2",
"_inBundle": false,
"_integrity": "sha512-wrubv9QdoFFbMfDReZHEoG70q7y6lR9IEyk216sclbCW84lW55mAefIbLWGK78lyrtYWiTSzKHOBjFjvuPrkkg==",
"_integrity": "sha512-YDD9+15BYyYKe8WtBKvf9tRV1q7p34N2D7Hxlcdu1nEATPMdgOwtGWxJaZPd31dUXeAWZFuVREHUWlKXjzrwdA==",
"_location": "/@syncfusion/ej2-vue-notifications",

@@ -22,6 +22,6 @@ "_phantomChildren": {},

],
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-notifications/-/ej2-vue-notifications-24.2.3.tgz",
"_shasum": "ccd59a50eb9baee7bfd0124f5e255d37bf50c2d3",
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-vue-notifications/-/ej2-vue-notifications-21.5.2.tgz",
"_shasum": "523e0dd01ada30eaa393a63d93926544548ce488",
"_spec": "@syncfusion/ej2-vue-notifications@*",
"_where": "/jenkins/workspace/elease-automation_release_24.1.1/packages/included",
"_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
"author": {

@@ -35,5 +35,5 @@ "name": "Syncfusion Inc."

"dependencies": {
"@syncfusion/ej2-base": "~24.2.3",
"@syncfusion/ej2-notifications": "24.2.4",
"@syncfusion/ej2-vue-base": "~24.2.3"
"@syncfusion/ej2-base": "~25.1.35",
"@syncfusion/ej2-notifications": "25.1.35",
"@syncfusion/ej2-vue-base": "~25.1.35"
},

@@ -66,4 +66,4 @@ "deprecated": false,

},
"version": "24.2.4",
"version": "25.1.35",
"sideEffects": false
}

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

import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
import { MessageModel } from '@syncfusion/ej2-notifications';
import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
import { Message, MessageModel } from '@syncfusion/ej2-notifications';
export declare const properties: string[];

@@ -14,3 +14,19 @@ export declare const modelProps: string[];

export declare let MessageComponent: DefineVueComponent<MessageModel>;
export declare type MessageComponent = InstanceType<typeof MessageComponent>;
export declare type MessageComponent = typeof ComponentBase & {
ej2Instances: Message;
isVue3: boolean;
isLazyUpdate: Boolean;
plugins: any[];
propKeys: string[];
models: string[];
hasChildDirective: boolean;
tagMapper: {
[key: string]: Object;
};
tagNameMapper: Object;
setProperties(prop: any, muteOnChange: boolean): void;
trigger(eventName: string, eventProp: {
[key: string]: Object;
}, successHandler?: Function): void;
};
export declare const MessagePlugin: {

@@ -17,0 +33,0 @@ name: string;

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

import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
import { SkeletonModel } from '@syncfusion/ej2-notifications';
import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
import { Skeleton, SkeletonModel } from '@syncfusion/ej2-notifications';
export declare const properties: string[];

@@ -14,3 +14,19 @@ export declare const modelProps: string[];

export declare let SkeletonComponent: DefineVueComponent<SkeletonModel>;
export declare type SkeletonComponent = InstanceType<typeof SkeletonComponent>;
export declare type SkeletonComponent = typeof ComponentBase & {
ej2Instances: Skeleton;
isVue3: boolean;
isLazyUpdate: Boolean;
plugins: any[];
propKeys: string[];
models: string[];
hasChildDirective: boolean;
tagMapper: {
[key: string]: Object;
};
tagNameMapper: Object;
setProperties(prop: any, muteOnChange: boolean): void;
trigger(eventName: string, eventProp: {
[key: string]: Object;
}, successHandler?: Function): void;
};
export declare const SkeletonPlugin: {

@@ -17,0 +33,0 @@ name: string;

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

import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
import { ToastModel } from '@syncfusion/ej2-notifications';
import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
import { Toast, ToastModel } from '@syncfusion/ej2-notifications';
export declare const properties: string[];

@@ -14,3 +14,21 @@ export declare const modelProps: string[];

export declare let ToastComponent: DefineVueComponent<ToastModel>;
export declare type ToastComponent = InstanceType<typeof ToastComponent>;
export declare type ToastComponent = typeof ComponentBase & {
ej2Instances: Toast;
isVue3: boolean;
isLazyUpdate: Boolean;
plugins: any[];
propKeys: string[];
models: string[];
hasChildDirective: boolean;
tagMapper: {
[key: string]: Object;
};
tagNameMapper: Object;
setProperties(prop: any, muteOnChange: boolean): void;
trigger(eventName: string, eventProp: {
[key: string]: Object;
}, successHandler?: Function): void;
hide(element?: Object | Object | string): void;
show(toastObj?: Object): void;
};
export declare const ToastPlugin: {

@@ -17,0 +35,0 @@ name: string;

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc