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

ng-jhipster

Package Overview
Dependencies
Maintainers
1
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ng-jhipster - npm Package Compare versions

Comparing version 0.0.14 to 0.0.15

2

package.json

@@ -78,3 +78,3 @@ {

},
"version": "0.0.14"
"version": "0.0.15"
}

@@ -9,7 +9,9 @@ import { Directive, ElementRef } from '@angular/core';

formElements.forEach(function (formGroup) {
var inputs = formGroup.querySelectorAll('input[(ngModel)],textarea[(ngModel)],select[(ngModel)]');
var inputs = formGroup.querySelectorAll('input,textarea,select');
if (inputs) {
inputs.forEach(function (input) {
var isInvalid = input.classList.contains('ng-invalid') && input.classList.contains('ng-dirty');
formGroup.classList.toggle('has-error', isInvalid);
if (input.hasAttribute('[(ngModel)]')) {
var isInvalid = input.classList.contains('ng-invalid') && input.classList.contains('ng-dirty');
formGroup.classList.toggle('has-error', isInvalid);
}
});

@@ -16,0 +18,0 @@ }

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

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

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