@seniorsistemas/angular-components 17.17.13 → 17.18.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 +259 -62
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/components/dynamic-form/configurations/fields/field.d.ts +2 -0
- package/components/index.d.ts +1 -0
- package/components/info-sign/info-sign.directive.d.ts +1 -0
- package/components/thumbnails/components/thumbnail-item/components/thumbnail-item-image/thumbnail-item-image.component.d.ts +3 -0
- package/components/thumbnails/components/thumbnail-item/components/thumbnail-item-video/thumbnail-item-video.component.d.ts +8 -0
- package/components/thumbnails/components/thumbnail-item/thumbnail-item.component.d.ts +18 -0
- package/components/thumbnails/index.d.ts +3 -0
- package/components/thumbnails/models/thumbnails-item.d.ts +20 -0
- package/components/thumbnails/thumbnails.component.d.ts +16 -0
- package/components/thumbnails/thumbnails.module.d.ts +2 -0
- package/components/tooltip/tooltip.directive.d.ts +2 -7
- package/esm2015/components/dynamic-form/components/dynamic-field/dynamic-field.component.js +2 -2
- package/esm2015/components/dynamic-form/components/field-label/field-label.component.js +2 -2
- package/esm2015/components/dynamic-form/components/fields/radio-button/radio-button-field.component.js +9 -2
- package/esm2015/components/dynamic-form/components/grid/row/row.component.js +2 -2
- package/esm2015/components/dynamic-form/configurations/fields/field.js +3 -2
- package/esm2015/components/index.js +2 -1
- package/esm2015/components/info-sign/info-sign.directive.js +12 -5
- package/esm2015/components/thumbnails/components/thumbnail-item/components/thumbnail-item-image/thumbnail-item-image.component.js +16 -0
- package/esm2015/components/thumbnails/components/thumbnail-item/components/thumbnail-item-video/thumbnail-item-video.component.js +41 -0
- package/esm2015/components/thumbnails/components/thumbnail-item/thumbnail-item.component.js +56 -0
- package/esm2015/components/thumbnails/index.js +3 -0
- package/esm2015/components/thumbnails/models/thumbnails-item.js +1 -0
- package/esm2015/components/thumbnails/thumbnails.component.js +52 -0
- package/esm2015/components/thumbnails/thumbnails.module.js +21 -0
- package/esm2015/components/tooltip/tooltip.directive.js +42 -40
- package/esm2015/locale/fallback.js +4 -1
- package/esm2015/seniorsistemas-angular-components.js +15 -12
- package/esm5/components/dynamic-form/components/dynamic-field/dynamic-field.component.js +2 -2
- package/esm5/components/dynamic-form/components/field-label/field-label.component.js +2 -2
- package/esm5/components/dynamic-form/components/fields/radio-button/radio-button-field.component.js +3 -3
- package/esm5/components/dynamic-form/components/grid/row/row.component.js +2 -2
- package/esm5/components/dynamic-form/configurations/fields/field.js +3 -2
- package/esm5/components/index.js +2 -1
- package/esm5/components/info-sign/info-sign.directive.js +12 -5
- package/esm5/components/thumbnails/components/thumbnail-item/components/thumbnail-item-image/thumbnail-item-image.component.js +19 -0
- package/esm5/components/thumbnails/components/thumbnail-item/components/thumbnail-item-video/thumbnail-item-video.component.js +44 -0
- package/esm5/components/thumbnails/components/thumbnail-item/thumbnail-item.component.js +58 -0
- package/esm5/components/thumbnails/index.js +3 -0
- package/esm5/components/thumbnails/models/thumbnails-item.js +1 -0
- package/esm5/components/thumbnails/thumbnails.component.js +57 -0
- package/esm5/components/thumbnails/thumbnails.module.js +24 -0
- package/esm5/components/tooltip/tooltip.directive.js +45 -40
- package/esm5/locale/fallback.js +4 -1
- package/esm5/seniorsistemas-angular-components.js +15 -12
- package/fesm2015/seniorsistemas-angular-components.js +231 -51
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +244 -52
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.d.ts +14 -11
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -372,6 +372,8 @@ TooltipComponent = __decorate([
|
|
|
372
372
|
})
|
|
373
373
|
], TooltipComponent);
|
|
374
374
|
|
|
375
|
+
const isNullOrUndefined = (value) => value === null || value === undefined;
|
|
376
|
+
|
|
375
377
|
const DEFAULT_TIMER = 300;
|
|
376
378
|
let DebounceUtils = class DebounceUtils {
|
|
377
379
|
debounce(func, timeout = DEFAULT_TIMER) {
|
|
@@ -430,8 +432,9 @@ let TooltipDirective = class TooltipDirective {
|
|
|
430
432
|
this.visible = true;
|
|
431
433
|
this.mobileBehavior = MobileBehavior.Pressing;
|
|
432
434
|
this.componentRef = null;
|
|
435
|
+
this.existFocusedInputRefTooltip = false;
|
|
433
436
|
this.boundOnWindowMouseMoveFunction = this.onWindowMouseMove.bind(this);
|
|
434
|
-
this.debounceCreateTooltipFunction = this.debounceUtils.debounceLeading(() => this.
|
|
437
|
+
this.debounceCreateTooltipFunction = this.debounceUtils.debounceLeading(() => this._createTooltip(true, true));
|
|
435
438
|
}
|
|
436
439
|
ngOnInit() {
|
|
437
440
|
this.validatePosition();
|
|
@@ -452,7 +455,7 @@ let TooltipDirective = class TooltipDirective {
|
|
|
452
455
|
left: Math.min(elementRect.left, toolTipRect.left),
|
|
453
456
|
bottom: Math.max(elementRect.bottom, toolTipRect.bottom),
|
|
454
457
|
};
|
|
455
|
-
if (this.isMousePositionOutsideOfElement(event.clientX, event.clientY, totalElementArea)) {
|
|
458
|
+
if (this.isMousePositionOutsideOfElement(event.clientX, event.clientY, totalElementArea) && !this.existFocusedInputRefTooltip) {
|
|
456
459
|
this.destroy();
|
|
457
460
|
}
|
|
458
461
|
}
|
|
@@ -466,15 +469,17 @@ let TooltipDirective = class TooltipDirective {
|
|
|
466
469
|
if (this.focusedInputRef) {
|
|
467
470
|
const inputFocus = this.focusedInputRef;
|
|
468
471
|
const icon = this.getIconFromFocusedInput();
|
|
469
|
-
this.renderer.listen(
|
|
472
|
+
this.renderer.listen(inputFocus, "focus", () => {
|
|
470
473
|
if (icon) {
|
|
471
|
-
this.
|
|
474
|
+
this.existFocusedInputRefTooltip = true;
|
|
475
|
+
this._createTooltip(false, false);
|
|
472
476
|
}
|
|
473
477
|
});
|
|
474
478
|
this.renderer.listen(inputFocus, "blur", () => {
|
|
475
479
|
if (icon) {
|
|
476
480
|
this.removeTooltip(icon);
|
|
477
481
|
this.destroy();
|
|
482
|
+
this.existFocusedInputRefTooltip = false;
|
|
478
483
|
}
|
|
479
484
|
});
|
|
480
485
|
}
|
|
@@ -505,7 +510,7 @@ let TooltipDirective = class TooltipDirective {
|
|
|
505
510
|
}
|
|
506
511
|
onFocus() {
|
|
507
512
|
if (this.tooltipEvent === TooltipEvent.Focus) {
|
|
508
|
-
this.
|
|
513
|
+
this._createTooltip(true, true);
|
|
509
514
|
}
|
|
510
515
|
}
|
|
511
516
|
onBlur() {
|
|
@@ -519,14 +524,17 @@ let TooltipDirective = class TooltipDirective {
|
|
|
519
524
|
}
|
|
520
525
|
}
|
|
521
526
|
onMouseLeave() {
|
|
522
|
-
if (this.tooltipEvent === TooltipEvent.Hover) {
|
|
527
|
+
if (this.tooltipEvent === TooltipEvent.Hover && !this.existFocusedInputRefTooltip) {
|
|
523
528
|
this.destroy();
|
|
524
529
|
}
|
|
525
530
|
}
|
|
526
531
|
onTouchStart() {
|
|
527
532
|
if (this.tooltipEvent === TooltipEvent.Hover) {
|
|
528
533
|
window.clearTimeout(this.touchTimeout);
|
|
529
|
-
|
|
534
|
+
const _delay = this.mobileBehavior === MobileBehavior.Pressing ? this.showDelay : 0;
|
|
535
|
+
this.touchTimeout = window.setTimeout(() => {
|
|
536
|
+
this._createTooltip(true, true);
|
|
537
|
+
}, _delay);
|
|
530
538
|
}
|
|
531
539
|
}
|
|
532
540
|
onTouchEnd() {
|
|
@@ -544,42 +552,34 @@ let TooltipDirective = class TooltipDirective {
|
|
|
544
552
|
throw new Error(`Tooltip ${this.position} position is unexpected`);
|
|
545
553
|
}
|
|
546
554
|
}
|
|
547
|
-
createTootip() {
|
|
548
|
-
var _a;
|
|
549
|
-
if (this.componentRef === null && ((_a = this.tooltip) === null || _a === void 0 ? void 0 : _a.length)) {
|
|
550
|
-
const domElem = this.getDomElement();
|
|
551
|
-
document.body.appendChild(domElem);
|
|
552
|
-
this.setTooltipComponentProperties();
|
|
553
|
-
this.showTimeout = window.setTimeout(this.showTooltip.bind(this), this.showDelay);
|
|
554
|
-
this.tooltipDivElement = domElem.querySelector(".tooltip");
|
|
555
|
-
if (this.displayTime) {
|
|
556
|
-
window.setTimeout(this.destroy.bind(this), this.displayTime);
|
|
557
|
-
}
|
|
558
|
-
}
|
|
559
|
-
}
|
|
560
555
|
getDomElement() {
|
|
561
556
|
const componentFactory = this.componentFactoryResolver.resolveComponentFactory(TooltipComponent);
|
|
562
557
|
this.componentRef = componentFactory.create(this.injector);
|
|
563
558
|
this.appRef.attachView(this.componentRef.hostView);
|
|
564
559
|
return this.componentRef.hostView.rootNodes[0];
|
|
565
560
|
}
|
|
566
|
-
|
|
567
|
-
* Cria um tooltip para o icone do input em focus.
|
|
568
|
-
*
|
|
569
|
-
* @param icon O ícone do input em focus.
|
|
570
|
-
*/
|
|
571
|
-
createTootipByFocus(icon) {
|
|
561
|
+
_createTooltip(useShowDelay = false, autoDestroy = true) {
|
|
572
562
|
var _a;
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
563
|
+
const hasText = ((_a = this.tooltip) === null || _a === void 0 ? void 0 : _a.length) > 0;
|
|
564
|
+
const hasComponentRef = this.componentRef !== null;
|
|
565
|
+
if (!hasText || hasComponentRef) {
|
|
566
|
+
return;
|
|
567
|
+
}
|
|
568
|
+
const domElement = this.getDomElement();
|
|
569
|
+
document.body.appendChild(domElement);
|
|
570
|
+
this.tooltipDivElement = domElement.querySelector(".tooltip");
|
|
571
|
+
this.setTooltipComponentProperties();
|
|
572
|
+
const _showDelay = useShowDelay ? this.showDelay : 0;
|
|
573
|
+
setTimeout(() => {
|
|
574
|
+
this.showTooltip();
|
|
575
|
+
}, _showDelay);
|
|
576
|
+
this.renderer.listen(window, "scroll", () => {
|
|
577
|
+
this.setTooltipPositionProperty();
|
|
578
|
+
});
|
|
579
|
+
if (autoDestroy && this.displayTime) {
|
|
580
|
+
setTimeout(() => {
|
|
581
|
+
this.destroy();
|
|
582
|
+
}, this.displayTime);
|
|
583
583
|
}
|
|
584
584
|
}
|
|
585
585
|
showTooltip() {
|
|
@@ -589,10 +589,13 @@ let TooltipDirective = class TooltipDirective {
|
|
|
589
589
|
window.addEventListener("mousemove", this.boundOnWindowMouseMoveFunction);
|
|
590
590
|
}
|
|
591
591
|
}
|
|
592
|
-
setTooltipPositionProperty(
|
|
592
|
+
setTooltipPositionProperty() {
|
|
593
|
+
if (!this.componentRef) {
|
|
594
|
+
return;
|
|
595
|
+
}
|
|
593
596
|
const margin = 20;
|
|
594
597
|
const anchorSize = 5;
|
|
595
|
-
const domElem =
|
|
598
|
+
const domElem = this.componentRef.hostView.rootNodes[0].querySelector("#tooltip");
|
|
596
599
|
const { height, width } = domElem.getBoundingClientRect();
|
|
597
600
|
const { left, right, top, bottom } = this.elementRef.nativeElement.getBoundingClientRect();
|
|
598
601
|
const positions = [
|
|
@@ -642,7 +645,7 @@ let TooltipDirective = class TooltipDirective {
|
|
|
642
645
|
}
|
|
643
646
|
}
|
|
644
647
|
destroy() {
|
|
645
|
-
if (this.componentRef
|
|
648
|
+
if (!isNullOrUndefined(this.componentRef)) {
|
|
646
649
|
window.clearTimeout(this.showTimeout);
|
|
647
650
|
this.appRef.detachView(this.componentRef.hostView);
|
|
648
651
|
this.componentRef.destroy();
|
|
@@ -4967,8 +4970,6 @@ const convertToMomentDateFormat = (format) => {
|
|
|
4967
4970
|
.replace(/\byy\b/, "YYYY"); // year (four digits)
|
|
4968
4971
|
};
|
|
4969
4972
|
|
|
4970
|
-
const isNullOrUndefined = (value) => value === null || value === undefined;
|
|
4971
|
-
|
|
4972
4973
|
var CountryPhonePickerComponent_1;
|
|
4973
4974
|
let CountryPhonePickerComponent = CountryPhonePickerComponent_1 = class CountryPhonePickerComponent {
|
|
4974
4975
|
constructor(_countryPhonePickerService, _translate, _eRef, platformId) {
|
|
@@ -5328,7 +5329,7 @@ class FieldSize {
|
|
|
5328
5329
|
|
|
5329
5330
|
class Field {
|
|
5330
5331
|
constructor(config) {
|
|
5331
|
-
var _a, _b, _c, _d, _e;
|
|
5332
|
+
var _a, _b, _c, _d, _e, _f;
|
|
5332
5333
|
if ((_a = config.footer) === null || _a === void 0 ? void 0 : _a.help) {
|
|
5333
5334
|
config.footer.help = Object.assign({ visible: () => true }, (_b = config.footer) === null || _b === void 0 ? void 0 : _b.help);
|
|
5334
5335
|
}
|
|
@@ -5355,6 +5356,7 @@ class Field {
|
|
|
5355
5356
|
this.CustomFieldClass = config.CustomFieldClass;
|
|
5356
5357
|
this.CustomFieldComponentClass = config.CustomFieldComponentClass;
|
|
5357
5358
|
this.displayTimeInfoSign = (_e = config.displayTimeInfoSign) !== null && _e !== void 0 ? _e : 5000;
|
|
5359
|
+
this.useInfoSignFocusedInputRef = (_f = config.useInfoSignFocusedInputRef) !== null && _f !== void 0 ? _f : true;
|
|
5358
5360
|
}
|
|
5359
5361
|
}
|
|
5360
5362
|
|
|
@@ -7245,6 +7247,7 @@ let InfoSignDirective = class InfoSignDirective {
|
|
|
7245
7247
|
this.viewContainer = viewContainer;
|
|
7246
7248
|
this.componentFactoryResolver = componentFactoryResolver;
|
|
7247
7249
|
this.displayTime = 5000;
|
|
7250
|
+
this.useFocusedInputRef = true;
|
|
7248
7251
|
}
|
|
7249
7252
|
ngOnChanges() {
|
|
7250
7253
|
this.createInfoSign();
|
|
@@ -7262,10 +7265,13 @@ let InfoSignDirective = class InfoSignDirective {
|
|
|
7262
7265
|
this.viewContainer.clear();
|
|
7263
7266
|
const componentFactory = this.componentFactoryResolver.resolveComponentFactory(InfoSignComponent);
|
|
7264
7267
|
this.componentRef = this.viewContainer.createComponent(componentFactory);
|
|
7265
|
-
this.componentRef.instance
|
|
7266
|
-
|
|
7267
|
-
|
|
7268
|
-
|
|
7268
|
+
const _infoSignComponent = this.componentRef.instance;
|
|
7269
|
+
_infoSignComponent.templateRef = this.templateRef;
|
|
7270
|
+
_infoSignComponent.tooltip = this.sInfoSign;
|
|
7271
|
+
_infoSignComponent.displayTime = this.displayTime;
|
|
7272
|
+
if (this.useFocusedInputRef) {
|
|
7273
|
+
_infoSignComponent.focusedInputRef = this.focusedInputRef;
|
|
7274
|
+
}
|
|
7269
7275
|
}
|
|
7270
7276
|
else if (this.componentRef && this.sInfoSign) {
|
|
7271
7277
|
this.componentRef.instance.tooltip = this.sInfoSign;
|
|
@@ -7290,6 +7296,9 @@ __decorate([
|
|
|
7290
7296
|
__decorate([
|
|
7291
7297
|
Input('sInfoSignFocusedInputRef')
|
|
7292
7298
|
], InfoSignDirective.prototype, "focusedInputRef", void 0);
|
|
7299
|
+
__decorate([
|
|
7300
|
+
Input('sInfoSignUseFocusedInputRef')
|
|
7301
|
+
], InfoSignDirective.prototype, "useFocusedInputRef", void 0);
|
|
7293
7302
|
InfoSignDirective = __decorate([
|
|
7294
7303
|
Directive({
|
|
7295
7304
|
selector: "[sInfoSign]"
|
|
@@ -10056,12 +10065,19 @@ __decorate([
|
|
|
10056
10065
|
], RadioButtonComponent.prototype, "onFocus", void 0);
|
|
10057
10066
|
RadioButtonComponent = __decorate([
|
|
10058
10067
|
Component({
|
|
10059
|
-
template: "<s-field-label [field]=\"field\"></s-field-label>\n\n<ng-container *ngIf=\"field.verticalAlignment;else horizontalAlignment\">\n <div class=\"ui-g\">\n <div\n *ngFor=\"let option of field.options; let i = index\"\n class=\"ui-g-12\">\n <ng-container\n [ngTemplateOutlet]=\"radioButton\"\n [ngTemplateOutletContext]=\"{option: option, index: i}\">\n </ng-container>\n </div>\n <s-button\n *ngIf=\"field.showClear && !field.required() && !formControl.disabled\"\n [label]=\"field.clearLabel || 'Clear selection'\"\n (onClick)=\"onClear()\"\n priority=\"link\">\n </s-button>\n </div>\n</ng-container>\n\n<ng-template #horizontalAlignment>\n <div class=\"ui-g\">\n <ng-container\n *ngFor=\"let option of field.options; let i = index\"\n [ngTemplateOutlet]=\"radioButton\"\n [ngTemplateOutletContext]=\"{option: option, index: i}\">\n </ng-container>\n </div>\n <s-button\n *ngIf=\"field.showClear && !field.required() && !formControl.disabled\"\n class=\"horizontal-clear-option\"\n [label]=\"field.clearLabel || 'Clear selection'\"\n (onClick)=\"onClear()\"\n priority=\"link\">\n </s-button>\n</ng-template>\n\n<ng-template #radioButton let-option=\"option\" let-i=\"index\">\n <p-radioButton\n [name]=\"field.name\"\n [value]=\"option.value\"\n [label]=\"option.label\"\n [formControl]=\"formControl\"\n [inputId]=\"(field.id || field.name) + '-' + i\"\n [sTooltip]=\"field.tooltip\"\n (onClick)=\"onClick.next($event)\"\n (onFocus)=\"onFocus.next($event)\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n</ng-template>\n",
|
|
10068
|
+
template: "<s-field-label [field]=\"field\"></s-field-label>\n\n<ng-container *ngIf=\"field.verticalAlignment;else horizontalAlignment\">\n <div class=\"ui-g\">\n <div\n *ngFor=\"let option of field.options; let i = index\"\n class=\"ui-g-12\">\n <ng-container\n [ngTemplateOutlet]=\"radioButton\"\n [ngTemplateOutletContext]=\"{option: option, index: i}\">\n </ng-container>\n </div>\n <s-button\n *ngIf=\"field.showClear && !field.required() && !formControl.disabled\"\n [label]=\"field.clearLabel || 'Clear selection'\"\n (onClick)=\"onClear()\"\n priority=\"link\">\n </s-button>\n </div>\n</ng-container>\n\n<ng-template #horizontalAlignment>\n <div class=\"ui-g horizontal-radio-buttons-container\">\n <ng-container\n *ngFor=\"let option of field.options; let i = index\"\n [ngTemplateOutlet]=\"radioButton\"\n [ngTemplateOutletContext]=\"{option: option, index: i}\">\n </ng-container>\n </div>\n <s-button\n *ngIf=\"field.showClear && !field.required() && !formControl.disabled\"\n class=\"horizontal-clear-option\"\n [label]=\"field.clearLabel || 'Clear selection'\"\n (onClick)=\"onClear()\"\n priority=\"link\">\n </s-button>\n</ng-template>\n\n<ng-template #radioButton let-option=\"option\" let-i=\"index\">\n <p-radioButton\n class=\"radio-button-item\"\n [name]=\"field.name\"\n [value]=\"option.value\"\n [label]=\"option.label\"\n [formControl]=\"formControl\"\n [inputId]=\"(field.id || field.name) + '-' + i\"\n [sTooltip]=\"field.tooltip\"\n (onClick)=\"onClick.next($event)\"\n (onFocus)=\"onFocus.next($event)\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n</ng-template>\n",
|
|
10060
10069
|
encapsulation: ViewEncapsulation.None,
|
|
10061
10070
|
styles: [`
|
|
10062
10071
|
s-button.horizontal-clear-option button {
|
|
10063
10072
|
width: min-content !important;
|
|
10064
10073
|
}
|
|
10074
|
+
|
|
10075
|
+
.horizontal-radio-buttons-container {
|
|
10076
|
+
gap: 20px 40px;
|
|
10077
|
+
.radio-button-item {
|
|
10078
|
+
margin: 0;
|
|
10079
|
+
}
|
|
10080
|
+
}
|
|
10065
10081
|
`]
|
|
10066
10082
|
})
|
|
10067
10083
|
], RadioButtonComponent);
|
|
@@ -10376,7 +10392,7 @@ RowComponent = __decorate([
|
|
|
10376
10392
|
<ng-container *ngFor="let field of config.fields">
|
|
10377
10393
|
<div [ngClass]="field.gridClass" *ngIf="field.visible()">
|
|
10378
10394
|
<ng-container *ngIf="field.type === FieldType.Custom && field.label" >
|
|
10379
|
-
<label *sInfoSign="field.infoSign" [for]="field.name" [ngClass]="{ required: field.required() }" >
|
|
10395
|
+
<label *sInfoSign="field.infoSign; displayTime: field.displayTimeInfoSign; useFocusedInputRef: field.useInfoSignFocusedInputRef" [for]="field.name" [ngClass]="{ required: field.required() }" >
|
|
10380
10396
|
{{ field.label }}
|
|
10381
10397
|
</label>
|
|
10382
10398
|
</ng-container>
|
|
@@ -10444,7 +10460,7 @@ __decorate([
|
|
|
10444
10460
|
DynamicFieldComponent = __decorate([
|
|
10445
10461
|
Component({
|
|
10446
10462
|
selector: "s-dynamic-field",
|
|
10447
|
-
template: "<div class=\"ui-fluid\" [formGroup]=\"form\">\n <div class=\"ui-g\">\n <ng-container *ngFor=\"let field of fields\">\n <div\n *ngIf=\"!field.visible || field.visible()\"\n [ngClass]=\"field.gridClass\">\n\n <ng-container *ngIf=\"field.label && field.type === FieldType.Custom\">\n <label\n *sInfoSign=\"
|
|
10463
|
+
template: "<div class=\"ui-fluid\" [formGroup]=\"form\">\n <div class=\"ui-g\">\n <ng-container *ngFor=\"let field of fields\">\n <div\n *ngIf=\"!field.visible || field.visible()\"\n [ngClass]=\"field.gridClass\">\n\n <ng-container *ngIf=\"field.label && field.type === FieldType.Custom\">\n <label\n *sInfoSign=\"field.infoSign; displayTime: field.displayTimeInfoSign; useFocusedInputRef: field.useInfoSignFocusedInputRef\"\n [for]=\"field.name\"\n [ngClass]=\"{ required: field.required() }\"\n >\n {{ field.label }}\n </label>\n </ng-container>\n\n <ng-container\n *sDynamicForm=\"{\n id: id,\n config: field,\n group: form\n }\"\n ></ng-container>\n\n <s-control-errors\n [form]=\"form\"\n [control]=\"form.controls[field.name]\"\n [errorMessages]=\"getErrorMessages(field.errorMessages)\"\n ></s-control-errors>\n\n <ng-container *ngIf=\"field.footer\">\n <ng-container *ngIf=\"field.footer.help\">\n <span\n *ngIf=\"\n field.footer.help.visible({\n abstractControl: form.controls[field.name],\n formField: field\n })\n \"\n style=\"color: #888b99\"\n >\n {{ field.footer.help.text }}\n </span>\n </ng-container>\n\n <ng-container *ngIf=\"field.footer.link\">\n <div\n *ngIf=\"\n field.footer.link.visible({\n abstractControl: form.controls[field.name],\n formField: field\n })\n \"\n class=\"ui-g\"\n style=\"margin-left: -10px\"\n >\n <s-button\n [label]=\"field.footer.link.label\"\n priority=\"link\"\n (onClick)=\"\n field.footer.link.onClick({\n abstractControl:\n form.controls[field.name],\n formField: field\n })\n \"\n [auxiliary]=\"true\"\n ></s-button>\n </div>\n </ng-container>\n </ng-container>\n\n <ng-template\n *ngIf=\"field?.bottomTemplate\"\n [ngTemplateOutlet]=\"field.bottomTemplate\"\n ></ng-template>\n </div>\n </ng-container>\n </div>\n</div>\n"
|
|
10448
10464
|
})
|
|
10449
10465
|
], DynamicFieldComponent);
|
|
10450
10466
|
|
|
@@ -11151,7 +11167,7 @@ __decorate([
|
|
|
11151
11167
|
FieldLabelComponent = __decorate([
|
|
11152
11168
|
Component({
|
|
11153
11169
|
selector: 's-field-label',
|
|
11154
|
-
template: "<!--\n Caso esse componente seja alterado/removido/movido,\n alterar a label no row.component.ts e dynamic-field.component.ts\n-->\n\n<span *ngIf=\"field.label\">\n <label\n *sInfoSign=\"field.infoSign; displayTime: field.displayTimeInfoSign; focusedInputRef: fieldContainerRef\"\n [for]=\"field.name\"\n [ngClass]=\"{ required: field.required() }\"\n >\n {{ field.label }}\n </label>\n</span>\n"
|
|
11170
|
+
template: "<!--\n Caso esse componente seja alterado/removido/movido,\n alterar a label no row.component.ts e dynamic-field.component.ts\n-->\n\n<span *ngIf=\"field.label\">\n <label\n *sInfoSign=\"field.infoSign; displayTime: field.displayTimeInfoSign; focusedInputRef: fieldContainerRef; useFocusedInputRef: field.useInfoSignFocusedInputRef\"\n [for]=\"field.name\"\n [ngClass]=\"{ required: field.required() }\"\n >\n {{ field.label }}\n </label>\n</span>\n"
|
|
11155
11171
|
})
|
|
11156
11172
|
], FieldLabelComponent);
|
|
11157
11173
|
|
|
@@ -18320,6 +18336,167 @@ StepsModule = __decorate([
|
|
|
18320
18336
|
})
|
|
18321
18337
|
], StepsModule);
|
|
18322
18338
|
|
|
18339
|
+
let ThumbnailsComponent = class ThumbnailsComponent {
|
|
18340
|
+
constructor() {
|
|
18341
|
+
this.selectable = true;
|
|
18342
|
+
this.selectionChange = new EventEmitter();
|
|
18343
|
+
this.itemOpened = new EventEmitter();
|
|
18344
|
+
this._selection = [];
|
|
18345
|
+
}
|
|
18346
|
+
set selection(items) {
|
|
18347
|
+
this._selection = [...items];
|
|
18348
|
+
}
|
|
18349
|
+
onItemOpened(item) {
|
|
18350
|
+
this.itemOpened.emit(item);
|
|
18351
|
+
}
|
|
18352
|
+
onItemSelected(items) {
|
|
18353
|
+
if (items.selected) {
|
|
18354
|
+
this._selection.push(items.item);
|
|
18355
|
+
}
|
|
18356
|
+
else {
|
|
18357
|
+
this._selection.splice(this._selection.findIndex((item) => item === items.item), 1);
|
|
18358
|
+
}
|
|
18359
|
+
this.selectionChange.emit(this._selection);
|
|
18360
|
+
}
|
|
18361
|
+
isSelected(item) {
|
|
18362
|
+
return this._selection.some((i) => i.id === item.id);
|
|
18363
|
+
}
|
|
18364
|
+
};
|
|
18365
|
+
__decorate([
|
|
18366
|
+
Input()
|
|
18367
|
+
], ThumbnailsComponent.prototype, "items", void 0);
|
|
18368
|
+
__decorate([
|
|
18369
|
+
Input()
|
|
18370
|
+
], ThumbnailsComponent.prototype, "selectable", void 0);
|
|
18371
|
+
__decorate([
|
|
18372
|
+
Input()
|
|
18373
|
+
], ThumbnailsComponent.prototype, "selection", null);
|
|
18374
|
+
__decorate([
|
|
18375
|
+
Output()
|
|
18376
|
+
], ThumbnailsComponent.prototype, "selectionChange", void 0);
|
|
18377
|
+
__decorate([
|
|
18378
|
+
Output()
|
|
18379
|
+
], ThumbnailsComponent.prototype, "itemOpened", void 0);
|
|
18380
|
+
ThumbnailsComponent = __decorate([
|
|
18381
|
+
Component({
|
|
18382
|
+
selector: "s-thumbnails",
|
|
18383
|
+
template: "<div class=\"thumbnails\">\n <s-thumbnail-item\n *ngFor=\"let item of items\"\n [itemData]=\"item\"\n [isCheckable]=\"selectable\"\n [isChecked]=\"isSelected(item)\"\n (checked)=\"onItemSelected($event)\"\n (opened)=\"onItemOpened($event)\">\n </s-thumbnail-item>\n</div>\n",
|
|
18384
|
+
styles: [".thumbnails{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:12px}"]
|
|
18385
|
+
})
|
|
18386
|
+
], ThumbnailsComponent);
|
|
18387
|
+
|
|
18388
|
+
let ThumbnailItemComponent = class ThumbnailItemComponent {
|
|
18389
|
+
constructor() {
|
|
18390
|
+
this.isCheckable = true;
|
|
18391
|
+
this.isChecked = false;
|
|
18392
|
+
this.checked = new EventEmitter();
|
|
18393
|
+
this.opened = new EventEmitter();
|
|
18394
|
+
}
|
|
18395
|
+
ngOnInit() {
|
|
18396
|
+
this._validateItemData();
|
|
18397
|
+
this._createFormGroup();
|
|
18398
|
+
}
|
|
18399
|
+
onClick() {
|
|
18400
|
+
this.opened.emit(this.itemData);
|
|
18401
|
+
}
|
|
18402
|
+
_createFormGroup() {
|
|
18403
|
+
this.checkboxFormGroup = new FormGroup({
|
|
18404
|
+
checkbox: new FormControl({ checked: this.isChecked }),
|
|
18405
|
+
});
|
|
18406
|
+
this.checkboxFormGroup.get("checkbox").valueChanges.subscribe((value) => {
|
|
18407
|
+
this.checked.emit({ item: this.itemData, checked: value.checked });
|
|
18408
|
+
});
|
|
18409
|
+
}
|
|
18410
|
+
_validateItemData() {
|
|
18411
|
+
if (isNullOrUndefined(this.itemData)) {
|
|
18412
|
+
throw new Error("itemData is required");
|
|
18413
|
+
}
|
|
18414
|
+
}
|
|
18415
|
+
};
|
|
18416
|
+
__decorate([
|
|
18417
|
+
Input()
|
|
18418
|
+
], ThumbnailItemComponent.prototype, "itemData", void 0);
|
|
18419
|
+
__decorate([
|
|
18420
|
+
Input()
|
|
18421
|
+
], ThumbnailItemComponent.prototype, "isCheckable", void 0);
|
|
18422
|
+
__decorate([
|
|
18423
|
+
Input()
|
|
18424
|
+
], ThumbnailItemComponent.prototype, "isChecked", void 0);
|
|
18425
|
+
__decorate([
|
|
18426
|
+
Output()
|
|
18427
|
+
], ThumbnailItemComponent.prototype, "checked", void 0);
|
|
18428
|
+
__decorate([
|
|
18429
|
+
Output()
|
|
18430
|
+
], ThumbnailItemComponent.prototype, "opened", void 0);
|
|
18431
|
+
ThumbnailItemComponent = __decorate([
|
|
18432
|
+
Component({
|
|
18433
|
+
selector: "s-thumbnail-item",
|
|
18434
|
+
template: "<button *ngIf=\"itemData\" class=\"thumbnail-item\" (click)=\"onClick()\">\n <div class=\"thumbnail-item-content\">\n <div class=\"content\">\n <ng-container *ngIf=\"itemData.type === 'video'\">\n <s-thumbnail-item-video\n [imageUrl]=\"itemData.imageUrl\"\n [videoUrl]=\"itemData.videoUrl\">\n </s-thumbnail-item-video>\n </ng-container>\n <ng-container *ngIf=\"itemData.type === 'image'\">\n <s-thumbnail-item-image [imageUrl]=\"itemData.imageUrl\"></s-thumbnail-item-image>\n </ng-container>\n <ng-container *ngIf=\"itemData.type === 'audio'\">\n <i class=\"icon fas fa-volume-down\"></i>\n <span class=\"label\">{{ \"platform.angular_components.listen\" | translate }}</span>\n </ng-container>\n <ng-container *ngIf=\"itemData.type === 'file'\">\n <i class=\"icon fas fa-file-alt\"></i>\n <span class=\"label\">{{ \"platform.angular_components.view\" | translate }}</span>\n </ng-container>\n </div>\n <form *ngIf=\"isCheckable\" [formGroup]=\"checkboxFormGroup\" class=\"checkbox\">\n <s-checkbox [data]=\"{ label: '' }\" formControlName=\"checkbox\"> </s-checkbox>\n </form>\n </div>\n <span class=\"file-name-label\">{{ itemData.fileName }}</span>\n</button>\n",
|
|
18435
|
+
styles: [".thumbnail-item{-ms-flex-align:center;align-items:center;background:0 0;border:none;cursor:pointer;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;width:100px}.thumbnail-item-content{-ms-flex-align:center;align-items:center;background-image:linear-gradient(to top right,#5288b6,#00c89a);border-radius:8px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;height:100px;-ms-flex-pack:center;justify-content:center;position:relative;-webkit-user-select:none;-ms-user-select:none;user-select:none;width:100%;overflow:hidden}.thumbnail-item-content .checkbox{position:absolute;right:8px;top:8px}.thumbnail-item-content .content{-ms-flex-align:center;align-items:center;color:#fff;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:4px;overflow:hidden;width:100%}.thumbnail-item-content .content .icon{font-size:24px}.thumbnail-item-content .content .label{font-size:12px;width:100%;padding:0 8px;overflow:hidden;text-overflow:ellipsis}.thumbnail-item:hover{transform:scale(1.05);transition:.2s ease-in-out}.thumbnail-item .file-name-label{color:#525966;font-family:\"Open Sans\",sans-serif;font-size:12px;overflow:hidden;text-align:center;text-overflow:ellipsis;text-wrap:nowrap;-webkit-user-select:none;-ms-user-select:none;user-select:none;width:100%}"]
|
|
18436
|
+
})
|
|
18437
|
+
], ThumbnailItemComponent);
|
|
18438
|
+
|
|
18439
|
+
let ThumbnailItemVideoComponent = class ThumbnailItemVideoComponent {
|
|
18440
|
+
onMouseEnter() {
|
|
18441
|
+
var _a;
|
|
18442
|
+
if ((_a = this.videoPlayer) === null || _a === void 0 ? void 0 : _a.nativeElement) {
|
|
18443
|
+
this.videoPlayer.nativeElement.play();
|
|
18444
|
+
}
|
|
18445
|
+
}
|
|
18446
|
+
onMouseLeave() {
|
|
18447
|
+
var _a;
|
|
18448
|
+
if ((_a = this.videoPlayer) === null || _a === void 0 ? void 0 : _a.nativeElement) {
|
|
18449
|
+
this.videoPlayer.nativeElement.pause();
|
|
18450
|
+
this.videoPlayer.nativeElement.currentTime = 0;
|
|
18451
|
+
}
|
|
18452
|
+
}
|
|
18453
|
+
};
|
|
18454
|
+
__decorate([
|
|
18455
|
+
Input()
|
|
18456
|
+
], ThumbnailItemVideoComponent.prototype, "imageUrl", void 0);
|
|
18457
|
+
__decorate([
|
|
18458
|
+
Input()
|
|
18459
|
+
], ThumbnailItemVideoComponent.prototype, "videoUrl", void 0);
|
|
18460
|
+
__decorate([
|
|
18461
|
+
ViewChild("videoPlayer")
|
|
18462
|
+
], ThumbnailItemVideoComponent.prototype, "videoPlayer", void 0);
|
|
18463
|
+
__decorate([
|
|
18464
|
+
HostListener("mouseenter")
|
|
18465
|
+
], ThumbnailItemVideoComponent.prototype, "onMouseEnter", null);
|
|
18466
|
+
__decorate([
|
|
18467
|
+
HostListener("mouseleave")
|
|
18468
|
+
], ThumbnailItemVideoComponent.prototype, "onMouseLeave", null);
|
|
18469
|
+
ThumbnailItemVideoComponent = __decorate([
|
|
18470
|
+
Component({
|
|
18471
|
+
selector: "s-thumbnail-item-video",
|
|
18472
|
+
template: "<div class=\"thumbnail-item-video\" [ngClass]=\"{ 'thumbnail-item-video--playable': videoUrl }\">\n <div\n class=\"thumbnail-image\"\n [ngStyle]=\"{'backgroundImage': 'url(' + imageUrl + ')'}\">\n </div>\n <div class=\"play-overlay\">\n <i class=\"icon fas fa-play\"></i>\n <span class=\"label\">{{ \"platform.angular_components.watch\" | translate }}</span>\n </div>\n <video\n *ngIf=\"videoUrl\"\n #videoPlayer\n class=\"thumbnail-video-preview\"\n [src]=\"videoUrl\"\n [loop]=\"true\"\n [muted]=\"true\"\n preload=\"none\">\n </video>\n</div>\n",
|
|
18473
|
+
styles: [".thumbnail-item-video{cursor:pointer;height:100px;overflow:hidden;position:relative;width:100px}.thumbnail-item-video .thumbnail-image{background-repeat:no-repeat;background-size:cover;height:100%;width:100%}.thumbnail-item-video .thumbnail-video-preview{height:100%;left:0;width:100%;object-fit:cover;opacity:0;position:absolute;top:0;transition:opacity .3s ease-in-out}.thumbnail-item-video:hover .thumbnail-video-preview{opacity:1}.thumbnail-item-video .play-overlay{-ms-flex-align:center;align-items:center;color:#fff;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:8px;-ms-flex-pack:center;justify-content:center;left:50%;opacity:1;position:absolute;top:50%;transform:translate(-50%,-50%);transition:opacity .3s ease-in-out;width:100%;z-index:10}.thumbnail-item-video .play-overlay .icon{color:#fff;font-size:24px}.thumbnail-item-video .play-overlay .label{overflow:hidden;padding:0 8px;text-overflow:ellipsis;width:100%}.thumbnail-item-video--playable:hover .play-overlay{opacity:0}"]
|
|
18474
|
+
})
|
|
18475
|
+
], ThumbnailItemVideoComponent);
|
|
18476
|
+
|
|
18477
|
+
let ThumbnailItemImageComponent = class ThumbnailItemImageComponent {
|
|
18478
|
+
};
|
|
18479
|
+
__decorate([
|
|
18480
|
+
Input()
|
|
18481
|
+
], ThumbnailItemImageComponent.prototype, "imageUrl", void 0);
|
|
18482
|
+
ThumbnailItemImageComponent = __decorate([
|
|
18483
|
+
Component({
|
|
18484
|
+
selector: "s-thumbnail-item-image",
|
|
18485
|
+
template: "<div class=\"thumbnail-item-image\">\n <div\n *ngIf=\"imageUrl; else noImage\"\n class=\"thumbnail-image\"\n [ngStyle]=\"{ backgroundImage: 'url(' + imageUrl + ')' }\">\n </div>\n\n <ng-template #noImage>\n <div class=\"content\">\n <i class=\"icon fas fa-image\"></i>\n <span class=\"label\">{{ \"platform.angular_components.view\" | translate }}</span>\n </div>\n </ng-template>\n</div>\n",
|
|
18486
|
+
styles: [".thumbnail-item-image{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;height:100px;-ms-flex-pack:center;justify-content:center;width:100px}.thumbnail-item-image .thumbnail-image{background-repeat:no-repeat;background-size:cover;height:100%;width:100%}.thumbnail-item-image .content{-ms-flex-align:center;align-items:center;color:#fff;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;font-family:\"Open Sans\",sans-serif;-ms-flex-pack:center;justify-content:center;width:100%}.thumbnail-item-image .content .icon{font-size:24px}.thumbnail-item-image .content .label{font-size:12px;overflow:hidden;padding:0 8px;text-overflow:ellipsis;width:100%}"]
|
|
18487
|
+
})
|
|
18488
|
+
], ThumbnailItemImageComponent);
|
|
18489
|
+
|
|
18490
|
+
let ThumbnailsModule = class ThumbnailsModule {
|
|
18491
|
+
};
|
|
18492
|
+
ThumbnailsModule = __decorate([
|
|
18493
|
+
NgModule({
|
|
18494
|
+
imports: [CommonModule, ReactiveFormsModule, TranslateModule, CheckboxModule],
|
|
18495
|
+
declarations: [ThumbnailsComponent, ThumbnailItemComponent, ThumbnailItemVideoComponent, ThumbnailItemImageComponent],
|
|
18496
|
+
exports: [ThumbnailsComponent],
|
|
18497
|
+
})
|
|
18498
|
+
], ThumbnailsModule);
|
|
18499
|
+
|
|
18323
18500
|
var TileComponent_1;
|
|
18324
18501
|
let TileComponent = TileComponent_1 = class TileComponent {
|
|
18325
18502
|
constructor() {
|
|
@@ -19572,6 +19749,9 @@ ChipsModule = __decorate([
|
|
|
19572
19749
|
], ChipsModule);
|
|
19573
19750
|
|
|
19574
19751
|
const fallback = {
|
|
19752
|
+
"platform.angular_components.watch": "assistir",
|
|
19753
|
+
"platform.angular_components.view": "visualizar",
|
|
19754
|
+
"platform.angular_components.listen": "ouvir",
|
|
19575
19755
|
"platform.angular_components.drag_your_photo_or": "Arraste sua foto ou",
|
|
19576
19756
|
"platform.angular_components.select_a_file": "selecione um arquivo",
|
|
19577
19757
|
"platform.angular_components.change_photo": "Alterar foto",
|
|
@@ -19897,5 +20077,5 @@ const fallback = {
|
|
|
19897
20077
|
* Generated bundle index. Do not edit.
|
|
19898
20078
|
*/
|
|
19899
20079
|
|
|
19900
|
-
export { AccordionComponent, AccordionModule, AccordionPanelComponent, AlertComponent, AlertModule, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, CardComponent, CardModule, CardTemplateTypes, 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, 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, RowTogllerDirective, SVGFactoryDirective, SVGFactoryModule, Section, SelectButtonComponent, SelectButtonModule, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SliderComponent, SliderModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TemplateDirective, TemplateModule, TextAreaField, TextAreaIAComponent, TextAreaIAModule, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, convertToMomentDateFormat, countries, fallback, 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, TablePagingComponent as ɵba, PasswordFieldModule as ɵbb, FieldLabelModule as ɵbc, FieldLabelComponent as ɵbd, PasswordFieldComponent as ɵbe, TextFieldModule as ɵbf, TextFieldComponent as ɵbg, NumberFieldModule as ɵbh, NumberFieldComponent as ɵbi, CurrencyFieldModule as ɵbj, CurrencyFieldComponent as ɵbk, BignumberFieldModule as ɵbl, BignumberFieldComponent as ɵbm, CheckboxFieldModule as ɵbn, CheckboxFieldComponent as ɵbo, ProfilePictureModule as ɵbp, ThumbnailService as ɵbq, StructureModule as ɵbr, HeaderComponent as ɵbs, FooterComponent as ɵbt, ProfilePictureFieldComponent as ɵbu, EditorFieldModule as ɵbv, EditorFieldComponent as ɵbw, AutocompleteFieldComponent as ɵbx, BooleanFieldComponent as ɵby, BooleanSwitchFieldComponent as ɵbz, TieredMenuEventService as ɵc, CalendarFieldComponent as ɵca, ChipsFieldComponent as ɵcb, CountryPhonePickerFieldComponent as ɵcc, DynamicFieldComponent as ɵcd, DynamicFormDirective as ɵce, FieldsetComponent as ɵcf, FileUploadComponent$1 as ɵcg, LookupFieldComponent as ɵch, RadioButtonComponent as ɵci, RowComponent as ɵcj, SectionComponent as ɵck, SelectFieldComponent as ɵcl, SliderFieldComponent as ɵcm, TextAreaFieldComponent as ɵcn, TextAreaIAFieldComponent as ɵco, IAssistService as ɵcp, DecimalField as ɵcr, SideTableComponent as ɵcs, InfiniteScrollModule as ɵct, InfiniteScrollDirective as ɵcu, IAInsightSidebarComponent as ɵcv, IAInsightCardComponent as ɵcw, IAInsightCardLoaderComponent as ɵcx, InlineEditItemComponent as ɵcy, InlineEditCalendarComponent as ɵcz, TieredMenuService as ɵd, InlineEditLookupComponent as ɵda, InlineEditNumberComponent as ɵdb, InlineEditTextComponent as ɵdc, InlineEditTextAreaComponent as ɵdd, InlineEditTextAreaIAComponent as ɵde, KanbanEventService as ɵdf, KanbanItemComponent as ɵdg, KanbanColumnComponent as ɵdh, KanbanItemDraggingComponent as ɵdi, NumberLocaleOptions as ɵdj, BorderButtonModule as ɵdk, BorderButtonComponent as ɵdl, ProgressBarDeterminateComponent as ɵdm, ProgressBarIndeterminateComponent as ɵdn, SelectButtonItemComponent as ɵdo, SlidePanelService as ɵdp,
|
|
20080
|
+
export { AccordionComponent, AccordionModule, AccordionPanelComponent, AlertComponent, AlertModule, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, CardComponent, CardModule, CardTemplateTypes, 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, 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, RowTogllerDirective, SVGFactoryDirective, SVGFactoryModule, Section, SelectButtonComponent, SelectButtonModule, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SliderComponent, SliderModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, 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, 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, TablePagingComponent as ɵba, PasswordFieldModule as ɵbb, FieldLabelModule as ɵbc, FieldLabelComponent as ɵbd, PasswordFieldComponent as ɵbe, TextFieldModule as ɵbf, TextFieldComponent as ɵbg, NumberFieldModule as ɵbh, NumberFieldComponent as ɵbi, CurrencyFieldModule as ɵbj, CurrencyFieldComponent as ɵbk, BignumberFieldModule as ɵbl, BignumberFieldComponent as ɵbm, CheckboxFieldModule as ɵbn, CheckboxFieldComponent as ɵbo, ProfilePictureModule as ɵbp, ThumbnailService as ɵbq, StructureModule as ɵbr, HeaderComponent as ɵbs, FooterComponent as ɵbt, ProfilePictureFieldComponent as ɵbu, EditorFieldModule as ɵbv, EditorFieldComponent as ɵbw, AutocompleteFieldComponent as ɵbx, BooleanFieldComponent as ɵby, BooleanSwitchFieldComponent as ɵbz, TieredMenuEventService as ɵc, CalendarFieldComponent as ɵca, ChipsFieldComponent as ɵcb, CountryPhonePickerFieldComponent as ɵcc, DynamicFieldComponent as ɵcd, DynamicFormDirective as ɵce, FieldsetComponent as ɵcf, FileUploadComponent$1 as ɵcg, LookupFieldComponent as ɵch, RadioButtonComponent as ɵci, RowComponent as ɵcj, SectionComponent as ɵck, SelectFieldComponent as ɵcl, SliderFieldComponent as ɵcm, TextAreaFieldComponent as ɵcn, TextAreaIAFieldComponent as ɵco, IAssistService as ɵcp, DecimalField as ɵcr, SideTableComponent as ɵcs, InfiniteScrollModule as ɵct, InfiniteScrollDirective as ɵcu, IAInsightSidebarComponent as ɵcv, IAInsightCardComponent as ɵcw, IAInsightCardLoaderComponent as ɵcx, InlineEditItemComponent as ɵcy, InlineEditCalendarComponent as ɵcz, TieredMenuService as ɵd, InlineEditLookupComponent as ɵda, InlineEditNumberComponent as ɵdb, InlineEditTextComponent as ɵdc, InlineEditTextAreaComponent as ɵdd, InlineEditTextAreaIAComponent as ɵde, KanbanEventService as ɵdf, KanbanItemComponent as ɵdg, KanbanColumnComponent as ɵdh, KanbanItemDraggingComponent as ɵdi, NumberLocaleOptions as ɵdj, BorderButtonModule as ɵdk, BorderButtonComponent as ɵdl, ProgressBarDeterminateComponent as ɵdm, ProgressBarIndeterminateComponent as ɵdn, SelectButtonItemComponent as ɵdo, SlidePanelService as ɵdp, ThumbnailItemComponent as ɵdq, ThumbnailItemVideoComponent as ɵdr, ThumbnailItemImageComponent as ɵds, TimelineItemModule as ɵdt, TimelineIconItemComponent as ɵdu, HorizontalTimelineModule as ɵdv, HorizontalTimelineComponent as ɵdw, VerticalTimelineModule as ɵdx, VerticalTimelineComponent as ɵdy, RangeLineComponent as ɵdz, TieredMenuGlobalService as ɵe, CollapseOptionComponent as ɵea, CollapsedItemsComponent as ɵeb, VerticalItemsComponent as ɵec, ChipItemComponent as ɵed, TieredMenuComponent as ɵf, TieredMenuNestedComponent as ɵg, TieredMenuItemComponent as ɵh, TieredMenuDividerComponent as ɵi, CustomTranslationsModule as ɵj, CodeEditorComponent as ɵk, CoreFacade as ɵl, CodeMirror6Core as ɵm, CountryPhonePickerService as ɵn, LocalizedCurrencyImpurePipe as ɵo, LocalizedBignumberPipe as ɵp, LocalizedBignumberImpurePipe as ɵq, NumericPipe as ɵr, EmptyStateGoBackComponent as ɵs, IAssistIconComponent as ɵt, SeniorIconComponent as ɵu, DotsIndicatorComponent as ɵv, LoadingIndicatorComponent as ɵw, FileUploadService as ɵx, InfoSignComponent as ɵy, TableColumnsComponent as ɵz };
|
|
19901
20081
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|