ngx-dsxlibrary 1.0.78 → 1.0.80
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.
- package/fesm2022/ngx-dsxlibrary-src-lib-components.mjs +7 -7
- package/fesm2022/ngx-dsxlibrary-src-lib-components.mjs.map +1 -1
- package/fesm2022/ngx-dsxlibrary-src-lib-pipe.mjs +6 -6
- package/fesm2022/ngx-dsxlibrary-src-lib-pipe.mjs.map +1 -1
- package/fesm2022/ngx-dsxlibrary.mjs +92 -68
- package/fesm2022/ngx-dsxlibrary.mjs.map +1 -1
- package/index.d.ts +14 -2
- package/ngx-dsxlibrary-1.0.80.tgz +0 -0
- package/package.json +5 -5
- package/ngx-dsxlibrary-1.0.78.tgz +0 -0
package/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import * as i3 from '@angular/forms';
|
|
|
2
2
|
import { AbstractControl, FormGroup, FormBuilder, ValidatorFn, ValidationErrors } from '@angular/forms';
|
|
3
3
|
import * as i0 from '@angular/core';
|
|
4
4
|
import { OnInit, ElementRef, InjectionToken, PipeTransform, Provider } from '@angular/core';
|
|
5
|
+
import { AnimationOptions } from 'ngx-lottie';
|
|
5
6
|
import { HttpInterceptorFn } from '@angular/common/http';
|
|
6
7
|
import * as i2 from '@angular/common';
|
|
7
8
|
import * as i1 from 'primeng/accordion';
|
|
@@ -80,10 +81,21 @@ declare class SpinnerLoadingService {
|
|
|
80
81
|
static ɵprov: i0.ɵɵInjectableDeclaration<SpinnerLoadingService>;
|
|
81
82
|
}
|
|
82
83
|
|
|
83
|
-
declare class
|
|
84
|
+
declare class LoadingLottieComponent {
|
|
85
|
+
_spinnerService: SpinnerLoadingService;
|
|
84
86
|
currentYear: number;
|
|
87
|
+
jsonUrl: i0.InputSignal<string>;
|
|
88
|
+
size: i0.InputSignal<string>;
|
|
89
|
+
options: AnimationOptions;
|
|
85
90
|
constructor();
|
|
91
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingLottieComponent, never>;
|
|
92
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoadingLottieComponent, "app-loading-lottie", never, { "jsonUrl": { "alias": "jsonUrl"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
declare class LoadingComponent {
|
|
86
96
|
_spinnerService: SpinnerLoadingService;
|
|
97
|
+
currentYear: number;
|
|
98
|
+
constructor();
|
|
87
99
|
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingComponent, never>;
|
|
88
100
|
static ɵcmp: i0.ɵɵComponentDeclaration<LoadingComponent, "app-loading", never, {}, {}, never, never, true, never>;
|
|
89
101
|
}
|
|
@@ -1012,5 +1024,5 @@ declare function nitValidator(control: AbstractControl): ValidationErrors | null
|
|
|
1012
1024
|
*/
|
|
1013
1025
|
declare function cuiValidator(control: AbstractControl): ValidationErrors | null;
|
|
1014
1026
|
|
|
1015
|
-
export { AlertaService, AppMessageErrorComponent, AuthorizeService, CACHE_KEYS, CacheService, DsxAddToolsModule, ENVIRONMENT, EndpointService, INITIAL_PARAMETERS, JsonHighlightPipe, JsonValuesDebujComponent, KpicardComponent, LoadingComponent, NavbarDsxComponent, OnlyRangoPatternDirective, ParameterValuesService, PrimeNgModule, SecurityService, SelectAllOnFocusDirective, TruncatePipe, UtilityAddService, atLeastOneFieldRequiredValidator, createInitialCache, createTypedCacheProvider, cuiValidator, dateMinMaxValidator, dateRangeValidator, httpAuthorizeInterceptor, nitValidator };
|
|
1027
|
+
export { AlertaService, AppMessageErrorComponent, AuthorizeService, CACHE_KEYS, CacheService, DsxAddToolsModule, ENVIRONMENT, EndpointService, INITIAL_PARAMETERS, JsonHighlightPipe, JsonValuesDebujComponent, KpicardComponent, LoadingComponent, LoadingLottieComponent, NavbarDsxComponent, OnlyRangoPatternDirective, ParameterValuesService, PrimeNgModule, SecurityService, SelectAllOnFocusDirective, TruncatePipe, UtilityAddService, atLeastOneFieldRequiredValidator, createInitialCache, createTypedCacheProvider, cuiValidator, dateMinMaxValidator, dateRangeValidator, httpAuthorizeInterceptor, nitValidator };
|
|
1016
1028
|
export type { Certificacion, Column, Complemento, Complementos, DatosEmision, DatosGenerales, Direccion, DocumentoFelResponse, Dte, Emisor, EnvironmentConfig, ExportColumn, FechasConversion, FieldConfig, FilterOption, Frase, Frases, Impuesto, Impuestos, InferCacheKeyType, InferCacheOptions, Item, Items, MyParameterValues, NITResponse, NumeroAutorizacion, ParameterSecurity, ParameterValue, Receptor, ResponseHttpModel, Sat, SeguridadITParameter, T, TipoFechaConversion, TotalImpuesto, Totales, typeModel };
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-dsxlibrary",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.80",
|
|
4
4
|
"description": "Libreria para control de código automatizado.",
|
|
5
5
|
"author": "DevSoftXela",
|
|
6
6
|
"dependencies": {
|
|
@@ -21,6 +21,10 @@
|
|
|
21
21
|
"types": "./src/lib/components/index.d.ts",
|
|
22
22
|
"default": "./fesm2022/ngx-dsxlibrary-src-lib-components.mjs"
|
|
23
23
|
},
|
|
24
|
+
"./src/lib/injections": {
|
|
25
|
+
"types": "./src/lib/injections/index.d.ts",
|
|
26
|
+
"default": "./fesm2022/ngx-dsxlibrary-src-lib-injections.mjs"
|
|
27
|
+
},
|
|
24
28
|
"./src/lib/directives": {
|
|
25
29
|
"types": "./src/lib/directives/index.d.ts",
|
|
26
30
|
"default": "./fesm2022/ngx-dsxlibrary-src-lib-directives.mjs"
|
|
@@ -29,10 +33,6 @@
|
|
|
29
33
|
"types": "./src/lib/interceptors/index.d.ts",
|
|
30
34
|
"default": "./fesm2022/ngx-dsxlibrary-src-lib-interceptors.mjs"
|
|
31
35
|
},
|
|
32
|
-
"./src/lib/injections": {
|
|
33
|
-
"types": "./src/lib/injections/index.d.ts",
|
|
34
|
-
"default": "./fesm2022/ngx-dsxlibrary-src-lib-injections.mjs"
|
|
35
|
-
},
|
|
36
36
|
"./src/lib/models": {
|
|
37
37
|
"types": "./src/lib/models/index.d.ts",
|
|
38
38
|
"default": "./fesm2022/ngx-dsxlibrary-src-lib-models.mjs"
|
|
Binary file
|