@jvsoft/utils 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,9 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { AbstractControl } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FormControlIsRequiredPipe implements PipeTransform {
5
+ transform(formControl: AbstractControl, ...args: unknown[]): any;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormControlIsRequiredPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<FormControlIsRequiredPipe, "formControlIsRequired", true>;
8
+ }
9
+ export declare function formControlIsRequired(formControl: AbstractControl): any;
@@ -0,0 +1,7 @@
1
+ export * from './data-en-lista.pipe';
2
+ export * from './date-diff-string.pipe';
3
+ export * from './filtro.pipe';
4
+ export * from './form-control-is-required.pipe';
5
+ export * from './json-parse.pipe';
6
+ export * from './no-sanitize.pipe';
7
+ export * from './zero-fill.pipe';
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class JsonParsePipe implements PipeTransform {
4
+ transform(value: string, ...args: unknown[]): any;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<JsonParsePipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<JsonParsePipe, "jsonParse", true>;
7
+ }
@@ -0,0 +1,10 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
3
+ import * as i0 from "@angular/core";
4
+ export declare class NoSanitizePipe implements PipeTransform {
5
+ private domSanitizer;
6
+ constructor(domSanitizer: DomSanitizer);
7
+ transform(html: string): SafeHtml;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<NoSanitizePipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<NoSanitizePipe, "noSanitize", true>;
10
+ }
@@ -0,0 +1,8 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ZeroFillPipe implements PipeTransform {
4
+ transform(value: unknown, digitos: number, ...args: unknown[]): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ZeroFillPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<ZeroFillPipe, "zeroFill", true>;
7
+ }
8
+ export declare function zeroFill(value: unknown, digitos: number, ...args: unknown[]): string;
@@ -0,0 +1,4 @@
1
+ export * from './classes/data-model';
2
+ export * from './functions';
3
+ export * from './pipes';
4
+ export * from './interfaces';