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

angular2-select

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular2-select - npm Package Compare versions

Comparing version 1.0.0-alpha.8 to 1.0.0-alpha.9

10

CHANGELOG.md
# Changelog
<a name="1.0.0-alpha.9"></a>
## [1.0.0-alpha.9](https://github.com/basvandenberg/angular2-select/compare/1.0.0-alpha.8...1.0.0-alpha.9) (2016-10-05)
### Bug fixes
- Fix gulp watch task.
- Fix gulp build taks.
- Fix tsconfig, and added types to compilerOptions.
- Fix AoT build, made some variables public.
<a name="1.0.0-alpha.8"></a>

@@ -4,0 +14,0 @@ ## [1.0.0-alpha.8](https://github.com/basvandenberg/angular2-select/compare/1.0.0-alpha.7...1.0.0-alpha.8) (2016-10-01)

6

package.json
{
"name": "angular2-select",
"version": "1.0.0-alpha.8",
"version": "1.0.0-alpha.9",
"description": "Select component for Angular 2 (based on select2 JQuery plugin).",

@@ -52,3 +52,5 @@ "main": "./index.js",

},
"dependencies": {},
"dependencies": {
"@types/node": "~6.0.42"
},
"peerDependencies": {

@@ -55,0 +57,0 @@ "@angular/core": "~2.0.0",

@@ -122,3 +122,3 @@ # Angular 2 select component

placeholder="Select an option"
allowClear="true"
[allowClear]="true"
theme="default">

@@ -252,3 +252,3 @@ </ng-select>

multiple="false"
allowClear="true"
[allowClear]="true"
formControlName="select">

@@ -255,0 +255,0 @@ </ng-select>

@@ -25,4 +25,4 @@ /// <reference types="core-js" />

optionsList: any;
private optionValuesFiltered;
private _highlighted;
optionValuesFiltered: Array<string>;
_highlighted: any;
constructor(diacriticsService: DiacriticsService);

@@ -29,0 +29,0 @@ /***************************************************************************

@@ -265,3 +265,3 @@ /**

export function viewFactory_SelectDropdownComponent0(viewUtils:import4.ViewUtils,parentInjector:import5.Injector,declarationEl:import2.AppElement):import1.AppView<import3.SelectDropdownComponent> {
if ((renderType_SelectDropdownComponent === (null as any))) { (renderType_SelectDropdownComponent = viewUtils.createRenderComponentType('/home/bastiaan/Develop/bd-angular/angular2-select/src/select-dropdown.component.ts class SelectDropdownComponent - inline template',0,import9.ViewEncapsulation.Emulated,styles_SelectDropdownComponent,{})); }
if ((renderType_SelectDropdownComponent === (null as any))) { (renderType_SelectDropdownComponent = viewUtils.createRenderComponentType('/home/bastiaan/Develop/angular2-select/src/select-dropdown.component.ts class SelectDropdownComponent - inline template',0,import9.ViewEncapsulation.Emulated,styles_SelectDropdownComponent,{})); }
return new _View_SelectDropdownComponent0(viewUtils,parentInjector,declarationEl);

@@ -268,0 +268,0 @@ }

@@ -23,12 +23,12 @@ /// <reference types="core-js" />

searchInput: any;
private isDisabled;
private isBelow;
private isOpen;
private hasFocus;
private width;
private top;
private left;
private optionValues;
private optionsDict;
private selection;
isDisabled: boolean;
isBelow: boolean;
isOpen: boolean;
hasFocus: boolean;
width: number;
top: number;
left: number;
optionValues: Array<string>;
optionsDict: any;
selection: Array<any>;
value: Array<string>;

@@ -35,0 +35,0 @@ onChange: (_: any) => void;

@@ -312,3 +312,3 @@ /**

export function viewFactory_SelectComponent0(viewUtils:import4.ViewUtils,parentInjector:import5.Injector,declarationEl:import2.AppElement):import1.AppView<import3.SelectComponent> {
if ((renderType_SelectComponent === (null as any))) { (renderType_SelectComponent = viewUtils.createRenderComponentType('/home/bastiaan/Develop/bd-angular/angular2-select/src/select.component.ts class SelectComponent - inline template',0,import9.ViewEncapsulation.Emulated,styles_SelectComponent,{})); }
if ((renderType_SelectComponent === (null as any))) { (renderType_SelectComponent = viewUtils.createRenderComponentType('/home/bastiaan/Develop/angular2-select/src/select.component.ts class SelectComponent - inline template',0,import9.ViewEncapsulation.Emulated,styles_SelectComponent,{})); }
return new _View_SelectComponent0(viewUtils,parentInjector,declarationEl);

@@ -315,0 +315,0 @@ }

@@ -11,13 +11,19 @@ {

"sourceMap": false,
"target": "es5"
"target": "es5",
"typeRoots": [
"./node_modules/@types"
],
"types": [
"core-js",
"jasmine",
"node"
]
},
"include": [
"index.ts",
"src/*.ts",
"node_modules/@types/**/*.d.ts"
"src/*.ts"
],
"exclude": [
"typings/browser",
"typings/browser.d.ts",
"**/*.ngfactory.ts"
"./**/*.ngfactory.ts",
"./**/*.d.ts"
],

@@ -24,0 +30,0 @@ "compileOnSave": true,

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