@gipisistemas/ng-core 1.1.4 → 1.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (30) hide show
  1. package/bundles/gipisistemas-ng-core.umd.js +297 -7
  2. package/bundles/gipisistemas-ng-core.umd.js.map +1 -1
  3. package/bundles/gipisistemas-ng-core.umd.min.js +7 -7
  4. package/bundles/gipisistemas-ng-core.umd.min.js.map +1 -1
  5. package/core/utils/string.util.d.ts +4 -0
  6. package/esm2015/core/utils/string.util.js +27 -1
  7. package/esm2015/gipi-components.js +2 -1
  8. package/esm2015/shared/components/select-entity-paged/shared/select-search/select-search.component.js +2 -2
  9. package/esm2015/shared/gipi-components/button/button.component.js +18 -2
  10. package/esm2015/shared/gipi-components/input-select-paged/input-search/input-search.component.js +2 -2
  11. package/esm2015/shared/gipi-components/popover/shared/popover-trigger.js +4 -4
  12. package/esm2015/shared/gipi-components/split-button/split-button.component.js +243 -0
  13. package/esm2015/shared/shared.module.js +3 -1
  14. package/esm5/core/utils/string.util.js +27 -1
  15. package/esm5/gipi-components.js +2 -1
  16. package/esm5/shared/components/select-entity-paged/shared/select-search/select-search.component.js +2 -2
  17. package/esm5/shared/gipi-components/button/button.component.js +22 -2
  18. package/esm5/shared/gipi-components/input-select-paged/input-search/input-search.component.js +2 -2
  19. package/esm5/shared/gipi-components/popover/shared/popover-trigger.js +4 -4
  20. package/esm5/shared/gipi-components/split-button/split-button.component.js +249 -0
  21. package/esm5/shared/shared.module.js +3 -1
  22. package/fesm2015/gipisistemas-ng-core.js +288 -9
  23. package/fesm2015/gipisistemas-ng-core.js.map +1 -1
  24. package/fesm5/gipisistemas-ng-core.js +297 -8
  25. package/fesm5/gipisistemas-ng-core.js.map +1 -1
  26. package/gipi-components.d.ts +1 -0
  27. package/gipisistemas-ng-core.metadata.json +1 -1
  28. package/package.json +1 -1
  29. package/shared/gipi-components/button/button.component.d.ts +14 -0
  30. package/shared/gipi-components/split-button/split-button.component.d.ts +60 -0
@@ -566,6 +566,32 @@ var StringUtil = /** @class */ (function () {
566
566
  StringUtil.truncateWithEllipses = function (text, max) {
567
567
  return text.trim().substring(0, max - 1) + (text.trim().length > max) ? '...' : '';
568
568
  };
569
+ /** Codifica a string em Base64 */
570
+ StringUtil.encodeBase64 = function (input) {
571
+ if (this.isEmpty(input)) {
572
+ return '';
573
+ }
574
+ var utf8Encoder = new TextEncoder();
575
+ var utf8Bytes = utf8Encoder.encode(input);
576
+ var binary = '';
577
+ utf8Bytes.forEach(function (byte) {
578
+ binary += String.fromCharCode(byte);
579
+ });
580
+ return btoa(binary);
581
+ };
582
+ /** Decodifica a string Base64 */
583
+ StringUtil.decodeBase64 = function (input) {
584
+ if (this.isEmpty(input)) {
585
+ return '';
586
+ }
587
+ var binary = atob(input);
588
+ var utf8Decoder = new TextDecoder();
589
+ var utf8Bytes = new Uint8Array(binary.length);
590
+ for (var i = 0; i < binary.length; i++) {
591
+ utf8Bytes[i] = binary.charCodeAt(i);
592
+ }
593
+ return utf8Decoder.decode(utf8Bytes);
594
+ };
569
595
  StringUtil.EMPTY = '';
570
596
  return StringUtil;
571
597
  }());
@@ -4149,7 +4175,7 @@ var SelectSearchComponent = /** @class */ (function () {
4149
4175
  SelectSearchComponent = SelectSearchComponent_1 = __decorate([
4150
4176
  Component({
4151
4177
  selector: 'itss-input-search',
4152
- template: "<!-- Espa\u00E7o reservado para ajustar o deslocamento vertical dos elementos mat-option -->\n<input matInput\n class=\"mat-select-search-input mat-select-search-hidden\" />\n\n<!-- Note: o mat-datepicker-content mat-tab-header \u00E9 necess\u00E1rio para herdar as cores do tema do material, consulte PR n\u00BA 22 -->\n<div #innerSelectSearch\n class=\"mat-select-search-inner mat-typography mat-datepicker-content mat-tab-header\"\n [ngClass]=\"{'mat-select-search-inner-multiple': matSelect.multiple, 'mat-select-search-inner-toggle-all': _isToggleAllCheckboxVisible() }\">\n\n <mat-checkbox *ngIf=\"_isToggleAllCheckboxVisible()\"\n class=\"mat-select-search-toggle-all-checkbox\"\n color=\"primary\"\n [color]=\"matFormField?.color\"\n [disabled]=\"searching\"\n [matTooltip]=\"toggleAllCheckboxTooltipMessage\"\n matTooltipClass=\"ngx-mat-select-search-toggle-all-tooltip\"\n [matTooltipPosition]=\"toggleAllCheckboxTooltipPosition\"\n [(ngModel)]=\"toggleAllCheckboxChecked\"\n [(indeterminate)]=\"toggleAllCheckboxIndeterminate\">\n </mat-checkbox>\n\n <input class=\"mat-select-search-input mat-input-element\"\n autocomplete=\"off\"\n [type]=\"type\"\n [formControl]=\"_formControl\"\n #searchSelectInput\n (keydown)=\"_handleKeydown($event)\"\n (keyup)=\"_handleKeyup($event)\"\n (blur)=\"onBlur()\"\n [placeholder]=\"placeholderLabel\"\n [attr.aria-label]=\"ariaLabel\">\n\n <mat-spinner *ngIf=\"searching\"\n class=\"mat-select-search-spinner\"\n diameter=\"16\">\n </mat-spinner>\n\n <button *ngIf=\"!hideClearSearchButton && value && !searching\"\n mat-icon-button\n aria-label=\"Clear\"\n (click)=\"_reset(true)\"\n class=\"mat-select-search-clear\">\n <ng-content *ngIf=\"clearIcon; else defaultIcon\"\n select=\"[itssSelectSearchClear]\">\n </ng-content>\n\n <ng-template #defaultIcon>\n <mat-icon [svgIcon]=\"closeSvgIcon\">\n {{ !closeSvgIcon ? closeIcon : null }}\n </mat-icon>\n </ng-template>\n </button>\n\n <ng-content select=\".mat-select-search-custom-header-content\"> </ng-content>\n\n <mat-divider> </mat-divider>\n</div>\n\n<div *ngIf=\"(_showNoEntriesFound$ | async) && !searching\"\n class=\"mat-select-search-no-entries-found\">\n <ng-content *ngIf=\"noEntriesFound; else defaultNoEntriesFound\"\n select=\"[itssSelectNoEntriesFound]\">\n </ng-content>\n\n <ng-template #defaultNoEntriesFound>\n {{ noEntriesFoundLabel }}\n </ng-template>\n</div>\n",
4178
+ template: "<!-- Espa\u00E7o reservado para ajustar o deslocamento vertical dos elementos mat-option -->\n<input matInput\n class=\"mat-select-search-input mat-select-search-hidden\" />\n\n<!-- Note: o mat-datepicker-content mat-tab-header \u00E9 necess\u00E1rio para herdar as cores do tema do material, consulte PR n\u00BA 22 -->\n<div #innerSelectSearch\n class=\"mat-select-search-inner mat-typography mat-datepicker-content mat-tab-header\"\n [ngClass]=\"{'mat-select-search-inner-multiple': matSelect.multiple, 'mat-select-search-inner-toggle-all': _isToggleAllCheckboxVisible() }\">\n\n <mat-checkbox *ngIf=\"_isToggleAllCheckboxVisible()\"\n class=\"mat-select-search-toggle-all-checkbox\"\n color=\"primary\"\n [color]=\"matFormField?.color\"\n [disabled]=\"searching\"\n [matTooltip]=\"toggleAllCheckboxTooltipMessage\"\n matTooltipClass=\"ngx-mat-select-search-toggle-all-tooltip\"\n [matTooltipPosition]=\"toggleAllCheckboxTooltipPosition\"\n [(ngModel)]=\"toggleAllCheckboxChecked\"\n [(indeterminate)]=\"toggleAllCheckboxIndeterminate\">\n </mat-checkbox>\n\n <input class=\"mat-select-search-input mat-input-element\"\n autocomplete=\"off\"\n [type]=\"type\"\n [formControl]=\"_formControl\"\n #searchSelectInput\n (keydown)=\"_handleKeydown($event)\"\n (keyup)=\"_handleKeyup($event)\"\n (blur)=\"onBlur()\"\n [placeholder]=\"placeholderLabel\"\n [attr.aria-label]=\"ariaLabel\"\n aria-hidden=\"false\">\n\n <mat-spinner *ngIf=\"searching\"\n class=\"mat-select-search-spinner\"\n diameter=\"16\">\n </mat-spinner>\n\n <button *ngIf=\"!hideClearSearchButton && value && !searching\"\n mat-icon-button\n aria-label=\"Clear\"\n (click)=\"_reset(true)\"\n class=\"mat-select-search-clear\">\n <ng-content *ngIf=\"clearIcon; else defaultIcon\"\n select=\"[itssSelectSearchClear]\">\n </ng-content>\n\n <ng-template #defaultIcon>\n <mat-icon [svgIcon]=\"closeSvgIcon\">\n {{ !closeSvgIcon ? closeIcon : null }}\n </mat-icon>\n </ng-template>\n </button>\n\n <ng-content select=\".mat-select-search-custom-header-content\"> </ng-content>\n\n <mat-divider> </mat-divider>\n</div>\n\n<div *ngIf=\"(_showNoEntriesFound$ | async) && !searching\"\n class=\"mat-select-search-no-entries-found\">\n <ng-content *ngIf=\"noEntriesFound; else defaultNoEntriesFound\"\n select=\"[itssSelectNoEntriesFound]\">\n </ng-content>\n\n <ng-template #defaultNoEntriesFound>\n {{ noEntriesFoundLabel }}\n </ng-template>\n</div>",
4153
4179
  providers: [
4154
4180
  {
4155
4181
  provide: NG_VALUE_ACCESSOR,
@@ -8399,7 +8425,7 @@ var GIPIPopoverTrigger = /** @class */ (function () {
8399
8425
  var _this = this;
8400
8426
  if (this._overlayRef) {
8401
8427
  /** Only subscribe to backdrop if trigger event is click */
8402
- if (this.triggerEvent === 'click' && this.backdropCloseOnClick === true) {
8428
+ if (this.triggerEvent !== 'hover' && this.backdropCloseOnClick) {
8403
8429
  this._overlayRef.backdropClick()
8404
8430
  .pipe(takeUntil(this.popoverClosed), takeUntil(this._onDestroy))
8405
8431
  .subscribe(function () {
@@ -8483,8 +8509,8 @@ var GIPIPopoverTrigger = /** @class */ (function () {
8483
8509
  GIPIPopoverTrigger.prototype._getOverlayConfig = function () {
8484
8510
  var overlayState = new OverlayConfig();
8485
8511
  overlayState.positionStrategy = this._getPosition();
8486
- /** Display overlay backdrop if trigger event is click */
8487
- if (this.triggerEvent === 'click') {
8512
+ /** Display overlay backdrop if trigger event is different of hover */
8513
+ if (this.triggerEvent !== 'hover') {
8488
8514
  overlayState.hasBackdrop = true;
8489
8515
  overlayState.backdropClass = 'cdk-overlay-transparent-backdrop';
8490
8516
  }
@@ -8773,6 +8799,26 @@ var GIPIButtonComponent = /** @class */ (function () {
8773
8799
  this.onBlur = new EventEmitter(true);
8774
8800
  }
8775
8801
  GIPIButtonComponent_1 = GIPIButtonComponent;
8802
+ Object.defineProperty(GIPIButtonComponent.prototype, "internalButtonClass", {
8803
+ get: function () {
8804
+ return {
8805
+ 'button-base': true,
8806
+ 'button-primary': (this.isButtonPrimary || this.isButtonPrimaryIcon),
8807
+ 'button-primary-icon': this.isButtonPrimaryIcon,
8808
+ 'button-secondary': (this.isButtonSecondary || this.isButtonSecondaryIcon),
8809
+ 'button-secondary-icon': this.isButtonSecondaryIcon,
8810
+ 'button-tertiary': (this.isButtonTertiary || this.isButtonTertiaryIcon),
8811
+ 'button-tertiary-icon': this.isButtonTertiaryIcon,
8812
+ 'button-link': this.isButtonLink,
8813
+ 'button-only-icon': this.isButtonIcon,
8814
+ 'button-for-input': this.isForInput,
8815
+ 'button-notification': this.notification,
8816
+ 'button-action': this.isButtonAction
8817
+ };
8818
+ },
8819
+ enumerable: false,
8820
+ configurable: true
8821
+ });
8776
8822
  GIPIButtonComponent.prototype.ngOnInit = function () { };
8777
8823
  GIPIButtonComponent.prototype.ngOnDestroy = function () {
8778
8824
  if (this.popoverTrigger) {
@@ -8972,7 +9018,7 @@ var GIPIButtonComponent = /** @class */ (function () {
8972
9018
  Component({
8973
9019
  selector: "gipi-button[gipi-primary], gipi-button[gipi-primary-icon], gipi-button[gipi-secondary], gipi-button[gipi-secondary-icon],\n gipi-button[gipi-tertiary], gipi-button[gipi-link], gipi-button[gipi-icon], gipi-button[gipi-action]",
8974
9020
  exportAs: 'gipiButton',
8975
- template: "<button [attr.id]=\"id\"\n [attr.name]=\"name\"\n [attr.type]=\"type\"\n [attr.aria-label]=\"ariaLabel ? ariaLabel : label\"\n [attr.title]=\"title ? title : label\"\n [disabled]=\"disabled || loading\"\n [matTooltip]=\"tooltip\"\n role=\"button\"\n [class]=\"buttonClass\"\n [ngClass]=\"{'button-base': true,\n 'button-primary': (isButtonPrimary || isButtonPrimaryIcon),\n 'button-primary-icon': isButtonPrimaryIcon,\n 'button-secondary': (isButtonSecondary || isButtonSecondaryIcon),\n 'button-secondary-icon': isButtonSecondaryIcon,\n 'button-tertiary': (isButtonTertiary || isButtonTertiaryIcon),\n 'button-tertiary-icon': isButtonTertiaryIcon,\n 'button-link': isButtonLink,\n 'button-only-icon': isButtonIcon,\n 'button-for-input': isForInput,\n 'button-notification': notification,\n 'button-action': isButtonAction}\"\n [style.padding.px]=\"buttonPadding\"\n #popoverTrigger=\"popoverTrigger\"\n [popoverTriggerFor]=\"btnPopover\"\n [popoverTriggerOn]=\"popover ? 'click' : 'none'\"\n [popoverBackdropCloseOnClick]=\"true\"\n (opened)=\"onOpenPopover.emit()\"\n (closed)=\"onClosePopover.emit()\"\n (click)=\"handleClick($event)\"\n (focus)=\"handleFocus($event)\"\n (blur)=\"handleBlur($event)\">\n\n <span [ngClass]=\"{'button-content': true,\n 'button-disabled': disabled,\n 'button-icon-left': ((iconPos === 'left') && label),\n 'button-icon-right': ((iconPos === 'right') && label),\n 'button-icon-top': ((iconPos === 'top') && label),\n 'button-icon-bottom': ((iconPos === 'bottom') && label),\n 'button-icon-center': (iconPos === 'center')}\">\n\n <mat-icon *ngIf=\"svgIcon || icon\"\n [svgIcon]=\"svgIcon\"\n [style.width.px]=\"iconWidth\"\n [style.height.px]=\"iconHeight\"\n [style.font-size.px]=\"iconWidth || iconHeight\">\n {{ (!svgIcon && icon) ? icon : '' }}\n </mat-icon>\n\n <span class=\"button-label\"\n [attr.aria-hidden]=\"(icon || svgIcon) && !label\"\n *ngIf=\"!isButtonIcon && label\">\n {{ label }}\n </span>\n </span>\n\n</button>\n<gipi-overlay *ngIf=\"overlay && !popover\"\n [(visible)]=\"_overlayVisible\"\n [appendTo]=\"'body'\"\n (onShow)=\"onShowOverlay.emit()\">\n <ng-content> </ng-content>\n</gipi-overlay>\n\n<gipi-popover #btnPopover=\"gipiPopover\"\n [popoverOverlapTrigger]=\"false\"\n [popoverCloseOnClick]=\"false\"\n [popoverArrowWidth]=\"0\"\n [popoverOffsetY]=\"3\"\n [fxHide]=\"!popover\">\n <div class=\"btn-popover-content\">\n <ng-content> </ng-content>\n </div>\n</gipi-popover>",
9021
+ template: "<button [attr.id]=\"id\"\n [attr.name]=\"name\"\n [attr.type]=\"type\"\n [attr.aria-label]=\"ariaLabel ? ariaLabel : label\"\n [attr.title]=\"title ? title : label\"\n [disabled]=\"disabled || loading\"\n [matTooltip]=\"tooltip\"\n role=\"button\"\n [class]=\"buttonClass\"\n [ngClass]=\"internalButtonClass\"\n [style.padding.px]=\"buttonPadding\"\n #popoverTrigger=\"popoverTrigger\"\n [popoverTriggerFor]=\"btnPopover\"\n [popoverTriggerOn]=\"popover ? 'click' : 'none'\"\n [popoverBackdropCloseOnClick]=\"true\"\n (opened)=\"onOpenPopover.emit()\"\n (closed)=\"onClosePopover.emit()\"\n (click)=\"handleClick($event)\"\n (focus)=\"handleFocus($event)\"\n (blur)=\"handleBlur($event)\">\n <span [ngClass]=\"{'button-content': true,\n 'button-disabled': disabled,\n 'button-icon-left': ((iconPos === 'left') && label),\n 'button-icon-right': ((iconPos === 'right') && label),\n 'button-icon-top': ((iconPos === 'top') && label),\n 'button-icon-bottom': ((iconPos === 'bottom') && label),\n 'button-icon-center': (iconPos === 'center')}\">\n <mat-icon *ngIf=\"svgIcon || icon\"\n [svgIcon]=\"svgIcon\"\n [style.width.px]=\"iconWidth\"\n [style.height.px]=\"iconHeight\"\n [style.font-size.px]=\"iconWidth || iconHeight\">\n {{ (!svgIcon && icon) ? icon : '' }}\n </mat-icon>\n\n <span class=\"button-label\"\n [attr.aria-hidden]=\"(icon || svgIcon) && !label\"\n *ngIf=\"!isButtonIcon && label\">\n {{ label }}\n </span>\n </span>\n</button>\n\n<gipi-overlay *ngIf=\"overlay && !popover\"\n [(visible)]=\"_overlayVisible\"\n [appendTo]=\"'body'\"\n (onShow)=\"onShowOverlay.emit()\">\n <ng-content> </ng-content>\n</gipi-overlay>\n\n<gipi-popover #btnPopover=\"gipiPopover\"\n [popoverOverlapTrigger]=\"false\"\n [popoverCloseOnClick]=\"false\"\n [popoverArrowWidth]=\"0\"\n [popoverOffsetY]=\"3\"\n [fxHide]=\"!popover\">\n <div class=\"btn-popover-content\">\n <ng-content> </ng-content>\n </div>\n</gipi-popover>",
8976
9022
  providers: [
8977
9023
  {
8978
9024
  provide: NG_VALUE_ACCESSOR,
@@ -13531,7 +13577,7 @@ var GIPIInputSearchComponent = /** @class */ (function () {
13531
13577
  Component({
13532
13578
  selector: "gipi-input-search",
13533
13579
  exportAs: 'gipiInputSearch',
13534
- template: "<!-- Espa\u00E7o reservado para ajustar o deslocamento vertical dos elementos mat-option -->\n<input matInput\n class=\"mat-select-search-input mat-select-search-hidden\" />\n\n<!-- Note: o mat-datepicker-content mat-tab-header \u00E9 necess\u00E1rio para herdar as cores do tema do material, consulte PR n\u00BA 22 -->\n<div #innerSelectSearch\n class=\"mat-select-search-inner mat-typography mat-datepicker-content mat-tab-header\">\n\n <input class=\"mat-select-search-input mat-input-element\"\n aria-label=\"Pesquisa suspensa\"\n autocomplete=\"off\"\n type=\"text\"\n #searchSelectInput\n [placeholder]=\"placeholderLabel\"\n [formControl]=\"_formControl\"\n (keydown)=\"_handleKeydown($event)\"\n (keyup)=\"_handleKeyup($event)\"\n (blur)=\"onBlur()\">\n\n <mat-spinner *ngIf=\"searching\"\n class=\"mat-select-search-spinner\"\n diameter=\"16\">\n </mat-spinner>\n\n <button *ngIf=\"!hideClearSearchButton && value && !searching\"\n class=\"mat-select-search-clear\"\n aria-label=\"Limpar\"\n mat-icon-button\n (click)=\"_reset(true)\">\n <mat-icon> close </mat-icon>\n </button>\n\n <mat-divider> </mat-divider>\n</div>\n\n<div *ngIf=\"(_showNoEntriesFound$ | async) && !searching\"\n class=\"mat-select-search-no-entries-found\">\n <mat-icon>sentiment_very_dissatisfied</mat-icon>\n Nenhum registro foi encontrado\n</div>",
13580
+ template: "<!-- Espa\u00E7o reservado para ajustar o deslocamento vertical dos elementos mat-option -->\n<input matInput\n class=\"mat-select-search-input mat-select-search-hidden\" />\n\n<!-- Note: o mat-datepicker-content mat-tab-header \u00E9 necess\u00E1rio para herdar as cores do tema do material, consulte PR n\u00BA 22 -->\n<div #innerSelectSearch\n class=\"mat-select-search-inner mat-typography mat-datepicker-content mat-tab-header\">\n\n <input class=\"mat-select-search-input mat-input-element\"\n aria-label=\"Pesquisa suspensa\"\n aria-hidden=\"false\"\n autocomplete=\"off\"\n type=\"text\"\n #searchSelectInput\n [placeholder]=\"placeholderLabel\"\n [formControl]=\"_formControl\"\n (keydown)=\"_handleKeydown($event)\"\n (keyup)=\"_handleKeyup($event)\"\n (blur)=\"onBlur()\">\n\n <mat-spinner *ngIf=\"searching\"\n class=\"mat-select-search-spinner\"\n diameter=\"16\">\n </mat-spinner>\n\n <button *ngIf=\"!hideClearSearchButton && value && !searching\"\n class=\"mat-select-search-clear\"\n aria-label=\"Limpar\"\n mat-icon-button\n (click)=\"_reset(true)\">\n <mat-icon> close </mat-icon>\n </button>\n\n <mat-divider> </mat-divider>\n</div>\n\n<div *ngIf=\"(_showNoEntriesFound$ | async) && !searching\"\n class=\"mat-select-search-no-entries-found\">\n <mat-icon>sentiment_very_dissatisfied</mat-icon>\n Nenhum registro foi encontrado\n</div>",
13535
13581
  providers: [
13536
13582
  {
13537
13583
  provide: NG_VALUE_ACCESSOR,
@@ -24609,11 +24655,253 @@ var MonthYearPickerModule = /** @class */ (function () {
24609
24655
  }());
24610
24656
 
24611
24657
  var nextUniqueId$m = 0;
24658
+ var GIPISplitButtonComponent = /** @class */ (function () {
24659
+ function GIPISplitButtonComponent(elementRef) {
24660
+ this.elementRef = elementRef;
24661
+ this._uniqueId = nextUniqueId$m++;
24662
+ this._name = "gipi-split-button-" + this._uniqueId;
24663
+ this.idBtnDefault = "gipi-split-button-default-" + this._uniqueId;
24664
+ this.idBtnMenu = "gipi-split-button-menu-" + this._uniqueId;
24665
+ this.isSplitButtonPrimary = this._hasHostAttributes('gipi-primary');
24666
+ this.isSplitButtonSecondary = this._hasHostAttributes('gipi-secondary');
24667
+ this.isSplitButtonTertiary = this._hasHostAttributes('gipi-tertiary');
24668
+ this.isSplitButtonAction = this._hasHostAttributes('gipi-action');
24669
+ this.id = this._name;
24670
+ this.name = this._name;
24671
+ this.type = 'button';
24672
+ this.ariaLabel = '';
24673
+ this.title = '';
24674
+ this.label = '';
24675
+ this.disabled = false;
24676
+ this.loading = false;
24677
+ this.tooltip = '';
24678
+ this.splitOptions = [];
24679
+ this.onOpenPopover = new EventEmitter();
24680
+ this.onClosePopover = new EventEmitter();
24681
+ this.onClick = new EventEmitter(true);
24682
+ this.onFocus = new EventEmitter(true);
24683
+ this.onBlur = new EventEmitter(true);
24684
+ }
24685
+ GIPISplitButtonComponent_1 = GIPISplitButtonComponent;
24686
+ GIPISplitButtonComponent.prototype.ngOnInit = function () { };
24687
+ GIPISplitButtonComponent.prototype.ngOnDestroy = function () {
24688
+ if (this.popoverTrigger) {
24689
+ this.popoverTrigger.destroyPopover();
24690
+ }
24691
+ };
24692
+ GIPISplitButtonComponent.prototype.getHostElement = function () {
24693
+ return this.elementRef.nativeElement;
24694
+ };
24695
+ GIPISplitButtonComponent.prototype._hasHostAttributes = function () {
24696
+ var _this = this;
24697
+ var attributes = [];
24698
+ for (var _i = 0; _i < arguments.length; _i++) {
24699
+ attributes[_i] = arguments[_i];
24700
+ }
24701
+ return attributes.some(function (attribute) { return _this.getHostElement().hasAttribute(attribute); });
24702
+ };
24703
+ GIPISplitButtonComponent.prototype.btnIdAndName = function () {
24704
+ var uniqueId = nextUniqueId$m++;
24705
+ return {
24706
+ btnDefault: "gipi-split-button-default-" + uniqueId,
24707
+ btnMenu: "gipi-split-button-menu-" + uniqueId,
24708
+ };
24709
+ };
24710
+ GIPISplitButtonComponent.prototype.getInternalButtonClass = function (isBtnDefault) {
24711
+ return {
24712
+ 'button-default': isBtnDefault,
24713
+ 'button-menu': !isBtnDefault,
24714
+ 'button-primary': this.isSplitButtonPrimary,
24715
+ 'button-secondary': this.isSplitButtonSecondary,
24716
+ 'button-tertiary': this.isSplitButtonTertiary,
24717
+ 'button-action': this.isSplitButtonAction,
24718
+ };
24719
+ };
24720
+ GIPISplitButtonComponent.prototype.showPopover = function () {
24721
+ if (this.disabled || this.loading) {
24722
+ return;
24723
+ }
24724
+ else {
24725
+ this.popoverTrigger.openPopover();
24726
+ }
24727
+ };
24728
+ GIPISplitButtonComponent.prototype.closePopover = function () {
24729
+ if (this.disabled || this.loading) {
24730
+ return;
24731
+ }
24732
+ else {
24733
+ this.popoverTrigger.closePopover();
24734
+ }
24735
+ };
24736
+ GIPISplitButtonComponent.prototype.handleClick = function (event) {
24737
+ if (this.disabled || this.loading) {
24738
+ return;
24739
+ }
24740
+ else {
24741
+ this.onClick.emit(event);
24742
+ this.closePopover();
24743
+ event.stopPropagation();
24744
+ }
24745
+ };
24746
+ GIPISplitButtonComponent.prototype.handleFocus = function (event) {
24747
+ if (this.disabled || this.loading) {
24748
+ return;
24749
+ }
24750
+ else {
24751
+ this.onFocus.emit(event);
24752
+ event.stopPropagation();
24753
+ }
24754
+ };
24755
+ GIPISplitButtonComponent.prototype.handleBlur = function (event) {
24756
+ if (this.disabled || this.loading) {
24757
+ return;
24758
+ }
24759
+ else {
24760
+ this.onBlur.emit(event);
24761
+ event.stopPropagation();
24762
+ }
24763
+ };
24764
+ GIPISplitButtonComponent.prototype.handleClickBtnMenu = function (event) {
24765
+ if (this.disabled || this.loading) {
24766
+ return;
24767
+ }
24768
+ else {
24769
+ if (!ObjectUtil.isNull(this.popoverTrigger)) {
24770
+ this.popoverTrigger.togglePopover();
24771
+ }
24772
+ event.stopPropagation();
24773
+ }
24774
+ };
24775
+ GIPISplitButtonComponent.prototype.handleClickBtnSplitOption = function (option) {
24776
+ if (this.disabled || this.loading || !option || option.disabled || !option.clickFn) {
24777
+ return;
24778
+ }
24779
+ else {
24780
+ option.clickFn();
24781
+ this.closePopover();
24782
+ }
24783
+ };
24784
+ GIPISplitButtonComponent.prototype.onResize = function (event) {
24785
+ if (this.popoverTrigger) {
24786
+ this.popoverTrigger.closePopover();
24787
+ event.stopPropagation();
24788
+ }
24789
+ };
24790
+ var GIPISplitButtonComponent_1;
24791
+ GIPISplitButtonComponent.ctorParameters = function () { return [
24792
+ { type: ElementRef }
24793
+ ]; };
24794
+ __decorate([
24795
+ ViewChild(GIPIPopoverTrigger, { static: false }),
24796
+ __metadata("design:type", GIPIPopoverTrigger)
24797
+ ], GIPISplitButtonComponent.prototype, "popoverTrigger", void 0);
24798
+ __decorate([
24799
+ Input(),
24800
+ __metadata("design:type", String)
24801
+ ], GIPISplitButtonComponent.prototype, "id", void 0);
24802
+ __decorate([
24803
+ Input(),
24804
+ __metadata("design:type", String)
24805
+ ], GIPISplitButtonComponent.prototype, "name", void 0);
24806
+ __decorate([
24807
+ Input(),
24808
+ __metadata("design:type", String)
24809
+ ], GIPISplitButtonComponent.prototype, "type", void 0);
24810
+ __decorate([
24811
+ Input(),
24812
+ __metadata("design:type", String)
24813
+ ], GIPISplitButtonComponent.prototype, "ariaLabel", void 0);
24814
+ __decorate([
24815
+ Input(),
24816
+ __metadata("design:type", String)
24817
+ ], GIPISplitButtonComponent.prototype, "title", void 0);
24818
+ __decorate([
24819
+ Input(),
24820
+ __metadata("design:type", String)
24821
+ ], GIPISplitButtonComponent.prototype, "label", void 0);
24822
+ __decorate([
24823
+ Input(),
24824
+ __metadata("design:type", String)
24825
+ ], GIPISplitButtonComponent.prototype, "buttonClass", void 0);
24826
+ __decorate([
24827
+ Input(),
24828
+ __metadata("design:type", Boolean)
24829
+ ], GIPISplitButtonComponent.prototype, "disabled", void 0);
24830
+ __decorate([
24831
+ Input(),
24832
+ __metadata("design:type", Boolean)
24833
+ ], GIPISplitButtonComponent.prototype, "loading", void 0);
24834
+ __decorate([
24835
+ Input(),
24836
+ __metadata("design:type", String)
24837
+ ], GIPISplitButtonComponent.prototype, "tooltip", void 0);
24838
+ __decorate([
24839
+ Input('options'),
24840
+ __metadata("design:type", Array)
24841
+ ], GIPISplitButtonComponent.prototype, "splitOptions", void 0);
24842
+ __decorate([
24843
+ Output(),
24844
+ __metadata("design:type", EventEmitter)
24845
+ ], GIPISplitButtonComponent.prototype, "onOpenPopover", void 0);
24846
+ __decorate([
24847
+ Output(),
24848
+ __metadata("design:type", EventEmitter)
24849
+ ], GIPISplitButtonComponent.prototype, "onClosePopover", void 0);
24850
+ __decorate([
24851
+ Output('click'),
24852
+ __metadata("design:type", EventEmitter)
24853
+ ], GIPISplitButtonComponent.prototype, "onClick", void 0);
24854
+ __decorate([
24855
+ Output('focus'),
24856
+ __metadata("design:type", EventEmitter)
24857
+ ], GIPISplitButtonComponent.prototype, "onFocus", void 0);
24858
+ __decorate([
24859
+ Output('blur'),
24860
+ __metadata("design:type", EventEmitter)
24861
+ ], GIPISplitButtonComponent.prototype, "onBlur", void 0);
24862
+ __decorate([
24863
+ HostListener('window:resize', ['$event']),
24864
+ __metadata("design:type", Function),
24865
+ __metadata("design:paramtypes", [UIEvent]),
24866
+ __metadata("design:returntype", void 0)
24867
+ ], GIPISplitButtonComponent.prototype, "onResize", null);
24868
+ GIPISplitButtonComponent = GIPISplitButtonComponent_1 = __decorate([
24869
+ Component({
24870
+ selector: "gipi-split-button[gipi-primary], gipi-split-button[gipi-secondary],\n gipi-split-button[gipi-tertiary], gipi-split-button[gipi-action]",
24871
+ exportAs: 'gipiSplitButton',
24872
+ template: "<div [matTooltip]=\"tooltip\"\n [class]=\"buttonClass || ''\"\n [class.button-base]=\"true\"\n [class.disabled]=\"disabled || loading\"\n #popoverTrigger=\"popoverTrigger\"\n [popoverTriggerFor]=\"btnPopover\"\n [popoverTriggerOn]=\"'none'\"\n [popoverBackdropCloseOnClick]=\"true\"\n (opened)=\"onOpenPopover.emit()\"\n (closed)=\"onClosePopover.emit()\">\n <button [attr.id]=\"idBtnDefault\"\n [attr.name]=\"idBtnDefault\"\n [attr.type]=\"type\"\n [attr.aria-label]=\"ariaLabel ? ariaLabel : label\"\n [attr.title]=\"title ? title : label\"\n [disabled]=\"disabled || loading\"\n [ngClass]=\"getInternalButtonClass(true)\"\n role=\"button\"\n (click)=\"handleClick($event)\"\n (focus)=\"handleFocus($event)\"\n (blur)=\"handleBlur($event)\">\n {{ label ? label : '' }}\n </button>\n <button [attr.id]=\"idBtnMenu\"\n [attr.name]=\"idBtnMenu\"\n [attr.type]=\"type\"\n [attr.aria-label]=\"ariaLabel ? ariaLabel : label\"\n [attr.title]=\"title ? title : label\"\n [disabled]=\"disabled || loading\"\n [ngClass]=\"getInternalButtonClass(false)\"\n role=\"button\"\n (click)=\"handleClickBtnMenu($event)\">\n <mat-icon [@indicatorRotate]=\"popoverTrigger?.popoverOpen ? 'opened': 'closed'\"> expand_more </mat-icon>\n </button>\n</div>\n\n<gipi-popover #btnPopover=\"gipiPopover\"\n [popoverOverlapTrigger]=\"false\"\n [popoverCloseOnClick]=\"false\"\n [popoverArrowWidth]=\"0\"\n [popoverOffsetY]=\"3\">\n <div class=\"btn-popover-content\">\n <button class=\"btn-split-option\"\n *ngFor=\"let option of splitOptions\"\n [disabled]=\"option?.disabled\"\n (click)=\"handleClickBtnSplitOption(option)\">\n {{ option.label }}\n </button>\n </div>\n</gipi-popover>",
24873
+ providers: [
24874
+ {
24875
+ provide: NG_VALUE_ACCESSOR,
24876
+ useExisting: forwardRef(function () { return GIPISplitButtonComponent_1; }),
24877
+ multi: true
24878
+ }
24879
+ ],
24880
+ host: {
24881
+ 'class': 'gipi-split-button',
24882
+ '[attr.id]': 'id',
24883
+ '[attr.name]': 'name',
24884
+ },
24885
+ animations: [
24886
+ trigger('indicatorRotate', [
24887
+ state('closed', style({ transform: 'rotate(0deg)' })),
24888
+ state('opened', style({ transform: 'rotate(-180deg)' })),
24889
+ transition('opened <=> closed', animate('225ms cubic-bezier(0.4,0.0,0.2,1)')),
24890
+ ])
24891
+ ],
24892
+ styles: [".button-base{display:flex;flex-direction:row;justify-content:center;border-radius:4px;font-weight:600;font-size:1.4rem;line-height:1.6rem;cursor:pointer;outline:0;white-space:nowrap;text-decoration:none;vertical-align:middle;text-align:center;box-shadow:1px 1px 5px 0 rgba(0,0,0,.1);transition:.2s;width:100%;max-height:4rem;border:1px solid transparent;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.button-base.disabled{cursor:not-allowed!important;box-shadow:none}.button-base>button{display:flex;align-items:center;justify-content:center;border:none;outline:0;box-shadow:none;width:100%;height:40px;padding:12px 16px;overflow:hidden;border-radius:inherit;cursor:inherit;font-size:inherit;font-weight:inherit;white-space:nowrap;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.button-base>button:not(.disabled):active{opacity:.8}.button-base .button-default{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.button-base .button-menu{max-width:-webkit-fit-content;max-width:-moz-fit-content;max-width:fit-content;border-top-left-radius:0!important;border-bottom-left-radius:0!important}.button-primary:not(:disabled),.button-primary:not(:disabled)>mat-icon{background-color:#e0313e;color:#fff;fill:#fff}.button-primary:not(:disabled).button-default,.button-primary:not(:disabled)>mat-icon.button-default{border-right:1px solid #9f232c}.button-primary:not(:disabled) svg,.button-primary:not(:disabled) svg g path,.button-primary:not(:disabled) svg path,.button-primary:not(:disabled)>mat-icon svg,.button-primary:not(:disabled)>mat-icon svg g path,.button-primary:not(:disabled)>mat-icon svg path{color:#fff;fill:#fff}.button-primary:disabled,.button-primary:disabled>mat-icon{background-color:#d1d2d4;color:#9a9da2;fill:#9a9da2}.button-primary:disabled.button-default,.button-primary:disabled>mat-icon.button-default{border-right:1px solid #9a9da2}.button-primary:disabled svg,.button-primary:disabled svg g path,.button-primary:disabled svg path,.button-primary:disabled>mat-icon svg,.button-primary:disabled>mat-icon svg g path,.button-primary:disabled>mat-icon svg path{color:#9a9da2;fill:#9a9da2}.button-primary:not(:disabled):hover,.button-primary:not(:disabled):hover>mat-icon{background-color:#cc2d38;color:#fff;fill:#fff}.button-primary:not(:disabled):hover svg,.button-primary:not(:disabled):hover svg g path,.button-primary:not(:disabled):hover svg path,.button-primary:not(:disabled):hover>mat-icon svg,.button-primary:not(:disabled):hover>mat-icon svg g path,.button-primary:not(:disabled):hover>mat-icon svg path{color:#fff;fill:#fff}.button-secondary{background-color:transparent}.button-secondary:not(:disabled),.button-secondary:not(:disabled)>mat-icon{border-color:#595959;color:#595959;fill:#595959}.button-secondary:not(:disabled).button-default,.button-secondary:not(:disabled)>mat-icon.button-default{border-right:1px solid #595959}.button-secondary:not(:disabled) svg,.button-secondary:not(:disabled) svg g path,.button-secondary:not(:disabled) svg path,.button-secondary:not(:disabled)>mat-icon svg,.button-secondary:not(:disabled)>mat-icon svg g path,.button-secondary:not(:disabled)>mat-icon svg path{color:#595959;fill:#595959}.button-secondary:disabled,.button-secondary:disabled>mat-icon{border-color:#d1d2d4;background-color:#d1d2d4;color:#9a9da2;fill:#9a9da2}.button-secondary:disabled.button-default,.button-secondary:disabled>mat-icon.button-default{border-right:1px solid #9a9da2}.button-secondary:disabled svg,.button-secondary:disabled svg g path,.button-secondary:disabled svg path,.button-secondary:disabled>mat-icon svg,.button-secondary:disabled>mat-icon svg g path,.button-secondary:disabled>mat-icon svg path{color:#9a9da2;fill:#9a9da2}.button-secondary:not(:disabled):hover,.button-secondary:not(:disabled):hover>mat-icon{border-color:#595959;background-color:#e0e1e2;color:#595959;fill:#595959}.button-secondary:not(:disabled):hover svg,.button-secondary:not(:disabled):hover svg g path,.button-secondary:not(:disabled):hover svg path,.button-secondary:not(:disabled):hover>mat-icon svg,.button-secondary:not(:disabled):hover>mat-icon svg g path,.button-secondary:not(:disabled):hover>mat-icon svg path{color:#595959;fill:#595959}.button-tertiary{background-color:#e7ebee;box-shadow:none}.button-tertiary:not(:disabled),.button-tertiary:not(:disabled)>mat-icon{color:#595959;fill:#595959}.button-tertiary:not(:disabled).button-default,.button-tertiary:not(:disabled)>mat-icon.button-default{border-right:1px solid #595959}.button-tertiary:not(:disabled) svg,.button-tertiary:not(:disabled) svg g path,.button-tertiary:not(:disabled) svg path,.button-tertiary:not(:disabled)>mat-icon svg,.button-tertiary:not(:disabled)>mat-icon svg g path,.button-tertiary:not(:disabled)>mat-icon svg path{color:#595959;fill:#595959}.button-tertiary:disabled,.button-tertiary:disabled>mat-icon{background-color:#d1d2d4;color:#9a9da2;fill:#9a9da2}.button-tertiary:disabled.button-default,.button-tertiary:disabled>mat-icon.button-default{border-right:1px solid #9a9da2}.button-tertiary:disabled svg,.button-tertiary:disabled svg g path,.button-tertiary:disabled svg path,.button-tertiary:disabled>mat-icon svg,.button-tertiary:disabled>mat-icon svg g path,.button-tertiary:disabled>mat-icon svg path{color:#9a9da2;fill:#9a9da2}.button-tertiary:not(:disabled):hover,.button-tertiary:not(:disabled):hover>mat-icon{background-color:#e0e1e2;color:#595959;fill:#595959}.button-tertiary:not(:disabled):hover svg,.button-tertiary:not(:disabled):hover svg g path,.button-tertiary:not(:disabled):hover svg path,.button-tertiary:not(:disabled):hover>mat-icon svg,.button-tertiary:not(:disabled):hover>mat-icon svg g path,.button-tertiary:not(:disabled):hover>mat-icon svg path{color:#595959;fill:#595959}.button-action{background-color:transparent;box-shadow:none;display:flex;justify-content:flex-start!important}.button-action:not(:disabled),.button-action:not(:disabled)>mat-icon{color:#262626;fill:#262626}.button-action:not(:disabled).button-default,.button-action:not(:disabled)>mat-icon.button-default{border-right:1px solid #262626}.button-action:not(:disabled) svg,.button-action:not(:disabled) svg g path,.button-action:not(:disabled) svg path,.button-action:not(:disabled)>mat-icon svg,.button-action:not(:disabled)>mat-icon svg g path,.button-action:not(:disabled)>mat-icon svg path{color:#262626;fill:#262626}.button-action:disabled,.button-action:disabled>mat-icon{color:#9a9da2;fill:#9a9da2}.button-action:disabled.button-default,.button-action:disabled>mat-icon.button-default{border-right:1px solid #9a9da2}.button-action:disabled svg,.button-action:disabled svg g path,.button-action:disabled svg path,.button-action:disabled>mat-icon svg,.button-action:disabled>mat-icon svg g path,.button-action:disabled>mat-icon svg path{color:#9a9da2;fill:#9a9da2}.button-action:not(:disabled):hover,.button-action:not(:disabled):hover>mat-icon{background-color:#f5f5f6;color:#262626;fill:#262626}.button-action:not(:disabled):hover svg,.button-action:not(:disabled):hover svg g path,.button-action:not(:disabled):hover svg path,.button-action:not(:disabled):hover>mat-icon svg,.button-action:not(:disabled):hover>mat-icon svg g path,.button-action:not(:disabled):hover>mat-icon svg path{color:#262626;fill:#262626}.disabled,:disabled{pointer-events:none!important}.btn-popover-content{display:flex;flex-direction:column;gap:.8rem;background-color:#fff;border-radius:4px;box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);padding:8px}.btn-split-option{width:100%;padding:.8rem;border-radius:.4rem;border:1px solid transparent;text-align:left;outline:0;background-color:transparent;cursor:pointer}.btn-split-option:not(:disabled){color:#595959}.btn-split-option:disabled{border-color:#d1d2d4;background-color:#d1d2d4;color:#9a9da2;cursor:not-allowed}.btn-split-option:not(:disabled):hover{border-color:#595959;background-color:#e0e1e2;color:#595959}"]
24893
+ }),
24894
+ __metadata("design:paramtypes", [ElementRef])
24895
+ ], GIPISplitButtonComponent);
24896
+ return GIPISplitButtonComponent;
24897
+ }());
24898
+
24899
+ var nextUniqueId$n = 0;
24612
24900
  var GIPITextareaComponent = /** @class */ (function () {
24613
24901
  function GIPITextareaComponent(elementRef, _changeDetectorRef) {
24614
24902
  this.elementRef = elementRef;
24615
24903
  this._changeDetectorRef = _changeDetectorRef;
24616
- this._name = "gipi-textarea-" + nextUniqueId$m++;
24904
+ this._name = "gipi-textarea-" + nextUniqueId$n++;
24617
24905
  this.id = this._name;
24618
24906
  this.name = this._name;
24619
24907
  this.label = '';
@@ -25000,6 +25288,7 @@ var GIPIComponents = [
25000
25288
  GIPIEmptyStateComponent,
25001
25289
  GIPICardComponent,
25002
25290
  GIPITextareaComponent,
25291
+ GIPISplitButtonComponent,
25003
25292
  // Tabs
25004
25293
  GIPITabGroupComponent,
25005
25294
  GIPITabComponent,
@@ -28487,5 +28776,5 @@ var MAT_NATIVE_DATE_FORMATS = {
28487
28776
  * Generated bundle index. Do not edit.
28488
28777
  */
28489
28778
 
28490
- export { APP_MESSAGES, AbstractComponent, AbstractCrudComponent, AbstractCrudService, AbstractDTO, AbstractFindComponent, AbstractFindService, AbstractModel, AbstractService, AlertComponent, Archive, ArrayUtil, AuthGuard, AuthInterceptor, AuthenticationService, BaseUser, BreakpointEnum, BreakpointObserverService, BrowserUtil, ButtonComponent, CalendarMonthYearComponent, CardComponent, ChartDTO, CheckboxComponent, ConfirmationDTO, ConfirmationService, CoreModule, CriteriaOperationEnum, CriteriaSortDirectionEnum, CurrencyUtil, DEFAULT_MESSAGES, DateAdapter, DateRange, DateRangePickerComponent, DateUtil, DatepickerModule, DefaultMatCalendarRangeStrategy, DialogDTO, DialogService, DocumentUtil, EmailUtil, ErrorInterceptor, FilterDTO, GIPIAbstractComponent, GIPIAbstractCrudComponent, GIPIAbstractCrudService, GIPIAbstractDTO, GIPIAbstractFilterModel, GIPIAbstractFindComponent, GIPIAbstractFormComponent, GIPIAbstractModel, GIPIAbstractService, GIPIActionRowComponent, GIPIAppliedFilter, GIPIAutowired, GIPIBadgeComponent, GIPIBaseService, GIPIBreakpointService, GIPIButtonComponent, GIPICardComponent, GIPIColDirective, GIPIConfirmationDialogComponent, GIPIConnectedOverlayScrollHandler, GIPIDomHandler, GIPIDropdownMenuComponent, GIPIDynamicTabDirective, GIPIEmptyStateComponent, GIPIExpansionPanelComponent, GIPIFileDragAndDropComponent, GIPIFileService, GIPIFooterComponent, GIPIFormFieldComponent, GIPIHelpfulTipComponent, GIPIInfiniteScrollDirective, GIPIInputCheckboxComponent, GIPIInputCurrencyComponent, GIPIInputMonthPickerComponent, GIPIInputSearchComponent, GIPIInputSelectComponent, GIPIInputSelectEnumComponent, GIPIInputSelectListboxComponent, GIPIInputSelectPagedComponent, GIPIInputSelectRadioComponent, GIPINotificationComponent, GIPINoveltiesComponent, GIPIOverlayComponent, GIPIOverlayService, GIPIPageEvent, GIPIPageModel, GIPIPaginatePipe, GIPIPaginationControlsDirective, GIPIPaginationService, GIPIPasswordRequerimentsComponent, GIPIPopoverComponent, GIPIPopoverTarget, GIPIPopoverTrigger, GIPIRadioGroupComponent, GIPIRangePageComponent, GIPIRangeSliderComponent, GIPIResizeService, GIPIRowDirective, GIPISelectButtonComponent, GIPISelectComponent, GIPISessionStorageService, GIPISidenavComponent, GIPISidenavContainerComponent, GIPISlideToggleComponent, GIPISortDirectionEnum, GIPISortModel, GIPIStepperComponent, GIPITabComponent, GIPITabGroupComponent, GIPITableBodyComponent, GIPITableComponent, GIPITableFooterComponent, GIPITableHeaderComponent, GIPITablePaginationComponent, GIPITableProgressBarComponent, GIPITemplateDirective, GIPITextareaComponent, GIPIToolbarComponent, GIPITopNavComponent, GIPIUserProfileComponent, GIPI_BREAKPOINTS, GIPI_CUSTOM_BREAKPOINTS_PROVIDER, GIPI_MONTH_YEAR_SCROLL_STRATEGY, GIPI_MONTH_YEAR_SCROLL_STRATEGY_FACTORY, GIPI_MONTH_YEAR_SCROLL_STRATEGY_FACTORY_PROVIDER, INJECTOR, IconComponent, InputComponent, InputCurrencyComponent, InputFileComponent, InputListboxDTO, ItssTemplate, LoadingComponent, LoadingOverlayComponent, LocalTimeEnum, LocalTimePipe, MAT_DATEPICKER_SCROLL_STRATEGY, MAT_DATEPICKER_SCROLL_STRATEGY_FACTORY, MAT_DATEPICKER_SCROLL_STRATEGY_FACTORY_PROVIDER, MAT_DATEPICKER_VALIDATORS, MAT_DATEPICKER_VALUE_ACCESSOR, MAT_DATE_FORMATS, MAT_DATE_LOCALE, MAT_DATE_LOCALE_FACTORY, MAT_DATE_LOCALE_PROVIDER, MAT_DATE_RANGE_SELECTION_STRATEGY, MAT_NATIVE_DATE_FORMATS, MAT_RANGE_DATE_SELECTION_MODEL_FACTORY, MAT_RANGE_DATE_SELECTION_MODEL_PROVIDER, MAT_SINGLE_DATE_SELECTION_MODEL_FACTORY, MAT_SINGLE_DATE_SELECTION_MODEL_PROVIDER, MatCalendar, MatCalendarBody, MatCalendarCell, MatCalendarHeader, MatDateRangeInput, MatDateRangePicker, MatDateSelectionModel, MatDatepicker, MatDatepickerContent, MatDatepickerInput, MatDatepickerInputEvent, MatDatepickerIntl, MatDatepickerToggle, MatDatepickerToggleIcon, MatEndDate, MatMonthView, MatMultiYearView, MatRangeDateSelectionModel, MatSingleDateSelectionModel, MatStartDate, MatYearView, MaxRangeDirective, MaxRangeSelectionStrategy, MenuDTO, MenuTypeEnum, MessageDTO, MessageService, MonthPickerModel, MonthYear, MonthYearPickerComponent, MonthYearPickerModule, MultitenantModel, NativeDateAdapter, NavService, NumberUtil, ObjectUtil, OverlayPanelComponent, POINTS_NAME, PageDTO, PasswordUtil, Permission, PermissionGuard, PhoneMaskDirective, PhoneUtil, Platform, PopoverComponent, PopoverRef, PopoverService, PresetRangeComponent, PublicGuard, RadioButtonEnum, RadioGroupEntityComponent, RadioGroupEnumComponent, RangePage, Role, SelectButtonAddComponent, SelectButtonNextBatchComponent, SelectEntityComponent, SelectEntityPagedComponent, SelectEnumComponent, SelectMonthPeriodComponent, SelectNoEntriesFoundDirective, SelectSearchClearDirective, SelectSearchComponent, SharedModule, SlideToggleComponent, SortDTO, SortDirectionEnum, SortModel, StepperComponent, StringUtil, SvgRegisterService, TabDTO, TabModel, TableColumnBuilder, TableColumnBuilderModel, TableColumnDTO, TableColumnModel, TableComponent, TableScrolledComponent, TimeUtil, TokenDTO, URLParamsUtil, UUIDUtil, customCurrencyMaskConfig, getReflectType, gridResponsiveMap, matDatepickerAnimations, nextUniqueId$j as nextUniqueId, siderResponsiveMap, transformPopover, yearsPerPage$1 as yearsPerPage, yearsPerRow, ƟCMP, ƟFAC, ƟPROV, ɵ0$3 as ɵ0, MAT_DATE_RANGE_INPUT_PARENT as ɵa, MAT_CALENDAR_RANGE_STRATEGY_PROVIDER_FACTORY as ɵb, MAT_CALENDAR_RANGE_STRATEGY_PROVIDER as ɵc, MatDatepickerBase as ɵd, MAT_FORM_FIELD as ɵe, MatDatepickerInputBase as ɵf, GIPINgConfig as ɵg, GIPIChipsComponent as ɵh, GIPIFileDragAndDropDirective as ɵi, TextareaComponent as ɵj, UpperCaseDirective as ɵk, LowerCaseDirective as ɵl, SpaceDropDirective as ɵm, InputSelectInfiniteScrollDirective as ɵn, ITSS_SELECT_SEARCH_DEFAULT_OPTIONS as ɵo, MaterialModule as ɵq, DatepickerComponent as ɵr };
28779
+ export { APP_MESSAGES, AbstractComponent, AbstractCrudComponent, AbstractCrudService, AbstractDTO, AbstractFindComponent, AbstractFindService, AbstractModel, AbstractService, AlertComponent, Archive, ArrayUtil, AuthGuard, AuthInterceptor, AuthenticationService, BaseUser, BreakpointEnum, BreakpointObserverService, BrowserUtil, ButtonComponent, CalendarMonthYearComponent, CardComponent, ChartDTO, CheckboxComponent, ConfirmationDTO, ConfirmationService, CoreModule, CriteriaOperationEnum, CriteriaSortDirectionEnum, CurrencyUtil, DEFAULT_MESSAGES, DateAdapter, DateRange, DateRangePickerComponent, DateUtil, DatepickerModule, DefaultMatCalendarRangeStrategy, DialogDTO, DialogService, DocumentUtil, EmailUtil, ErrorInterceptor, FilterDTO, GIPIAbstractComponent, GIPIAbstractCrudComponent, GIPIAbstractCrudService, GIPIAbstractDTO, GIPIAbstractFilterModel, GIPIAbstractFindComponent, GIPIAbstractFormComponent, GIPIAbstractModel, GIPIAbstractService, GIPIActionRowComponent, GIPIAppliedFilter, GIPIAutowired, GIPIBadgeComponent, GIPIBaseService, GIPIBreakpointService, GIPIButtonComponent, GIPICardComponent, GIPIColDirective, GIPIConfirmationDialogComponent, GIPIConnectedOverlayScrollHandler, GIPIDomHandler, GIPIDropdownMenuComponent, GIPIDynamicTabDirective, GIPIEmptyStateComponent, GIPIExpansionPanelComponent, GIPIFileDragAndDropComponent, GIPIFileService, GIPIFooterComponent, GIPIFormFieldComponent, GIPIHelpfulTipComponent, GIPIInfiniteScrollDirective, GIPIInputCheckboxComponent, GIPIInputCurrencyComponent, GIPIInputMonthPickerComponent, GIPIInputSearchComponent, GIPIInputSelectComponent, GIPIInputSelectEnumComponent, GIPIInputSelectListboxComponent, GIPIInputSelectPagedComponent, GIPIInputSelectRadioComponent, GIPINotificationComponent, GIPINoveltiesComponent, GIPIOverlayComponent, GIPIOverlayService, GIPIPageEvent, GIPIPageModel, GIPIPaginatePipe, GIPIPaginationControlsDirective, GIPIPaginationService, GIPIPasswordRequerimentsComponent, GIPIPopoverComponent, GIPIPopoverTarget, GIPIPopoverTrigger, GIPIRadioGroupComponent, GIPIRangePageComponent, GIPIRangeSliderComponent, GIPIResizeService, GIPIRowDirective, GIPISelectButtonComponent, GIPISelectComponent, GIPISessionStorageService, GIPISidenavComponent, GIPISidenavContainerComponent, GIPISlideToggleComponent, GIPISortDirectionEnum, GIPISortModel, GIPISplitButtonComponent, GIPIStepperComponent, GIPITabComponent, GIPITabGroupComponent, GIPITableBodyComponent, GIPITableComponent, GIPITableFooterComponent, GIPITableHeaderComponent, GIPITablePaginationComponent, GIPITableProgressBarComponent, GIPITemplateDirective, GIPITextareaComponent, GIPIToolbarComponent, GIPITopNavComponent, GIPIUserProfileComponent, GIPI_BREAKPOINTS, GIPI_CUSTOM_BREAKPOINTS_PROVIDER, GIPI_MONTH_YEAR_SCROLL_STRATEGY, GIPI_MONTH_YEAR_SCROLL_STRATEGY_FACTORY, GIPI_MONTH_YEAR_SCROLL_STRATEGY_FACTORY_PROVIDER, INJECTOR, IconComponent, InputComponent, InputCurrencyComponent, InputFileComponent, InputListboxDTO, ItssTemplate, LoadingComponent, LoadingOverlayComponent, LocalTimeEnum, LocalTimePipe, MAT_DATEPICKER_SCROLL_STRATEGY, MAT_DATEPICKER_SCROLL_STRATEGY_FACTORY, MAT_DATEPICKER_SCROLL_STRATEGY_FACTORY_PROVIDER, MAT_DATEPICKER_VALIDATORS, MAT_DATEPICKER_VALUE_ACCESSOR, MAT_DATE_FORMATS, MAT_DATE_LOCALE, MAT_DATE_LOCALE_FACTORY, MAT_DATE_LOCALE_PROVIDER, MAT_DATE_RANGE_SELECTION_STRATEGY, MAT_NATIVE_DATE_FORMATS, MAT_RANGE_DATE_SELECTION_MODEL_FACTORY, MAT_RANGE_DATE_SELECTION_MODEL_PROVIDER, MAT_SINGLE_DATE_SELECTION_MODEL_FACTORY, MAT_SINGLE_DATE_SELECTION_MODEL_PROVIDER, MatCalendar, MatCalendarBody, MatCalendarCell, MatCalendarHeader, MatDateRangeInput, MatDateRangePicker, MatDateSelectionModel, MatDatepicker, MatDatepickerContent, MatDatepickerInput, MatDatepickerInputEvent, MatDatepickerIntl, MatDatepickerToggle, MatDatepickerToggleIcon, MatEndDate, MatMonthView, MatMultiYearView, MatRangeDateSelectionModel, MatSingleDateSelectionModel, MatStartDate, MatYearView, MaxRangeDirective, MaxRangeSelectionStrategy, MenuDTO, MenuTypeEnum, MessageDTO, MessageService, MonthPickerModel, MonthYear, MonthYearPickerComponent, MonthYearPickerModule, MultitenantModel, NativeDateAdapter, NavService, NumberUtil, ObjectUtil, OverlayPanelComponent, POINTS_NAME, PageDTO, PasswordUtil, Permission, PermissionGuard, PhoneMaskDirective, PhoneUtil, Platform, PopoverComponent, PopoverRef, PopoverService, PresetRangeComponent, PublicGuard, RadioButtonEnum, RadioGroupEntityComponent, RadioGroupEnumComponent, RangePage, Role, SelectButtonAddComponent, SelectButtonNextBatchComponent, SelectEntityComponent, SelectEntityPagedComponent, SelectEnumComponent, SelectMonthPeriodComponent, SelectNoEntriesFoundDirective, SelectSearchClearDirective, SelectSearchComponent, SharedModule, SlideToggleComponent, SortDTO, SortDirectionEnum, SortModel, StepperComponent, StringUtil, SvgRegisterService, TabDTO, TabModel, TableColumnBuilder, TableColumnBuilderModel, TableColumnDTO, TableColumnModel, TableComponent, TableScrolledComponent, TimeUtil, TokenDTO, URLParamsUtil, UUIDUtil, customCurrencyMaskConfig, getReflectType, gridResponsiveMap, matDatepickerAnimations, nextUniqueId$j as nextUniqueId, siderResponsiveMap, transformPopover, yearsPerPage$1 as yearsPerPage, yearsPerRow, ƟCMP, ƟFAC, ƟPROV, ɵ0$3 as ɵ0, MAT_DATE_RANGE_INPUT_PARENT as ɵa, MAT_CALENDAR_RANGE_STRATEGY_PROVIDER_FACTORY as ɵb, MAT_CALENDAR_RANGE_STRATEGY_PROVIDER as ɵc, MatDatepickerBase as ɵd, MAT_FORM_FIELD as ɵe, MatDatepickerInputBase as ɵf, GIPINgConfig as ɵg, GIPIChipsComponent as ɵh, GIPIFileDragAndDropDirective as ɵi, TextareaComponent as ɵj, UpperCaseDirective as ɵk, LowerCaseDirective as ɵl, SpaceDropDirective as ɵm, InputSelectInfiniteScrollDirective as ɵn, ITSS_SELECT_SEARCH_DEFAULT_OPTIONS as ɵo, MaterialModule as ɵq, DatepickerComponent as ɵr };
28491
28780
  //# sourceMappingURL=gipisistemas-ng-core.js.map