@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';
|
|
@@ -477,8 +477,7 @@ let TooltipDirective = class TooltipDirective {
|
|
|
477
477
|
this.visible = true;
|
|
478
478
|
this.mobileBehavior = MobileBehavior.Pressing;
|
|
479
479
|
this.componentRef = null;
|
|
480
|
-
this.
|
|
481
|
-
this.boundOnWindowMouseMoveFunction = this.onWindowMouseMove.bind(this);
|
|
480
|
+
this.tooltipCreatedByFocus = false;
|
|
482
481
|
this.debounceCreateTooltipFunction = this.debounceUtils.debounceLeading(() => this._createTooltip(true, true));
|
|
483
482
|
}
|
|
484
483
|
ngOnInit() {
|
|
@@ -488,22 +487,6 @@ let TooltipDirective = class TooltipDirective {
|
|
|
488
487
|
ngOnDestroy() {
|
|
489
488
|
this.destroy();
|
|
490
489
|
}
|
|
491
|
-
onWindowMouseMove(event) {
|
|
492
|
-
if (!this.componentRef) {
|
|
493
|
-
return;
|
|
494
|
-
}
|
|
495
|
-
const elementRect = this.elementRef.nativeElement.getBoundingClientRect();
|
|
496
|
-
const toolTipRect = this.tooltipDivElement.getBoundingClientRect();
|
|
497
|
-
const totalElementArea = {
|
|
498
|
-
top: Math.min(elementRect.top, toolTipRect.top),
|
|
499
|
-
right: Math.max(elementRect.right, toolTipRect.right),
|
|
500
|
-
left: Math.min(elementRect.left, toolTipRect.left),
|
|
501
|
-
bottom: Math.max(elementRect.bottom, toolTipRect.bottom),
|
|
502
|
-
};
|
|
503
|
-
if (isMousePositionOutsideOfElement(event, totalElementArea) && !this.existFocusedInputRefTooltip) {
|
|
504
|
-
this.destroy();
|
|
505
|
-
}
|
|
506
|
-
}
|
|
507
490
|
/**
|
|
508
491
|
* Manipula a visibilidade do tooltip quando houver uma referência de input.
|
|
509
492
|
*/
|
|
@@ -513,15 +496,15 @@ let TooltipDirective = class TooltipDirective {
|
|
|
513
496
|
const icon = this.getIconFromFocusedInput();
|
|
514
497
|
this.renderer.listen(inputFocus, "focus", () => {
|
|
515
498
|
if (icon) {
|
|
516
|
-
this.existFocusedInputRefTooltip = true;
|
|
517
499
|
this._createTooltip(false, false);
|
|
500
|
+
this.tooltipCreatedByFocus = true;
|
|
518
501
|
}
|
|
519
502
|
});
|
|
520
503
|
this.renderer.listen(inputFocus, "blur", () => {
|
|
521
504
|
if (icon) {
|
|
522
505
|
this.removeTooltip(icon);
|
|
523
506
|
this.destroy();
|
|
524
|
-
this.
|
|
507
|
+
this.tooltipCreatedByFocus = false;
|
|
525
508
|
}
|
|
526
509
|
});
|
|
527
510
|
}
|
|
@@ -561,12 +544,12 @@ let TooltipDirective = class TooltipDirective {
|
|
|
561
544
|
}
|
|
562
545
|
}
|
|
563
546
|
onMouseEnter() {
|
|
564
|
-
if (this.tooltipEvent === TooltipEvent.Hover) {
|
|
547
|
+
if (this.tooltipEvent === TooltipEvent.Hover || this.focusedInputRef) {
|
|
565
548
|
this.debounceCreateTooltipFunction();
|
|
566
549
|
}
|
|
567
550
|
}
|
|
568
551
|
onMouseLeave() {
|
|
569
|
-
if (this.tooltipEvent === TooltipEvent.Hover && !this.
|
|
552
|
+
if ((this.tooltipEvent === TooltipEvent.Hover || this.focusedInputRef) && !this.tooltipCreatedByFocus) {
|
|
570
553
|
this.destroy();
|
|
571
554
|
}
|
|
572
555
|
}
|
|
@@ -628,7 +611,6 @@ let TooltipDirective = class TooltipDirective {
|
|
|
628
611
|
if (this.componentRef !== null) {
|
|
629
612
|
this.componentRef.instance.visible = this.visible;
|
|
630
613
|
this.setTooltipPositionProperty();
|
|
631
|
-
window.addEventListener("mousemove", this.boundOnWindowMouseMoveFunction);
|
|
632
614
|
}
|
|
633
615
|
}
|
|
634
616
|
setTooltipPositionProperty() {
|
|
@@ -738,7 +720,6 @@ let TooltipDirective = class TooltipDirective {
|
|
|
738
720
|
this.componentRef = null;
|
|
739
721
|
this.tooltipDivElement = null;
|
|
740
722
|
}
|
|
741
|
-
window.removeEventListener("mousemove", this.boundOnWindowMouseMoveFunction);
|
|
742
723
|
}
|
|
743
724
|
};
|
|
744
725
|
TooltipDirective.ctorParameters = () => [
|
|
@@ -973,7 +954,7 @@ let InfoSignComponent = class InfoSignComponent {
|
|
|
973
954
|
InfoSignComponent = __decorate([
|
|
974
955
|
Component({
|
|
975
956
|
selector: "s-info-sign-component",
|
|
976
|
-
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",
|
|
957
|
+
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",
|
|
977
958
|
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}"]
|
|
978
959
|
})
|
|
979
960
|
], InfoSignComponent);
|
|
@@ -10919,12 +10900,9 @@ __decorate([
|
|
|
10919
10900
|
__decorate([
|
|
10920
10901
|
Input()
|
|
10921
10902
|
], TextAreaFieldComponent.prototype, "formControl", void 0);
|
|
10922
|
-
__decorate([
|
|
10923
|
-
ViewChild('inputRef')
|
|
10924
|
-
], TextAreaFieldComponent.prototype, "inputRef", void 0);
|
|
10925
10903
|
TextAreaFieldComponent = __decorate([
|
|
10926
10904
|
Component({
|
|
10927
|
-
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"
|
|
10905
|
+
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"
|
|
10928
10906
|
})
|
|
10929
10907
|
], TextAreaFieldComponent);
|
|
10930
10908
|
|
|
@@ -10944,15 +10922,14 @@ __decorate([
|
|
|
10944
10922
|
], FieldsetComponent.prototype, "errorMessages", void 0);
|
|
10945
10923
|
FieldsetComponent = __decorate([
|
|
10946
10924
|
Component({
|
|
10947
|
-
selector: "s-fieldset",
|
|
10948
10925
|
template: `
|
|
10949
|
-
<
|
|
10950
|
-
(
|
|
10951
|
-
<
|
|
10926
|
+
<s-fieldset [toggleable]="true" (beforeToggle)="config.beforeToggle ? config.beforeToggle($event) : 'null'"
|
|
10927
|
+
(afterToggle)="config.afterToggle ? config.afterToggle($event) : 'null'">
|
|
10928
|
+
<s-header>{{config.header}}</s-header>
|
|
10952
10929
|
<ng-container *ngFor="let conf of config.configs">
|
|
10953
10930
|
<ng-container *sDynamicForm="{ id: id, config: conf, group: group, errorMessages: errorMessages }"></ng-container>
|
|
10954
10931
|
</ng-container>
|
|
10955
|
-
</
|
|
10932
|
+
</s-fieldset>
|
|
10956
10933
|
`
|
|
10957
10934
|
})
|
|
10958
10935
|
], FieldsetComponent);
|
|
@@ -11382,6 +11359,15 @@ let TextFieldComponent = class TextFieldComponent extends BaseFieldComponent {
|
|
|
11382
11359
|
this.ngUnsubscribe.next();
|
|
11383
11360
|
this.ngUnsubscribe.complete();
|
|
11384
11361
|
}
|
|
11362
|
+
get inputElement() {
|
|
11363
|
+
var _a, _b;
|
|
11364
|
+
if (this.inputRef instanceof InputMask) {
|
|
11365
|
+
return (_b = (_a = this.inputRef) === null || _a === void 0 ? void 0 : _a.inputViewChild) === null || _b === void 0 ? void 0 : _b.nativeElement;
|
|
11366
|
+
}
|
|
11367
|
+
else {
|
|
11368
|
+
return this.inputRef;
|
|
11369
|
+
}
|
|
11370
|
+
}
|
|
11385
11371
|
getCharacterPattern() {
|
|
11386
11372
|
return typeof this.field.characterPattern === "function"
|
|
11387
11373
|
? this.field.characterPattern()
|
|
@@ -11416,7 +11402,7 @@ __decorate([
|
|
|
11416
11402
|
], TextFieldComponent.prototype, "inputRef", void 0);
|
|
11417
11403
|
TextFieldComponent = __decorate([
|
|
11418
11404
|
Component({
|
|
11419
|
-
template: "<s-field-label *ngIf=\"
|
|
11405
|
+
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",
|
|
11420
11406
|
encapsulation: ViewEncapsulation.None,
|
|
11421
11407
|
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}"]
|
|
11422
11408
|
})
|
|
@@ -11962,10 +11948,16 @@ PasswordFieldModule = __decorate([
|
|
|
11962
11948
|
|
|
11963
11949
|
let HeaderComponent = class HeaderComponent {
|
|
11964
11950
|
};
|
|
11951
|
+
__decorate([
|
|
11952
|
+
ViewChild('headerTemplate', { static: true })
|
|
11953
|
+
], HeaderComponent.prototype, "template", void 0);
|
|
11965
11954
|
HeaderComponent = __decorate([
|
|
11966
11955
|
Component({
|
|
11967
11956
|
selector: "s-header",
|
|
11968
|
-
template:
|
|
11957
|
+
template: `
|
|
11958
|
+
<ng-template #headerTemplate>
|
|
11959
|
+
<ng-content></ng-content>
|
|
11960
|
+
</ng-template>`
|
|
11969
11961
|
})
|
|
11970
11962
|
], HeaderComponent);
|
|
11971
11963
|
|
|
@@ -12807,7 +12799,7 @@ TextAreaComponent = TextAreaComponent_1 = __decorate([
|
|
|
12807
12799
|
multi: true,
|
|
12808
12800
|
},
|
|
12809
12801
|
],
|
|
12810
|
-
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}"]
|
|
12802
|
+
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}"]
|
|
12811
12803
|
})
|
|
12812
12804
|
], TextAreaComponent);
|
|
12813
12805
|
|
|
@@ -13134,6 +13126,143 @@ TextAreaModule = __decorate([
|
|
|
13134
13126
|
})
|
|
13135
13127
|
], TextAreaModule);
|
|
13136
13128
|
|
|
13129
|
+
let FieldsetComponent$1 = class FieldsetComponent {
|
|
13130
|
+
constructor() {
|
|
13131
|
+
this.legend = '';
|
|
13132
|
+
this.toggleable = false;
|
|
13133
|
+
this.icon = '';
|
|
13134
|
+
this.destroyOnHide = true;
|
|
13135
|
+
this.beforeToggle = new EventEmitter();
|
|
13136
|
+
this.afterToggle = new EventEmitter();
|
|
13137
|
+
this.active = true;
|
|
13138
|
+
}
|
|
13139
|
+
toggleActive(originalEvent) {
|
|
13140
|
+
if (!this.toggleable) {
|
|
13141
|
+
return;
|
|
13142
|
+
}
|
|
13143
|
+
this.beforeToggle.next({ collapsed: this.active, originalEvent });
|
|
13144
|
+
this.active = !this.active;
|
|
13145
|
+
this.afterToggle.next({ collapsed: this.active, originalEvent });
|
|
13146
|
+
}
|
|
13147
|
+
};
|
|
13148
|
+
__decorate([
|
|
13149
|
+
Input()
|
|
13150
|
+
], FieldsetComponent$1.prototype, "legend", void 0);
|
|
13151
|
+
__decorate([
|
|
13152
|
+
Input()
|
|
13153
|
+
], FieldsetComponent$1.prototype, "toggleable", void 0);
|
|
13154
|
+
__decorate([
|
|
13155
|
+
Input()
|
|
13156
|
+
], FieldsetComponent$1.prototype, "icon", void 0);
|
|
13157
|
+
__decorate([
|
|
13158
|
+
Input()
|
|
13159
|
+
], FieldsetComponent$1.prototype, "destroyOnHide", void 0);
|
|
13160
|
+
__decorate([
|
|
13161
|
+
ContentChild(HeaderComponent)
|
|
13162
|
+
], FieldsetComponent$1.prototype, "headerTemplate", void 0);
|
|
13163
|
+
__decorate([
|
|
13164
|
+
Output()
|
|
13165
|
+
], FieldsetComponent$1.prototype, "beforeToggle", void 0);
|
|
13166
|
+
__decorate([
|
|
13167
|
+
Output()
|
|
13168
|
+
], FieldsetComponent$1.prototype, "afterToggle", void 0);
|
|
13169
|
+
FieldsetComponent$1 = __decorate([
|
|
13170
|
+
Component({
|
|
13171
|
+
selector: "s-fieldset",
|
|
13172
|
+
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",
|
|
13173
|
+
animations: [
|
|
13174
|
+
trigger('toggleAnimation', [
|
|
13175
|
+
transition(':enter', [
|
|
13176
|
+
style$7({ opacity: 0, height: 0 }),
|
|
13177
|
+
animate('300ms ease-out', style$7({ opacity: 1, height: '*' })),
|
|
13178
|
+
]),
|
|
13179
|
+
transition(':leave', [
|
|
13180
|
+
style$7({ opacity: 1, height: '*' }),
|
|
13181
|
+
animate('300ms ease-in', style$7({ opacity: 0, height: 0 })),
|
|
13182
|
+
]),
|
|
13183
|
+
state('open', style$7({ opacity: 1, height: '*' })),
|
|
13184
|
+
state('closed', style$7({ opacity: 0, height: 0 })),
|
|
13185
|
+
transition('open <=> closed', animate('300ms ease')),
|
|
13186
|
+
]),
|
|
13187
|
+
],
|
|
13188
|
+
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}"]
|
|
13189
|
+
})
|
|
13190
|
+
], FieldsetComponent$1);
|
|
13191
|
+
|
|
13192
|
+
let AccessibilityEventDirective = class AccessibilityEventDirective {
|
|
13193
|
+
constructor(elementRef) {
|
|
13194
|
+
this.elementRef = elementRef;
|
|
13195
|
+
this.sActivatedContent = new EventEmitter();
|
|
13196
|
+
this.tabindex = 0;
|
|
13197
|
+
this.EVENT_LISTENER = (event) => {
|
|
13198
|
+
if (event instanceof KeyboardEvent) {
|
|
13199
|
+
const key = event.key;
|
|
13200
|
+
const validKeys = ['Enter', ' '];
|
|
13201
|
+
if (!validKeys.includes(key)) {
|
|
13202
|
+
return;
|
|
13203
|
+
}
|
|
13204
|
+
}
|
|
13205
|
+
this.sActivatedContent.next(event);
|
|
13206
|
+
};
|
|
13207
|
+
this.setTabIndex();
|
|
13208
|
+
this.checkAccessbilityEvents();
|
|
13209
|
+
}
|
|
13210
|
+
setTabIndex() {
|
|
13211
|
+
const hasTabIndex = this.element.tabIndex >= 0;
|
|
13212
|
+
if (hasTabIndex) {
|
|
13213
|
+
return;
|
|
13214
|
+
}
|
|
13215
|
+
this.element.tabIndex = this.tabindex;
|
|
13216
|
+
}
|
|
13217
|
+
checkAccessbilityEvents() {
|
|
13218
|
+
this.element.addEventListener('click', this.EVENT_LISTENER);
|
|
13219
|
+
this.element.addEventListener('keydown', this.EVENT_LISTENER);
|
|
13220
|
+
}
|
|
13221
|
+
get element() {
|
|
13222
|
+
return this.elementRef.nativeElement;
|
|
13223
|
+
}
|
|
13224
|
+
ngOnDestroy() {
|
|
13225
|
+
this.element.removeEventListener('click', this.EVENT_LISTENER);
|
|
13226
|
+
this.element.removeEventListener('keydown', this.EVENT_LISTENER);
|
|
13227
|
+
}
|
|
13228
|
+
};
|
|
13229
|
+
AccessibilityEventDirective.ctorParameters = () => [
|
|
13230
|
+
{ type: ElementRef }
|
|
13231
|
+
];
|
|
13232
|
+
__decorate([
|
|
13233
|
+
Output()
|
|
13234
|
+
], AccessibilityEventDirective.prototype, "sActivatedContent", void 0);
|
|
13235
|
+
__decorate([
|
|
13236
|
+
Input()
|
|
13237
|
+
], AccessibilityEventDirective.prototype, "tabindex", void 0);
|
|
13238
|
+
AccessibilityEventDirective = __decorate([
|
|
13239
|
+
Directive({
|
|
13240
|
+
selector: '[sActivatedContent]'
|
|
13241
|
+
})
|
|
13242
|
+
], AccessibilityEventDirective);
|
|
13243
|
+
|
|
13244
|
+
let AccessibilityEventsModule = class AccessibilityEventsModule {
|
|
13245
|
+
};
|
|
13246
|
+
AccessibilityEventsModule = __decorate([
|
|
13247
|
+
NgModule({
|
|
13248
|
+
declarations: [AccessibilityEventDirective],
|
|
13249
|
+
imports: [
|
|
13250
|
+
CommonModule
|
|
13251
|
+
],
|
|
13252
|
+
exports: [AccessibilityEventDirective]
|
|
13253
|
+
})
|
|
13254
|
+
], AccessibilityEventsModule);
|
|
13255
|
+
|
|
13256
|
+
let FieldsetModule = class FieldsetModule {
|
|
13257
|
+
};
|
|
13258
|
+
FieldsetModule = __decorate([
|
|
13259
|
+
NgModule({
|
|
13260
|
+
imports: [CommonModule, AccessibilityEventsModule, BrowserAnimationsModule],
|
|
13261
|
+
declarations: [FieldsetComponent$1],
|
|
13262
|
+
exports: [FieldsetComponent$1],
|
|
13263
|
+
})
|
|
13264
|
+
], FieldsetModule);
|
|
13265
|
+
|
|
13137
13266
|
let DynamicFormModule = class DynamicFormModule {
|
|
13138
13267
|
};
|
|
13139
13268
|
DynamicFormModule = __decorate([
|
|
@@ -13171,6 +13300,7 @@ DynamicFormModule = __decorate([
|
|
|
13171
13300
|
ReactiveFormsModule,
|
|
13172
13301
|
TooltipModule,
|
|
13173
13302
|
FieldsetModule,
|
|
13303
|
+
StructureModule,
|
|
13174
13304
|
TableHeaderCheckboxModule,
|
|
13175
13305
|
FileUploadModule,
|
|
13176
13306
|
TableModule,
|
|
@@ -21717,5 +21847,5 @@ const fallback = {
|
|
|
21717
21847
|
* Generated bundle index. Do not edit.
|
|
21718
21848
|
*/
|
|
21719
21849
|
|
|
21720
|
-
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,
|
|
21850
|
+
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 };
|
|
21721
21851
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|