@gipisistemas/ng-core 1.1.4 → 1.1.6
Sign up to get free protection for your applications and to get access to all the features.
- package/bundles/gipisistemas-ng-core.umd.js +598 -165
- package/bundles/gipisistemas-ng-core.umd.js.map +1 -1
- package/bundles/gipisistemas-ng-core.umd.min.js +9 -9
- package/bundles/gipisistemas-ng-core.umd.min.js.map +1 -1
- package/core/guards/auth.guard.d.ts +3 -3
- package/core/guards/permission.guard.d.ts +3 -3
- package/core/guards/public.guard.d.ts +3 -3
- package/core/models/dto/confirmation.dto.d.ts +1 -1
- package/core/models/dto/dialog.dto.d.ts +4 -4
- package/core/models/dto/menu.dto.d.ts +1 -0
- package/core/services/dialog.service.d.ts +5 -1
- package/core/services/message.service.d.ts +1 -1
- package/core/services/nav.service.d.ts +1 -1
- package/core/services/svg-register.service.d.ts +7 -1
- package/core/utils/string.util.d.ts +4 -0
- package/esm2015/core/gipi-components/services/file.service.js +2 -4
- package/esm2015/core/guards/auth.guard.js +13 -14
- package/esm2015/core/guards/permission.guard.js +12 -13
- package/esm2015/core/guards/public.guard.js +12 -13
- package/esm2015/core/models/dto/confirmation.dto.js +1 -5
- package/esm2015/core/models/dto/dialog.dto.js +1 -1
- package/esm2015/core/models/dto/menu.dto.js +2 -1
- package/esm2015/core/services/authentication.service.js +5 -6
- package/esm2015/core/services/breakpoint-observer.service.js +2 -4
- package/esm2015/core/services/confirmation.service.js +2 -4
- package/esm2015/core/services/dialog.service.js +54 -14
- package/esm2015/core/services/message.service.js +3 -5
- package/esm2015/core/services/nav.service.js +2 -4
- package/esm2015/core/services/svg-register.service.js +16 -5
- package/esm2015/core/utils/string.util.js +27 -1
- package/esm2015/gipi-components.js +2 -1
- package/esm2015/shared/components/input/input.component.js +1 -1
- package/esm2015/shared/components/input-currency/input-currency.component.js +1 -1
- package/esm2015/shared/components/input-file/input-file.component.js +1 -1
- package/esm2015/shared/components/popover/popover.service.js +6 -7
- package/esm2015/shared/components/radio-group-entity/radio-group-entity.component.js +1 -1
- package/esm2015/shared/components/radio-group-enum/radio-group-enum.component.js +1 -1
- package/esm2015/shared/components/select-entity/select-entity.component.js +1 -1
- package/esm2015/shared/components/select-entity-paged/select-entity-paged.component.js +1 -1
- package/esm2015/shared/components/select-entity-paged/shared/select-search/select-search.component.js +2 -2
- package/esm2015/shared/components/select-enum/select-enum.component.js +1 -1
- package/esm2015/shared/components/select-month-period/select-month-period.component.js +1 -1
- package/esm2015/shared/components/textarea/textarea.component.js +1 -1
- package/esm2015/shared/gipi-components/abstract-form/abstract-form.component.js +65 -3
- package/esm2015/shared/gipi-components/button/button.component.js +18 -2
- package/esm2015/shared/gipi-components/confirmation-dialog/confirmation-dialog.component.js +3 -3
- package/esm2015/shared/gipi-components/datepicker/date-range-picker/date-range-picker.component.js +1 -1
- package/esm2015/shared/gipi-components/datepicker/datepicker/datepicker.component.js +1 -1
- package/esm2015/shared/gipi-components/form-field/form-field.component.js +1 -1
- package/esm2015/shared/gipi-components/input-checkbox/input-checkbox.component.js +1 -1
- package/esm2015/shared/gipi-components/input-currency/input-currency.component.js +1 -1
- package/esm2015/shared/gipi-components/input-monthpicker/input-monthpicker.component.js +1 -1
- package/esm2015/shared/gipi-components/input-select/input-select.component.js +1 -1
- package/esm2015/shared/gipi-components/input-select-enum/input-select-enum.component.js +1 -1
- package/esm2015/shared/gipi-components/input-select-listbox/input-select-listbox.component.js +1 -1
- package/esm2015/shared/gipi-components/input-select-paged/input-search/input-search.component.js +2 -2
- package/esm2015/shared/gipi-components/input-select-paged/input-select-paged.component.js +1 -1
- package/esm2015/shared/gipi-components/input-select-radio/input-select-radio.component.js +1 -1
- package/esm2015/shared/gipi-components/layout-grid/services/breakpoint.service.js +2 -4
- package/esm2015/shared/gipi-components/layout-grid/services/resize.service.js +2 -4
- package/esm2015/shared/gipi-components/month-year-picker/month-year-picker.component.js +3 -3
- package/esm2015/shared/gipi-components/popover/shared/popover-trigger.js +4 -4
- package/esm2015/shared/gipi-components/select/select.component.js +1 -1
- package/esm2015/shared/gipi-components/sidebar/sidenav/sidenav.component.js +33 -10
- package/esm2015/shared/gipi-components/split-button/split-button.component.js +243 -0
- package/esm2015/shared/gipi-components/tabs/tab/tab.component.js +13 -1
- package/esm2015/shared/gipi-components/tabs/tab-group/tab-group.component.js +18 -4
- package/esm2015/shared/gipi-components/textarea/textarea.component.js +1 -1
- package/esm2015/shared/shared.module.js +3 -1
- package/esm5/core/gipi-components/services/file.service.js +2 -4
- package/esm5/core/guards/auth.guard.js +13 -14
- package/esm5/core/guards/permission.guard.js +12 -13
- package/esm5/core/guards/public.guard.js +12 -13
- package/esm5/core/models/dto/confirmation.dto.js +2 -4
- package/esm5/core/models/dto/dialog.dto.js +1 -1
- package/esm5/core/models/dto/menu.dto.js +2 -1
- package/esm5/core/services/authentication.service.js +5 -6
- package/esm5/core/services/breakpoint-observer.service.js +2 -4
- package/esm5/core/services/confirmation.service.js +2 -4
- package/esm5/core/services/dialog.service.js +54 -14
- package/esm5/core/services/message.service.js +3 -5
- package/esm5/core/services/nav.service.js +2 -4
- package/esm5/core/services/svg-register.service.js +16 -5
- package/esm5/core/utils/string.util.js +27 -1
- package/esm5/gipi-components.js +2 -1
- package/esm5/shared/components/input/input.component.js +1 -1
- package/esm5/shared/components/input-currency/input-currency.component.js +1 -1
- package/esm5/shared/components/input-file/input-file.component.js +1 -1
- package/esm5/shared/components/popover/popover.service.js +6 -7
- package/esm5/shared/components/radio-group-entity/radio-group-entity.component.js +1 -1
- package/esm5/shared/components/radio-group-enum/radio-group-enum.component.js +1 -1
- package/esm5/shared/components/select-entity/select-entity.component.js +1 -1
- package/esm5/shared/components/select-entity-paged/select-entity-paged.component.js +1 -1
- package/esm5/shared/components/select-entity-paged/shared/select-search/select-search.component.js +2 -2
- package/esm5/shared/components/select-enum/select-enum.component.js +1 -1
- package/esm5/shared/components/select-month-period/select-month-period.component.js +1 -1
- package/esm5/shared/components/textarea/textarea.component.js +1 -1
- package/esm5/shared/gipi-components/abstract-form/abstract-form.component.js +66 -3
- package/esm5/shared/gipi-components/button/button.component.js +22 -2
- package/esm5/shared/gipi-components/confirmation-dialog/confirmation-dialog.component.js +3 -3
- package/esm5/shared/gipi-components/datepicker/date-range-picker/date-range-picker.component.js +1 -1
- package/esm5/shared/gipi-components/datepicker/datepicker/datepicker.component.js +1 -1
- package/esm5/shared/gipi-components/form-field/form-field.component.js +1 -1
- package/esm5/shared/gipi-components/input-checkbox/input-checkbox.component.js +1 -1
- package/esm5/shared/gipi-components/input-currency/input-currency.component.js +1 -1
- package/esm5/shared/gipi-components/input-monthpicker/input-monthpicker.component.js +1 -1
- package/esm5/shared/gipi-components/input-select/input-select.component.js +1 -1
- package/esm5/shared/gipi-components/input-select-enum/input-select-enum.component.js +1 -1
- package/esm5/shared/gipi-components/input-select-listbox/input-select-listbox.component.js +1 -1
- package/esm5/shared/gipi-components/input-select-paged/input-search/input-search.component.js +2 -2
- package/esm5/shared/gipi-components/input-select-paged/input-select-paged.component.js +1 -1
- package/esm5/shared/gipi-components/input-select-radio/input-select-radio.component.js +1 -1
- package/esm5/shared/gipi-components/layout-grid/services/breakpoint.service.js +2 -4
- package/esm5/shared/gipi-components/layout-grid/services/resize.service.js +2 -4
- package/esm5/shared/gipi-components/month-year-picker/month-year-picker.component.js +3 -3
- package/esm5/shared/gipi-components/popover/shared/popover-trigger.js +4 -4
- package/esm5/shared/gipi-components/select/select.component.js +1 -1
- package/esm5/shared/gipi-components/sidebar/sidenav/sidenav.component.js +38 -10
- package/esm5/shared/gipi-components/split-button/split-button.component.js +249 -0
- package/esm5/shared/gipi-components/tabs/tab/tab.component.js +13 -1
- package/esm5/shared/gipi-components/tabs/tab-group/tab-group.component.js +18 -4
- package/esm5/shared/gipi-components/textarea/textarea.component.js +1 -1
- package/esm5/shared/shared.module.js +3 -1
- package/fesm2015/gipisistemas-ng-core.js +581 -167
- package/fesm2015/gipisistemas-ng-core.js.map +1 -1
- package/fesm5/gipisistemas-ng-core.js +602 -170
- package/fesm5/gipisistemas-ng-core.js.map +1 -1
- package/gipi-components.d.ts +1 -0
- package/gipisistemas-ng-core.metadata.json +1 -1
- package/package.json +1 -1
- package/shared/components/popover/popover.service.d.ts +1 -1
- package/shared/gipi-components/abstract-form/abstract-form.component.d.ts +10 -2
- package/shared/gipi-components/button/button.component.d.ts +14 -0
- package/shared/gipi-components/sidebar/sidenav/sidenav.component.d.ts +5 -2
- package/shared/gipi-components/split-button/split-button.component.d.ts +60 -0
- package/shared/gipi-components/tabs/tab/tab.component.d.ts +3 -0
- package/shared/gipi-components/tabs/tab-group/tab-group.component.d.ts +3 -0
@@ -4,7 +4,7 @@ import { CdkStepperModule, CdkStepper } from '@angular/cdk/stepper';
|
|
4
4
|
import { formatNumber, formatPercent, DOCUMENT, formatDate, isPlatformBrowser, CommonModule, formatCurrency } from '@angular/common';
|
5
5
|
import { BREAKPOINT, FlexLayoutModule } from '@angular/flex-layout';
|
6
6
|
import { NG_VALUE_ACCESSOR, FormControl, NgControl, NgForm, FormGroupDirective, Validators, NG_VALIDATORS, ControlContainer, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
7
|
-
import { MatMenu, MAT_SNACK_BAR_DATA, MatSnackBar, MatSelect as MatSelect$1, MatOption, MatFormField, MatTableDataSource, MatSort, MatPaginator, MatDialogRef, MAT_DIALOG_DATA, MatDialogConfig, MatDialog, MatNativeDateModule, MatRippleModule as MatRippleModule$1, MatDialogModule as MatDialogModule$1, MatIconRegistry } from '@angular/material';
|
7
|
+
import { MatMenu, MAT_SNACK_BAR_DATA, MatSnackBar, MatSelect as MatSelect$1, MatOption, MatFormField, MatTableDataSource, MatSort, MatPaginator, MatDialogTitle, MatDialogContent, MatDialogActions, MatDialogRef, MAT_DIALOG_DATA, MatDialogConfig, MatDialog, MatNativeDateModule, MatRippleModule as MatRippleModule$1, MatDialogModule as MatDialogModule$1, MatIconRegistry } from '@angular/material';
|
8
8
|
import { Router, ActivatedRoute, NavigationEnd, RouterModule } from '@angular/router';
|
9
9
|
import { MdePopoverTrigger, MdePopoverModule } from '@material-extended/mde';
|
10
10
|
import { MentionModule } from 'angular-mentions';
|
@@ -61,7 +61,7 @@ import { parsePhoneNumberFromString, getExampleNumber } from 'libphonenumber-js'
|
|
61
61
|
import { trigger, state, style, transition, animate, animation, useAnimation } from '@angular/animations';
|
62
62
|
import { A, Z, ZERO, NINE, SPACE, HOME, END, ENTER, ESCAPE, UP_ARROW, DOWN_ARROW, PAGE_DOWN, PAGE_UP, RIGHT_ARROW, LEFT_ARROW, BACKSPACE } from '@angular/cdk/keycodes';
|
63
63
|
import { coerceCssPixelValue, coerceBooleanProperty, coerceNumberProperty } from '@angular/cdk/coercion';
|
64
|
-
import { MediaMatcher } from '@angular/cdk/layout';
|
64
|
+
import { MediaMatcher, BreakpointObserver } from '@angular/cdk/layout';
|
65
65
|
import { Platform as Platform$1, PlatformModule } from '@angular/cdk/platform';
|
66
66
|
import { Directionality } from '@angular/cdk/bidi';
|
67
67
|
import { OverlayConfig, Overlay, OverlayModule } from '@angular/cdk/overlay';
|
@@ -522,7 +522,7 @@ var InputCurrencyComponent = /** @class */ (function () {
|
|
522
522
|
multi: true
|
523
523
|
}
|
524
524
|
],
|
525
|
-
styles: ["mat-label span{color:#d14014!important}.input-currency-prefix{color:#8f8b8f;font-size:14px;letter-spacing:0;font-weight:500;padding:5px 5px 4px}"]
|
525
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}mat-label span{color:#d14014!important}.input-currency-prefix{color:#8f8b8f;font-size:14px;letter-spacing:0;font-weight:500;padding:5px 5px 4px}"]
|
526
526
|
})
|
527
527
|
], InputCurrencyComponent);
|
528
528
|
return InputCurrencyComponent;
|
@@ -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
|
}());
|
@@ -897,35 +923,6 @@ var Archive = /** @class */ (function () {
|
|
897
923
|
return Archive;
|
898
924
|
}());
|
899
925
|
|
900
|
-
var AbstractService = /** @class */ (function () {
|
901
|
-
function AbstractService() {
|
902
|
-
this.onDestroy = new Subject();
|
903
|
-
}
|
904
|
-
AbstractService.prototype.ngOnDestroy = function () {
|
905
|
-
this.onDestroy.next();
|
906
|
-
this.onDestroy.complete();
|
907
|
-
};
|
908
|
-
AbstractService.prototype.options = function (params, headers) {
|
909
|
-
return {
|
910
|
-
headers: headers ? headers : this.buildHeaders(),
|
911
|
-
params: params ? params : this.buildParams()
|
912
|
-
};
|
913
|
-
};
|
914
|
-
AbstractService.prototype.buildHeaders = function () {
|
915
|
-
return new HttpHeaders();
|
916
|
-
};
|
917
|
-
AbstractService.prototype.buildParams = function () {
|
918
|
-
return new HttpParams();
|
919
|
-
};
|
920
|
-
AbstractService.prototype.mapper = function (jsonObj) {
|
921
|
-
return jsonObj;
|
922
|
-
};
|
923
|
-
AbstractService.prototype.handleError = function (error) {
|
924
|
-
return throwError(error);
|
925
|
-
};
|
926
|
-
return AbstractService;
|
927
|
-
}());
|
928
|
-
|
929
926
|
var AbstractDTO = /** @class */ (function () {
|
930
927
|
function AbstractDTO() {
|
931
928
|
}
|
@@ -960,6 +957,35 @@ var AlertComponent = /** @class */ (function () {
|
|
960
957
|
return AlertComponent;
|
961
958
|
}());
|
962
959
|
|
960
|
+
var AbstractService = /** @class */ (function () {
|
961
|
+
function AbstractService() {
|
962
|
+
this.onDestroy = new Subject();
|
963
|
+
}
|
964
|
+
AbstractService.prototype.ngOnDestroy = function () {
|
965
|
+
this.onDestroy.next();
|
966
|
+
this.onDestroy.complete();
|
967
|
+
};
|
968
|
+
AbstractService.prototype.options = function (params, headers) {
|
969
|
+
return {
|
970
|
+
headers: headers ? headers : this.buildHeaders(),
|
971
|
+
params: params ? params : this.buildParams()
|
972
|
+
};
|
973
|
+
};
|
974
|
+
AbstractService.prototype.buildHeaders = function () {
|
975
|
+
return new HttpHeaders();
|
976
|
+
};
|
977
|
+
AbstractService.prototype.buildParams = function () {
|
978
|
+
return new HttpParams();
|
979
|
+
};
|
980
|
+
AbstractService.prototype.mapper = function (jsonObj) {
|
981
|
+
return jsonObj;
|
982
|
+
};
|
983
|
+
AbstractService.prototype.handleError = function (error) {
|
984
|
+
return throwError(error);
|
985
|
+
};
|
986
|
+
return AbstractService;
|
987
|
+
}());
|
988
|
+
|
963
989
|
var MessageService = /** @class */ (function (_super) {
|
964
990
|
__extends(MessageService, _super);
|
965
991
|
function MessageService(snackBar) {
|
@@ -980,9 +1006,7 @@ var MessageService = /** @class */ (function (_super) {
|
|
980
1006
|
]; };
|
981
1007
|
MessageService.ngInjectableDef = ɵɵdefineInjectable({ factory: function MessageService_Factory() { return new MessageService(ɵɵinject(MatSnackBar$1)); }, token: MessageService, providedIn: "root" });
|
982
1008
|
MessageService = __decorate([
|
983
|
-
Injectable({
|
984
|
-
providedIn: 'root'
|
985
|
-
}),
|
1009
|
+
Injectable({ providedIn: 'root' }),
|
986
1010
|
__metadata("design:paramtypes", [MatSnackBar])
|
987
1011
|
], MessageService);
|
988
1012
|
return MessageService;
|
@@ -1135,7 +1159,7 @@ var InputFileComponent = /** @class */ (function (_super) {
|
|
1135
1159
|
Component({
|
1136
1160
|
selector: 'itss-input-file',
|
1137
1161
|
template: "<div fxLayout=\"column\">\n <mat-label *ngIf=\"label\">\n {{ label }}\n <span *ngIf=\"required && label\"> * </span>\n <gipi-helpful-tip *ngIf=\"tooltip && label\"\n [tooltip]=\"tooltip\">\n </gipi-helpful-tip>\n </mat-label>\n <mat-form-field [appearance]=\"appearance\">\n <input matInput\n #input\n [name]=\"name\"\n [placeholder]=\"placeholder\"\n [required]=\"required\"\n value=\"{{ archive?.name }}\"\n disabled=\"true\"\n autocomplete=\"off\">\n\n <button mat-icon-button\n matSuffix\n matTooltip=\"Enviar\"\n class=\"top\"\n [disabled]=\"disabled\"\n (click)=\"uploadArchive()\"\n *ngIf=\"!loading && !archive\">\n <mat-icon class=\"color-icon\">file_upload</mat-icon>\n </button>\n\n <!-- <button mat-icon-button-->\n <!-- matSuffix-->\n <!-- matTooltip=\"Baixar\"-->\n <!-- class=\"top\"-->\n <!-- [disabled]=\"disabled\"-->\n <!-- (click)=\"downloadArchive()\"-->\n <!-- *ngIf=\"!loading && archive\">-->\n <!-- <mat-icon class=\"color-icon\">file_download</mat-icon>-->\n <!-- </button>-->\n\n <button mat-icon-button\n matSuffix\n matTooltip=\"Excluir\"\n class=\"top\"\n [disabled]=\"disabled\"\n (click)=\"clearArchive()\"\n *ngIf=\"!loading && archive\">\n <mat-icon color=\"warn\">close</mat-icon>\n </button>\n\n <mat-spinner matSuffix\n matTooltip=\"Carregando...\"\n *ngIf=\"loading\"\n mode=\"indeterminate\"\n diameter=\"17\">\n </mat-spinner>\n </mat-form-field>\n\n <input #fileInput\n type=\"file\"\n style=\"display:none;\">\n</div>",
|
1138
|
-
styles: ["mat-label span{color:#d14014!important}:host .color-icon{color:rgba(0,0,0,.54)!important}:host .top{font-size:18px!important}:host ::ng-deep .mat-icon-button{display:inline!important}"]
|
1162
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}mat-label span{color:#d14014!important}:host .color-icon{color:rgba(0,0,0,.54)!important}:host .top{font-size:18px!important}:host ::ng-deep .mat-icon-button{display:inline!important}"]
|
1139
1163
|
}),
|
1140
1164
|
__metadata("design:paramtypes", [MessageService,
|
1141
1165
|
Router,
|
@@ -1552,7 +1576,7 @@ var InputComponent = /** @class */ (function () {
|
|
1552
1576
|
multi: true
|
1553
1577
|
}
|
1554
1578
|
],
|
1555
|
-
styles: ["mat-label span{color:#d14014!important}"]
|
1579
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}mat-label span{color:#d14014!important}"]
|
1556
1580
|
}),
|
1557
1581
|
__metadata("design:paramtypes", [ElementRef,
|
1558
1582
|
ChangeDetectorRef])
|
@@ -2802,7 +2826,7 @@ var RadioGroupEntityComponent = /** @class */ (function () {
|
|
2802
2826
|
multi: true
|
2803
2827
|
}
|
2804
2828
|
],
|
2805
|
-
styles: ["mat-label span{color:#f44336!important}"]
|
2829
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}mat-label span{color:#f44336!important}"]
|
2806
2830
|
})
|
2807
2831
|
], RadioGroupEntityComponent);
|
2808
2832
|
return RadioGroupEntityComponent;
|
@@ -2948,7 +2972,7 @@ var RadioGroupEnumComponent = /** @class */ (function () {
|
|
2948
2972
|
],
|
2949
2973
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
2950
2974
|
host: { 'class': 'itss-element' },
|
2951
|
-
styles: [".label>span{color:#f44336!important}fieldset{margin-inline:0!important;padding:0!important;padding-inline:0!important;padding-block:0!important;border-radius:10px!important;color:#696969!important;border:1px solid #e1e5e4!important}.legend{font-size:16px!important;color:#696969!important}.legend>span{color:#f44336!important}.content-selection{display:flex!important;flex-direction:row!important;align-items:center!important;justify-content:space-around!important;height:20px!important;margin-bottom:15px!important;width:100%!important}.content-selection>div{height:30px;margin-top:-10px}.content-selection .radio-button{font-size:13px!important;color:#696969!important}:host ::ng-deep .type-input{display:flex;align-items:center;justify-content:space-around;border:1px solid #dddfe1;margin-top:4px;margin-left:-35px;border-radius:5px;min-height:39px}:host ::ng-deep .type-input>div{max-height:20px}:host ::ng-deep .type-input>div .mat-radio-button{margin-top:0!important}"]
|
2975
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}.label>span{color:#f44336!important}fieldset{margin-inline:0!important;padding:0!important;padding-inline:0!important;padding-block:0!important;border-radius:10px!important;color:#696969!important;border:1px solid #e1e5e4!important}.legend{font-size:16px!important;color:#696969!important}.legend>span{color:#f44336!important}.content-selection{display:flex!important;flex-direction:row!important;align-items:center!important;justify-content:space-around!important;height:20px!important;margin-bottom:15px!important;width:100%!important}.content-selection>div{height:30px;margin-top:-10px}.content-selection .radio-button{font-size:13px!important;color:#696969!important}:host ::ng-deep .type-input{display:flex;align-items:center;justify-content:space-around;border:1px solid #dddfe1;margin-top:4px;margin-left:-35px;border-radius:5px;min-height:39px}:host ::ng-deep .type-input>div{max-height:20px}:host ::ng-deep .type-input>div .mat-radio-button{margin-top:0!important}"]
|
2952
2976
|
}),
|
2953
2977
|
__metadata("design:paramtypes", [ChangeDetectorRef])
|
2954
2978
|
], RadioGroupEnumComponent);
|
@@ -3392,7 +3416,7 @@ var SelectEntityPagedComponent = /** @class */ (function () {
|
|
3392
3416
|
multi: true
|
3393
3417
|
}
|
3394
3418
|
],
|
3395
|
-
styles: ["mat-label span{color:#f44336!important}:host ::ng-deep .mat-form-field-appearance-outline .mat-form-field-suffix{position:absolute!important;right:35px!important;top:30%!important}:host ::ng-deep .mat-form-field-appearance-outline .mat-form-field-suffix .mat-icon{height:18px!important;width:18px!important;font-size:18px!important;color:#696969!important}:host ::ng-deep .mat-form-field-appearance-legacy .mat-form-field-suffix{position:absolute!important;right:30px!important;top:35%!important}:host ::ng-deep .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-icon{height:18px!important;width:18px!important;font-size:18px!important;color:#696969!important}:host ::ng-deep .mat-select-value{padding-right:30px!important}::ng-deep .virtual-scroll-viewport{width:100%!important;overflow:hidden}::ng-deep .virtual-scroll-viewport .cdk-virtual-scroll-content-wrapper{width:100%!important}.mat-select-additional-selection{opacity:.75;font-size:.75em;margin-left:16px}.mat-select-search-loading{background-color:#fff;display:flex;align-items:center;justify-content:center;height:3em}.dot-pulse{position:relative;left:-9999px;width:5px;height:5px;border-radius:50%;background-color:#f3465c;color:#f3465c;box-shadow:9999px 0 0 -5px;-webkit-animation:1.5s linear .25s infinite dot-pulse;animation:1.5s linear .25s infinite dot-pulse}.dot-pulse::after,.dot-pulse::before{content:\"\";display:inline-block;position:absolute;top:0;width:5px;height:5px;border-radius:50%;background-color:#f3465c;color:#f3465c}.dot-pulse::before{box-shadow:9984px 0 0 -5px;-webkit-animation:1.5s linear infinite dot-pulse-before;animation:1.5s linear infinite dot-pulse-before}.dot-pulse::after{box-shadow:10014px 0 0 -5px;-webkit-animation:1.5s linear .5s infinite dot-pulse-after;animation:1.5s linear .5s infinite dot-pulse-after}@-webkit-keyframes dot-pulse-before{0%,100%,60%{box-shadow:9984px 0 0 -5px}30%{box-shadow:9984px 0 0 2px}}@keyframes dot-pulse-before{0%,100%,60%{box-shadow:9984px 0 0 -5px}30%{box-shadow:9984px 0 0 2px}}@-webkit-keyframes dot-pulse{0%,100%,60%{box-shadow:9999px 0 0 -5px}30%{box-shadow:9999px 0 0 2px}}@keyframes dot-pulse{0%,100%,60%{box-shadow:9999px 0 0 -5px}30%{box-shadow:9999px 0 0 2px}}@-webkit-keyframes dot-pulse-after{0%,100%,60%{box-shadow:10014px 0 0 -5px}30%{box-shadow:10014px 0 0 2px}}@keyframes dot-pulse-after{0%,100%,60%{box-shadow:10014px 0 0 -5px}30%{box-shadow:10014px 0 0 2px}}::ng-deep .mat-select-arrow{border:solid #6d6f73!important;border-width:0 2px 2px 0!important;display:inline-block!important;padding:3px!important;transform:rotate(45deg)!important;margin:0 4px!important}::ng-deep .mat-option-button-add{position:absolute;bottom:0;left:0;width:100%;z-index:100;background-color:#fff;border-radius:4px}"]
|
3419
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}mat-label span{color:#f44336!important}:host ::ng-deep .mat-form-field-appearance-outline .mat-form-field-suffix{position:absolute!important;right:35px!important;top:30%!important}:host ::ng-deep .mat-form-field-appearance-outline .mat-form-field-suffix .mat-icon{height:18px!important;width:18px!important;font-size:18px!important;color:#696969!important}:host ::ng-deep .mat-form-field-appearance-legacy .mat-form-field-suffix{position:absolute!important;right:30px!important;top:35%!important}:host ::ng-deep .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-icon{height:18px!important;width:18px!important;font-size:18px!important;color:#696969!important}:host ::ng-deep .mat-select-value{padding-right:30px!important}::ng-deep .virtual-scroll-viewport{width:100%!important;overflow:hidden}::ng-deep .virtual-scroll-viewport .cdk-virtual-scroll-content-wrapper{width:100%!important}.mat-select-additional-selection{opacity:.75;font-size:.75em;margin-left:16px}.mat-select-search-loading{background-color:#fff;display:flex;align-items:center;justify-content:center;height:3em}.dot-pulse{position:relative;left:-9999px;width:5px;height:5px;border-radius:50%;background-color:#f3465c;color:#f3465c;box-shadow:9999px 0 0 -5px;-webkit-animation:1.5s linear .25s infinite dot-pulse;animation:1.5s linear .25s infinite dot-pulse}.dot-pulse::after,.dot-pulse::before{content:\"\";display:inline-block;position:absolute;top:0;width:5px;height:5px;border-radius:50%;background-color:#f3465c;color:#f3465c}.dot-pulse::before{box-shadow:9984px 0 0 -5px;-webkit-animation:1.5s linear infinite dot-pulse-before;animation:1.5s linear infinite dot-pulse-before}.dot-pulse::after{box-shadow:10014px 0 0 -5px;-webkit-animation:1.5s linear .5s infinite dot-pulse-after;animation:1.5s linear .5s infinite dot-pulse-after}@-webkit-keyframes dot-pulse-before{0%,100%,60%{box-shadow:9984px 0 0 -5px}30%{box-shadow:9984px 0 0 2px}}@keyframes dot-pulse-before{0%,100%,60%{box-shadow:9984px 0 0 -5px}30%{box-shadow:9984px 0 0 2px}}@-webkit-keyframes dot-pulse{0%,100%,60%{box-shadow:9999px 0 0 -5px}30%{box-shadow:9999px 0 0 2px}}@keyframes dot-pulse{0%,100%,60%{box-shadow:9999px 0 0 -5px}30%{box-shadow:9999px 0 0 2px}}@-webkit-keyframes dot-pulse-after{0%,100%,60%{box-shadow:10014px 0 0 -5px}30%{box-shadow:10014px 0 0 2px}}@keyframes dot-pulse-after{0%,100%,60%{box-shadow:10014px 0 0 -5px}30%{box-shadow:10014px 0 0 2px}}::ng-deep .mat-select-arrow{border:solid #6d6f73!important;border-width:0 2px 2px 0!important;display:inline-block!important;padding:3px!important;transform:rotate(45deg)!important;margin:0 4px!important}::ng-deep .mat-option-button-add{position:absolute;bottom:0;left:0;width:100%;z-index:100;background-color:#fff;border-radius:4px}"]
|
3396
3420
|
}),
|
3397
3421
|
__metadata("design:paramtypes", [ChangeDetectorRef])
|
3398
3422
|
], SelectEntityPagedComponent);
|
@@ -4149,7 +4173,7 @@ var SelectSearchComponent = /** @class */ (function () {
|
|
4149
4173
|
SelectSearchComponent = SelectSearchComponent_1 = __decorate([
|
4150
4174
|
Component({
|
4151
4175
|
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
|
4176
|
+
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
4177
|
providers: [
|
4154
4178
|
{
|
4155
4179
|
provide: NG_VALUE_ACCESSOR,
|
@@ -4546,7 +4570,7 @@ var SelectEntityComponent = /** @class */ (function () {
|
|
4546
4570
|
Component({
|
4547
4571
|
selector: 'itss-select-entity',
|
4548
4572
|
template: "<div fxLayout=\"column\">\n <mat-label>\n {{ label }}\n <span *ngIf=\"required && label\"> * </span>\n </mat-label>\n <mat-form-field appearance=\"outline\">\n <mat-select #select\n [name]=\"name\"\n *ngIf=\"multiple\"\n [placeholder]=\"placeholder\"\n [compareWith]=\"compareFn\"\n [(ngModel)]=\"model\"\n [required]=\"required\"\n [disabled]=\"disabled || loading || (entities && entities.length === 0)\"\n multiple\n disableOptionCentering=\"true\"\n (selectionChange)=\"onSelectionChange($event.value)\"\n panelClass=\"select-position\">\n <mat-form-field *ngIf=\"!displayCheckboxAll\"\n appearance=\"standard\"\n class=\"select-input-search\"\n fxFlexFill>\n <input #search\n matInput\n placeholder=\"Pesquisar...\"\n type=\"text\"\n autofocus\n autocomplete=\"off\"\n (focusout)=\"resetSearch()\"\n (keyup)=\"onSearch($event.target.value)\"\n (keydown)=\"$event.stopPropagation()\">\n <span matPrefix>\n <mat-icon>search</mat-icon>\n </span>\n </mat-form-field>\n\n <div *ngIf=\"displayCheckboxAll\"\n class=\"checkbox-all-select\"\n [class.disabled]=\"(select.options && (select.options.length <= 0))\"\n (click)=\"(select.options && (select.options.length <= 0)) ? null : allSelected = !allSelected; toggleAllSelection()\">\n <itss-checkbox label=\"Selecionar todos\"\n color=\"primary\"\n name=\"allSelected\"\n [disabled]=\"(select.options && (select.options.length <= 0))\"\n [(ngModel)]=\"allSelected\"\n [indeterminate]=\"indeterminateAllSelected\">\n </itss-checkbox>\n </div>\n\n <mat-option *ngFor=\"let entity of filteredEntities\"\n [value]=\"entity\"\n (click)=\"validateIndeterminateAllSelected()\">\n {{ getPropertyValue(entity) }}\n </mat-option>\n </mat-select>\n\n <mat-select #select\n [name]=\"name\"\n *ngIf=\"!multiple\"\n [placeholder]=\"placeholder\"\n [(ngModel)]=\"model\"\n [required]=\"required\"\n [disabled]=\"disabled || loading || (entities && entities.length === 0)\"\n disableOptionCentering=\"true\"\n (selectionChange)=\"onSelectionChange($event.value)\"\n panelClass=\"select-position\">\n <mat-form-field appearance=\"standard\"\n class=\"select-input-search\"\n fxFlexFill>\n <input #search\n matInput\n placeholder=\"Pesquisar...\"\n type=\"text\"\n autofocus\n autocomplete=\"off\"\n (focusout)=\"resetSearch()\"\n (keyup)=\"onSearch($event.target.value)\"\n (keydown)=\"$event.stopPropagation()\">\n <span matPrefix>\n <mat-icon>search</mat-icon>\n </span>\n </mat-form-field>\n\n <mat-option *ngIf=\"!required && !search.value\"\n [value]=\"null\">\n {{ nullValue ? nullValue : 'Selecione' }}\n </mat-option>\n <div *ngFor=\"let entity of filteredEntities\">\n <mat-option *ngIf=\"validKey(entity)\"\n [value]=\"entity\">\n {{ getPropertyValue(entity) }}\n </mat-option>\n </div>\n </mat-select>\n\n <mat-spinner matPrefix\n *ngIf=\"loading\"\n mode=\"indeterminate\"\n diameter=\"17\">\n </mat-spinner>\n\n <mat-icon *ngIf=\"showClearButton()\"\n matSuffix\n (click)=\"removeOption(); $event.stopPropagation()\"\n matTooltip=\"Remover selecionado\">\n clear\n </mat-icon>\n </mat-form-field>\n</div>\n",
|
4549
|
-
styles: ["mat-label span{color:#f44336!important}.disabled{cursor:not-allowed!important;opacity:.6!important}:host ::ng-deep .mat-form-field-appearance-outline .mat-form-field-suffix{top:1.2rem!important;right:2.5rem!important;position:absolute}:host ::ng-deep .mat-form-field-appearance-outline .mat-form-field-suffix>mat-icon{color:#696969;width:20px;height:20px;font-size:18px;display:flex!important;align-items:center;justify-content:center}:host ::ng-deep .mat-form-field-appearance-outline .mat-form-field-suffix>mat-icon:hover{font-size:19px}.checkbox-all-select{line-height:3em;height:3em;text-align:left;cursor:pointer;display:flex;align-items:center;border-bottom:1px solid #e1e5e4}.checkbox-all-select:hover:not(.disabled){background:rgba(0,0,0,.04)}.checkbox-all-select>itss-checkbox{width:100%;padding:0 16px}.checkbox-all-select>itss-checkbox>div{width:100%}.checkbox-all-select>itss-checkbox ::ng-deep .mat-checkbox-layout{pointer-events:none!important}.checkbox-all-select>itss-checkbox ::ng-deep .mat-checkbox-label{font-size:13px!important;text-transform:uppercase!important;color:#696969!important;margin-left:5px!important}"]
|
4573
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}mat-label span{color:#f44336!important}.disabled{cursor:not-allowed!important;opacity:.6!important}:host ::ng-deep .mat-form-field-appearance-outline .mat-form-field-suffix{top:1.2rem!important;right:2.5rem!important;position:absolute}:host ::ng-deep .mat-form-field-appearance-outline .mat-form-field-suffix>mat-icon{color:#696969;width:20px;height:20px;font-size:18px;display:flex!important;align-items:center;justify-content:center}:host ::ng-deep .mat-form-field-appearance-outline .mat-form-field-suffix>mat-icon:hover{font-size:19px}.checkbox-all-select{line-height:3em;height:3em;text-align:left;cursor:pointer;display:flex;align-items:center;border-bottom:1px solid #e1e5e4}.checkbox-all-select:hover:not(.disabled){background:rgba(0,0,0,.04)}.checkbox-all-select>itss-checkbox{width:100%;padding:0 16px}.checkbox-all-select>itss-checkbox>div{width:100%}.checkbox-all-select>itss-checkbox ::ng-deep .mat-checkbox-layout{pointer-events:none!important}.checkbox-all-select>itss-checkbox ::ng-deep .mat-checkbox-label{font-size:13px!important;text-transform:uppercase!important;color:#696969!important;margin-left:5px!important}"]
|
4550
4574
|
}),
|
4551
4575
|
__metadata("design:paramtypes", [ChangeDetectorRef])
|
4552
4576
|
], SelectEntityComponent);
|
@@ -4666,7 +4690,7 @@ var SelectEnumComponent = /** @class */ (function () {
|
|
4666
4690
|
multi: true
|
4667
4691
|
}
|
4668
4692
|
],
|
4669
|
-
styles: ["mat-label span{color:#f44336!important}.select-disabled{cursor:not-allowed}"]
|
4693
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}mat-label span{color:#f44336!important}.select-disabled{cursor:not-allowed}"]
|
4670
4694
|
})
|
4671
4695
|
], SelectEnumComponent);
|
4672
4696
|
return SelectEnumComponent;
|
@@ -4751,7 +4775,7 @@ var SelectMonthPeriodComponent = /** @class */ (function () {
|
|
4751
4775
|
}
|
4752
4776
|
],
|
4753
4777
|
host: { 'class': 'itss-element' },
|
4754
|
-
styles: ["button:disabled{opacity:.4!important;pointer-events:none!important;cursor:not-allowed!important}.date-filter{width:100%;height:42.53px;display:flex;background-color:#fff}.date-filter svg{width:20px;height:20px}:focus-visible{outline:0}.button-arrow{padding:8px;color:#696969;border:1px solid #dddfe1;background-color:#fff;height:100%;width:55px;font-size:14px;font-weight:600;line-height:1.5;text-align:center;text-decoration:none;cursor:pointer;transition:background-color .2s ease-in-out}.button-arrow:hover{background-color:#f9f9f9}.icon{display:block;margin:0 auto;width:20px;height:20px}.button-arrow-left{border-top-left-radius:5px;border-bottom-left-radius:5px}.button-arrow-right{border-top-right-radius:5px;border-bottom-right-radius:5px}.date-filter-field{display:flex;align-items:center;justify-content:center;width:100%;padding:0 16px;border-radius:0;border-left:none;border-right:none;border-top:1px solid #dddfe1;border-bottom:1px solid #dddfe1;background-color:#fff;color:#696969;font-size:.75px;text-align:center;cursor:pointer;transition:background-color .2s ease-in-out}.date-filter-field:hover{background-color:#f9f9f9}.date-filter-field-text{line-height:1;font-size:12px;display:inline-block}.separator{font-size:1rem;font-weight:700;text-align:center}.button{vertical-align:middle;display:inline-block;font-size:14px;max-height:40px;min-height:40px;min-width:120px;margin:0;padding:8px 16px;font-weight:600;line-height:1.5;text-align:center;text-decoration:none;white-space:nowrap;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;border-radius:4px;box-sizing:border-box}.button-cancel{color:#696969;background-color:#f5f5f5;border-color:#dbdbdb;transition:background-color .2s ease-in-out}.button-cancel:hover{background:#ececec}.button-confirm{color:#fff;background-color:#f3465c;transition:opacity .2s ease-in-out}.button-confirm:hover{opacity:.8}.label{color:#696969;font-size:1rem;margin-bottom:5px!important}.label>span{color:#f44336}"]
|
4778
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}button:disabled{opacity:.4!important;pointer-events:none!important;cursor:not-allowed!important}.date-filter{width:100%;height:42.53px;display:flex;background-color:#fff}.date-filter svg{width:20px;height:20px}:focus-visible{outline:0}.button-arrow{padding:8px;color:#696969;border:1px solid #dddfe1;background-color:#fff;height:100%;width:55px;font-size:14px;font-weight:600;line-height:1.5;text-align:center;text-decoration:none;cursor:pointer;transition:background-color .2s ease-in-out}.button-arrow:hover{background-color:#f9f9f9}.icon{display:block;margin:0 auto;width:20px;height:20px}.button-arrow-left{border-top-left-radius:5px;border-bottom-left-radius:5px}.button-arrow-right{border-top-right-radius:5px;border-bottom-right-radius:5px}.date-filter-field{display:flex;align-items:center;justify-content:center;width:100%;padding:0 16px;border-radius:0;border-left:none;border-right:none;border-top:1px solid #dddfe1;border-bottom:1px solid #dddfe1;background-color:#fff;color:#696969;font-size:.75px;text-align:center;cursor:pointer;transition:background-color .2s ease-in-out}.date-filter-field:hover{background-color:#f9f9f9}.date-filter-field-text{line-height:1;font-size:12px;display:inline-block}.separator{font-size:1rem;font-weight:700;text-align:center}.button{vertical-align:middle;display:inline-block;font-size:14px;max-height:40px;min-height:40px;min-width:120px;margin:0;padding:8px 16px;font-weight:600;line-height:1.5;text-align:center;text-decoration:none;white-space:nowrap;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;border-radius:4px;box-sizing:border-box}.button-cancel{color:#696969;background-color:#f5f5f5;border-color:#dbdbdb;transition:background-color .2s ease-in-out}.button-cancel:hover{background:#ececec}.button-confirm{color:#fff;background-color:#f3465c;transition:opacity .2s ease-in-out}.button-confirm:hover{opacity:.8}.label{color:#696969;font-size:1rem;margin-bottom:5px!important}.label>span{color:#f44336}"]
|
4755
4779
|
}),
|
4756
4780
|
__metadata("design:paramtypes", [GIPINgConfig])
|
4757
4781
|
], SelectMonthPeriodComponent);
|
@@ -5794,7 +5818,7 @@ var TextareaComponent = /** @class */ (function () {
|
|
5794
5818
|
multi: true
|
5795
5819
|
}
|
5796
5820
|
],
|
5797
|
-
styles: ["mat-label span{color:#f44336!important}"]
|
5821
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}mat-label span{color:#f44336!important}"]
|
5798
5822
|
}),
|
5799
5823
|
__metadata("design:paramtypes", [])
|
5800
5824
|
], TextareaComponent);
|
@@ -6453,9 +6477,7 @@ var GIPIResizeService = /** @class */ (function () {
|
|
6453
6477
|
]; };
|
6454
6478
|
GIPIResizeService.ngInjectableDef = ɵɵdefineInjectable({ factory: function GIPIResizeService_Factory() { return new GIPIResizeService(ɵɵinject(NgZone), ɵɵinject(RendererFactory2)); }, token: GIPIResizeService, providedIn: "root" });
|
6455
6479
|
GIPIResizeService = __decorate([
|
6456
|
-
Injectable({
|
6457
|
-
providedIn: 'root'
|
6458
|
-
}),
|
6480
|
+
Injectable({ providedIn: 'root' }),
|
6459
6481
|
__metadata("design:paramtypes", [NgZone,
|
6460
6482
|
RendererFactory2])
|
6461
6483
|
], GIPIResizeService);
|
@@ -6533,9 +6555,7 @@ var GIPIBreakpointService = /** @class */ (function () {
|
|
6533
6555
|
]; };
|
6534
6556
|
GIPIBreakpointService.ngInjectableDef = ɵɵdefineInjectable({ factory: function GIPIBreakpointService_Factory() { return new GIPIBreakpointService(ɵɵinject(GIPIResizeService), ɵɵinject(MediaMatcher)); }, token: GIPIBreakpointService, providedIn: "root" });
|
6535
6557
|
GIPIBreakpointService = __decorate([
|
6536
|
-
Injectable({
|
6537
|
-
providedIn: 'root'
|
6538
|
-
}),
|
6558
|
+
Injectable({ providedIn: 'root' }),
|
6539
6559
|
__metadata("design:paramtypes", [GIPIResizeService,
|
6540
6560
|
MediaMatcher])
|
6541
6561
|
], GIPIBreakpointService);
|
@@ -7401,6 +7421,51 @@ var GIPIAbstractFormComponent = /** @class */ (function () {
|
|
7401
7421
|
configurable: true
|
7402
7422
|
});
|
7403
7423
|
GIPIAbstractFormComponent.prototype.ngOnInit = function () { };
|
7424
|
+
GIPIAbstractFormComponent.prototype.ngAfterViewInit = function () {
|
7425
|
+
var _this = this;
|
7426
|
+
if (this.dialog && !ObjectUtil.isNull(this.matDialogContent)) {
|
7427
|
+
var contentElement_1 = this.matDialogContent.nativeElement;
|
7428
|
+
if (!ObjectUtil.isNull(contentElement_1) && this._hasScroll(contentElement_1)) {
|
7429
|
+
contentElement_1.scrollTop = 0;
|
7430
|
+
this.matDialogActions.nativeElement.style.boxShadow = '0px -10px 15px -3px rgba(0,0,0,0.1)';
|
7431
|
+
contentElement_1.addEventListener('scroll', function () { return _this._onScroll(contentElement_1); });
|
7432
|
+
}
|
7433
|
+
else {
|
7434
|
+
this._removeShadows();
|
7435
|
+
}
|
7436
|
+
}
|
7437
|
+
};
|
7438
|
+
GIPIAbstractFormComponent.prototype._onScroll = function (content) {
|
7439
|
+
var scrollTop = content.scrollTop || 0;
|
7440
|
+
var scrollHeight = (content.scrollHeight - 36) || 0; // 36 é do padding
|
7441
|
+
var clientHeight = content.clientHeight || 0;
|
7442
|
+
if (scrollTop === 0) {
|
7443
|
+
this.matDialogTitle.nativeElement.style.boxShadow = '';
|
7444
|
+
this.matDialogActions.nativeElement.style.boxShadow = '0px -10px 15px -3px rgba(0,0,0,0.1)';
|
7445
|
+
}
|
7446
|
+
else if ((scrollTop + clientHeight) >= scrollHeight) {
|
7447
|
+
this.matDialogTitle.nativeElement.style.boxShadow = '0px 10px 15px -3px rgba(0,0,0,0.1)';
|
7448
|
+
this.matDialogActions.nativeElement.style.boxShadow = '';
|
7449
|
+
}
|
7450
|
+
else {
|
7451
|
+
this.matDialogTitle.nativeElement.style.boxShadow = '0px 10px 15px -3px rgba(0,0,0,0.1)';
|
7452
|
+
this.matDialogActions.nativeElement.style.boxShadow = '0px -10px 15px -3px rgba(0,0,0,0.1)';
|
7453
|
+
}
|
7454
|
+
};
|
7455
|
+
GIPIAbstractFormComponent.prototype._hasScroll = function (matDialogContent) {
|
7456
|
+
if (ObjectUtil.isNull(matDialogContent)) {
|
7457
|
+
return false;
|
7458
|
+
}
|
7459
|
+
return (matDialogContent.scrollHeight > matDialogContent.clientHeight);
|
7460
|
+
};
|
7461
|
+
GIPIAbstractFormComponent.prototype._removeShadows = function () {
|
7462
|
+
if (!ObjectUtil.isNull(this.matDialogTitle)) {
|
7463
|
+
this.matDialogTitle.nativeElement.style.boxShadow = '';
|
7464
|
+
}
|
7465
|
+
if (!ObjectUtil.isNull(this.matDialogActions)) {
|
7466
|
+
this.matDialogActions.nativeElement.style.boxShadow = '';
|
7467
|
+
}
|
7468
|
+
};
|
7404
7469
|
var GIPIAbstractFormComponent_1;
|
7405
7470
|
__decorate([
|
7406
7471
|
HostBinding('attr.id'),
|
@@ -7419,6 +7484,18 @@ var GIPIAbstractFormComponent = /** @class */ (function () {
|
|
7419
7484
|
ContentChildren(GIPIActionRowComponent),
|
7420
7485
|
__metadata("design:type", GIPIActionRowComponent)
|
7421
7486
|
], GIPIAbstractFormComponent.prototype, "GIPIActionRowComponent", void 0);
|
7487
|
+
__decorate([
|
7488
|
+
ContentChild(MatDialogTitle, { static: false, read: ElementRef }),
|
7489
|
+
__metadata("design:type", ElementRef)
|
7490
|
+
], GIPIAbstractFormComponent.prototype, "matDialogTitle", void 0);
|
7491
|
+
__decorate([
|
7492
|
+
ContentChild(MatDialogContent, { static: false, read: ElementRef }),
|
7493
|
+
__metadata("design:type", ElementRef)
|
7494
|
+
], GIPIAbstractFormComponent.prototype, "matDialogContent", void 0);
|
7495
|
+
__decorate([
|
7496
|
+
ContentChild(MatDialogActions, { static: false, read: ElementRef }),
|
7497
|
+
__metadata("design:type", ElementRef)
|
7498
|
+
], GIPIAbstractFormComponent.prototype, "matDialogActions", void 0);
|
7422
7499
|
__decorate([
|
7423
7500
|
Input(),
|
7424
7501
|
__metadata("design:type", String),
|
@@ -7457,11 +7534,15 @@ var GIPIAbstractFormComponent = /** @class */ (function () {
|
|
7457
7534
|
Input(),
|
7458
7535
|
__metadata("design:type", Boolean)
|
7459
7536
|
], GIPIAbstractFormComponent.prototype, "loading", void 0);
|
7537
|
+
__decorate([
|
7538
|
+
Input(),
|
7539
|
+
__metadata("design:type", String)
|
7540
|
+
], GIPIAbstractFormComponent.prototype, "class", void 0);
|
7460
7541
|
GIPIAbstractFormComponent = GIPIAbstractFormComponent_1 = __decorate([
|
7461
7542
|
Component({
|
7462
7543
|
selector: "gipi-abstract-form",
|
7463
7544
|
exportAs: 'gipiAbstractForm',
|
7464
|
-
template: "<div class=\"form-content\"\n [class.form-dialog]=\"dialog\"\n [class.space-bottom]=\"!dialog\"\n [style.flex-direction]=\"flexDirection\"\n [style.align-items]=\"alignItems\"\n [style.justify-content]=\"justifyContent\"\n [style.gap]=\"getGap\"\n [style.padding]=\"getPadding\">\n <ng-content> </ng-content>\n</div>\n<div class=\"form-footer\"\n [style.margin-inline]=\"getPadding\"\n *ngIf=\"GIPIActionRowComponent\">\n <ng-content select=\"gipi-action-row\"> </ng-content>\n</div>",
|
7545
|
+
template: "<div [class]=\"class\"\n [class.form-content]=\"true\"\n [class.form-dialog]=\"dialog\"\n [class.space-bottom]=\"!dialog\"\n [style.flex-direction]=\"flexDirection\"\n [style.align-items]=\"alignItems\"\n [style.justify-content]=\"justifyContent\"\n [style.gap]=\"getGap\"\n [style.padding]=\"getPadding\">\n <ng-content> </ng-content>\n</div>\n<div class=\"form-footer\"\n [style.margin-inline]=\"getPadding\"\n *ngIf=\"GIPIActionRowComponent\">\n <ng-content select=\"gipi-action-row\"> </ng-content>\n</div>",
|
7465
7546
|
providers: [
|
7466
7547
|
{
|
7467
7548
|
provide: NG_VALUE_ACCESSOR,
|
@@ -8399,7 +8480,7 @@ var GIPIPopoverTrigger = /** @class */ (function () {
|
|
8399
8480
|
var _this = this;
|
8400
8481
|
if (this._overlayRef) {
|
8401
8482
|
/** Only subscribe to backdrop if trigger event is click */
|
8402
|
-
if (this.triggerEvent
|
8483
|
+
if (this.triggerEvent !== 'hover' && this.backdropCloseOnClick) {
|
8403
8484
|
this._overlayRef.backdropClick()
|
8404
8485
|
.pipe(takeUntil(this.popoverClosed), takeUntil(this._onDestroy))
|
8405
8486
|
.subscribe(function () {
|
@@ -8483,8 +8564,8 @@ var GIPIPopoverTrigger = /** @class */ (function () {
|
|
8483
8564
|
GIPIPopoverTrigger.prototype._getOverlayConfig = function () {
|
8484
8565
|
var overlayState = new OverlayConfig();
|
8485
8566
|
overlayState.positionStrategy = this._getPosition();
|
8486
|
-
/** Display overlay backdrop if trigger event is
|
8487
|
-
if (this.triggerEvent
|
8567
|
+
/** Display overlay backdrop if trigger event is different of hover */
|
8568
|
+
if (this.triggerEvent !== 'hover') {
|
8488
8569
|
overlayState.hasBackdrop = true;
|
8489
8570
|
overlayState.backdropClass = 'cdk-overlay-transparent-backdrop';
|
8490
8571
|
}
|
@@ -8773,6 +8854,26 @@ var GIPIButtonComponent = /** @class */ (function () {
|
|
8773
8854
|
this.onBlur = new EventEmitter(true);
|
8774
8855
|
}
|
8775
8856
|
GIPIButtonComponent_1 = GIPIButtonComponent;
|
8857
|
+
Object.defineProperty(GIPIButtonComponent.prototype, "internalButtonClass", {
|
8858
|
+
get: function () {
|
8859
|
+
return {
|
8860
|
+
'button-base': true,
|
8861
|
+
'button-primary': (this.isButtonPrimary || this.isButtonPrimaryIcon),
|
8862
|
+
'button-primary-icon': this.isButtonPrimaryIcon,
|
8863
|
+
'button-secondary': (this.isButtonSecondary || this.isButtonSecondaryIcon),
|
8864
|
+
'button-secondary-icon': this.isButtonSecondaryIcon,
|
8865
|
+
'button-tertiary': (this.isButtonTertiary || this.isButtonTertiaryIcon),
|
8866
|
+
'button-tertiary-icon': this.isButtonTertiaryIcon,
|
8867
|
+
'button-link': this.isButtonLink,
|
8868
|
+
'button-only-icon': this.isButtonIcon,
|
8869
|
+
'button-for-input': this.isForInput,
|
8870
|
+
'button-notification': this.notification,
|
8871
|
+
'button-action': this.isButtonAction
|
8872
|
+
};
|
8873
|
+
},
|
8874
|
+
enumerable: false,
|
8875
|
+
configurable: true
|
8876
|
+
});
|
8776
8877
|
GIPIButtonComponent.prototype.ngOnInit = function () { };
|
8777
8878
|
GIPIButtonComponent.prototype.ngOnDestroy = function () {
|
8778
8879
|
if (this.popoverTrigger) {
|
@@ -8972,7 +9073,7 @@ var GIPIButtonComponent = /** @class */ (function () {
|
|
8972
9073
|
Component({
|
8973
9074
|
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
9075
|
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]=\"
|
9076
|
+
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
9077
|
providers: [
|
8977
9078
|
{
|
8978
9079
|
provide: NG_VALUE_ACCESSOR,
|
@@ -9278,9 +9379,7 @@ var GIPIChipsComponent = /** @class */ (function () {
|
|
9278
9379
|
var ConfirmationDTO = /** @class */ (function (_super) {
|
9279
9380
|
__extends(ConfirmationDTO, _super);
|
9280
9381
|
function ConfirmationDTO() {
|
9281
|
-
|
9282
|
-
_this.isWarningScreen = false;
|
9283
|
-
return _this;
|
9382
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
9284
9383
|
}
|
9285
9384
|
return ConfirmationDTO;
|
9286
9385
|
}(AbstractDTO));
|
@@ -9303,7 +9402,7 @@ var GIPIConfirmationDialogComponent = /** @class */ (function () {
|
|
9303
9402
|
Component({
|
9304
9403
|
selector: "gipi-confirmation-dialog",
|
9305
9404
|
exportAs: 'gipiConfirmationDialog',
|
9306
|
-
template: "<gipi-abstract-form id=\"dialogConfirmation\"\n name=\"dialogConfirmation\"\n [dialog]=\"true\">\n
|
9405
|
+
template: "<div mat-dialog-title\n class=\"dialog-title\">\n <!-- Confirmation -->\n <ng-container *ngIf=\"!confirmation.type || (confirmation?.type === 'confirmation')\">\n <svg width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_522_3414)\">\n <path fill-rule=\"evenodd\"\n clip-rule=\"evenodd\"\n d=\"M24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12ZM15.3941 6.19196C16.0206 6.81534 16.4617 7.60056 16.668 8.45999C16.9468 9.60963 16.7901 10.8218 16.2282 11.8627C15.6663 12.9037 14.7389 13.6998 13.6248 14.0976C13.3788 14.1852 13.2048 14.4036 13.2048 14.664V15.6024C13.2048 15.9213 13.0781 16.2271 12.8526 16.4526C12.6271 16.6781 12.3213 16.8048 12.0024 16.8048C11.6835 16.8048 11.3777 16.6781 11.1522 16.4526C10.9267 16.2271 10.8 15.9213 10.8 15.6024V13.1856C10.8041 12.87 10.9323 12.5688 11.1569 12.3471C11.3815 12.1255 11.6843 12.0012 11.9998 12.0012H11.9916C13.3176 12.0012 14.3952 10.9236 14.3952 9.60119C14.3809 8.97286 14.1211 8.37512 13.6715 7.93592C13.222 7.49673 12.6183 7.25098 11.9898 7.25129C11.3613 7.25161 10.7579 7.49796 10.3088 7.9376C9.85969 8.37725 9.60052 8.97525 9.5868 9.60359C9.5844 10.2648 9.0468 10.8012 8.3844 10.8012C8.08823 10.7994 7.80337 10.6872 7.58547 10.4866C7.36757 10.286 7.23227 10.0114 7.206 9.71639L7.2 9.53999C7.2204 6.53519 9.9852 4.21679 13.1196 4.92959C13.9801 5.13153 14.7675 5.56857 15.3941 6.19196ZM13.2 19.2C13.2 19.8627 12.6627 20.4 12 20.4C11.3373 20.4 10.8 19.8627 10.8 19.2C10.8 18.5373 11.3373 18 12 18C12.6627 18 13.2 18.5373 13.2 19.2Z\"\n fill=\"#E0313E\" />\n </g>\n </svg>\n </ng-container>\n\n <!-- Warning -->\n <ng-container *ngIf=\"confirmation?.type === 'warning'\">\n <svg width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_522_3358)\">\n <path fill-rule=\"evenodd\"\n clip-rule=\"evenodd\"\n d=\"M13.1255 0.223975C13.4823 0.371842 13.8065 0.58857 14.0795 0.861777L23.1376 9.91952C23.411 10.1926 23.6279 10.5169 23.7759 10.8739C23.9238 11.2309 24 11.6136 24 12C24 12.3864 23.9238 12.7691 23.7759 13.1261C23.6279 13.4831 23.411 13.8074 23.1376 14.0805L14.0795 23.1382C13.8065 23.4114 13.4823 23.6282 13.1255 23.776C12.7687 23.9239 12.3862 24 12 24C11.6138 24 11.2313 23.9239 10.8745 23.776C10.5177 23.6282 10.1935 23.4114 9.92051 23.1382L0.862407 14.0805C0.589013 13.8074 0.372125 13.4831 0.224146 13.1261C0.0761672 12.7691 0 12.3864 0 12C0 11.6136 0.0761672 11.2309 0.224146 10.8739C0.372125 10.5169 0.589013 10.1926 0.862407 9.91952L9.92051 0.861777C10.1935 0.58857 10.5177 0.371842 10.8745 0.223975C11.2313 0.0761077 11.6138 0 12 0C12.3862 0 12.7687 0.0761077 13.1255 0.223975ZM10.9616 14.5066C11.237 14.782 11.6105 14.9367 12 14.9367C12.3895 14.9367 12.763 14.782 13.0384 14.5066C13.3138 14.2311 13.4686 13.8575 13.4686 13.468V6.12428C13.4686 5.73475 13.3138 5.36116 13.0384 5.08572C12.763 4.81028 12.3895 4.65554 12 4.65554C11.6105 4.65554 11.237 4.81028 10.9616 5.08572C10.6862 5.36116 10.5314 5.73475 10.5314 6.12428V13.468C10.5314 13.8575 10.6862 14.2311 10.9616 14.5066ZM10.9616 18.9128C11.237 19.1882 11.6105 19.343 12 19.343C12.3895 19.343 12.763 19.1882 13.0384 18.9128C13.3138 18.6374 13.4686 18.2638 13.4686 17.8742C13.4686 17.4847 13.3138 17.1111 13.0384 16.8357C12.763 16.5602 12.3895 16.4055 12 16.4055C11.6105 16.4055 11.237 16.5602 10.9616 16.8357C10.6862 17.1111 10.5314 17.4847 10.5314 17.8742C10.5314 18.2638 10.6862 18.6374 10.9616 18.9128Z\"\n fill=\"#E0313E\" />\n </g>\n </svg>\n </ng-container>\n\n <strong> {{ confirmation?.title }} </strong>\n</div>\n<div mat-dialog-content\n class=\"dialog-content\">\n <p *ngIf=\"confirmation?.message\">\n {{ confirmation?.message }}\n </p>\n\n <li *ngFor=\"let message of confirmation?.listMessage\">\n {{ message }}\n </li>\n</div>\n<div mat-dialog-actions\n class=\"dialog-actions\">\n <ng-container *ngIf=\"confirmation?.type !== 'warning'\">\n <button class=\"dialog-button-base cancel\"\n [mat-dialog-close]=\"false\">\n Cancelar\n </button>\n <button class=\"dialog-button-base confirm\"\n [mat-dialog-close]=\"true\">\n Confirmar\n </button>\n </ng-container>\n\n <button class=\"dialog-button-base confirm\"\n *ngIf=\"confirmation?.type === 'warning'\"\n [mat-dialog-close]=\"true\">\n Ok\n </button>\n</div>\n\n<!-- <gipi-abstract-form id=\"dialogConfirmation\"\n name=\"dialogConfirmation\"\n [dialog]=\"true\">\n <gipi-toolbar id=\"toolbarDialogConfirmation\"\n mat-dialog-title>\n {{ confirmation.title }}\n </gipi-toolbar>\n\n <div mat-dialog-content>\n <p>{{ confirmation.message }}</p>\n <li *ngFor=\"let message of confirmation.listMessage\"> {{ message }} </li>\n </div>\n\n <div mat-dialog-actions\n *ngIf=\"!confirmation.isWarningScreen\"\n class=\"screen-confirmation\"\n fxLayout=\"row\"\n fxLayoutGap=\"16px\">\n <gipi-button [label]=\"messages.BUTTON_OK_CONFIRMATION\"\n [mat-dialog-close]=\"true\"\n gipi-primary\n fxFlex=\"30\">\n </gipi-button>\n\n <gipi-button [label]=\"messages.BUTTON_CANCEL_CONFIRMATION\"\n [mat-dialog-close]=\"false\"\n gipi-secondary\n fxFlex=\"30\">\n </gipi-button>\n </div>\n\n <div mat-dialog-actions\n *ngIf=\"confirmation.isWarningScreen\"\n class=\"screen-warning\"\n fxLayout=\"row\"\n fxLayoutGap=\"16px\">\n <gipi-button label=\"OK\"\n [mat-dialog-close]=\"true\"\n gipi-primary\n fxFlex=\"30\">\n </gipi-button>\n </div>\n</gipi-abstract-form> -->",
|
9307
9406
|
providers: [
|
9308
9407
|
{
|
9309
9408
|
provide: NG_VALUE_ACCESSOR,
|
@@ -9314,7 +9413,7 @@ var GIPIConfirmationDialogComponent = /** @class */ (function () {
|
|
9314
9413
|
host: {
|
9315
9414
|
'class': 'gipi-confirmation-dialog',
|
9316
9415
|
},
|
9317
|
-
styles: [".
|
9416
|
+
styles: [":host{display:flex;flex-direction:column;gap:1.6rem;padding:2rem;height:100%}.dialog-title{display:flex;align-items:center;gap:1rem}.dialog-title>strong{color:#262626}.dialog-content{display:flex;flex-direction:column;min-height:6rem!important;height:16rem!important;max-height:16rem!important;overflow-y:auto!important;overflow-x:hidden!important}.dialog-content>p{color:#595959}.dialog-content>li{margin:1rem 0;font-size:1.4rem;color:#595959}.dialog-content>li::marker{font-size:1.6rem;color:#e0313e}.dialog-actions{display:flex;justify-content:flex-end;flex-wrap:nowrap!important;gap:1.6rem;width:100%}.dialog-actions .cancel{color:#595959}.dialog-actions .cancel:hover{border-color:#595959;background-color:#e0e1e2}.dialog-actions .confirm{background-color:#e0313e;color:#fff}.dialog-actions .confirm:hover{background-color:#cc2d38}.dialog-button-base{height:3.2rem;padding-inline:1.2rem;border-radius:4px;outline:0;border:1px solid transparent;background-color:transparent;text-align:center;font-weight:500;font-size:1.4rem;cursor:pointer;transition:.2s}.dialog-button-base:active{transform:scale(.98)}"]
|
9318
9417
|
}),
|
9319
9418
|
__param(1, Inject(MAT_DIALOG_DATA)),
|
9320
9419
|
__param(2, Inject(APP_MESSAGES)),
|
@@ -9667,9 +9766,7 @@ var ConfirmationService = /** @class */ (function (_super) {
|
|
9667
9766
|
]; };
|
9668
9767
|
ConfirmationService.ngInjectableDef = ɵɵdefineInjectable({ factory: function ConfirmationService_Factory() { return new ConfirmationService(ɵɵinject(MatDialog$1)); }, token: ConfirmationService, providedIn: "root" });
|
9669
9768
|
ConfirmationService = __decorate([
|
9670
|
-
Injectable({
|
9671
|
-
providedIn: 'root'
|
9672
|
-
}),
|
9769
|
+
Injectable({ providedIn: 'root' }),
|
9673
9770
|
__metadata("design:paramtypes", [MatDialog])
|
9674
9771
|
], ConfirmationService);
|
9675
9772
|
return ConfirmationService;
|
@@ -10213,7 +10310,7 @@ var GIPIFormFieldComponent = /** @class */ (function () {
|
|
10213
10310
|
'class': 'gipi-form-field',
|
10214
10311
|
},
|
10215
10312
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
10216
|
-
styles: [".form-field-container{display:flex;flex-direction:column;gap:1rem;width:100%}.form-field-container .form-field-label{color:#131313;font-size:1.4rem;line-height:100%}.form-field-container .form-field-label>span{color:#d14014;font-size:inherit;line-height:inherit}.form-field-container .form-field-content{display:flex;flex-direction:row;align-items:center;justify-content:space-between;padding:1.2rem;gap:1.2rem;width:100%;max-height:4rem;border-radius:5px;cursor:text;background-color:#fff;border:1px solid rgba(0,0,0,.12);color:#696969;caret-color:#9a9da2;transition:.2s}.form-field-container .form-field-content:focus-within,.form-field-container .form-field-content:has(.form-field-input:active),.form-field-container .form-field-content:has(.form-field-input:focus){box-shadow:0 0 0 .2rem #f0f0f0}.form-field-container .form-field-content:focus-within,.form-field-container .form-field-content:hover{border-color:#bfbfbf!important}.form-field-container .form-field-content:has(.form-field-input:invalid){border-color:#d14014!important;color:#d14014!important;caret-color:#d14014!important}.form-field-container .form-field-content:has(.form-field-input:invalid):focus-within{box-shadow:0 0 0 .2rem #f1c4b6!important}.form-field-container .form-field-content:has(.form-field-input:disabled){border-color:#e0e1e2!important;color:#d1d2d4!important;box-shadow:none!important;cursor:not-allowed!important;caret-color:#d1d2d4!important;pointer-events:none!important}.form-field-container .form-field-content:has(.form-field-input:disabled) .form-field-input,.form-field-container .form-field-content:has(.form-field-input:disabled) .form-field-suffix .form-field-button{cursor:not-allowed!important;pointer-events:none!important}.form-field-container .form-field-content:has(.form-field-input:disabled) .form-field-suffix .form-field-trigger{border-color:#e0e1e2!important;pointer-events:none!important}.form-field-container .form-field-content:has(.form-field-input:disabled) mat-icon{color:#d1d2d4!important;fill:#d1d2d4!important;cursor:not-allowed!important;pointer-events:none!important}.form-field-container .form-field-content.form-field-select,.form-field-container .form-field-content.form-field-select .form-field-input{box-shadow:none!important;cursor:pointer!important}.form-field-container .form-field-content .form-field-input{height:16px;outline:0;border:none;background-color:transparent;color:inherit;flex:1;max-width:
|
10313
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}.form-field-container{display:flex;flex-direction:column;gap:1rem;width:100%}.form-field-container .form-field-label{color:#131313;font-size:1.4rem;line-height:100%}.form-field-container .form-field-label>span{color:#d14014;font-size:inherit;line-height:inherit}.form-field-container .form-field-content{display:flex;flex-direction:row;align-items:center;justify-content:space-between;padding:1.2rem;gap:1.2rem;width:100%;max-height:4rem;border-radius:5px;cursor:text;background-color:#fff;border:1px solid rgba(0,0,0,.12);color:#696969;caret-color:#9a9da2;transition:.2s}.form-field-container .form-field-content:focus-within,.form-field-container .form-field-content:has(.form-field-input:active),.form-field-container .form-field-content:has(.form-field-input:focus){box-shadow:0 0 0 .2rem #f0f0f0}.form-field-container .form-field-content:focus-within,.form-field-container .form-field-content:hover{border-color:#bfbfbf!important}.form-field-container .form-field-content:has(.form-field-input:invalid){border-color:#d14014!important;color:#d14014!important;caret-color:#d14014!important}.form-field-container .form-field-content:has(.form-field-input:invalid):focus-within{box-shadow:0 0 0 .2rem #f1c4b6!important}.form-field-container .form-field-content:has(.form-field-input:disabled){border-color:#e0e1e2!important;color:#d1d2d4!important;box-shadow:none!important;cursor:not-allowed!important;caret-color:#d1d2d4!important;pointer-events:none!important}.form-field-container .form-field-content:has(.form-field-input:disabled) .form-field-input,.form-field-container .form-field-content:has(.form-field-input:disabled) .form-field-suffix .form-field-button{cursor:not-allowed!important;pointer-events:none!important}.form-field-container .form-field-content:has(.form-field-input:disabled) .form-field-suffix .form-field-trigger{border-color:#e0e1e2!important;pointer-events:none!important}.form-field-container .form-field-content:has(.form-field-input:disabled) mat-icon{color:#d1d2d4!important;fill:#d1d2d4!important;cursor:not-allowed!important;pointer-events:none!important}.form-field-container .form-field-content.form-field-select,.form-field-container .form-field-content.form-field-select .form-field-input{box-shadow:none!important;cursor:pointer!important}.form-field-container .form-field-content .form-field-input{height:16px;outline:0;border:none;background-color:transparent;color:inherit;flex:1;max-width:85%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.form-field-container .form-field-content .form-field-suffix{display:flex;flex-direction:row;align-items:center;gap:1.6rem}.form-field-container .form-field-content .form-field-suffix .form-field-trigger{display:flex;flex-direction:column;align-items:center;justify-content:center;padding-inline:8px;border-radius:40px;border:1px solid transparent;color:#131313;background-color:#f0f0f0;font-size:1.2rem;line-height:1.4rem}.form-field-container .form-field-content .form-field-suffix .form-field-button{display:flex;align-items:center;justify-content:center;outline:0;border:none;cursor:pointer;background-color:transparent}.form-field-container .form-field-content .form-field-suffix .form-field-button:hover:not(:disabled)>mat-icon{transform:scale(1.08)}.form-field-icon{width:1.6rem;height:1.6rem;font-size:1.6rem;color:#131313;fill:#131313}"]
|
10217
10314
|
}),
|
10218
10315
|
__metadata("design:paramtypes", [ChangeDetectorRef,
|
10219
10316
|
ElementRef])
|
@@ -10392,7 +10489,7 @@ var GIPIInputCheckboxComponent = /** @class */ (function () {
|
|
10392
10489
|
'class': 'gipi-input-checkbox',
|
10393
10490
|
},
|
10394
10491
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
10395
|
-
styles: ["::ng-deep .mat-checkbox-disabled{cursor:not-allowed!important}"]
|
10492
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}::ng-deep .mat-checkbox-disabled{cursor:not-allowed!important}"]
|
10396
10493
|
}),
|
10397
10494
|
__metadata("design:paramtypes", [ChangeDetectorRef])
|
10398
10495
|
], GIPIInputCheckboxComponent);
|
@@ -10593,7 +10690,7 @@ var GIPIInputCurrencyComponent = /** @class */ (function () {
|
|
10593
10690
|
'class': 'gipi-input-currency',
|
10594
10691
|
},
|
10595
10692
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
10596
|
-
styles: [".input-currency-container{display:flex;flex-direction:column;gap:12px;width:100%}.input-currency-container .input-currency-label{color:#131313;font-size:1.4rem;line-height:100%}.input-currency-container .input-currency-label>span{color:#d14014;font-size:inherit;line-height:inherit}.input-currency-container .input-currency-content{display:flex;flex-direction:row;align-items:center;justify-content:space-between;padding:12px;width:100%;max-height:4rem;border-radius:5px;cursor:text;background-color:#fff;border:1px solid rgba(0,0,0,.12);color:#696969;caret-color:#9a9da2;transition:.2s}.input-currency-container .input-currency-content:focus-within,.input-currency-container .input-currency-content:has(.input-currency-input:active),.input-currency-container .input-currency-content:has(.input-currency-input:focus){box-shadow:0 0 0 .2rem #f0f0f0}.input-currency-container .input-currency-content:focus-within,.input-currency-container .input-currency-content:hover{border-color:#bfbfbf!important}.input-currency-container .input-currency-content:has(.input-currency-input:invalid){border-color:#d14014!important;color:#d14014!important;caret-color:#d14014!important}.input-currency-container .input-currency-content:has(.input-currency-input:invalid):focus-within{box-shadow:0 0 0 .2rem #f1c4b6!important}.input-currency-container .input-currency-content:has(.input-currency-input:disabled){border-color:#e0e1e2!important;color:#d1d2d4!important;box-shadow:none!important;cursor:not-allowed!important;caret-color:#d1d2d4!important;pointer-events:none!important}.input-currency-container .input-currency-content .input-currency-input{height:16px;outline:0;border:none;background-color:transparent;color:inherit;flex:1}"]
|
10693
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}.input-currency-container{display:flex;flex-direction:column;gap:12px;width:100%}.input-currency-container .input-currency-label{color:#131313;font-size:1.4rem;line-height:100%}.input-currency-container .input-currency-label>span{color:#d14014;font-size:inherit;line-height:inherit}.input-currency-container .input-currency-content{display:flex;flex-direction:row;align-items:center;justify-content:space-between;padding:12px;width:100%;max-height:4rem;border-radius:5px;cursor:text;background-color:#fff;border:1px solid rgba(0,0,0,.12);color:#696969;caret-color:#9a9da2;transition:.2s}.input-currency-container .input-currency-content:focus-within,.input-currency-container .input-currency-content:has(.input-currency-input:active),.input-currency-container .input-currency-content:has(.input-currency-input:focus){box-shadow:0 0 0 .2rem #f0f0f0}.input-currency-container .input-currency-content:focus-within,.input-currency-container .input-currency-content:hover{border-color:#bfbfbf!important}.input-currency-container .input-currency-content:has(.input-currency-input:invalid){border-color:#d14014!important;color:#d14014!important;caret-color:#d14014!important}.input-currency-container .input-currency-content:has(.input-currency-input:invalid):focus-within{box-shadow:0 0 0 .2rem #f1c4b6!important}.input-currency-container .input-currency-content:has(.input-currency-input:disabled){border-color:#e0e1e2!important;color:#d1d2d4!important;box-shadow:none!important;cursor:not-allowed!important;caret-color:#d1d2d4!important;pointer-events:none!important}.input-currency-container .input-currency-content .input-currency-input{height:16px;outline:0;border:none;background-color:transparent;color:inherit;flex:1}"]
|
10597
10694
|
}),
|
10598
10695
|
__metadata("design:paramtypes", [ChangeDetectorRef,
|
10599
10696
|
ElementRef])
|
@@ -11013,7 +11110,7 @@ var GIPIInputMonthPickerComponent = /** @class */ (function () {
|
|
11013
11110
|
'class': 'gipi-input-monthpicker',
|
11014
11111
|
},
|
11015
11112
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
11016
|
-
styles: [".input-monthpicker-container{display:flex;flex-direction:column;gap:12px;width:100%}.input-monthpicker-container .input-monthpicker-label{color:#131313;font-size:1.4rem;line-height:100%}.input-monthpicker-container .input-monthpicker-label>span{color:#d14014;font-size:inherit;line-height:inherit}.input-monthpicker-container .input-monthpicker-content{display:flex;flex-direction:row;align-items:center;justify-content:space-between;padding:12px;width:100%;max-height:4rem;border-radius:5px;cursor:text;background-color:#fff;border:1px solid rgba(0,0,0,.12);color:#696969;caret-color:#9a9da2;transition:.2s;position:relative}.input-monthpicker-container .input-monthpicker-content:focus-within,.input-monthpicker-container .input-monthpicker-content:has(.input-monthpicker-input:active),.input-monthpicker-container .input-monthpicker-content:has(.input-monthpicker-input:focus){box-shadow:0 0 0 .2rem #f0f0f0}.input-monthpicker-container .input-monthpicker-content:focus-within,.input-monthpicker-container .input-monthpicker-content:hover{border-color:#bfbfbf!important}.input-monthpicker-container .input-monthpicker-content:has(.input-monthpicker-input:disabled){border-color:#e0e1e2!important;color:#d1d2d4!important;box-shadow:none!important;cursor:not-allowed!important;caret-color:#d1d2d4!important;pointer-events:none!important}.input-monthpicker-container .input-monthpicker-content:has(.input-monthpicker-input:disabled) .input-monthpicker-input,.input-monthpicker-container .input-monthpicker-content:has(.input-monthpicker-input:disabled) .input-monthpicker-suffix .input-monthpicker-button{cursor:not-allowed!important;pointer-events:none!important}.input-monthpicker-container .input-monthpicker-content:has(.input-monthpicker-input:disabled) .input-monthpicker-suffix .input-monthpicker-trigger{border-color:#e0e1e2!important;pointer-events:none!important}.input-monthpicker-container .input-monthpicker-content:has(.input-monthpicker-input:disabled) mat-icon{color:#d1d2d4!important;fill:#d1d2d4!important;cursor:not-allowed!important;pointer-events:none!important}.input-monthpicker-container .input-monthpicker-content .input-monthpicker-input{height:16px;max-width:84%;outline:0;border:none;background-color:transparent;color:inherit;flex:1}.input-monthpicker-container .input-monthpicker-content .input-monthpicker-suffix{display:flex;flex-direction:row;align-items:center;gap:16px}.input-monthpicker-container .input-monthpicker-content .input-monthpicker-suffix .input-monthpicker-button{display:flex;align-items:center;justify-content:center;outline:0;border:none;cursor:pointer;background-color:transparent}.input-monthpicker-container .input-monthpicker-content .input-monthpicker-suffix .input-monthpicker-button:hover:not(:disabled)>mat-icon{transform:scale(1.08)}.input-monthpicker-icon{width:1.6rem;height:1.6rem;font-size:1.6rem;color:#131313;fill:#131313}::ng-deep .calendar{width:100%;display:flex;flex-direction:column}::ng-deep .calendar .calendar-header{display:flex;flex-direction:row;align-items:center;justify-content:space-between;gap:10px;padding-bottom:10px;border-bottom:1px solid #aeb1b5;margin-bottom:8px}::ng-deep .calendar .calendar-header .calendar-title{display:flex;flex-direction:row;align-items:center;gap:8px;font-size:1.6rem;line-height:1.8rem;font-weight:600;cursor:default;border-radius:8px;padding:8px;white-space:nowrap}::ng-deep .calendar .calendar-header .calendar-title>mat-icon{font-size:2rem;width:20px;height:20px}::ng-deep .calendar .calendar-header .calendar-title.month:hover{cursor:pointer;background-color:#f0f0f0}::ng-deep .calendar .calendar-header .calendar-controls{display:flex;flex-direction:row;align-items:center;gap:8px}::ng-deep .calendar .calendar-header .calendar-controls>button{display:flex;align-items:center;justify-content:center;padding:8px;border-radius:8px;background-color:#e0313e;cursor:pointer;transition:.3s;border:0;outline:0;color:#fff}::ng-deep .calendar .calendar-header .calendar-controls>button:hover{background-color:#cc2d38}::ng-deep .calendar .calendar-header .calendar-controls>button>mat-icon{font-size:1.8rem;width:18px;height:18px}::ng-deep .calendar .table-months{display:-ms-grid;display:grid;-ms-grid-columns:(1fr)[3];grid-template-columns:repeat(3,1fr);gap:4px}::ng-deep .calendar .table-months .month{display:flex;align-items:center;justify-content:center;padding:8px;border-radius:8px;font-size:1.4rem;line-height:1.7rem;color:#555659;background-color:#f0f0f0;transition:background-color .1s;cursor:pointer}::ng-deep .calendar .table-months .month.disabled{color:#bbbdc1;background-color:#e0e1e2}::ng-deep .calendar .table-months .month:not(.disabled).selected,::ng-deep .calendar .table-months .month:not(.disabled):hover{color:#fff;background-color:#e0313e}::ng-deep .calendar .table-months .month:not(.disabled).selected:hover{background-color:#cc2d38}::ng-deep .calendar .table-years{display:-ms-grid;display:grid;-ms-grid-columns:(1fr)[4];grid-template-columns:repeat(4,1fr);gap:4px}::ng-deep .calendar .table-years .year{display:flex;align-items:center;justify-content:center;padding:8px;border-radius:8px;font-size:1.4rem;line-height:1.7rem;color:#555659;background-color:#f0f0f0;transition:background-color .1s;cursor:pointer}::ng-deep .calendar .table-years .year.disabled{color:#bbbdc1;background-color:#e0e1e2}::ng-deep .calendar .table-years .year:not(.disabled).selected,::ng-deep .calendar .table-years .year:not(.disabled):hover{color:#fff;background-color:#e0313e}::ng-deep .calendar .table-years .year:not(.disabled).selected:hover{background-color:#cc2d38}"]
|
11113
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}.input-monthpicker-container{display:flex;flex-direction:column;gap:12px;width:100%}.input-monthpicker-container .input-monthpicker-label{color:#131313;font-size:1.4rem;line-height:100%}.input-monthpicker-container .input-monthpicker-label>span{color:#d14014;font-size:inherit;line-height:inherit}.input-monthpicker-container .input-monthpicker-content{display:flex;flex-direction:row;align-items:center;justify-content:space-between;padding:12px;width:100%;max-height:4rem;border-radius:5px;cursor:text;background-color:#fff;border:1px solid rgba(0,0,0,.12);color:#696969;caret-color:#9a9da2;transition:.2s;position:relative}.input-monthpicker-container .input-monthpicker-content:focus-within,.input-monthpicker-container .input-monthpicker-content:has(.input-monthpicker-input:active),.input-monthpicker-container .input-monthpicker-content:has(.input-monthpicker-input:focus){box-shadow:0 0 0 .2rem #f0f0f0}.input-monthpicker-container .input-monthpicker-content:focus-within,.input-monthpicker-container .input-monthpicker-content:hover{border-color:#bfbfbf!important}.input-monthpicker-container .input-monthpicker-content:has(.input-monthpicker-input:disabled){border-color:#e0e1e2!important;color:#d1d2d4!important;box-shadow:none!important;cursor:not-allowed!important;caret-color:#d1d2d4!important;pointer-events:none!important}.input-monthpicker-container .input-monthpicker-content:has(.input-monthpicker-input:disabled) .input-monthpicker-input,.input-monthpicker-container .input-monthpicker-content:has(.input-monthpicker-input:disabled) .input-monthpicker-suffix .input-monthpicker-button{cursor:not-allowed!important;pointer-events:none!important}.input-monthpicker-container .input-monthpicker-content:has(.input-monthpicker-input:disabled) .input-monthpicker-suffix .input-monthpicker-trigger{border-color:#e0e1e2!important;pointer-events:none!important}.input-monthpicker-container .input-monthpicker-content:has(.input-monthpicker-input:disabled) mat-icon{color:#d1d2d4!important;fill:#d1d2d4!important;cursor:not-allowed!important;pointer-events:none!important}.input-monthpicker-container .input-monthpicker-content .input-monthpicker-input{height:16px;max-width:84%;outline:0;border:none;background-color:transparent;color:inherit;flex:1}.input-monthpicker-container .input-monthpicker-content .input-monthpicker-suffix{display:flex;flex-direction:row;align-items:center;gap:16px}.input-monthpicker-container .input-monthpicker-content .input-monthpicker-suffix .input-monthpicker-button{display:flex;align-items:center;justify-content:center;outline:0;border:none;cursor:pointer;background-color:transparent}.input-monthpicker-container .input-monthpicker-content .input-monthpicker-suffix .input-monthpicker-button:hover:not(:disabled)>mat-icon{transform:scale(1.08)}.input-monthpicker-icon{width:1.6rem;height:1.6rem;font-size:1.6rem;color:#131313;fill:#131313}::ng-deep .calendar{width:100%;display:flex;flex-direction:column}::ng-deep .calendar .calendar-header{display:flex;flex-direction:row;align-items:center;justify-content:space-between;gap:10px;padding-bottom:10px;border-bottom:1px solid #aeb1b5;margin-bottom:8px}::ng-deep .calendar .calendar-header .calendar-title{display:flex;flex-direction:row;align-items:center;gap:8px;font-size:1.6rem;line-height:1.8rem;font-weight:600;cursor:default;border-radius:8px;padding:8px;white-space:nowrap}::ng-deep .calendar .calendar-header .calendar-title>mat-icon{font-size:2rem;width:20px;height:20px}::ng-deep .calendar .calendar-header .calendar-title.month:hover{cursor:pointer;background-color:#f0f0f0}::ng-deep .calendar .calendar-header .calendar-controls{display:flex;flex-direction:row;align-items:center;gap:8px}::ng-deep .calendar .calendar-header .calendar-controls>button{display:flex;align-items:center;justify-content:center;padding:8px;border-radius:8px;background-color:#e0313e;cursor:pointer;transition:.3s;border:0;outline:0;color:#fff}::ng-deep .calendar .calendar-header .calendar-controls>button:hover{background-color:#cc2d38}::ng-deep .calendar .calendar-header .calendar-controls>button>mat-icon{font-size:1.8rem;width:18px;height:18px}::ng-deep .calendar .table-months{display:-ms-grid;display:grid;-ms-grid-columns:(1fr)[3];grid-template-columns:repeat(3,1fr);gap:4px}::ng-deep .calendar .table-months .month{display:flex;align-items:center;justify-content:center;padding:8px;border-radius:8px;font-size:1.4rem;line-height:1.7rem;color:#555659;background-color:#f0f0f0;transition:background-color .1s;cursor:pointer}::ng-deep .calendar .table-months .month.disabled{color:#bbbdc1;background-color:#e0e1e2}::ng-deep .calendar .table-months .month:not(.disabled).selected,::ng-deep .calendar .table-months .month:not(.disabled):hover{color:#fff;background-color:#e0313e}::ng-deep .calendar .table-months .month:not(.disabled).selected:hover{background-color:#cc2d38}::ng-deep .calendar .table-years{display:-ms-grid;display:grid;-ms-grid-columns:(1fr)[4];grid-template-columns:repeat(4,1fr);gap:4px}::ng-deep .calendar .table-years .year{display:flex;align-items:center;justify-content:center;padding:8px;border-radius:8px;font-size:1.4rem;line-height:1.7rem;color:#555659;background-color:#f0f0f0;transition:background-color .1s;cursor:pointer}::ng-deep .calendar .table-years .year.disabled{color:#bbbdc1;background-color:#e0e1e2}::ng-deep .calendar .table-years .year:not(.disabled).selected,::ng-deep .calendar .table-years .year:not(.disabled):hover{color:#fff;background-color:#e0313e}::ng-deep .calendar .table-years .year:not(.disabled).selected:hover{background-color:#cc2d38}"]
|
11017
11114
|
}),
|
11018
11115
|
__metadata("design:paramtypes", [ChangeDetectorRef,
|
11019
11116
|
GIPINgConfig])
|
@@ -11355,7 +11452,7 @@ var GIPIInputSelectEnumComponent = /** @class */ (function () {
|
|
11355
11452
|
'class': 'gipi-input-select-enum',
|
11356
11453
|
},
|
11357
11454
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
11358
|
-
styles: ["::ng-deep .overlay-select{padding:0!important;overflow:hidden!important}::ng-deep .select-virtual-scroll-viewport{width:100%!important;max-height:240px;overflow:auto}::ng-deep .select-virtual-scroll-viewport .cdk-virtual-scroll-content-wrapper{width:100%!important;position:relative!important}::ng-deep .select-virtual-scroll-viewport::-webkit-scrollbar{width:15px}::ng-deep .select-virtual-scroll-viewport::-webkit-scrollbar-thumb{background-color:#e0e1e2;border-radius:10px;border:4px solid transparent;background-clip:padding-box}::ng-deep .select-row{display:flex;align-items:center;padding:0 16px;cursor:pointer;font-size:1.4rem;line-height:100%;gap:12px}::ng-deep .select-row:hover{background:#f5f5f6}::ng-deep .select-row:active{background:#e0e1e2}.select-not-found{display:flex;flex-direction:column;align-items:center;justify-content:center;font-weight:600;font-size:1.2rem;gap:8px;color:#131313;cursor:default;padding:0 0 16px}.select-not-found>mat-icon{width:2.8rem;height:2.8rem;font-size:2.8rem;line-height:2.8rem;color:#131313}.select-loading{height:4.8rem;width:100%;background-color:#fff;display:flex;align-items:center;justify-content:center}.select-loading .dot-pulse{position:relative;left:-9999px;width:5px;height:5px;border-radius:50%;background-color:#e0313e;color:#e0313e;box-shadow:9999px 0 0 -5px;-webkit-animation:1.5s linear .25s infinite dot-pulse;animation:1.5s linear .25s infinite dot-pulse}.select-loading .dot-pulse::after,.select-loading .dot-pulse::before{content:\"\";display:inline-block;position:absolute;top:0;width:5px;height:5px;border-radius:50%;background-color:#e0313e;color:#e0313e}.select-loading .dot-pulse::before{box-shadow:9984px 0 0 -5px;-webkit-animation:1.5s linear infinite dot-pulse-before;animation:1.5s linear infinite dot-pulse-before}.select-loading .dot-pulse::after{box-shadow:10014px 0 0 -5px;-webkit-animation:1.5s linear .5s infinite dot-pulse-after;animation:1.5s linear .5s infinite dot-pulse-after}@-webkit-keyframes dot-pulse-before{0%,100%,60%{box-shadow:9984px 0 0 -5px}30%{box-shadow:9984px 0 0 2px}}@keyframes dot-pulse-before{0%,100%,60%{box-shadow:9984px 0 0 -5px}30%{box-shadow:9984px 0 0 2px}}@-webkit-keyframes dot-pulse{0%,100%,60%{box-shadow:9999px 0 0 -5px}30%{box-shadow:9999px 0 0 2px}}@keyframes dot-pulse{0%,100%,60%{box-shadow:9999px 0 0 -5px}30%{box-shadow:9999px 0 0 2px}}@-webkit-keyframes dot-pulse-after{0%,100%,60%{box-shadow:10014px 0 0 -5px}30%{box-shadow:10014px 0 0 2px}}@keyframes dot-pulse-after{0%,100%,60%{box-shadow:10014px 0 0 -5px}30%{box-shadow:10014px 0 0 2px}}.select-enum-popover-content{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}"]
|
11455
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}::ng-deep .overlay-select{padding:0!important;overflow:hidden!important}::ng-deep .select-virtual-scroll-viewport{width:100%!important;max-height:240px;overflow:auto}::ng-deep .select-virtual-scroll-viewport .cdk-virtual-scroll-content-wrapper{width:100%!important;position:relative!important}::ng-deep .select-virtual-scroll-viewport::-webkit-scrollbar{width:15px}::ng-deep .select-virtual-scroll-viewport::-webkit-scrollbar-thumb{background-color:#e0e1e2;border-radius:10px;border:4px solid transparent;background-clip:padding-box}::ng-deep .select-row{display:flex;align-items:center;padding:0 16px;cursor:pointer;font-size:1.4rem;line-height:100%;gap:12px}::ng-deep .select-row:hover{background:#f5f5f6}::ng-deep .select-row:active{background:#e0e1e2}.select-not-found{display:flex;flex-direction:column;align-items:center;justify-content:center;font-weight:600;font-size:1.2rem;gap:8px;color:#131313;cursor:default;padding:0 0 16px}.select-not-found>mat-icon{width:2.8rem;height:2.8rem;font-size:2.8rem;line-height:2.8rem;color:#131313}.select-loading{height:4.8rem;width:100%;background-color:#fff;display:flex;align-items:center;justify-content:center}.select-loading .dot-pulse{position:relative;left:-9999px;width:5px;height:5px;border-radius:50%;background-color:#e0313e;color:#e0313e;box-shadow:9999px 0 0 -5px;-webkit-animation:1.5s linear .25s infinite dot-pulse;animation:1.5s linear .25s infinite dot-pulse}.select-loading .dot-pulse::after,.select-loading .dot-pulse::before{content:\"\";display:inline-block;position:absolute;top:0;width:5px;height:5px;border-radius:50%;background-color:#e0313e;color:#e0313e}.select-loading .dot-pulse::before{box-shadow:9984px 0 0 -5px;-webkit-animation:1.5s linear infinite dot-pulse-before;animation:1.5s linear infinite dot-pulse-before}.select-loading .dot-pulse::after{box-shadow:10014px 0 0 -5px;-webkit-animation:1.5s linear .5s infinite dot-pulse-after;animation:1.5s linear .5s infinite dot-pulse-after}@-webkit-keyframes dot-pulse-before{0%,100%,60%{box-shadow:9984px 0 0 -5px}30%{box-shadow:9984px 0 0 2px}}@keyframes dot-pulse-before{0%,100%,60%{box-shadow:9984px 0 0 -5px}30%{box-shadow:9984px 0 0 2px}}@-webkit-keyframes dot-pulse{0%,100%,60%{box-shadow:9999px 0 0 -5px}30%{box-shadow:9999px 0 0 2px}}@keyframes dot-pulse{0%,100%,60%{box-shadow:9999px 0 0 -5px}30%{box-shadow:9999px 0 0 2px}}@-webkit-keyframes dot-pulse-after{0%,100%,60%{box-shadow:10014px 0 0 -5px}30%{box-shadow:10014px 0 0 2px}}@keyframes dot-pulse-after{0%,100%,60%{box-shadow:10014px 0 0 -5px}30%{box-shadow:10014px 0 0 2px}}.select-enum-popover-content{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}"]
|
11359
11456
|
}),
|
11360
11457
|
__metadata("design:paramtypes", [ElementRef,
|
11361
11458
|
ChangeDetectorRef])
|
@@ -12735,7 +12832,7 @@ var GIPIInputSelectComponent = /** @class */ (function () {
|
|
12735
12832
|
'class': 'gipi-input-select',
|
12736
12833
|
},
|
12737
12834
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
12738
|
-
styles: ["::ng-deep .overlay-select{padding:0!important;overflow:hidden!important}::ng-deep .select-virtual-scroll-viewport{width:100%!important;max-height:240px;overflow:auto}::ng-deep .select-virtual-scroll-viewport .cdk-virtual-scroll-content-wrapper{width:100%!important;position:relative!important}::ng-deep .select-virtual-scroll-viewport::-webkit-scrollbar{width:15px}::ng-deep .select-virtual-scroll-viewport::-webkit-scrollbar-thumb{background-color:#e0e1e2;border-radius:10px;border:4px solid transparent;background-clip:padding-box}::ng-deep .select-row{display:flex;align-items:center;padding:0 16px;cursor:pointer;font-size:1.3rem;line-height:100%;gap:12px}::ng-deep .select-row:hover{background:#f5f5f6}::ng-deep .select-row:active{background:#e0e1e2}::ng-deep .select-row.disabled{background-color:#d1d2d4!important;color:#9a9da2!important;cursor:not-allowed!important;pointer-events:none!important}::ng-deep .select-row>span{display:-webkit-box;line-clamp:2;box-orient:vertical;-webkit-line-clamp:2;-webkit-box-orient:vertical;text-overflow:ellipsis;overflow:hidden}.select-search{display:flex;align-items:center;font-size:1.4rem;line-height:100%;gap:12px;padding:8px 12px}.select-option-all{border-bottom:1px solid rgba(0,0,0,.12)}.select-not-found{display:flex;flex-direction:column;align-items:center;justify-content:center;font-weight:600;font-size:1.2rem;gap:8px;color:#131313;cursor:default;padding:0 0 16px}.select-not-found>mat-icon{width:2.8rem;height:2.8rem;font-size:2.8rem;line-height:2.8rem;color:#131313}.select-loading{height:4rem;width:100%;background-color:#fff;display:flex;align-items:center;justify-content:center}.select-loading .dot-pulse{position:relative;left:-9999px;width:5px;height:5px;border-radius:50%;background-color:#e0313e;color:#e0313e;box-shadow:9999px 0 0 -5px;-webkit-animation:1.5s linear .25s infinite dot-pulse;animation:1.5s linear .25s infinite dot-pulse}.select-loading .dot-pulse::after,.select-loading .dot-pulse::before{content:\"\";display:inline-block;position:absolute;top:0;width:5px;height:5px;border-radius:50%;background-color:#e0313e;color:#e0313e}.select-loading .dot-pulse::before{box-shadow:9984px 0 0 -5px;-webkit-animation:1.5s linear infinite dot-pulse-before;animation:1.5s linear infinite dot-pulse-before}.select-loading .dot-pulse::after{box-shadow:10014px 0 0 -5px;-webkit-animation:1.5s linear .5s infinite dot-pulse-after;animation:1.5s linear .5s infinite dot-pulse-after}@-webkit-keyframes dot-pulse-before{0%,100%,60%{box-shadow:9984px 0 0 -5px}30%{box-shadow:9984px 0 0 2px}}@keyframes dot-pulse-before{0%,100%,60%{box-shadow:9984px 0 0 -5px}30%{box-shadow:9984px 0 0 2px}}@-webkit-keyframes dot-pulse{0%,100%,60%{box-shadow:9999px 0 0 -5px}30%{box-shadow:9999px 0 0 2px}}@keyframes dot-pulse{0%,100%,60%{box-shadow:9999px 0 0 -5px}30%{box-shadow:9999px 0 0 2px}}@-webkit-keyframes dot-pulse-after{0%,100%,60%{box-shadow:10014px 0 0 -5px}30%{box-shadow:10014px 0 0 2px}}@keyframes dot-pulse-after{0%,100%,60%{box-shadow:10014px 0 0 -5px}30%{box-shadow:10014px 0 0 2px}}.select-footer{display:flex;align-items:center;gap:12px;padding:8px 12px;border-top:1px solid #bfbfbf}::ng-deep .select-mat-option-pseudo-checkbox{margin:0!important}"]
|
12835
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}::ng-deep .overlay-select{padding:0!important;overflow:hidden!important}::ng-deep .select-virtual-scroll-viewport{width:100%!important;max-height:240px;overflow:auto}::ng-deep .select-virtual-scroll-viewport .cdk-virtual-scroll-content-wrapper{width:100%!important;position:relative!important}::ng-deep .select-virtual-scroll-viewport::-webkit-scrollbar{width:15px}::ng-deep .select-virtual-scroll-viewport::-webkit-scrollbar-thumb{background-color:#e0e1e2;border-radius:10px;border:4px solid transparent;background-clip:padding-box}::ng-deep .select-row{display:flex;align-items:center;padding:0 16px;cursor:pointer;font-size:1.3rem;line-height:100%;gap:12px}::ng-deep .select-row:hover{background:#f5f5f6}::ng-deep .select-row:active{background:#e0e1e2}::ng-deep .select-row.disabled{background-color:#d1d2d4!important;color:#9a9da2!important;cursor:not-allowed!important;pointer-events:none!important}::ng-deep .select-row>span{display:-webkit-box;line-clamp:2;box-orient:vertical;-webkit-line-clamp:2;-webkit-box-orient:vertical;text-overflow:ellipsis;overflow:hidden}.select-search{display:flex;align-items:center;font-size:1.4rem;line-height:100%;gap:12px;padding:8px 12px}.select-option-all{border-bottom:1px solid rgba(0,0,0,.12)}.select-not-found{display:flex;flex-direction:column;align-items:center;justify-content:center;font-weight:600;font-size:1.2rem;gap:8px;color:#131313;cursor:default;padding:0 0 16px}.select-not-found>mat-icon{width:2.8rem;height:2.8rem;font-size:2.8rem;line-height:2.8rem;color:#131313}.select-loading{height:4rem;width:100%;background-color:#fff;display:flex;align-items:center;justify-content:center}.select-loading .dot-pulse{position:relative;left:-9999px;width:5px;height:5px;border-radius:50%;background-color:#e0313e;color:#e0313e;box-shadow:9999px 0 0 -5px;-webkit-animation:1.5s linear .25s infinite dot-pulse;animation:1.5s linear .25s infinite dot-pulse}.select-loading .dot-pulse::after,.select-loading .dot-pulse::before{content:\"\";display:inline-block;position:absolute;top:0;width:5px;height:5px;border-radius:50%;background-color:#e0313e;color:#e0313e}.select-loading .dot-pulse::before{box-shadow:9984px 0 0 -5px;-webkit-animation:1.5s linear infinite dot-pulse-before;animation:1.5s linear infinite dot-pulse-before}.select-loading .dot-pulse::after{box-shadow:10014px 0 0 -5px;-webkit-animation:1.5s linear .5s infinite dot-pulse-after;animation:1.5s linear .5s infinite dot-pulse-after}@-webkit-keyframes dot-pulse-before{0%,100%,60%{box-shadow:9984px 0 0 -5px}30%{box-shadow:9984px 0 0 2px}}@keyframes dot-pulse-before{0%,100%,60%{box-shadow:9984px 0 0 -5px}30%{box-shadow:9984px 0 0 2px}}@-webkit-keyframes dot-pulse{0%,100%,60%{box-shadow:9999px 0 0 -5px}30%{box-shadow:9999px 0 0 2px}}@keyframes dot-pulse{0%,100%,60%{box-shadow:9999px 0 0 -5px}30%{box-shadow:9999px 0 0 2px}}@-webkit-keyframes dot-pulse-after{0%,100%,60%{box-shadow:10014px 0 0 -5px}30%{box-shadow:10014px 0 0 2px}}@keyframes dot-pulse-after{0%,100%,60%{box-shadow:10014px 0 0 -5px}30%{box-shadow:10014px 0 0 2px}}.select-footer{display:flex;align-items:center;gap:12px;padding:8px 12px;border-top:1px solid #bfbfbf}::ng-deep .select-mat-option-pseudo-checkbox{margin:0!important}"]
|
12739
12836
|
}),
|
12740
12837
|
__metadata("design:paramtypes", [ChangeDetectorRef])
|
12741
12838
|
], GIPIInputSelectComponent);
|
@@ -13160,7 +13257,7 @@ var GIPIInputSelectListboxComponent = /** @class */ (function () {
|
|
13160
13257
|
'class': 'gipi-input-select-listbox',
|
13161
13258
|
},
|
13162
13259
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
13163
|
-
styles: ["::ng-deep .overlay-select-listbox{padding:0!important}::ng-deep .listbox-radio-group{display:flex;align-items:center;justify-content:center;flex-direction:row;gap:16px}.overlay-select-listbox-content{display:flex;flex-direction:column;align-items:stretch;justify-content:center;padding:12px;width:100%;gap:12px;position:relative}.overlay-select-listbox-content .overlay-select-listbox-backdrop{background:rgba(0,0,0,.32);opacity:1;position:absolute;top:0;bottom:0;left:0;right:0;z-index:1;border-radius:4px;transition:opacity .4s cubic-bezier(.25,.8,.25,1)}.overlay-select-listbox-content .listbox-selected{display:flex;flex-direction:column;gap:16px;background-color:#f5f5f6;border-radius:4px;padding:8px;overflow:hidden;width:100%}.overlay-select-listbox-content .listbox-selected>span{font-size:1.4rem;font-weight:600;line-height:100%;color:#131313}.overlay-select-listbox-content .listbox-selected .list{display:flex;flex-direction:column;gap:4px;width:100%;height:9rem;overflow-x:hidden;overflow-y:auto}.overlay-select-listbox-content .listbox-selected .list::-webkit-scrollbar{width:15px}.overlay-select-listbox-content .listbox-selected .list::-webkit-scrollbar-thumb{background-color:#d1d2d4;border-radius:10px;border:4px solid transparent;background-clip:padding-box}.overlay-select-listbox-content .listbox-selected .list .option{display:flex;flex-direction:row;align-items:center;justify-content:space-between;padding:4px 12px;gap:8px;font-weight:400;font-size:1.4rem;line-height:1.6rem;color:#595959;transition:.1s;border-radius:4px}.overlay-select-listbox-content .listbox-selected .list .option:hover{background-color:#e0e1e2}.overlay-select-listbox-content .listbox-selected .list .option:hover>button{visibility:visible!important}.overlay-select-listbox-content .listbox-selected .list .option>button{display:flex;align-items:center;justify-content:center;outline:0;border:none;padding:2px;border-radius:4px;cursor:pointer;background-color:transparent;visibility:hidden}.overlay-select-listbox-content .listbox-selected .list .option>button>svg{width:1.4rem;height:1.4rem;line-height:1.6rem}.overlay-select-listbox-content .listbox-selected .list .option>button:hover>svg{transform:scale(1.08)}.overlay-select-listbox-content .footer{border-top:1px solid #bfbfbf;padding-top:12px;display:flex;align-items:center;gap:12px}"]
|
13260
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}::ng-deep .overlay-select-listbox{padding:0!important}::ng-deep .listbox-radio-group{display:flex;align-items:center;justify-content:center;flex-direction:row;gap:16px}.overlay-select-listbox-content{display:flex;flex-direction:column;align-items:stretch;justify-content:center;padding:12px;width:100%;gap:12px;position:relative}.overlay-select-listbox-content .overlay-select-listbox-backdrop{background:rgba(0,0,0,.32);opacity:1;position:absolute;top:0;bottom:0;left:0;right:0;z-index:1;border-radius:4px;transition:opacity .4s cubic-bezier(.25,.8,.25,1)}.overlay-select-listbox-content .listbox-selected{display:flex;flex-direction:column;gap:16px;background-color:#f5f5f6;border-radius:4px;padding:8px;overflow:hidden;width:100%}.overlay-select-listbox-content .listbox-selected>span{font-size:1.4rem;font-weight:600;line-height:100%;color:#131313}.overlay-select-listbox-content .listbox-selected .list{display:flex;flex-direction:column;gap:4px;width:100%;height:9rem;overflow-x:hidden;overflow-y:auto}.overlay-select-listbox-content .listbox-selected .list::-webkit-scrollbar{width:15px}.overlay-select-listbox-content .listbox-selected .list::-webkit-scrollbar-thumb{background-color:#d1d2d4;border-radius:10px;border:4px solid transparent;background-clip:padding-box}.overlay-select-listbox-content .listbox-selected .list .option{display:flex;flex-direction:row;align-items:center;justify-content:space-between;padding:4px 12px;gap:8px;font-weight:400;font-size:1.4rem;line-height:1.6rem;color:#595959;transition:.1s;border-radius:4px}.overlay-select-listbox-content .listbox-selected .list .option:hover{background-color:#e0e1e2}.overlay-select-listbox-content .listbox-selected .list .option:hover>button{visibility:visible!important}.overlay-select-listbox-content .listbox-selected .list .option>button{display:flex;align-items:center;justify-content:center;outline:0;border:none;padding:2px;border-radius:4px;cursor:pointer;background-color:transparent;visibility:hidden}.overlay-select-listbox-content .listbox-selected .list .option>button>svg{width:1.4rem;height:1.4rem;line-height:1.6rem}.overlay-select-listbox-content .listbox-selected .list .option>button:hover>svg{transform:scale(1.08)}.overlay-select-listbox-content .footer{border-top:1px solid #bfbfbf;padding-top:12px;display:flex;align-items:center;gap:12px}"]
|
13164
13261
|
}),
|
13165
13262
|
__metadata("design:paramtypes", [ChangeDetectorRef,
|
13166
13263
|
ElementRef,
|
@@ -13531,7 +13628,7 @@ var GIPIInputSearchComponent = /** @class */ (function () {
|
|
13531
13628
|
Component({
|
13532
13629
|
selector: "gipi-input-search",
|
13533
13630
|
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>",
|
13631
|
+
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
13632
|
providers: [
|
13536
13633
|
{
|
13537
13634
|
provide: NG_VALUE_ACCESSOR,
|
@@ -13926,7 +14023,7 @@ var GIPIInputSelectPagedComponent = /** @class */ (function () {
|
|
13926
14023
|
'class': 'gipi-input-select-paged',
|
13927
14024
|
},
|
13928
14025
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
13929
|
-
styles: [".input-select-paged-content{display:flex;flex-direction:column;gap:12px}.input-select-paged-content>label{font-weight:400;font-size:1.4rem;line-height:100%;color:#131313}.input-select-paged-content>label>span{color:#d14014}.field-diasabled{cursor:not-allowed}:host ::ng-deep .mat-form-field-appearance-outline .mat-form-field-suffix{position:absolute!important;right:35px!important;top:34%!important}:host ::ng-deep .mat-form-field-appearance-outline .mat-form-field-suffix .mat-icon{height:1.6rem!important;width:1.6rem!important;font-size:1.6rem!important;color:#131313!important}:host ::ng-deep .mat-select-value{padding-right:30px!important}::ng-deep .virtual-scroll-viewport{width:100%!important;overflow:hidden}::ng-deep .virtual-scroll-viewport .cdk-virtual-scroll-content-wrapper{width:100%!important}.mat-select-additional-selection{opacity:.75;font-size:.75em;margin-left:16px}.mat-select-search-loading{background-color:#fff;display:flex;align-items:center;justify-content:center;height:3em}.dot-pulse{position:relative;left:-9999px;width:5px;height:5px;border-radius:50%;background-color:#f3465c;color:#f3465c;box-shadow:9999px 0 0 -5px;-webkit-animation:1.5s linear .25s infinite dot-pulse;animation:1.5s linear .25s infinite dot-pulse}.dot-pulse::after,.dot-pulse::before{content:\"\";display:inline-block;position:absolute;top:0;width:5px;height:5px;border-radius:50%;background-color:#f3465c;color:#f3465c}.dot-pulse::before{box-shadow:9984px 0 0 -5px;-webkit-animation:1.5s linear infinite dot-pulse-before;animation:1.5s linear infinite dot-pulse-before}.dot-pulse::after{box-shadow:10014px 0 0 -5px;-webkit-animation:1.5s linear .5s infinite dot-pulse-after;animation:1.5s linear .5s infinite dot-pulse-after}@-webkit-keyframes dot-pulse-before{0%,100%,60%{box-shadow:9984px 0 0 -5px}30%{box-shadow:9984px 0 0 2px}}@keyframes dot-pulse-before{0%,100%,60%{box-shadow:9984px 0 0 -5px}30%{box-shadow:9984px 0 0 2px}}@-webkit-keyframes dot-pulse{0%,100%,60%{box-shadow:9999px 0 0 -5px}30%{box-shadow:9999px 0 0 2px}}@keyframes dot-pulse{0%,100%,60%{box-shadow:9999px 0 0 -5px}30%{box-shadow:9999px 0 0 2px}}@-webkit-keyframes dot-pulse-after{0%,100%,60%{box-shadow:10014px 0 0 -5px}30%{box-shadow:10014px 0 0 2px}}@keyframes dot-pulse-after{0%,100%,60%{box-shadow:10014px 0 0 -5px}30%{box-shadow:10014px 0 0 2px}}::ng-deep .mat-select-arrow{border:solid #131313!important;border-width:0 2px 2px 0!important;display:inline-block!important;padding:3px!important;transform:rotate(45deg)!important;margin:0 4px!important}::ng-deep .mat-option-button-add{position:absolute;bottom:0;left:0;width:100%;z-index:100;background-color:#fff;border-radius:4px}"]
|
14026
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}.input-select-paged-content{display:flex;flex-direction:column;gap:12px}.input-select-paged-content>label{font-weight:400;font-size:1.4rem;line-height:100%;color:#131313}.input-select-paged-content>label>span{color:#d14014}.field-diasabled{cursor:not-allowed}:host ::ng-deep .mat-form-field-appearance-outline .mat-form-field-suffix{position:absolute!important;right:35px!important;top:34%!important}:host ::ng-deep .mat-form-field-appearance-outline .mat-form-field-suffix .mat-icon{height:1.6rem!important;width:1.6rem!important;font-size:1.6rem!important;color:#131313!important}:host ::ng-deep .mat-select-value{padding-right:30px!important}::ng-deep .virtual-scroll-viewport{width:100%!important;overflow:hidden}::ng-deep .virtual-scroll-viewport .cdk-virtual-scroll-content-wrapper{width:100%!important}.mat-select-additional-selection{opacity:.75;font-size:.75em;margin-left:16px}.mat-select-search-loading{background-color:#fff;display:flex;align-items:center;justify-content:center;height:3em}.dot-pulse{position:relative;left:-9999px;width:5px;height:5px;border-radius:50%;background-color:#f3465c;color:#f3465c;box-shadow:9999px 0 0 -5px;-webkit-animation:1.5s linear .25s infinite dot-pulse;animation:1.5s linear .25s infinite dot-pulse}.dot-pulse::after,.dot-pulse::before{content:\"\";display:inline-block;position:absolute;top:0;width:5px;height:5px;border-radius:50%;background-color:#f3465c;color:#f3465c}.dot-pulse::before{box-shadow:9984px 0 0 -5px;-webkit-animation:1.5s linear infinite dot-pulse-before;animation:1.5s linear infinite dot-pulse-before}.dot-pulse::after{box-shadow:10014px 0 0 -5px;-webkit-animation:1.5s linear .5s infinite dot-pulse-after;animation:1.5s linear .5s infinite dot-pulse-after}@-webkit-keyframes dot-pulse-before{0%,100%,60%{box-shadow:9984px 0 0 -5px}30%{box-shadow:9984px 0 0 2px}}@keyframes dot-pulse-before{0%,100%,60%{box-shadow:9984px 0 0 -5px}30%{box-shadow:9984px 0 0 2px}}@-webkit-keyframes dot-pulse{0%,100%,60%{box-shadow:9999px 0 0 -5px}30%{box-shadow:9999px 0 0 2px}}@keyframes dot-pulse{0%,100%,60%{box-shadow:9999px 0 0 -5px}30%{box-shadow:9999px 0 0 2px}}@-webkit-keyframes dot-pulse-after{0%,100%,60%{box-shadow:10014px 0 0 -5px}30%{box-shadow:10014px 0 0 2px}}@keyframes dot-pulse-after{0%,100%,60%{box-shadow:10014px 0 0 -5px}30%{box-shadow:10014px 0 0 2px}}::ng-deep .mat-select-arrow{border:solid #131313!important;border-width:0 2px 2px 0!important;display:inline-block!important;padding:3px!important;transform:rotate(45deg)!important;margin:0 4px!important}::ng-deep .mat-option-button-add{position:absolute;bottom:0;left:0;width:100%;z-index:100;background-color:#fff;border-radius:4px}"]
|
13930
14027
|
}),
|
13931
14028
|
__metadata("design:paramtypes", [ChangeDetectorRef])
|
13932
14029
|
], GIPIInputSelectPagedComponent);
|
@@ -14203,7 +14300,7 @@ var GIPIInputSelectRadioComponent = /** @class */ (function () {
|
|
14203
14300
|
'class': 'gipi-input-select-radio',
|
14204
14301
|
},
|
14205
14302
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
14206
|
-
styles: ["::ng-deep .radio-group{display:flex;flex-direction:column;gap:16px}.select-radio-popover-content{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}"]
|
14303
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}::ng-deep .radio-group{display:flex;flex-direction:column;gap:16px}.select-radio-popover-content{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}"]
|
14207
14304
|
}),
|
14208
14305
|
__metadata("design:paramtypes", [ElementRef,
|
14209
14306
|
ChangeDetectorRef])
|
@@ -16319,7 +16416,7 @@ var GIPISelectComponent = /** @class */ (function () {
|
|
16319
16416
|
},
|
16320
16417
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
16321
16418
|
encapsulation: ViewEncapsulation.None,
|
16322
|
-
styles: [".select-content{display:flex;flex-direction:column;gap:12px}.select-content .label{font-weight:400;font-size:1.4rem;line-height:100%;color:#131313}.select-content .label>span{color:#d14014}.select-content .select{background-color:#fff;border:1px solid #e0e1e2;color:#6d6f73;border-radius:16px;padding:12px;gap:8px;display:flex;flex-direction:row;align-items:center;justify-content:space-between;transition:.2s}.select-content .select>span{font-weight:600;font-size:1.4rem;line-height:100%;flex:1}.select-content .select>mat-icon{color:#6d6f73;fill:#6d6f73;max-height:16px}.select-content .select .icon-select{width:16px;height:16px;font-size:1.6rem}.select-overlay-content{list-style:none;max-height:256px;display:flex;flex-direction:column;gap:.8px}.select-overlay-content>li{height:3em;line-height:3em;border-radius:4px;padding:0 16px;text-align:left;cursor:pointer;color:#8c8f93;font-size:1.3rem}.select-overlay-content>li:hover{background-color:#e0e1e2;color:#6d6f73;font-weight:600}.active{background-color:#f3e7e7;color:#e0313e}.disabled{border:1px solid #d1d2d4!important;color:#f5f5f6!important;cursor:not-allowed!important}"]
|
16419
|
+
styles: [":host{display:block;min-width:0;max-width:100%;flex:1}.select-content{display:flex;flex-direction:column;gap:12px}.select-content .label{font-weight:400;font-size:1.4rem;line-height:100%;color:#131313}.select-content .label>span{color:#d14014}.select-content .select{background-color:#fff;border:1px solid #e0e1e2;color:#6d6f73;border-radius:16px;padding:12px;gap:8px;display:flex;flex-direction:row;align-items:center;justify-content:space-between;transition:.2s}.select-content .select>span{font-weight:600;font-size:1.4rem;line-height:100%;flex:1}.select-content .select>mat-icon{color:#6d6f73;fill:#6d6f73;max-height:16px}.select-content .select .icon-select{width:16px;height:16px;font-size:1.6rem}.select-overlay-content{list-style:none;max-height:256px;display:flex;flex-direction:column;gap:.8px}.select-overlay-content>li{height:3em;line-height:3em;border-radius:4px;padding:0 16px;text-align:left;cursor:pointer;color:#8c8f93;font-size:1.3rem}.select-overlay-content>li:hover{background-color:#e0e1e2;color:#6d6f73;font-weight:600}.active{background-color:#f3e7e7;color:#e0313e}.disabled{border:1px solid #d1d2d4!important;color:#f5f5f6!important;cursor:not-allowed!important}"]
|
16323
16420
|
}),
|
16324
16421
|
__metadata("design:paramtypes", [])
|
16325
16422
|
], GIPISelectComponent);
|
@@ -16363,9 +16460,7 @@ var BreakpointObserverService = /** @class */ (function (_super) {
|
|
16363
16460
|
};
|
16364
16461
|
BreakpointObserverService.ngInjectableDef = ɵɵdefineInjectable({ factory: function BreakpointObserverService_Factory() { return new BreakpointObserverService(); }, token: BreakpointObserverService, providedIn: "root" });
|
16365
16462
|
BreakpointObserverService = __decorate([
|
16366
|
-
Injectable({
|
16367
|
-
providedIn: 'root'
|
16368
|
-
}),
|
16463
|
+
Injectable({ providedIn: 'root' }),
|
16369
16464
|
__metadata("design:paramtypes", [])
|
16370
16465
|
], BreakpointObserverService);
|
16371
16466
|
return BreakpointObserverService;
|
@@ -16406,9 +16501,7 @@ var NavService = /** @class */ (function (_super) {
|
|
16406
16501
|
]; };
|
16407
16502
|
NavService.ngInjectableDef = ɵɵdefineInjectable({ factory: function NavService_Factory() { return new NavService(ɵɵinject(Router)); }, token: NavService, providedIn: "root" });
|
16408
16503
|
NavService = __decorate([
|
16409
|
-
Injectable({
|
16410
|
-
providedIn: 'root'
|
16411
|
-
}),
|
16504
|
+
Injectable({ providedIn: 'root' }),
|
16412
16505
|
__metadata("design:paramtypes", [Router])
|
16413
16506
|
], NavService);
|
16414
16507
|
return NavService;
|
@@ -16510,7 +16603,7 @@ var GIPISidenavComponent = /** @class */ (function () {
|
|
16510
16603
|
this._levelOneMenuCollapsableSelected = null;
|
16511
16604
|
this._levelTwoMenuCollapsableSelected = null;
|
16512
16605
|
this._mouseEnter = false;
|
16513
|
-
this.
|
16606
|
+
this._menuItems = [];
|
16514
16607
|
this.labelToggle = 'Retrair menu';
|
16515
16608
|
this.showTagNewIntegration = false;
|
16516
16609
|
this.showIntegration = false;
|
@@ -16520,6 +16613,16 @@ var GIPISidenavComponent = /** @class */ (function () {
|
|
16520
16613
|
this.onClickMenuConfiguration = new EventEmitter();
|
16521
16614
|
}
|
16522
16615
|
GIPISidenavComponent_1 = GIPISidenavComponent;
|
16616
|
+
Object.defineProperty(GIPISidenavComponent.prototype, "menuItems", {
|
16617
|
+
get: function () {
|
16618
|
+
return this._menuItems;
|
16619
|
+
},
|
16620
|
+
set: function (value) {
|
16621
|
+
this._menuItems = value;
|
16622
|
+
},
|
16623
|
+
enumerable: false,
|
16624
|
+
configurable: true
|
16625
|
+
});
|
16523
16626
|
GIPISidenavComponent.prototype.ngOnInit = function () { };
|
16524
16627
|
GIPISidenavComponent.prototype.ngAfterViewInit = function () {
|
16525
16628
|
this._navService.sidenav = this.sidenav;
|
@@ -16554,17 +16657,23 @@ var GIPISidenavComponent = /** @class */ (function () {
|
|
16554
16657
|
enumerable: false,
|
16555
16658
|
configurable: true
|
16556
16659
|
});
|
16557
|
-
Object.defineProperty(GIPISidenavComponent.prototype, "
|
16660
|
+
Object.defineProperty(GIPISidenavComponent.prototype, "levelMenuSelected", {
|
16558
16661
|
get: function () {
|
16662
|
+
var _this = this;
|
16663
|
+
var levelMenuActive = [];
|
16559
16664
|
if (ObjectUtil.isNull(this._levelOneMenuCollapsableSelected) && ObjectUtil.isNull(this._levelTwoMenuCollapsableSelected)) {
|
16560
|
-
|
16665
|
+
levelMenuActive = this.menuItems;
|
16561
16666
|
}
|
16562
16667
|
else if (!ObjectUtil.isNull(this._levelOneMenuCollapsableSelected) && ObjectUtil.isNull(this._levelTwoMenuCollapsableSelected)) {
|
16563
|
-
|
16668
|
+
levelMenuActive = this._levelOneMenuCollapsableSelected.menuList;
|
16564
16669
|
}
|
16565
16670
|
else if (!ObjectUtil.isNull(this._levelOneMenuCollapsableSelected) && !ObjectUtil.isNull(this._levelTwoMenuCollapsableSelected)) {
|
16566
|
-
|
16671
|
+
levelMenuActive = this._levelTwoMenuCollapsableSelected.menuList;
|
16567
16672
|
}
|
16673
|
+
if (!ArrayUtil.isEmpty(levelMenuActive)) {
|
16674
|
+
levelMenuActive.forEach(function (item) { return item.id = _this._toCamelCase(item.route); });
|
16675
|
+
}
|
16676
|
+
return of(levelMenuActive);
|
16568
16677
|
},
|
16569
16678
|
enumerable: false,
|
16570
16679
|
configurable: true
|
@@ -16689,6 +16798,17 @@ var GIPISidenavComponent = /** @class */ (function () {
|
|
16689
16798
|
}
|
16690
16799
|
});
|
16691
16800
|
};
|
16801
|
+
GIPISidenavComponent.prototype._toCamelCase = function (name) {
|
16802
|
+
if (StringUtil.isEmpty(name)) {
|
16803
|
+
return '';
|
16804
|
+
}
|
16805
|
+
var normalized = StringUtil.replaceAccents(name);
|
16806
|
+
return normalized
|
16807
|
+
.split(/[/\-]/) // Divide por '/' e '-'
|
16808
|
+
.filter(Boolean) // Remove elementos vazios da lista
|
16809
|
+
.map(function (word, index) { return (index === 0) ? word.toLowerCase() : (word.charAt(0).toUpperCase() + word.slice(1).toLowerCase()); })
|
16810
|
+
.join('');
|
16811
|
+
};
|
16692
16812
|
var GIPISidenavComponent_1;
|
16693
16813
|
GIPISidenavComponent.ctorParameters = function () { return [
|
16694
16814
|
{ type: NavService },
|
@@ -16701,8 +16821,9 @@ var GIPISidenavComponent = /** @class */ (function () {
|
|
16701
16821
|
], GIPISidenavComponent.prototype, "sidenav", void 0);
|
16702
16822
|
__decorate([
|
16703
16823
|
Input(),
|
16704
|
-
__metadata("design:type", Array)
|
16705
|
-
|
16824
|
+
__metadata("design:type", Array),
|
16825
|
+
__metadata("design:paramtypes", [Array])
|
16826
|
+
], GIPISidenavComponent.prototype, "menuItems", null);
|
16706
16827
|
__decorate([
|
16707
16828
|
Input(),
|
16708
16829
|
__metadata("design:type", String)
|
@@ -16759,7 +16880,7 @@ var GIPISidenavComponent = /** @class */ (function () {
|
|
16759
16880
|
Component({
|
16760
16881
|
selector: "gipi-sidenav",
|
16761
16882
|
exportAs: 'gipiSidenav',
|
16762
|
-
template: "<mat-sidenav #sidenav\n
|
16883
|
+
template: "<mat-sidenav #sidenav\n class=\"sidenav\"\n opened=\"true\"\n [class.large-sidenav]=\"(isOpened | async)\"\n [class.small-sidenav]=\"!(isOpened | async)\"\n [disableClose]=\"(isScreenLarge | async)\"\n [mode]=\"(isScreenLarge | async) ? 'side' : 'over'\">\n\n <div [ngClass]=\"{'sidenav-content-menu': true,\n 'show-bottom': (showConfiguration || showIntegration)}\">\n\n <!-- Bot\u00E3o expandir e retrair o menu -->\n <button [attr.id]=\"'buttonToogleSidenav'\"\n [attr.name]=\"'buttonToogleSidenav'\"\n class=\"toggle-sidenav\"\n (click)=\"toggleSidenav(); _mouseEnter = false;\">\n <mat-icon [@indicatorRotate]=\"(isOpened | async) ? 'opened': 'closed'\">\n chevron_right\n </mat-icon>\n\n {{ ((labelToggle) && (isOpened | async)) ? labelToggle : '' }}\n </button>\n\n <!-- Bot\u00E3o voltar do submenu -->\n <div class=\"sidenav-action-menu sidenav-menu-collapsable\">\n <a [attr.id]=\"'buttonSubmenuBack'\"\n [attr.name]=\"'buttonSubmenuBack'\"\n *ngIf=\"(isOpened | async) && (_levelOneMenuCollapsableSelected || _levelTwoMenuCollapsableSelected)\"\n (click)=\"onMenuCollapsableGoBack()\"\n (mouseenter)=\"!_mouseEnter && onMouseEnter()\"\n (mouseleave)=\"_mouseEnter && onMouseLeave()\">\n <mat-icon>\n arrow_back\n </mat-icon>\n <span>\n {{ (submenuBackButtonName | async) }}\n </span>\n </a>\n </div>\n\n <!-- Se o menu item for do tipo submenu -->\n <mat-nav-list class=\"sidenav-menu-list\"\n (mouseenter)=\"onMouseEnter()\"\n (mouseleave)=\"onMouseLeave()\">\n <div class=\"sidenav-action-menu\"\n *ngFor=\"let menu of (levelMenuSelected | async)\">\n <a [attr.id]=\"menu.id\"\n [attr.name]=\"menu.id\"\n [class.menu-active]=\"isMenuActive(menu)\"\n [routerLink]=\"menu.route\"\n *ngIf=\"menu.type === 'ITEM'\"\n (click)=\"onMenuItemSelected(menu)\">\n <mat-icon *ngIf=\"menu.icon\">\n {{ menu.icon }}\n </mat-icon>\n <mat-icon *ngIf=\"menu.svgIcon\"\n [svgIcon]=\"menu.svgIcon\">\n </mat-icon>\n <span *ngIf=\"(isOpened | async)\">\n {{ getMenuName(menu.name) }}\n </span>\n </a>\n\n <a [attr.id]=\"menu.id\"\n [attr.name]=\"menu.id\"\n [class.menu-active]=\"isMenuCollapsableActive(menu)\"\n *ngIf=\"menu.type === 'COLLAPSABLE'\"\n (click)=\"onMenuCollapsableSelected(menu); onMenuItemSelected(menu, false)\">\n <mat-icon *ngIf=\"menu.icon\">\n {{ menu.icon }}\n </mat-icon>\n <mat-icon *ngIf=\"menu.svgIcon\"\n [svgIcon]=\"menu.svgIcon\">\n </mat-icon>\n <span *ngIf=\"(isOpened | async)\">\n {{ getMenuName(menu.name) }}\n </span>\n <mat-icon *ngIf=\"(isOpened | async)\">\n chevron_right\n </mat-icon>\n </a>\n </div>\n </mat-nav-list>\n </div>\n\n <div class=\"sidenav-action-menu sidenav-bottom-menu\">\n <a [attr.id]=\"'integracoes'\"\n [attr.name]=\"'integracoes'\"\n *ngIf=\"showIntegration\"\n (click)=\"onMenuItemSelected(null); onClickMenuIntegration.emit()\">\n <mat-icon *ngIf=\"iconIntegration\">\n {{ iconIntegration }}\n </mat-icon>\n <mat-icon *ngIf=\"svgIconIntegration\"\n [svgIcon]=\"svgIconIntegration\">\n </mat-icon>\n <span *ngIf=\"(labelIntegration) && (isOpened | async)\">\n {{ labelIntegration }}\n </span>\n <div class=\"tag-new\"\n [class.closed]=\"!(isOpened | async)\"\n *ngIf=\"showTagNewIntegration\">\n Novo\n </div>\n </a>\n\n <a [attr.id]=\"'configuracoes'\"\n [attr.name]=\"'configuracoes'\"\n *ngIf=\"showConfiguration\"\n (click)=\"onMenuItemSelected(null); onClickMenuConfiguration.emit()\">\n <mat-icon *ngIf=\"iconConfiguration\">\n {{ iconConfiguration }}\n </mat-icon>\n <mat-icon *ngIf=\"svgIconConfiguration\"\n [svgIcon]=\"svgIconConfiguration\">\n </mat-icon>\n <span *ngIf=\"(labelConfiguration) && (isOpened | async)\">\n {{ labelConfiguration }}\n </span>\n </a>\n </div>\n</mat-sidenav>",
|
16763
16884
|
encapsulation: ViewEncapsulation.None,
|
16764
16885
|
providers: [
|
16765
16886
|
{
|
@@ -16778,7 +16899,7 @@ var GIPISidenavComponent = /** @class */ (function () {
|
|
16778
16899
|
transition('expanded <=> collapsed', animate('225ms cubic-bezier(0.4,0.0,0.2,1)')),
|
16779
16900
|
])
|
16780
16901
|
],
|
16781
|
-
styles: [".sidenav{padding:.8rem 1.2rem;border-radius:5px;background-color:#fff;position:fixed!important;top:66px!important;bottom:8px!important;border:0!important}.sidenav.small-sidenav{overflow-y:auto;width:76px}.sidenav.small-sidenav .sidenav-bottom-menu,.sidenav.small-sidenav .sidenav-content-menu .sidenav-menu-list .action-sidenav,.sidenav.small-sidenav .sidenav-content-menu .toggle-sidenav{text-align:center!important}.sidenav.large-sidenav{overflow-y:auto;width:248px}.sidenav .sidenav-content-menu{width:100%;background-color:#f5f5f6;border-radius:4px;display:flex;flex-direction:column;align-items:stretch;height:100%}.sidenav .sidenav-content-menu.show-bottom{height:calc(100% - 18px -
|
16902
|
+
styles: [".sidenav{padding:.8rem 1.2rem;border-radius:5px;background-color:#fff;position:fixed!important;top:66px!important;bottom:8px!important;border:0!important}.sidenav.small-sidenav{overflow-y:auto;width:76px}.sidenav.small-sidenav .sidenav-bottom-menu,.sidenav.small-sidenav .sidenav-content-menu .sidenav-menu-list .action-sidenav,.sidenav.small-sidenav .sidenav-content-menu .toggle-sidenav{text-align:center!important}.sidenav.large-sidenav{overflow-y:auto;width:248px}.sidenav .sidenav-content-menu{width:100%;background-color:#f5f5f6;border-radius:4px;display:flex;flex-direction:column;align-items:stretch;height:100%}.sidenav .sidenav-content-menu.show-bottom{height:calc(100% - 18px - 104px)!important}.sidenav .sidenav-content-menu .toggle-sidenav{all:unset;border-radius:4px;border:none;text-align:left;cursor:pointer;background-color:#e0313e;color:#fff;display:flex;align-items:center;gap:8px;padding:10px 16px}.sidenav .sidenav-content-menu .toggle-sidenav>mat-icon{width:2rem;height:2rem;font-size:2rem}.sidenav .sidenav-content-menu .toggle-sidenav:hover{background-color:#cc2d38}.sidenav .sidenav-content-menu .sidenav-menu-list{overflow-y:scroll;-ms-overflow-style:none;scrollbar-width:none;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.sidenav .sidenav-content-menu .sidenav-menu-list::-webkit-scrollbar{display:none}.menu-active{color:#e0313e!important;background-color:#e0e1e2!important}.menu-active>mat-icon,.menu-active>mat-icon svg,.menu-active>mat-icon svg path{color:#e0313e!important;fill:#e0313e!important}.sidenav-action-menu{cursor:pointer;display:flex}.sidenav-action-menu.sidenav-bottom-menu{flex-direction:column;gap:1rem;margin-top:1rem}.sidenav-action-menu a{flex:1;padding:16px;background-color:#f5f5f6;display:flex;align-items:center;gap:8px;cursor:pointer;font-size:1.4rem;font-weight:600;position:relative;overflow:hidden}.sidenav-action-menu a:hover{background-color:#e0e1e2}.sidenav-action-menu a>span{flex:1;line-height:2rem}.sidenav-action-menu a>mat-icon{width:2rem;height:2rem;font-size:2rem;line-height:2rem;color:#595959;fill:#595959}.sidenav-action-menu a>mat-icon svg,.sidenav-action-menu a>mat-icon svg path{color:#595959;fill:#595959}.sidenav-bottom-menu a{border-radius:4px}.sidenav-menu-collapsable a{background-color:#e0e1e2}.sidenav-menu-collapsable a:hover{background-color:#d1d2d4}.mat-list-base{padding-top:0!important}.mat-drawer-inner-container{display:flex;flex-direction:column;align-items:stretch;justify-content:space-between;overflow:hidden!important}.mat-drawer:not(.mat-drawer-side){box-shadow:none!important}.tag-new{display:flex;align-items:center;justify-content:center;background-color:#e0313e;color:#fff;padding:.2rem .6rem;font-size:1rem;line-height:1rem;border-radius:.4rem}.tag-new.closed{position:absolute;top:15px;right:20px;width:52px;z-index:1;transform:translateX(70%) translateY(-85%) rotate(45deg);transform-origin:center;overflow:hidden;font-size:.8rem!important;line-height:.8rem!important}"]
|
16782
16903
|
}),
|
16783
16904
|
__metadata("design:paramtypes", [NavService,
|
16784
16905
|
BreakpointObserverService,
|
@@ -17663,14 +17784,26 @@ var TabModel = /** @class */ (function () {
|
|
17663
17784
|
return TabModel;
|
17664
17785
|
}());
|
17665
17786
|
|
17787
|
+
var nextUniqueId$i = 0;
|
17666
17788
|
var GIPITabComponent = /** @class */ (function () {
|
17667
17789
|
function GIPITabComponent() {
|
17790
|
+
this._name = "gipi-tab-" + nextUniqueId$i++;
|
17791
|
+
this.id = this._name;
|
17792
|
+
this.name = this._name;
|
17668
17793
|
this.active = false;
|
17669
17794
|
this.closeable = false;
|
17670
17795
|
this.disabled = false;
|
17671
17796
|
this.selectionChange = new EventEmitter();
|
17672
17797
|
}
|
17673
17798
|
GIPITabComponent.prototype.ngOnInit = function () { };
|
17799
|
+
__decorate([
|
17800
|
+
Input(),
|
17801
|
+
__metadata("design:type", Object)
|
17802
|
+
], GIPITabComponent.prototype, "id", void 0);
|
17803
|
+
__decorate([
|
17804
|
+
Input(),
|
17805
|
+
__metadata("design:type", String)
|
17806
|
+
], GIPITabComponent.prototype, "name", void 0);
|
17674
17807
|
__decorate([
|
17675
17808
|
Input(),
|
17676
17809
|
__metadata("design:type", Number)
|
@@ -17727,10 +17860,14 @@ var GIPITabComponent = /** @class */ (function () {
|
|
17727
17860
|
return GIPITabComponent;
|
17728
17861
|
}());
|
17729
17862
|
|
17863
|
+
var nextUniqueId$j = 0;
|
17730
17864
|
var GIPITabGroupComponent = /** @class */ (function () {
|
17731
17865
|
function GIPITabGroupComponent(elementRef, _componentFactoryResolver) {
|
17732
17866
|
this.elementRef = elementRef;
|
17733
17867
|
this._componentFactoryResolver = _componentFactoryResolver;
|
17868
|
+
this._name = "gipi-tab-" + nextUniqueId$j++;
|
17869
|
+
this.id = this._name;
|
17870
|
+
this.name = this._name;
|
17734
17871
|
this.dynamicTabs = [];
|
17735
17872
|
}
|
17736
17873
|
GIPITabGroupComponent.prototype.ngOnInit = function () { };
|
@@ -17836,15 +17973,25 @@ var GIPITabGroupComponent = /** @class */ (function () {
|
|
17836
17973
|
ViewChild(GIPIDynamicTabDirective, { static: false }),
|
17837
17974
|
__metadata("design:type", GIPIDynamicTabDirective)
|
17838
17975
|
], GIPITabGroupComponent.prototype, "dynamicTabPlaceholder", void 0);
|
17976
|
+
__decorate([
|
17977
|
+
Input(),
|
17978
|
+
__metadata("design:type", Object)
|
17979
|
+
], GIPITabGroupComponent.prototype, "id", void 0);
|
17980
|
+
__decorate([
|
17981
|
+
Input(),
|
17982
|
+
__metadata("design:type", String)
|
17983
|
+
], GIPITabGroupComponent.prototype, "name", void 0);
|
17839
17984
|
GIPITabGroupComponent = __decorate([
|
17840
17985
|
Component({
|
17841
17986
|
selector: 'gipi-tab-group',
|
17842
17987
|
exportAs: 'gipiTabGroup',
|
17843
|
-
template: "<nav mat-tab-nav-bar>\n <a mat-tab-link\n *ngFor=\"let tab of tabQueryList\"\n
|
17988
|
+
template: "<nav mat-tab-nav-bar>\n <a mat-tab-link\n *ngFor=\"let tab of tabQueryList\"\n [attr.id]=\"tab.id\"\n [attr.name]=\"tab.name\"\n [class.active]=\"tab.active\"\n [disabled]=\"tab.disabled\"\n (click)=\"selectTab(tab)\">\n <mat-icon *ngIf=\"tab.icon || tab.svgIcon\"\n [svgIcon]=\"tab.svgIcon ? tab.svgIcon : ''\">\n {{ !tab.svgIcon && tab.icon ? tab.icon : '' }}\n </mat-icon>\n\n {{ tab.label }}\n </a>\n\n <a mat-tab-link\n *ngFor=\"let tab of dynamicTabs\"\n [attr.id]=\"tab.id\"\n [attr.name]=\"tab.name\"\n [class.active]=\"tab.active\"\n [disabled]=\"tab.disabled\"\n (click)=\"selectTab(tab)\">\n <mat-icon *ngIf=\"tab.icon || tab.svgIcon\"\n [svgIcon]=\"tab.svgIcon ? tab.svgIcon : ''\">\n {{ !tab.svgIcon && tab.icon ? tab.icon : '' }}\n </mat-icon>\n\n {{ tab.label }}\n </a>\n</nav>\n\n<ng-content> </ng-content>\n<ng-template dynamicTab\n #container>\n</ng-template>",
|
17844
17989
|
host: {
|
17845
17990
|
'class': 'gipi-tab-group',
|
17991
|
+
'[attr.id]': 'id',
|
17992
|
+
'[attr.name]': 'name',
|
17846
17993
|
},
|
17847
|
-
styles: [":host{display:block;flex:1;width:100%;box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1)}:host ::ng-deep .mat-tab-nav-bar{background:#f5f5f6;border:none;border-radius:.4rem;padding:.4rem;box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1)}:host ::ng-deep .mat-tab-links{display:flex;gap:1rem}:host ::ng-deep .mat-tab-link{height:auto!important;padding:1rem!important;opacity:1!important;border:none!important;border-radius:4px!important;transition:.2s!important;color:#595959!important;gap:1rem}:host ::ng-deep .mat-tab-link>mat-icon{width:2rem!important;height:2rem!important;font-size:2rem!important;color:#595959!important}:host ::ng-deep .mat-tab-link>mat-icon svg,:host ::ng-deep .mat-tab-link>mat-icon svg g path,:host ::ng-deep .mat-tab-link>mat-icon svg path{color:#595959!important;fill:#595959!important}:host ::ng-deep .mat-tab-link:not(.active):hover{background:#e0e1e2!important}:host ::ng-deep .mat-tab-link.active{background:#e0313e!important;color:#fff!important}:host ::ng-deep .mat-tab-link.active>mat-icon{color:#fff!important}:host ::ng-deep .mat-tab-link.active>mat-icon svg,:host ::ng-deep .mat-tab-link.active>mat-icon svg g path,:host ::ng-deep .mat-tab-link.active>mat-icon svg path{color:#fff!important;fill:#fff!important}:host ::ng-deep .mat-tab-link:disabled,:host ::ng-deep .mat-tab-link:disabled>mat-icon{color:#9a9da2!important;fill:#9a9da2!important}:host ::ng-deep .mat-tab-link:disabled svg,:host ::ng-deep .mat-tab-link:disabled svg g path,:host ::ng-deep .mat-tab-link:disabled svg path,:host ::ng-deep .mat-tab-link:disabled>mat-icon svg,:host ::ng-deep .mat-tab-link:disabled>mat-icon svg g path,:host ::ng-deep .mat-tab-link:disabled>mat-icon svg path{color:#9a9da2!important;fill:#9a9da2!important}:host ::ng-deep .mat-ink-bar{display:none!important}"]
|
17994
|
+
styles: [":host{display:block;flex:1;width:100%;box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1)}:host ::ng-deep .mat-tab-nav-bar{background:#f5f5f6;border:none;border-radius:.4rem;padding:.4rem;box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1)}:host ::ng-deep .mat-tab-links{display:flex;gap:1rem}:host ::ng-deep .mat-tab-link{height:auto!important;padding:1rem!important;opacity:1!important;border:none!important;border-radius:4px!important;transition:.2s!important;color:#595959!important;gap:1rem}:host ::ng-deep .mat-tab-link>mat-icon{width:2rem!important;height:2rem!important;font-size:2rem!important;color:#595959!important}:host ::ng-deep .mat-tab-link>mat-icon svg,:host ::ng-deep .mat-tab-link>mat-icon svg g path,:host ::ng-deep .mat-tab-link>mat-icon svg path{color:#595959!important;fill:#595959!important}:host ::ng-deep .mat-tab-link:not(.active):hover{background:#e0e1e2!important}:host ::ng-deep .mat-tab-link.active{background:#e0313e!important;color:#fff!important}:host ::ng-deep .mat-tab-link.active>mat-icon{color:#fff!important}:host ::ng-deep .mat-tab-link.active>mat-icon svg,:host ::ng-deep .mat-tab-link.active>mat-icon svg g path,:host ::ng-deep .mat-tab-link.active>mat-icon svg path{color:#fff!important;fill:#fff!important}:host ::ng-deep .mat-tab-link:disabled,:host ::ng-deep .mat-tab-link:disabled>mat-icon{color:#9a9da2!important;fill:#9a9da2!important}:host ::ng-deep .mat-tab-link:disabled svg,:host ::ng-deep .mat-tab-link:disabled svg g path,:host ::ng-deep .mat-tab-link:disabled svg path,:host ::ng-deep .mat-tab-link:disabled>mat-icon svg,:host ::ng-deep .mat-tab-link:disabled>mat-icon svg g path,:host ::ng-deep .mat-tab-link:disabled>mat-icon svg path{color:#9a9da2!important;fill:#9a9da2!important}:host ::ng-deep .mat-ink-bar{display:none!important}:host ::ng-deep .mat-tab-header-pagination{box-shadow:none!important}:host ::ng-deep .mat-tab-header-pagination.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#d1d2d4!important;cursor:not-allowed!important}:host ::ng-deep .mat-tab-header-pagination .mat-tab-header-pagination-chevron{border-color:#595959!important}:host ::ng-deep .mat-tab-header-pagination:hover{transform:scale(.98)!important}"]
|
17848
17995
|
}),
|
17849
17996
|
__metadata("design:paramtypes", [ElementRef,
|
17850
17997
|
ComponentFactoryResolver])
|
@@ -21964,7 +22111,7 @@ var MatDatepickerInput = /** @class */ (function (_super) {
|
|
21964
22111
|
* Use of this source code is governed by an MIT-style license that can be
|
21965
22112
|
* found in the LICENSE file at https://angular.io/license
|
21966
22113
|
*/
|
21967
|
-
var nextUniqueId$
|
22114
|
+
var nextUniqueId$k = 0;
|
21968
22115
|
var MatDateRangeInput = /** @class */ (function () {
|
21969
22116
|
function MatDateRangeInput(_changeDetectorRef, _elementRef, control, _dateAdapter, _formField) {
|
21970
22117
|
this._changeDetectorRef = _changeDetectorRef;
|
@@ -21972,7 +22119,7 @@ var MatDateRangeInput = /** @class */ (function () {
|
|
21972
22119
|
this._dateAdapter = _dateAdapter;
|
21973
22120
|
this._formField = _formField;
|
21974
22121
|
/** Unique ID for the input. */
|
21975
|
-
this.id = "mat-date-range-input-" + nextUniqueId$
|
22122
|
+
this.id = "mat-date-range-input-" + nextUniqueId$k++;
|
21976
22123
|
/** Whether the control is focused. */
|
21977
22124
|
this.focused = false;
|
21978
22125
|
/** Name of the form control. */
|
@@ -22826,12 +22973,12 @@ var BrowserUtil = /** @class */ (function () {
|
|
22826
22973
|
}());
|
22827
22974
|
|
22828
22975
|
var moment$1 = moment_;
|
22829
|
-
var nextUniqueId$
|
22976
|
+
var nextUniqueId$l = 0;
|
22830
22977
|
var DateRangePickerComponent = /** @class */ (function () {
|
22831
22978
|
function DateRangePickerComponent(elementRef, _changeDetectorRef) {
|
22832
22979
|
this.elementRef = elementRef;
|
22833
22980
|
this._changeDetectorRef = _changeDetectorRef;
|
22834
|
-
this._name = "gipi-date-range-" + nextUniqueId$
|
22981
|
+
this._name = "gipi-date-range-" + nextUniqueId$l++;
|
22835
22982
|
this.idStartDate = this._name + "-start";
|
22836
22983
|
this.idEndDate = this._name + "-end";
|
22837
22984
|
this.nameStartDate = this._name + "-start";
|
@@ -23185,7 +23332,7 @@ var DateRangePickerComponent = /** @class */ (function () {
|
|
23185
23332
|
host: {
|
23186
23333
|
'class': 'gipi-date-range-picker',
|
23187
23334
|
},
|
23188
|
-
styles: [":host{display:block;width:100
|
23335
|
+
styles: [":host{display:block;width:100%;min-width:0;max-width:100%;flex:1}.input-wrapper{display:flex;flex-direction:column;gap:.8rem;font-size:1.4rem;color:#696969}.input-wrapper .input-label{display:flex;align-items:center;gap:.4rem;color:#131313;line-height:1.6rem}.input-wrapper .input-label>span{font-size:1.6rem;line-height:1.6rem;color:#d14014}.input-wrapper .input-content{display:flex;font-family:inherit;font-size:inherit;color:inherit;height:4rem;background:#fff;border:1px solid rgba(0,0,0,.12);transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.6rem}.input-wrapper .input-content .input-element{padding:.75rem .8rem;border:none;outline:0;background-color:transparent;flex:1;color:inherit;caret-color:#696969;min-width:0}.input-wrapper .input-content:not(.input-element:disabled):has(.input-element:enabled:hover),.input-wrapper .input-content:not(.input-element:disabled):has(.prefix:hover),.input-wrapper .input-content:not(.input-element:disabled):has(.suffix:hover){border-color:#6d6f73}.input-wrapper .input-content:not(.input-element:disabled):has(.input-element:enabled:focus){outline:0;outline-offset:0;box-shadow:0 0 0 .2rem #e0e1e2;border-color:#6d6f73}.input-wrapper .input-content:has(.input-element:disabled){color:#bbbdc1!important;border-color:#e0e1e2!important;background-color:#f5f5f6!important;cursor:not-allowed}.input-wrapper .input-content:has(.input-element:disabled) .suffix>mat-icon{color:#bbbdc1!important}.input-wrapper .input-content .input-element:disabled{cursor:not-allowed}.input-wrapper .input-content .suffix{display:flex;align-items:center;justify-content:center;padding-block:.75rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding-right:.8rem}.input-wrapper .input-content .suffix>mat-icon{width:2rem;height:2rem;font-size:2rem;color:#696969}.input-wrapper .input-help{flex:1;font-size:1rem;font-weight:500;margin-top:-.4rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}::ng-deep .mat-date-range-input{height:4rem!important;padding-left:.8rem!important}::ng-deep .mat-date-range-input-container,::ng-deep .mat-date-range-input-end-wrapper,::ng-deep .mat-date-range-input-inner,::ng-deep .mat-date-range-input-start-wrapper{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;max-width:100%;min-height:100%;height:100%;padding-bottom:3px}::ng-deep .mat-date-range-input-inner{padding:0!important}::-webkit-input-placeholder{color:#bbbdc1}:-moz-placeholder{color:#bbbdc1}::-moz-placeholder{color:#bbbdc1}:-ms-input-placeholder{color:#bbbdc1}"]
|
23189
23336
|
}),
|
23190
23337
|
__metadata("design:paramtypes", [ElementRef,
|
23191
23338
|
ChangeDetectorRef])
|
@@ -23547,12 +23694,12 @@ var PresetRangeComponent = /** @class */ (function () {
|
|
23547
23694
|
}());
|
23548
23695
|
|
23549
23696
|
var moment$3 = moment_;
|
23550
|
-
var nextUniqueId$
|
23697
|
+
var nextUniqueId$m = 0;
|
23551
23698
|
var DatepickerComponent = /** @class */ (function () {
|
23552
23699
|
function DatepickerComponent(elementRef, _changeDetectorRef) {
|
23553
23700
|
this.elementRef = elementRef;
|
23554
23701
|
this._changeDetectorRef = _changeDetectorRef;
|
23555
|
-
this._name = "gipi-date-range-" + nextUniqueId$
|
23702
|
+
this._name = "gipi-date-range-" + nextUniqueId$m++;
|
23556
23703
|
this.id = this._name + "-date";
|
23557
23704
|
this.name = this._name + "-date";
|
23558
23705
|
this.label = '';
|
@@ -23785,7 +23932,7 @@ var DatepickerComponent = /** @class */ (function () {
|
|
23785
23932
|
host: {
|
23786
23933
|
'class': 'gipi-datepicker',
|
23787
23934
|
},
|
23788
|
-
styles: [":host{display:block;width:100
|
23935
|
+
styles: [":host{display:block;width:100%;min-width:0;max-width:100%;flex:1}.input-wrapper{display:flex;flex-direction:column;gap:.8rem;font-size:1.4rem;color:#696969}.input-wrapper .input-label{display:flex;align-items:center;gap:.4rem;color:#131313;line-height:1.6rem}.input-wrapper .input-label>span{font-size:1.6rem;line-height:1.6rem;color:#d14014}.input-wrapper .input-content{display:flex;font-family:inherit;font-size:inherit;color:inherit;height:4rem;background:#fff;border:1px solid rgba(0,0,0,.12);transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.6rem}.input-wrapper .input-content .input-element{padding:.75rem .8rem;border:none;outline:0;background-color:transparent;flex:1;color:inherit;caret-color:#696969;min-width:0}.input-wrapper .input-content:not(.input-element:disabled):has(.input-element:enabled:hover),.input-wrapper .input-content:not(.input-element:disabled):has(.prefix:hover),.input-wrapper .input-content:not(.input-element:disabled):has(.suffix:hover){border-color:#6d6f73}.input-wrapper .input-content:not(.input-element:disabled):has(.input-element:enabled:focus){outline:0;outline-offset:0;box-shadow:0 0 0 .2rem #e0e1e2;border-color:#6d6f73}.input-wrapper .input-content:has(.input-element:disabled){color:#bbbdc1!important;border-color:#e0e1e2!important;background-color:#f5f5f6!important;cursor:not-allowed}.input-wrapper .input-content:has(.input-element:disabled) .suffix>mat-icon{color:#bbbdc1!important}.input-wrapper .input-content .input-element:disabled{cursor:not-allowed}.input-wrapper .input-content .suffix{display:flex;align-items:center;justify-content:center;padding-block:.75rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding-right:.8rem}.input-wrapper .input-content .suffix>mat-icon{width:2rem;height:2rem;font-size:2rem;color:#696969}.input-wrapper .input-help{flex:1;font-size:1rem;font-weight:500;margin-top:-.4rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}::-webkit-input-placeholder{color:#bbbdc1}:-moz-placeholder{color:#bbbdc1}::-moz-placeholder{color:#bbbdc1}:-ms-input-placeholder{color:#bbbdc1}"]
|
23789
23936
|
}),
|
23790
23937
|
__metadata("design:paramtypes", [ElementRef,
|
23791
23938
|
ChangeDetectorRef])
|
@@ -24153,7 +24300,7 @@ var MonthPickerModel = /** @class */ (function () {
|
|
24153
24300
|
};
|
24154
24301
|
return MonthPickerModel;
|
24155
24302
|
}());
|
24156
|
-
var nextUniqueId$
|
24303
|
+
var nextUniqueId$n = 0;
|
24157
24304
|
var MonthYearPickerComponent = /** @class */ (function () {
|
24158
24305
|
function MonthYearPickerComponent(elementRef, _changeDetectorRef, _overlay, _ngZone, _viewContainerRef, scrollStrategy, _dir, _document) {
|
24159
24306
|
this.elementRef = elementRef;
|
@@ -24163,7 +24310,7 @@ var MonthYearPickerComponent = /** @class */ (function () {
|
|
24163
24310
|
this._viewContainerRef = _viewContainerRef;
|
24164
24311
|
this._dir = _dir;
|
24165
24312
|
this._document = _document;
|
24166
|
-
this._name = "gipi-date-range-" + nextUniqueId$
|
24313
|
+
this._name = "gipi-date-range-" + nextUniqueId$n++;
|
24167
24314
|
this._focusedElementBeforeOpen = null;
|
24168
24315
|
this._backdropHarnessClass = this._name + "-backdrop";
|
24169
24316
|
this._stateChanges = new Subject();
|
@@ -24546,7 +24693,7 @@ var MonthYearPickerComponent = /** @class */ (function () {
|
|
24546
24693
|
MonthYearPickerComponent = MonthYearPickerComponent_1 = __decorate([
|
24547
24694
|
Component({
|
24548
24695
|
selector: 'gipi-month-year-picker',
|
24549
|
-
template: "<div class=\"input-wrapper\">\n\n <label *ngIf=\"label\"\n class=\"input-label\"\n [attr.for]=\"id\">\n {{ label }}\n <span *ngIf=\"required\"> * </span>\n </label>\n\n <div class=\"input-content\"\n #inputMonthYearContent\n (click)=\"open()\">\n <input matInput\n class=\"input-element\"\n type=\"text\"\n [attr.id]=\"id\"\n [attr.name]=\"name\"\n [placeholder]=\"placeholder\"\n [disabled]=\"disabled\"\n [required]=\"required\"\n [readOnly]=\"true\"\n [autocomplete]=\"'off'\"\n [autofocus]=\"false\"\n [ngModel]=\"valueLabel\"\n (click)=\"open()\" />\n\n <div class=\"suffix\">\n <button #button\n mat-icon-button\n type=\"button\"\n class=\"btn-month-year-toggle\"\n [attr.aria-label]=\"'Abrir calend\u00E1rio mensal'\"\n [disabled]=\"disabled\"\n (click)=\"open()\">\n <svg class=\"month-year-toggle-default-icon\"\n viewBox=\"0 0 24 24\"\n width=\"24px\"\n height=\"24px\"\n fill=\"currentColor\"\n focusable=\"false\">\n <path\n d=\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z\" />\n </svg>\n </button>\n </div>\n </div>\n\n <small *ngIf=\"help\"\n class=\"input-help\">\n {{ help }}\n </small>\n</div
|
24696
|
+
template: "<div class=\"input-wrapper\">\n\n <label *ngIf=\"label\"\n class=\"input-label\"\n [attr.for]=\"id\">\n {{ label }}\n <span *ngIf=\"required\"> * </span>\n </label>\n\n <div class=\"input-content\"\n #inputMonthYearContent\n (click)=\"open()\">\n <input matInput\n class=\"input-element\"\n type=\"text\"\n [attr.id]=\"id\"\n [attr.name]=\"name\"\n [placeholder]=\"placeholder\"\n [disabled]=\"disabled\"\n [required]=\"required\"\n [readOnly]=\"true\"\n [autocomplete]=\"'off'\"\n [autofocus]=\"false\"\n [ngModel]=\"valueLabel\"\n (click)=\"open()\" />\n\n <div class=\"suffix\">\n <button #button\n mat-icon-button\n type=\"button\"\n class=\"btn-month-year-toggle\"\n [attr.aria-label]=\"'Abrir calend\u00E1rio mensal'\"\n [disabled]=\"disabled\"\n (click)=\"open()\">\n <svg class=\"month-year-toggle-default-icon\"\n viewBox=\"0 0 24 24\"\n width=\"24px\"\n height=\"24px\"\n fill=\"currentColor\"\n focusable=\"false\">\n <path\n d=\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z\" />\n </svg>\n </button>\n </div>\n </div>\n\n <small *ngIf=\"help\"\n class=\"input-help\">\n {{ help }}\n </small>\n</div>",
|
24550
24697
|
providers: [
|
24551
24698
|
{
|
24552
24699
|
provide: NG_VALUE_ACCESSOR,
|
@@ -24558,7 +24705,7 @@ var MonthYearPickerComponent = /** @class */ (function () {
|
|
24558
24705
|
'class': 'gipi-month-year-picker',
|
24559
24706
|
},
|
24560
24707
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
24561
|
-
styles: [":host{display:block;width:100
|
24708
|
+
styles: [":host{display:block;width:100%;min-width:0;max-width:100%;flex:1}.input-wrapper{display:flex;flex-direction:column;gap:.8rem;font-size:1.4rem;color:#696969}.input-wrapper .input-label{display:flex;align-items:center;gap:.4rem;color:#131313;line-height:1.6rem}.input-wrapper .input-label>span{font-size:1.6rem;line-height:1.6rem;color:#d14014}.input-wrapper .input-content{display:flex;font-family:inherit;font-size:inherit;color:inherit;height:4rem;background:#fff;border:1px solid rgba(0,0,0,.12);transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.6rem}.input-wrapper .input-content .input-element{padding:.75rem .8rem;border:none;outline:0;background-color:transparent;flex:1;color:inherit;caret-color:#696969;min-width:0}.input-wrapper .input-content:not(.input-element:disabled):has(.input-element:enabled:hover),.input-wrapper .input-content:not(.input-element:disabled):has(.prefix:hover),.input-wrapper .input-content:not(.input-element:disabled):has(.suffix:hover){border-color:#6d6f73}.input-wrapper .input-content:not(.input-element:disabled):has(.input-element:enabled:focus){outline:0;outline-offset:0;box-shadow:0 0 0 .2rem #e0e1e2;border-color:#6d6f73}.input-wrapper .input-content:has(.input-element:disabled){color:#bbbdc1!important;border-color:#e0e1e2!important;background-color:#f5f5f6!important;cursor:not-allowed}.input-wrapper .input-content:has(.input-element:disabled) .suffix>mat-icon{color:#bbbdc1!important}.input-wrapper .input-content .input-element:disabled{cursor:not-allowed}.input-wrapper .input-content .suffix{display:flex;align-items:center;justify-content:center;padding-block:.75rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding-right:.8rem}.input-wrapper .input-content .suffix>mat-icon{width:2rem;height:2rem;font-size:2rem;color:#696969}.input-wrapper .input-help{flex:1;font-size:1rem;font-weight:500;margin-top:-.4rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.month-year-toggle-default-icon{display:block;width:1.5em;height:1.5em}.mat-icon-button .month-year-toggle-default-icon{margin:auto}.btn-month-year-toggle{width:2rem!important;height:2rem!important;line-height:2rem!important}"]
|
24562
24709
|
}),
|
24563
24710
|
__param(5, Inject(GIPI_MONTH_YEAR_SCROLL_STRATEGY)),
|
24564
24711
|
__param(6, Optional()),
|
@@ -24608,12 +24755,254 @@ var MonthYearPickerModule = /** @class */ (function () {
|
|
24608
24755
|
return MonthYearPickerModule;
|
24609
24756
|
}());
|
24610
24757
|
|
24611
|
-
var nextUniqueId$
|
24758
|
+
var nextUniqueId$o = 0;
|
24759
|
+
var GIPISplitButtonComponent = /** @class */ (function () {
|
24760
|
+
function GIPISplitButtonComponent(elementRef) {
|
24761
|
+
this.elementRef = elementRef;
|
24762
|
+
this._uniqueId = nextUniqueId$o++;
|
24763
|
+
this._name = "gipi-split-button-" + this._uniqueId;
|
24764
|
+
this.idBtnDefault = "gipi-split-button-default-" + this._uniqueId;
|
24765
|
+
this.idBtnMenu = "gipi-split-button-menu-" + this._uniqueId;
|
24766
|
+
this.isSplitButtonPrimary = this._hasHostAttributes('gipi-primary');
|
24767
|
+
this.isSplitButtonSecondary = this._hasHostAttributes('gipi-secondary');
|
24768
|
+
this.isSplitButtonTertiary = this._hasHostAttributes('gipi-tertiary');
|
24769
|
+
this.isSplitButtonAction = this._hasHostAttributes('gipi-action');
|
24770
|
+
this.id = this._name;
|
24771
|
+
this.name = this._name;
|
24772
|
+
this.type = 'button';
|
24773
|
+
this.ariaLabel = '';
|
24774
|
+
this.title = '';
|
24775
|
+
this.label = '';
|
24776
|
+
this.disabled = false;
|
24777
|
+
this.loading = false;
|
24778
|
+
this.tooltip = '';
|
24779
|
+
this.splitOptions = [];
|
24780
|
+
this.onOpenPopover = new EventEmitter();
|
24781
|
+
this.onClosePopover = new EventEmitter();
|
24782
|
+
this.onClick = new EventEmitter(true);
|
24783
|
+
this.onFocus = new EventEmitter(true);
|
24784
|
+
this.onBlur = new EventEmitter(true);
|
24785
|
+
}
|
24786
|
+
GIPISplitButtonComponent_1 = GIPISplitButtonComponent;
|
24787
|
+
GIPISplitButtonComponent.prototype.ngOnInit = function () { };
|
24788
|
+
GIPISplitButtonComponent.prototype.ngOnDestroy = function () {
|
24789
|
+
if (this.popoverTrigger) {
|
24790
|
+
this.popoverTrigger.destroyPopover();
|
24791
|
+
}
|
24792
|
+
};
|
24793
|
+
GIPISplitButtonComponent.prototype.getHostElement = function () {
|
24794
|
+
return this.elementRef.nativeElement;
|
24795
|
+
};
|
24796
|
+
GIPISplitButtonComponent.prototype._hasHostAttributes = function () {
|
24797
|
+
var _this = this;
|
24798
|
+
var attributes = [];
|
24799
|
+
for (var _i = 0; _i < arguments.length; _i++) {
|
24800
|
+
attributes[_i] = arguments[_i];
|
24801
|
+
}
|
24802
|
+
return attributes.some(function (attribute) { return _this.getHostElement().hasAttribute(attribute); });
|
24803
|
+
};
|
24804
|
+
GIPISplitButtonComponent.prototype.btnIdAndName = function () {
|
24805
|
+
var uniqueId = nextUniqueId$o++;
|
24806
|
+
return {
|
24807
|
+
btnDefault: "gipi-split-button-default-" + uniqueId,
|
24808
|
+
btnMenu: "gipi-split-button-menu-" + uniqueId,
|
24809
|
+
};
|
24810
|
+
};
|
24811
|
+
GIPISplitButtonComponent.prototype.getInternalButtonClass = function (isBtnDefault) {
|
24812
|
+
return {
|
24813
|
+
'button-default': isBtnDefault,
|
24814
|
+
'button-menu': !isBtnDefault,
|
24815
|
+
'button-primary': this.isSplitButtonPrimary,
|
24816
|
+
'button-secondary': this.isSplitButtonSecondary,
|
24817
|
+
'button-tertiary': this.isSplitButtonTertiary,
|
24818
|
+
'button-action': this.isSplitButtonAction,
|
24819
|
+
};
|
24820
|
+
};
|
24821
|
+
GIPISplitButtonComponent.prototype.showPopover = function () {
|
24822
|
+
if (this.disabled || this.loading) {
|
24823
|
+
return;
|
24824
|
+
}
|
24825
|
+
else {
|
24826
|
+
this.popoverTrigger.openPopover();
|
24827
|
+
}
|
24828
|
+
};
|
24829
|
+
GIPISplitButtonComponent.prototype.closePopover = function () {
|
24830
|
+
if (this.disabled || this.loading) {
|
24831
|
+
return;
|
24832
|
+
}
|
24833
|
+
else {
|
24834
|
+
this.popoverTrigger.closePopover();
|
24835
|
+
}
|
24836
|
+
};
|
24837
|
+
GIPISplitButtonComponent.prototype.handleClick = function (event) {
|
24838
|
+
if (this.disabled || this.loading) {
|
24839
|
+
return;
|
24840
|
+
}
|
24841
|
+
else {
|
24842
|
+
this.onClick.emit(event);
|
24843
|
+
this.closePopover();
|
24844
|
+
event.stopPropagation();
|
24845
|
+
}
|
24846
|
+
};
|
24847
|
+
GIPISplitButtonComponent.prototype.handleFocus = function (event) {
|
24848
|
+
if (this.disabled || this.loading) {
|
24849
|
+
return;
|
24850
|
+
}
|
24851
|
+
else {
|
24852
|
+
this.onFocus.emit(event);
|
24853
|
+
event.stopPropagation();
|
24854
|
+
}
|
24855
|
+
};
|
24856
|
+
GIPISplitButtonComponent.prototype.handleBlur = function (event) {
|
24857
|
+
if (this.disabled || this.loading) {
|
24858
|
+
return;
|
24859
|
+
}
|
24860
|
+
else {
|
24861
|
+
this.onBlur.emit(event);
|
24862
|
+
event.stopPropagation();
|
24863
|
+
}
|
24864
|
+
};
|
24865
|
+
GIPISplitButtonComponent.prototype.handleClickBtnMenu = function (event) {
|
24866
|
+
if (this.disabled || this.loading) {
|
24867
|
+
return;
|
24868
|
+
}
|
24869
|
+
else {
|
24870
|
+
if (!ObjectUtil.isNull(this.popoverTrigger)) {
|
24871
|
+
this.popoverTrigger.togglePopover();
|
24872
|
+
}
|
24873
|
+
event.stopPropagation();
|
24874
|
+
}
|
24875
|
+
};
|
24876
|
+
GIPISplitButtonComponent.prototype.handleClickBtnSplitOption = function (option) {
|
24877
|
+
if (this.disabled || this.loading || !option || option.disabled || !option.clickFn) {
|
24878
|
+
return;
|
24879
|
+
}
|
24880
|
+
else {
|
24881
|
+
option.clickFn();
|
24882
|
+
this.closePopover();
|
24883
|
+
}
|
24884
|
+
};
|
24885
|
+
GIPISplitButtonComponent.prototype.onResize = function (event) {
|
24886
|
+
if (this.popoverTrigger) {
|
24887
|
+
this.popoverTrigger.closePopover();
|
24888
|
+
event.stopPropagation();
|
24889
|
+
}
|
24890
|
+
};
|
24891
|
+
var GIPISplitButtonComponent_1;
|
24892
|
+
GIPISplitButtonComponent.ctorParameters = function () { return [
|
24893
|
+
{ type: ElementRef }
|
24894
|
+
]; };
|
24895
|
+
__decorate([
|
24896
|
+
ViewChild(GIPIPopoverTrigger, { static: false }),
|
24897
|
+
__metadata("design:type", GIPIPopoverTrigger)
|
24898
|
+
], GIPISplitButtonComponent.prototype, "popoverTrigger", void 0);
|
24899
|
+
__decorate([
|
24900
|
+
Input(),
|
24901
|
+
__metadata("design:type", String)
|
24902
|
+
], GIPISplitButtonComponent.prototype, "id", void 0);
|
24903
|
+
__decorate([
|
24904
|
+
Input(),
|
24905
|
+
__metadata("design:type", String)
|
24906
|
+
], GIPISplitButtonComponent.prototype, "name", void 0);
|
24907
|
+
__decorate([
|
24908
|
+
Input(),
|
24909
|
+
__metadata("design:type", String)
|
24910
|
+
], GIPISplitButtonComponent.prototype, "type", void 0);
|
24911
|
+
__decorate([
|
24912
|
+
Input(),
|
24913
|
+
__metadata("design:type", String)
|
24914
|
+
], GIPISplitButtonComponent.prototype, "ariaLabel", void 0);
|
24915
|
+
__decorate([
|
24916
|
+
Input(),
|
24917
|
+
__metadata("design:type", String)
|
24918
|
+
], GIPISplitButtonComponent.prototype, "title", void 0);
|
24919
|
+
__decorate([
|
24920
|
+
Input(),
|
24921
|
+
__metadata("design:type", String)
|
24922
|
+
], GIPISplitButtonComponent.prototype, "label", void 0);
|
24923
|
+
__decorate([
|
24924
|
+
Input(),
|
24925
|
+
__metadata("design:type", String)
|
24926
|
+
], GIPISplitButtonComponent.prototype, "buttonClass", void 0);
|
24927
|
+
__decorate([
|
24928
|
+
Input(),
|
24929
|
+
__metadata("design:type", Boolean)
|
24930
|
+
], GIPISplitButtonComponent.prototype, "disabled", void 0);
|
24931
|
+
__decorate([
|
24932
|
+
Input(),
|
24933
|
+
__metadata("design:type", Boolean)
|
24934
|
+
], GIPISplitButtonComponent.prototype, "loading", void 0);
|
24935
|
+
__decorate([
|
24936
|
+
Input(),
|
24937
|
+
__metadata("design:type", String)
|
24938
|
+
], GIPISplitButtonComponent.prototype, "tooltip", void 0);
|
24939
|
+
__decorate([
|
24940
|
+
Input('options'),
|
24941
|
+
__metadata("design:type", Array)
|
24942
|
+
], GIPISplitButtonComponent.prototype, "splitOptions", void 0);
|
24943
|
+
__decorate([
|
24944
|
+
Output(),
|
24945
|
+
__metadata("design:type", EventEmitter)
|
24946
|
+
], GIPISplitButtonComponent.prototype, "onOpenPopover", void 0);
|
24947
|
+
__decorate([
|
24948
|
+
Output(),
|
24949
|
+
__metadata("design:type", EventEmitter)
|
24950
|
+
], GIPISplitButtonComponent.prototype, "onClosePopover", void 0);
|
24951
|
+
__decorate([
|
24952
|
+
Output('click'),
|
24953
|
+
__metadata("design:type", EventEmitter)
|
24954
|
+
], GIPISplitButtonComponent.prototype, "onClick", void 0);
|
24955
|
+
__decorate([
|
24956
|
+
Output('focus'),
|
24957
|
+
__metadata("design:type", EventEmitter)
|
24958
|
+
], GIPISplitButtonComponent.prototype, "onFocus", void 0);
|
24959
|
+
__decorate([
|
24960
|
+
Output('blur'),
|
24961
|
+
__metadata("design:type", EventEmitter)
|
24962
|
+
], GIPISplitButtonComponent.prototype, "onBlur", void 0);
|
24963
|
+
__decorate([
|
24964
|
+
HostListener('window:resize', ['$event']),
|
24965
|
+
__metadata("design:type", Function),
|
24966
|
+
__metadata("design:paramtypes", [UIEvent]),
|
24967
|
+
__metadata("design:returntype", void 0)
|
24968
|
+
], GIPISplitButtonComponent.prototype, "onResize", null);
|
24969
|
+
GIPISplitButtonComponent = GIPISplitButtonComponent_1 = __decorate([
|
24970
|
+
Component({
|
24971
|
+
selector: "gipi-split-button[gipi-primary], gipi-split-button[gipi-secondary],\n gipi-split-button[gipi-tertiary], gipi-split-button[gipi-action]",
|
24972
|
+
exportAs: 'gipiSplitButton',
|
24973
|
+
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>",
|
24974
|
+
providers: [
|
24975
|
+
{
|
24976
|
+
provide: NG_VALUE_ACCESSOR,
|
24977
|
+
useExisting: forwardRef(function () { return GIPISplitButtonComponent_1; }),
|
24978
|
+
multi: true
|
24979
|
+
}
|
24980
|
+
],
|
24981
|
+
host: {
|
24982
|
+
'class': 'gipi-split-button',
|
24983
|
+
'[attr.id]': 'id',
|
24984
|
+
'[attr.name]': 'name',
|
24985
|
+
},
|
24986
|
+
animations: [
|
24987
|
+
trigger('indicatorRotate', [
|
24988
|
+
state('closed', style({ transform: 'rotate(0deg)' })),
|
24989
|
+
state('opened', style({ transform: 'rotate(-180deg)' })),
|
24990
|
+
transition('opened <=> closed', animate('225ms cubic-bezier(0.4,0.0,0.2,1)')),
|
24991
|
+
])
|
24992
|
+
],
|
24993
|
+
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}"]
|
24994
|
+
}),
|
24995
|
+
__metadata("design:paramtypes", [ElementRef])
|
24996
|
+
], GIPISplitButtonComponent);
|
24997
|
+
return GIPISplitButtonComponent;
|
24998
|
+
}());
|
24999
|
+
|
25000
|
+
var nextUniqueId$p = 0;
|
24612
25001
|
var GIPITextareaComponent = /** @class */ (function () {
|
24613
25002
|
function GIPITextareaComponent(elementRef, _changeDetectorRef) {
|
24614
25003
|
this.elementRef = elementRef;
|
24615
25004
|
this._changeDetectorRef = _changeDetectorRef;
|
24616
|
-
this._name = "gipi-textarea-" + nextUniqueId$
|
25005
|
+
this._name = "gipi-textarea-" + nextUniqueId$p++;
|
24617
25006
|
this.id = this._name;
|
24618
25007
|
this.name = this._name;
|
24619
25008
|
this.label = '';
|
@@ -24947,7 +25336,7 @@ var GIPITextareaComponent = /** @class */ (function () {
|
|
24947
25336
|
'class': 'gipi-textarea',
|
24948
25337
|
},
|
24949
25338
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
24950
|
-
styles: [":host{display:flex;flex-direction:column;gap:.8rem;font-size:1.4rem;color:#696969}:host .textarea-label{display:flex;align-items:center;gap:.4rem;color:#131313;line-height:1.6rem}:host .textarea-label>span{font-size:1.6rem;line-height:1.6rem;color:#d14014}:host .textarea-element{display:flex;font-family:inherit;font-size:inherit;color:inherit;padding:.75rem .8rem;background:#fff;border:1px solid rgba(0,0,0,.12);transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:6px;caret-color:#696969;max-height:12rem;min-height:6rem;resize:vertical;outline:0;overflow:auto}:host .textarea-element:not(:disabled):hover{border-color:#6d6f73}:host .textarea-element:not(:disabled).ng-dirty.ng-invalid:enabled:hover,:host .textarea-element:not(:disabled):invalid:enabled:hover{border-color:#e07f62}:host .textarea-element:not(:disabled):enabled:focus{outline:0;outline-offset:0;box-shadow:0 0 0 .2rem #e0e1e2;border-color:#6d6f73}:host .textarea-element:not(:disabled).ng-dirty.ng-invalid:enabled,:host .textarea-element:not(:disabled):invalid:enabled{border-color:#d14014}:host .textarea-element:not(:disabled).ng-dirty.ng-invalid:enabled:focus,:host .textarea-element:not(:disabled):invalid:enabled:focus{outline:0;outline-offset:0;box-shadow:0 0 0 .2rem #f1c4b6;border-color:#d14014}:host .textarea-element:disabled{color:#bbbdc1!important;border-color:#e0e1e2!important;background-color:#f5f5f6!important;cursor:not-allowed}:host .textarea-element.resize-none{resize:none}:host .textarea-element.resize-both{resize:both}:host .textarea-element.resize-horizontal{resize:horizontal}:host .textarea-element.resize-vertical{resize:vertical}:host .textarea-help{flex:1;font-size:1rem;font-weight:500;margin-top:-.4rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}::-webkit-input-placeholder{color:#bbbdc1}:-moz-placeholder{color:#bbbdc1}::-moz-placeholder{color:#bbbdc1}:-ms-input-placeholder{color:#bbbdc1}"]
|
25339
|
+
styles: [":host{display:flex;min-width:0;max-width:100%;flex:1;flex-direction:column;gap:.8rem;font-size:1.4rem;color:#696969}:host .textarea-label{display:flex;align-items:center;gap:.4rem;color:#131313;line-height:1.6rem}:host .textarea-label>span{font-size:1.6rem;line-height:1.6rem;color:#d14014}:host .textarea-element{display:flex;font-family:inherit;font-size:inherit;color:inherit;padding:.75rem .8rem;background:#fff;border:1px solid rgba(0,0,0,.12);transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:6px;caret-color:#696969;max-height:12rem;min-height:6rem;resize:vertical;outline:0;overflow:auto}:host .textarea-element:not(:disabled):hover{border-color:#6d6f73}:host .textarea-element:not(:disabled).ng-dirty.ng-invalid:enabled:hover,:host .textarea-element:not(:disabled):invalid:enabled:hover{border-color:#e07f62}:host .textarea-element:not(:disabled):enabled:focus{outline:0;outline-offset:0;box-shadow:0 0 0 .2rem #e0e1e2;border-color:#6d6f73}:host .textarea-element:not(:disabled).ng-dirty.ng-invalid:enabled,:host .textarea-element:not(:disabled):invalid:enabled{border-color:#d14014}:host .textarea-element:not(:disabled).ng-dirty.ng-invalid:enabled:focus,:host .textarea-element:not(:disabled):invalid:enabled:focus{outline:0;outline-offset:0;box-shadow:0 0 0 .2rem #f1c4b6;border-color:#d14014}:host .textarea-element:disabled{color:#bbbdc1!important;border-color:#e0e1e2!important;background-color:#f5f5f6!important;cursor:not-allowed}:host .textarea-element.resize-none{resize:none}:host .textarea-element.resize-both{resize:both}:host .textarea-element.resize-horizontal{resize:horizontal}:host .textarea-element.resize-vertical{resize:vertical}:host .textarea-help{flex:1;font-size:1rem;font-weight:500;margin-top:-.4rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}::-webkit-input-placeholder{color:#bbbdc1}:-moz-placeholder{color:#bbbdc1}::-moz-placeholder{color:#bbbdc1}:-ms-input-placeholder{color:#bbbdc1}"]
|
24951
25340
|
}),
|
24952
25341
|
__metadata("design:paramtypes", [ElementRef,
|
24953
25342
|
ChangeDetectorRef])
|
@@ -25000,6 +25389,7 @@ var GIPIComponents = [
|
|
25000
25389
|
GIPIEmptyStateComponent,
|
25001
25390
|
GIPICardComponent,
|
25002
25391
|
GIPITextareaComponent,
|
25392
|
+
GIPISplitButtonComponent,
|
25003
25393
|
// Tabs
|
25004
25394
|
GIPITabGroupComponent,
|
25005
25395
|
GIPITabComponent,
|
@@ -25599,10 +25989,9 @@ var AuthenticationService = /** @class */ (function (_super) {
|
|
25599
25989
|
]; };
|
25600
25990
|
AuthenticationService.ngInjectableDef = ɵɵdefineInjectable({ factory: function AuthenticationService_Factory() { return new AuthenticationService(ɵɵinject(Router), ɵɵinject(HttpClient)); }, token: AuthenticationService, providedIn: "root" });
|
25601
25991
|
AuthenticationService = __decorate([
|
25602
|
-
Injectable({
|
25603
|
-
|
25604
|
-
|
25605
|
-
__metadata("design:paramtypes", [Router, HttpClient])
|
25992
|
+
Injectable({ providedIn: 'root' }),
|
25993
|
+
__metadata("design:paramtypes", [Router,
|
25994
|
+
HttpClient])
|
25606
25995
|
], AuthenticationService);
|
25607
25996
|
return AuthenticationService;
|
25608
25997
|
}(AbstractService));
|
@@ -25753,13 +26142,14 @@ var ErrorInterceptor = /** @class */ (function () {
|
|
25753
26142
|
|
25754
26143
|
var DialogService = /** @class */ (function (_super) {
|
25755
26144
|
__extends(DialogService, _super);
|
25756
|
-
function DialogService(dialog) {
|
26145
|
+
function DialogService(_breakpointObserver, dialog) {
|
25757
26146
|
var _this = _super.call(this) || this;
|
26147
|
+
_this._breakpointObserver = _breakpointObserver;
|
25758
26148
|
_this.dialog = dialog;
|
25759
26149
|
return _this;
|
25760
26150
|
}
|
25761
26151
|
DialogService.prototype.open = function (dialog) {
|
25762
|
-
|
26152
|
+
var dialogConfig = {
|
25763
26153
|
panelClass: dialog.panelClass,
|
25764
26154
|
disableClose: dialog.disableClose,
|
25765
26155
|
width: dialog.width,
|
@@ -25770,20 +26160,56 @@ var DialogService = /** @class */ (function (_super) {
|
|
25770
26160
|
maxHeight: dialog.maxHeight,
|
25771
26161
|
position: dialog.position,
|
25772
26162
|
data: dialog.data,
|
25773
|
-
autoFocus: dialog.autoFocus,
|
25774
|
-
restoreFocus: dialog.restoreFocus,
|
25775
|
-
closeOnNavigation: dialog.closeOnNavigation,
|
25776
|
-
}
|
26163
|
+
autoFocus: dialog.autoFocus || false,
|
26164
|
+
restoreFocus: dialog.restoreFocus || false,
|
26165
|
+
closeOnNavigation: dialog.closeOnNavigation || true,
|
26166
|
+
};
|
26167
|
+
// this._breakpointObserver.observe(['(max-width: 1366px)', '(min-width: 1366.1px)']).subscribe((result: BreakpointState) => {
|
26168
|
+
// if (result.matches) {
|
26169
|
+
// if (result.breakpoints['(max-width: 1366px)']) {
|
26170
|
+
// dialogConfig = {
|
26171
|
+
// ...dialogConfig,
|
26172
|
+
// width: 'auto',
|
26173
|
+
// maxWidth: '80%',
|
26174
|
+
// height: this._calcHeightByBody(),
|
26175
|
+
// maxHeight: this._calcHeightByBody(),
|
26176
|
+
// position: {
|
26177
|
+
// top: '40px',
|
26178
|
+
// right: '40px',
|
26179
|
+
// }
|
26180
|
+
// };
|
26181
|
+
// } else if (result.breakpoints['(min-width: 1366.1px)']) {
|
26182
|
+
// // Para telas maiores que 1366px, aplica o maxWidth de 1920px e centraliza o modal
|
26183
|
+
// dialogConfig = {
|
26184
|
+
// ...dialogConfig,
|
26185
|
+
// maxWidth: '1920px',
|
26186
|
+
// };
|
26187
|
+
// }
|
26188
|
+
// }
|
26189
|
+
// });
|
26190
|
+
return this.dialog.open(dialog.componentOrTemplateRef, dialogConfig);
|
26191
|
+
};
|
26192
|
+
DialogService.prototype._calcHeightByBody = function () {
|
26193
|
+
// Esse n° 80 é definido pela margem do lado direito, que no caso é 40px. Como tira 40 top e 40 bottom = 80.
|
26194
|
+
var bodyDOMRect = (document && document.body) ? document.body.getBoundingClientRect() : null;
|
26195
|
+
return bodyDOMRect.height - 80 + "px";
|
26196
|
+
};
|
26197
|
+
DialogService.prototype._coerceNumber = function (value) {
|
26198
|
+
if (StringUtil.isEmpty(value)) {
|
26199
|
+
return null;
|
26200
|
+
}
|
26201
|
+
var onlyNumber = value.match(/\d+/);
|
26202
|
+
return onlyNumber ? parseInt(onlyNumber[0], 10) : null;
|
25777
26203
|
};
|
25778
26204
|
DialogService.ctorParameters = function () { return [
|
26205
|
+
{ type: BreakpointObserver },
|
25779
26206
|
{ type: MatDialog }
|
25780
26207
|
]; };
|
25781
|
-
DialogService.ngInjectableDef = ɵɵdefineInjectable({ factory: function DialogService_Factory() { return new DialogService(ɵɵinject(MatDialog$1)); }, token: DialogService, providedIn: "root" });
|
26208
|
+
DialogService.ngInjectableDef = ɵɵdefineInjectable({ factory: function DialogService_Factory() { return new DialogService(ɵɵinject(BreakpointObserver), ɵɵinject(MatDialog$1)); }, token: DialogService, providedIn: "root" });
|
25782
26209
|
DialogService = __decorate([
|
25783
|
-
Injectable({
|
25784
|
-
|
25785
|
-
|
25786
|
-
__metadata("design:paramtypes", [MatDialog])
|
26210
|
+
Injectable({ providedIn: 'root' }),
|
26211
|
+
__metadata("design:paramtypes", [BreakpointObserver,
|
26212
|
+
MatDialog])
|
25787
26213
|
], DialogService);
|
25788
26214
|
return DialogService;
|
25789
26215
|
}(AbstractService));
|
@@ -25832,15 +26258,26 @@ var SvgRegisterService = /** @class */ (function () {
|
|
25832
26258
|
throw new Error(error);
|
25833
26259
|
}
|
25834
26260
|
};
|
26261
|
+
/**
|
26262
|
+
* Registers an icon using an HTML string in the default namespace.
|
26263
|
+
* @param svgName Svg name without the extension
|
26264
|
+
* @param literal SVG source of the icon.
|
26265
|
+
*/
|
26266
|
+
SvgRegisterService.prototype.registerSvgIconLiteral = function (svgName, literal) {
|
26267
|
+
try {
|
26268
|
+
this._matIconRegistry.addSvgIconLiteral(svgName, literal);
|
26269
|
+
}
|
26270
|
+
catch (error) {
|
26271
|
+
throw new Error(error);
|
26272
|
+
}
|
26273
|
+
};
|
25835
26274
|
SvgRegisterService.ctorParameters = function () { return [
|
25836
26275
|
{ type: MatIconRegistry },
|
25837
26276
|
{ type: DomSanitizer }
|
25838
26277
|
]; };
|
25839
26278
|
SvgRegisterService.ngInjectableDef = ɵɵdefineInjectable({ factory: function SvgRegisterService_Factory() { return new SvgRegisterService(ɵɵinject(MatIconRegistry$1), ɵɵinject(DomSanitizer)); }, token: SvgRegisterService, providedIn: "root" });
|
25840
26279
|
SvgRegisterService = __decorate([
|
25841
|
-
Injectable({
|
25842
|
-
providedIn: 'root'
|
25843
|
-
}),
|
26280
|
+
Injectable({ providedIn: 'root' }),
|
25844
26281
|
__metadata("design:paramtypes", [MatIconRegistry,
|
25845
26282
|
DomSanitizer])
|
25846
26283
|
], SvgRegisterService);
|
@@ -26117,9 +26554,7 @@ var GIPIFileService = /** @class */ (function () {
|
|
26117
26554
|
};
|
26118
26555
|
GIPIFileService.ngInjectableDef = ɵɵdefineInjectable({ factory: function GIPIFileService_Factory() { return new GIPIFileService(); }, token: GIPIFileService, providedIn: "root" });
|
26119
26556
|
GIPIFileService = __decorate([
|
26120
|
-
Injectable({
|
26121
|
-
providedIn: 'root'
|
26122
|
-
}),
|
26557
|
+
Injectable({ providedIn: 'root' }),
|
26123
26558
|
__metadata("design:paramtypes", [])
|
26124
26559
|
], GIPIFileService);
|
26125
26560
|
return GIPIFileService;
|
@@ -27140,25 +27575,25 @@ var LocalTimeEnum;
|
|
27140
27575
|
})(LocalTimeEnum || (LocalTimeEnum = {}));
|
27141
27576
|
|
27142
27577
|
var AuthGuard = /** @class */ (function () {
|
27143
|
-
function AuthGuard(
|
27144
|
-
this.
|
27145
|
-
this.
|
27578
|
+
function AuthGuard(_router, _authenticationService) {
|
27579
|
+
this._router = _router;
|
27580
|
+
this._authenticationService = _authenticationService;
|
27146
27581
|
}
|
27147
27582
|
AuthGuard.prototype.canActivate = function (route, state) {
|
27148
27583
|
var _this = this;
|
27149
|
-
if (!ObjectUtil.isNull(this.
|
27150
|
-
return this.
|
27151
|
-
if (_this.
|
27584
|
+
if (!ObjectUtil.isNull(this._authenticationService.tokenValueLocalStorage)) {
|
27585
|
+
return this._authenticationService.token.pipe(map(function (token) {
|
27586
|
+
if (_this._authenticationService.isValidToken(token)) {
|
27152
27587
|
return true;
|
27153
27588
|
}
|
27154
27589
|
else if (!ObjectUtil.isNull(token)) {
|
27155
|
-
_this.
|
27590
|
+
_this._authenticationService.removeToken();
|
27156
27591
|
}
|
27157
|
-
_this.
|
27592
|
+
_this._router.navigate(['oauth/login'], { queryParams: { returnUrl: state.url } });
|
27158
27593
|
return false;
|
27159
27594
|
}));
|
27160
27595
|
}
|
27161
|
-
this.
|
27596
|
+
this._router.navigate(['oauth/login'], { queryParams: { returnUrl: state.url } });
|
27162
27597
|
return of(false);
|
27163
27598
|
};
|
27164
27599
|
AuthGuard.prototype.canActivateChild = function (route, state) {
|
@@ -27170,32 +27605,31 @@ var AuthGuard = /** @class */ (function () {
|
|
27170
27605
|
]; };
|
27171
27606
|
AuthGuard.ngInjectableDef = ɵɵdefineInjectable({ factory: function AuthGuard_Factory() { return new AuthGuard(ɵɵinject(Router), ɵɵinject(AuthenticationService)); }, token: AuthGuard, providedIn: "root" });
|
27172
27607
|
AuthGuard = __decorate([
|
27173
|
-
Injectable({
|
27174
|
-
|
27175
|
-
|
27176
|
-
__metadata("design:paramtypes", [Router, AuthenticationService])
|
27608
|
+
Injectable({ providedIn: 'root' }),
|
27609
|
+
__metadata("design:paramtypes", [Router,
|
27610
|
+
AuthenticationService])
|
27177
27611
|
], AuthGuard);
|
27178
27612
|
return AuthGuard;
|
27179
27613
|
}());
|
27180
27614
|
|
27181
27615
|
var PermissionGuard = /** @class */ (function () {
|
27182
|
-
function PermissionGuard(
|
27183
|
-
this.
|
27184
|
-
this.
|
27616
|
+
function PermissionGuard(_router, _authenticationService) {
|
27617
|
+
this._router = _router;
|
27618
|
+
this._authenticationService = _authenticationService;
|
27185
27619
|
}
|
27186
27620
|
PermissionGuard.prototype.canActivate = function (route, state) {
|
27187
27621
|
var _this = this;
|
27188
|
-
if (!ObjectUtil.isNull(this.
|
27189
|
-
return this.
|
27190
|
-
if (_this.
|
27622
|
+
if (!ObjectUtil.isNull(this._authenticationService.tokenValueLocalStorage)) {
|
27623
|
+
return this._authenticationService.token.pipe(map(function (token) {
|
27624
|
+
if (_this._authenticationService.isValidToken(token)
|
27191
27625
|
&& (!_this.hasPermission(token.user.menuList, state.url) && !_this.hasAuthority(token.user, route.data.authority))) {
|
27192
|
-
_this.
|
27626
|
+
_this._router.navigate(['errors/403']);
|
27193
27627
|
return false;
|
27194
27628
|
}
|
27195
27629
|
return true;
|
27196
27630
|
}));
|
27197
27631
|
}
|
27198
|
-
this.
|
27632
|
+
this._router.navigate(['errors/403']);
|
27199
27633
|
return of(false);
|
27200
27634
|
};
|
27201
27635
|
PermissionGuard.prototype.hasAuthority = function (user, permission) {
|
@@ -27232,31 +27666,30 @@ var PermissionGuard = /** @class */ (function () {
|
|
27232
27666
|
]; };
|
27233
27667
|
PermissionGuard.ngInjectableDef = ɵɵdefineInjectable({ factory: function PermissionGuard_Factory() { return new PermissionGuard(ɵɵinject(Router), ɵɵinject(AuthenticationService)); }, token: PermissionGuard, providedIn: "root" });
|
27234
27668
|
PermissionGuard = __decorate([
|
27235
|
-
Injectable({
|
27236
|
-
|
27237
|
-
|
27238
|
-
__metadata("design:paramtypes", [Router, AuthenticationService])
|
27669
|
+
Injectable({ providedIn: 'root' }),
|
27670
|
+
__metadata("design:paramtypes", [Router,
|
27671
|
+
AuthenticationService])
|
27239
27672
|
], PermissionGuard);
|
27240
27673
|
return PermissionGuard;
|
27241
27674
|
}());
|
27242
27675
|
|
27243
27676
|
var PublicGuard = /** @class */ (function () {
|
27244
|
-
function PublicGuard(
|
27245
|
-
this.
|
27246
|
-
this.
|
27677
|
+
function PublicGuard(_router, _authenticationService) {
|
27678
|
+
this._router = _router;
|
27679
|
+
this._authenticationService = _authenticationService;
|
27247
27680
|
}
|
27248
27681
|
PublicGuard.prototype.canActivate = function (route, state) {
|
27249
27682
|
var _this = this;
|
27250
|
-
if (!ObjectUtil.isNull(this.
|
27251
|
-
return this.
|
27252
|
-
if (_this.
|
27253
|
-
_this.
|
27683
|
+
if (!ObjectUtil.isNull(this._authenticationService.tokenValueLocalStorage)) {
|
27684
|
+
return this._authenticationService.token.pipe(map(function (token) {
|
27685
|
+
if (_this._authenticationService.isValidToken(token)) {
|
27686
|
+
_this._router.navigate(['dashboard']);
|
27254
27687
|
return false;
|
27255
27688
|
}
|
27256
27689
|
return true;
|
27257
27690
|
}));
|
27258
27691
|
}
|
27259
|
-
this.
|
27692
|
+
this._router.navigate(['dashboard']);
|
27260
27693
|
return of(false);
|
27261
27694
|
};
|
27262
27695
|
PublicGuard.prototype.canActivateChild = function (route, state) {
|
@@ -27268,10 +27701,9 @@ var PublicGuard = /** @class */ (function () {
|
|
27268
27701
|
]; };
|
27269
27702
|
PublicGuard.ngInjectableDef = ɵɵdefineInjectable({ factory: function PublicGuard_Factory() { return new PublicGuard(ɵɵinject(Router), ɵɵinject(AuthenticationService)); }, token: PublicGuard, providedIn: "root" });
|
27270
27703
|
PublicGuard = __decorate([
|
27271
|
-
Injectable({
|
27272
|
-
|
27273
|
-
|
27274
|
-
__metadata("design:paramtypes", [Router, AuthenticationService])
|
27704
|
+
Injectable({ providedIn: 'root' }),
|
27705
|
+
__metadata("design:paramtypes", [Router,
|
27706
|
+
AuthenticationService])
|
27275
27707
|
], PublicGuard);
|
27276
27708
|
return PublicGuard;
|
27277
27709
|
}());
|
@@ -27331,6 +27763,7 @@ var MenuDTO = /** @class */ (function (_super) {
|
|
27331
27763
|
function MenuDTO() {
|
27332
27764
|
var _this = _super.call(this) || this;
|
27333
27765
|
_this.menuList = [];
|
27766
|
+
_this.id = '';
|
27334
27767
|
_this.expanded = false;
|
27335
27768
|
return _this;
|
27336
27769
|
}
|
@@ -28099,10 +28532,9 @@ var PopoverService = /** @class */ (function () {
|
|
28099
28532
|
]; };
|
28100
28533
|
PopoverService.ngInjectableDef = ɵɵdefineInjectable({ factory: function PopoverService_Factory() { return new PopoverService(ɵɵinject(Overlay), ɵɵinject(INJECTOR$1)); }, token: PopoverService, providedIn: "root" });
|
28101
28534
|
PopoverService = __decorate([
|
28102
|
-
Injectable({
|
28103
|
-
|
28104
|
-
|
28105
|
-
__metadata("design:paramtypes", [Overlay, Injector])
|
28535
|
+
Injectable({ providedIn: 'root' }),
|
28536
|
+
__metadata("design:paramtypes", [Overlay,
|
28537
|
+
Injector])
|
28106
28538
|
], PopoverService);
|
28107
28539
|
return PopoverService;
|
28108
28540
|
}());
|
@@ -28487,5 +28919,5 @@ var MAT_NATIVE_DATE_FORMATS = {
|
|
28487
28919
|
* Generated bundle index. Do not edit.
|
28488
28920
|
*/
|
28489
28921
|
|
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$
|
28922
|
+
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$l 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
28923
|
//# sourceMappingURL=gipisistemas-ng-core.js.map
|