@gipisistemas/ng-core 1.1.13 → 1.1.15

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. package/bundles/gipisistemas-ng-core.umd.js +140 -11
  2. package/bundles/gipisistemas-ng-core.umd.js.map +1 -1
  3. package/bundles/gipisistemas-ng-core.umd.min.js +9 -9
  4. package/bundles/gipisistemas-ng-core.umd.min.js.map +1 -1
  5. package/esm2015/gipi-components.js +2 -1
  6. package/esm2015/gipisistemas-ng-core.js +8 -7
  7. package/esm2015/shared/components/input/input.component.js +12 -3
  8. package/esm2015/shared/directives/input-trim.directive.js +70 -0
  9. package/esm2015/shared/directives/lower-case.directive.js +1 -1
  10. package/esm2015/shared/directives/phone-mask.directive.js +1 -1
  11. package/esm2015/shared/directives/space-drop.directive.js +1 -1
  12. package/esm2015/shared/directives/upper-case.directive.js +1 -1
  13. package/esm2015/shared/gipi-components/qr-code/qr-code.component.js +46 -0
  14. package/esm2015/shared/shared.module.js +7 -1
  15. package/esm5/gipi-components.js +2 -1
  16. package/esm5/gipisistemas-ng-core.js +8 -7
  17. package/esm5/shared/components/input/input.component.js +16 -3
  18. package/esm5/shared/directives/input-trim.directive.js +71 -0
  19. package/esm5/shared/directives/lower-case.directive.js +1 -1
  20. package/esm5/shared/directives/phone-mask.directive.js +1 -1
  21. package/esm5/shared/directives/space-drop.directive.js +1 -1
  22. package/esm5/shared/directives/upper-case.directive.js +1 -1
  23. package/esm5/shared/gipi-components/qr-code/qr-code.component.js +47 -0
  24. package/esm5/shared/shared.module.js +7 -1
  25. package/fesm2015/gipisistemas-ng-core.js +124 -2
  26. package/fesm2015/gipisistemas-ng-core.js.map +1 -1
  27. package/fesm5/gipisistemas-ng-core.js +130 -2
  28. package/fesm5/gipisistemas-ng-core.js.map +1 -1
  29. package/gipi-components.d.ts +1 -0
  30. package/gipisistemas-ng-core.d.ts +7 -6
  31. package/gipisistemas-ng-core.metadata.json +1 -1
  32. package/package.json +3 -2
  33. package/shared/components/input/input.component.d.ts +3 -1
  34. package/shared/directives/input-trim.directive.d.ts +9 -0
  35. package/shared/gipi-components/qr-code/qr-code.component.d.ts +8 -0
@@ -8,6 +8,7 @@ import { MatMenu, MAT_SNACK_BAR_DATA, MatSnackBar, MatSelect as MatSelect$1, Mat
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';
11
+ import { QRCodeModule } from 'angularx-qrcode';
11
12
  import { NgxCurrencyModule } from 'ngx-currency';
12
13
  import { InfiniteScrollModule } from 'ngx-infinite-scroll';
13
14
  import { NgxMaskModule } from 'ngx-mask';
@@ -1356,6 +1357,7 @@ var InputComponent = /** @class */ (function () {
1356
1357
  this.dropSpecialCharacters = true;
1357
1358
  this.upperCase = false;
1358
1359
  this.lowerCase = false;
1360
+ this.inputTrim = false;
1359
1361
  this.spaceDrop = false;
1360
1362
  this.focus = new EventEmitter();
1361
1363
  this.blur = new EventEmitter();
@@ -1385,6 +1387,14 @@ var InputComponent = /** @class */ (function () {
1385
1387
  enumerable: false,
1386
1388
  configurable: true
1387
1389
  });
1390
+ Object.defineProperty(InputComponent.prototype, "isPassword$", {
1391
+ get: function () {
1392
+ return of(this.inputTrim ||
1393
+ (!StringUtil.isEmpty(this.type) && (this.type.toUpperCase() === 'PASSWORD')));
1394
+ },
1395
+ enumerable: false,
1396
+ configurable: true
1397
+ });
1388
1398
  InputComponent.prototype.ngOnInit = function () {
1389
1399
  var _this = this;
1390
1400
  if (this.phone) {
@@ -1563,6 +1573,10 @@ var InputComponent = /** @class */ (function () {
1563
1573
  Input(),
1564
1574
  __metadata("design:type", Boolean)
1565
1575
  ], InputComponent.prototype, "lowerCase", void 0);
1576
+ __decorate([
1577
+ Input(),
1578
+ __metadata("design:type", Boolean)
1579
+ ], InputComponent.prototype, "inputTrim", void 0);
1566
1580
  __decorate([
1567
1581
  Input(),
1568
1582
  __metadata("design:type", Object)
@@ -1582,7 +1596,7 @@ var InputComponent = /** @class */ (function () {
1582
1596
  InputComponent = InputComponent_1 = __decorate([
1583
1597
  Component({
1584
1598
  selector: 'itss-input',
1585
- 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\n <ng-container *ngIf=\"hidePasswordManager && (type === 'password')\">\n <input style=\"opacity: 0;position: absolute;\">\n <input type=\"password\"\n style=\"opacity: 0;position: absolute;\">\n </ng-container>\n\n <mat-form-field [appearance]=\"appearance\"\n [class]=\"styleClassFormField\">\n <input matInput\n #input\n *ngIf=\"mask || phone\"\n [autocomplete]=\"autocomplete\"\n upperCase\n lowerCase\n spaceDrop\n [enabledUpperCase]=\"upperCase\"\n [enabledLowerCase]=\"lowerCase\"\n [spaceDrop]=\"spaceDrop\"\n [name]=\"name\"\n [readonly]=\"readonly\"\n [placeholder]=\"placeholder\"\n [required]=\"required\"\n [disabled]=\"disabled\"\n [(ngModel)]=\"value\"\n [type]=\"type\"\n [min]=\"min\"\n [max]=\"max\"\n [maxlength]=\"maxlength\"\n [mask]=\"phone ? (_maskPhone$ | async) : mask\"\n [dropSpecialCharacters]=\"dropSpecialCharacters\"\n [patterns]=\"patterns\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\"\n (keydown)=\"onInputPhoneKeydown($event)\"\n (ngModelChange)=\"onInputPhoneChange($event)\">\n\n <input matInput\n #input\n *ngIf=\"!mask && !phone\"\n [name]=\"name\"\n [readonly]=\"readonly\"\n [placeholder]=\"placeholder\"\n [required]=\"required\"\n [disabled]=\"disabled\"\n [(ngModel)]=\"value\"\n [autocomplete]=\"autocomplete\"\n upperCase\n [enabledUpperCase]=\"upperCase\"\n [type]=\"type\"\n [min]=\"min\"\n [max]=\"max\"\n [maxlength]=\"maxlength\"\n [mask]=\"''\"\n spaceDrop\n [spaceDrop]=\"spaceDrop\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\">\n\n <mat-spinner matPrefix\n *ngIf=\"loading\"\n mode=\"indeterminate\"\n diameter=\"17\">\n </mat-spinner>\n\n <div *ngIf=\"suffixRef\"\n matSuffix\n [class]=\"styleClassSuffix\">\n <ng-template [ngTemplateOutlet]=\"suffixRef\"> </ng-template>\n </div>\n </mat-form-field>\n</div>",
1599
+ 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\n <ng-container *ngIf=\"hidePasswordManager && (type === 'password')\">\n <input style=\"opacity: 0;position: absolute;\">\n <input type=\"password\"\n style=\"opacity: 0;position: absolute;\">\n </ng-container>\n\n <mat-form-field [appearance]=\"appearance\"\n [class]=\"styleClassFormField\">\n <input matInput\n #input\n *ngIf=\"mask || phone\"\n [autocomplete]=\"autocomplete\"\n upperCase\n lowerCase\n spaceDrop\n [enabledUpperCase]=\"upperCase\"\n [enabledLowerCase]=\"lowerCase\"\n [spaceDrop]=\"spaceDrop\"\n [inputTrim]=\"(isPassword$ | async)\"\n [name]=\"name\"\n [readonly]=\"readonly\"\n [placeholder]=\"placeholder\"\n [required]=\"required\"\n [disabled]=\"disabled\"\n [(ngModel)]=\"value\"\n [type]=\"type\"\n [min]=\"min\"\n [max]=\"max\"\n [maxlength]=\"maxlength\"\n [mask]=\"phone ? (_maskPhone$ | async) : mask\"\n [dropSpecialCharacters]=\"dropSpecialCharacters\"\n [patterns]=\"patterns\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\"\n (keydown)=\"onInputPhoneKeydown($event)\"\n (ngModelChange)=\"onInputPhoneChange($event)\">\n\n <input matInput\n #input\n *ngIf=\"!mask && !phone\"\n upperCase\n [enabledUpperCase]=\"upperCase\"\n spaceDrop\n [spaceDrop]=\"spaceDrop\"\n [inputTrim]=\"(isPassword$ | async)\"\n [name]=\"name\"\n [readonly]=\"readonly\"\n [placeholder]=\"placeholder\"\n [required]=\"required\"\n [disabled]=\"disabled\"\n [(ngModel)]=\"value\"\n [autocomplete]=\"autocomplete\"\n [type]=\"type\"\n [min]=\"min\"\n [max]=\"max\"\n [maxlength]=\"maxlength\"\n [mask]=\"''\"\n (focus)=\"onFocus($event)\"\n (blur)=\"onBlur($event)\">\n\n <mat-spinner matPrefix\n *ngIf=\"loading\"\n mode=\"indeterminate\"\n diameter=\"17\">\n </mat-spinner>\n\n <div *ngIf=\"suffixRef\"\n matSuffix\n [class]=\"styleClassSuffix\">\n <ng-template [ngTemplateOutlet]=\"suffixRef\"> </ng-template>\n </div>\n </mat-form-field>\n</div>",
1586
1600
  providers: [
1587
1601
  {
1588
1602
  provide: NG_VALUE_ACCESSOR,
@@ -5991,6 +6005,73 @@ var InputSelectInfiniteScrollDirective = /** @class */ (function () {
5991
6005
  return InputSelectInfiniteScrollDirective;
5992
6006
  }());
5993
6007
 
6008
+ var InputTrimDirective = /** @class */ (function () {
6009
+ function InputTrimDirective(ngControl) {
6010
+ this.ngControl = ngControl;
6011
+ this.enabledInputTrim = false;
6012
+ }
6013
+ InputTrimDirective.prototype.keydown = function (event) {
6014
+ if (!this.enabledInputTrim) {
6015
+ return;
6016
+ }
6017
+ // Se a tecla pressionada for espaço e o valor atual for vazio, bloqueia
6018
+ var inputValue = String(event.target.value);
6019
+ if (event.key === ' ' && !inputValue.trim()) {
6020
+ event.preventDefault();
6021
+ }
6022
+ };
6023
+ InputTrimDirective.prototype.onInput = function (event) {
6024
+ if (!this.enabledInputTrim) {
6025
+ return;
6026
+ }
6027
+ var inputValue = String(event.target.value);
6028
+ var trimmedValue = inputValue.replace(/^\s+/, '');
6029
+ this.ngControl.valueAccessor.writeValue(trimmedValue);
6030
+ };
6031
+ InputTrimDirective.prototype.onBlur = function (event) {
6032
+ if (!this.enabledInputTrim) {
6033
+ return;
6034
+ }
6035
+ var inputValue = String(event.target.value);
6036
+ this.ngControl.valueAccessor.writeValue(inputValue.trim());
6037
+ if (this.ngControl.control) {
6038
+ this.ngControl.control.markAsDirty();
6039
+ }
6040
+ };
6041
+ InputTrimDirective.ctorParameters = function () { return [
6042
+ { type: NgControl }
6043
+ ]; };
6044
+ __decorate([
6045
+ Input('inputTrim'),
6046
+ __metadata("design:type", Object)
6047
+ ], InputTrimDirective.prototype, "enabledInputTrim", void 0);
6048
+ __decorate([
6049
+ HostListener('keydown', ['$event']),
6050
+ __metadata("design:type", Function),
6051
+ __metadata("design:paramtypes", [Object]),
6052
+ __metadata("design:returntype", void 0)
6053
+ ], InputTrimDirective.prototype, "keydown", null);
6054
+ __decorate([
6055
+ HostListener('input', ['$event']),
6056
+ __metadata("design:type", Function),
6057
+ __metadata("design:paramtypes", [Object]),
6058
+ __metadata("design:returntype", void 0)
6059
+ ], InputTrimDirective.prototype, "onInput", null);
6060
+ __decorate([
6061
+ HostListener('blur', ['$event']),
6062
+ __metadata("design:type", Function),
6063
+ __metadata("design:paramtypes", [Object]),
6064
+ __metadata("design:returntype", void 0)
6065
+ ], InputTrimDirective.prototype, "onBlur", null);
6066
+ InputTrimDirective = __decorate([
6067
+ Directive({
6068
+ selector: '[inputTrim]',
6069
+ }),
6070
+ __metadata("design:paramtypes", [NgControl])
6071
+ ], InputTrimDirective);
6072
+ return InputTrimDirective;
6073
+ }());
6074
+
5994
6075
  var LowerCaseDirective = /** @class */ (function () {
5995
6076
  function LowerCaseDirective(ngControl) {
5996
6077
  this.ngControl = ngControl;
@@ -15570,6 +15651,50 @@ var GIPIPopoverTarget = /** @class */ (function () {
15570
15651
  return GIPIPopoverTarget;
15571
15652
  }());
15572
15653
 
15654
+ var GIPIQrCodeComponent = /** @class */ (function () {
15655
+ function GIPIQrCodeComponent() {
15656
+ this.qrdata = null;
15657
+ this.allowEmptyString = false;
15658
+ this.level = 'M';
15659
+ this.scale = 1;
15660
+ this.margin = 4;
15661
+ this.width = 300;
15662
+ }
15663
+ __decorate([
15664
+ Input(),
15665
+ __metadata("design:type", String)
15666
+ ], GIPIQrCodeComponent.prototype, "qrdata", void 0);
15667
+ __decorate([
15668
+ Input(),
15669
+ __metadata("design:type", Boolean)
15670
+ ], GIPIQrCodeComponent.prototype, "allowEmptyString", void 0);
15671
+ __decorate([
15672
+ Input(),
15673
+ __metadata("design:type", String)
15674
+ ], GIPIQrCodeComponent.prototype, "level", void 0);
15675
+ __decorate([
15676
+ Input(),
15677
+ __metadata("design:type", Number)
15678
+ ], GIPIQrCodeComponent.prototype, "scale", void 0);
15679
+ __decorate([
15680
+ Input(),
15681
+ __metadata("design:type", Number)
15682
+ ], GIPIQrCodeComponent.prototype, "margin", void 0);
15683
+ __decorate([
15684
+ Input(),
15685
+ __metadata("design:type", Number)
15686
+ ], GIPIQrCodeComponent.prototype, "width", void 0);
15687
+ GIPIQrCodeComponent = __decorate([
15688
+ Component({
15689
+ selector: 'gipi-qr-code',
15690
+ template: "<div class=\"qr-code-image\">\n <qrcode [qrdata]=\"qrdata\"\n [allowEmptyString]=\"allowEmptyString\"\n [cssClass]=\"'center'\"\n [colorDark]=\"'#000000'\"\n [colorLight]=\"'#ffffff'\"\n [elementType]=\"'svg'\"\n [errorCorrectionLevel]=\"level\"\n [margin]=\"margin\"\n [scale]=\"scale\"\n [width]=\"width\">\n </qrcode>\n</div>",
15691
+ changeDetection: ChangeDetectionStrategy.OnPush,
15692
+ styles: [":host{display:block}.qr-code-image{display:flex;flex:1}.center{display:flex;flex:1;justify-content:center}"]
15693
+ })
15694
+ ], GIPIQrCodeComponent);
15695
+ return GIPIQrCodeComponent;
15696
+ }());
15697
+
15573
15698
  var nextUniqueId$f = 0;
15574
15699
  var GIPIRadioGroupComponent = /** @class */ (function () {
15575
15700
  function GIPIRadioGroupComponent(_changeDetectorRef) {
@@ -28988,6 +29113,7 @@ var GIPIComponents = [
28988
29113
  GIPISplitButtonComponent,
28989
29114
  GIPISkeletonComponent,
28990
29115
  GIPIInputPhoneComponent,
29116
+ GIPIQrCodeComponent,
28991
29117
  // Tabs
28992
29118
  GIPITabGroupComponent,
28993
29119
  GIPITabComponent,
@@ -29105,6 +29231,7 @@ var SharedModule = /** @class */ (function () {
29105
29231
  UpperCaseDirective,
29106
29232
  LowerCaseDirective,
29107
29233
  SpaceDropDirective,
29234
+ InputTrimDirective,
29108
29235
  OverlayPanelComponent,
29109
29236
  ItssTemplate,
29110
29237
  SelectMonthPeriodComponent,
@@ -29128,6 +29255,7 @@ var SharedModule = /** @class */ (function () {
29128
29255
  NgxCurrencyModule,
29129
29256
  NgxMaterialTimepickerModule,
29130
29257
  MdePopoverModule,
29258
+ QRCodeModule,
29131
29259
  InfiniteScrollModule,
29132
29260
  MentionModule,
29133
29261
  DatepickerModule,
@@ -32560,5 +32688,5 @@ var MAT_NATIVE_DATE_FORMATS = {
32560
32688
  * Generated bundle index. Do not edit.
32561
32689
  */
32562
32690
 
32563
- export { APP_MESSAGES, AbstractComponent, AbstractCrudComponent, AbstractCrudService, AbstractDTO, AbstractFindComponent, AbstractFindService, AbstractModel, AbstractService, AlertComponent, Archive, ArrayUtil, AuthGuard, AuthInterceptor, AuthenticationService, BaseUser, BreakpointEnum, BreakpointObserverService, BrowserUtil, ButtonComponent, CLOCK_INNER_RADIUS, CLOCK_OUTER_RADIUS, CLOCK_RADIUS, CLOCK_TICK_RADIUS, CalendarMonthYearComponent, CardComponent, ChartDTO, CheckboxComponent, ConfirmationDTO, ConfirmationService, CoreModule, CriteriaOperationEnum, CriteriaSortDirectionEnum, CurrencyUtil, DEFAULT_MESSAGES, DateAdapter, DateRange, DateRangePickerComponent, DateUtil, DatepickerModule, DatetimepickerModule, 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, GIPIDateAndTimePickerComponent, GIPIDatetimeAdapter, GIPIDatetimepickerCalendarBodyComponent, GIPIDatetimepickerCalendarCell, GIPIDatetimepickerCalendarComponent, GIPIDatetimepickerClockComponent, GIPIDatetimepickerComponent, GIPIDatetimepickerContentComponent, GIPIDatetimepickerFilterType, GIPIDatetimepickerInputDirective, GIPIDatetimepickerInputEvent, GIPIDatetimepickerMonthViewComponent, GIPIDatetimepickerToggleComponent, GIPIDatetimepickerYearViewComponent, GIPIDomHandler, GIPIDropdownMenuComponent, GIPIDynamicTabDirective, GIPIEmptyStateComponent, GIPIExpansionPanelComponent, GIPIFileDragAndDropComponent, GIPIFileService, GIPIFooterComponent, GIPIFormFieldComponent, GIPIHelpfulTipComponent, GIPIInfiniteScrollDirective, GIPIInputCheckboxComponent, GIPIInputCurrencyComponent, GIPIInputMonthPickerComponent, GIPIInputPhoneComponent, GIPIInputSearchComponent, GIPIInputSelectComponent, GIPIInputSelectEnumComponent, GIPIInputSelectListboxComponent, GIPIInputSelectPagedComponent, GIPIInputSelectRadioComponent, GIPINativeDatetimeAdapter, GIPINativeDatetimeModule, GIPINotificationComponent, GIPINoveltiesComponent, GIPIOverlayComponent, GIPIOverlayService, GIPIPageEvent, GIPIPageModel, GIPIPaginatePipe, GIPIPaginationControlsDirective, GIPIPaginationService, GIPIPasswordRequerimentsComponent, GIPIPopoverComponent, GIPIPopoverTarget, GIPIPopoverTrigger, GIPIRadioGroupComponent, GIPIRangePageComponent, GIPIRangeSliderComponent, GIPIResizeService, GIPIRowDirective, GIPISelectButtonComponent, GIPISelectComponent, GIPISessionStorageService, GIPISidenavComponent, GIPISidenavContainerComponent, GIPISkeletonComponent, GIPISkeletonDirective, 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_DATETIMEPICKER_VALIDATORS, GIPI_DATETIMEPICKER_VALUE_ACCESSOR, GIPI_DATETIME_FORMATS, GIPI_MONTH_YEAR_SCROLL_STRATEGY, GIPI_MONTH_YEAR_SCROLL_STRATEGY_FACTORY, GIPI_MONTH_YEAR_SCROLL_STRATEGY_FACTORY_PROVIDER, GIPI_NATIVE_DATETIME_FORMATS, 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, NativeDatetimeModule, NavService, NumberUtil, ObjectUtil, OverlayPanelComponent, POINTS_NAME, PageDTO, PasswordUtil, Permission, PermissionGuard, PhoneMaskDirective, PhoneUtil, Platform, PopoverComponent, PopoverRef, PopoverService, PresetRangeComponent, 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$o as nextUniqueId, siderResponsiveMap, transformPopover, yearsPerPage$1 as yearsPerPage, yearsPerRow, ƟCMP, ƟFAC, ƟPROV, ɵ0$5 as ɵ0, ɵ1$1 as ɵ1, 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, slideCalendar as ɵs, GIPIDatetimepickerMultiYearViewComponent as ɵt };
32691
+ export { APP_MESSAGES, AbstractComponent, AbstractCrudComponent, AbstractCrudService, AbstractDTO, AbstractFindComponent, AbstractFindService, AbstractModel, AbstractService, AlertComponent, Archive, ArrayUtil, AuthGuard, AuthInterceptor, AuthenticationService, BaseUser, BreakpointEnum, BreakpointObserverService, BrowserUtil, ButtonComponent, CLOCK_INNER_RADIUS, CLOCK_OUTER_RADIUS, CLOCK_RADIUS, CLOCK_TICK_RADIUS, CalendarMonthYearComponent, CardComponent, ChartDTO, CheckboxComponent, ConfirmationDTO, ConfirmationService, CoreModule, CriteriaOperationEnum, CriteriaSortDirectionEnum, CurrencyUtil, DEFAULT_MESSAGES, DateAdapter, DateRange, DateRangePickerComponent, DateUtil, DatepickerModule, DatetimepickerModule, 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, GIPIDateAndTimePickerComponent, GIPIDatetimeAdapter, GIPIDatetimepickerCalendarBodyComponent, GIPIDatetimepickerCalendarCell, GIPIDatetimepickerCalendarComponent, GIPIDatetimepickerClockComponent, GIPIDatetimepickerComponent, GIPIDatetimepickerContentComponent, GIPIDatetimepickerFilterType, GIPIDatetimepickerInputDirective, GIPIDatetimepickerInputEvent, GIPIDatetimepickerMonthViewComponent, GIPIDatetimepickerToggleComponent, GIPIDatetimepickerYearViewComponent, GIPIDomHandler, GIPIDropdownMenuComponent, GIPIDynamicTabDirective, GIPIEmptyStateComponent, GIPIExpansionPanelComponent, GIPIFileDragAndDropComponent, GIPIFileService, GIPIFooterComponent, GIPIFormFieldComponent, GIPIHelpfulTipComponent, GIPIInfiniteScrollDirective, GIPIInputCheckboxComponent, GIPIInputCurrencyComponent, GIPIInputMonthPickerComponent, GIPIInputPhoneComponent, GIPIInputSearchComponent, GIPIInputSelectComponent, GIPIInputSelectEnumComponent, GIPIInputSelectListboxComponent, GIPIInputSelectPagedComponent, GIPIInputSelectRadioComponent, GIPINativeDatetimeAdapter, GIPINativeDatetimeModule, GIPINotificationComponent, GIPINoveltiesComponent, GIPIOverlayComponent, GIPIOverlayService, GIPIPageEvent, GIPIPageModel, GIPIPaginatePipe, GIPIPaginationControlsDirective, GIPIPaginationService, GIPIPasswordRequerimentsComponent, GIPIPopoverComponent, GIPIPopoverTarget, GIPIPopoverTrigger, GIPIQrCodeComponent, GIPIRadioGroupComponent, GIPIRangePageComponent, GIPIRangeSliderComponent, GIPIResizeService, GIPIRowDirective, GIPISelectButtonComponent, GIPISelectComponent, GIPISessionStorageService, GIPISidenavComponent, GIPISidenavContainerComponent, GIPISkeletonComponent, GIPISkeletonDirective, 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_DATETIMEPICKER_VALIDATORS, GIPI_DATETIMEPICKER_VALUE_ACCESSOR, GIPI_DATETIME_FORMATS, GIPI_MONTH_YEAR_SCROLL_STRATEGY, GIPI_MONTH_YEAR_SCROLL_STRATEGY_FACTORY, GIPI_MONTH_YEAR_SCROLL_STRATEGY_FACTORY_PROVIDER, GIPI_NATIVE_DATETIME_FORMATS, 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, NativeDatetimeModule, NavService, NumberUtil, ObjectUtil, OverlayPanelComponent, POINTS_NAME, PageDTO, PasswordUtil, Permission, PermissionGuard, PhoneMaskDirective, PhoneUtil, Platform, PopoverComponent, PopoverRef, PopoverService, PresetRangeComponent, 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$o as nextUniqueId, siderResponsiveMap, transformPopover, yearsPerPage$1 as yearsPerPage, yearsPerRow, ƟCMP, ƟFAC, ƟPROV, ɵ0$5 as ɵ0, ɵ1$1 as ɵ1, 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, InputTrimDirective as ɵn, InputSelectInfiniteScrollDirective as ɵo, ITSS_SELECT_SEARCH_DEFAULT_OPTIONS as ɵp, MaterialModule as ɵr, DatepickerComponent as ɵs, slideCalendar as ɵt, GIPIDatetimepickerMultiYearViewComponent as ɵu };
32564
32692
  //# sourceMappingURL=gipisistemas-ng-core.js.map