@seniorsistemas/angular-components 17.24.2 → 17.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/seniorsistemas-angular-components.umd.js +185 -30
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/components/custom-fields/index.d.ts +3 -3
- package/components/dynamic-form/components/fields/button-field/button-field.component.d.ts +2 -0
- package/components/dynamic-form/components/structure/section/section.component.d.ts +1 -0
- package/components/dynamic-form/configurations/fields/button-field.d.ts +4 -0
- package/components/dynamic-form/configurations/grid/grid.d.ts +5 -3
- package/components/dynamic-form/services/IAssist/iassist.service.d.ts +3 -3
- package/components/ia-insight/components/ia-insight-card/ia-insight-card.component.d.ts +3 -3
- package/components/index.d.ts +2 -1
- package/components/toast/index.d.ts +3 -0
- package/components/toast/toast.component.d.ts +12 -0
- package/components/toast/toast.module.d.ts +2 -0
- package/components/toast/toast.service.d.ts +12 -0
- package/components/toast/types/toast.d.ts +16 -0
- package/esm2015/components/button/button.component.js +2 -2
- package/esm2015/components/button/button.module.js +4 -4
- package/esm2015/components/custom-fields/index.js +4 -4
- package/esm2015/components/dynamic-form/components/fields/button-field/button-field.component.js +12 -2
- package/esm2015/components/dynamic-form/components/structure/section/section.component.js +7 -2
- package/esm2015/components/dynamic-form/configurations/fields/button-field.js +4 -2
- package/esm2015/components/dynamic-form/configurations/grid/grid.js +5 -1
- package/esm2015/components/dynamic-form/services/IAssist/iassist.service.js +8 -8
- package/esm2015/components/ia-insight/components/ia-insight-card/ia-insight-card.component.js +7 -7
- package/esm2015/components/index.js +3 -2
- package/esm2015/components/toast/index.js +4 -0
- package/esm2015/components/toast/toast.component.js +51 -0
- package/esm2015/components/toast/toast.module.js +14 -0
- package/esm2015/components/toast/toast.service.js +68 -0
- package/esm2015/components/toast/types/toast.js +1 -0
- package/esm2015/seniorsistemas-angular-components.js +2 -1
- package/esm5/components/button/button.component.js +2 -2
- package/esm5/components/button/button.module.js +4 -4
- package/esm5/components/custom-fields/index.js +4 -4
- package/esm5/components/dynamic-form/components/fields/button-field/button-field.component.js +12 -2
- package/esm5/components/dynamic-form/components/structure/section/section.component.js +11 -2
- package/esm5/components/dynamic-form/configurations/fields/button-field.js +4 -2
- package/esm5/components/dynamic-form/configurations/grid/grid.js +5 -1
- package/esm5/components/dynamic-form/services/IAssist/iassist.service.js +8 -8
- package/esm5/components/ia-insight/components/ia-insight-card/ia-insight-card.component.js +7 -7
- package/esm5/components/index.js +3 -2
- package/esm5/components/toast/index.js +4 -0
- package/esm5/components/toast/toast.component.js +54 -0
- package/esm5/components/toast/toast.module.js +17 -0
- package/esm5/components/toast/toast.service.js +70 -0
- package/esm5/components/toast/types/toast.js +1 -0
- package/esm5/seniorsistemas-angular-components.js +2 -1
- package/fesm2015/seniorsistemas-angular-components.js +159 -20
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +171 -20
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.d.ts +1 -0
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { __decorate, __values, __assign, __extends, __spread, __awaiter, __generator, __param, __rest, __read } from 'tslib';
|
|
2
|
-
import { EventEmitter, Input, Output, Component, ContentChildren, ViewChild, HostListener, forwardRef, NgModule, ɵɵdefineInjectable, Injectable, ElementRef, ApplicationRef, ComponentFactoryResolver, Injector, Renderer2, Directive, KeyValueDiffers, HostBinding, ChangeDetectorRef, TemplateRef, ViewChildren, Pipe, ɵɵinject, InjectionToken, Inject, PLATFORM_ID, ViewContainerRef, ViewEncapsulation, ContentChild, Optional } from '@angular/core';
|
|
2
|
+
import { EventEmitter, Input, Output, Component, ContentChildren, ViewChild, HostListener, forwardRef, NgModule, ɵɵdefineInjectable, Injectable, ElementRef, ApplicationRef, ComponentFactoryResolver, Injector, Renderer2, Directive, KeyValueDiffers, HostBinding, ChangeDetectorRef, TemplateRef, ViewChildren, Pipe, ɵɵinject, InjectionToken, Inject, PLATFORM_ID, ViewContainerRef, ViewEncapsulation, INJECTOR, ContentChild, Optional } from '@angular/core';
|
|
3
3
|
import { trigger, transition, style as style$7, animate, state, group, query, animateChild } from '@angular/animations';
|
|
4
4
|
import { Subject, of, from, ReplaySubject, throwError, fromEvent, forkJoin, pipe } from 'rxjs';
|
|
5
5
|
import { takeUntil, tap, map, switchMap, catchError, first, filter, take, delay, debounceTime, repeat, finalize } from 'rxjs/operators';
|
|
@@ -14,7 +14,6 @@ import { AlignmentOptions, CurrencyMaskDirective, applyMask } from '@seniorsiste
|
|
|
14
14
|
import { BreadcrumbModule as BreadcrumbModule$1 } from 'primeng/breadcrumb';
|
|
15
15
|
import { DomHandler } from 'primeng/dom';
|
|
16
16
|
import { TieredMenu, TieredMenuModule as TieredMenuModule$1 } from 'primeng/tieredmenu';
|
|
17
|
-
import { TooltipModule as TooltipModule$1 } from 'primeng/tooltip';
|
|
18
17
|
import { Calendar, CalendarModule } from 'primeng/calendar';
|
|
19
18
|
import { TranslateModule, TranslateService } from '@ngx-translate/core';
|
|
20
19
|
import BigNumber, { BigNumber as BigNumber$1 } from 'bignumber.js';
|
|
@@ -47,11 +46,12 @@ import { MultiSelectModule } from 'primeng/multiselect';
|
|
|
47
46
|
import { PanelModule as PanelModule$1 } from 'primeng/panel';
|
|
48
47
|
import { RadioButtonModule } from 'primeng/radiobutton';
|
|
49
48
|
import { SliderModule as SliderModule$1 } from 'primeng/slider';
|
|
50
|
-
import { MessageService, ConfirmationService } from 'primeng/api';
|
|
51
49
|
import { ProgressBarModule as ProgressBarModule$1 } from 'primeng/progressbar';
|
|
50
|
+
import { TooltipModule as TooltipModule$1 } from 'primeng/tooltip';
|
|
52
51
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
53
52
|
import { Clipboard } from '@angular/cdk/clipboard';
|
|
54
53
|
import { EditorModule } from 'primeng/editor';
|
|
54
|
+
import { ConfirmationService } from 'primeng/api';
|
|
55
55
|
import { ConfirmDialogModule } from 'primeng/confirmdialog';
|
|
56
56
|
import Cropper from 'cropperjs';
|
|
57
57
|
import marked from 'marked';
|
|
@@ -1511,7 +1511,7 @@ var ButtonComponent = /** @class */ (function () {
|
|
|
1511
1511
|
ButtonComponent = ButtonComponent_1 = __decorate([
|
|
1512
1512
|
Component({
|
|
1513
1513
|
selector: "s-button",
|
|
1514
|
-
template: "<!-- Remover na pr\u00F3xima major. -->\n<p-tieredMenu\n [id]=\"id + '-menu'\"\n [popup]=\"true\"\n appendTo=\"body\"\n [baseZIndex]=\"baseZIndex\">\n</p-tieredMenu>\n\n<button\n [id]=\"id\"\n [type]=\"type\"\n [class]=\"styleClass\"\n [ngClass]=\"{\n 's-button-auxiliary': auxiliary,\n 's-button-with-icon': iconClass,\n 's-button-with-text': label,\n 's-button-empty': !iconClass && !label,\n 's-button-size-default': size === 'default',\n 's-button-size-small': size === 'small',\n 's-button-priority-default': priority === 'default',\n 's-button-priority-primary': priority === 'primary',\n 's-button-priority-secondary': priority === 'secondary',\n 's-button-priority-link': priority === 'link',\n 's-button-priority-danger': priority === 'danger',\n 's-button-multiple': (caret && (model && model.length)) || rightIconClass,\n 's-button-active': isOpen(),\n 's-button--slide': validateSlideButton(),\n 's-button--rotate-animation': isRotateAnimation()\n }\"\n sTieredMenu\n [items]=\"menuOptions\"\n [disabled]=\"disabled\"\n [
|
|
1514
|
+
template: "<!-- Remover na pr\u00F3xima major. -->\n<p-tieredMenu\n [id]=\"id + '-menu'\"\n [popup]=\"true\"\n appendTo=\"body\"\n [baseZIndex]=\"baseZIndex\">\n</p-tieredMenu>\n\n<button\n [id]=\"id\"\n [type]=\"type\"\n [class]=\"styleClass\"\n [ngClass]=\"{\n 's-button-auxiliary': auxiliary,\n 's-button-with-icon': iconClass,\n 's-button-with-text': label,\n 's-button-empty': !iconClass && !label,\n 's-button-size-default': size === 'default',\n 's-button-size-small': size === 'small',\n 's-button-priority-default': priority === 'default',\n 's-button-priority-primary': priority === 'primary',\n 's-button-priority-secondary': priority === 'secondary',\n 's-button-priority-link': priority === 'link',\n 's-button-priority-danger': priority === 'danger',\n 's-button-multiple': (caret && (model && model.length)) || rightIconClass,\n 's-button-active': isOpen(),\n 's-button--slide': validateSlideButton(),\n 's-button--rotate-animation': isRotateAnimation()\n }\"\n sTieredMenu\n [items]=\"menuOptions\"\n [disabled]=\"disabled\"\n [sTooltip]=\"tooltip\"\n [tooltipPosition]=\"tooltipPosition\"\n [showDelay]=\"500\"\n (click)=\"onClick.emit($event)\"\n (mouseenter)=\"updateTooltipZIndex()\">\n <div *ngIf=\"badge\" class=\"badge\">\n <s-badge\n [color]=\"badge.color\"\n [text]=\"badge.text\"\n [iconClass]=\"badge.iconClass\">\n </s-badge>\n </div>\n <span \n *ngIf=\"iconClass\" \n [class]=\"iconClass\" \n [ngClass]=\"{ \n 's-button-icon': true,\n 's-button-icon-margin-right': !label && model && model.length\n }\"\n [ngStyle]=\"{ color: iconColor }\"\n aria-hidden=\"true\">\n </span>\n <span \n *ngIf=\"label\" \n class=\"s-button-text\"\n [ngClass]=\"{\n 's-button-icon-margin-right': !!rightIconClass || (model && model.length),\n 's-button-icon-margin-left': !!iconClass\n }\">\n {{ label }}\n </span>\n <ng-content></ng-content>\n <span \n *ngIf=\"rightIconClass\" \n [class]=\"rightIconClass\" \n [ngClass]=\"{ 's-button-right-icon': true }\"\n [ngStyle]=\"{ color: iconColor }\"\n aria-hidden=\"true\">\n </span>\n <span\n *ngIf=\"caret && (model && model.length) || (menuOptions && menuOptions.length)\" \n class=\"fa fa-fw fa-caret-down\"\n aria-hidden=\"true\">\n </span>\n</button>\n",
|
|
1515
1515
|
styles: [":host{display:inline-block}button{-ms-flex-align:center;align-items:center;border:1px solid;border-radius:4px;cursor:pointer;display:-ms-inline-flexbox;display:inline-flex;font-family:\"Open Sans\",sans-serif;font-size:14px;height:35px;-ms-flex-pack:center;justify-content:center;max-width:100%;min-width:40px;outline:0;overflow:visible;padding:5px 10px;position:relative;text-decoration:none;text-transform:none;transition:background-color .2s ease-out,color .2s ease-out,border-color .2s ease-out;vertical-align:bottom}button:disabled{opacity:.5;filter:Alpha(Opacity=50);background-image:none}button:disabled,button:disabled *{cursor:text!important}button.s-button-auxiliary{border-radius:20px}button.s-button-size-small{height:25px;padding:0 20px}button.s-button-size-default{height:35px}button.s-button-with-icon.s-button-multiple,button.s-button-with-text{min-width:80px}button.s-button-with-icon.s-button-with-text.s-button-multiple{min-width:100px}button .s-button-icon,button .s-button-menu-icon,button .s-button-right-icon,button.s-button-with-icon.s-button-multiple:not(.s-button-with-text) .s-button-icon{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}button.s-button-multiple .s-button-text{-ms-flex-align:left;align-items:left;display:-ms-flexbox;display:flex;-ms-flex-pack:left;justify-content:left}button.s-button-with-icon .s-button-text{-ms-flex-align:right;align-items:right;display:-ms-flexbox;display:flex;-ms-flex-pack:right;justify-content:right}.s-button-text{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.s-button-menu-icon{right:10px;transition:transform .2s ease-out}.s-button-icon-margin-left{margin-left:10px}.s-button-icon-margin-right{margin-right:10px}.s-button-active .s-button-menu-icon{transform:rotateX(180deg)}button,button.s-button-priority-primary{background-color:#428bca;border-color:#428bca}button .s-button-icon,button .s-button-menu-icon,button .s-button-right-icon,button .s-button-text,button.s-button-priority-primary .s-button-icon,button.s-button-priority-primary .s-button-menu-icon,button.s-button-priority-primary .s-button-right-icon,button.s-button-priority-primary .s-button-text{color:#fff}button.s-button-priority-primary:hover,button:hover{background-color:#2a6496}button.s-button-priority-primary:focus,button:focus{background-color:#2a6496;border-color:#22dce6}button.s-button-active:not(:disabled),button.s-button-priority-primary.s-button-active:not(:disabled),button.s-button-priority-primary:active:not(:disabled),button:active:not(:disabled){background-color:#245682;border-color:#245682}button.s-button-priority-secondary{background-color:#7892a1;border-color:#7892a1}button.s-button-priority-secondary .s-button-icon,button.s-button-priority-secondary .s-button-menu-icon,button.s-button-priority-secondary .s-button-right-icon,button.s-button-priority-secondary .s-button-text{color:#fff}button.s-button-priority-secondary:hover{background-color:#546b79}button.s-button-priority-secondary:focus{background-color:#546b79;border-color:#22dce6}button.s-button-priority-secondary.s-button-active:not(:disabled),button.s-button-priority-secondary:active:not(:disabled){background-color:#495e6a;border-color:#495e6a}button.s-button-priority-default{background-color:#fff;border-color:#ccc}button.s-button-priority-default .s-button-icon,button.s-button-priority-default .s-button-menu-icon,button.s-button-priority-default .s-button-right-icon,button.s-button-priority-default .s-button-text{color:#333}button.s-button-priority-default:hover{background-color:#d9d9d9}button.s-button-priority-default:focus{background-color:#d9d9d9;border-color:#22dce6}button.s-button-priority-default.s-button-active:not(:disabled),button.s-button-priority-default:active:not(:disabled){background-color:#ccc;border-color:#ccc}.s-button-priority-danger{background-color:#9c3a3a;border-color:#9c3a3a}.s-button-priority-danger .s-button-icon,.s-button-priority-danger .s-button-menu-icon,.s-button-priority-danger .s-button-right-icon,.s-button-priority-danger .s-button-text{color:#fff}.s-button-priority-danger:hover{background-color:#642525}.s-button-priority-danger:focus{background-color:#642525;border-color:#22dce6}.s-button-priority-danger.s-button-active:not(:disabled),.s-button-priority-danger:active:not(:disabled){background-color:#521e1e;border-color:#521e1e}button.s-button-priority-link{background-color:transparent;border-color:transparent}button.s-button-priority-link .s-button-icon,button.s-button-priority-link .s-button-menu-icon,button.s-button-priority-link .s-button-right-icon,button.s-button-priority-link .s-button-text{color:#428bca}button.s-button-priority-link:hover{background-color:transparent}button.s-button-priority-link:hover .s-button-icon,button.s-button-priority-link:hover .s-button-menu-icon,button.s-button-priority-link:hover .s-button-right-icon,button.s-button-priority-link:hover .s-button-text{color:#2a6496}button.s-button-priority-link:focus{border-color:#22dce6;background-color:transparent}button.s-button-priority-link:focus .s-button-icon,button.s-button-priority-link:focus .s-button-menu-icon,button.s-button-priority-link:focus .s-button-right-icon,button.s-button-priority-link:focus .s-button-text{color:#2a6496}button.s-button-priority-link.s-button-active:not(:disabled),button.s-button-priority-link:active:not(:disabled){background-color:transparent;border-color:transparent}button.s-button-priority-link.s-button-active:not(:disabled) .s-button-icon,button.s-button-priority-link.s-button-active:not(:disabled) .s-button-menu-icon,button.s-button-priority-link.s-button-active:not(:disabled) .s-button-right-icon,button.s-button-priority-link.s-button-active:not(:disabled) .s-button-text,button.s-button-priority-link:active:not(:disabled) .s-button-icon,button.s-button-priority-link:active:not(:disabled) .s-button-menu-icon,button.s-button-priority-link:active:not(:disabled) .s-button-right-icon,button.s-button-priority-link:active:not(:disabled) .s-button-text{color:#245682}.s-button--slide.s-button-with-icon.s-button-multiple,.s-button--slide.s-button-with-text{min-width:40px}.s-button--slide .s-button-text{position:absolute;opacity:0;width:0}.s-button--slide:hover .s-button-text{opacity:1;position:relative;transition:1s;width:auto}.s-button--slide:hover.s-button--rotate-animation .s-button-icon,.s-button--slide:hover.s-button--rotate-animation .s-button-right-icon{transform:rotate(360deg);transition:1.5s}.badge{position:absolute;top:-10px;right:-10px;z-index:99}"]
|
|
1516
1516
|
})
|
|
1517
1517
|
], ButtonComponent);
|
|
@@ -2380,7 +2380,7 @@ var ButtonModule = /** @class */ (function () {
|
|
|
2380
2380
|
}
|
|
2381
2381
|
ButtonModule = __decorate([
|
|
2382
2382
|
NgModule({
|
|
2383
|
-
imports: [CommonModule, RouterModule, BadgeModule, TieredMenuModule$1, TieredMenuModule, TooltipModule
|
|
2383
|
+
imports: [CommonModule, RouterModule, BadgeModule, TieredMenuModule$1, TieredMenuModule, TooltipModule],
|
|
2384
2384
|
declarations: [ButtonComponent],
|
|
2385
2385
|
exports: [ButtonComponent],
|
|
2386
2386
|
})
|
|
@@ -6937,7 +6937,9 @@ var ButtonField = /** @class */ (function (_super) {
|
|
|
6937
6937
|
_this.baseZIndex = config.baseZIndex;
|
|
6938
6938
|
_this.styleClass = config.styleClass;
|
|
6939
6939
|
_this.rightIconClass = config.rightIconClass;
|
|
6940
|
-
_this.tooltipPosition = config.tooltipPosition;
|
|
6940
|
+
_this.tooltipPosition = config.tooltipPosition || 'top';
|
|
6941
|
+
_this.mouseEnter = config.mouseEnter;
|
|
6942
|
+
_this.mouseLeave = config.mouseLeave;
|
|
6941
6943
|
return _this;
|
|
6942
6944
|
}
|
|
6943
6945
|
return ButtonField;
|
|
@@ -7652,6 +7654,9 @@ var DynamicType;
|
|
|
7652
7654
|
var Grid = /** @class */ (function () {
|
|
7653
7655
|
function Grid(config) {
|
|
7654
7656
|
Object.assign(this, __assign({}, config));
|
|
7657
|
+
if (isNullOrUndefined(config.visible)) {
|
|
7658
|
+
this.visible = function () { return true; };
|
|
7659
|
+
}
|
|
7655
7660
|
}
|
|
7656
7661
|
return Grid;
|
|
7657
7662
|
}());
|
|
@@ -7907,10 +7912,125 @@ var MouseEventsModule = /** @class */ (function () {
|
|
|
7907
7912
|
return MouseEventsModule;
|
|
7908
7913
|
}());
|
|
7909
7914
|
|
|
7915
|
+
var ToastComponent = /** @class */ (function () {
|
|
7916
|
+
function ToastComponent() {
|
|
7917
|
+
this.dismiss = new EventEmitter();
|
|
7918
|
+
this.isLeaving = false;
|
|
7919
|
+
this.timer = null;
|
|
7920
|
+
}
|
|
7921
|
+
ToastComponent.prototype.startDismissAnimation = function () {
|
|
7922
|
+
var _this = this;
|
|
7923
|
+
this.isLeaving = true;
|
|
7924
|
+
setTimeout(function () {
|
|
7925
|
+
_this.dismiss.emit();
|
|
7926
|
+
}, 300);
|
|
7927
|
+
};
|
|
7928
|
+
ToastComponent.prototype.dismissToast = function () {
|
|
7929
|
+
if (this.timer) {
|
|
7930
|
+
clearTimeout(this.timer);
|
|
7931
|
+
}
|
|
7932
|
+
this.startDismissAnimation();
|
|
7933
|
+
};
|
|
7934
|
+
ToastComponent.prototype.ngOnInit = function () {
|
|
7935
|
+
var _this = this;
|
|
7936
|
+
if (!this.toast.sticky && this.toast.duration) {
|
|
7937
|
+
this.timer = setTimeout(function () {
|
|
7938
|
+
_this.startDismissAnimation();
|
|
7939
|
+
}, this.toast.duration);
|
|
7940
|
+
}
|
|
7941
|
+
};
|
|
7942
|
+
ToastComponent.prototype.ngOnDestroy = function () {
|
|
7943
|
+
if (this.timer) {
|
|
7944
|
+
clearTimeout(this.timer);
|
|
7945
|
+
}
|
|
7946
|
+
};
|
|
7947
|
+
__decorate([
|
|
7948
|
+
Input()
|
|
7949
|
+
], ToastComponent.prototype, "toast", void 0);
|
|
7950
|
+
__decorate([
|
|
7951
|
+
Output()
|
|
7952
|
+
], ToastComponent.prototype, "dismiss", void 0);
|
|
7953
|
+
__decorate([
|
|
7954
|
+
HostBinding("class.toast--leaving")
|
|
7955
|
+
], ToastComponent.prototype, "isLeaving", void 0);
|
|
7956
|
+
ToastComponent = __decorate([
|
|
7957
|
+
Component({
|
|
7958
|
+
selector: "s-toast",
|
|
7959
|
+
template: "<div\n class=\"toast\"\n [class.toast--info]=\"toast.severity === 'info'\"\n [class.toast--success]=\"toast.severity === 'success'\"\n [class.toast--warning]=\"toast.severity === 'warning'\"\n [class.toast--error]=\"toast.severity === 'error'\"\n>\n <div class=\"toast-content\">\n <i\n class=\"toast-icon fas fa-info\"\n [class.fa-info]=\"toast.severity === 'info'\"\n [class.fa-check]=\"toast.severity === 'success'\"\n [class.fa-exclamation-triangle]=\"toast.severity === 'warning'\"\n [class.fa-times]=\"toast.severity === 'error'\"\n ></i>\n <div class=\"text-container\">\n <span *ngIf=\"toast.title\" class=\"toast-summary\" [innerHTML]=\"toast.title\"></span>\n <span *ngIf=\"toast.text\" [innerHTML]=\"toast.text\"></span>\n </div>\n </div>\n <button *ngIf=\"toast.closable\" class=\"toast-close-button\" (click)=\"dismissToast()\"><i class=\"fas fa-times\"></i></button>\n</div>\n",
|
|
7960
|
+
styles: [":host{display:block}.toast{-ms-flex-align:center;align-items:center;animation:.3s forwards fadeInDown;border-left:3px solid #428bca;border-radius:3px;box-shadow:0 1px 5px 0 rgba(0,0,0,.25);color:#212533;display:-ms-flexbox;display:flex;font-family:\"Open Sans\" sans-serif;font-size:14px;opacity:0;padding:10px 15px;position:relative;transform:translateY(-20px);width:400px}.toast .toast-content{-ms-flex-align:center;align-items:center;-ms-flex-positive:1;flex-grow:1;display:-ms-flexbox;display:flex;gap:15px}.toast .toast-content .toast-icon{-ms-flex-align:center;align-items:center;background-color:#428bca;border-radius:50%;color:#fff;display:-ms-flexbox;display:flex;-ms-flex-negative:0;flex-shrink:0;height:40px;-ms-flex-pack:center;justify-content:center;width:40px}.toast .toast-content .text-container{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.toast .toast-content .text-container .toast-summary{font-weight:700}.toast--success{background-color:#e0f0f0;border-left:3px solid #0c9348}.toast--success .toast-content .toast-icon{background-color:#0c9348}.toast--error{background-color:#fef0f0;border-left:3px solid #c13018}.toast--error .toast-content .toast-icon{background-color:#c13018}.toast--info{background-color:#f1f7f8;border-left:3px solid #428bca}.toast--info .toast-content .toast-icon{background-color:#428bca}.toast--warning{background-color:#fef4e3;border-left:3px solid #fcbf10}.toast--warning .toast-content .toast-icon{background-color:#fcbf10;color:#212533}.toast-close-button{background:0 0;border:none;color:#212533;font-size:1rem;cursor:pointer;margin-left:15px;transition:transform .2s ease-in-out}.toast-close-button:hover{transform:scale(1.1)}@keyframes fadeInDown{from{opacity:0;transform:translateY(-20px)}to{opacity:1;transform:translateY(0)}}@keyframes fadeOutUp{from{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(-20px)}}:host.toast--leaving{animation:.3s forwards fadeOutUp}@media (max-width:440px){.toast{width:calc(100% - 40px)}}"]
|
|
7961
|
+
})
|
|
7962
|
+
], ToastComponent);
|
|
7963
|
+
return ToastComponent;
|
|
7964
|
+
}());
|
|
7965
|
+
|
|
7966
|
+
var ToastService = /** @class */ (function () {
|
|
7967
|
+
function ToastService(appRef, injector, componentFactoryResolver) {
|
|
7968
|
+
this.appRef = appRef;
|
|
7969
|
+
this.injector = injector;
|
|
7970
|
+
this.componentFactoryResolver = componentFactoryResolver;
|
|
7971
|
+
this.activeToasts = [];
|
|
7972
|
+
this.globalToastHostElement = null;
|
|
7973
|
+
}
|
|
7974
|
+
ToastService.prototype.ensureGlobalToastHost = function () {
|
|
7975
|
+
if (!this.globalToastHostElement) {
|
|
7976
|
+
this.globalToastHostElement = document.createElement("div");
|
|
7977
|
+
document.body.appendChild(this.globalToastHostElement);
|
|
7978
|
+
this.globalToastHostElement.style.display = "flex";
|
|
7979
|
+
this.globalToastHostElement.style.flexDirection = "column";
|
|
7980
|
+
this.globalToastHostElement.style.position = "fixed";
|
|
7981
|
+
this.globalToastHostElement.style.right = "20px";
|
|
7982
|
+
this.globalToastHostElement.style.top = "20px";
|
|
7983
|
+
this.globalToastHostElement.style.zIndex = "99999";
|
|
7984
|
+
this.globalToastHostElement.style.gap = "10px";
|
|
7985
|
+
}
|
|
7986
|
+
};
|
|
7987
|
+
ToastService.prototype.show = function (toast) {
|
|
7988
|
+
var _this = this;
|
|
7989
|
+
var _a;
|
|
7990
|
+
this.ensureGlobalToastHost();
|
|
7991
|
+
var componentFactory = this.componentFactoryResolver.resolveComponentFactory(ToastComponent);
|
|
7992
|
+
var componentRef = componentFactory.create(this.injector);
|
|
7993
|
+
this.appRef.attachView(componentRef.hostView);
|
|
7994
|
+
if (!toast.sticky) {
|
|
7995
|
+
toast.duration = (_a = toast.duration) !== null && _a !== void 0 ? _a : 10000;
|
|
7996
|
+
}
|
|
7997
|
+
componentRef.instance.toast = __assign({ closable: true }, toast);
|
|
7998
|
+
var domElem = componentRef.hostView.rootNodes[0];
|
|
7999
|
+
this.globalToastHostElement.appendChild(domElem);
|
|
8000
|
+
domElem.style.display = "flex";
|
|
8001
|
+
domElem.style.justifyContent = "center";
|
|
8002
|
+
componentRef.instance.dismiss.pipe(first()).subscribe(function () {
|
|
8003
|
+
var index = _this.activeToasts.indexOf(componentRef);
|
|
8004
|
+
if (index !== -1) {
|
|
8005
|
+
_this.appRef.detachView(componentRef.hostView);
|
|
8006
|
+
componentRef.destroy();
|
|
8007
|
+
_this.activeToasts.splice(index, 1);
|
|
8008
|
+
}
|
|
8009
|
+
if (_this.activeToasts.length === 0 && _this.globalToastHostElement) {
|
|
8010
|
+
_this.globalToastHostElement.remove();
|
|
8011
|
+
_this.globalToastHostElement = null;
|
|
8012
|
+
}
|
|
8013
|
+
});
|
|
8014
|
+
this.activeToasts.push(componentRef);
|
|
8015
|
+
};
|
|
8016
|
+
ToastService.ctorParameters = function () { return [
|
|
8017
|
+
{ type: ApplicationRef },
|
|
8018
|
+
{ type: Injector },
|
|
8019
|
+
{ type: ComponentFactoryResolver }
|
|
8020
|
+
]; };
|
|
8021
|
+
ToastService.ɵprov = ɵɵdefineInjectable({ factory: function ToastService_Factory() { return new ToastService(ɵɵinject(ApplicationRef), ɵɵinject(INJECTOR), ɵɵinject(ComponentFactoryResolver)); }, token: ToastService, providedIn: "root" });
|
|
8022
|
+
ToastService = __decorate([
|
|
8023
|
+
Injectable({
|
|
8024
|
+
providedIn: "root",
|
|
8025
|
+
})
|
|
8026
|
+
], ToastService);
|
|
8027
|
+
return ToastService;
|
|
8028
|
+
}());
|
|
8029
|
+
|
|
7910
8030
|
var IAssistService = /** @class */ (function () {
|
|
7911
|
-
function IAssistService(http,
|
|
8031
|
+
function IAssistService(http, _toastService) {
|
|
7912
8032
|
this.http = http;
|
|
7913
|
-
this.
|
|
8033
|
+
this._toastService = _toastService;
|
|
7914
8034
|
}
|
|
7915
8035
|
IAssistService.prototype.askIA = function (context, data) {
|
|
7916
8036
|
var _this = this;
|
|
@@ -7926,10 +8046,10 @@ var IAssistService = /** @class */ (function () {
|
|
|
7926
8046
|
},
|
|
7927
8047
|
})
|
|
7928
8048
|
.pipe(catchError(function (err) {
|
|
7929
|
-
_this.
|
|
8049
|
+
_this._toastService.show({
|
|
7930
8050
|
severity: "error",
|
|
7931
|
-
|
|
7932
|
-
|
|
8051
|
+
title: err.status ? String(err.status) : "Error",
|
|
8052
|
+
text: (err.error && err.error.message) || err.statusText || err.message || "Error",
|
|
7933
8053
|
});
|
|
7934
8054
|
return throwError(err);
|
|
7935
8055
|
}));
|
|
@@ -7950,7 +8070,7 @@ var IAssistService = /** @class */ (function () {
|
|
|
7950
8070
|
};
|
|
7951
8071
|
IAssistService.ctorParameters = function () { return [
|
|
7952
8072
|
{ type: HttpClient },
|
|
7953
|
-
{ type:
|
|
8073
|
+
{ type: ToastService }
|
|
7954
8074
|
]; };
|
|
7955
8075
|
IAssistService = __decorate([
|
|
7956
8076
|
Injectable()
|
|
@@ -11220,6 +11340,15 @@ var SectionComponent = /** @class */ (function () {
|
|
|
11220
11340
|
enumerable: true,
|
|
11221
11341
|
configurable: true
|
|
11222
11342
|
});
|
|
11343
|
+
Object.defineProperty(SectionComponent.prototype, "configs", {
|
|
11344
|
+
get: function () {
|
|
11345
|
+
var _a;
|
|
11346
|
+
var _configs = ((_a = this.config) === null || _a === void 0 ? void 0 : _a.configs) || [];
|
|
11347
|
+
return _configs.filter(function (x) { return x.visible === undefined || x.visible(); });
|
|
11348
|
+
},
|
|
11349
|
+
enumerable: true,
|
|
11350
|
+
configurable: true
|
|
11351
|
+
});
|
|
11223
11352
|
__decorate([
|
|
11224
11353
|
Input()
|
|
11225
11354
|
], SectionComponent.prototype, "id", void 0);
|
|
@@ -11235,7 +11364,7 @@ var SectionComponent = /** @class */ (function () {
|
|
|
11235
11364
|
SectionComponent = __decorate([
|
|
11236
11365
|
Component({
|
|
11237
11366
|
selector: 's-section',
|
|
11238
|
-
template: "\n <h3 *ngIf=\"config?.header\" class=\"sds-section-title\">{{config.header}}</h3>\n <section [class.flex-container]=\"flexContainer\" [style.justify-content]=\"config.justifyContent\" [style.align-items]=\"config.alignItems\">\n <ng-container *ngFor=\"let conf of
|
|
11367
|
+
template: "\n <h3 *ngIf=\"config?.header\" class=\"sds-section-title\">{{config.header}}</h3>\n <section [class.flex-container]=\"flexContainer\" [style.justify-content]=\"config.justifyContent\" [style.align-items]=\"config.alignItems\">\n <ng-container *ngFor=\"let conf of configs\">\n <ng-container *sDynamicForm=\"{ id: id, config: conf, group: group, errorMessages: errorMessages }\"></ng-container>\n </ng-container>\n </section>\n ",
|
|
11239
11368
|
styles: ["\n .flex-container {\n display: flex\n }\n\n :host {\n height: 100%\n }\n\n section {\n height: 100%;\n }\n "]
|
|
11240
11369
|
})
|
|
11241
11370
|
], SectionComponent);
|
|
@@ -11812,13 +11941,23 @@ var ButtonFieldComponent = /** @class */ (function () {
|
|
|
11812
11941
|
this.field.onClick($event);
|
|
11813
11942
|
}
|
|
11814
11943
|
};
|
|
11944
|
+
ButtonFieldComponent.prototype.handleMouseEnter = function () {
|
|
11945
|
+
if (this.field.mouseEnter) {
|
|
11946
|
+
this.field.mouseEnter(this.field);
|
|
11947
|
+
}
|
|
11948
|
+
};
|
|
11949
|
+
ButtonFieldComponent.prototype.handleMouseLeave = function () {
|
|
11950
|
+
if (this.field.mouseLeave) {
|
|
11951
|
+
this.field.mouseLeave(this.field);
|
|
11952
|
+
}
|
|
11953
|
+
};
|
|
11815
11954
|
__decorate([
|
|
11816
11955
|
Input()
|
|
11817
11956
|
], ButtonFieldComponent.prototype, "field", void 0);
|
|
11818
11957
|
ButtonFieldComponent = __decorate([
|
|
11819
11958
|
Component({
|
|
11820
11959
|
selector: 's-button-field',
|
|
11821
|
-
template: "<section [class.full-width]=\"field.fullWidth\" [class.fit-content]=\"!field.fullWidth\">\n <s-button\n [label]=\"field.label\"\n [priority]=\"field.priority\"\n [iconClass]=\"field.iconClass\"\n [disabled]=\"field.disabled\"\n [auxiliary]=\"field.auxiliary\"\n [caret]=\"field.caret\"\n [id]=\"field.id\"\n [tooltip]=\"field.tooltip\"\n (onClick)=\"clickedButton($event)\"\n [iconColor]=\"field.iconColor\"\n [badge]=\"field.badge\"\n [animation]=\"field.animation\"\n [slide]=\"field.slide\"\n [menuOptions]=\"field.menuOptions\"\n [model]=\"field.model\"\n [baseZIndex]=\"field.baseZIndex\"\n [styleClass]=\"field.styleClass\"\n [rightIconClass]=\"field.rightIconClass\"\n [tooltipPosition]=\"field.tooltipPosition\"\n [type]=\"field.buttonType\"\n [size]=\"field.buttonSize\">\n </s-button>\n</section>\n",
|
|
11960
|
+
template: "<section [class.full-width]=\"field.fullWidth\" [class.fit-content]=\"!field.fullWidth\">\n <s-button\n [label]=\"field.label\"\n [priority]=\"field.priority\"\n [iconClass]=\"field.iconClass\"\n [disabled]=\"field.disabled\"\n [auxiliary]=\"field.auxiliary\"\n [caret]=\"field.caret\"\n [id]=\"field.id\"\n [tooltip]=\"field.tooltip\"\n (onClick)=\"clickedButton($event)\"\n [iconColor]=\"field.iconColor\"\n [badge]=\"field.badge\"\n [animation]=\"field.animation\"\n [slide]=\"field.slide\"\n [menuOptions]=\"field.menuOptions\"\n [model]=\"field.model\"\n [baseZIndex]=\"field.baseZIndex\"\n [styleClass]=\"field.styleClass\"\n [rightIconClass]=\"field.rightIconClass\"\n [tooltipPosition]=\"field.tooltipPosition\"\n [type]=\"field.buttonType\"\n [size]=\"field.buttonSize\"\n (mouseenter)=\"handleMouseEnter()\"\n (mouseleave)=\"handleMouseLeave()\">\n </s-button>\n</section>\n",
|
|
11822
11961
|
styles: ["section{height:100%;display:-ms-flexbox;display:flex;-ms-flex-align:end;align-items:flex-end}section.full-width{width:100%}section.fit-content{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}"]
|
|
11823
11962
|
})
|
|
11824
11963
|
], ButtonFieldComponent);
|
|
@@ -16049,9 +16188,9 @@ var GlobalSearchModule = /** @class */ (function () {
|
|
|
16049
16188
|
}());
|
|
16050
16189
|
|
|
16051
16190
|
var IAInsightCardComponent = /** @class */ (function () {
|
|
16052
|
-
function IAInsightCardComponent(clipboard,
|
|
16191
|
+
function IAInsightCardComponent(clipboard, toastService, translateService) {
|
|
16053
16192
|
this.clipboard = clipboard;
|
|
16054
|
-
this.
|
|
16193
|
+
this.toastService = toastService;
|
|
16055
16194
|
this.translateService = translateService;
|
|
16056
16195
|
this.open = false;
|
|
16057
16196
|
this.isLoading = false;
|
|
@@ -16088,9 +16227,9 @@ var IAInsightCardComponent = /** @class */ (function () {
|
|
|
16088
16227
|
var _a, _b;
|
|
16089
16228
|
(_b = (_a = this.insight).onCopy) === null || _b === void 0 ? void 0 : _b.call(_a, this.content);
|
|
16090
16229
|
if (this.clipboard.copy(this.content)) {
|
|
16091
|
-
this.
|
|
16230
|
+
this.toastService.show({
|
|
16092
16231
|
severity: "info",
|
|
16093
|
-
|
|
16232
|
+
title: this.translateService.instant("platform.angular_components.copied_to_clipboard"),
|
|
16094
16233
|
});
|
|
16095
16234
|
}
|
|
16096
16235
|
};
|
|
@@ -16108,7 +16247,7 @@ var IAInsightCardComponent = /** @class */ (function () {
|
|
|
16108
16247
|
};
|
|
16109
16248
|
IAInsightCardComponent.ctorParameters = function () { return [
|
|
16110
16249
|
{ type: Clipboard },
|
|
16111
|
-
{ type:
|
|
16250
|
+
{ type: ToastService },
|
|
16112
16251
|
{ type: TranslateService }
|
|
16113
16252
|
]; };
|
|
16114
16253
|
__decorate([
|
|
@@ -21967,6 +22106,18 @@ var HelpPopoverModule = /** @class */ (function () {
|
|
|
21967
22106
|
return HelpPopoverModule;
|
|
21968
22107
|
}());
|
|
21969
22108
|
|
|
22109
|
+
var ToastModule = /** @class */ (function () {
|
|
22110
|
+
function ToastModule() {
|
|
22111
|
+
}
|
|
22112
|
+
ToastModule = __decorate([
|
|
22113
|
+
NgModule({
|
|
22114
|
+
imports: [CommonModule],
|
|
22115
|
+
declarations: [ToastComponent],
|
|
22116
|
+
})
|
|
22117
|
+
], ToastModule);
|
|
22118
|
+
return ToastModule;
|
|
22119
|
+
}());
|
|
22120
|
+
|
|
21970
22121
|
var fallback = {
|
|
21971
22122
|
"platform.angular_components.attachment": "anexo",
|
|
21972
22123
|
"platform.angular_components.watch": "assistir",
|
|
@@ -22297,5 +22448,5 @@ var fallback = {
|
|
|
22297
22448
|
* Generated bundle index. Do not edit.
|
|
22298
22449
|
*/
|
|
22299
22450
|
|
|
22300
|
-
export { AccordionComponent, AccordionModule, AccordionPanelComponent, AlertComponent, AlertModule, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonField, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, CardComponent, CardModule, CardTemplateTypes, ChatComponent, ChatModule, CheckDisabled, CheckboxComponent, CheckboxModule, ChipsComponent, ChipsField, ChipsModule, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CurrencyService, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DebounceUtils, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, EnumSeverity, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FileUploadPermissions, FileValidation, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, Grid, GridMenuComponent, GridMenuModule, GridType, HelpPopoverComponent, HelpPopoverDirective, HelpPopoverModule, HostProjectConfigsInjectionToken, IAInsightComponent, IAInsightModule, IAInsightTemplateTypes, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, InlineEditCalendarField, InlineEditComponent, InlineEditField, InlineEditLookupField, InlineEditModule, InlineEditNumberField, InlineEditTextAreaField, InlineEditTextAreaIAField, InlineEditTextField, KanbanComponent, KanbanModule, KanbanTemplateTypes, LabelValueComponent, LabelValueModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationButtonComponent, NavigationButtonModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, NumericService, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, PicklistComponent, PicklistModule, PicklistTemplateTypes, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RatingScaleComponent, RatingScaleModule, RationButtonOption, Row, RowTogllerDirective, SVGFactoryDirective, SVGFactoryModule, Section, SelectButtonComponent, SelectButtonModule, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SliderComponent, SliderModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, StructureType, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TemplateDirective, TemplateModule, TextAreaField, TextAreaIAComponent, TextAreaIAModule, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, ThumbnailsComponent, ThumbnailsModule, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, convertToMomentDateFormat, countries, fallback, isMousePositionOutsideOfElement, isNullOrUndefined, parseItensPickList, ɵ0$3 as ɵ0, ɵ1$2 as ɵ1, ɵ2$1 as ɵ2, ɵ3$1 as ɵ3, ɵ4, TooltipComponent as ɵa, TooltipDirective as ɵb, TableColumnsComponent as ɵba, TablePagingComponent as ɵbb, PasswordFieldModule as ɵbc, FieldLabelModule as ɵbd, FieldLabelComponent as ɵbe, PasswordFieldComponent as ɵbf, TextFieldModule as ɵbg, TextFieldComponent as ɵbh, NumberFieldModule as ɵbi, NumberFieldComponent as ɵbj, CurrencyFieldModule as ɵbk, CurrencyFieldComponent as ɵbl, BignumberFieldModule as ɵbm, BignumberFieldComponent as ɵbn, CheckboxFieldModule as ɵbo, CheckboxFieldComponent as ɵbp, ProfilePictureModule as ɵbq, ThumbnailService as ɵbr, StructureModule as ɵbs, HeaderComponent as ɵbt, FooterComponent as ɵbu, ProfilePictureFieldComponent as ɵbv, EditorFieldModule as ɵbw, EditorFieldComponent as ɵbx, AutocompleteFieldComponent as ɵby, BooleanFieldComponent as ɵbz, TieredMenuEventService as ɵc, BooleanSwitchFieldComponent as ɵca, CalendarFieldComponent as ɵcb, ChipsFieldComponent as ɵcc, CountryPhonePickerFieldComponent as ɵcd, DynamicFieldComponent as ɵce, DynamicFormDirective as ɵcf, FieldsetComponent as ɵcg, FileUploadComponent$1 as ɵch, LookupFieldComponent as ɵci, RadioButtonComponent as ɵcj, RowComponent as ɵck, SectionComponent as ɵcl, SelectFieldComponent as ɵcm, SliderFieldComponent as ɵcn, TextAreaFieldComponent as ɵco, TextAreaIAFieldComponent as ɵcp, IAssistService as ɵcq, ButtonFieldComponent as ɵcr, DecimalField as ɵct, SideTableComponent as ɵcu, InfiniteScrollModule as ɵcv, InfiniteScrollDirective as ɵcw, IAInsightSidebarComponent as ɵcx, IAInsightCardComponent as ɵcy, IAInsightCardLoaderComponent as ɵcz, TieredMenuService as ɵd, GridMenuItemComponent as ɵda, InlineEditItemComponent as ɵdb, InlineEditCalendarComponent as ɵdc, InlineEditLookupComponent as ɵdd, InlineEditNumberComponent as ɵde, InlineEditTextComponent as ɵdf, InlineEditTextAreaComponent as ɵdg, InlineEditTextAreaIAComponent as ɵdh, KanbanEventService as ɵdi, KanbanItemComponent as ɵdj, KanbanColumnComponent as ɵdk, KanbanItemDraggingComponent as ɵdl, NumberLocaleOptions as ɵdm, BorderButtonModule as ɵdn, BorderButtonComponent as ɵdo, ProgressBarDeterminateComponent as ɵdp, ProgressBarIndeterminateComponent as ɵdq, SelectButtonItemComponent as ɵdr, SlidePanelService as ɵds, ThumbnailItemComponent as ɵdt, ThumbnailItemVideoComponent as ɵdu, ThumbnailItemImageComponent as ɵdv, TimelineItemModule as ɵdw, TimelineIconItemComponent as ɵdx, HorizontalTimelineModule as ɵdy, HorizontalTimelineComponent as ɵdz, TieredMenuGlobalService as ɵe, VerticalTimelineModule as ɵea, VerticalTimelineComponent as ɵeb, RangeLineComponent as ɵec, CollapseOptionComponent as ɵed, CollapsedItemsComponent as ɵee, VerticalItemsComponent as ɵef, ChipItemComponent as ɵeg, TieredMenuComponent as ɵf, TieredMenuNestedComponent as ɵg, TieredMenuItemComponent as ɵh, TieredMenuDividerComponent as ɵi, LocalizedCurrencyImpurePipe as ɵj, LocalizedBignumberPipe as ɵk, LocalizedBignumberImpurePipe as ɵl, NumericPipe as ɵm, ChatMessageComponent as ɵn, CustomTranslationsModule as ɵo, CodeEditorComponent as ɵp, CoreFacade as ɵq, CodeMirror6Core as ɵr, CountryPhonePickerService as ɵs, EmptyStateGoBackComponent as ɵt, IAssistIconComponent as ɵu, SeniorIconComponent as ɵv, DotsIndicatorComponent as ɵw, LoadingIndicatorComponent as ɵx, FileUploadService as ɵy, InfoSignComponent as ɵz };
|
|
22451
|
+
export { AccordionComponent, AccordionModule, AccordionPanelComponent, AlertComponent, AlertModule, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonField, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, CardComponent, CardModule, CardTemplateTypes, ChatComponent, ChatModule, CheckDisabled, CheckboxComponent, CheckboxModule, ChipsComponent, ChipsField, ChipsModule, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CurrencyService, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DebounceUtils, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, EnumSeverity, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FileUploadPermissions, FileValidation, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, Grid, GridMenuComponent, GridMenuModule, GridType, HelpPopoverComponent, HelpPopoverDirective, HelpPopoverModule, HostProjectConfigsInjectionToken, IAInsightComponent, IAInsightModule, IAInsightTemplateTypes, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, InlineEditCalendarField, InlineEditComponent, InlineEditField, InlineEditLookupField, InlineEditModule, InlineEditNumberField, InlineEditTextAreaField, InlineEditTextAreaIAField, InlineEditTextField, KanbanComponent, KanbanModule, KanbanTemplateTypes, LabelValueComponent, LabelValueModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationButtonComponent, NavigationButtonModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, NumericService, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, PicklistComponent, PicklistModule, PicklistTemplateTypes, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RatingScaleComponent, RatingScaleModule, RationButtonOption, Row, RowTogllerDirective, SVGFactoryDirective, SVGFactoryModule, Section, SelectButtonComponent, SelectButtonModule, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SliderComponent, SliderModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, StructureType, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TemplateDirective, TemplateModule, TextAreaField, TextAreaIAComponent, TextAreaIAModule, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, ThumbnailsComponent, ThumbnailsModule, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, ToastComponent, ToastModule, ToastService, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, convertToMomentDateFormat, countries, fallback, isMousePositionOutsideOfElement, isNullOrUndefined, parseItensPickList, ɵ0$3 as ɵ0, ɵ1$2 as ɵ1, ɵ2$1 as ɵ2, ɵ3$1 as ɵ3, ɵ4, TooltipComponent as ɵa, TooltipDirective as ɵb, TableColumnsComponent as ɵba, TablePagingComponent as ɵbb, PasswordFieldModule as ɵbc, FieldLabelModule as ɵbd, FieldLabelComponent as ɵbe, PasswordFieldComponent as ɵbf, TextFieldModule as ɵbg, TextFieldComponent as ɵbh, NumberFieldModule as ɵbi, NumberFieldComponent as ɵbj, CurrencyFieldModule as ɵbk, CurrencyFieldComponent as ɵbl, BignumberFieldModule as ɵbm, BignumberFieldComponent as ɵbn, CheckboxFieldModule as ɵbo, CheckboxFieldComponent as ɵbp, ProfilePictureModule as ɵbq, ThumbnailService as ɵbr, StructureModule as ɵbs, HeaderComponent as ɵbt, FooterComponent as ɵbu, ProfilePictureFieldComponent as ɵbv, EditorFieldModule as ɵbw, EditorFieldComponent as ɵbx, AutocompleteFieldComponent as ɵby, BooleanFieldComponent as ɵbz, TieredMenuEventService as ɵc, BooleanSwitchFieldComponent as ɵca, CalendarFieldComponent as ɵcb, ChipsFieldComponent as ɵcc, CountryPhonePickerFieldComponent as ɵcd, DynamicFieldComponent as ɵce, DynamicFormDirective as ɵcf, FieldsetComponent as ɵcg, FileUploadComponent$1 as ɵch, LookupFieldComponent as ɵci, RadioButtonComponent as ɵcj, RowComponent as ɵck, SectionComponent as ɵcl, SelectFieldComponent as ɵcm, SliderFieldComponent as ɵcn, TextAreaFieldComponent as ɵco, TextAreaIAFieldComponent as ɵcp, IAssistService as ɵcq, ButtonFieldComponent as ɵcr, DecimalField as ɵct, SideTableComponent as ɵcu, InfiniteScrollModule as ɵcv, InfiniteScrollDirective as ɵcw, IAInsightSidebarComponent as ɵcx, IAInsightCardComponent as ɵcy, IAInsightCardLoaderComponent as ɵcz, TieredMenuService as ɵd, GridMenuItemComponent as ɵda, InlineEditItemComponent as ɵdb, InlineEditCalendarComponent as ɵdc, InlineEditLookupComponent as ɵdd, InlineEditNumberComponent as ɵde, InlineEditTextComponent as ɵdf, InlineEditTextAreaComponent as ɵdg, InlineEditTextAreaIAComponent as ɵdh, KanbanEventService as ɵdi, KanbanItemComponent as ɵdj, KanbanColumnComponent as ɵdk, KanbanItemDraggingComponent as ɵdl, NumberLocaleOptions as ɵdm, BorderButtonModule as ɵdn, BorderButtonComponent as ɵdo, ProgressBarDeterminateComponent as ɵdp, ProgressBarIndeterminateComponent as ɵdq, SelectButtonItemComponent as ɵdr, SlidePanelService as ɵds, ThumbnailItemComponent as ɵdt, ThumbnailItemVideoComponent as ɵdu, ThumbnailItemImageComponent as ɵdv, TimelineItemModule as ɵdw, TimelineIconItemComponent as ɵdx, HorizontalTimelineModule as ɵdy, HorizontalTimelineComponent as ɵdz, TieredMenuGlobalService as ɵe, VerticalTimelineModule as ɵea, VerticalTimelineComponent as ɵeb, RangeLineComponent as ɵec, CollapseOptionComponent as ɵed, CollapsedItemsComponent as ɵee, VerticalItemsComponent as ɵef, ChipItemComponent as ɵeg, ButtonModule as ɵeh, TieredMenuComponent as ɵf, TieredMenuNestedComponent as ɵg, TieredMenuItemComponent as ɵh, TieredMenuDividerComponent as ɵi, LocalizedCurrencyImpurePipe as ɵj, LocalizedBignumberPipe as ɵk, LocalizedBignumberImpurePipe as ɵl, NumericPipe as ɵm, ChatMessageComponent as ɵn, CustomTranslationsModule as ɵo, CodeEditorComponent as ɵp, CoreFacade as ɵq, CodeMirror6Core as ɵr, CountryPhonePickerService as ɵs, EmptyStateGoBackComponent as ɵt, IAssistIconComponent as ɵu, SeniorIconComponent as ɵv, DotsIndicatorComponent as ɵw, LoadingIndicatorComponent as ɵx, FileUploadService as ɵy, InfoSignComponent as ɵz };
|
|
22301
22452
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|