New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@coders-tm/vue-number-format

Package Overview
Dependencies
Maintainers
1
Versions
115
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@coders-tm/vue-number-format - npm Package Compare versions

Comparing version 3.0.1 to 3.0.2

14

dist/index.cjs.js

@@ -186,2 +186,14 @@ /**

/**
* Creates a CustomEvent('change') with detail = { facade: true }
* used as a way to identify our own change event
*/
function FacadeChangeEvent() {
return new CustomEvent('change', {
bubbles: true,
cancelable: true,
detail: { facade: true }
})
}
/**
* ensure that the element we're attaching to is an input element

@@ -256,3 +268,3 @@ * if not try to find an input element in this elements childrens

// drawback is that we endup with two's input events in firefox
return emit && el.dispatchEvent(FacadeInputEvent())
return emit && el.dispatchEvent(FacadeInputEvent()) && el.dispatchEvent(FacadeChangeEvent())
}

@@ -259,0 +271,0 @@ }

@@ -182,2 +182,14 @@ /**

/**
* Creates a CustomEvent('change') with detail = { facade: true }
* used as a way to identify our own change event
*/
function FacadeChangeEvent() {
return new CustomEvent('change', {
bubbles: true,
cancelable: true,
detail: { facade: true }
})
}
/**
* ensure that the element we're attaching to is an input element

@@ -252,3 +264,3 @@ * if not try to find an input element in this elements childrens

// drawback is that we endup with two's input events in firefox
return emit && el.dispatchEvent(FacadeInputEvent())
return emit && el.dispatchEvent(FacadeInputEvent()) && el.dispatchEvent(FacadeChangeEvent())
}

@@ -255,0 +267,0 @@ }

2

package.json
{
"name": "@coders-tm/vue-number-format",
"version": "3.0.1",
"version": "3.0.2",
"private": false,

@@ -5,0 +5,0 @@ "description": "Easy formatted numbers, currency and percentage with input/directive mask for Vue.js",

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