@jvsoft/components 0.0.3 → 0.0.4

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/index.d.ts CHANGED
@@ -1,5 +1,4 @@
1
1
  export * from './dialog-flotante';
2
- export * from './progress-spinner';
3
2
  export * from './tabla-mantenimiento';
4
3
  export * from './tabla-mantenimiento/components/progress-bar';
5
4
  export * from './luces-navidad';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jvsoft/components",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=16.0.0",
6
6
  "@angular/core": ">=16.0.0",
@@ -30,17 +30,13 @@
30
30
  "types": "./dialog-flotante/index.d.ts",
31
31
  "default": "./fesm2022/jvsoft-components-dialog-flotante.mjs"
32
32
  },
33
- "./luces-navidad": {
34
- "types": "./luces-navidad/index.d.ts",
35
- "default": "./fesm2022/jvsoft-components-luces-navidad.mjs"
36
- },
37
33
  "./mat-suffix-search-button": {
38
34
  "types": "./mat-suffix-search-button/index.d.ts",
39
35
  "default": "./fesm2022/jvsoft-components-mat-suffix-search-button.mjs"
40
36
  },
41
- "./progress-spinner": {
42
- "types": "./progress-spinner/index.d.ts",
43
- "default": "./fesm2022/jvsoft-components-progress-spinner.mjs"
37
+ "./luces-navidad": {
38
+ "types": "./luces-navidad/index.d.ts",
39
+ "default": "./fesm2022/jvsoft-components-luces-navidad.mjs"
44
40
  },
45
41
  "./tabla-mantenimiento": {
46
42
  "types": "./tabla-mantenimiento/index.d.ts",
@@ -1,14 +1,14 @@
1
+ import { Overlay, OverlayRef } from '@angular/cdk/overlay';
1
2
  import { AfterContentInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnInit, QueryList, SimpleChanges, TemplateRef, ViewContainerRef } from '@angular/core';
2
3
  import { FormBuilder, FormControl } from '@angular/forms';
3
4
  import { MatPaginator } from '@angular/material/paginator';
4
5
  import { MatSort } from '@angular/material/sort';
5
6
  import { MatColumnDef, MatTable, MatTableDataSource } from '@angular/material/table';
6
7
  import { Observable, Subscription } from 'rxjs';
7
- import { Overlay, OverlayRef } from '@angular/cdk/overlay';
8
- import { BotonMantenimiento, ColumnaTabla, OpcionSeleccionada, SeccionesBotonesMantenimiento } from './interfaces/global';
9
- import { TablaMantenimientoService } from './tabla-mantenimiento.service';
10
- import { capitalizarTexto } from './tabla-mantenimiento.functions';
11
8
  import { DataModel } from './classes/data-model';
9
+ import { BotonMantenimiento, ColumnaTabla, OpcionSeleccionada, SeccionesBotonesMantenimiento } from './interfaces';
10
+ import { capitalizarTexto } from './tabla-mantenimiento.functions';
11
+ import { TablaMantenimientoService } from './tabla-mantenimiento.service';
12
12
  import * as i0 from "@angular/core";
13
13
  export interface MantenimientoFilaExtraData {
14
14
  template?: TemplateRef<any>;
@@ -116,7 +116,7 @@ export declare class TablaMantenimientoComponent<T> implements OnInit, AfterCont
116
116
  set objSeleccionado(val: any);
117
117
  get idsSeleccionado(): string;
118
118
  idTablaValor(data: any): string;
119
- condicionesClaseFila: (item: any) => never[];
119
+ condicionesClaseFila: (item: any) => any[];
120
120
  ngOnInit(): void;
121
121
  ngAfterContentInit(): void;
122
122
  ngOnChanges(changes: SimpleChanges): void;
@@ -134,7 +134,7 @@ export declare class TablaMantenimientoComponent<T> implements OnInit, AfterCont
134
134
  propiedadSeleccion(item: any): string;
135
135
  esSeleccionActual(item: any): boolean;
136
136
  seleccionarItem(item: any, forzado?: boolean): void;
137
- opcMenu(item: any, objMenu: OpcionSeleccionada, modal?: null, retorno?: boolean): OpcionSeleccionada | 1;
137
+ opcMenu(item: any, objMenu: OpcionSeleccionada, modal?: null, retorno?: boolean): 1 | OpcionSeleccionada;
138
138
  emitirResultados(evento?: {}): void;
139
139
  abrirMenuContextual({ x, y }: MouseEvent, user: any): void;
140
140
  cerrarMenuContextual(): void;
@@ -1,78 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { Injectable, Component } from '@angular/core';
3
- import { MatProgressSpinner } from '@angular/material/progress-spinner';
4
- import { ComponentPortal } from '@angular/cdk/portal';
5
- import { BehaviorSubject } from 'rxjs';
6
- import * as i1 from '@angular/cdk/overlay';
7
-
8
- class ProgressSpinnerService {
9
- overlay;
10
- overlayRef = this.createOverlay();
11
- _mensaje = new BehaviorSubject('');
12
- mensaje$ = this._mensaje.asObservable();
13
- _config = new BehaviorSubject({});
14
- config$ = this._config.asObservable();
15
- overlayActivo = false;
16
- get configActual() {
17
- return this._config.getValue();
18
- }
19
- set configActual(data) {
20
- this._config.next(data);
21
- }
22
- constructor(overlay) {
23
- this.overlay = overlay;
24
- }
25
- createOverlay() {
26
- return this.overlay.create({
27
- hasBackdrop: true,
28
- positionStrategy: this.overlay.position().global().centerHorizontally().centerVertically()
29
- });
30
- }
31
- show(config) {
32
- this.configActual = config ?? {};
33
- if (!this.overlayActivo) {
34
- this.overlayRef.attach(new ComponentPortal(ProgressSpinnerComponent));
35
- this.overlayActivo = true;
36
- }
37
- }
38
- hide(config, timeout = 1) {
39
- this.configActual = config ?? {};
40
- setTimeout(() => {
41
- this.overlayRef.detach();
42
- this.overlayActivo = false;
43
- }, timeout * 1000); // Ajusta según sea necesario
44
- }
45
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: ProgressSpinnerService, deps: [{ token: i1.Overlay }], target: i0.ɵɵFactoryTarget.Injectable });
46
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: ProgressSpinnerService, providedIn: 'root' });
47
- }
48
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: ProgressSpinnerService, decorators: [{
49
- type: Injectable,
50
- args: [{
51
- providedIn: 'root'
52
- }]
53
- }], ctorParameters: () => [{ type: i1.Overlay }] });
54
-
55
- class ProgressSpinnerComponent {
56
- progresSpinnerService;
57
- get configProgressSpiiner() {
58
- return this.progresSpinnerService._config.getValue();
59
- }
60
- constructor(progresSpinnerService) {
61
- this.progresSpinnerService = progresSpinnerService;
62
- }
63
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: ProgressSpinnerComponent, deps: [{ token: ProgressSpinnerService }], target: i0.ɵɵFactoryTarget.Component });
64
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.7", type: ProgressSpinnerComponent, isStandalone: true, selector: "jvs-progress-spinner", ngImport: i0, template: "<div class=\"overlay\" [style]=\"'background-color: ' + configProgressSpiiner?.fondoStyle\">\n <div class=\"flex flex-col justify-center items-center gap-2\">\n <mat-spinner diameter=\"40\"></mat-spinner>\n <div class=\"w-full\">{{ configProgressSpiiner?.mensaje }}</div>\n </div>\n\n</div>\n", styles: [":host .overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#ffffffb3;display:flex;justify-content:center;align-items:center;z-index:1000}\n"], dependencies: [{ kind: "component", type: MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }] });
65
- }
66
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: ProgressSpinnerComponent, decorators: [{
67
- type: Component,
68
- args: [{ selector: 'jvs-progress-spinner', imports: [
69
- MatProgressSpinner
70
- ], template: "<div class=\"overlay\" [style]=\"'background-color: ' + configProgressSpiiner?.fondoStyle\">\n <div class=\"flex flex-col justify-center items-center gap-2\">\n <mat-spinner diameter=\"40\"></mat-spinner>\n <div class=\"w-full\">{{ configProgressSpiiner?.mensaje }}</div>\n </div>\n\n</div>\n", styles: [":host .overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#ffffffb3;display:flex;justify-content:center;align-items:center;z-index:1000}\n"] }]
71
- }], ctorParameters: () => [{ type: ProgressSpinnerService }] });
72
-
73
- /**
74
- * Generated bundle index. Do not edit.
75
- */
76
-
77
- export { ProgressSpinnerComponent, ProgressSpinnerService };
78
- //# sourceMappingURL=jvsoft-components-progress-spinner.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"jvsoft-components-progress-spinner.mjs","sources":["../../../projects/components/progress-spinner/progress-spinner.service.ts","../../../projects/components/progress-spinner/progress-spinner.component.ts","../../../projects/components/progress-spinner/progress-spinner.component.html","../../../projects/components/progress-spinner/jvsoft-components-progress-spinner.ts"],"sourcesContent":["import {Injectable} from '@angular/core';\nimport {Overlay, OverlayRef} from '@angular/cdk/overlay';\nimport {ComponentPortal} from '@angular/cdk/portal';\nimport {BehaviorSubject} from 'rxjs';\nimport {ProgressSpinnerComponent} from './progress-spinner.component';\n\nexport interface ProgressSpinnerConfig {\n fondoStyle?: string;\n mensaje?: string;\n icono?: string;\n}\n@Injectable({\n providedIn: 'root'\n})\nexport class ProgressSpinnerService {\n private overlayRef: OverlayRef = this.createOverlay();\n _mensaje = new BehaviorSubject('');\n mensaje$ = this._mensaje.asObservable();\n _config = new BehaviorSubject({});\n config$ = this._config.asObservable();\n\n overlayActivo = false;\n\n\n get configActual(): ProgressSpinnerConfig {\n return this._config.getValue();\n }\n set configActual(data: ProgressSpinnerConfig) {\n this._config.next(data);\n }\n\n constructor(private overlay: Overlay) { }\n\n private createOverlay(): OverlayRef {\n return this.overlay.create({\n hasBackdrop: true,\n positionStrategy: this.overlay.position().global().centerHorizontally().centerVertically()\n });\n }\n\n show(config?: ProgressSpinnerConfig): void {\n this.configActual = config ?? {};\n if (!this.overlayActivo){\n this.overlayRef.attach(new ComponentPortal(ProgressSpinnerComponent));\n this.overlayActivo = true;\n }\n }\n\n hide(config?: ProgressSpinnerConfig, timeout: number = 1): void {\n this.configActual = config ?? {};\n setTimeout(() => {\n this.overlayRef.detach();\n this.overlayActivo = false;\n }, timeout * 1000); // Ajusta según sea necesario\n\n }\n}\n","import {Component} from '@angular/core';\nimport {ProgressSpinnerConfig, ProgressSpinnerService} from './progress-spinner.service';\nimport {MatProgressSpinner} from '@angular/material/progress-spinner';\n\n@Component({\n selector: 'jvs-progress-spinner',\n templateUrl: './progress-spinner.component.html',\n styleUrls: ['./progress-spinner.component.scss'],\n imports: [\n MatProgressSpinner\n ]\n})\nexport class ProgressSpinnerComponent {\n get configProgressSpiiner(): ProgressSpinnerConfig {\n return this.progresSpinnerService._config.getValue();\n }\n constructor(\n public progresSpinnerService: ProgressSpinnerService,\n ) {\n }\n}\n","<div class=\"overlay\" [style]=\"'background-color: ' + configProgressSpiiner?.fondoStyle\">\n <div class=\"flex flex-col justify-center items-center gap-2\">\n <mat-spinner diameter=\"40\"></mat-spinner>\n <div class=\"w-full\">{{ configProgressSpiiner?.mensaje }}</div>\n </div>\n\n</div>\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i1.ProgressSpinnerService"],"mappings":"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"}
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@jvsoft/components/progress-spinner" />
5
- export * from './public-api';
@@ -1,9 +0,0 @@
1
- import { ProgressSpinnerConfig, ProgressSpinnerService } from './progress-spinner.service';
2
- import * as i0 from "@angular/core";
3
- export declare class ProgressSpinnerComponent {
4
- progresSpinnerService: ProgressSpinnerService;
5
- get configProgressSpiiner(): ProgressSpinnerConfig;
6
- constructor(progresSpinnerService: ProgressSpinnerService);
7
- static ɵfac: i0.ɵɵFactoryDeclaration<ProgressSpinnerComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<ProgressSpinnerComponent, "jvs-progress-spinner", never, {}, {}, never, never, true, never>;
9
- }
@@ -1,14 +0,0 @@
1
- :host {
2
- .overlay {
3
- position: absolute;
4
- top: 0;
5
- left: 0;
6
- width: 100%;
7
- height: 100%;
8
- background-color: rgba(255, 255, 255, 0.7);
9
- display: flex;
10
- justify-content: center;
11
- align-items: center;
12
- z-index: 1000;
13
- }
14
- }
@@ -1,25 +0,0 @@
1
- import { Overlay } from '@angular/cdk/overlay';
2
- import { BehaviorSubject } from 'rxjs';
3
- import * as i0 from "@angular/core";
4
- export interface ProgressSpinnerConfig {
5
- fondoStyle?: string;
6
- mensaje?: string;
7
- icono?: string;
8
- }
9
- export declare class ProgressSpinnerService {
10
- private overlay;
11
- private overlayRef;
12
- _mensaje: BehaviorSubject<string>;
13
- mensaje$: import("rxjs").Observable<string>;
14
- _config: BehaviorSubject<{}>;
15
- config$: import("rxjs").Observable<{}>;
16
- overlayActivo: boolean;
17
- get configActual(): ProgressSpinnerConfig;
18
- set configActual(data: ProgressSpinnerConfig);
19
- constructor(overlay: Overlay);
20
- private createOverlay;
21
- show(config?: ProgressSpinnerConfig): void;
22
- hide(config?: ProgressSpinnerConfig, timeout?: number): void;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<ProgressSpinnerService, never>;
24
- static ɵprov: i0.ɵɵInjectableDeclaration<ProgressSpinnerService>;
25
- }
@@ -1,2 +0,0 @@
1
- export * from './progress-spinner.component';
2
- export * from './progress-spinner.service';