Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
  • Loading branch information
msafi committed Oct 11, 2016
1 parent 2b7b8ce commit 467a39c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
5 changes: 3 additions & 2 deletions angular2/dist/angular2TextMask.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ElementRef, OnInit, Renderer } from '@angular/core';
import { ControlValueAccessor } from '@angular/forms';
export default class MaskedInputDirective implements OnInit, ControlValueAccessor {
export declare class MaskedInputDirective implements OnInit, ControlValueAccessor {
private renderer;
private element;
private textMaskInputElement;
Expand All @@ -24,4 +24,5 @@ export default class MaskedInputDirective implements OnInit, ControlValueAccesso
onInput($event: any): void;
setDisabledState(isDisabled: boolean): void;
}
export { MaskedInputDirective as Directive };
export declare class TextMaskModule {
}
2 changes: 1 addition & 1 deletion angular2/dist/angular2TextMask.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion angular2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular2-text-mask",
"version": "0.22.0",
"version": "1.0.1",
"description": "Angular 2 directive for input text masking",
"main": "dist/angular2TextMask.js",
"typings": "./dist/angular2TextMask.d.ts",
Expand Down
7 changes: 7 additions & 0 deletions angular2/webpack.buildAngular2Integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,13 @@ module.exports = {
commonjs: '@angular/forms',
commonjs2: '@angular/forms',
amd: '@angular/forms'
},

'@angular/common': {
root: ['ng', 'common'],
commonjs: '@angular/common',
commonjs2: '@angular/common',
amd: '@angular/common'
}
}
]
Expand Down

0 comments on commit 467a39c

Please sign in to comment.