ngx-dsxlibrary 1.0.77 → 1.0.79
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 +101 -77
- package/fesm2022/ngx-dsxlibrary.mjs.map +1 -1
- package/index.d.ts +15 -2
- package/ngx-dsxlibrary-1.0.79.tgz +0 -0
- package/package.json +9 -9
- package/ngx-dsxlibrary-1.0.77.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
|
}
|
|
@@ -621,6 +633,7 @@ declare class ParameterValuesService<T extends string = string> {
|
|
|
621
633
|
* Flag que indica si ya se cargaron los parámetros desde la API.
|
|
622
634
|
*/
|
|
623
635
|
private _loaded;
|
|
636
|
+
get loaded(): boolean;
|
|
624
637
|
/**
|
|
625
638
|
* Inicializa los datos de parámetros usando los valores inyectados.
|
|
626
639
|
* @returns Array de parámetros iniciales tipados
|
|
@@ -1011,5 +1024,5 @@ declare function nitValidator(control: AbstractControl): ValidationErrors | null
|
|
|
1011
1024
|
*/
|
|
1012
1025
|
declare function cuiValidator(control: AbstractControl): ValidationErrors | null;
|
|
1013
1026
|
|
|
1014
|
-
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 };
|
|
1015
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.79",
|
|
4
4
|
"description": "Libreria para control de código automatizado.",
|
|
5
5
|
"author": "DevSoftXela",
|
|
6
6
|
"dependencies": {
|
|
@@ -17,10 +17,6 @@
|
|
|
17
17
|
"types": "./index.d.ts",
|
|
18
18
|
"default": "./fesm2022/ngx-dsxlibrary.mjs"
|
|
19
19
|
},
|
|
20
|
-
"./src/lib/directives": {
|
|
21
|
-
"types": "./src/lib/directives/index.d.ts",
|
|
22
|
-
"default": "./fesm2022/ngx-dsxlibrary-src-lib-directives.mjs"
|
|
23
|
-
},
|
|
24
20
|
"./src/lib/components": {
|
|
25
21
|
"types": "./src/lib/components/index.d.ts",
|
|
26
22
|
"default": "./fesm2022/ngx-dsxlibrary-src-lib-components.mjs"
|
|
@@ -29,18 +25,22 @@
|
|
|
29
25
|
"types": "./src/lib/injections/index.d.ts",
|
|
30
26
|
"default": "./fesm2022/ngx-dsxlibrary-src-lib-injections.mjs"
|
|
31
27
|
},
|
|
28
|
+
"./src/lib/directives": {
|
|
29
|
+
"types": "./src/lib/directives/index.d.ts",
|
|
30
|
+
"default": "./fesm2022/ngx-dsxlibrary-src-lib-directives.mjs"
|
|
31
|
+
},
|
|
32
32
|
"./src/lib/interceptors": {
|
|
33
33
|
"types": "./src/lib/interceptors/index.d.ts",
|
|
34
34
|
"default": "./fesm2022/ngx-dsxlibrary-src-lib-interceptors.mjs"
|
|
35
35
|
},
|
|
36
|
-
"./src/lib/models": {
|
|
37
|
-
"types": "./src/lib/models/index.d.ts",
|
|
38
|
-
"default": "./fesm2022/ngx-dsxlibrary-src-lib-models.mjs"
|
|
39
|
-
},
|
|
40
36
|
"./src/lib/modules": {
|
|
41
37
|
"types": "./src/lib/modules/index.d.ts",
|
|
42
38
|
"default": "./fesm2022/ngx-dsxlibrary-src-lib-modules.mjs"
|
|
43
39
|
},
|
|
40
|
+
"./src/lib/models": {
|
|
41
|
+
"types": "./src/lib/models/index.d.ts",
|
|
42
|
+
"default": "./fesm2022/ngx-dsxlibrary-src-lib-models.mjs"
|
|
43
|
+
},
|
|
44
44
|
"./src/lib/pipe": {
|
|
45
45
|
"types": "./src/lib/pipe/index.d.ts",
|
|
46
46
|
"default": "./fesm2022/ngx-dsxlibrary-src-lib-pipe.mjs"
|
|
Binary file
|