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

@baloise/angular-output-target

Package Overview
Dependencies
Maintainers
3
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@baloise/angular-output-target - npm Package Compare versions

Comparing version 1.2.3 to 1.2.4

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

## [1.2.4](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.2.3...@baloise/angular-output-target@1.2.4) (2022-03-07)
### Bug Fixes
* **angular:** add forward refs ([248fcf7](https://github.com/baloise/stencil-ds-output-targets/commit/248fcf742f5e099b970567be65e4c1373edcf98b))
## [1.2.3](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.2.2...@baloise/angular-output-target@1.2.3) (2022-03-06)

@@ -8,0 +19,0 @@

4

package.json
{
"name": "@baloise/angular-output-target",
"version": "1.2.3",
"version": "1.2.4",
"description": "Angular output target for @stencil/core components.",

@@ -64,3 +64,3 @@ "main": "dist/index.cjs.js",

},
"gitHead": "133356b9f0cfb2c514889357173dd23a03eb8b9e"
"gitHead": "f6ae78217f91317c0580c9e2ad60f8ac76c160b5"
}

@@ -1,2 +0,2 @@

import { Directive, ElementRef } from '@angular/core'
import { Directive, ElementRef, forwardRef } from '@angular/core'
import { NG_VALUE_ACCESSOR } from '@angular/forms'

@@ -15,3 +15,3 @@

provide: NG_VALUE_ACCESSOR,
useExisting: BooleanValueAccessor,
useExisting: forwardRef(() => BooleanValueAccessor),
multi: true,

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

@@ -1,2 +0,2 @@

import { Directive, ElementRef } from '@angular/core'
import { Directive, ElementRef, forwardRef } from '@angular/core'
import { NG_VALUE_ACCESSOR } from '@angular/forms'

@@ -15,3 +15,3 @@

provide: NG_VALUE_ACCESSOR,
useExisting: NumericValueAccessor,
useExisting: forwardRef(() => NumericValueAccessor),
multi: true,

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

@@ -1,2 +0,2 @@

import { Directive, ElementRef } from '@angular/core'
import { Directive, ElementRef, forwardRef } from '@angular/core'
import { NG_VALUE_ACCESSOR } from '@angular/forms'

@@ -15,3 +15,3 @@

provide: NG_VALUE_ACCESSOR,
useExisting: RadioValueAccessor,
useExisting: forwardRef(() => RadioValueAccessor),
multi: true,

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

@@ -1,2 +0,2 @@

import { Directive, ElementRef } from '@angular/core'
import { Directive, ElementRef, forwardRef } from '@angular/core'
import { NG_VALUE_ACCESSOR } from '@angular/forms'

@@ -15,3 +15,3 @@

provide: NG_VALUE_ACCESSOR,
useExisting: SelectValueAccessor,
useExisting: forwardRef(() => SelectValueAccessor),
multi: true,

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

@@ -1,2 +0,2 @@

import { Directive, ElementRef } from '@angular/core'
import { Directive, ElementRef, forwardRef } from '@angular/core'
import { NG_VALUE_ACCESSOR } from '@angular/forms'

@@ -15,3 +15,3 @@

provide: NG_VALUE_ACCESSOR,
useExisting: TextValueAccessor,
useExisting: forwardRef(() => TextValueAccessor),
multi: true,

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

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