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

angular-imask

Package Overview
Dependencies
Maintainers
1
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-imask - npm Package Compare versions

Comparing version 6.2.2 to 6.3.0-alpha.0

esm2020/angular-imask.mjs

2

angular-imask.d.ts
/**
* Generated bundle index. Do not edit.
*/
/// <amd-module name="angular-imask" />
export * from './index';
export { DefaultImaskFactory as ɵa } from './default-imask-factory';
import { IMaskFactory } from "./imask-factory";
import IMask from 'imask';
import * as i0 from "@angular/core";
export declare class DefaultImaskFactory implements IMaskFactory {
create<Opts extends IMask.AnyMaskedOptions>(el: IMask.MaskElement | IMask.HTMLMaskingElement, opts: Opts): IMask.InputMask<Opts>;
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultImaskFactory, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<DefaultImaskFactory>;
}

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

import * as i0 from "@angular/core";
import * as i1 from "./imask.directive";
import * as i2 from "@angular/common";
export declare class IMaskDirectiveModule {
static ɵfac: i0.ɵɵFactoryDeclaration<IMaskDirectiveModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<IMaskDirectiveModule, [typeof i1.IMaskDirective], [typeof i2.CommonModule], [typeof i1.IMaskDirective]>;
static ɵinj: i0.ɵɵInjectorDeclaration<IMaskDirectiveModule>;
}
import IMask from 'imask';
import * as i0 from "@angular/core";
export declare abstract class IMaskFactory {
abstract create<Opts extends IMask.AnyMaskedOptions>(el: IMask.MaskElement | IMask.HTMLMaskingElement, opts: Opts): IMask.InputMask<Opts>;
static ɵfac: i0.ɵɵFactoryDeclaration<IMaskFactory, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<IMaskFactory>;
}

@@ -5,2 +5,3 @@ import { ElementRef, Provider, Renderer2, EventEmitter, OnDestroy, OnChanges, AfterViewInit, SimpleChanges } from '@angular/core';

import IMask from 'imask';
import * as i0 from "@angular/core";
export declare const MASKEDINPUT_VALUE_ACCESSOR: Provider;

@@ -11,2 +12,3 @@ export declare class IMaskDirective<Opts extends IMask.AnyMaskedOptions> implements ControlValueAccessor, AfterViewInit, OnDestroy, OnChanges {

private _factory;
private _platformId;
private _compositionMode;

@@ -25,3 +27,3 @@ maskRef?: IMask.InputMask<Opts>;

complete: EventEmitter<any>;
constructor(_elementRef: ElementRef, _renderer: Renderer2, _factory: IMaskFactory, _compositionMode: boolean);
constructor(_elementRef: ElementRef, _renderer: Renderer2, _factory: IMaskFactory, _platformId: string, _compositionMode: boolean);
get element(): IMask.MaskElement;

@@ -47,2 +49,4 @@ get maskValue(): any;

private _isAndroid;
static ɵfac: i0.ɵɵFactoryDeclaration<IMaskDirective<any>, [null, null, null, null, { optional: true; }]>;
static ɵdir: i0.ɵɵDirectiveDeclaration<IMaskDirective<any>, "[imask]", ["imask"], { "imask": "imask"; "unmask": "unmask"; "imaskElement": "imaskElement"; }, { "accept": "accept"; "complete": "complete"; }, never>;
}

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

import * as i0 from "@angular/core";
import * as i1 from "./imask.pipe";
import * as i2 from "@angular/common";
import * as i3 from "./directive.module";
export declare class IMaskModule {
static ɵfac: i0.ɵɵFactoryDeclaration<IMaskModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<IMaskModule, [typeof i1.IMaskPipe], [typeof i2.CommonModule, typeof i3.IMaskDirectiveModule], [typeof i1.IMaskPipe, typeof i3.IMaskDirectiveModule]>;
static ɵinj: i0.ɵɵInjectorDeclaration<IMaskModule>;
}
import { PipeTransform } from '@angular/core';
import { pipe } from 'imask';
import * as i0 from "@angular/core";
export { PIPE_TYPE, pipe } from 'imask';
export declare class IMaskPipe implements PipeTransform {
transform(...args: Parameters<typeof pipe>): ReturnType<typeof pipe>;
static ɵfac: i0.ɵɵFactoryDeclaration<IMaskPipe, never>;
static ɵpipe: i0.ɵɵPipeDeclaration<IMaskPipe, "imask">;
}

@@ -5,3 +5,3 @@ {

"license": "MIT",
"version": "6.2.2",
"version": "6.3.0-alpha.0",
"description": "Angular IMask Plugin",

@@ -17,4 +17,4 @@ "repository": "https://github.com/uNmAnNeR/imaskjs/tree/master/packages/angular-imask",

"dependencies": {
"imask": "^6.2.2",
"tslib": "^2.0.0"
"imask": "^6.3.0-alpha.0",
"tslib": "^2.3.1"
},

@@ -25,10 +25,22 @@ "publishConfig": {

"gitHead": "228f2a4dce7125d0c7156868fcb5364b4487c8e6",
"main": "bundles/angular-imask.umd.js",
"module": "fesm2015/angular-imask.js",
"es2015": "fesm2015/angular-imask.js",
"esm2015": "esm2015/angular-imask.js",
"fesm2015": "fesm2015/angular-imask.js",
"module": "fesm2015/angular-imask.mjs",
"es2020": "fesm2020/angular-imask.mjs",
"esm2020": "esm2020/angular-imask.mjs",
"fesm2020": "fesm2020/angular-imask.mjs",
"fesm2015": "fesm2015/angular-imask.mjs",
"typings": "angular-imask.d.ts",
"metadata": "angular-imask.metadata.json",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./angular-imask.d.ts",
"esm2020": "./esm2020/angular-imask.mjs",
"es2020": "./fesm2020/angular-imask.mjs",
"es2015": "./fesm2015/angular-imask.mjs",
"node": "./fesm2015/angular-imask.mjs",
"default": "./fesm2020/angular-imask.mjs"
}
},
"sideEffects": false
}
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