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

ag-utilities

Package Overview
Dependencies
Maintainers
1
Versions
232
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ag-utilities - npm Package Compare versions

Comparing version 1.1.207 to 1.1.208

4

AgVueWrap.d.ts

@@ -68,3 +68,2 @@ import { Delta } from './AgDiff';

data: TI;
onShow: (input: TI) => void;
exposed: {

@@ -75,2 +74,5 @@ show(input: InitValue<TI>): Promise<TO>;

reject(err: any): void;
onShow: (input: TI) => void;
onReject: (err: any) => void;
onResolve: (output: TO) => void;
};

@@ -216,2 +216,4 @@ "use strict";

var onshow;
var onreject;
var onresolve;
return {

@@ -230,5 +232,2 @@ get visible() {

},
set onShow(fn) {
onshow = fn;
},
exposed: {

@@ -252,2 +251,3 @@ show: function (input) {

resolve: function (output) {
onresolve === null || onresolve === void 0 ? void 0 : onresolve(output);
visible.value = false;

@@ -257,4 +257,14 @@ promise.resolve(output);

reject: function (err) {
onreject === null || onreject === void 0 ? void 0 : onreject(err);
visible.value = false;
promise.reject(err);
},
set onShow(fn) {
onshow = fn;
},
set onReject(fn) {
onreject = fn;
},
set onResolve(fn) {
onresolve = fn;
}

@@ -261,0 +271,0 @@ };

{
"name": "ag-utilities",
"version": "1.1.207",
"version": "1.1.208",
"author": "fangxq",

@@ -5,0 +5,0 @@ "license": "MIT",

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