lightning-tec-br-angular-components 0.2.7 → 0.2.8
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/lightning-tec-br-angular-components.mjs +171 -2
- package/fesm2022/lightning-tec-br-angular-components.mjs.map +1 -1
- package/lib/table/table.component.d.ts +47 -0
- package/lib/table/table.enum.d.ts +15 -0
- package/lib/table/table.model.d.ts +4 -0
- package/lib/table/table.service.d.ts +9 -0
- package/package.json +1 -1
- package/public-api.d.ts +4 -0
|
@@ -2,7 +2,7 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { Injectable, input, inject, Component } from '@angular/core';
|
|
3
3
|
import * as i1 from '@angular/forms';
|
|
4
4
|
import { FormsModule } from '@angular/forms';
|
|
5
|
-
import { Subject } from 'rxjs';
|
|
5
|
+
import { Subject, takeUntil } from 'rxjs';
|
|
6
6
|
import * as i1$1 from '@angular/common';
|
|
7
7
|
import { CommonModule } from '@angular/common';
|
|
8
8
|
|
|
@@ -698,6 +698,175 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor
|
|
|
698
698
|
args: [{ selector: 'app-label', imports: [CommonModule], template: "<div class=\"container\"\r\n[ngStyle]=\"{'flex-direction':_IconOrientation}\"\r\n>\r\n\r\n <i\r\n class=\"{{_Icon()}}\"\r\n [style.color]=\"_IconColor()\"\r\n [style.font-size]=\"(_TextFontSize() *1.25)+'px'\"\r\n [style.display]=\"_IconEnabled() ? '' : 'none'\"\r\n [ngStyle]=\"_IconDistanceFromTextObject\"\r\n >\r\n </i>\r\n\r\n\r\n <p\r\n [style.font-size]=\"_TextFontSize() +'px'\"\r\n [style.font-family]=\"_TextFontFamily()\"\r\n [style.font-weight]=\"_TextFontWeight()\"\r\n [style.color]=\"_TextColor()\"\r\n [style.display]=\"_TextEnabled() ? '' : 'none'\"\r\n >{{_Text()}}\r\n </p>\r\n</div>", styles: [":host{display:inline-block}.container{display:flex;align-items:center;justify-content:center;border:none;padding:0}.container>i{line-height:0px}.container>p{margin:0;line-height:0px}\n"] }]
|
|
699
699
|
}] });
|
|
700
700
|
|
|
701
|
+
var TableFontWeights;
|
|
702
|
+
(function (TableFontWeights) {
|
|
703
|
+
TableFontWeights[TableFontWeights["Thin"] = 100] = "Thin";
|
|
704
|
+
TableFontWeights[TableFontWeights["ExtraLight"] = 200] = "ExtraLight";
|
|
705
|
+
TableFontWeights[TableFontWeights["Light"] = 300] = "Light";
|
|
706
|
+
TableFontWeights[TableFontWeights["Regular"] = 400] = "Regular";
|
|
707
|
+
TableFontWeights[TableFontWeights["Medium"] = 500] = "Medium";
|
|
708
|
+
TableFontWeights[TableFontWeights["SemiBold"] = 600] = "SemiBold";
|
|
709
|
+
TableFontWeights[TableFontWeights["Bold"] = 700] = "Bold";
|
|
710
|
+
TableFontWeights[TableFontWeights["Extrabold"] = 800] = "Extrabold";
|
|
711
|
+
TableFontWeights[TableFontWeights["Black"] = 900] = "Black";
|
|
712
|
+
})(TableFontWeights || (TableFontWeights = {}));
|
|
713
|
+
var TableModes;
|
|
714
|
+
(function (TableModes) {
|
|
715
|
+
TableModes[TableModes["ReadOnly"] = 0] = "ReadOnly";
|
|
716
|
+
TableModes[TableModes["Display"] = 1] = "Display";
|
|
717
|
+
})(TableModes || (TableModes = {}));
|
|
718
|
+
|
|
719
|
+
class TableService {
|
|
720
|
+
constructor() {
|
|
721
|
+
this.dataChange = new Subject();
|
|
722
|
+
this.rowOnSelect = new Subject();
|
|
723
|
+
}
|
|
724
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
725
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableService, providedIn: 'root' }); }
|
|
726
|
+
}
|
|
727
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableService, decorators: [{
|
|
728
|
+
type: Injectable,
|
|
729
|
+
args: [{ providedIn: 'root' }]
|
|
730
|
+
}] });
|
|
731
|
+
|
|
732
|
+
class TableComponent {
|
|
733
|
+
constructor() {
|
|
734
|
+
this.destroy = new Subject();
|
|
735
|
+
this.name = input.required();
|
|
736
|
+
this.TableMode = input.required();
|
|
737
|
+
this._FontFamily = input.required();
|
|
738
|
+
this._FontSize = input.required();
|
|
739
|
+
this._Header_FontColor = input.required();
|
|
740
|
+
this._Header_FontWeight = input.required();
|
|
741
|
+
this._Header_BackGroundColor = input.required();
|
|
742
|
+
this._Body_FontColor = input.required();
|
|
743
|
+
this._Body_FontWeight = input.required();
|
|
744
|
+
this._Body_BackGroundColor01 = input.required();
|
|
745
|
+
this._Body_BackGroundColor02 = input.required();
|
|
746
|
+
this._Body_BackGroundColorHover = input.required();
|
|
747
|
+
this._BorderVerticalON = input.required();
|
|
748
|
+
this._BorderHorizontalON = input.required();
|
|
749
|
+
this._BorderColor = input.required();
|
|
750
|
+
this._BorderSize = input.required();
|
|
751
|
+
this._ContainerWidth = input.required();
|
|
752
|
+
this._ContainerHeight = input.required();
|
|
753
|
+
this.NomeColunaJSONID = input.required();
|
|
754
|
+
this.NomeColunasJSON = input.required();
|
|
755
|
+
this.NomeColunasDisplay = input.required();
|
|
756
|
+
this.UnidadesDeMedidaDasColunas = input.required();
|
|
757
|
+
this.NCasasDecimaisDasColunas = input.required();
|
|
758
|
+
this.TableService = inject(TableService);
|
|
759
|
+
this.TableModes = TableModes;
|
|
760
|
+
}
|
|
761
|
+
ngOnDestroy() {
|
|
762
|
+
this.destroy.next(true);
|
|
763
|
+
}
|
|
764
|
+
ngOnInit() {
|
|
765
|
+
this.startListenToDataChange();
|
|
766
|
+
}
|
|
767
|
+
startListenToDataChange() {
|
|
768
|
+
this.TableService.dataChange.pipe(takeUntil(this.destroy)).subscribe((model) => {
|
|
769
|
+
if (model.name == this.name()) {
|
|
770
|
+
this.rowsOnMemory = JSON.parse(JSON.stringify(model.data));
|
|
771
|
+
if (this.VerificarSeENecessarioDeletarColunasDeUmObjeto(model.data, this.NomeColunasDisplay())) {
|
|
772
|
+
var ObjetosComNovosNomes = this.MudaNomesDasPropriedadesDeUmObjeto(model.data, this.NomeColunasDisplay(), this.NomeColunasJSON());
|
|
773
|
+
var ObjetosArredondados = this.ListaDeObjetosComCamposNumericosArredondados(ObjetosComNovosNomes, this.NCasasDecimaisDasColunas());
|
|
774
|
+
var ObjetosComUnidadesDeMedida = this.ListaDeObjetosComUnidadesDeMedidas(ObjetosArredondados, this.UnidadesDeMedidaDasColunas());
|
|
775
|
+
this.rowsOnDisplay = ObjetosComUnidadesDeMedida;
|
|
776
|
+
this.headers = Object.keys(this.rowsOnDisplay[0]);
|
|
777
|
+
}
|
|
778
|
+
else {
|
|
779
|
+
this.rowsOnDisplay = model.data;
|
|
780
|
+
this.headers = Object.keys(this.rowsOnDisplay[0]);
|
|
781
|
+
}
|
|
782
|
+
}
|
|
783
|
+
});
|
|
784
|
+
}
|
|
785
|
+
OnLineSelected(row) {
|
|
786
|
+
if (this.TableMode() == this.TableModes.Display) {
|
|
787
|
+
var index = this.rowsOnDisplay.indexOf(row);
|
|
788
|
+
var id = this.rowsOnMemory[index]['usinaId'];
|
|
789
|
+
this.TableService.rowOnSelect.next(id);
|
|
790
|
+
}
|
|
791
|
+
}
|
|
792
|
+
VerificarSeENecessarioDeletarColunasDeUmObjeto(listaObjetos, ListaDeNovosNomes) {
|
|
793
|
+
for (var i = 0; i < Object.keys(listaObjetos[0]).length; i++) {
|
|
794
|
+
if (ListaDeNovosNomes.includes(Object.keys(listaObjetos[0])[i])) {
|
|
795
|
+
}
|
|
796
|
+
else {
|
|
797
|
+
return true;
|
|
798
|
+
}
|
|
799
|
+
}
|
|
800
|
+
return false;
|
|
801
|
+
}
|
|
802
|
+
MudaNomesDasPropriedadesDeUmObjeto(listaObjetos, ListaDeNovosNomes, ListaDeNomesAntigosParaManter) {
|
|
803
|
+
var listaObjetosColunasDeletadas = this.DeletaPropriedadesDeCadaObjetoDeUmaLista(listaObjetos, ListaDeNomesAntigosParaManter);
|
|
804
|
+
//Muda os nomes das colunas de acordo com configuração
|
|
805
|
+
for (var z = 0; z < ListaDeNovosNomes.length; z++) {
|
|
806
|
+
for (var y = 0; y < listaObjetosColunasDeletadas.length; y++) {
|
|
807
|
+
listaObjetosColunasDeletadas[y][ListaDeNovosNomes[z]] = listaObjetosColunasDeletadas[y][ListaDeNomesAntigosParaManter[z]];
|
|
808
|
+
delete listaObjetosColunasDeletadas[y][ListaDeNomesAntigosParaManter[z]];
|
|
809
|
+
}
|
|
810
|
+
}
|
|
811
|
+
return listaObjetosColunasDeletadas;
|
|
812
|
+
}
|
|
813
|
+
DeletaPropriedadesDeCadaObjetoDeUmaLista(listaObjetos, ListaColunasParaManter) {
|
|
814
|
+
const ListaColunasParaDeletar = this.ListaNomesColunasDeletadas(listaObjetos[0], ListaColunasParaManter);
|
|
815
|
+
//Deleta propriedades do objeto que estão definidas na lista de configuração
|
|
816
|
+
for (var i = 0; i < ListaColunasParaDeletar.length; i++) {
|
|
817
|
+
listaObjetos.forEach((obj) => {
|
|
818
|
+
delete obj[ListaColunasParaDeletar[i]];
|
|
819
|
+
});
|
|
820
|
+
}
|
|
821
|
+
i = 0;
|
|
822
|
+
return listaObjetos;
|
|
823
|
+
}
|
|
824
|
+
ListaNomesColunasDeletadas(objOriginal, ListaColunasParaManter) {
|
|
825
|
+
var newArray = [];
|
|
826
|
+
for (var i = 0; i < Object.keys(objOriginal).length; i++) {
|
|
827
|
+
if (ListaColunasParaManter.includes(Object.keys(objOriginal)[i])) {
|
|
828
|
+
}
|
|
829
|
+
else {
|
|
830
|
+
newArray.push(Object.keys(objOriginal)[i]);
|
|
831
|
+
}
|
|
832
|
+
}
|
|
833
|
+
i = 0;
|
|
834
|
+
return newArray;
|
|
835
|
+
}
|
|
836
|
+
ListaDeObjetosComUnidadesDeMedidas(listaObjetos, listaUnidadesMedida) {
|
|
837
|
+
for (var i = 0; i < listaObjetos.length; i++) {
|
|
838
|
+
for (var y = 0; y < Object.keys(listaObjetos[0]).length; y++) {
|
|
839
|
+
listaObjetos[i][(Object.keys(listaObjetos[0]))[y]] = listaObjetos[i][(Object.keys(listaObjetos[0]))[y]] + listaUnidadesMedida[y];
|
|
840
|
+
}
|
|
841
|
+
}
|
|
842
|
+
return listaObjetos;
|
|
843
|
+
}
|
|
844
|
+
ListaDeObjetosComCamposNumericosArredondados(listaObjetos, listadeArredondamentos) {
|
|
845
|
+
for (var i = 0; i < listaObjetos.length; i++) {
|
|
846
|
+
for (var y = 0; y < Object.keys(listaObjetos[0]).length; y++) {
|
|
847
|
+
if (isNaN(listaObjetos[i][(Object.keys(listaObjetos[0]))[y]])) {
|
|
848
|
+
}
|
|
849
|
+
else {
|
|
850
|
+
listaObjetos[i][(Object.keys(listaObjetos[0]))[y]] = parseFloat(listaObjetos[i][(Object.keys(listaObjetos[0]))[y]]).toFixed(listadeArredondamentos[y]);
|
|
851
|
+
}
|
|
852
|
+
}
|
|
853
|
+
}
|
|
854
|
+
return listaObjetos;
|
|
855
|
+
}
|
|
856
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
857
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: TableComponent, isStandalone: true, selector: "app-table", inputs: { name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: true, transformFunction: null }, TableMode: { classPropertyName: "TableMode", publicName: "TableMode", isSignal: true, isRequired: true, transformFunction: null }, _FontFamily: { classPropertyName: "_FontFamily", publicName: "_FontFamily", isSignal: true, isRequired: true, transformFunction: null }, _FontSize: { classPropertyName: "_FontSize", publicName: "_FontSize", isSignal: true, isRequired: true, transformFunction: null }, _Header_FontColor: { classPropertyName: "_Header_FontColor", publicName: "_Header_FontColor", isSignal: true, isRequired: true, transformFunction: null }, _Header_FontWeight: { classPropertyName: "_Header_FontWeight", publicName: "_Header_FontWeight", isSignal: true, isRequired: true, transformFunction: null }, _Header_BackGroundColor: { classPropertyName: "_Header_BackGroundColor", publicName: "_Header_BackGroundColor", isSignal: true, isRequired: true, transformFunction: null }, _Body_FontColor: { classPropertyName: "_Body_FontColor", publicName: "_Body_FontColor", isSignal: true, isRequired: true, transformFunction: null }, _Body_FontWeight: { classPropertyName: "_Body_FontWeight", publicName: "_Body_FontWeight", isSignal: true, isRequired: true, transformFunction: null }, _Body_BackGroundColor01: { classPropertyName: "_Body_BackGroundColor01", publicName: "_Body_BackGroundColor01", isSignal: true, isRequired: true, transformFunction: null }, _Body_BackGroundColor02: { classPropertyName: "_Body_BackGroundColor02", publicName: "_Body_BackGroundColor02", isSignal: true, isRequired: true, transformFunction: null }, _Body_BackGroundColorHover: { classPropertyName: "_Body_BackGroundColorHover", publicName: "_Body_BackGroundColorHover", isSignal: true, isRequired: true, transformFunction: null }, _BorderVerticalON: { classPropertyName: "_BorderVerticalON", publicName: "_BorderVerticalON", isSignal: true, isRequired: true, transformFunction: null }, _BorderHorizontalON: { classPropertyName: "_BorderHorizontalON", publicName: "_BorderHorizontalON", isSignal: true, isRequired: true, transformFunction: null }, _BorderColor: { classPropertyName: "_BorderColor", publicName: "_BorderColor", isSignal: true, isRequired: true, transformFunction: null }, _BorderSize: { classPropertyName: "_BorderSize", publicName: "_BorderSize", isSignal: true, isRequired: true, transformFunction: null }, _ContainerWidth: { classPropertyName: "_ContainerWidth", publicName: "_ContainerWidth", isSignal: true, isRequired: true, transformFunction: null }, _ContainerHeight: { classPropertyName: "_ContainerHeight", publicName: "_ContainerHeight", isSignal: true, isRequired: true, transformFunction: null }, NomeColunaJSONID: { classPropertyName: "NomeColunaJSONID", publicName: "NomeColunaJSONID", isSignal: true, isRequired: true, transformFunction: null }, NomeColunasJSON: { classPropertyName: "NomeColunasJSON", publicName: "NomeColunasJSON", isSignal: true, isRequired: true, transformFunction: null }, NomeColunasDisplay: { classPropertyName: "NomeColunasDisplay", publicName: "NomeColunasDisplay", isSignal: true, isRequired: true, transformFunction: null }, UnidadesDeMedidaDasColunas: { classPropertyName: "UnidadesDeMedidaDasColunas", publicName: "UnidadesDeMedidaDasColunas", isSignal: true, isRequired: true, transformFunction: null }, NCasasDecimaisDasColunas: { classPropertyName: "NCasasDecimaisDasColunas", publicName: "NCasasDecimaisDasColunas", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: "<div class=\"container\" style=\"overflow-x:auto;\"\r\n[style.width]=\"_ContainerWidth()+'px'\"\r\n[style.height]=\"_ContainerHeight()+'px'\"\r\n>\r\n <table\r\n [style.font-family]=\"_FontFamily()\"\r\n [style.--padding]=\"(_FontSize()*0.5+'px')+' ' + (_FontSize()*0.625+'px')\"\r\n [style.--borderLeft]=\"(_BorderVerticalON() ? _BorderSize()+'px' : '0px') + ' solid '+_BorderColor()\"\r\n [style.--borderBottom]=\"(_BorderHorizontalON() ? _BorderSize()+'px' : '0px') + ' solid '+_BorderColor()\"\r\n >\r\n \r\n <thead\r\n [style.font-size]=\"_FontSize()*1.1 + 'px'\"\r\n [style.font-weight]=\"_Header_FontWeight()\"\r\n [style.background-color]=\"_Header_BackGroundColor()\"\r\n [style.color]=\"_Header_FontColor()\"\r\n >\r\n <tr>\r\n @for(_header of headers ; track $index){\r\n <th>{{_header}}</th>\r\n }\r\n </tr>\r\n </thead>\r\n \r\n <tbody\r\n [style.font-size]=\"_FontSize() + 'px'\"\r\n [style.font-weight]=\"_Body_FontWeight()\"\r\n [style.--Body_FontColor]=\"_Body_FontColor()\"\r\n [style.--Body_BackGroundColor01]=\"_Body_BackGroundColor01()\"\r\n [style.--Body_BackGroundColor02]=\"_Body_BackGroundColor02()\"\r\n [style.--Body_BackGroundColorHover]=\"_Body_BackGroundColorHover()\"\r\n [style.cursor]=\"TableMode() == TableModes.ReadOnly ? 'default' : 'pointer'\"\r\n >\r\n @for(row of rowsOnDisplay ; track $index){\r\n <tr\r\n (click)=\"OnLineSelected(row)\"\r\n \r\n >\r\n @for(_header of headers; track $index){\r\n <td>{{row[_header]}}</td>\r\n }\r\n </tr>\r\n }\r\n </tbody>\r\n \r\n </table>\r\n</div>\r\n\r\n\r\n\r\n\r\n", styles: [".container{display:inline-block}table{border-collapse:collapse}tbody>tr{color:var(--Body_FontColor);background-color:var(--Body_BackGroundColor01)}tbody>tr:nth-child(2n){background-color:var(--Body_BackGroundColor02)}tbody>tr:hover{background-color:var(--Body_BackGroundColorHover)}tbody>tr:nth-child(2n):hover{background-color:var(--Body_BackGroundColorHover)}td,th{text-align:center;border-left:var(--borderLeft);border-right:var(--borderLeft);border-bottom:var(--borderBottom);border-top:var(--borderBottom);vertical-align:middle;padding:var(--padding)}\n"] }); }
|
|
858
|
+
}
|
|
859
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableComponent, decorators: [{
|
|
860
|
+
type: Component,
|
|
861
|
+
args: [{ selector: 'app-table', imports: [], template: "<div class=\"container\" style=\"overflow-x:auto;\"\r\n[style.width]=\"_ContainerWidth()+'px'\"\r\n[style.height]=\"_ContainerHeight()+'px'\"\r\n>\r\n <table\r\n [style.font-family]=\"_FontFamily()\"\r\n [style.--padding]=\"(_FontSize()*0.5+'px')+' ' + (_FontSize()*0.625+'px')\"\r\n [style.--borderLeft]=\"(_BorderVerticalON() ? _BorderSize()+'px' : '0px') + ' solid '+_BorderColor()\"\r\n [style.--borderBottom]=\"(_BorderHorizontalON() ? _BorderSize()+'px' : '0px') + ' solid '+_BorderColor()\"\r\n >\r\n \r\n <thead\r\n [style.font-size]=\"_FontSize()*1.1 + 'px'\"\r\n [style.font-weight]=\"_Header_FontWeight()\"\r\n [style.background-color]=\"_Header_BackGroundColor()\"\r\n [style.color]=\"_Header_FontColor()\"\r\n >\r\n <tr>\r\n @for(_header of headers ; track $index){\r\n <th>{{_header}}</th>\r\n }\r\n </tr>\r\n </thead>\r\n \r\n <tbody\r\n [style.font-size]=\"_FontSize() + 'px'\"\r\n [style.font-weight]=\"_Body_FontWeight()\"\r\n [style.--Body_FontColor]=\"_Body_FontColor()\"\r\n [style.--Body_BackGroundColor01]=\"_Body_BackGroundColor01()\"\r\n [style.--Body_BackGroundColor02]=\"_Body_BackGroundColor02()\"\r\n [style.--Body_BackGroundColorHover]=\"_Body_BackGroundColorHover()\"\r\n [style.cursor]=\"TableMode() == TableModes.ReadOnly ? 'default' : 'pointer'\"\r\n >\r\n @for(row of rowsOnDisplay ; track $index){\r\n <tr\r\n (click)=\"OnLineSelected(row)\"\r\n \r\n >\r\n @for(_header of headers; track $index){\r\n <td>{{row[_header]}}</td>\r\n }\r\n </tr>\r\n }\r\n </tbody>\r\n \r\n </table>\r\n</div>\r\n\r\n\r\n\r\n\r\n", styles: [".container{display:inline-block}table{border-collapse:collapse}tbody>tr{color:var(--Body_FontColor);background-color:var(--Body_BackGroundColor01)}tbody>tr:nth-child(2n){background-color:var(--Body_BackGroundColor02)}tbody>tr:hover{background-color:var(--Body_BackGroundColorHover)}tbody>tr:nth-child(2n):hover{background-color:var(--Body_BackGroundColorHover)}td,th{text-align:center;border-left:var(--borderLeft);border-right:var(--borderLeft);border-bottom:var(--borderBottom);border-top:var(--borderBottom);vertical-align:middle;padding:var(--padding)}\n"] }]
|
|
862
|
+
}] });
|
|
863
|
+
|
|
864
|
+
class TableModel {
|
|
865
|
+
constructor() {
|
|
866
|
+
this.name = '';
|
|
867
|
+
}
|
|
868
|
+
}
|
|
869
|
+
|
|
701
870
|
/*
|
|
702
871
|
* Public API Surface of lightning-tec-br-angular-components
|
|
703
872
|
*/
|
|
@@ -706,5 +875,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor
|
|
|
706
875
|
* Generated bundle index. Do not edit.
|
|
707
876
|
*/
|
|
708
877
|
|
|
709
|
-
export { AlertComponent, AlertIconsEnum, AlertModel, AlertService, AlertTypesEnum, ButtonComponent, ButtonFontWeights, ButtonIconEnum, ButtonIconPositionEnum, ButtonModel, ButtonService, ButtonTypeEnum, LabelComponent, LabelFontWeights, LabelIconEnum, LabelIconPositionEnum, LabelModel, LabelService, ListItemComponent, ListItemFontWeights, ListItemIcons, ListItemModel, ListItemPositions, ListItemService, TxtBoxComponent, TxtBoxFontWeights, TxtBoxIconsEnum, TxtBoxInputTypesEnum, TxtBoxModel, TxtBoxService, TxtBoxTypesEnum };
|
|
878
|
+
export { AlertComponent, AlertIconsEnum, AlertModel, AlertService, AlertTypesEnum, ButtonComponent, ButtonFontWeights, ButtonIconEnum, ButtonIconPositionEnum, ButtonModel, ButtonService, ButtonTypeEnum, LabelComponent, LabelFontWeights, LabelIconEnum, LabelIconPositionEnum, LabelModel, LabelService, ListItemComponent, ListItemFontWeights, ListItemIcons, ListItemModel, ListItemPositions, ListItemService, TableComponent, TableFontWeights, TableModel, TableModes, TableService, TxtBoxComponent, TxtBoxFontWeights, TxtBoxIconsEnum, TxtBoxInputTypesEnum, TxtBoxModel, TxtBoxService, TxtBoxTypesEnum };
|
|
710
879
|
//# sourceMappingURL=lightning-tec-br-angular-components.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lightning-tec-br-angular-components.mjs","sources":["../../../projects/lightning-tec-br-angular-components/src/lib/txt-box/txt-box.enum.ts","../../../projects/lightning-tec-br-angular-components/src/lib/txt-box/txt-box.service.ts","../../../projects/lightning-tec-br-angular-components/src/lib/txt-box/txt-box.model.ts","../../../projects/lightning-tec-br-angular-components/src/lib/alert/alert.enum.ts","../../../projects/lightning-tec-br-angular-components/src/lib/alert/alert.service.ts","../../../projects/lightning-tec-br-angular-components/src/lib/alert/alert.model.ts","../../../projects/lightning-tec-br-angular-components/src/lib/alert/alert.component.ts","../../../projects/lightning-tec-br-angular-components/src/lib/alert/alert.component.html","../../../projects/lightning-tec-br-angular-components/src/lib/txt-box/txt-box.component.ts","../../../projects/lightning-tec-br-angular-components/src/lib/txt-box/txt-box.component.html","../../../projects/lightning-tec-br-angular-components/src/lib/button/button.enum.ts","../../../projects/lightning-tec-br-angular-components/src/lib/button/button.service.ts","../../../projects/lightning-tec-br-angular-components/src/lib/button/button.model.ts","../../../projects/lightning-tec-br-angular-components/src/lib/label/label.model.ts","../../../projects/lightning-tec-br-angular-components/src/lib/label/label.service.ts","../../../projects/lightning-tec-br-angular-components/src/lib/button/button.component.ts","../../../projects/lightning-tec-br-angular-components/src/lib/button/button.component.html","../../../projects/lightning-tec-br-angular-components/src/lib/list-item/list-item.enum.ts","../../../projects/lightning-tec-br-angular-components/src/lib/list-item/list-item.component.ts","../../../projects/lightning-tec-br-angular-components/src/lib/list-item/list-item.component.html","../../../projects/lightning-tec-br-angular-components/src/lib/list-item/list-item.model.ts","../../../projects/lightning-tec-br-angular-components/src/lib/list-item/list-item.service.ts","../../../projects/lightning-tec-br-angular-components/src/lib/label/label.enum.ts","../../../projects/lightning-tec-br-angular-components/src/lib/label/label.component.ts","../../../projects/lightning-tec-br-angular-components/src/lib/label/label.component.html","../../../projects/lightning-tec-br-angular-components/src/public-api.ts","../../../projects/lightning-tec-br-angular-components/src/lightning-tec-br-angular-components.ts"],"sourcesContent":["export enum TxtBoxTypesEnum{\r\n Email,\r\n Password\r\n}\r\nexport enum TxtBoxInputTypesEnum{\r\n Text = 'text',\r\n Password = 'password'\r\n}\r\nexport enum TxtBoxIconsEnum{\r\n User = \"fi fi-sr-user\",\r\n Lock = \"fi fi-sr-lock\",\r\n EyeOpen = \"fi fi-ss-eye\",\r\n EyeClose = \"fi fi-ss-eye-crossed\",\r\n ItemClosed = \"fi fi-tr-caret-down\",\r\n ItemOpenned = \"fi fi-rr-caret-down\",\r\n Done = \"fi fi-sr-octagon-check\",\r\n Doing = \"fi fi-br-duration-alt\",\r\n NotDone = \"fi fi-sr-cross-circle\",\r\n Alert = \"fi fi-sr-exclamation\",\r\n Close = \"fi fi-br-cross\",\r\n Home = \"fi fi-sr-home\",\r\n Key = \"fi fi-sr-key\",\r\n Company = \"fi fi-rs-building\",\r\n NoteBook = \"fi fi-br-notebook-alt\",\r\n AddFile = \"fi fi-rr-add-document\"\r\n}\r\nexport enum TxtBoxFontWeights{\r\n Thin = 100,\r\n ExtraLight = 200,\r\n Light = 300,\r\n Regular = 400,\r\n Medium = 500,\r\n SemiBold = 600,\r\n Bold = 700,\r\n Extrabold = 800,\r\n Black = 900,\r\n}","import {Injectable } from \"@angular/core\";\r\nimport { Subject } from 'rxjs';\r\nimport { TxtBoxModel } from \"./txt-box.model\";\r\nimport { AlertModel } from \"../alert/alert.model\";\r\n\r\n@Injectable({providedIn:'root'})\r\nexport class TxtBoxService{\r\n\r\n public value = new Subject<TxtBoxModel>();\r\n public alertState = new Subject<AlertModel>()\r\n\r\n}","export class TxtBoxModel{\r\n name : string = '';\r\n value : string = '';\r\n}","export enum AlertIconsEnum{\r\n User = \"fi fi-sr-user\",\r\n Lock = \"fi fi-sr-lock\",\r\n EyeOpen = \"fi fi-ss-eye\",\r\n EyeClose = \"fi fi-ss-eye-crossed\",\r\n ItemClosed = \"fi fi-tr-caret-down\",\r\n ItemOpenned = \"fi fi-rr-caret-down\",\r\n Done = \"fi fi-sr-octagon-check\",\r\n Doing = \"fi fi-br-duration-alt\",\r\n NotDone = \"fi fi-sr-cross-circle\",\r\n Alert = \"fi fi-sr-exclamation\",\r\n Close = \"fi fi-br-cross\",\r\n Home = \"fi fi-sr-home\",\r\n Key = \"fi fi-sr-key\",\r\n Company = \"fi fi-rs-building\",\r\n NoteBook = \"fi fi-br-notebook-alt\",\r\n AddFile = \"fi fi-rr-add-document\"\r\n}\r\n\r\nexport enum AlertTypesEnum{\r\n Done,\r\n Alert,\r\n NotDone\r\n}","import {Injectable } from \"@angular/core\";\r\nimport { Subject } from 'rxjs';\r\nimport { AlertModel } from \"./alert.model\";\r\n\r\n@Injectable({providedIn:'root'})\r\nexport class AlertService{\r\n\r\n public wasOpenned = new Subject<AlertModel>();\r\n public wasClosed = new Subject<AlertModel>();\r\n \r\n}","import { AlertTypesEnum } from \"./alert.enum\";\r\n\r\nexport class AlertModel{\r\n alertsName : string = '';\r\n alertsFatherName : string = '';\r\n top : number = 0;\r\n left : number = 0\r\n type! : AlertTypesEnum ;\r\n text : string = '';\r\n wasClosed: boolean = false;\r\n}\r\n","import { Component,HostListener,inject,input, OnInit } from '@angular/core';\r\nimport { AlertTypesEnum,AlertIconsEnum } from './alert.enum';\r\nimport { AlertService } from './alert.service';\r\nimport { ChangeDetectorRef } from '@angular/core';\r\nimport { AlertModel } from './alert.model';\r\n\r\n@Component({\r\n selector: 'app-alert',\r\n standalone: true,\r\n imports: [],\r\n templateUrl: './alert.component.html',\r\n styleUrl: './alert.component.css'\r\n})\r\nexport class AlertComponent implements OnInit {\r\n\r\n\r\n Name = input.required<string>();\r\n _FontSize = input.required<number>();\r\n _FontFamily = input.required<string>();\r\n _FontWeight = input.required<number>();\r\n _FontColor :string ='white';\r\n _Text : string = '';\r\n\r\n _PositionY : number = 0;\r\n _PositionX : number = 0;\r\n\r\n AlertType! : AlertTypesEnum ;\r\n _Icon : string = '';\r\n BackgroundColor : string = '';\r\n _IconClose : string = '';\r\n\r\n\r\n isVisible : boolean = false;\r\n\r\n\r\n AlertService = inject(AlertService);\r\n AlertModel! : AlertModel;\r\n\r\n constructor(private cd: ChangeDetectorRef) {}\r\n\r\n ngOnInit(): void {\r\n this._PositionX = 0;\r\n this._PositionY = 0;\r\n this._FontColor = 'white';\r\n this._Icon = '';\r\n this.BackgroundColor = '';\r\n this._IconClose ='';\r\n this.AlertModel = new AlertModel();\r\n\r\n\r\n this._IconClose = AlertIconsEnum.Close;\r\n\r\n\r\n this.startListenToAlertShowed();\r\n\r\n \r\n }\r\n\r\n OnClose(){\r\n this.isVisible = false;\r\n this.AlertModel.alertsName = this.Name();\r\n this.AlertModel.wasClosed = true;\r\n this.AlertService.wasClosed.next(this.AlertModel);\r\n }\r\n\r\n startListenToAlertShowed(){\r\n this.AlertService.wasOpenned.subscribe((AlertModel : AlertModel)=>{\r\n if(this.Name() == AlertModel.alertsName){\r\n this._Text = AlertModel.text;\r\n this.AlertType = AlertModel.type;\r\n this._PositionY = AlertModel.top;\r\n this._PositionX = AlertModel.left;\r\n this.isVisible = true;\r\n switch(this.AlertType){\r\n case (AlertTypesEnum.Done):\r\n this._Icon = AlertIconsEnum.Done;\r\n this.BackgroundColor = '#008B10';\r\n this._FontColor = 'white'\r\n break;\r\n case (AlertTypesEnum.Alert):\r\n this._Icon = AlertIconsEnum.Alert;\r\n this.BackgroundColor = '#DFCD00';\r\n this._FontColor = 'black'\r\n break;\r\n case (AlertTypesEnum.NotDone):\r\n this._Icon = AlertIconsEnum.NotDone;\r\n this.BackgroundColor = '#D40000';\r\n this._FontColor = 'white'\r\n break;\r\n }\r\n }\r\n\r\n })\r\n }\r\n\r\n\r\n \r\n\r\n\r\n}\r\n","<div class=\"container\"\r\n[style.background-color]=\"BackgroundColor\"\r\n[style.border-radius]=\"(_FontSize()*0.5) + 'px'\"\r\n[style.color]=\"_FontColor\"\r\n[style.display]=\"isVisible ? '' : 'none'\"\r\n[style.top]=\"_PositionY + 'px'\"\r\n[style.left]=\"_PositionX + 'px'\"\r\n>\r\n\r\n <i class=\"{{_IconClose}}\"\r\n [style.font-size]=\"(_FontSize()*1) + 'px'\"\r\n [style.padding-top]=\"(_FontSize()*0.6) + 'px'\"\r\n [style.padding-right]=\"(_FontSize()*0.6) + 'px'\"\r\n (click)=\"OnClose()\"\r\n >\r\n\r\n </i>\r\n\r\n <div class=\"container-text\"\r\n [style.margin-right]=\"_FontSize() + 'px'\"\r\n [style.padding-top]=\"(_FontSize()*0.4) + 'px'\"\r\n [style.padding-bottom]=\"(_FontSize()*1) + 'px'\"\r\n [style.padding-right]=\"(_FontSize()*1) + 'px'\"\r\n [style.padding-left]=\"(_FontSize()*1) + 'px'\"\r\n >\r\n <i class=\"{{_Icon}}\"\r\n [style.font-size]=\"(_FontSize()*1.2) + 'px'\"\r\n [style.margin-right]=\"(_FontSize()*0.5) + 'px'\"\r\n >\r\n \r\n </i>\r\n <h1\r\n [style.font-family]=\"_FontFamily()\"\r\n [style.font-weight]=\"_FontWeight()\"\r\n [style.font-size]=\"_FontSize() + 'px'\"\r\n >\r\n {{_Text}}\r\n </h1>\r\n </div>\r\n\r\n\r\n\r\n\r\n</div>\r\n","import { Component,ElementRef,inject,input, OnInit } from '@angular/core';\r\nimport {FormsModule} from '@angular/forms';\r\nimport { TxtBoxTypesEnum, TxtBoxIconsEnum, TxtBoxInputTypesEnum, TxtBoxFontWeights } from './txt-box.enum';\r\nimport { TxtBoxService } from './txt-box.service';\r\nimport { CommonModule } from '@angular/common';\r\nimport { TxtBoxModel } from './txt-box.model';\r\nimport { AlertComponent } from '../alert/alert.component';\r\nimport { AlertTypesEnum } from '../alert/alert.enum';\r\nimport { AlertService } from '../alert/alert.service';\r\nimport { AlertModel } from '../alert/alert.model';\r\n\r\n\r\n\r\n@Component({\r\n selector: 'app-txt-box',\r\n standalone: true,\r\n imports: [FormsModule,CommonModule,AlertComponent],\r\n templateUrl: './txt-box.component.html',\r\n styleUrl: './txt-box.component.css',\r\n})\r\nexport class TxtBoxComponent implements OnInit {\r\n\r\n //Template Properties\r\n _iconInput = input.required<TxtBoxIconsEnum>();\r\n _nameInput = input.required<string>();\r\n _idInput = input<string>();\r\n _placeHolderType : string = '';\r\n _placeHolderValue :string ='';\r\n _iconPassword :string = TxtBoxIconsEnum.EyeOpen;\r\n _CorIcone = input.required<string>();\r\n _CorFont = input.required<string>();\r\n _FontSize = input.required<number>();\r\n _IconEnabled : string = '';\r\n _FontFamily = input.required<string>();\r\n _FontWeight = input.required<TxtBoxFontWeights>();\r\n \r\n\r\n\r\n\r\n //Internal Properties\r\n typeInput = input.required<TxtBoxTypesEnum>();\r\n IconEnabled = input.required<boolean>();\r\n text : string = '';\r\n TxtBoxModel = new TxtBoxModel();\r\n _AlertState : boolean = false;\r\n \r\n readonly AlertTypesEnum = AlertTypesEnum;\r\n\r\n //Services\r\n TxtBoxService = inject(TxtBoxService);\r\n AlertService = inject(AlertService);\r\n\r\n\r\n constructor(private element : ElementRef){}\r\n\r\n\r\n\r\n\r\n\r\n ngOnInit(): void {\r\n\r\n //Limpa as Memórias de Estado\r\n this._IconEnabled = '';\r\n this._placeHolderType = '';\r\n this._placeHolderValue = '';\r\n this._AlertState = false;\r\n this.TxtBoxModel.name = '';\r\n\r\n\r\n this.TxtBoxModel.name = this._nameInput();\r\n this._IconEnabled = this.IconEnabled() ? '' : 'none';\r\n\r\n this.startListenToAlertState();\r\n\r\n switch (this.typeInput()){\r\n\r\n case (TxtBoxTypesEnum.Email):\r\n {\r\n this._placeHolderType = TxtBoxInputTypesEnum.Text;\r\n this._placeHolderValue = 'nome@empresa.com.br'\r\n break;\r\n }\r\n\r\n case (TxtBoxTypesEnum.Password):\r\n {\r\n this._placeHolderType = TxtBoxInputTypesEnum.Password;\r\n this._placeHolderValue = '**********'\r\n break;\r\n }\r\n\r\n }\r\n\r\n }\r\n\r\n onValueChanged(){\r\n \r\n this.TxtBoxModel.name = this._nameInput();\r\n this.TxtBoxService.value.next(this.TxtBoxModel);\r\n\r\n }\r\n\r\n startListenToAlertState(){\r\n this.TxtBoxService.alertState.subscribe((callerData:AlertModel)=>{\r\n if(this._nameInput() == callerData.alertsFatherName){\r\n callerData.top = this.element.nativeElement.getBoundingClientRect().top - (this.element.nativeElement.offsetHeight*1.5)\r\n callerData.left = this.element.nativeElement.getBoundingClientRect().left\r\n callerData.alertsName = this.TxtBoxModel.name +'-alert';\r\n this.AlertService.wasOpenned.next(callerData);\r\n } \r\n })\r\n }\r\n\r\n\r\n \r\n}\r\n\r\n\r\n\r\n\r\n","<div class=\"container\" \r\n[style.width]=\"(_FontSize()*19.375) +'px'\"\r\n[style.height]=\"(_FontSize()*2.5) +'px'\"\r\n[style.border-radius]=\"(_FontSize()*0.3125) +'px'\"\r\n[ngStyle]=\"\r\n{'box-shadow':'\r\nrgb(204, 219, 232)'+ (_FontSize()*0.1875) + 'px '+ (_FontSize()*0.1875) + 'px '+ (_FontSize()*0.375) + 'px 0px inset' + ',' + \r\n'rgba(255, 255, 255, 0.5)'+ (_FontSize()*-0.1875) + 'px '+ (_FontSize()*-0.1875) + 'px '+ (_FontSize()*0.375) + 'px '+ (_FontSize()*0.0625) + 'px inset'\r\n}\r\n\"\r\n>\r\n\r\n <i class=\"{{_iconInput()}} icon\"\r\n [style.color]=\"_CorIcone()\"\r\n [style.font-size]=\"(_FontSize()*1.25) +'px'\"\r\n [style.margin-left]=\"(_FontSize()*0.5625) +'px'\"\r\n [style.display]=\"_IconEnabled\"\r\n ></i>\r\n\r\n <input\r\n type=\"{{_placeHolderType}}\"\r\n name=\"{{_nameInput()}}\"\r\n id=\"{{_idInput()}}\"\r\n placeholder=\"{{_placeHolderValue}}\"\r\n [(ngModel)]=\"TxtBoxModel.value\"\r\n (ngModelChange)=\"onValueChanged()\"\r\n\r\n [style.color]=\"_CorFont()\"\r\n [style.font-family]=\"_FontFamily()\"\r\n [style.font-size]=\"_FontSize()+'px'\"\r\n [style.font-weight]=\"_FontWeight()\"\r\n [style.width]=\"(_FontSize()*15.3125) +'px'\"\r\n [style.margin-left]=\"(_FontSize()*0.375) +'px'\"\r\n >\r\n \r\n\r\n</div>\r\n\r\n<app-alert\r\n[Name]=\"_nameInput()+'-alert'\"\r\n[_FontSize]=\"_FontSize()\"\r\n[_FontFamily]=\"_FontFamily()\"\r\n[_FontWeight]=\"_FontWeight()\"\r\n/>\r\n\r\n\r\n\r\n\r\n","export enum ButtonTypeEnum{\r\n Button = 'button',\r\n Menu = 'menu',\r\n Reset = 'reset',\r\n Submit = 'submit'\r\n\r\n}\r\nexport enum ButtonIconPositionEnum{\r\n Top,\r\n Right,\r\n Bottom,\r\n Left\r\n}\r\nexport enum ButtonIconEnum{\r\n User = \"fi fi-sr-user\",\r\n Lock = \"fi fi-sr-lock\",\r\n EyeOpen = \"fi fi-ss-eye\",\r\n EyeClose = \"fi fi-ss-eye-crossed\",\r\n ItemClosed = \"fi fi-tr-caret-down\",\r\n ItemOpenned = \"fi fi-rr-caret-down\",\r\n Done = \"fi fi-sr-octagon-check\",\r\n Doing = \"fi fi-br-duration-alt\",\r\n NotDone = \"fi fi-sr-cross-circle\",\r\n Alert = \"fi fi-sr-exclamation\",\r\n Close = \"fi fi-br-cross\",\r\n Home = \"fi fi-sr-home\",\r\n Key = \"fi fi-sr-key\",\r\n Company = \"fi fi-rs-building\",\r\n NoteBook = \"fi fi-br-notebook-alt\",\r\n AddFile = \"fi fi-rr-add-document\"\r\n}\r\nexport enum ButtonFontWeights{\r\n Thin = 100,\r\n ExtraLight = 200,\r\n Light = 300,\r\n Regular = 400,\r\n Medium = 500,\r\n SemiBold = 600,\r\n Bold = 700,\r\n Extrabold = 800,\r\n Black = 900,\r\n}","import {Injectable } from \"@angular/core\";\r\nimport { Subject } from 'rxjs';\r\nimport { ButtonModel } from \"./button.model\";\r\n\r\n@Injectable({providedIn:'root'})\r\nexport class ButtonService{\r\n\r\n public click = new Subject<ButtonModel>();\r\n public loadingState = new Subject<ButtonModel>();\r\n public alertState = new Subject<ButtonModel>()\r\n\r\n}","export class ButtonModel{\r\n name : string = '';\r\n state : boolean = false;\r\n}","import { LabelIconPositionEnum,LabelFontWeights,LabelIconEnum } from \"./label.enum\";\r\n\r\nexport class LabelModel{\r\n\r\n name : string = '';\r\n\r\n}","import {Injectable } from \"@angular/core\";\r\nimport { Subject } from 'rxjs';\r\nimport { LabelModel } from \"./label.model\";\r\n\r\n@Injectable({providedIn:'root'})\r\nexport class LabelService{\r\n\r\n stateChanger = new Subject<LabelModel>();\r\n\r\n}","import { Component, ElementRef, OnInit, inject, input } from '@angular/core';\r\nimport { ButtonTypeEnum, ButtonIconEnum, ButtonIconPositionEnum,ButtonFontWeights } from './button.enum';\r\nimport { ButtonService } from './button.service';\r\nimport { CommonModule } from '@angular/common';\r\nimport { ButtonModel } from './button.model';\r\nimport { AlertService } from '../alert/alert.service';\r\nimport { AlertComponent } from '../alert/alert.component';\r\nimport { AlertTypesEnum } from '../alert/alert.enum';\r\nimport { AlertModel } from '../alert/alert.model';\r\n\r\nimport { TxtBoxService } from '../txt-box/txt-box.service';\r\n\r\nimport { LabelModel } from '../label/label.model';\r\nimport { LabelService } from '../label/label.service';\r\n\r\n@Component({\r\n selector: 'app-button',\r\n standalone: true,\r\n imports: [CommonModule,AlertComponent],\r\n templateUrl: './button.component.html',\r\n styleUrl: './button.component.css'\r\n})\r\nexport class ButtonComponent implements OnInit {\r\n\r\n\r\n _BackGroundColor : string = '';\r\n _ButtonType = input.required<ButtonTypeEnum>();\r\n _BorderRadius = input.required<number>();\r\n _Width = input.required<number>();\r\n _Height= input.required<number>();\r\n ngStyle! : object;\r\n\r\n _Icon = input.required<ButtonIconEnum>();\r\n _IconFontSize :number = 0;\r\n _IconOrientation : string = '';\r\n _IconMarginType : string = '';\r\n _IconDistanceFromTextObject : object = {};\r\n _IconColor :string = '';\r\n _IconDistanceFromText = input.required<number>();\r\n _IconEnabled = input.required<boolean>();\r\n\r\n _TextColor : string = '';\r\n _Text = input.required<string>();\r\n _FontSize = input.required<number>();\r\n _FontWeight = input.required<ButtonFontWeights>();\r\n _TextFontFamily =input.required<string>();\r\n _TextEnabled = input.required<boolean>();\r\n\r\n name = input.required<string>();\r\n BackGroundColorNormal = input.required<string>();\r\n BackGroundColorHover = input.required<string>();\r\n IconColorNormal = input.required<string>();\r\n IconColorHover = input.required<string>();\r\n TextColorNormal = input.required<string>();\r\n TextColorHover = input.required<string>();\r\n IconOrientation = input.required<ButtonIconPositionEnum>();\r\n \r\n\r\n\r\n _LoadingState :boolean = false; ;\r\n _AlertState : boolean = false;\r\n\r\n ButtonModel = new ButtonModel();\r\n\r\n ButtonService = inject(ButtonService);\r\n AlertService = inject(AlertService);\r\n\r\n TxtBoxService = inject(TxtBoxService);\r\n AlertModel = new AlertModel();\r\n\r\n LabelService = inject(LabelService);\r\n LabelModel = new LabelModel();\r\n\r\n readonly AlertTypesEnum = AlertTypesEnum;\r\n\r\n \r\n constructor(private element : ElementRef){}\r\n\r\n\r\n \r\n\r\n ngOnInit(): void {\r\n //Limpa as Memórias de Estado\r\n this._BackGroundColor = '';\r\n this._IconColor = '';\r\n this._TextColor = '';\r\n this._IconDistanceFromTextObject = {};\r\n this._IconFontSize = 0;\r\n this._IconOrientation = '';\r\n this.ButtonModel = new ButtonModel();\r\n this._LoadingState = false;\r\n this._AlertState = false;\r\n this.ngStyle = {};\r\n\r\n\r\n this._BackGroundColor = this.BackGroundColorNormal();\r\n this._IconColor = this.IconColorNormal();\r\n this._TextColor = this.TextColorNormal();\r\n this._IconFontSize = this._FontSize() *1.25;\r\n\r\n this.startListenToLoadingState();\r\n this.startListenToAlertState();\r\n \r\n switch (this.IconOrientation()){\r\n case (ButtonIconPositionEnum.Top):\r\n this._IconOrientation = 'column'\r\n this._IconDistanceFromTextObject = this._TextEnabled() ? {'margin-bottom': this._IconDistanceFromText().toString() + 'px'} : {};\r\n break\r\n case (ButtonIconPositionEnum.Right):\r\n this._IconOrientation = 'row-reverse'\r\n this._IconDistanceFromTextObject = this._TextEnabled() ? {'margin-left': this._IconDistanceFromText().toString() + 'px'} : {}\r\n break\r\n case (ButtonIconPositionEnum.Bottom):\r\n this._IconOrientation = 'column-reverse'\r\n this._IconDistanceFromTextObject = this._TextEnabled() ? {'margin-top': this._IconDistanceFromText().toString() + 'px'} : {}\r\n break\r\n case (ButtonIconPositionEnum.Left):\r\n this._IconDistanceFromTextObject = this._TextEnabled() ? {'margin-right': this._IconDistanceFromText().toString() + 'px'} : {}\r\n break\r\n }\r\n this.ngStyle = {\r\n 'box-shadow': (this._FontSize()/8)+'px' + (this._FontSize()/4)+'px' + (this._FontSize()/4)+'px' + '0px' + 'rgba(0, 0, 0, 0.25)',\r\n 'flex-direction':this._IconOrientation\r\n }\r\n \r\n }\r\n\r\n OnMouseOver(){\r\n this._BackGroundColor = this.BackGroundColorHover();\r\n this._IconColor = this.IconColorHover();\r\n this._TextColor = this.TextColorHover();\r\n }\r\n\r\n OnMouseOut(){\r\n this._BackGroundColor = this.BackGroundColorNormal();\r\n this._IconColor = this.IconColorNormal();\r\n this._TextColor = this.TextColorNormal();\r\n }\r\n\r\n OnClick(){\r\n\r\n this.ButtonModel.name = this.name();\r\n this.ButtonModel.state = true;\r\n\r\n this.ButtonService.click.next(this.ButtonModel);\r\n this.ButtonService.loadingState.next(this.ButtonModel);\r\n \r\n }\r\n \r\n\r\n startListenToLoadingState(){\r\n this.ButtonService.loadingState.subscribe((callerData:ButtonModel)=>{\r\n if(this.name() == callerData.name){\r\n this._LoadingState = callerData.state;\r\n } \r\n })\r\n }\r\n\r\n startListenToAlertState(){\r\n this.TxtBoxService.alertState.subscribe((callerData:AlertModel)=>{\r\n if(this.name() == callerData.alertsFatherName){\r\n callerData.top = this.element.nativeElement.getBoundingClientRect().top - this.element.nativeElement.offsetHeight\r\n callerData.left = this.element.nativeElement.getBoundingClientRect().left + this.element.nativeElement.offsetWidth\r\n callerData.alertsName = this.ButtonModel.name +'-alert';\r\n this.AlertService.wasOpenned.next(callerData);\r\n } \r\n })\r\n }\r\n\r\n\r\n\r\n}\r\n","\r\n<button\r\ntype=\"{{_ButtonType()}}\"\r\n[style.background-color]=\"_BackGroundColor\"\r\n[style.border-radius]=\"_BorderRadius().toString()+'px'\"\r\n[style.width]=\"_Width()+ 'px'\"\r\n[style.height]=\"_Height()+ 'px'\"\r\n[ngStyle]=\"ngStyle\"\r\n(mouseover)=\"OnMouseOver()\"\r\n(mouseout)=\"OnMouseOut()\"\r\n(click)=\"OnClick()\"\r\n\r\n>\r\n \r\n <i\r\n class=\"{{_Icon()}}\"\r\n [style.color]=\"_IconColor\"\r\n [style.font-size]=\"_IconFontSize +'px'\"\r\n [style.display]=\"_IconEnabled() && !_LoadingState ? '' : 'none'\"\r\n [ngStyle]=\"_IconDistanceFromTextObject\"\r\n >\r\n </i>\r\n\r\n <i\r\n class=\"loader\"\r\n [style.width]=\"_FontSize()+'px'\"\r\n [style.height]=\"_FontSize()+'px'\"\r\n [style.display]=\"_LoadingState ? 'inline-block' : 'none'\"\r\n [style.--loaderColor]=\"_TextColor\"\r\n [style.--loaderBorderSize]=\"(_FontSize()*0.15)+'px'\"\r\n >\r\n </i>\r\n\r\n <p\r\n [style.font-size]=\"_FontSize() +'px'\"\r\n [style.font-family]=\"_TextFontFamily()\"\r\n [style.font-weight]=\"_FontWeight()\"\r\n [style.color]=\"_TextColor\"\r\n [style.display]=\"_TextEnabled() && !_LoadingState ? '' : 'none'\"\r\n >{{_Text()}}\r\n </p>\r\n\r\n</button>\r\n<app-alert\r\n[Name]=\"name()+'-alert'\"\r\n[_FontSize]=\"_FontSize()\"\r\n[_FontFamily]=\"_TextFontFamily()\"\r\n[_FontWeight]=\"_FontWeight()\"\r\n/>\r\n \r\n","export enum ListItemIcons{\r\n User = \"fi fi-sr-user\",\r\n Lock = \"fi fi-sr-lock\",\r\n EyeOpen = \"fi fi-ss-eye\",\r\n EyeClose = \"fi fi-ss-eye-crossed\",\r\n ItemClosed = \"fi fi-tr-caret-down\",\r\n ItemOpenned = \"fi fi-rr-caret-down\",\r\n Done = \"fi fi-sr-octagon-check\",\r\n Doing = \"fi fi-br-duration-alt\",\r\n NotDone = \"fi fi-sr-cross-circle\",\r\n Alert = \"fi fi-sr-exclamation\",\r\n Close = \"fi fi-br-cross\",\r\n Home = \"fi fi-sr-home\",\r\n Key = \"fi fi-sr-key\",\r\n Company = \"fi fi-rs-building\",\r\n NoteBook = \"fi fi-br-notebook-alt\",\r\n AddFile = \"fi fi-rr-add-document\"\r\n\r\n}\r\nexport enum ListItemPositions{\r\n Top,\r\n Center\r\n}\r\nexport enum ListItemFontWeights{\r\n Thin = 100,\r\n ExtraLight = 200,\r\n Light = 300,\r\n Regular = 400,\r\n Medium = 500,\r\n SemiBold = 600,\r\n Bold = 700,\r\n Extrabold = 800,\r\n Black = 900,\r\n}","import { Component,input, OnInit,inject } from '@angular/core';\r\nimport { ListItemIcons, ListItemPositions, ListItemFontWeights } from './list-item.enum';\r\nimport { ButtonModel } from '../button/button.model';\r\nimport { ButtonService } from '../button/button.service';\r\n\r\n\r\n@Component({\r\n selector: 'app-list-item',\r\n standalone: true,\r\n imports: [],\r\n templateUrl: './list-item.component.html',\r\n styleUrl: './list-item.component.css'\r\n})\r\nexport class ListItemComponent implements OnInit {\r\n\r\n \r\n Name = input.required<string>();\r\n\r\n //Container\r\n _ItemBackGroundColorNormal = input.required<string>();\r\n _ItemBackGroundColorHover = input.required<string>();\r\n\r\n //ItemNumber\r\n _ItemNumberEnabled = input.required<boolean>();\r\n _ItemNumberText = input.required<string>();\r\n _ItemNumberFontFamily = input.required<string>();\r\n _ItemNumberFontWeight = input.required<ListItemFontWeights>();\r\n _ItemNumberFontColor = input.required<string>();\r\n _ItemNumberPosition = input.required<ListItemPositions>();\r\n _ItemNumberMarginTop : number = 0;\r\n _ItemNumberMarginLeft : number = 0;\r\n _ItemNumberMarginRight : number = 0;\r\n\r\n //IconStatus]\r\n _IconEnabled = input.required<boolean>();\r\n _Icon = input.required<ListItemIcons>();\r\n _IconColor = input.required<string>();\r\n _IconMarginLeft : number = 0;\r\n _IconMarginRight : number = 0;\r\n\r\n //TextContainer\r\n _TextContainerMarginLeft : number = 0;\r\n _TextContainerMarginRight : number = 0;\r\n\r\n //Title\r\n _TitleText = input.required<string>();\r\n _TitleFontFamily = input.required<string>();\r\n _TitleFontColor = input.required<string>();\r\n _TitleFontWeight = input.required<ListItemFontWeights>();\r\n\r\n //SubTitle\r\n _SubTitleEnabled = input.required<boolean>();\r\n _SubTitleText = input.required<string>();\r\n _SubTitleFontFamily = input.required<string>();\r\n _SubTitleFontColor = input.required<string>();\r\n _SubTitleFontWeight = input.required<ListItemFontWeights>();\r\n\r\n //iconOpenItem\r\n _IconOpenItemColor = input.required<string>();\r\n\r\n _FontSize = input.required<number>();\r\n \r\n\r\n //Internals\r\n readonly _ListItemIcons = ListItemIcons;\r\n readonly ListItePositions = ListItemPositions;\r\n ItemStateOpen : boolean = false;\r\n\r\n ButtonModel! : ButtonModel;\r\n ButtonService = inject(ButtonService);\r\n\r\n ngOnInit(): void {\r\n\r\n this.ButtonModel = new ButtonModel();\r\n \r\n \r\n //Zera Memorias\r\n this._ItemNumberMarginTop = 0;\r\n this._ItemNumberMarginLeft = 0;\r\n this._ItemNumberMarginRight = 0;\r\n this._IconMarginLeft = 0;\r\n this._IconMarginRight = 0;\r\n this._TextContainerMarginLeft = 0;\r\n\r\n if(this._ItemNumberEnabled()){\r\n this._ItemNumberMarginTop = this._ItemNumberPosition() == this.ListItePositions.Top ? (this._FontSize()*0.5) : ((this._FontSize()*3.777/2)-this._FontSize()/2);\r\n this._ItemNumberMarginLeft = this._FontSize()*0.5;\r\n this._ItemNumberMarginRight = this._FontSize()*0.361;\r\n this._IconMarginLeft = this._FontSize()*0.361;\r\n this._IconMarginRight = this._FontSize()*0.361;\r\n this._TextContainerMarginLeft = this._FontSize()*0.722;\r\n\r\n }else{\r\n if(this._IconEnabled()){\r\n this._IconMarginLeft = this._FontSize()*0.722;\r\n this._IconMarginRight = this._FontSize()*0.722;\r\n this._TextContainerMarginLeft = this._FontSize()*0.722;\r\n }else{\r\n this._TextContainerMarginLeft = this._FontSize()*2;\r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n OnClick(){\r\n this.ItemStateOpen = this.ItemStateOpen ? false : true;\r\n\r\n this.ButtonModel.name = 'btn01';\r\n this.ButtonModel.state = false;\r\n\r\n this.ButtonService.loadingState.next(this.ButtonModel);\r\n }\r\n\r\n}\r\n","\r\n<div class=\"wrapper\"\r\n[style.width]=\"(_FontSize()*18.611)+'px'\"\r\n[style.height]=\"ItemStateOpen? 'auto' : (_FontSize()*3.777)+'px'\"\r\n>\r\n <div class=\"container\"\r\n (click)=\"OnClick()\"\r\n [style.width]=\"(_FontSize()*18.611)+'px'\"\r\n [style.height]=\"(_FontSize()*3.777)+'px'\"\r\n >\r\n\r\n <p class=\"ItemNumber\"\r\n [style.display]=\"_ItemNumberEnabled() ? '' : 'none'\"\r\n [style.font-family]=\"_ItemNumberFontFamily()\"\r\n [style.font-weight]=\"_ItemNumberFontWeight()\"\r\n [style.color]=\"_ItemNumberFontColor()\"\r\n [style.font-size]=\"_ItemNumberPosition() == ListItePositions.Top ? (_FontSize()*0.833)+'px' : (_FontSize())+'px' \"\r\n [style.margin-top]=\"_ItemNumberMarginTop +'px'\"\r\n [style.margin-left]=\"_ItemNumberMarginLeft+'px'\"\r\n [style.margin-right]=\"_ItemNumberMarginRight+'px'\"\r\n >\r\n {{_ItemNumberText()}}\r\n </p>\r\n\r\n <i class=\"{{_Icon()}}\"\r\n [style.display]=\"_IconEnabled() ? '' : 'none'\"\r\n [style.color]=\"_IconColor()\"\r\n [style.font-size]=\"(_FontSize()*1.111)+'px'\"\r\n [style.margin-left]=\"_IconMarginLeft+'px'\"\r\n [style.margin-right]=\"_IconMarginRight+'px'\"\r\n ></i>\r\n\r\n <div class=\"TextContainer\"\r\n [style.margin-left]=\"_TextContainerMarginLeft +'px'\"\r\n >\r\n\r\n <h1 class=\"title\"\r\n [style.font-family]=\"_TitleFontFamily()\"\r\n [style.color]=\"_TitleFontColor()\"\r\n [style.font-size]=\"_FontSize()+'px'\"\r\n [style.font-weight]=\"_TitleFontWeight()\"\r\n >\r\n {{_TitleText()}}\r\n </h1>\r\n\r\n <h2 class=\"sub-title\"\r\n [style.display]=\"_SubTitleEnabled() ? '' : 'none'\"\r\n [style.font-family]=\"_SubTitleFontFamily()\"\r\n [style.color]=\"_SubTitleFontColor()\"\r\n [style.font-size]=\"(_FontSize()*0.833)+'px'\"\r\n [style.font-weight]=\"_SubTitleFontWeight()\"\r\n >\r\n {{_SubTitleText()}}\r\n </h2>\r\n\r\n </div>\r\n\r\n <div class=\"IconOpenItemContainer\">\r\n <i class=\"{{ItemStateOpen? _ListItemIcons.ItemOpenned : _ListItemIcons.ItemClosed}} ItemOpenState\"\r\n [class.ItemOpenState]=\"ItemStateOpen\"\r\n [class.ItemCloseState]=\"!ItemStateOpen\"\r\n [style.color]=\"_IconOpenItemColor()\"\r\n [style.font-size]=\"(_FontSize()*1.666)+'px'\"\r\n ></i>\r\n </div>\r\n\r\n\r\n </div>\r\n <div class=\"containerWrapped\"\r\n [style.display]=\"ItemStateOpen ? '' : 'none'\"\r\n >\r\n <ng-content/>\r\n </div>\r\n\r\n\r\n</div>\r\n\r\n","export class ListItemModel{\r\n name : string ='';\r\n}","import {Injectable } from \"@angular/core\";\r\nimport { Subject } from 'rxjs';\r\nimport { ListItemModel } from \"./list-item.model\";\r\n\r\n@Injectable({providedIn:'root'})\r\nexport class ListItemService{\r\n\r\n public open = new Subject<ListItemModel>();\r\n\r\n}","export enum LabelIconPositionEnum{\r\n Top,\r\n Right,\r\n Bottom,\r\n Left\r\n}\r\nexport enum LabelIconEnum{\r\n User = \"fi fi-sr-user\",\r\n Lock = \"fi fi-sr-lock\",\r\n EyeOpen = \"fi fi-ss-eye\",\r\n EyeClose = \"fi fi-ss-eye-crossed\",\r\n ItemClosed = \"fi fi-tr-caret-down\",\r\n ItemOpenned = \"fi fi-rr-caret-down\",\r\n Done = \"fi fi-sr-octagon-check\",\r\n Doing = \"fi fi-br-duration-alt\",\r\n NotDone = \"fi fi-sr-cross-circle\",\r\n Alert = \"fi fi-sr-exclamation\",\r\n Close = \"fi fi-br-cross\",\r\n Home = \"fi fi-sr-home\",\r\n Key = \"fi fi-sr-key\",\r\n Company = \"fi fi-rs-building\",\r\n NoteBook = \"fi fi-br-notebook-alt\",\r\n AddFile = \"fi fi-rr-add-document\"\r\n}\r\nexport enum LabelFontWeights{\r\n Thin = 100,\r\n ExtraLight = 200,\r\n Light = 300,\r\n Regular = 400,\r\n Medium = 500,\r\n SemiBold = 600,\r\n Bold = 700,\r\n Extrabold = 800,\r\n Black = 900,\r\n}","import { Component, OnInit,input,inject } from '@angular/core';\r\nimport { LabelModel } from './label.model';\r\nimport { LabelService } from './label.service';\r\nimport { LabelFontWeights,LabelIconEnum,LabelIconPositionEnum } from './label.enum';\r\nimport { CommonModule } from '@angular/common';\r\n\r\n@Component({\r\n selector: 'app-label',\r\n imports: [CommonModule],\r\n templateUrl: './label.component.html',\r\n styleUrl: './label.component.css'\r\n})\r\nexport class LabelComponent implements OnInit {\r\n\r\n ngOnInit(): void {\r\n\r\n this.LabelModel = new LabelModel();\r\n\r\n this.setIconOrientationOnTemplate();\r\n }\r\n\r\n Name = input.required<string>();\r\n\r\n _IconEnabled = input.required<boolean>() ;\r\n _Icon= input.required<LabelIconEnum>();\r\n _IconColor= input.required<string>();\r\n IconOrientation= input.required<LabelIconPositionEnum>() ;\r\n _IconOrientation! : string;\r\n _IconDistanceFromTextObject! : object;\r\n IconDistanceFromText= input.required<number>(); \r\n\r\n _TextEnabled= input.required<boolean>();\r\n _TextFontFamily= input.required<string>() ;\r\n _Text= input.required<string>();\r\n _TextColor= input.required<string>();\r\n _TextFontWeight = input.required<LabelFontWeights>();\r\n _TextFontSize= input.required<number>();\r\n\r\n\r\n\r\n LabelModel! : LabelModel;\r\n LabelService = inject(LabelService)\r\n\r\n\r\n setIconOrientationOnTemplate(){\r\n switch (this.IconOrientation()){\r\n case (LabelIconPositionEnum.Top):\r\n this._IconOrientation = 'column'\r\n this._IconDistanceFromTextObject = this._TextEnabled() ? {'margin-bottom': this.IconDistanceFromText().toString() + 'px'} : {};\r\n break\r\n case (LabelIconPositionEnum.Right):\r\n this._IconOrientation = 'row-reverse'\r\n this._IconDistanceFromTextObject = this._TextEnabled() ? {'margin-left': this.IconDistanceFromText().toString() + 'px'} : {}\r\n break\r\n case (LabelIconPositionEnum.Bottom):\r\n this._IconOrientation = 'column-reverse'\r\n this._IconDistanceFromTextObject = this._TextEnabled() ? {'margin-top': this.IconDistanceFromText().toString() + 'px'} : {}\r\n break\r\n case (LabelIconPositionEnum.Left):\r\n this._IconDistanceFromTextObject = this._TextEnabled() ? {'margin-right': this.IconDistanceFromText().toString() + 'px'} : {}\r\n break\r\n }\r\n }\r\n\r\n}\r\n","<div class=\"container\"\r\n[ngStyle]=\"{'flex-direction':_IconOrientation}\"\r\n>\r\n\r\n <i\r\n class=\"{{_Icon()}}\"\r\n [style.color]=\"_IconColor()\"\r\n [style.font-size]=\"(_TextFontSize() *1.25)+'px'\"\r\n [style.display]=\"_IconEnabled() ? '' : 'none'\"\r\n [ngStyle]=\"_IconDistanceFromTextObject\"\r\n >\r\n </i>\r\n\r\n\r\n <p\r\n [style.font-size]=\"_TextFontSize() +'px'\"\r\n [style.font-family]=\"_TextFontFamily()\"\r\n [style.font-weight]=\"_TextFontWeight()\"\r\n [style.color]=\"_TextColor()\"\r\n [style.display]=\"_TextEnabled() ? '' : 'none'\"\r\n >{{_Text()}}\r\n </p>\r\n</div>","/*\r\n * Public API Surface of lightning-tec-br-angular-components\r\n */\r\n\r\nexport * from './lib/txt-box/txt-box.component';\r\nexport * from './lib/txt-box/txt-box.enum';\r\nexport * from './lib/txt-box/txt-box.model';\r\nexport * from './lib/txt-box/txt-box.service';\r\n\r\nexport * from './lib/button/button.component';\r\nexport * from './lib/button/button.enum';\r\nexport * from './lib/button/button.model';\r\nexport * from './lib/button/button.service';\r\n\r\nexport * from './lib/list-item/list-item.component';\r\nexport * from './lib/list-item/list-item.enum';\r\nexport * from './lib/list-item/list-item.model';\r\nexport * from './lib/list-item/list-item.service';\r\n\r\nexport * from './lib/alert/alert.component';\r\nexport * from './lib/alert/alert.enum';\r\nexport * from './lib/alert/alert.model';\r\nexport * from './lib/alert/alert.service';\r\n\r\nexport * from './lib/label/label.component';\r\nexport * from './lib/label/label.enum';\r\nexport * from './lib/label/label.model';\r\nexport * from './lib/label/label.service';\r\n\r\n\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i1"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"lightning-tec-br-angular-components.mjs","sources":["../../../projects/lightning-tec-br-angular-components/src/lib/txt-box/txt-box.enum.ts","../../../projects/lightning-tec-br-angular-components/src/lib/txt-box/txt-box.service.ts","../../../projects/lightning-tec-br-angular-components/src/lib/txt-box/txt-box.model.ts","../../../projects/lightning-tec-br-angular-components/src/lib/alert/alert.enum.ts","../../../projects/lightning-tec-br-angular-components/src/lib/alert/alert.service.ts","../../../projects/lightning-tec-br-angular-components/src/lib/alert/alert.model.ts","../../../projects/lightning-tec-br-angular-components/src/lib/alert/alert.component.ts","../../../projects/lightning-tec-br-angular-components/src/lib/alert/alert.component.html","../../../projects/lightning-tec-br-angular-components/src/lib/txt-box/txt-box.component.ts","../../../projects/lightning-tec-br-angular-components/src/lib/txt-box/txt-box.component.html","../../../projects/lightning-tec-br-angular-components/src/lib/button/button.enum.ts","../../../projects/lightning-tec-br-angular-components/src/lib/button/button.service.ts","../../../projects/lightning-tec-br-angular-components/src/lib/button/button.model.ts","../../../projects/lightning-tec-br-angular-components/src/lib/label/label.model.ts","../../../projects/lightning-tec-br-angular-components/src/lib/label/label.service.ts","../../../projects/lightning-tec-br-angular-components/src/lib/button/button.component.ts","../../../projects/lightning-tec-br-angular-components/src/lib/button/button.component.html","../../../projects/lightning-tec-br-angular-components/src/lib/list-item/list-item.enum.ts","../../../projects/lightning-tec-br-angular-components/src/lib/list-item/list-item.component.ts","../../../projects/lightning-tec-br-angular-components/src/lib/list-item/list-item.component.html","../../../projects/lightning-tec-br-angular-components/src/lib/list-item/list-item.model.ts","../../../projects/lightning-tec-br-angular-components/src/lib/list-item/list-item.service.ts","../../../projects/lightning-tec-br-angular-components/src/lib/label/label.enum.ts","../../../projects/lightning-tec-br-angular-components/src/lib/label/label.component.ts","../../../projects/lightning-tec-br-angular-components/src/lib/label/label.component.html","../../../projects/lightning-tec-br-angular-components/src/lib/table/table.enum.ts","../../../projects/lightning-tec-br-angular-components/src/lib/table/table.service.ts","../../../projects/lightning-tec-br-angular-components/src/lib/table/table.component.ts","../../../projects/lightning-tec-br-angular-components/src/lib/table/table.component.html","../../../projects/lightning-tec-br-angular-components/src/lib/table/table.model.ts","../../../projects/lightning-tec-br-angular-components/src/public-api.ts","../../../projects/lightning-tec-br-angular-components/src/lightning-tec-br-angular-components.ts"],"sourcesContent":["export enum TxtBoxTypesEnum{\r\n Email,\r\n Password\r\n}\r\nexport enum TxtBoxInputTypesEnum{\r\n Text = 'text',\r\n Password = 'password'\r\n}\r\nexport enum TxtBoxIconsEnum{\r\n User = \"fi fi-sr-user\",\r\n Lock = \"fi fi-sr-lock\",\r\n EyeOpen = \"fi fi-ss-eye\",\r\n EyeClose = \"fi fi-ss-eye-crossed\",\r\n ItemClosed = \"fi fi-tr-caret-down\",\r\n ItemOpenned = \"fi fi-rr-caret-down\",\r\n Done = \"fi fi-sr-octagon-check\",\r\n Doing = \"fi fi-br-duration-alt\",\r\n NotDone = \"fi fi-sr-cross-circle\",\r\n Alert = \"fi fi-sr-exclamation\",\r\n Close = \"fi fi-br-cross\",\r\n Home = \"fi fi-sr-home\",\r\n Key = \"fi fi-sr-key\",\r\n Company = \"fi fi-rs-building\",\r\n NoteBook = \"fi fi-br-notebook-alt\",\r\n AddFile = \"fi fi-rr-add-document\"\r\n}\r\nexport enum TxtBoxFontWeights{\r\n Thin = 100,\r\n ExtraLight = 200,\r\n Light = 300,\r\n Regular = 400,\r\n Medium = 500,\r\n SemiBold = 600,\r\n Bold = 700,\r\n Extrabold = 800,\r\n Black = 900,\r\n}","import {Injectable } from \"@angular/core\";\r\nimport { Subject } from 'rxjs';\r\nimport { TxtBoxModel } from \"./txt-box.model\";\r\nimport { AlertModel } from \"../alert/alert.model\";\r\n\r\n@Injectable({providedIn:'root'})\r\nexport class TxtBoxService{\r\n\r\n public value = new Subject<TxtBoxModel>();\r\n public alertState = new Subject<AlertModel>()\r\n\r\n}","export class TxtBoxModel{\r\n name : string = '';\r\n value : string = '';\r\n}","export enum AlertIconsEnum{\r\n User = \"fi fi-sr-user\",\r\n Lock = \"fi fi-sr-lock\",\r\n EyeOpen = \"fi fi-ss-eye\",\r\n EyeClose = \"fi fi-ss-eye-crossed\",\r\n ItemClosed = \"fi fi-tr-caret-down\",\r\n ItemOpenned = \"fi fi-rr-caret-down\",\r\n Done = \"fi fi-sr-octagon-check\",\r\n Doing = \"fi fi-br-duration-alt\",\r\n NotDone = \"fi fi-sr-cross-circle\",\r\n Alert = \"fi fi-sr-exclamation\",\r\n Close = \"fi fi-br-cross\",\r\n Home = \"fi fi-sr-home\",\r\n Key = \"fi fi-sr-key\",\r\n Company = \"fi fi-rs-building\",\r\n NoteBook = \"fi fi-br-notebook-alt\",\r\n AddFile = \"fi fi-rr-add-document\"\r\n}\r\n\r\nexport enum AlertTypesEnum{\r\n Done,\r\n Alert,\r\n NotDone\r\n}","import {Injectable } from \"@angular/core\";\r\nimport { Subject } from 'rxjs';\r\nimport { AlertModel } from \"./alert.model\";\r\n\r\n@Injectable({providedIn:'root'})\r\nexport class AlertService{\r\n\r\n public wasOpenned = new Subject<AlertModel>();\r\n public wasClosed = new Subject<AlertModel>();\r\n \r\n}","import { AlertTypesEnum } from \"./alert.enum\";\r\n\r\nexport class AlertModel{\r\n alertsName : string = '';\r\n alertsFatherName : string = '';\r\n top : number = 0;\r\n left : number = 0\r\n type! : AlertTypesEnum ;\r\n text : string = '';\r\n wasClosed: boolean = false;\r\n}\r\n","import { Component,HostListener,inject,input, OnInit } from '@angular/core';\r\nimport { AlertTypesEnum,AlertIconsEnum } from './alert.enum';\r\nimport { AlertService } from './alert.service';\r\nimport { ChangeDetectorRef } from '@angular/core';\r\nimport { AlertModel } from './alert.model';\r\n\r\n@Component({\r\n selector: 'app-alert',\r\n standalone: true,\r\n imports: [],\r\n templateUrl: './alert.component.html',\r\n styleUrl: './alert.component.css'\r\n})\r\nexport class AlertComponent implements OnInit {\r\n\r\n\r\n Name = input.required<string>();\r\n _FontSize = input.required<number>();\r\n _FontFamily = input.required<string>();\r\n _FontWeight = input.required<number>();\r\n _FontColor :string ='white';\r\n _Text : string = '';\r\n\r\n _PositionY : number = 0;\r\n _PositionX : number = 0;\r\n\r\n AlertType! : AlertTypesEnum ;\r\n _Icon : string = '';\r\n BackgroundColor : string = '';\r\n _IconClose : string = '';\r\n\r\n\r\n isVisible : boolean = false;\r\n\r\n\r\n AlertService = inject(AlertService);\r\n AlertModel! : AlertModel;\r\n\r\n constructor(private cd: ChangeDetectorRef) {}\r\n\r\n ngOnInit(): void {\r\n this._PositionX = 0;\r\n this._PositionY = 0;\r\n this._FontColor = 'white';\r\n this._Icon = '';\r\n this.BackgroundColor = '';\r\n this._IconClose ='';\r\n this.AlertModel = new AlertModel();\r\n\r\n\r\n this._IconClose = AlertIconsEnum.Close;\r\n\r\n\r\n this.startListenToAlertShowed();\r\n\r\n \r\n }\r\n\r\n OnClose(){\r\n this.isVisible = false;\r\n this.AlertModel.alertsName = this.Name();\r\n this.AlertModel.wasClosed = true;\r\n this.AlertService.wasClosed.next(this.AlertModel);\r\n }\r\n\r\n startListenToAlertShowed(){\r\n this.AlertService.wasOpenned.subscribe((AlertModel : AlertModel)=>{\r\n if(this.Name() == AlertModel.alertsName){\r\n this._Text = AlertModel.text;\r\n this.AlertType = AlertModel.type;\r\n this._PositionY = AlertModel.top;\r\n this._PositionX = AlertModel.left;\r\n this.isVisible = true;\r\n switch(this.AlertType){\r\n case (AlertTypesEnum.Done):\r\n this._Icon = AlertIconsEnum.Done;\r\n this.BackgroundColor = '#008B10';\r\n this._FontColor = 'white'\r\n break;\r\n case (AlertTypesEnum.Alert):\r\n this._Icon = AlertIconsEnum.Alert;\r\n this.BackgroundColor = '#DFCD00';\r\n this._FontColor = 'black'\r\n break;\r\n case (AlertTypesEnum.NotDone):\r\n this._Icon = AlertIconsEnum.NotDone;\r\n this.BackgroundColor = '#D40000';\r\n this._FontColor = 'white'\r\n break;\r\n }\r\n }\r\n\r\n })\r\n }\r\n\r\n\r\n \r\n\r\n\r\n}\r\n","<div class=\"container\"\r\n[style.background-color]=\"BackgroundColor\"\r\n[style.border-radius]=\"(_FontSize()*0.5) + 'px'\"\r\n[style.color]=\"_FontColor\"\r\n[style.display]=\"isVisible ? '' : 'none'\"\r\n[style.top]=\"_PositionY + 'px'\"\r\n[style.left]=\"_PositionX + 'px'\"\r\n>\r\n\r\n <i class=\"{{_IconClose}}\"\r\n [style.font-size]=\"(_FontSize()*1) + 'px'\"\r\n [style.padding-top]=\"(_FontSize()*0.6) + 'px'\"\r\n [style.padding-right]=\"(_FontSize()*0.6) + 'px'\"\r\n (click)=\"OnClose()\"\r\n >\r\n\r\n </i>\r\n\r\n <div class=\"container-text\"\r\n [style.margin-right]=\"_FontSize() + 'px'\"\r\n [style.padding-top]=\"(_FontSize()*0.4) + 'px'\"\r\n [style.padding-bottom]=\"(_FontSize()*1) + 'px'\"\r\n [style.padding-right]=\"(_FontSize()*1) + 'px'\"\r\n [style.padding-left]=\"(_FontSize()*1) + 'px'\"\r\n >\r\n <i class=\"{{_Icon}}\"\r\n [style.font-size]=\"(_FontSize()*1.2) + 'px'\"\r\n [style.margin-right]=\"(_FontSize()*0.5) + 'px'\"\r\n >\r\n \r\n </i>\r\n <h1\r\n [style.font-family]=\"_FontFamily()\"\r\n [style.font-weight]=\"_FontWeight()\"\r\n [style.font-size]=\"_FontSize() + 'px'\"\r\n >\r\n {{_Text}}\r\n </h1>\r\n </div>\r\n\r\n\r\n\r\n\r\n</div>\r\n","import { Component,ElementRef,inject,input, OnInit } from '@angular/core';\r\nimport {FormsModule} from '@angular/forms';\r\nimport { TxtBoxTypesEnum, TxtBoxIconsEnum, TxtBoxInputTypesEnum, TxtBoxFontWeights } from './txt-box.enum';\r\nimport { TxtBoxService } from './txt-box.service';\r\nimport { CommonModule } from '@angular/common';\r\nimport { TxtBoxModel } from './txt-box.model';\r\nimport { AlertComponent } from '../alert/alert.component';\r\nimport { AlertTypesEnum } from '../alert/alert.enum';\r\nimport { AlertService } from '../alert/alert.service';\r\nimport { AlertModel } from '../alert/alert.model';\r\n\r\n\r\n\r\n@Component({\r\n selector: 'app-txt-box',\r\n standalone: true,\r\n imports: [FormsModule,CommonModule,AlertComponent],\r\n templateUrl: './txt-box.component.html',\r\n styleUrl: './txt-box.component.css',\r\n})\r\nexport class TxtBoxComponent implements OnInit {\r\n\r\n //Template Properties\r\n _iconInput = input.required<TxtBoxIconsEnum>();\r\n _nameInput = input.required<string>();\r\n _idInput = input<string>();\r\n _placeHolderType : string = '';\r\n _placeHolderValue :string ='';\r\n _iconPassword :string = TxtBoxIconsEnum.EyeOpen;\r\n _CorIcone = input.required<string>();\r\n _CorFont = input.required<string>();\r\n _FontSize = input.required<number>();\r\n _IconEnabled : string = '';\r\n _FontFamily = input.required<string>();\r\n _FontWeight = input.required<TxtBoxFontWeights>();\r\n \r\n\r\n\r\n\r\n //Internal Properties\r\n typeInput = input.required<TxtBoxTypesEnum>();\r\n IconEnabled = input.required<boolean>();\r\n text : string = '';\r\n TxtBoxModel = new TxtBoxModel();\r\n _AlertState : boolean = false;\r\n \r\n readonly AlertTypesEnum = AlertTypesEnum;\r\n\r\n //Services\r\n TxtBoxService = inject(TxtBoxService);\r\n AlertService = inject(AlertService);\r\n\r\n\r\n constructor(private element : ElementRef){}\r\n\r\n\r\n\r\n\r\n\r\n ngOnInit(): void {\r\n\r\n //Limpa as Memórias de Estado\r\n this._IconEnabled = '';\r\n this._placeHolderType = '';\r\n this._placeHolderValue = '';\r\n this._AlertState = false;\r\n this.TxtBoxModel.name = '';\r\n\r\n\r\n this.TxtBoxModel.name = this._nameInput();\r\n this._IconEnabled = this.IconEnabled() ? '' : 'none';\r\n\r\n this.startListenToAlertState();\r\n\r\n switch (this.typeInput()){\r\n\r\n case (TxtBoxTypesEnum.Email):\r\n {\r\n this._placeHolderType = TxtBoxInputTypesEnum.Text;\r\n this._placeHolderValue = 'nome@empresa.com.br'\r\n break;\r\n }\r\n\r\n case (TxtBoxTypesEnum.Password):\r\n {\r\n this._placeHolderType = TxtBoxInputTypesEnum.Password;\r\n this._placeHolderValue = '**********'\r\n break;\r\n }\r\n\r\n }\r\n\r\n }\r\n\r\n onValueChanged(){\r\n \r\n this.TxtBoxModel.name = this._nameInput();\r\n this.TxtBoxService.value.next(this.TxtBoxModel);\r\n\r\n }\r\n\r\n startListenToAlertState(){\r\n this.TxtBoxService.alertState.subscribe((callerData:AlertModel)=>{\r\n if(this._nameInput() == callerData.alertsFatherName){\r\n callerData.top = this.element.nativeElement.getBoundingClientRect().top - (this.element.nativeElement.offsetHeight*1.5)\r\n callerData.left = this.element.nativeElement.getBoundingClientRect().left\r\n callerData.alertsName = this.TxtBoxModel.name +'-alert';\r\n this.AlertService.wasOpenned.next(callerData);\r\n } \r\n })\r\n }\r\n\r\n\r\n \r\n}\r\n\r\n\r\n\r\n\r\n","<div class=\"container\" \r\n[style.width]=\"(_FontSize()*19.375) +'px'\"\r\n[style.height]=\"(_FontSize()*2.5) +'px'\"\r\n[style.border-radius]=\"(_FontSize()*0.3125) +'px'\"\r\n[ngStyle]=\"\r\n{'box-shadow':'\r\nrgb(204, 219, 232)'+ (_FontSize()*0.1875) + 'px '+ (_FontSize()*0.1875) + 'px '+ (_FontSize()*0.375) + 'px 0px inset' + ',' + \r\n'rgba(255, 255, 255, 0.5)'+ (_FontSize()*-0.1875) + 'px '+ (_FontSize()*-0.1875) + 'px '+ (_FontSize()*0.375) + 'px '+ (_FontSize()*0.0625) + 'px inset'\r\n}\r\n\"\r\n>\r\n\r\n <i class=\"{{_iconInput()}} icon\"\r\n [style.color]=\"_CorIcone()\"\r\n [style.font-size]=\"(_FontSize()*1.25) +'px'\"\r\n [style.margin-left]=\"(_FontSize()*0.5625) +'px'\"\r\n [style.display]=\"_IconEnabled\"\r\n ></i>\r\n\r\n <input\r\n type=\"{{_placeHolderType}}\"\r\n name=\"{{_nameInput()}}\"\r\n id=\"{{_idInput()}}\"\r\n placeholder=\"{{_placeHolderValue}}\"\r\n [(ngModel)]=\"TxtBoxModel.value\"\r\n (ngModelChange)=\"onValueChanged()\"\r\n\r\n [style.color]=\"_CorFont()\"\r\n [style.font-family]=\"_FontFamily()\"\r\n [style.font-size]=\"_FontSize()+'px'\"\r\n [style.font-weight]=\"_FontWeight()\"\r\n [style.width]=\"(_FontSize()*15.3125) +'px'\"\r\n [style.margin-left]=\"(_FontSize()*0.375) +'px'\"\r\n >\r\n \r\n\r\n</div>\r\n\r\n<app-alert\r\n[Name]=\"_nameInput()+'-alert'\"\r\n[_FontSize]=\"_FontSize()\"\r\n[_FontFamily]=\"_FontFamily()\"\r\n[_FontWeight]=\"_FontWeight()\"\r\n/>\r\n\r\n\r\n\r\n\r\n","export enum ButtonTypeEnum{\r\n Button = 'button',\r\n Menu = 'menu',\r\n Reset = 'reset',\r\n Submit = 'submit'\r\n\r\n}\r\nexport enum ButtonIconPositionEnum{\r\n Top,\r\n Right,\r\n Bottom,\r\n Left\r\n}\r\nexport enum ButtonIconEnum{\r\n User = \"fi fi-sr-user\",\r\n Lock = \"fi fi-sr-lock\",\r\n EyeOpen = \"fi fi-ss-eye\",\r\n EyeClose = \"fi fi-ss-eye-crossed\",\r\n ItemClosed = \"fi fi-tr-caret-down\",\r\n ItemOpenned = \"fi fi-rr-caret-down\",\r\n Done = \"fi fi-sr-octagon-check\",\r\n Doing = \"fi fi-br-duration-alt\",\r\n NotDone = \"fi fi-sr-cross-circle\",\r\n Alert = \"fi fi-sr-exclamation\",\r\n Close = \"fi fi-br-cross\",\r\n Home = \"fi fi-sr-home\",\r\n Key = \"fi fi-sr-key\",\r\n Company = \"fi fi-rs-building\",\r\n NoteBook = \"fi fi-br-notebook-alt\",\r\n AddFile = \"fi fi-rr-add-document\"\r\n}\r\nexport enum ButtonFontWeights{\r\n Thin = 100,\r\n ExtraLight = 200,\r\n Light = 300,\r\n Regular = 400,\r\n Medium = 500,\r\n SemiBold = 600,\r\n Bold = 700,\r\n Extrabold = 800,\r\n Black = 900,\r\n}","import {Injectable } from \"@angular/core\";\r\nimport { Subject } from 'rxjs';\r\nimport { ButtonModel } from \"./button.model\";\r\n\r\n@Injectable({providedIn:'root'})\r\nexport class ButtonService{\r\n\r\n public click = new Subject<ButtonModel>();\r\n public loadingState = new Subject<ButtonModel>();\r\n public alertState = new Subject<ButtonModel>()\r\n\r\n}","export class ButtonModel{\r\n name : string = '';\r\n state : boolean = false;\r\n}","import { LabelIconPositionEnum,LabelFontWeights,LabelIconEnum } from \"./label.enum\";\r\n\r\nexport class LabelModel{\r\n\r\n name : string = '';\r\n\r\n}","import {Injectable } from \"@angular/core\";\r\nimport { Subject } from 'rxjs';\r\nimport { LabelModel } from \"./label.model\";\r\n\r\n@Injectable({providedIn:'root'})\r\nexport class LabelService{\r\n\r\n stateChanger = new Subject<LabelModel>();\r\n\r\n}","import { Component, ElementRef, OnInit, inject, input } from '@angular/core';\r\nimport { ButtonTypeEnum, ButtonIconEnum, ButtonIconPositionEnum,ButtonFontWeights } from './button.enum';\r\nimport { ButtonService } from './button.service';\r\nimport { CommonModule } from '@angular/common';\r\nimport { ButtonModel } from './button.model';\r\nimport { AlertService } from '../alert/alert.service';\r\nimport { AlertComponent } from '../alert/alert.component';\r\nimport { AlertTypesEnum } from '../alert/alert.enum';\r\nimport { AlertModel } from '../alert/alert.model';\r\n\r\nimport { TxtBoxService } from '../txt-box/txt-box.service';\r\n\r\nimport { LabelModel } from '../label/label.model';\r\nimport { LabelService } from '../label/label.service';\r\n\r\n@Component({\r\n selector: 'app-button',\r\n standalone: true,\r\n imports: [CommonModule,AlertComponent],\r\n templateUrl: './button.component.html',\r\n styleUrl: './button.component.css'\r\n})\r\nexport class ButtonComponent implements OnInit {\r\n\r\n\r\n _BackGroundColor : string = '';\r\n _ButtonType = input.required<ButtonTypeEnum>();\r\n _BorderRadius = input.required<number>();\r\n _Width = input.required<number>();\r\n _Height= input.required<number>();\r\n ngStyle! : object;\r\n\r\n _Icon = input.required<ButtonIconEnum>();\r\n _IconFontSize :number = 0;\r\n _IconOrientation : string = '';\r\n _IconMarginType : string = '';\r\n _IconDistanceFromTextObject : object = {};\r\n _IconColor :string = '';\r\n _IconDistanceFromText = input.required<number>();\r\n _IconEnabled = input.required<boolean>();\r\n\r\n _TextColor : string = '';\r\n _Text = input.required<string>();\r\n _FontSize = input.required<number>();\r\n _FontWeight = input.required<ButtonFontWeights>();\r\n _TextFontFamily =input.required<string>();\r\n _TextEnabled = input.required<boolean>();\r\n\r\n name = input.required<string>();\r\n BackGroundColorNormal = input.required<string>();\r\n BackGroundColorHover = input.required<string>();\r\n IconColorNormal = input.required<string>();\r\n IconColorHover = input.required<string>();\r\n TextColorNormal = input.required<string>();\r\n TextColorHover = input.required<string>();\r\n IconOrientation = input.required<ButtonIconPositionEnum>();\r\n \r\n\r\n\r\n _LoadingState :boolean = false; ;\r\n _AlertState : boolean = false;\r\n\r\n ButtonModel = new ButtonModel();\r\n\r\n ButtonService = inject(ButtonService);\r\n AlertService = inject(AlertService);\r\n\r\n TxtBoxService = inject(TxtBoxService);\r\n AlertModel = new AlertModel();\r\n\r\n LabelService = inject(LabelService);\r\n LabelModel = new LabelModel();\r\n\r\n readonly AlertTypesEnum = AlertTypesEnum;\r\n\r\n \r\n constructor(private element : ElementRef){}\r\n\r\n\r\n \r\n\r\n ngOnInit(): void {\r\n //Limpa as Memórias de Estado\r\n this._BackGroundColor = '';\r\n this._IconColor = '';\r\n this._TextColor = '';\r\n this._IconDistanceFromTextObject = {};\r\n this._IconFontSize = 0;\r\n this._IconOrientation = '';\r\n this.ButtonModel = new ButtonModel();\r\n this._LoadingState = false;\r\n this._AlertState = false;\r\n this.ngStyle = {};\r\n\r\n\r\n this._BackGroundColor = this.BackGroundColorNormal();\r\n this._IconColor = this.IconColorNormal();\r\n this._TextColor = this.TextColorNormal();\r\n this._IconFontSize = this._FontSize() *1.25;\r\n\r\n this.startListenToLoadingState();\r\n this.startListenToAlertState();\r\n \r\n switch (this.IconOrientation()){\r\n case (ButtonIconPositionEnum.Top):\r\n this._IconOrientation = 'column'\r\n this._IconDistanceFromTextObject = this._TextEnabled() ? {'margin-bottom': this._IconDistanceFromText().toString() + 'px'} : {};\r\n break\r\n case (ButtonIconPositionEnum.Right):\r\n this._IconOrientation = 'row-reverse'\r\n this._IconDistanceFromTextObject = this._TextEnabled() ? {'margin-left': this._IconDistanceFromText().toString() + 'px'} : {}\r\n break\r\n case (ButtonIconPositionEnum.Bottom):\r\n this._IconOrientation = 'column-reverse'\r\n this._IconDistanceFromTextObject = this._TextEnabled() ? {'margin-top': this._IconDistanceFromText().toString() + 'px'} : {}\r\n break\r\n case (ButtonIconPositionEnum.Left):\r\n this._IconDistanceFromTextObject = this._TextEnabled() ? {'margin-right': this._IconDistanceFromText().toString() + 'px'} : {}\r\n break\r\n }\r\n this.ngStyle = {\r\n 'box-shadow': (this._FontSize()/8)+'px' + (this._FontSize()/4)+'px' + (this._FontSize()/4)+'px' + '0px' + 'rgba(0, 0, 0, 0.25)',\r\n 'flex-direction':this._IconOrientation\r\n }\r\n \r\n }\r\n\r\n OnMouseOver(){\r\n this._BackGroundColor = this.BackGroundColorHover();\r\n this._IconColor = this.IconColorHover();\r\n this._TextColor = this.TextColorHover();\r\n }\r\n\r\n OnMouseOut(){\r\n this._BackGroundColor = this.BackGroundColorNormal();\r\n this._IconColor = this.IconColorNormal();\r\n this._TextColor = this.TextColorNormal();\r\n }\r\n\r\n OnClick(){\r\n\r\n this.ButtonModel.name = this.name();\r\n this.ButtonModel.state = true;\r\n\r\n this.ButtonService.click.next(this.ButtonModel);\r\n this.ButtonService.loadingState.next(this.ButtonModel);\r\n \r\n }\r\n \r\n\r\n startListenToLoadingState(){\r\n this.ButtonService.loadingState.subscribe((callerData:ButtonModel)=>{\r\n if(this.name() == callerData.name){\r\n this._LoadingState = callerData.state;\r\n } \r\n })\r\n }\r\n\r\n startListenToAlertState(){\r\n this.TxtBoxService.alertState.subscribe((callerData:AlertModel)=>{\r\n if(this.name() == callerData.alertsFatherName){\r\n callerData.top = this.element.nativeElement.getBoundingClientRect().top - this.element.nativeElement.offsetHeight\r\n callerData.left = this.element.nativeElement.getBoundingClientRect().left + this.element.nativeElement.offsetWidth\r\n callerData.alertsName = this.ButtonModel.name +'-alert';\r\n this.AlertService.wasOpenned.next(callerData);\r\n } \r\n })\r\n }\r\n\r\n\r\n\r\n}\r\n","\r\n<button\r\ntype=\"{{_ButtonType()}}\"\r\n[style.background-color]=\"_BackGroundColor\"\r\n[style.border-radius]=\"_BorderRadius().toString()+'px'\"\r\n[style.width]=\"_Width()+ 'px'\"\r\n[style.height]=\"_Height()+ 'px'\"\r\n[ngStyle]=\"ngStyle\"\r\n(mouseover)=\"OnMouseOver()\"\r\n(mouseout)=\"OnMouseOut()\"\r\n(click)=\"OnClick()\"\r\n\r\n>\r\n \r\n <i\r\n class=\"{{_Icon()}}\"\r\n [style.color]=\"_IconColor\"\r\n [style.font-size]=\"_IconFontSize +'px'\"\r\n [style.display]=\"_IconEnabled() && !_LoadingState ? '' : 'none'\"\r\n [ngStyle]=\"_IconDistanceFromTextObject\"\r\n >\r\n </i>\r\n\r\n <i\r\n class=\"loader\"\r\n [style.width]=\"_FontSize()+'px'\"\r\n [style.height]=\"_FontSize()+'px'\"\r\n [style.display]=\"_LoadingState ? 'inline-block' : 'none'\"\r\n [style.--loaderColor]=\"_TextColor\"\r\n [style.--loaderBorderSize]=\"(_FontSize()*0.15)+'px'\"\r\n >\r\n </i>\r\n\r\n <p\r\n [style.font-size]=\"_FontSize() +'px'\"\r\n [style.font-family]=\"_TextFontFamily()\"\r\n [style.font-weight]=\"_FontWeight()\"\r\n [style.color]=\"_TextColor\"\r\n [style.display]=\"_TextEnabled() && !_LoadingState ? '' : 'none'\"\r\n >{{_Text()}}\r\n </p>\r\n\r\n</button>\r\n<app-alert\r\n[Name]=\"name()+'-alert'\"\r\n[_FontSize]=\"_FontSize()\"\r\n[_FontFamily]=\"_TextFontFamily()\"\r\n[_FontWeight]=\"_FontWeight()\"\r\n/>\r\n \r\n","export enum ListItemIcons{\r\n User = \"fi fi-sr-user\",\r\n Lock = \"fi fi-sr-lock\",\r\n EyeOpen = \"fi fi-ss-eye\",\r\n EyeClose = \"fi fi-ss-eye-crossed\",\r\n ItemClosed = \"fi fi-tr-caret-down\",\r\n ItemOpenned = \"fi fi-rr-caret-down\",\r\n Done = \"fi fi-sr-octagon-check\",\r\n Doing = \"fi fi-br-duration-alt\",\r\n NotDone = \"fi fi-sr-cross-circle\",\r\n Alert = \"fi fi-sr-exclamation\",\r\n Close = \"fi fi-br-cross\",\r\n Home = \"fi fi-sr-home\",\r\n Key = \"fi fi-sr-key\",\r\n Company = \"fi fi-rs-building\",\r\n NoteBook = \"fi fi-br-notebook-alt\",\r\n AddFile = \"fi fi-rr-add-document\"\r\n\r\n}\r\nexport enum ListItemPositions{\r\n Top,\r\n Center\r\n}\r\nexport enum ListItemFontWeights{\r\n Thin = 100,\r\n ExtraLight = 200,\r\n Light = 300,\r\n Regular = 400,\r\n Medium = 500,\r\n SemiBold = 600,\r\n Bold = 700,\r\n Extrabold = 800,\r\n Black = 900,\r\n}","import { Component,input, OnInit,inject } from '@angular/core';\r\nimport { ListItemIcons, ListItemPositions, ListItemFontWeights } from './list-item.enum';\r\nimport { ButtonModel } from '../button/button.model';\r\nimport { ButtonService } from '../button/button.service';\r\n\r\n\r\n@Component({\r\n selector: 'app-list-item',\r\n standalone: true,\r\n imports: [],\r\n templateUrl: './list-item.component.html',\r\n styleUrl: './list-item.component.css'\r\n})\r\nexport class ListItemComponent implements OnInit {\r\n\r\n \r\n Name = input.required<string>();\r\n\r\n //Container\r\n _ItemBackGroundColorNormal = input.required<string>();\r\n _ItemBackGroundColorHover = input.required<string>();\r\n\r\n //ItemNumber\r\n _ItemNumberEnabled = input.required<boolean>();\r\n _ItemNumberText = input.required<string>();\r\n _ItemNumberFontFamily = input.required<string>();\r\n _ItemNumberFontWeight = input.required<ListItemFontWeights>();\r\n _ItemNumberFontColor = input.required<string>();\r\n _ItemNumberPosition = input.required<ListItemPositions>();\r\n _ItemNumberMarginTop : number = 0;\r\n _ItemNumberMarginLeft : number = 0;\r\n _ItemNumberMarginRight : number = 0;\r\n\r\n //IconStatus]\r\n _IconEnabled = input.required<boolean>();\r\n _Icon = input.required<ListItemIcons>();\r\n _IconColor = input.required<string>();\r\n _IconMarginLeft : number = 0;\r\n _IconMarginRight : number = 0;\r\n\r\n //TextContainer\r\n _TextContainerMarginLeft : number = 0;\r\n _TextContainerMarginRight : number = 0;\r\n\r\n //Title\r\n _TitleText = input.required<string>();\r\n _TitleFontFamily = input.required<string>();\r\n _TitleFontColor = input.required<string>();\r\n _TitleFontWeight = input.required<ListItemFontWeights>();\r\n\r\n //SubTitle\r\n _SubTitleEnabled = input.required<boolean>();\r\n _SubTitleText = input.required<string>();\r\n _SubTitleFontFamily = input.required<string>();\r\n _SubTitleFontColor = input.required<string>();\r\n _SubTitleFontWeight = input.required<ListItemFontWeights>();\r\n\r\n //iconOpenItem\r\n _IconOpenItemColor = input.required<string>();\r\n\r\n _FontSize = input.required<number>();\r\n \r\n\r\n //Internals\r\n readonly _ListItemIcons = ListItemIcons;\r\n readonly ListItePositions = ListItemPositions;\r\n ItemStateOpen : boolean = false;\r\n\r\n ButtonModel! : ButtonModel;\r\n ButtonService = inject(ButtonService);\r\n\r\n ngOnInit(): void {\r\n\r\n this.ButtonModel = new ButtonModel();\r\n \r\n \r\n //Zera Memorias\r\n this._ItemNumberMarginTop = 0;\r\n this._ItemNumberMarginLeft = 0;\r\n this._ItemNumberMarginRight = 0;\r\n this._IconMarginLeft = 0;\r\n this._IconMarginRight = 0;\r\n this._TextContainerMarginLeft = 0;\r\n\r\n if(this._ItemNumberEnabled()){\r\n this._ItemNumberMarginTop = this._ItemNumberPosition() == this.ListItePositions.Top ? (this._FontSize()*0.5) : ((this._FontSize()*3.777/2)-this._FontSize()/2);\r\n this._ItemNumberMarginLeft = this._FontSize()*0.5;\r\n this._ItemNumberMarginRight = this._FontSize()*0.361;\r\n this._IconMarginLeft = this._FontSize()*0.361;\r\n this._IconMarginRight = this._FontSize()*0.361;\r\n this._TextContainerMarginLeft = this._FontSize()*0.722;\r\n\r\n }else{\r\n if(this._IconEnabled()){\r\n this._IconMarginLeft = this._FontSize()*0.722;\r\n this._IconMarginRight = this._FontSize()*0.722;\r\n this._TextContainerMarginLeft = this._FontSize()*0.722;\r\n }else{\r\n this._TextContainerMarginLeft = this._FontSize()*2;\r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n OnClick(){\r\n this.ItemStateOpen = this.ItemStateOpen ? false : true;\r\n\r\n this.ButtonModel.name = 'btn01';\r\n this.ButtonModel.state = false;\r\n\r\n this.ButtonService.loadingState.next(this.ButtonModel);\r\n }\r\n\r\n}\r\n","\r\n<div class=\"wrapper\"\r\n[style.width]=\"(_FontSize()*18.611)+'px'\"\r\n[style.height]=\"ItemStateOpen? 'auto' : (_FontSize()*3.777)+'px'\"\r\n>\r\n <div class=\"container\"\r\n (click)=\"OnClick()\"\r\n [style.width]=\"(_FontSize()*18.611)+'px'\"\r\n [style.height]=\"(_FontSize()*3.777)+'px'\"\r\n >\r\n\r\n <p class=\"ItemNumber\"\r\n [style.display]=\"_ItemNumberEnabled() ? '' : 'none'\"\r\n [style.font-family]=\"_ItemNumberFontFamily()\"\r\n [style.font-weight]=\"_ItemNumberFontWeight()\"\r\n [style.color]=\"_ItemNumberFontColor()\"\r\n [style.font-size]=\"_ItemNumberPosition() == ListItePositions.Top ? (_FontSize()*0.833)+'px' : (_FontSize())+'px' \"\r\n [style.margin-top]=\"_ItemNumberMarginTop +'px'\"\r\n [style.margin-left]=\"_ItemNumberMarginLeft+'px'\"\r\n [style.margin-right]=\"_ItemNumberMarginRight+'px'\"\r\n >\r\n {{_ItemNumberText()}}\r\n </p>\r\n\r\n <i class=\"{{_Icon()}}\"\r\n [style.display]=\"_IconEnabled() ? '' : 'none'\"\r\n [style.color]=\"_IconColor()\"\r\n [style.font-size]=\"(_FontSize()*1.111)+'px'\"\r\n [style.margin-left]=\"_IconMarginLeft+'px'\"\r\n [style.margin-right]=\"_IconMarginRight+'px'\"\r\n ></i>\r\n\r\n <div class=\"TextContainer\"\r\n [style.margin-left]=\"_TextContainerMarginLeft +'px'\"\r\n >\r\n\r\n <h1 class=\"title\"\r\n [style.font-family]=\"_TitleFontFamily()\"\r\n [style.color]=\"_TitleFontColor()\"\r\n [style.font-size]=\"_FontSize()+'px'\"\r\n [style.font-weight]=\"_TitleFontWeight()\"\r\n >\r\n {{_TitleText()}}\r\n </h1>\r\n\r\n <h2 class=\"sub-title\"\r\n [style.display]=\"_SubTitleEnabled() ? '' : 'none'\"\r\n [style.font-family]=\"_SubTitleFontFamily()\"\r\n [style.color]=\"_SubTitleFontColor()\"\r\n [style.font-size]=\"(_FontSize()*0.833)+'px'\"\r\n [style.font-weight]=\"_SubTitleFontWeight()\"\r\n >\r\n {{_SubTitleText()}}\r\n </h2>\r\n\r\n </div>\r\n\r\n <div class=\"IconOpenItemContainer\">\r\n <i class=\"{{ItemStateOpen? _ListItemIcons.ItemOpenned : _ListItemIcons.ItemClosed}} ItemOpenState\"\r\n [class.ItemOpenState]=\"ItemStateOpen\"\r\n [class.ItemCloseState]=\"!ItemStateOpen\"\r\n [style.color]=\"_IconOpenItemColor()\"\r\n [style.font-size]=\"(_FontSize()*1.666)+'px'\"\r\n ></i>\r\n </div>\r\n\r\n\r\n </div>\r\n <div class=\"containerWrapped\"\r\n [style.display]=\"ItemStateOpen ? '' : 'none'\"\r\n >\r\n <ng-content/>\r\n </div>\r\n\r\n\r\n</div>\r\n\r\n","export class ListItemModel{\r\n name : string ='';\r\n}","import {Injectable } from \"@angular/core\";\r\nimport { Subject } from 'rxjs';\r\nimport { ListItemModel } from \"./list-item.model\";\r\n\r\n@Injectable({providedIn:'root'})\r\nexport class ListItemService{\r\n\r\n public open = new Subject<ListItemModel>();\r\n\r\n}","export enum LabelIconPositionEnum{\r\n Top,\r\n Right,\r\n Bottom,\r\n Left\r\n}\r\nexport enum LabelIconEnum{\r\n User = \"fi fi-sr-user\",\r\n Lock = \"fi fi-sr-lock\",\r\n EyeOpen = \"fi fi-ss-eye\",\r\n EyeClose = \"fi fi-ss-eye-crossed\",\r\n ItemClosed = \"fi fi-tr-caret-down\",\r\n ItemOpenned = \"fi fi-rr-caret-down\",\r\n Done = \"fi fi-sr-octagon-check\",\r\n Doing = \"fi fi-br-duration-alt\",\r\n NotDone = \"fi fi-sr-cross-circle\",\r\n Alert = \"fi fi-sr-exclamation\",\r\n Close = \"fi fi-br-cross\",\r\n Home = \"fi fi-sr-home\",\r\n Key = \"fi fi-sr-key\",\r\n Company = \"fi fi-rs-building\",\r\n NoteBook = \"fi fi-br-notebook-alt\",\r\n AddFile = \"fi fi-rr-add-document\"\r\n}\r\nexport enum LabelFontWeights{\r\n Thin = 100,\r\n ExtraLight = 200,\r\n Light = 300,\r\n Regular = 400,\r\n Medium = 500,\r\n SemiBold = 600,\r\n Bold = 700,\r\n Extrabold = 800,\r\n Black = 900,\r\n}","import { Component, OnInit,input,inject } from '@angular/core';\r\nimport { LabelModel } from './label.model';\r\nimport { LabelService } from './label.service';\r\nimport { LabelFontWeights,LabelIconEnum,LabelIconPositionEnum } from './label.enum';\r\nimport { CommonModule } from '@angular/common';\r\n\r\n@Component({\r\n selector: 'app-label',\r\n imports: [CommonModule],\r\n templateUrl: './label.component.html',\r\n styleUrl: './label.component.css'\r\n})\r\nexport class LabelComponent implements OnInit {\r\n\r\n ngOnInit(): void {\r\n\r\n this.LabelModel = new LabelModel();\r\n\r\n this.setIconOrientationOnTemplate();\r\n }\r\n\r\n Name = input.required<string>();\r\n\r\n _IconEnabled = input.required<boolean>() ;\r\n _Icon= input.required<LabelIconEnum>();\r\n _IconColor= input.required<string>();\r\n IconOrientation= input.required<LabelIconPositionEnum>() ;\r\n _IconOrientation! : string;\r\n _IconDistanceFromTextObject! : object;\r\n IconDistanceFromText= input.required<number>(); \r\n\r\n _TextEnabled= input.required<boolean>();\r\n _TextFontFamily= input.required<string>() ;\r\n _Text= input.required<string>();\r\n _TextColor= input.required<string>();\r\n _TextFontWeight = input.required<LabelFontWeights>();\r\n _TextFontSize= input.required<number>();\r\n\r\n\r\n\r\n LabelModel! : LabelModel;\r\n LabelService = inject(LabelService)\r\n\r\n\r\n setIconOrientationOnTemplate(){\r\n switch (this.IconOrientation()){\r\n case (LabelIconPositionEnum.Top):\r\n this._IconOrientation = 'column'\r\n this._IconDistanceFromTextObject = this._TextEnabled() ? {'margin-bottom': this.IconDistanceFromText().toString() + 'px'} : {};\r\n break\r\n case (LabelIconPositionEnum.Right):\r\n this._IconOrientation = 'row-reverse'\r\n this._IconDistanceFromTextObject = this._TextEnabled() ? {'margin-left': this.IconDistanceFromText().toString() + 'px'} : {}\r\n break\r\n case (LabelIconPositionEnum.Bottom):\r\n this._IconOrientation = 'column-reverse'\r\n this._IconDistanceFromTextObject = this._TextEnabled() ? {'margin-top': this.IconDistanceFromText().toString() + 'px'} : {}\r\n break\r\n case (LabelIconPositionEnum.Left):\r\n this._IconDistanceFromTextObject = this._TextEnabled() ? {'margin-right': this.IconDistanceFromText().toString() + 'px'} : {}\r\n break\r\n }\r\n }\r\n\r\n}\r\n","<div class=\"container\"\r\n[ngStyle]=\"{'flex-direction':_IconOrientation}\"\r\n>\r\n\r\n <i\r\n class=\"{{_Icon()}}\"\r\n [style.color]=\"_IconColor()\"\r\n [style.font-size]=\"(_TextFontSize() *1.25)+'px'\"\r\n [style.display]=\"_IconEnabled() ? '' : 'none'\"\r\n [ngStyle]=\"_IconDistanceFromTextObject\"\r\n >\r\n </i>\r\n\r\n\r\n <p\r\n [style.font-size]=\"_TextFontSize() +'px'\"\r\n [style.font-family]=\"_TextFontFamily()\"\r\n [style.font-weight]=\"_TextFontWeight()\"\r\n [style.color]=\"_TextColor()\"\r\n [style.display]=\"_TextEnabled() ? '' : 'none'\"\r\n >{{_Text()}}\r\n </p>\r\n</div>","export enum TableFontWeights{\r\n Thin = 100,\r\n ExtraLight = 200,\r\n Light = 300,\r\n Regular = 400,\r\n Medium = 500,\r\n SemiBold = 600,\r\n Bold = 700,\r\n Extrabold = 800,\r\n Black = 900,\r\n}\r\nexport enum TableModes{\r\n ReadOnly,\r\n Display\r\n}","import {Injectable } from \"@angular/core\";\r\nimport { Subject } from 'rxjs';\r\nimport { TableModel } from \"./table.model\";\r\n\r\n@Injectable({providedIn:'root'})\r\nexport class TableService{\r\n\r\n public dataChange = new Subject<TableModel>();\r\n public rowOnSelect = new Subject<number>();\r\n}","import { Component,input,inject, OnInit, OnDestroy } from '@angular/core';\r\nimport { TableFontWeights,TableModes } from './table.enum';\r\nimport { TableService } from './table.service';\r\nimport { TableModel } from './table.model';\r\nimport { Subject, takeUntil } from 'rxjs';\r\n\r\n@Component({\r\n selector: 'app-table',\r\n imports: [],\r\n templateUrl: './table.component.html',\r\n styleUrl: './table.component.css'\r\n})\r\nexport class TableComponent implements OnInit,OnDestroy {\r\n ngOnDestroy(): void {\r\n this.destroy.next(true);\r\n }\r\n\r\n ngOnInit(): void {\r\n this.startListenToDataChange();\r\n\r\n }\r\n\r\n private destroy = new Subject<boolean>();\r\n \r\n name = input.required<string>();\r\n\r\n TableMode = input.required<TableModes>();\r\n\r\n _FontFamily = input.required<string>();\r\n\r\n _FontSize = input.required<number>();\r\n\r\n _Header_FontColor = input.required<string>();\r\n _Header_FontWeight = input.required<TableFontWeights>();\r\n _Header_BackGroundColor = input.required<string>();\r\n\r\n _Body_FontColor = input.required<string>();\r\n _Body_FontWeight = input.required<TableFontWeights>();\r\n _Body_BackGroundColor01 = input.required<string>();\r\n _Body_BackGroundColor02 = input.required<string>();\r\n _Body_BackGroundColorHover = input.required<string>();\r\n\r\n _BorderVerticalON = input.required<boolean>();\r\n _BorderHorizontalON = input.required<boolean>();\r\n _BorderColor = input.required<string>();\r\n _BorderSize = input.required<number>();\r\n\r\n _ContainerWidth = input.required<number>();\r\n _ContainerHeight = input.required<number>();\r\n\r\n NomeColunaJSONID = input.required<string>();\r\n NomeColunasJSON = input.required<string[]>();\r\n NomeColunasDisplay = input.required<string[]>();\r\n UnidadesDeMedidaDasColunas = input.required<string[]>();\r\n NCasasDecimaisDasColunas = input.required<number[]>();\r\n\r\n\r\n rowsOnDisplay! :any[];\r\n rowsOnMemory! :any[];\r\n headers! : string[];\r\n TableService = inject(TableService);\r\n\r\n readonly TableModes = TableModes;\r\n\r\n\r\n startListenToDataChange(){\r\n this.TableService.dataChange.pipe(takeUntil(this.destroy)).subscribe((model:TableModel)=>{\r\n if(model.name == this.name()){\r\n\r\n this.rowsOnMemory = JSON.parse(JSON.stringify(model.data))\r\n\r\n if(this.VerificarSeENecessarioDeletarColunasDeUmObjeto(model.data,this.NomeColunasDisplay())){\r\n var ObjetosComNovosNomes = this.MudaNomesDasPropriedadesDeUmObjeto(model.data,this.NomeColunasDisplay(),this.NomeColunasJSON());\r\n var ObjetosArredondados = this.ListaDeObjetosComCamposNumericosArredondados(ObjetosComNovosNomes,this.NCasasDecimaisDasColunas());\r\n var ObjetosComUnidadesDeMedida = this.ListaDeObjetosComUnidadesDeMedidas(ObjetosArredondados,this.UnidadesDeMedidaDasColunas());\r\n this.rowsOnDisplay = ObjetosComUnidadesDeMedida;\r\n this.headers = Object.keys(this.rowsOnDisplay[0]);\r\n \r\n }else{\r\n this.rowsOnDisplay = model.data;\r\n this.headers = Object.keys(this.rowsOnDisplay[0]);\r\n \r\n }\r\n\r\n\r\n }\r\n });\r\n \r\n \r\n \r\n \r\n }\r\n\r\n OnLineSelected(row :object){\r\n if(this.TableMode() == this.TableModes.Display){\r\n var index = this.rowsOnDisplay.indexOf(row);\r\n var id = this.rowsOnMemory[index]['usinaId'];\r\n this.TableService.rowOnSelect.next(id);\r\n }\r\n }\r\n VerificarSeENecessarioDeletarColunasDeUmObjeto(listaObjetos : object[],ListaDeNovosNomes : string[]) : boolean{\r\n\r\n for(var i=0 ; i< Object.keys(listaObjetos[0]).length ; i++){\r\n if(ListaDeNovosNomes.includes(Object.keys(listaObjetos[0])[i])){\r\n }else{\r\n return true;\r\n }\r\n }\r\n return false;\r\n\r\n }\r\n\r\n MudaNomesDasPropriedadesDeUmObjeto(listaObjetos : object[], ListaDeNovosNomes : string[] , ListaDeNomesAntigosParaManter : string[]):object[]{\r\n\r\n var listaObjetosColunasDeletadas = this.DeletaPropriedadesDeCadaObjetoDeUmaLista(listaObjetos,ListaDeNomesAntigosParaManter);\r\n //Muda os nomes das colunas de acordo com configuração\r\n for(var z = 0; z<ListaDeNovosNomes.length;z++){\r\n for(var y =0; y<listaObjetosColunasDeletadas.length;y++){\r\n (listaObjetosColunasDeletadas[y] as any)[ListaDeNovosNomes[z]] = (listaObjetosColunasDeletadas[y] as any)[ListaDeNomesAntigosParaManter[z]]\r\n delete (listaObjetosColunasDeletadas[y] as any)[ListaDeNomesAntigosParaManter[z]];\r\n }\r\n }\r\n return listaObjetosColunasDeletadas;\r\n\r\n }\r\n\r\n DeletaPropriedadesDeCadaObjetoDeUmaLista(listaObjetos : object[], ListaColunasParaManter : string[]):object[]{\r\n\r\n const ListaColunasParaDeletar = this.ListaNomesColunasDeletadas(listaObjetos[0],ListaColunasParaManter)\r\n //Deleta propriedades do objeto que estão definidas na lista de configuração\r\n for(var i =0 ; i < ListaColunasParaDeletar.length;i++){\r\n listaObjetos.forEach((obj:any)=>{\r\n delete obj[ListaColunasParaDeletar[i]]\r\n })\r\n }\r\n i=0;\r\n return listaObjetos;\r\n }\r\n\r\n ListaNomesColunasDeletadas(objOriginal : object,ListaColunasParaManter : string[]) : string[]{\r\n \r\n var newArray : string[] = [];\r\n\r\n for(var i =0 ; i< Object.keys(objOriginal).length;i++){\r\n if(ListaColunasParaManter.includes(Object.keys(objOriginal)[i])){\r\n }else{\r\n newArray.push(Object.keys(objOriginal)[i]);\r\n }\r\n }\r\n\r\n i=0;\r\n\r\n return newArray;\r\n\r\n }\r\n\r\n ListaDeObjetosComUnidadesDeMedidas(listaObjetos : object[],listaUnidadesMedida : string[]) : object[]{\r\n\r\n for(var i = 0; i< listaObjetos.length ; i++){\r\n for(var y = 0; y< Object.keys(listaObjetos[0]).length ; y++){\r\n (listaObjetos[i]as any)[(Object.keys(listaObjetos[0]))[y]] = (listaObjetos[i] as any)[(Object.keys(listaObjetos[0]))[y]] + listaUnidadesMedida[y]\r\n }\r\n }\r\n\r\n return listaObjetos;\r\n\r\n }\r\n\r\n ListaDeObjetosComCamposNumericosArredondados(listaObjetos : any[],listadeArredondamentos : number[]) : object[]{\r\n\r\n for(var i = 0; i< listaObjetos.length ; i++){\r\n for(var y = 0; y< Object.keys(listaObjetos[0]).length ; y++){\r\n if(isNaN(listaObjetos[i][(Object.keys(listaObjetos[0]))[y]])){\r\n\r\n }else{\r\n listaObjetos[i][(Object.keys(listaObjetos[0]))[y]] = parseFloat(listaObjetos[i][(Object.keys(listaObjetos[0]))[y]]).toFixed(listadeArredondamentos[y])\r\n }\r\n \r\n\r\n \r\n }\r\n }\r\n\r\n return listaObjetos;\r\n\r\n }\r\n\r\n\r\n\r\n\r\n\r\n\r\n}\r\n","<div class=\"container\" style=\"overflow-x:auto;\"\r\n[style.width]=\"_ContainerWidth()+'px'\"\r\n[style.height]=\"_ContainerHeight()+'px'\"\r\n>\r\n <table\r\n [style.font-family]=\"_FontFamily()\"\r\n [style.--padding]=\"(_FontSize()*0.5+'px')+' ' + (_FontSize()*0.625+'px')\"\r\n [style.--borderLeft]=\"(_BorderVerticalON() ? _BorderSize()+'px' : '0px') + ' solid '+_BorderColor()\"\r\n [style.--borderBottom]=\"(_BorderHorizontalON() ? _BorderSize()+'px' : '0px') + ' solid '+_BorderColor()\"\r\n >\r\n \r\n <thead\r\n [style.font-size]=\"_FontSize()*1.1 + 'px'\"\r\n [style.font-weight]=\"_Header_FontWeight()\"\r\n [style.background-color]=\"_Header_BackGroundColor()\"\r\n [style.color]=\"_Header_FontColor()\"\r\n >\r\n <tr>\r\n @for(_header of headers ; track $index){\r\n <th>{{_header}}</th>\r\n }\r\n </tr>\r\n </thead>\r\n \r\n <tbody\r\n [style.font-size]=\"_FontSize() + 'px'\"\r\n [style.font-weight]=\"_Body_FontWeight()\"\r\n [style.--Body_FontColor]=\"_Body_FontColor()\"\r\n [style.--Body_BackGroundColor01]=\"_Body_BackGroundColor01()\"\r\n [style.--Body_BackGroundColor02]=\"_Body_BackGroundColor02()\"\r\n [style.--Body_BackGroundColorHover]=\"_Body_BackGroundColorHover()\"\r\n [style.cursor]=\"TableMode() == TableModes.ReadOnly ? 'default' : 'pointer'\"\r\n >\r\n @for(row of rowsOnDisplay ; track $index){\r\n <tr\r\n (click)=\"OnLineSelected(row)\"\r\n \r\n >\r\n @for(_header of headers; track $index){\r\n <td>{{row[_header]}}</td>\r\n }\r\n </tr>\r\n }\r\n </tbody>\r\n \r\n </table>\r\n</div>\r\n\r\n\r\n\r\n\r\n","export class TableModel{\r\n name: string = '';\r\n data! : object[];\r\n}","/*\r\n * Public API Surface of lightning-tec-br-angular-components\r\n */\r\n\r\nexport * from './lib/txt-box/txt-box.component';\r\nexport * from './lib/txt-box/txt-box.enum';\r\nexport * from './lib/txt-box/txt-box.model';\r\nexport * from './lib/txt-box/txt-box.service';\r\n\r\nexport * from './lib/button/button.component';\r\nexport * from './lib/button/button.enum';\r\nexport * from './lib/button/button.model';\r\nexport * from './lib/button/button.service';\r\n\r\nexport * from './lib/list-item/list-item.component';\r\nexport * from './lib/list-item/list-item.enum';\r\nexport * from './lib/list-item/list-item.model';\r\nexport * from './lib/list-item/list-item.service';\r\n\r\nexport * from './lib/alert/alert.component';\r\nexport * from './lib/alert/alert.enum';\r\nexport * from './lib/alert/alert.model';\r\nexport * from './lib/alert/alert.service';\r\n\r\nexport * from './lib/label/label.component';\r\nexport * from './lib/label/label.enum';\r\nexport * from './lib/label/label.model';\r\nexport * from './lib/label/label.service';\r\n\r\nexport * from './lib/table/table.component';\r\nexport * from './lib/table/table.enum';\r\nexport * from './lib/table/table.model';\r\nexport * from './lib/table/table.service';\r\n\r\n\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i1"],"mappings":"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"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
2
|
+
import { TableFontWeights, TableModes } from './table.enum';
|
|
3
|
+
import { TableService } from './table.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TableComponent implements OnInit, OnDestroy {
|
|
6
|
+
ngOnDestroy(): void;
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
private destroy;
|
|
9
|
+
name: import("@angular/core").InputSignal<string>;
|
|
10
|
+
TableMode: import("@angular/core").InputSignal<TableModes>;
|
|
11
|
+
_FontFamily: import("@angular/core").InputSignal<string>;
|
|
12
|
+
_FontSize: import("@angular/core").InputSignal<number>;
|
|
13
|
+
_Header_FontColor: import("@angular/core").InputSignal<string>;
|
|
14
|
+
_Header_FontWeight: import("@angular/core").InputSignal<TableFontWeights>;
|
|
15
|
+
_Header_BackGroundColor: import("@angular/core").InputSignal<string>;
|
|
16
|
+
_Body_FontColor: import("@angular/core").InputSignal<string>;
|
|
17
|
+
_Body_FontWeight: import("@angular/core").InputSignal<TableFontWeights>;
|
|
18
|
+
_Body_BackGroundColor01: import("@angular/core").InputSignal<string>;
|
|
19
|
+
_Body_BackGroundColor02: import("@angular/core").InputSignal<string>;
|
|
20
|
+
_Body_BackGroundColorHover: import("@angular/core").InputSignal<string>;
|
|
21
|
+
_BorderVerticalON: import("@angular/core").InputSignal<boolean>;
|
|
22
|
+
_BorderHorizontalON: import("@angular/core").InputSignal<boolean>;
|
|
23
|
+
_BorderColor: import("@angular/core").InputSignal<string>;
|
|
24
|
+
_BorderSize: import("@angular/core").InputSignal<number>;
|
|
25
|
+
_ContainerWidth: import("@angular/core").InputSignal<number>;
|
|
26
|
+
_ContainerHeight: import("@angular/core").InputSignal<number>;
|
|
27
|
+
NomeColunaJSONID: import("@angular/core").InputSignal<string>;
|
|
28
|
+
NomeColunasJSON: import("@angular/core").InputSignal<string[]>;
|
|
29
|
+
NomeColunasDisplay: import("@angular/core").InputSignal<string[]>;
|
|
30
|
+
UnidadesDeMedidaDasColunas: import("@angular/core").InputSignal<string[]>;
|
|
31
|
+
NCasasDecimaisDasColunas: import("@angular/core").InputSignal<number[]>;
|
|
32
|
+
rowsOnDisplay: any[];
|
|
33
|
+
rowsOnMemory: any[];
|
|
34
|
+
headers: string[];
|
|
35
|
+
TableService: TableService;
|
|
36
|
+
readonly TableModes: typeof TableModes;
|
|
37
|
+
startListenToDataChange(): void;
|
|
38
|
+
OnLineSelected(row: object): void;
|
|
39
|
+
VerificarSeENecessarioDeletarColunasDeUmObjeto(listaObjetos: object[], ListaDeNovosNomes: string[]): boolean;
|
|
40
|
+
MudaNomesDasPropriedadesDeUmObjeto(listaObjetos: object[], ListaDeNovosNomes: string[], ListaDeNomesAntigosParaManter: string[]): object[];
|
|
41
|
+
DeletaPropriedadesDeCadaObjetoDeUmaLista(listaObjetos: object[], ListaColunasParaManter: string[]): object[];
|
|
42
|
+
ListaNomesColunasDeletadas(objOriginal: object, ListaColunasParaManter: string[]): string[];
|
|
43
|
+
ListaDeObjetosComUnidadesDeMedidas(listaObjetos: object[], listaUnidadesMedida: string[]): object[];
|
|
44
|
+
ListaDeObjetosComCamposNumericosArredondados(listaObjetos: any[], listadeArredondamentos: number[]): object[];
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "app-table", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "TableMode": { "alias": "TableMode"; "required": true; "isSignal": true; }; "_FontFamily": { "alias": "_FontFamily"; "required": true; "isSignal": true; }; "_FontSize": { "alias": "_FontSize"; "required": true; "isSignal": true; }; "_Header_FontColor": { "alias": "_Header_FontColor"; "required": true; "isSignal": true; }; "_Header_FontWeight": { "alias": "_Header_FontWeight"; "required": true; "isSignal": true; }; "_Header_BackGroundColor": { "alias": "_Header_BackGroundColor"; "required": true; "isSignal": true; }; "_Body_FontColor": { "alias": "_Body_FontColor"; "required": true; "isSignal": true; }; "_Body_FontWeight": { "alias": "_Body_FontWeight"; "required": true; "isSignal": true; }; "_Body_BackGroundColor01": { "alias": "_Body_BackGroundColor01"; "required": true; "isSignal": true; }; "_Body_BackGroundColor02": { "alias": "_Body_BackGroundColor02"; "required": true; "isSignal": true; }; "_Body_BackGroundColorHover": { "alias": "_Body_BackGroundColorHover"; "required": true; "isSignal": true; }; "_BorderVerticalON": { "alias": "_BorderVerticalON"; "required": true; "isSignal": true; }; "_BorderHorizontalON": { "alias": "_BorderHorizontalON"; "required": true; "isSignal": true; }; "_BorderColor": { "alias": "_BorderColor"; "required": true; "isSignal": true; }; "_BorderSize": { "alias": "_BorderSize"; "required": true; "isSignal": true; }; "_ContainerWidth": { "alias": "_ContainerWidth"; "required": true; "isSignal": true; }; "_ContainerHeight": { "alias": "_ContainerHeight"; "required": true; "isSignal": true; }; "NomeColunaJSONID": { "alias": "NomeColunaJSONID"; "required": true; "isSignal": true; }; "NomeColunasJSON": { "alias": "NomeColunasJSON"; "required": true; "isSignal": true; }; "NomeColunasDisplay": { "alias": "NomeColunasDisplay"; "required": true; "isSignal": true; }; "UnidadesDeMedidaDasColunas": { "alias": "UnidadesDeMedidaDasColunas"; "required": true; "isSignal": true; }; "NCasasDecimaisDasColunas": { "alias": "NCasasDecimaisDasColunas"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
47
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare enum TableFontWeights {
|
|
2
|
+
Thin = 100,
|
|
3
|
+
ExtraLight = 200,
|
|
4
|
+
Light = 300,
|
|
5
|
+
Regular = 400,
|
|
6
|
+
Medium = 500,
|
|
7
|
+
SemiBold = 600,
|
|
8
|
+
Bold = 700,
|
|
9
|
+
Extrabold = 800,
|
|
10
|
+
Black = 900
|
|
11
|
+
}
|
|
12
|
+
export declare enum TableModes {
|
|
13
|
+
ReadOnly = 0,
|
|
14
|
+
Display = 1
|
|
15
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Subject } from 'rxjs';
|
|
2
|
+
import { TableModel } from "./table.model";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TableService {
|
|
5
|
+
dataChange: Subject<TableModel>;
|
|
6
|
+
rowOnSelect: Subject<number>;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TableService>;
|
|
9
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -18,3 +18,7 @@ export * from './lib/label/label.component';
|
|
|
18
18
|
export * from './lib/label/label.enum';
|
|
19
19
|
export * from './lib/label/label.model';
|
|
20
20
|
export * from './lib/label/label.service';
|
|
21
|
+
export * from './lib/table/table.component';
|
|
22
|
+
export * from './lib/table/table.enum';
|
|
23
|
+
export * from './lib/table/table.model';
|
|
24
|
+
export * from './lib/table/table.service';
|