lightning-tec-br-angular-components 0.1.8 → 0.2.0

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.
@@ -5,7 +5,6 @@ import { FormsModule } from '@angular/forms';
5
5
  import { Subject } from 'rxjs';
6
6
  import * as i1$1 from '@angular/common';
7
7
  import { CommonModule } from '@angular/common';
8
- import { RouterLink } from '@angular/router';
9
8
 
10
9
  var TxtBoxTypesEnum;
11
10
  (function (TxtBoxTypesEnum) {
@@ -459,11 +458,11 @@ class ButtonComponent {
459
458
  });
460
459
  }
461
460
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ButtonComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
462
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.2.0", type: ButtonComponent, isStandalone: true, selector: "app-button", inputs: { _ButtonType: { classPropertyName: "_ButtonType", publicName: "_ButtonType", isSignal: true, isRequired: true, transformFunction: null }, _BorderRadius: { classPropertyName: "_BorderRadius", publicName: "_BorderRadius", isSignal: true, isRequired: true, transformFunction: null }, _Width: { classPropertyName: "_Width", publicName: "_Width", isSignal: true, isRequired: true, transformFunction: null }, _Height: { classPropertyName: "_Height", publicName: "_Height", isSignal: true, isRequired: true, transformFunction: null }, _Icon: { classPropertyName: "_Icon", publicName: "_Icon", isSignal: true, isRequired: true, transformFunction: null }, _IconDistanceFromText: { classPropertyName: "_IconDistanceFromText", publicName: "_IconDistanceFromText", isSignal: true, isRequired: true, transformFunction: null }, _IconEnabled: { classPropertyName: "_IconEnabled", publicName: "_IconEnabled", isSignal: true, isRequired: true, transformFunction: null }, _Text: { classPropertyName: "_Text", publicName: "_Text", isSignal: true, isRequired: true, transformFunction: null }, _FontSize: { classPropertyName: "_FontSize", publicName: "_FontSize", isSignal: true, isRequired: true, transformFunction: null }, _FontWeight: { classPropertyName: "_FontWeight", publicName: "_FontWeight", isSignal: true, isRequired: true, transformFunction: null }, _TextFontFamily: { classPropertyName: "_TextFontFamily", publicName: "_TextFontFamily", isSignal: true, isRequired: true, transformFunction: null }, _TextEnabled: { classPropertyName: "_TextEnabled", publicName: "_TextEnabled", isSignal: true, isRequired: true, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: true, transformFunction: null }, BackGroundColorNormal: { classPropertyName: "BackGroundColorNormal", publicName: "BackGroundColorNormal", isSignal: true, isRequired: true, transformFunction: null }, BackGroundColorHover: { classPropertyName: "BackGroundColorHover", publicName: "BackGroundColorHover", isSignal: true, isRequired: true, transformFunction: null }, IconColorNormal: { classPropertyName: "IconColorNormal", publicName: "IconColorNormal", isSignal: true, isRequired: true, transformFunction: null }, IconColorHover: { classPropertyName: "IconColorHover", publicName: "IconColorHover", isSignal: true, isRequired: true, transformFunction: null }, TextColorNormal: { classPropertyName: "TextColorNormal", publicName: "TextColorNormal", isSignal: true, isRequired: true, transformFunction: null }, TextColorHover: { classPropertyName: "TextColorHover", publicName: "TextColorHover", isSignal: true, isRequired: true, transformFunction: null }, IconOrientation: { classPropertyName: "IconOrientation", publicName: "IconOrientation", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: "<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]=\"{'flex-direction':_IconOrientation}\"\r\n(mouseover)=\"OnMouseOver()\"\r\n(mouseout)=\"OnMouseOut()\"\r\n(click)=\"OnClick()\"\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\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", styles: [":host{display:inline-block}button{display:flex;align-items:center;justify-content:center;border:none;padding:0}button:hover{cursor:pointer}button:active{transform:scale(.95)}button>i{line-height:0px}button>p{margin:0;line-height:0px}.loader{border:var(--loaderBorderSize) solid var(--loaderColor);border-bottom-color:transparent;border-radius:50%;box-sizing:border-box;animation:rotation 1s linear infinite}@keyframes rotation{0%{transform:rotate(0)}to{transform:rotate(360deg)}}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: AlertComponent, selector: "app-alert", inputs: ["Name", "_FontSize", "_FontFamily", "_FontWeight"] }] }); }
461
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.2.0", type: ButtonComponent, isStandalone: true, selector: "app-button", inputs: { _ButtonType: { classPropertyName: "_ButtonType", publicName: "_ButtonType", isSignal: true, isRequired: true, transformFunction: null }, _BorderRadius: { classPropertyName: "_BorderRadius", publicName: "_BorderRadius", isSignal: true, isRequired: true, transformFunction: null }, _Width: { classPropertyName: "_Width", publicName: "_Width", isSignal: true, isRequired: true, transformFunction: null }, _Height: { classPropertyName: "_Height", publicName: "_Height", isSignal: true, isRequired: true, transformFunction: null }, _Icon: { classPropertyName: "_Icon", publicName: "_Icon", isSignal: true, isRequired: true, transformFunction: null }, _IconDistanceFromText: { classPropertyName: "_IconDistanceFromText", publicName: "_IconDistanceFromText", isSignal: true, isRequired: true, transformFunction: null }, _IconEnabled: { classPropertyName: "_IconEnabled", publicName: "_IconEnabled", isSignal: true, isRequired: true, transformFunction: null }, _Text: { classPropertyName: "_Text", publicName: "_Text", isSignal: true, isRequired: true, transformFunction: null }, _FontSize: { classPropertyName: "_FontSize", publicName: "_FontSize", isSignal: true, isRequired: true, transformFunction: null }, _FontWeight: { classPropertyName: "_FontWeight", publicName: "_FontWeight", isSignal: true, isRequired: true, transformFunction: null }, _TextFontFamily: { classPropertyName: "_TextFontFamily", publicName: "_TextFontFamily", isSignal: true, isRequired: true, transformFunction: null }, _TextEnabled: { classPropertyName: "_TextEnabled", publicName: "_TextEnabled", isSignal: true, isRequired: true, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: true, transformFunction: null }, BackGroundColorNormal: { classPropertyName: "BackGroundColorNormal", publicName: "BackGroundColorNormal", isSignal: true, isRequired: true, transformFunction: null }, BackGroundColorHover: { classPropertyName: "BackGroundColorHover", publicName: "BackGroundColorHover", isSignal: true, isRequired: true, transformFunction: null }, IconColorNormal: { classPropertyName: "IconColorNormal", publicName: "IconColorNormal", isSignal: true, isRequired: true, transformFunction: null }, IconColorHover: { classPropertyName: "IconColorHover", publicName: "IconColorHover", isSignal: true, isRequired: true, transformFunction: null }, TextColorNormal: { classPropertyName: "TextColorNormal", publicName: "TextColorNormal", isSignal: true, isRequired: true, transformFunction: null }, TextColorHover: { classPropertyName: "TextColorHover", publicName: "TextColorHover", isSignal: true, isRequired: true, transformFunction: null }, IconOrientation: { classPropertyName: "IconOrientation", publicName: "IconOrientation", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: "\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]=\"{'flex-direction':_IconOrientation}\"\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", styles: [":host{display:inline-block}button{display:flex;align-items:center;justify-content:center;border:none;padding:0;text-decoration:none}button:hover{cursor:pointer}button:active{transform:scale(.95)}button>i{line-height:0px}button>p{margin:0;line-height:0px}button>.loader{border:var(--loaderBorderSize) solid var(--loaderColor);border-bottom-color:transparent;border-radius:50%;box-sizing:border-box;animation:rotation 1s linear infinite}@keyframes rotation{0%{transform:rotate(0)}to{transform:rotate(360deg)}}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: AlertComponent, selector: "app-alert", inputs: ["Name", "_FontSize", "_FontFamily", "_FontWeight"] }] }); }
463
462
  }
464
463
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ButtonComponent, decorators: [{
465
464
  type: Component,
466
- args: [{ selector: 'app-button', standalone: true, imports: [CommonModule, AlertComponent, RouterLink], template: "<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]=\"{'flex-direction':_IconOrientation}\"\r\n(mouseover)=\"OnMouseOver()\"\r\n(mouseout)=\"OnMouseOut()\"\r\n(click)=\"OnClick()\"\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\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", styles: [":host{display:inline-block}button{display:flex;align-items:center;justify-content:center;border:none;padding:0}button:hover{cursor:pointer}button:active{transform:scale(.95)}button>i{line-height:0px}button>p{margin:0;line-height:0px}.loader{border:var(--loaderBorderSize) solid var(--loaderColor);border-bottom-color:transparent;border-radius:50%;box-sizing:border-box;animation:rotation 1s linear infinite}@keyframes rotation{0%{transform:rotate(0)}to{transform:rotate(360deg)}}\n"] }]
465
+ args: [{ selector: 'app-button', standalone: true, imports: [CommonModule, AlertComponent], template: "\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]=\"{'flex-direction':_IconOrientation}\"\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", styles: [":host{display:inline-block}button{display:flex;align-items:center;justify-content:center;border:none;padding:0;text-decoration:none}button:hover{cursor:pointer}button:active{transform:scale(.95)}button>i{line-height:0px}button>p{margin:0;line-height:0px}button>.loader{border:var(--loaderBorderSize) solid var(--loaderColor);border-bottom-color:transparent;border-radius:50%;box-sizing:border-box;animation:rotation 1s linear infinite}@keyframes rotation{0%{transform:rotate(0)}to{transform:rotate(360deg)}}\n"] }]
467
466
  }], ctorParameters: () => [{ type: i0.ElementRef }] });
468
467
 
469
468
  var ListItemIcons;
@@ -650,56 +649,48 @@ var LabelFontWeights;
650
649
  class LabelComponent {
651
650
  constructor() {
652
651
  this.Name = input.required();
652
+ this._IconEnabled = input.required();
653
+ this._Icon = input.required();
654
+ this._IconColor = input.required();
655
+ this.IconOrientation = input.required();
656
+ this.IconDistanceFromText = input.required();
657
+ this._TextEnabled = input.required();
658
+ this._TextFontFamily = input.required();
659
+ this._Text = input.required();
660
+ this._TextColor = input.required();
661
+ this._TextFontWeight = input.required();
662
+ this._TextFontSize = input.required();
653
663
  this.LabelService = inject(LabelService);
654
664
  }
655
665
  ngOnInit() {
656
666
  this.LabelModel = new LabelModel();
657
- this.startListenToStateChange();
658
667
  this.setIconOrientationOnTemplate();
659
668
  }
660
- startListenToStateChange() {
661
- this.LabelService.stateChanger.subscribe((callersModel) => {
662
- if (callersModel.name == this.Name()) {
663
- this._IconEnabled = callersModel._IconEnabled;
664
- this._Icon = callersModel._Icon;
665
- this._IconColor = callersModel._IconColor;
666
- this.IconOrientation = callersModel.IconOrientation;
667
- this._IconDistanceFromText = callersModel._IconDistanceFromText;
668
- this._TextEnabled = callersModel._TextEnabled;
669
- this._TextFontFamily = callersModel._TextFontFamily;
670
- this._Text = callersModel._Text;
671
- this._TextColor = callersModel._TextColor;
672
- this._TextFontWeight = callersModel._TextFontWeight;
673
- this._TextFontSize = callersModel._TextFontSize;
674
- this.setIconOrientationOnTemplate();
675
- }
676
- });
677
- }
678
669
  setIconOrientationOnTemplate() {
679
- switch (this.IconOrientation) {
670
+ switch (this.IconOrientation()) {
680
671
  case (LabelIconPositionEnum.Top):
681
672
  this._IconOrientation = 'column';
682
- this._IconDistanceFromTextObject = this._TextEnabled ? { 'margin-bottom': this._IconDistanceFromText.toString() + 'px' } : {};
673
+ this._IconDistanceFromTextObject = this._TextEnabled() ? { 'margin-bottom': this.IconDistanceFromText().toString() + 'px' } : {};
683
674
  break;
684
675
  case (LabelIconPositionEnum.Right):
685
676
  this._IconOrientation = 'row-reverse';
686
- this._IconDistanceFromTextObject = this._TextEnabled ? { 'margin-left': this._IconDistanceFromText.toString() + 'px' } : {};
677
+ this._IconDistanceFromTextObject = this._TextEnabled() ? { 'margin-left': this.IconDistanceFromText().toString() + 'px' } : {};
687
678
  break;
688
679
  case (LabelIconPositionEnum.Bottom):
689
680
  this._IconOrientation = 'column-reverse';
690
- this._IconDistanceFromTextObject = this._TextEnabled ? { 'margin-top': this._IconDistanceFromText.toString() + 'px' } : {};
681
+ this._IconDistanceFromTextObject = this._TextEnabled() ? { 'margin-top': this.IconDistanceFromText().toString() + 'px' } : {};
691
682
  break;
692
683
  case (LabelIconPositionEnum.Left):
693
- this._IconDistanceFromTextObject = this._TextEnabled ? { 'margin-right': this._IconDistanceFromText.toString() + 'px' } : {};
684
+ this._IconDistanceFromTextObject = this._TextEnabled() ? { 'margin-right': this.IconDistanceFromText().toString() + 'px' } : {};
694
685
  break;
695
686
  }
696
687
  }
697
688
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: LabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
698
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.2.0", type: LabelComponent, isStandalone: true, selector: "app-label", inputs: { Name: { classPropertyName: "Name", publicName: "Name", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, 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"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
689
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.2.0", type: LabelComponent, isStandalone: true, selector: "app-label", inputs: { Name: { classPropertyName: "Name", publicName: "Name", isSignal: true, isRequired: true, transformFunction: null }, _IconEnabled: { classPropertyName: "_IconEnabled", publicName: "_IconEnabled", isSignal: true, isRequired: true, transformFunction: null }, _Icon: { classPropertyName: "_Icon", publicName: "_Icon", isSignal: true, isRequired: true, transformFunction: null }, _IconColor: { classPropertyName: "_IconColor", publicName: "_IconColor", isSignal: true, isRequired: true, transformFunction: null }, IconOrientation: { classPropertyName: "IconOrientation", publicName: "IconOrientation", isSignal: true, isRequired: true, transformFunction: null }, IconDistanceFromText: { classPropertyName: "IconDistanceFromText", publicName: "IconDistanceFromText", isSignal: true, isRequired: true, transformFunction: null }, _TextEnabled: { classPropertyName: "_TextEnabled", publicName: "_TextEnabled", isSignal: true, isRequired: true, transformFunction: null }, _TextFontFamily: { classPropertyName: "_TextFontFamily", publicName: "_TextFontFamily", isSignal: true, isRequired: true, transformFunction: null }, _Text: { classPropertyName: "_Text", publicName: "_Text", isSignal: true, isRequired: true, transformFunction: null }, _TextColor: { classPropertyName: "_TextColor", publicName: "_TextColor", isSignal: true, isRequired: true, transformFunction: null }, _TextFontWeight: { classPropertyName: "_TextFontWeight", publicName: "_TextFontWeight", isSignal: true, isRequired: true, transformFunction: null }, _TextFontSize: { classPropertyName: "_TextFontSize", publicName: "_TextFontSize", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, 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"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
699
690
  }
700
691
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: LabelComponent, decorators: [{
701
692
  type: Component,
702
- 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"] }]
693
+ 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"] }]
703
694
  }] });
704
695
 
705
696
  /*
@@ -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\r\n callerData.left = this.element.nativeElement.getBoundingClientRect().left + this.element.nativeElement.offsetWidth\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 _IconEnabled! : boolean;\r\n _Icon!: LabelIconEnum;\r\n _IconColor! : string;\r\n IconOrientation! : LabelIconPositionEnum;\r\n _IconDistanceFromText! : number; \r\n\r\n _TextEnabled! : boolean;\r\n _TextFontFamily! : string;\r\n _Text! : string;\r\n _TextColor! : string;\r\n _TextFontWeight! : LabelFontWeights;\r\n _TextFontSize! : number;\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\nimport { RouterLink } from '@angular/router';\r\n\r\n@Component({\r\n selector: 'app-button',\r\n standalone: true,\r\n imports: [CommonModule,AlertComponent,RouterLink],\r\n templateUrl: './button.component.html',\r\n styleUrl: './button.component.css'\r\n})\r\nexport class ButtonComponent implements OnInit {\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\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\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 \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","<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]=\"{'flex-direction':_IconOrientation}\"\r\n(mouseover)=\"OnMouseOver()\"\r\n(mouseout)=\"OnMouseOut()\"\r\n(click)=\"OnClick()\"\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\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.startListenToStateChange();\r\n this.setIconOrientationOnTemplate();\r\n }\r\n\r\n Name = input.required<string>();\r\n\r\n _IconEnabled! : boolean ;\r\n _Icon! : LabelIconEnum;\r\n _IconColor! : string;\r\n IconOrientation! : LabelIconPositionEnum ;\r\n _IconOrientation! : string;\r\n _IconDistanceFromTextObject! : object;\r\n _IconDistanceFromText! : number; \r\n\r\n _TextEnabled! : boolean ;\r\n _TextFontFamily! : string ;\r\n _Text! : string ;\r\n _TextColor! : string;\r\n _TextFontWeight! : LabelFontWeights;\r\n _TextFontSize! : number;\r\n\r\n\r\n\r\n LabelModel! : LabelModel;\r\n\r\n\r\n\r\n LabelService = inject(LabelService)\r\n\r\n\r\n\r\n startListenToStateChange(){\r\n this.LabelService.stateChanger.subscribe((callersModel:LabelModel)=>{\r\n if(callersModel.name == this.Name()){\r\n this._IconEnabled = callersModel._IconEnabled;\r\n this._Icon = callersModel._Icon;\r\n this._IconColor = callersModel._IconColor;\r\n this.IconOrientation = callersModel.IconOrientation;\r\n this._IconDistanceFromText = callersModel._IconDistanceFromText;\r\n this._TextEnabled = callersModel._TextEnabled;\r\n this._TextFontFamily = callersModel._TextFontFamily;\r\n this._Text = callersModel._Text;\r\n this._TextColor = callersModel._TextColor;\r\n this._TextFontWeight = callersModel._TextFontWeight;\r\n this._TextFontSize = callersModel._TextFontSize;\r\n this.setIconOrientationOnTemplate();\r\n }\r\n });\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/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\r\n callerData.left = this.element.nativeElement.getBoundingClientRect().left + this.element.nativeElement.offsetWidth\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\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\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 \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]=\"{'flex-direction':_IconOrientation}\"\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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"}
@@ -6,23 +6,22 @@ import * as i0 from "@angular/core";
6
6
  export declare class LabelComponent implements OnInit {
7
7
  ngOnInit(): void;
8
8
  Name: import("@angular/core").InputSignal<string>;
9
- _IconEnabled: boolean;
10
- _Icon: LabelIconEnum;
11
- _IconColor: string;
12
- IconOrientation: LabelIconPositionEnum;
9
+ _IconEnabled: import("@angular/core").InputSignal<boolean>;
10
+ _Icon: import("@angular/core").InputSignal<LabelIconEnum>;
11
+ _IconColor: import("@angular/core").InputSignal<string>;
12
+ IconOrientation: import("@angular/core").InputSignal<LabelIconPositionEnum>;
13
13
  _IconOrientation: string;
14
14
  _IconDistanceFromTextObject: object;
15
- _IconDistanceFromText: number;
16
- _TextEnabled: boolean;
17
- _TextFontFamily: string;
18
- _Text: string;
19
- _TextColor: string;
20
- _TextFontWeight: LabelFontWeights;
21
- _TextFontSize: number;
15
+ IconDistanceFromText: import("@angular/core").InputSignal<number>;
16
+ _TextEnabled: import("@angular/core").InputSignal<boolean>;
17
+ _TextFontFamily: import("@angular/core").InputSignal<string>;
18
+ _Text: import("@angular/core").InputSignal<string>;
19
+ _TextColor: import("@angular/core").InputSignal<string>;
20
+ _TextFontWeight: import("@angular/core").InputSignal<LabelFontWeights>;
21
+ _TextFontSize: import("@angular/core").InputSignal<number>;
22
22
  LabelModel: LabelModel;
23
23
  LabelService: LabelService;
24
- startListenToStateChange(): void;
25
24
  setIconOrientationOnTemplate(): void;
26
25
  static ɵfac: i0.ɵɵFactoryDeclaration<LabelComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "app-label", never, { "Name": { "alias": "Name"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "app-label", never, { "Name": { "alias": "Name"; "required": true; "isSignal": true; }; "_IconEnabled": { "alias": "_IconEnabled"; "required": true; "isSignal": true; }; "_Icon": { "alias": "_Icon"; "required": true; "isSignal": true; }; "_IconColor": { "alias": "_IconColor"; "required": true; "isSignal": true; }; "IconOrientation": { "alias": "IconOrientation"; "required": true; "isSignal": true; }; "IconDistanceFromText": { "alias": "IconDistanceFromText"; "required": true; "isSignal": true; }; "_TextEnabled": { "alias": "_TextEnabled"; "required": true; "isSignal": true; }; "_TextFontFamily": { "alias": "_TextFontFamily"; "required": true; "isSignal": true; }; "_Text": { "alias": "_Text"; "required": true; "isSignal": true; }; "_TextColor": { "alias": "_TextColor"; "required": true; "isSignal": true; }; "_TextFontWeight": { "alias": "_TextFontWeight"; "required": true; "isSignal": true; }; "_TextFontSize": { "alias": "_TextFontSize"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
28
27
  }
@@ -1,15 +1,3 @@
1
- import { LabelIconPositionEnum, LabelFontWeights, LabelIconEnum } from "./label.enum";
2
1
  export declare class LabelModel {
3
2
  name: string;
4
- _IconEnabled: boolean;
5
- _Icon: LabelIconEnum;
6
- _IconColor: string;
7
- IconOrientation: LabelIconPositionEnum;
8
- _IconDistanceFromText: number;
9
- _TextEnabled: boolean;
10
- _TextFontFamily: string;
11
- _Text: string;
12
- _TextColor: string;
13
- _TextFontWeight: LabelFontWeights;
14
- _TextFontSize: number;
15
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lightning-tec-br-angular-components",
3
- "version": "0.1.8",
3
+ "version": "0.2.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.0.0",
6
6
  "@angular/core": "^19.0.0"