@seniorsistemas/angular-components 17.26.14 → 17.27.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 +257 -109
- 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/accessibility-events/accessibility-events.module.d.ts +2 -0
- package/components/accessibility-events/directives/accessibility-event.directive.d.ts +12 -0
- package/components/accessibility-events/index.d.ts +2 -0
- package/components/dynamic-form/components/fields/text/text-field.component.d.ts +3 -1
- package/components/dynamic-form/components/fields/text-area/text-area-field.component.d.ts +1 -2
- package/components/fieldset/fieldset.component.d.ts +14 -0
- package/components/fieldset/fieldset.models.d.ts +4 -0
- package/components/fieldset/fieldset.module.d.ts +2 -0
- package/components/fieldset/index.d.ts +3 -0
- package/components/index.d.ts +4 -1
- package/components/structure/header.component.d.ts +2 -0
- package/components/structure/index.d.ts +3 -0
- package/components/tooltip/tooltip.directive.d.ts +1 -3
- package/esm2015/components/accessibility-events/accessibility-events.module.js +17 -0
- package/esm2015/components/accessibility-events/directives/accessibility-event.directive.js +55 -0
- package/esm2015/components/accessibility-events/index.js +3 -0
- package/esm2015/components/dynamic-form/components/fields/text/text-field.component.js +12 -2
- package/esm2015/components/dynamic-form/components/fields/text-area/text-area-field.component.js +3 -6
- package/esm2015/components/dynamic-form/components/structure/fieldset/fieldset.component.js +5 -6
- package/esm2015/components/dynamic-form/dynamic-form.module.js +4 -2
- package/esm2015/components/fieldset/fieldset.component.js +68 -0
- package/esm2015/components/fieldset/fieldset.models.js +1 -0
- package/esm2015/components/fieldset/fieldset.module.js +17 -0
- package/esm2015/components/fieldset/index.js +3 -0
- package/esm2015/components/index.js +5 -2
- package/esm2015/components/info-sign/info-sign.component.js +2 -2
- package/esm2015/components/structure/header.component.js +9 -3
- package/esm2015/components/structure/index.js +4 -0
- package/esm2015/components/text-area/text-area/text-area.component.js +1 -1
- package/esm2015/components/tooltip/tooltip.directive.js +7 -26
- package/esm2015/seniorsistemas-angular-components.js +68 -71
- package/esm5/components/accessibility-events/accessibility-events.module.js +20 -0
- package/esm5/components/accessibility-events/directives/accessibility-event.directive.js +61 -0
- package/esm5/components/accessibility-events/index.js +3 -0
- package/esm5/components/dynamic-form/components/fields/text/text-field.component.js +16 -2
- package/esm5/components/dynamic-form/components/fields/text-area/text-area-field.component.js +3 -6
- package/esm5/components/dynamic-form/components/structure/fieldset/fieldset.component.js +2 -3
- package/esm5/components/dynamic-form/dynamic-form.module.js +4 -2
- package/esm5/components/fieldset/fieldset.component.js +69 -0
- package/esm5/components/fieldset/fieldset.models.js +1 -0
- package/esm5/components/fieldset/fieldset.module.js +20 -0
- package/esm5/components/fieldset/index.js +3 -0
- package/esm5/components/index.js +5 -2
- package/esm5/components/info-sign/info-sign.component.js +2 -2
- package/esm5/components/structure/header.component.js +6 -3
- package/esm5/components/structure/index.js +4 -0
- package/esm5/components/text-area/text-area/text-area.component.js +1 -1
- package/esm5/components/tooltip/tooltip.directive.js +7 -26
- package/esm5/seniorsistemas-angular-components.js +68 -71
- package/fesm2015/seniorsistemas-angular-components.js +170 -40
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +181 -37
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.d.ts +67 -70
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -37,8 +37,7 @@ import { ButtonModule as ButtonModule$1 } from 'primeng/button';
|
|
|
37
37
|
import { CheckboxModule as CheckboxModule$1 } from 'primeng/checkbox';
|
|
38
38
|
import { ChipsModule as ChipsModule$1 } from 'primeng/chips';
|
|
39
39
|
import { DropdownModule } from 'primeng/dropdown';
|
|
40
|
-
import {
|
|
41
|
-
import { InputMaskModule } from 'primeng/inputmask';
|
|
40
|
+
import { InputMask, InputMaskModule } from 'primeng/inputmask';
|
|
42
41
|
import { InputTextModule } from 'primeng/inputtext';
|
|
43
42
|
import { InputTextareaModule } from 'primeng/inputtextarea';
|
|
44
43
|
import { KeyFilterModule } from 'primeng/keyfilter';
|
|
@@ -54,6 +53,7 @@ import { EditorModule } from 'primeng/editor';
|
|
|
54
53
|
import { ConfirmationService } from 'primeng/api';
|
|
55
54
|
import { ConfirmDialogModule } from 'primeng/confirmdialog';
|
|
56
55
|
import Cropper from 'cropperjs';
|
|
56
|
+
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
57
57
|
import marked from 'marked';
|
|
58
58
|
import { moveItemInArray, transferArrayItem, DragDropModule } from '@angular/cdk/drag-drop';
|
|
59
59
|
import { FocusTrapFactory, A11yModule } from '@angular/cdk/a11y';
|
|
@@ -508,8 +508,7 @@ var TooltipDirective = /** @class */ (function () {
|
|
|
508
508
|
this.visible = true;
|
|
509
509
|
this.mobileBehavior = MobileBehavior.Pressing;
|
|
510
510
|
this.componentRef = null;
|
|
511
|
-
this.
|
|
512
|
-
this.boundOnWindowMouseMoveFunction = this.onWindowMouseMove.bind(this);
|
|
511
|
+
this.tooltipCreatedByFocus = false;
|
|
513
512
|
this.debounceCreateTooltipFunction = this.debounceUtils.debounceLeading(function () { return _this._createTooltip(true, true); });
|
|
514
513
|
}
|
|
515
514
|
TooltipDirective.prototype.ngOnInit = function () {
|
|
@@ -519,22 +518,6 @@ var TooltipDirective = /** @class */ (function () {
|
|
|
519
518
|
TooltipDirective.prototype.ngOnDestroy = function () {
|
|
520
519
|
this.destroy();
|
|
521
520
|
};
|
|
522
|
-
TooltipDirective.prototype.onWindowMouseMove = function (event) {
|
|
523
|
-
if (!this.componentRef) {
|
|
524
|
-
return;
|
|
525
|
-
}
|
|
526
|
-
var elementRect = this.elementRef.nativeElement.getBoundingClientRect();
|
|
527
|
-
var toolTipRect = this.tooltipDivElement.getBoundingClientRect();
|
|
528
|
-
var totalElementArea = {
|
|
529
|
-
top: Math.min(elementRect.top, toolTipRect.top),
|
|
530
|
-
right: Math.max(elementRect.right, toolTipRect.right),
|
|
531
|
-
left: Math.min(elementRect.left, toolTipRect.left),
|
|
532
|
-
bottom: Math.max(elementRect.bottom, toolTipRect.bottom),
|
|
533
|
-
};
|
|
534
|
-
if (isMousePositionOutsideOfElement(event, totalElementArea) && !this.existFocusedInputRefTooltip) {
|
|
535
|
-
this.destroy();
|
|
536
|
-
}
|
|
537
|
-
};
|
|
538
521
|
/**
|
|
539
522
|
* Manipula a visibilidade do tooltip quando houver uma referência de input.
|
|
540
523
|
*/
|
|
@@ -545,15 +528,15 @@ var TooltipDirective = /** @class */ (function () {
|
|
|
545
528
|
var icon_1 = this.getIconFromFocusedInput();
|
|
546
529
|
this.renderer.listen(inputFocus, "focus", function () {
|
|
547
530
|
if (icon_1) {
|
|
548
|
-
_this.existFocusedInputRefTooltip = true;
|
|
549
531
|
_this._createTooltip(false, false);
|
|
532
|
+
_this.tooltipCreatedByFocus = true;
|
|
550
533
|
}
|
|
551
534
|
});
|
|
552
535
|
this.renderer.listen(inputFocus, "blur", function () {
|
|
553
536
|
if (icon_1) {
|
|
554
537
|
_this.removeTooltip(icon_1);
|
|
555
538
|
_this.destroy();
|
|
556
|
-
_this.
|
|
539
|
+
_this.tooltipCreatedByFocus = false;
|
|
557
540
|
}
|
|
558
541
|
});
|
|
559
542
|
}
|
|
@@ -593,12 +576,12 @@ var TooltipDirective = /** @class */ (function () {
|
|
|
593
576
|
}
|
|
594
577
|
};
|
|
595
578
|
TooltipDirective.prototype.onMouseEnter = function () {
|
|
596
|
-
if (this.tooltipEvent === TooltipEvent.Hover) {
|
|
579
|
+
if (this.tooltipEvent === TooltipEvent.Hover || this.focusedInputRef) {
|
|
597
580
|
this.debounceCreateTooltipFunction();
|
|
598
581
|
}
|
|
599
582
|
};
|
|
600
583
|
TooltipDirective.prototype.onMouseLeave = function () {
|
|
601
|
-
if (this.tooltipEvent === TooltipEvent.Hover && !this.
|
|
584
|
+
if ((this.tooltipEvent === TooltipEvent.Hover || this.focusedInputRef) && !this.tooltipCreatedByFocus) {
|
|
602
585
|
this.destroy();
|
|
603
586
|
}
|
|
604
587
|
};
|
|
@@ -664,7 +647,6 @@ var TooltipDirective = /** @class */ (function () {
|
|
|
664
647
|
if (this.componentRef !== null) {
|
|
665
648
|
this.componentRef.instance.visible = this.visible;
|
|
666
649
|
this.setTooltipPositionProperty();
|
|
667
|
-
window.addEventListener("mousemove", this.boundOnWindowMouseMoveFunction);
|
|
668
650
|
}
|
|
669
651
|
};
|
|
670
652
|
TooltipDirective.prototype.setTooltipPositionProperty = function () {
|
|
@@ -775,7 +757,6 @@ var TooltipDirective = /** @class */ (function () {
|
|
|
775
757
|
this.componentRef = null;
|
|
776
758
|
this.tooltipDivElement = null;
|
|
777
759
|
}
|
|
778
|
-
window.removeEventListener("mousemove", this.boundOnWindowMouseMoveFunction);
|
|
779
760
|
};
|
|
780
761
|
TooltipDirective.ctorParameters = function () { return [
|
|
781
762
|
{ type: ElementRef },
|
|
@@ -1027,7 +1008,7 @@ var InfoSignComponent = /** @class */ (function () {
|
|
|
1027
1008
|
InfoSignComponent = __decorate([
|
|
1028
1009
|
Component({
|
|
1029
1010
|
selector: "s-info-sign-component",
|
|
1030
|
-
template: "<span class=\"info-sign\">\n <span *ngTemplateOutlet=\"templateRef\"></span>\n <i\n class=\"info-sign__icon fa fa-info-circle\"\n aria-hidden=\"true\"\n [sTooltip]=\"tooltip\"\n [escape]=\"false\"\n tooltipPosition=\"top\"\n [displayTime]=\"displayTime\"\n mobileBehavior=\"tap\"\n showDelay=\"0\"\n [focusedInputRef]=\"focusedInputRef\">\n </i>\n</span>\n",
|
|
1011
|
+
template: "<span class=\"info-sign\">\n <span *ngTemplateOutlet=\"templateRef\"></span>\n <i\n class=\"info-sign__icon fa fa-info-circle\"\n aria-hidden=\"true\"\n [sTooltip]=\"tooltip\"\n [escape]=\"false\"\n tooltipPosition=\"top\"\n [displayTime]=\"displayTime\"\n mobileBehavior=\"tap\"\n showDelay=\"0\"\n [tooltipEvent]=\"focusedInputRef ? 'focus' : 'hover'\"\n [focusedInputRef]=\"focusedInputRef\">\n </i>\n</span>\n",
|
|
1031
1012
|
styles: [".info-sign{-ms-flex-align:baseline;align-items:baseline;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-pack:start;justify-content:flex-start}.info-sign .info-sign__icon{padding:0 12px}"]
|
|
1032
1013
|
})
|
|
1033
1014
|
], InfoSignComponent);
|
|
@@ -11630,12 +11611,9 @@ var TextAreaFieldComponent = /** @class */ (function () {
|
|
|
11630
11611
|
__decorate([
|
|
11631
11612
|
Input()
|
|
11632
11613
|
], TextAreaFieldComponent.prototype, "formControl", void 0);
|
|
11633
|
-
__decorate([
|
|
11634
|
-
ViewChild('inputRef')
|
|
11635
|
-
], TextAreaFieldComponent.prototype, "inputRef", void 0);
|
|
11636
11614
|
TextAreaFieldComponent = __decorate([
|
|
11637
11615
|
Component({
|
|
11638
|
-
template: "<s-field-label *ngIf=\"textArea\" [field]=\"field\"\n [fieldContainerRef]=\"textArea.textAreaElement?.nativeElement\"></s-field-label>\n\n<s-textarea\n #textArea\n [inputId]=\"(field.id || field.name)\"\n [rows]=\"field.rows\"\n [formControl]=\"formControl\"\n [inputStyle]=\"field.style\"\n [readOnly]=\"field.readonly ? field.readonly() : false\"\n [keyFilter]=\"field.keyFilter\"\n [placeholder]=\"field.placeholder\"\n [keepContext]=\"field.keepContext\"\n [speechRecognitionPlaceholder]=\"field.speechRecognitionPlaceholder\"\n [maxLength]=\"field.maxLength\"\n [speechRecognition]=\"field.speechRecognition\">\n</s-textarea>\n"
|
|
11616
|
+
template: "<s-field-label *ngIf=\"textArea.textAreaElement\" [field]=\"field\"\n [fieldContainerRef]=\"textArea.textAreaElement?.nativeElement\"></s-field-label>\n\n<s-textarea\n #textArea\n [inputId]=\"(field.id || field.name)\"\n [rows]=\"field.rows\"\n [formControl]=\"formControl\"\n [inputStyle]=\"field.style\"\n [readOnly]=\"field.readonly ? field.readonly() : false\"\n [keyFilter]=\"field.keyFilter\"\n [placeholder]=\"field.placeholder\"\n [keepContext]=\"field.keepContext\"\n [speechRecognitionPlaceholder]=\"field.speechRecognitionPlaceholder\"\n [maxLength]=\"field.maxLength\"\n [speechRecognition]=\"field.speechRecognition\">\n</s-textarea>\n"
|
|
11639
11617
|
})
|
|
11640
11618
|
], TextAreaFieldComponent);
|
|
11641
11619
|
return TextAreaFieldComponent;
|
|
@@ -11658,8 +11636,7 @@ var FieldsetComponent = /** @class */ (function () {
|
|
|
11658
11636
|
], FieldsetComponent.prototype, "errorMessages", void 0);
|
|
11659
11637
|
FieldsetComponent = __decorate([
|
|
11660
11638
|
Component({
|
|
11661
|
-
|
|
11662
|
-
template: "\n <p-fieldset [toggleable]=\"true\" (onBeforeToggle)=\"config.beforeToggle ? config.beforeToggle($event) : 'null'\"\n (onAfterToggle)=\"config.afterToggle ? config.afterToggle($event) : 'null'\">\n <p-header>{{config.header}}</p-header>\n <ng-container *ngFor=\"let conf of config.configs\">\n <ng-container *sDynamicForm=\"{ id: id, config: conf, group: group, errorMessages: errorMessages }\"></ng-container>\n </ng-container>\n </p-fieldset>\n "
|
|
11639
|
+
template: "\n <s-fieldset [toggleable]=\"true\" (beforeToggle)=\"config.beforeToggle ? config.beforeToggle($event) : 'null'\"\n (afterToggle)=\"config.afterToggle ? config.afterToggle($event) : 'null'\">\n <s-header>{{config.header}}</s-header>\n <ng-container *ngFor=\"let conf of config.configs\">\n <ng-container *sDynamicForm=\"{ id: id, config: conf, group: group, errorMessages: errorMessages }\"></ng-container>\n </ng-container>\n </s-fieldset>\n "
|
|
11663
11640
|
})
|
|
11664
11641
|
], FieldsetComponent);
|
|
11665
11642
|
return FieldsetComponent;
|
|
@@ -12061,6 +12038,19 @@ var TextFieldComponent = /** @class */ (function (_super) {
|
|
|
12061
12038
|
this.ngUnsubscribe.next();
|
|
12062
12039
|
this.ngUnsubscribe.complete();
|
|
12063
12040
|
};
|
|
12041
|
+
Object.defineProperty(TextFieldComponent.prototype, "inputElement", {
|
|
12042
|
+
get: function () {
|
|
12043
|
+
var _a, _b;
|
|
12044
|
+
if (this.inputRef instanceof InputMask) {
|
|
12045
|
+
return (_b = (_a = this.inputRef) === null || _a === void 0 ? void 0 : _a.inputViewChild) === null || _b === void 0 ? void 0 : _b.nativeElement;
|
|
12046
|
+
}
|
|
12047
|
+
else {
|
|
12048
|
+
return this.inputRef;
|
|
12049
|
+
}
|
|
12050
|
+
},
|
|
12051
|
+
enumerable: true,
|
|
12052
|
+
configurable: true
|
|
12053
|
+
});
|
|
12064
12054
|
TextFieldComponent.prototype.getCharacterPattern = function () {
|
|
12065
12055
|
return typeof this.field.characterPattern === "function"
|
|
12066
12056
|
? this.field.characterPattern()
|
|
@@ -12094,7 +12084,7 @@ var TextFieldComponent = /** @class */ (function (_super) {
|
|
|
12094
12084
|
], TextFieldComponent.prototype, "inputRef", void 0);
|
|
12095
12085
|
TextFieldComponent = __decorate([
|
|
12096
12086
|
Component({
|
|
12097
|
-
template: "<s-field-label *ngIf=\"
|
|
12087
|
+
template: "<s-field-label *ngIf=\"inputElement\" [field]=\"field\" [fieldContainerRef]=\"inputElement\"></s-field-label>\n\n<p-inputMask\n #inputRef\n *ngIf=\"field.mask; else noMask\"\n [type]=\"field.inputType || 'text'\"\n [inputId]=\"field.id || field.name\"\n [name]=\"field.name\"\n [mask]=\"isFunction(field.mask) ? field.mask() : field.mask\"\n [characterPattern]=\"getCharacterPattern()\"\n [unmask]=\"getUnmask()\"\n [placeholder]=\"field.placeholder\"\n slotChar=\"_\"\n [sTooltip]=\"field.tooltip\"\n tooltipPosition=\"top\"\n [showDelay]=\"500\"\n styleClass=\"mousetrap\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\"\n (onFocus)=\"onFocus.next($event)\"\n (onComplete)=\"onComplete.next($event)\"\n (onInput)=\"onInput.next($event)\"\n [formControl]=\"formControl\"\n [readonly]=\"field.readonly ? field.readonly() : false\"\n [autocomplete]=\"field.browserAutocomplete ? 'on' : 'off'\"\n>\n</p-inputMask>\n\n<ng-template #noMask>\n <ng-container>\n <div class=\"ui-inputgroup\">\n <ng-container *ngIf=\"field.leftAddon\">\n <span *ngIf=\"field.leftAddon.callback\" class=\"addon-button addon-button--left\">\n <s-button\n [label]=\"field.leftAddon.label\"\n [iconClass]=\"field.leftAddon.icon\"\n [priority]=\"field.leftAddon.priority\"\n [disabled]=\"isFunction(field.leftAddon.disabled) ? field.leftAddon.disabled() : field.leftAddon.disabled\"\n (onClick)=\"field.leftAddon.callback()\"\n >\n </s-button>\n </span>\n <span *ngIf=\"!field.leftAddon.callback\" class=\"ui-inputgroup-addon\">\n <span *ngIf=\"field.leftAddon.label\">{{ field.leftAddon.label }}</span>\n <span *ngIf=\"!field.leftAddon.label\" [ngClass]=\"field.leftAddon.icon\"></span>\n </span>\n </ng-container>\n\n <ng-container *ngTemplateOutlet=\"field.keyFilter ? inputKeyFilter : input\"></ng-container>\n\n <ng-container *ngIf=\"field.rightAddon\">\n <span *ngIf=\"field.rightAddon.callback\" class=\"addon-button addon-button--right\">\n <s-button\n [label]=\"field.rightAddon.label\"\n [iconClass]=\"field.rightAddon.icon\"\n [priority]=\"field.rightAddon.priority\"\n [disabled]=\"isFunction(field.rightAddon.disabled) ? field.rightAddon.disabled() : field.rightAddon.disabled\"\n (onClick)=\"field.rightAddon.callback()\"\n >\n </s-button>\n </span>\n <span *ngIf=\"!field.rightAddon.callback\" class=\"ui-inputgroup-addon\">\n <span *ngIf=\"field.rightAddon.label\">{{ field.rightAddon.label }}</span>\n <span *ngIf=\"!field.rightAddon.label\" [ngClass]=\"field.rightAddon.icon\"></span>\n </span>\n </ng-container>\n </div>\n </ng-container>\n</ng-template>\n\n<ng-template #input>\n <input\n #inputRef\n [type]=\"field.inputType || 'text'\"\n [id]=\"field.id || field.name\"\n [name]=\"field.name\"\n [sTooltip]=\"field.tooltip\"\n tooltipPosition=\"top\"\n [placeholder]=\"field.placeholder\"\n [showDelay]=\"500\"\n [maxLength]=\"field.maxLength\"\n pInputText\n [autocomplete]=\"field.browserAutocomplete ? 'on' : 'off'\"\n [ngClass]=\"'mousetrap'\"\n (blur)=\"field.onBlur ? field.onBlur($event) : null\"\n (focus)=\"onFocus.next($event)\"\n (input)=\"onInput.next($event)\"\n [formControl]=\"formControl\"\n [ngStyle]=\"field.style\"\n [readOnly]=\"field.readonly ? field.readonly() : false\"\n />\n</ng-template>\n\n<ng-template #inputKeyFilter>\n <input\n #inputText\n [type]=\"field.inputType || 'text'\"\n [id]=\"field.id || field.name\"\n [name]=\"field.name\"\n [sTooltip]=\"field.tooltip\"\n tooltipPosition=\"top\"\n [placeholder]=\"field.placeholder\"\n [showDelay]=\"500\"\n [maxLength]=\"field.maxLength\"\n pInputText\n [autocomplete]=\"field.browserAutocomplete ? 'on' : 'off'\"\n [ngClass]=\"'mousetrap'\"\n (blur)=\"field.onBlur ? field.onBlur($event) : null\"\n (focus)=\"onFocus.next($event)\"\n (input)=\"onInput.next($event)\"\n [pKeyFilter]=\"field.keyFilter\"\n [formControl]=\"formControl\"\n [ngStyle]=\"field.style\"\n [readOnly]=\"field.readonly ? field.readonly() : false\"\n />\n</ng-template>\n",
|
|
12098
12088
|
encapsulation: ViewEncapsulation.None,
|
|
12099
12089
|
styles: ["s-text-field.ng-dirty.ng-invalid .ui-inputtext{border-color:#c13018}s-text-field.ng-dirty.ng-invalid .ui-inputtext:hover{border-color:#e44328}.addon-button{border:1px solid #c1c1cc}.addon-button s-button .s-button-with-text,.addon-button s-button button{height:100%;min-width:40px}.addon-button--left{border-radius:5px 0 0 5px;border-right:none}.addon-button--left s-button button{border-bottom-right-radius:0;border-top-right-radius:0}.addon-button--right{border-left:none;border-radius:0 5px 5px 0}.addon-button--right s-button button{border-bottom-left-radius:0;border-top-left-radius:0}"]
|
|
12100
12090
|
})
|
|
@@ -12713,10 +12703,13 @@ var PasswordFieldModule = /** @class */ (function () {
|
|
|
12713
12703
|
var HeaderComponent = /** @class */ (function () {
|
|
12714
12704
|
function HeaderComponent() {
|
|
12715
12705
|
}
|
|
12706
|
+
__decorate([
|
|
12707
|
+
ViewChild('headerTemplate', { static: true })
|
|
12708
|
+
], HeaderComponent.prototype, "template", void 0);
|
|
12716
12709
|
HeaderComponent = __decorate([
|
|
12717
12710
|
Component({
|
|
12718
12711
|
selector: "s-header",
|
|
12719
|
-
template: "<ng-content></ng-content>"
|
|
12712
|
+
template: "\n <ng-template #headerTemplate>\n <ng-content></ng-content>\n </ng-template>"
|
|
12720
12713
|
})
|
|
12721
12714
|
], HeaderComponent);
|
|
12722
12715
|
return HeaderComponent;
|
|
@@ -13615,7 +13608,7 @@ var TextAreaComponent = /** @class */ (function () {
|
|
|
13615
13608
|
multi: true,
|
|
13616
13609
|
},
|
|
13617
13610
|
],
|
|
13618
|
-
styles: [".textarea{border-radius:3px;border:1px solid #c1c1cc;background:#fff;width:100%;max-width:100%;min-height:4em;min-width:10em;outline:0;padding:8px;display:block}.textarea:disabled{opacity:.5}:host.ng-invalid.ng-dirty .textarea{border-color:#c13018}"]
|
|
13611
|
+
styles: [".textarea{border-radius:3px;border:1px solid #c1c1cc;background:#fff;width:100%;max-width:100%;min-height:4em;min-width:10em;outline:0;padding:8px;display:block}.textarea:disabled{opacity:.5}.textarea:focus{transition:border-color .2s ease-out;border:1px solid #428bca}:host.ng-invalid.ng-dirty .textarea{border-color:#c13018}"]
|
|
13619
13612
|
})
|
|
13620
13613
|
], TextAreaComponent);
|
|
13621
13614
|
return TextAreaComponent;
|
|
@@ -13982,6 +13975,156 @@ var TextAreaModule = /** @class */ (function () {
|
|
|
13982
13975
|
return TextAreaModule;
|
|
13983
13976
|
}());
|
|
13984
13977
|
|
|
13978
|
+
var FieldsetComponent$1 = /** @class */ (function () {
|
|
13979
|
+
function FieldsetComponent() {
|
|
13980
|
+
this.legend = '';
|
|
13981
|
+
this.toggleable = false;
|
|
13982
|
+
this.icon = '';
|
|
13983
|
+
this.destroyOnHide = true;
|
|
13984
|
+
this.beforeToggle = new EventEmitter();
|
|
13985
|
+
this.afterToggle = new EventEmitter();
|
|
13986
|
+
this.active = true;
|
|
13987
|
+
}
|
|
13988
|
+
FieldsetComponent.prototype.toggleActive = function (originalEvent) {
|
|
13989
|
+
if (!this.toggleable) {
|
|
13990
|
+
return;
|
|
13991
|
+
}
|
|
13992
|
+
this.beforeToggle.next({ collapsed: this.active, originalEvent: originalEvent });
|
|
13993
|
+
this.active = !this.active;
|
|
13994
|
+
this.afterToggle.next({ collapsed: this.active, originalEvent: originalEvent });
|
|
13995
|
+
};
|
|
13996
|
+
__decorate([
|
|
13997
|
+
Input()
|
|
13998
|
+
], FieldsetComponent.prototype, "legend", void 0);
|
|
13999
|
+
__decorate([
|
|
14000
|
+
Input()
|
|
14001
|
+
], FieldsetComponent.prototype, "toggleable", void 0);
|
|
14002
|
+
__decorate([
|
|
14003
|
+
Input()
|
|
14004
|
+
], FieldsetComponent.prototype, "icon", void 0);
|
|
14005
|
+
__decorate([
|
|
14006
|
+
Input()
|
|
14007
|
+
], FieldsetComponent.prototype, "destroyOnHide", void 0);
|
|
14008
|
+
__decorate([
|
|
14009
|
+
ContentChild(HeaderComponent)
|
|
14010
|
+
], FieldsetComponent.prototype, "headerTemplate", void 0);
|
|
14011
|
+
__decorate([
|
|
14012
|
+
Output()
|
|
14013
|
+
], FieldsetComponent.prototype, "beforeToggle", void 0);
|
|
14014
|
+
__decorate([
|
|
14015
|
+
Output()
|
|
14016
|
+
], FieldsetComponent.prototype, "afterToggle", void 0);
|
|
14017
|
+
FieldsetComponent = __decorate([
|
|
14018
|
+
Component({
|
|
14019
|
+
selector: "s-fieldset",
|
|
14020
|
+
template: "\n<fieldset class=\"fieldset\" [class.fieldset-togglable]=\"toggleable\">\n <legend class=\"fieldset-title\" (sActivatedContent)=\"toggleActive($event)\">\n <ng-container *ngIf=\"toggleable\">\n <i *ngIf=\"active\" class=\"fas fa-solid fa-chevron-up\"></i>\n <i *ngIf=\"!active\" class=\"fas fa-solid fa-chevron-down\"></i>\n </ng-container>\n <ng-container *ngIf=\"headerTemplate?.template\">\n <ng-container *ngTemplateOutlet=\"headerTemplate.template\"></ng-container>\n </ng-container>\n <ng-container *ngIf=\"!headerTemplate\">\n <i *ngIf=\"icon\" [class]=\"icon\"></i>\n {{ legend }}\n </ng-container>\n </legend>\n <div\n *ngIf=\"destroyOnHide ? (toggleable ? active : true) : true\"\n [@toggleAnimation]=\"destroyOnHide ? null : (active ? 'open' : 'closed')\">\n <ng-content></ng-content>\n </div>\n</fieldset>\n",
|
|
14021
|
+
animations: [
|
|
14022
|
+
trigger('toggleAnimation', [
|
|
14023
|
+
transition(':enter', [
|
|
14024
|
+
style$7({ opacity: 0, height: 0 }),
|
|
14025
|
+
animate('300ms ease-out', style$7({ opacity: 1, height: '*' })),
|
|
14026
|
+
]),
|
|
14027
|
+
transition(':leave', [
|
|
14028
|
+
style$7({ opacity: 1, height: '*' }),
|
|
14029
|
+
animate('300ms ease-in', style$7({ opacity: 0, height: 0 })),
|
|
14030
|
+
]),
|
|
14031
|
+
state('open', style$7({ opacity: 1, height: '*' })),
|
|
14032
|
+
state('closed', style$7({ opacity: 0, height: 0 })),
|
|
14033
|
+
transition('open <=> closed', animate('300ms ease')),
|
|
14034
|
+
]),
|
|
14035
|
+
],
|
|
14036
|
+
styles: [".fieldset{background-color:#fff;border:1px solid #dedce5;border-radius:6px;margin-bottom:10px;padding:6px 8px;min-height:4.5em}.fieldset-title{font-family:\"Open Sans\",sans-serif;font-size:14px;font-weight:700;color:#212533;padding:0 4px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:4px;margin-left:16px}.fieldset-togglable .fieldset-title,.fieldset-togglable .fieldset-title *{cursor:pointer}.hidden{display:none}"]
|
|
14037
|
+
})
|
|
14038
|
+
], FieldsetComponent);
|
|
14039
|
+
return FieldsetComponent;
|
|
14040
|
+
}());
|
|
14041
|
+
|
|
14042
|
+
var AccessibilityEventDirective = /** @class */ (function () {
|
|
14043
|
+
function AccessibilityEventDirective(elementRef) {
|
|
14044
|
+
var _this = this;
|
|
14045
|
+
this.elementRef = elementRef;
|
|
14046
|
+
this.sActivatedContent = new EventEmitter();
|
|
14047
|
+
this.tabindex = 0;
|
|
14048
|
+
this.EVENT_LISTENER = function (event) {
|
|
14049
|
+
if (event instanceof KeyboardEvent) {
|
|
14050
|
+
var key = event.key;
|
|
14051
|
+
var validKeys = ['Enter', ' '];
|
|
14052
|
+
if (!validKeys.includes(key)) {
|
|
14053
|
+
return;
|
|
14054
|
+
}
|
|
14055
|
+
}
|
|
14056
|
+
_this.sActivatedContent.next(event);
|
|
14057
|
+
};
|
|
14058
|
+
this.setTabIndex();
|
|
14059
|
+
this.checkAccessbilityEvents();
|
|
14060
|
+
}
|
|
14061
|
+
AccessibilityEventDirective.prototype.setTabIndex = function () {
|
|
14062
|
+
var hasTabIndex = this.element.tabIndex >= 0;
|
|
14063
|
+
if (hasTabIndex) {
|
|
14064
|
+
return;
|
|
14065
|
+
}
|
|
14066
|
+
this.element.tabIndex = this.tabindex;
|
|
14067
|
+
};
|
|
14068
|
+
AccessibilityEventDirective.prototype.checkAccessbilityEvents = function () {
|
|
14069
|
+
this.element.addEventListener('click', this.EVENT_LISTENER);
|
|
14070
|
+
this.element.addEventListener('keydown', this.EVENT_LISTENER);
|
|
14071
|
+
};
|
|
14072
|
+
Object.defineProperty(AccessibilityEventDirective.prototype, "element", {
|
|
14073
|
+
get: function () {
|
|
14074
|
+
return this.elementRef.nativeElement;
|
|
14075
|
+
},
|
|
14076
|
+
enumerable: true,
|
|
14077
|
+
configurable: true
|
|
14078
|
+
});
|
|
14079
|
+
AccessibilityEventDirective.prototype.ngOnDestroy = function () {
|
|
14080
|
+
this.element.removeEventListener('click', this.EVENT_LISTENER);
|
|
14081
|
+
this.element.removeEventListener('keydown', this.EVENT_LISTENER);
|
|
14082
|
+
};
|
|
14083
|
+
AccessibilityEventDirective.ctorParameters = function () { return [
|
|
14084
|
+
{ type: ElementRef }
|
|
14085
|
+
]; };
|
|
14086
|
+
__decorate([
|
|
14087
|
+
Output()
|
|
14088
|
+
], AccessibilityEventDirective.prototype, "sActivatedContent", void 0);
|
|
14089
|
+
__decorate([
|
|
14090
|
+
Input()
|
|
14091
|
+
], AccessibilityEventDirective.prototype, "tabindex", void 0);
|
|
14092
|
+
AccessibilityEventDirective = __decorate([
|
|
14093
|
+
Directive({
|
|
14094
|
+
selector: '[sActivatedContent]'
|
|
14095
|
+
})
|
|
14096
|
+
], AccessibilityEventDirective);
|
|
14097
|
+
return AccessibilityEventDirective;
|
|
14098
|
+
}());
|
|
14099
|
+
|
|
14100
|
+
var AccessibilityEventsModule = /** @class */ (function () {
|
|
14101
|
+
function AccessibilityEventsModule() {
|
|
14102
|
+
}
|
|
14103
|
+
AccessibilityEventsModule = __decorate([
|
|
14104
|
+
NgModule({
|
|
14105
|
+
declarations: [AccessibilityEventDirective],
|
|
14106
|
+
imports: [
|
|
14107
|
+
CommonModule
|
|
14108
|
+
],
|
|
14109
|
+
exports: [AccessibilityEventDirective]
|
|
14110
|
+
})
|
|
14111
|
+
], AccessibilityEventsModule);
|
|
14112
|
+
return AccessibilityEventsModule;
|
|
14113
|
+
}());
|
|
14114
|
+
|
|
14115
|
+
var FieldsetModule = /** @class */ (function () {
|
|
14116
|
+
function FieldsetModule() {
|
|
14117
|
+
}
|
|
14118
|
+
FieldsetModule = __decorate([
|
|
14119
|
+
NgModule({
|
|
14120
|
+
imports: [CommonModule, AccessibilityEventsModule, BrowserAnimationsModule],
|
|
14121
|
+
declarations: [FieldsetComponent$1],
|
|
14122
|
+
exports: [FieldsetComponent$1],
|
|
14123
|
+
})
|
|
14124
|
+
], FieldsetModule);
|
|
14125
|
+
return FieldsetModule;
|
|
14126
|
+
}());
|
|
14127
|
+
|
|
13985
14128
|
var DynamicFormModule = /** @class */ (function () {
|
|
13986
14129
|
function DynamicFormModule() {
|
|
13987
14130
|
}
|
|
@@ -14020,6 +14163,7 @@ var DynamicFormModule = /** @class */ (function () {
|
|
|
14020
14163
|
ReactiveFormsModule,
|
|
14021
14164
|
TooltipModule,
|
|
14022
14165
|
FieldsetModule,
|
|
14166
|
+
StructureModule,
|
|
14023
14167
|
TableHeaderCheckboxModule,
|
|
14024
14168
|
FileUploadModule,
|
|
14025
14169
|
TableModule,
|
|
@@ -23263,5 +23407,5 @@ var fallback = {
|
|
|
23263
23407
|
* Generated bundle index. Do not edit.
|
|
23264
23408
|
*/
|
|
23265
23409
|
|
|
23266
|
-
export { AccordionComponent, AccordionModule, AccordionPanelComponent, AlertComponent, AlertModule, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonAnimation, 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, TextAreaComponent, TextAreaField, TextAreaIAComponent, TextAreaIAModule, TextAreaModule, 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, getElementLeftoverContentAvailable, getElementPositionInfo, 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,
|
|
23410
|
+
export { AccessibilityEventDirective, AccessibilityEventsModule, AccordionComponent, AccordionModule, AccordionPanelComponent, AlertComponent, AlertModule, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonAnimation, 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, FieldsetComponent$1 as FieldsetComponent, FieldsetModule, FileUploadComponent, FileUploadModule, FileUploadPermissions, FileValidation, FooterComponent, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, Grid, GridMenuComponent, GridMenuModule, GridType, HeaderComponent, 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, StructureModule, StructureType, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TemplateDirective, TemplateModule, TextAreaComponent, TextAreaField, TextAreaIAComponent, TextAreaIAModule, TextAreaModule, 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, getElementLeftoverContentAvailable, getElementPositionInfo, 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, ProfilePictureFieldComponent as ɵbs, EditorFieldModule as ɵbt, EditorFieldComponent as ɵbu, SpeechRecognitionModule as ɵbv, SpeechRecognitionComponent as ɵbw, SpeechRecognitionService as ɵbx, TextToSpeechService as ɵby, AutocompleteFieldComponent as ɵbz, InfoSignComponent as ɵc, BooleanFieldComponent as ɵca, BooleanSwitchFieldComponent as ɵcb, CalendarFieldComponent as ɵcc, ChipsFieldComponent as ɵcd, CountryPhonePickerFieldComponent as ɵce, DynamicFieldComponent as ɵcf, DynamicFormDirective as ɵcg, FieldsetComponent as ɵch, FileUploadComponent$1 as ɵci, LookupFieldComponent as ɵcj, RadioButtonComponent as ɵck, RowComponent as ɵcl, SectionComponent as ɵcm, SelectFieldComponent as ɵcn, SliderFieldComponent as ɵco, TextAreaFieldComponent as ɵcp, TextAreaIAFieldComponent as ɵcq, IAssistService as ɵcr, ButtonFieldComponent as ɵcs, DecimalField as ɵcu, SideTableComponent as ɵcv, InfiniteScrollModule as ɵcw, InfiniteScrollDirective as ɵcx, IAInsightSidebarComponent as ɵcy, IAInsightCardComponent as ɵcz, TieredMenuEventService as ɵd, IAInsightCardLoaderComponent as ɵda, GridMenuItemComponent as ɵdb, InlineEditItemComponent as ɵdc, InlineEditCalendarComponent as ɵdd, InlineEditLookupComponent as ɵde, InlineEditNumberComponent as ɵdf, InlineEditTextComponent as ɵdg, InlineEditTextAreaComponent as ɵdh, InlineEditTextAreaIAComponent as ɵdi, KanbanEventService as ɵdj, KanbanItemComponent as ɵdk, KanbanColumnComponent as ɵdl, KanbanItemDraggingComponent as ɵdm, NumberLocaleOptions as ɵdn, BorderButtonModule as ɵdo, BorderButtonComponent as ɵdp, ProgressBarDeterminateComponent as ɵdq, ProgressBarIndeterminateComponent as ɵdr, SelectButtonItemComponent as ɵds, SlidePanelService as ɵdt, ThumbnailItemComponent as ɵdu, ThumbnailItemVideoComponent as ɵdv, ThumbnailItemImageComponent as ɵdw, TimelineItemModule as ɵdx, TimelineIconItemComponent as ɵdy, HorizontalTimelineModule as ɵdz, TieredMenuService as ɵe, HorizontalTimelineComponent as ɵea, VerticalTimelineModule as ɵeb, VerticalTimelineComponent as ɵec, RangeLineComponent as ɵed, CollapseOptionComponent as ɵee, CollapsedItemsComponent as ɵef, VerticalItemsComponent as ɵeg, ChipItemComponent as ɵeh, TieredMenuGlobalService as ɵf, TieredMenuComponent as ɵg, TieredMenuNestedComponent as ɵh, TieredMenuItemComponent as ɵi, TieredMenuDividerComponent as ɵj, LocalizedCurrencyImpurePipe as ɵk, LocalizedBignumberPipe as ɵl, LocalizedBignumberImpurePipe as ɵm, NumericPipe as ɵn, ChatMessageComponent as ɵo, CustomTranslationsModule as ɵp, CodeEditorComponent as ɵq, CoreFacade as ɵr, CodeMirror6Core as ɵs, CountryPhonePickerService as ɵt, EmptyStateGoBackComponent as ɵu, IAssistIconComponent as ɵv, SeniorIconComponent as ɵw, DotsIndicatorComponent as ɵx, LoadingIndicatorComponent as ɵy, FileUploadService as ɵz };
|
|
23267
23411
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|