@seniorsistemas/angular-components 17.27.2 → 17.28.1
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 +586 -17
- 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/directives/accessibility-event.directive.d.ts +4 -2
- package/components/grid-menu/components/grid-menu-item/grid-menu-item.component.d.ts +7 -0
- package/components/grid-menu/grid-menu.component.d.ts +9 -1
- package/components/grid-menu/types/grid-menu-item.d.ts +6 -1
- package/components/ia-insight/components/ia-insight-sidebar/ia-insight-sidebar.component.d.ts +3 -1
- package/components/ia-insight/ia-insight.component.d.ts +5 -1
- package/components/ia-insight/models/ia-insight-item.d.ts +12 -0
- package/components/index.d.ts +1 -0
- package/components/tree/Models/tree.models.d.ts +28 -0
- package/components/tree/components/tree-node-item/tree-node-item.component.d.ts +35 -0
- package/components/tree/index.d.ts +3 -0
- package/components/tree/tree.component.d.ts +33 -0
- package/components/tree/tree.module.d.ts +2 -0
- package/esm2015/components/accessibility-events/directives/accessibility-event.directive.js +9 -3
- package/esm2015/components/fieldset/fieldset.module.js +2 -3
- package/esm2015/components/grid-menu/components/grid-menu-item/grid-menu-item.component.js +36 -6
- package/esm2015/components/grid-menu/grid-menu.component.js +43 -4
- package/esm2015/components/grid-menu/grid-menu.module.js +3 -2
- package/esm2015/components/grid-menu/types/grid-menu-item.js +1 -1
- package/esm2015/components/ia-insight/components/ia-insight-card/ia-insight-card.component.js +15 -3
- package/esm2015/components/ia-insight/components/ia-insight-sidebar/ia-insight-sidebar.component.js +12 -2
- package/esm2015/components/ia-insight/ia-insight.component.js +17 -3
- package/esm2015/components/ia-insight/models/ia-insight-item.js +1 -1
- package/esm2015/components/index.js +2 -1
- package/esm2015/components/tree/Models/tree.models.js +1 -0
- package/esm2015/components/tree/components/tree-node-item/tree-node-item.component.js +154 -0
- package/esm2015/components/tree/index.js +3 -0
- package/esm2015/components/tree/tree.component.js +254 -0
- package/esm2015/components/tree/tree.module.js +20 -0
- package/esm2015/seniorsistemas-angular-components.js +3 -1
- package/esm5/components/accessibility-events/directives/accessibility-event.directive.js +10 -4
- package/esm5/components/fieldset/fieldset.module.js +2 -3
- package/esm5/components/grid-menu/components/grid-menu-item/grid-menu-item.component.js +38 -6
- package/esm5/components/grid-menu/grid-menu.component.js +43 -4
- package/esm5/components/grid-menu/grid-menu.module.js +3 -2
- package/esm5/components/grid-menu/types/grid-menu-item.js +1 -1
- package/esm5/components/ia-insight/components/ia-insight-card/ia-insight-card.component.js +15 -3
- package/esm5/components/ia-insight/components/ia-insight-sidebar/ia-insight-sidebar.component.js +12 -2
- package/esm5/components/ia-insight/ia-insight.component.js +17 -3
- package/esm5/components/ia-insight/models/ia-insight-item.js +1 -1
- package/esm5/components/index.js +2 -1
- package/esm5/components/tree/Models/tree.models.js +1 -0
- package/esm5/components/tree/components/tree-node-item/tree-node-item.component.js +169 -0
- package/esm5/components/tree/index.js +3 -0
- package/esm5/components/tree/tree.component.js +280 -0
- package/esm5/components/tree/tree.module.js +23 -0
- package/esm5/seniorsistemas-angular-components.js +3 -1
- package/fesm2015/seniorsistemas-angular-components.js +533 -15
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +580 -16
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.d.ts +2 -0
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { __decorate, __awaiter, __param, __rest } from 'tslib';
|
|
2
2
|
import { EventEmitter, Input, Output, Component, ContentChildren, ViewChild, HostListener, forwardRef, NgModule, ɵɵdefineInjectable, Injectable, ElementRef, ApplicationRef, ComponentFactoryResolver, Injector, Renderer2, Directive, TemplateRef, ViewContainerRef, Pipe, ɵɵinject, HostBinding, ChangeDetectorRef, ViewChildren, InjectionToken, Inject, PLATFORM_ID, KeyValueDiffers, ViewEncapsulation, INJECTOR, NgZone, ContentChild, Optional } from '@angular/core';
|
|
3
|
-
import { trigger, transition, style as style$7, animate, state, group, query, animateChild } from '@angular/animations';
|
|
3
|
+
import { trigger, transition, style as style$7, animate, state, group, query, animateChild, stagger } from '@angular/animations';
|
|
4
4
|
import { Subject, of, from, ReplaySubject, throwError, fromEvent, forkJoin, pipe } from 'rxjs';
|
|
5
5
|
import { takeUntil, tap, map, switchMap, catchError, first, filter, take, delay, debounceTime, repeat, finalize } from 'rxjs/operators';
|
|
6
6
|
import { CommonModule, isPlatformBrowser } from '@angular/common';
|
|
@@ -53,7 +53,6 @@ import { EditorModule } from 'primeng/editor';
|
|
|
53
53
|
import { ConfirmationService } from 'primeng/api';
|
|
54
54
|
import { ConfirmDialogModule } from 'primeng/confirmdialog';
|
|
55
55
|
import Cropper from 'cropperjs';
|
|
56
|
-
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
57
56
|
import marked from 'marked';
|
|
58
57
|
import { moveItemInArray, transferArrayItem, DragDropModule } from '@angular/cdk/drag-drop';
|
|
59
58
|
import { FocusTrapFactory, A11yModule } from '@angular/cdk/a11y';
|
|
@@ -13194,6 +13193,7 @@ let AccessibilityEventDirective = class AccessibilityEventDirective {
|
|
|
13194
13193
|
this.elementRef = elementRef;
|
|
13195
13194
|
this.sActivatedContent = new EventEmitter();
|
|
13196
13195
|
this.tabindex = 0;
|
|
13196
|
+
this.disabled = false;
|
|
13197
13197
|
this.EVENT_LISTENER = (event) => {
|
|
13198
13198
|
if (event instanceof KeyboardEvent) {
|
|
13199
13199
|
const key = event.key;
|
|
@@ -13204,11 +13204,13 @@ let AccessibilityEventDirective = class AccessibilityEventDirective {
|
|
|
13204
13204
|
}
|
|
13205
13205
|
this.sActivatedContent.next(event);
|
|
13206
13206
|
};
|
|
13207
|
+
}
|
|
13208
|
+
ngOnInit() {
|
|
13207
13209
|
this.setTabIndex();
|
|
13208
13210
|
this.checkAccessbilityEvents();
|
|
13209
13211
|
}
|
|
13210
13212
|
setTabIndex() {
|
|
13211
|
-
const hasTabIndex = this.element.tabIndex
|
|
13213
|
+
const hasTabIndex = this.element.tabIndex !== 0;
|
|
13212
13214
|
if (hasTabIndex) {
|
|
13213
13215
|
return;
|
|
13214
13216
|
}
|
|
@@ -13235,6 +13237,9 @@ __decorate([
|
|
|
13235
13237
|
__decorate([
|
|
13236
13238
|
Input()
|
|
13237
13239
|
], AccessibilityEventDirective.prototype, "tabindex", void 0);
|
|
13240
|
+
__decorate([
|
|
13241
|
+
Input()
|
|
13242
|
+
], AccessibilityEventDirective.prototype, "disabled", void 0);
|
|
13238
13243
|
AccessibilityEventDirective = __decorate([
|
|
13239
13244
|
Directive({
|
|
13240
13245
|
selector: '[sActivatedContent]'
|
|
@@ -13257,7 +13262,7 @@ let FieldsetModule = class FieldsetModule {
|
|
|
13257
13262
|
};
|
|
13258
13263
|
FieldsetModule = __decorate([
|
|
13259
13264
|
NgModule({
|
|
13260
|
-
imports: [CommonModule, AccessibilityEventsModule
|
|
13265
|
+
imports: [CommonModule, AccessibilityEventsModule],
|
|
13261
13266
|
declarations: [FieldsetComponent$1],
|
|
13262
13267
|
exports: [FieldsetComponent$1],
|
|
13263
13268
|
})
|
|
@@ -16092,8 +16097,17 @@ let IAInsightCardComponent = class IAInsightCardComponent {
|
|
|
16092
16097
|
this.dislikeSelected = false;
|
|
16093
16098
|
}
|
|
16094
16099
|
toggle() {
|
|
16095
|
-
|
|
16096
|
-
this.
|
|
16100
|
+
const newOpenState = !this.open;
|
|
16101
|
+
this.open = newOpenState;
|
|
16102
|
+
if (newOpenState === true && this.insight.onOpenSidebar) {
|
|
16103
|
+
this.insight.onOpenSidebar();
|
|
16104
|
+
}
|
|
16105
|
+
else if (newOpenState === false && this.insight.onCloseSideBar) {
|
|
16106
|
+
this.insight.onCloseSideBar();
|
|
16107
|
+
}
|
|
16108
|
+
if (newOpenState === true) {
|
|
16109
|
+
this._requestInsight();
|
|
16110
|
+
}
|
|
16097
16111
|
}
|
|
16098
16112
|
onLikeSelected() {
|
|
16099
16113
|
var _a, _b;
|
|
@@ -16136,6 +16150,9 @@ let IAInsightCardComponent = class IAInsightCardComponent {
|
|
|
16136
16150
|
.pipe(first(), finalize(() => (this.isLoading = false)))
|
|
16137
16151
|
.subscribe((content) => {
|
|
16138
16152
|
this.content = marked.marked(content);
|
|
16153
|
+
if (this.insight.onContentLoaded) {
|
|
16154
|
+
this.insight.onContentLoaded();
|
|
16155
|
+
}
|
|
16139
16156
|
});
|
|
16140
16157
|
}
|
|
16141
16158
|
};
|
|
@@ -16158,6 +16175,8 @@ IAInsightCardComponent = __decorate([
|
|
|
16158
16175
|
let IAInsightSidebarComponent = class IAInsightSidebarComponent {
|
|
16159
16176
|
constructor() {
|
|
16160
16177
|
this.insights = [];
|
|
16178
|
+
this.closedSidebar = new EventEmitter();
|
|
16179
|
+
this.openedSidebar = new EventEmitter();
|
|
16161
16180
|
this.opened = false;
|
|
16162
16181
|
}
|
|
16163
16182
|
toggle() {
|
|
@@ -16165,9 +16184,11 @@ let IAInsightSidebarComponent = class IAInsightSidebarComponent {
|
|
|
16165
16184
|
}
|
|
16166
16185
|
open() {
|
|
16167
16186
|
this.opened = true;
|
|
16187
|
+
this.openedSidebar.emit();
|
|
16168
16188
|
}
|
|
16169
16189
|
close() {
|
|
16170
16190
|
this.opened = false;
|
|
16191
|
+
this.closedSidebar.emit();
|
|
16171
16192
|
}
|
|
16172
16193
|
};
|
|
16173
16194
|
__decorate([
|
|
@@ -16194,6 +16215,12 @@ __decorate([
|
|
|
16194
16215
|
__decorate([
|
|
16195
16216
|
Input()
|
|
16196
16217
|
], IAInsightSidebarComponent.prototype, "noPermissionTemplate", void 0);
|
|
16218
|
+
__decorate([
|
|
16219
|
+
Output()
|
|
16220
|
+
], IAInsightSidebarComponent.prototype, "closedSidebar", void 0);
|
|
16221
|
+
__decorate([
|
|
16222
|
+
Output()
|
|
16223
|
+
], IAInsightSidebarComponent.prototype, "openedSidebar", void 0);
|
|
16197
16224
|
IAInsightSidebarComponent = __decorate([
|
|
16198
16225
|
Component({
|
|
16199
16226
|
selector: "s-ia-insight-sidebar",
|
|
@@ -16223,6 +16250,8 @@ let IAInsightComponent = class IAInsightComponent {
|
|
|
16223
16250
|
constructor() {
|
|
16224
16251
|
this.insights = [];
|
|
16225
16252
|
this.hasPermission = true;
|
|
16253
|
+
this.openIAInsight = new EventEmitter();
|
|
16254
|
+
this.closedIAInsight = new EventEmitter();
|
|
16226
16255
|
}
|
|
16227
16256
|
ngAfterContentInit() {
|
|
16228
16257
|
this._getTemplates();
|
|
@@ -16233,6 +16262,12 @@ let IAInsightComponent = class IAInsightComponent {
|
|
|
16233
16262
|
close() {
|
|
16234
16263
|
this.sidebar.close();
|
|
16235
16264
|
}
|
|
16265
|
+
onOpenSidebar() {
|
|
16266
|
+
this.openIAInsight.emit();
|
|
16267
|
+
}
|
|
16268
|
+
onCloseSidebar() {
|
|
16269
|
+
this.closedIAInsight.emit();
|
|
16270
|
+
}
|
|
16236
16271
|
getIntroTemplate() {
|
|
16237
16272
|
return this._getCustomTemplate(IAInsightTemplateTypes.Intro);
|
|
16238
16273
|
}
|
|
@@ -16267,6 +16302,12 @@ __decorate([
|
|
|
16267
16302
|
__decorate([
|
|
16268
16303
|
Input()
|
|
16269
16304
|
], IAInsightComponent.prototype, "noPermissionText", void 0);
|
|
16305
|
+
__decorate([
|
|
16306
|
+
Output()
|
|
16307
|
+
], IAInsightComponent.prototype, "openIAInsight", void 0);
|
|
16308
|
+
__decorate([
|
|
16309
|
+
Output()
|
|
16310
|
+
], IAInsightComponent.prototype, "closedIAInsight", void 0);
|
|
16270
16311
|
__decorate([
|
|
16271
16312
|
ViewChild(IAInsightSidebarComponent)
|
|
16272
16313
|
], IAInsightComponent.prototype, "sidebar", void 0);
|
|
@@ -16276,7 +16317,7 @@ __decorate([
|
|
|
16276
16317
|
IAInsightComponent = __decorate([
|
|
16277
16318
|
Component({
|
|
16278
16319
|
selector: "s-ia-insight",
|
|
16279
|
-
template: "<s-ia-insight-sidebar\n #sidebar\n [insights]=\"insights\"\n [hasPermission]=\"hasPermission\"\n [introText]=\"introText\"\n [introTemplate]=\"introTemplate\"\n [emptyText]=\"emptyText\"\n [emptyTemplate]=\"emptyTemplate\"\n [noPermissionText]=\"noPermissionText\"\n [noPermissionTemplate]=\"noPermissionTemplate\">\n</s-ia-insight-sidebar
|
|
16320
|
+
template: "<s-ia-insight-sidebar\n #sidebar\n [insights]=\"insights\"\n [hasPermission]=\"hasPermission\"\n [introText]=\"introText\"\n [introTemplate]=\"introTemplate\"\n [emptyText]=\"emptyText\"\n [emptyTemplate]=\"emptyTemplate\"\n [noPermissionText]=\"noPermissionText\"\n (openedSidebar)=\"onOpenSidebar()\"\n (closedSidebar)=\"onCloseSidebar()\"\n [noPermissionTemplate]=\"noPermissionTemplate\"\n>\n</s-ia-insight-sidebar>\n",
|
|
16280
16321
|
styles: [""]
|
|
16281
16322
|
})
|
|
16282
16323
|
], IAInsightComponent);
|
|
@@ -16309,29 +16350,90 @@ IAInsightModule = __decorate([
|
|
|
16309
16350
|
|
|
16310
16351
|
let GridMenuComponent = class GridMenuComponent {
|
|
16311
16352
|
constructor() {
|
|
16353
|
+
this.useFontAwesomeIcons = false;
|
|
16312
16354
|
this.itemsArray = [];
|
|
16355
|
+
this.selectable = false;
|
|
16356
|
+
this.selectedChange = new EventEmitter();
|
|
16313
16357
|
}
|
|
16314
16358
|
set items(items) {
|
|
16315
|
-
|
|
16359
|
+
if (isNullOrUndefined(items)) {
|
|
16360
|
+
this.itemsArray = [];
|
|
16361
|
+
}
|
|
16362
|
+
else {
|
|
16363
|
+
this.itemsArray = Array.isArray(items) ? items : [items];
|
|
16364
|
+
}
|
|
16365
|
+
}
|
|
16366
|
+
ngOnChanges(changes) {
|
|
16367
|
+
if (changes.selected && changes.selected.isFirstChange()) {
|
|
16368
|
+
if (this.selectable) {
|
|
16369
|
+
this.selected.active = true;
|
|
16370
|
+
}
|
|
16371
|
+
}
|
|
16372
|
+
}
|
|
16373
|
+
onClickGridMenuItem(gridMenuItem) {
|
|
16374
|
+
if (!this.selectable) {
|
|
16375
|
+
return;
|
|
16376
|
+
}
|
|
16377
|
+
if (this.previousGridMenuItemClicked) {
|
|
16378
|
+
this.previousGridMenuItemClicked.active = false;
|
|
16379
|
+
}
|
|
16380
|
+
gridMenuItem.active = !gridMenuItem.active;
|
|
16381
|
+
this.previousGridMenuItemClicked = gridMenuItem;
|
|
16382
|
+
this.selectedChange.next(gridMenuItem);
|
|
16316
16383
|
}
|
|
16317
16384
|
};
|
|
16318
16385
|
__decorate([
|
|
16319
16386
|
Input()
|
|
16320
16387
|
], GridMenuComponent.prototype, "items", null);
|
|
16388
|
+
__decorate([
|
|
16389
|
+
Input()
|
|
16390
|
+
], GridMenuComponent.prototype, "useFontAwesomeIcons", void 0);
|
|
16391
|
+
__decorate([
|
|
16392
|
+
Input()
|
|
16393
|
+
], GridMenuComponent.prototype, "selectable", void 0);
|
|
16394
|
+
__decorate([
|
|
16395
|
+
Input()
|
|
16396
|
+
], GridMenuComponent.prototype, "selected", void 0);
|
|
16397
|
+
__decorate([
|
|
16398
|
+
Output()
|
|
16399
|
+
], GridMenuComponent.prototype, "selectedChange", void 0);
|
|
16321
16400
|
GridMenuComponent = __decorate([
|
|
16322
16401
|
Component({
|
|
16323
16402
|
selector: "s-grid-menu",
|
|
16324
|
-
template: "<s-grid-menu-item
|
|
16403
|
+
template: "<section class=\"grid-menu\">\n <s-grid-menu-item\n *ngFor=\"let item of itemsArray\"\n [item]=\"item\"\n [iconIsFromFontAwesome]=\"useFontAwesomeIcons\"\n (clickedGridMenuItem)=\"onClickGridMenuItem($event)\"\n ></s-grid-menu-item>\n</section>\n",
|
|
16325
16404
|
styles: [".grid-menu{display:-ms-grid;display:grid;gap:20px;grid-template-columns:repeat(auto-fill,200px);-ms-flex-pack:space-evenly;justify-content:space-evenly}"]
|
|
16326
16405
|
})
|
|
16327
16406
|
], GridMenuComponent);
|
|
16328
16407
|
|
|
16329
16408
|
let GridMenuItemComponent = class GridMenuItemComponent {
|
|
16409
|
+
constructor() {
|
|
16410
|
+
this.iconIsFromFontAwesome = false;
|
|
16411
|
+
this.clickedGridMenuItem = new EventEmitter();
|
|
16412
|
+
this.fontAwesomePrefix = 'fal';
|
|
16413
|
+
}
|
|
16330
16414
|
onClick() {
|
|
16331
16415
|
var _a, _b;
|
|
16332
|
-
if (this.disabled)
|
|
16416
|
+
if (this.disabled) {
|
|
16333
16417
|
return;
|
|
16418
|
+
}
|
|
16334
16419
|
(_b = (_a = this.item).action) === null || _b === void 0 ? void 0 : _b.call(_a);
|
|
16420
|
+
this.clickedGridMenuItem.emit(this.item);
|
|
16421
|
+
}
|
|
16422
|
+
onMouseEnter() {
|
|
16423
|
+
if (this.disabled) {
|
|
16424
|
+
return;
|
|
16425
|
+
}
|
|
16426
|
+
this.fontAwesomePrefix = 'fas';
|
|
16427
|
+
}
|
|
16428
|
+
onMouseLeave() {
|
|
16429
|
+
if (this.disabled) {
|
|
16430
|
+
return;
|
|
16431
|
+
}
|
|
16432
|
+
this.fontAwesomePrefix = 'fal';
|
|
16433
|
+
}
|
|
16434
|
+
get iconFontAwesomeClassName() {
|
|
16435
|
+
const prefix = this.item.active ? 'fas' : this.fontAwesomePrefix;
|
|
16436
|
+
return `${prefix} ${this.item.icon}`;
|
|
16335
16437
|
}
|
|
16336
16438
|
get initialLetter() {
|
|
16337
16439
|
let initialLetter = "";
|
|
@@ -16345,17 +16447,24 @@ let GridMenuItemComponent = class GridMenuItemComponent {
|
|
|
16345
16447
|
return initialLetter;
|
|
16346
16448
|
}
|
|
16347
16449
|
get disabled() {
|
|
16348
|
-
|
|
16450
|
+
var _a, _b;
|
|
16451
|
+
return typeof ((_a = this.item) === null || _a === void 0 ? void 0 : _a.disabled) === "function" ? !!this.item.disabled() : !!((_b = this.item) === null || _b === void 0 ? void 0 : _b.disabled);
|
|
16349
16452
|
}
|
|
16350
16453
|
};
|
|
16351
16454
|
__decorate([
|
|
16352
16455
|
Input()
|
|
16353
16456
|
], GridMenuItemComponent.prototype, "item", void 0);
|
|
16457
|
+
__decorate([
|
|
16458
|
+
Input()
|
|
16459
|
+
], GridMenuItemComponent.prototype, "iconIsFromFontAwesome", void 0);
|
|
16460
|
+
__decorate([
|
|
16461
|
+
Output()
|
|
16462
|
+
], GridMenuItemComponent.prototype, "clickedGridMenuItem", void 0);
|
|
16354
16463
|
GridMenuItemComponent = __decorate([
|
|
16355
16464
|
Component({
|
|
16356
16465
|
selector: "s-grid-menu-item",
|
|
16357
|
-
template: "<button\n class=\"icon-button\"\n [class.icon-button--disabled]=\"disabled\"\n (
|
|
16358
|
-
styles: [".icon-button{-ms-flex-align:center;align-items:center;background-color:transparent;border:none;cursor:pointer;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:column;flex-direction:column;gap:12px;-ms-flex-pack:center;justify-content:center;padding:5px;transition:transform .3s ease-in-out;width:200px}.icon-button .icon-wrapper{-ms-flex-item-align:center;align-self:center;
|
|
16466
|
+
template: "<button\n class=\"icon-button\"\n [class.icon-button-active]=\"item.active\"\n [class.icon-button--disabled]=\"disabled\"\n (sActivatedContent)=\"onClick()\"\n [disabled]=\"disabled\"\n [tabindex]=\"disabled ? -1 : 0\"\n [class.icon-font-awesome]=\"iconIsFromFontAwesome\"\n (mouseenter)=\"onMouseEnter()\"\n (mouseleave)=\"onMouseLeave()\"\n *ngIf=\"item\"\n>\n <div class=\"icon-wrapper\" [class.icon-image]=\"!iconIsFromFontAwesome\">\n <ng-container *ngIf=\"item.icon\">\n <i *ngIf=\"iconIsFromFontAwesome\" [class]=\"iconFontAwesomeClassName\"> </i>\n <span *ngIf=\"!iconIsFromFontAwesome\" class=\"icon\" style=\"background-image: url('{{ item.icon }}');\"> </span>\n </ng-container>\n\n <ng-container *ngIf=\"!item.icon\">\n <span class=\"initials\">{{ initialLetter }}</span>\n </ng-container>\n </div>\n <span class=\"title\">{{ item.label }}</span>\n</button>\n",
|
|
16467
|
+
styles: [".icon-button{-ms-flex-align:center;align-items:center;background-color:transparent;border:none;cursor:pointer;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:column;flex-direction:column;gap:12px;-ms-flex-pack:center;justify-content:center;padding:5px;transition:transform .3s ease-in-out;width:200px}.icon-button:not(.icon-button--disabled):hover .initials,.icon-button:not(.icon-button--disabled):hover .title{font-weight:700}.icon-button.icon-font-awesome .title{padding-bottom:1em}.icon-button.icon-font-awesome:not(.icon-button--disabled):hover{border-radius:10px;background-color:#dedce5}.icon-button.icon-font-awesome .icon-wrapper i{color:#009494}.icon-button .icon-wrapper{-ms-flex-item-align:center;align-self:center;border-radius:10px;display:-ms-flexbox;display:flex;height:64px;-ms-flex-pack:center;justify-content:center;overflow:hidden;padding:8px;width:64px;-ms-flex-align:center;align-items:center;font-size:3em}.icon-button .icon-wrapper.icon-image{background-color:#dedce5}.icon-button .icon-wrapper .icon{background-position:center;background-repeat:no-repeat;background-size:cover;display:inline-block;height:100%;width:100%}.icon-button .icon-wrapper .initials{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;font-family:\"Open Sans\",sans-serif;font-size:20px;font-weight:700}.icon-button .title{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;font-family:\"Open Sans\",sans-serif;font-size:14px;line-clamp:2;overflow:hidden;text-overflow:ellipsis;width:100%}.icon-button--disabled{cursor:default;opacity:.5}.icon-button:not(.icon-button--disabled):hover{transform:scale(1.05)}.icon-button-active{transform:scale(1.05);border-radius:10px;background-color:#dedce5}.icon-button-active .initials,.icon-button-active .title{font-weight:700}"]
|
|
16359
16468
|
})
|
|
16360
16469
|
], GridMenuItemComponent);
|
|
16361
16470
|
|
|
@@ -16363,7 +16472,7 @@ let GridMenuModule = class GridMenuModule {
|
|
|
16363
16472
|
};
|
|
16364
16473
|
GridMenuModule = __decorate([
|
|
16365
16474
|
NgModule({
|
|
16366
|
-
imports: [CommonModule],
|
|
16475
|
+
imports: [CommonModule, AccessibilityEventsModule],
|
|
16367
16476
|
declarations: [GridMenuItemComponent, GridMenuComponent],
|
|
16368
16477
|
exports: [GridMenuItemComponent, GridMenuComponent],
|
|
16369
16478
|
})
|
|
@@ -21510,6 +21619,415 @@ ToastModule = __decorate([
|
|
|
21510
21619
|
})
|
|
21511
21620
|
], ToastModule);
|
|
21512
21621
|
|
|
21622
|
+
let TreeComponent = class TreeComponent {
|
|
21623
|
+
constructor() {
|
|
21624
|
+
this.treeData = [];
|
|
21625
|
+
this._selected = [];
|
|
21626
|
+
this.loading = false;
|
|
21627
|
+
this.selectionMode = "single";
|
|
21628
|
+
this.showCheckbox = false;
|
|
21629
|
+
this.allExpanded = false;
|
|
21630
|
+
this.selectedChange = new EventEmitter();
|
|
21631
|
+
this.treeNodeItemClicked = new EventEmitter();
|
|
21632
|
+
this.treeNodeEdit = new EventEmitter();
|
|
21633
|
+
this.nodeExpanded = new EventEmitter();
|
|
21634
|
+
this.nodeCollapsed = new EventEmitter();
|
|
21635
|
+
}
|
|
21636
|
+
get selected() {
|
|
21637
|
+
return this._selected;
|
|
21638
|
+
}
|
|
21639
|
+
set selected(value) {
|
|
21640
|
+
if (!value) {
|
|
21641
|
+
value = [];
|
|
21642
|
+
}
|
|
21643
|
+
if (!Array.isArray(value)) {
|
|
21644
|
+
value = [value];
|
|
21645
|
+
}
|
|
21646
|
+
this._selected = value;
|
|
21647
|
+
}
|
|
21648
|
+
ngOnChanges(changes) {
|
|
21649
|
+
this.onChanges(changes);
|
|
21650
|
+
}
|
|
21651
|
+
onTreeNodeItemClicked({ item }) {
|
|
21652
|
+
this.treeNodeItemClicked.emit(parseInternalTreeNodeItem(item));
|
|
21653
|
+
this.toggleChecked(item);
|
|
21654
|
+
}
|
|
21655
|
+
onTreeNodeEdit(payload) {
|
|
21656
|
+
const { revertAction, item, newValue, previousValue } = payload;
|
|
21657
|
+
this.treeNodeEdit.emit({
|
|
21658
|
+
revertAction,
|
|
21659
|
+
item: parseInternalTreeNodeItem(item),
|
|
21660
|
+
newValue,
|
|
21661
|
+
previousValue,
|
|
21662
|
+
});
|
|
21663
|
+
}
|
|
21664
|
+
onNodeExpanded(item) {
|
|
21665
|
+
this.nodeExpanded.emit(parseInternalTreeNodeItem(item));
|
|
21666
|
+
}
|
|
21667
|
+
onNodeCollapsed(item) {
|
|
21668
|
+
this.nodeCollapsed.emit(parseInternalTreeNodeItem(item));
|
|
21669
|
+
}
|
|
21670
|
+
toggleChecked(treeNodeItem) {
|
|
21671
|
+
const elementCheckState = !treeNodeItem.checked;
|
|
21672
|
+
if (!this.multiple) {
|
|
21673
|
+
flattenTree(this.treeData).forEach((x) => (x.checked = false));
|
|
21674
|
+
this.selected = [treeNodeItem];
|
|
21675
|
+
}
|
|
21676
|
+
treeNodeItem.checked = elementCheckState;
|
|
21677
|
+
if (this.multiple) {
|
|
21678
|
+
this.checkTreeDataChildren(treeNodeItem);
|
|
21679
|
+
}
|
|
21680
|
+
this.setSelected();
|
|
21681
|
+
}
|
|
21682
|
+
checkTreeDataChildren(selectedTreeNode) {
|
|
21683
|
+
const parentChecked = selectedTreeNode.checked;
|
|
21684
|
+
if (selectedTreeNode.children) {
|
|
21685
|
+
selectedTreeNode.children.forEach((item) => {
|
|
21686
|
+
const childrens = flattenTree(item.children || []);
|
|
21687
|
+
item.checked = parentChecked;
|
|
21688
|
+
childrens.forEach((child) => (child.checked = parentChecked));
|
|
21689
|
+
});
|
|
21690
|
+
}
|
|
21691
|
+
const getNodeChildrenSummary = (node) => {
|
|
21692
|
+
const allChildrenChecked = node.children.every((y) => y.checked === true);
|
|
21693
|
+
const someChildrenChecked = node.children.some((y) => y.checked === true || y.checked === null);
|
|
21694
|
+
const allChildrenUnchecked = node.children.every((y) => y.checked === false || y.checked === undefined);
|
|
21695
|
+
return { allChildrenChecked, someChildrenChecked, allChildrenUnchecked };
|
|
21696
|
+
};
|
|
21697
|
+
const updateCheckedStateRecursively = (node) => {
|
|
21698
|
+
var _a;
|
|
21699
|
+
if (!((_a = node.children) === null || _a === void 0 ? void 0 : _a.length))
|
|
21700
|
+
return;
|
|
21701
|
+
node.children.forEach(updateCheckedStateRecursively);
|
|
21702
|
+
const { allChildrenChecked, someChildrenChecked, allChildrenUnchecked } = getNodeChildrenSummary(node);
|
|
21703
|
+
if (allChildrenChecked) {
|
|
21704
|
+
node.checked = true;
|
|
21705
|
+
}
|
|
21706
|
+
else if (someChildrenChecked) {
|
|
21707
|
+
node.checked = null;
|
|
21708
|
+
}
|
|
21709
|
+
else if (allChildrenUnchecked) {
|
|
21710
|
+
node.checked = false;
|
|
21711
|
+
}
|
|
21712
|
+
};
|
|
21713
|
+
this.treeData.forEach(updateCheckedStateRecursively);
|
|
21714
|
+
}
|
|
21715
|
+
setSelected() {
|
|
21716
|
+
const selected = this.selectedElements;
|
|
21717
|
+
this.selected = [...selected];
|
|
21718
|
+
this.selectedChange.emit(selected);
|
|
21719
|
+
}
|
|
21720
|
+
onChanges(changes) {
|
|
21721
|
+
const allExpandedChanges = changes.allExpanded;
|
|
21722
|
+
const _checkIsFirstChangeWithValue = (value) => {
|
|
21723
|
+
var _a;
|
|
21724
|
+
if (!changes[value]) {
|
|
21725
|
+
return;
|
|
21726
|
+
}
|
|
21727
|
+
return (!changes[value].previousValue || changes[value].previousValue.length === 0) && ((_a = changes[value].currentValue) === null || _a === void 0 ? void 0 : _a.length) > 0;
|
|
21728
|
+
};
|
|
21729
|
+
if (_checkIsFirstChangeWithValue('selected')) {
|
|
21730
|
+
this.syncSelectedChanges();
|
|
21731
|
+
}
|
|
21732
|
+
if (_checkIsFirstChangeWithValue('treeData')) {
|
|
21733
|
+
const isAllExpanded = this.allExpanded;
|
|
21734
|
+
if (isAllExpanded) {
|
|
21735
|
+
this.expandAll();
|
|
21736
|
+
}
|
|
21737
|
+
}
|
|
21738
|
+
if (allExpandedChanges) {
|
|
21739
|
+
if (this.allExpanded) {
|
|
21740
|
+
this.expandAll();
|
|
21741
|
+
}
|
|
21742
|
+
else {
|
|
21743
|
+
this.collapseAll();
|
|
21744
|
+
}
|
|
21745
|
+
}
|
|
21746
|
+
}
|
|
21747
|
+
syncSelectedChanges() {
|
|
21748
|
+
const treeFlatten = flattenTree(this.treeData);
|
|
21749
|
+
this.selected.forEach((selectedItem) => {
|
|
21750
|
+
const item = treeFlatten.find((item) => item.id === selectedItem.id);
|
|
21751
|
+
if (item) {
|
|
21752
|
+
item.checked = true;
|
|
21753
|
+
}
|
|
21754
|
+
if (item.children && this.multiple) {
|
|
21755
|
+
item.children.forEach((child) => {
|
|
21756
|
+
child.checked = true;
|
|
21757
|
+
const existChildInSelectedList = this.selected.some((item) => item.id === child.id);
|
|
21758
|
+
if (!existChildInSelectedList) {
|
|
21759
|
+
this.selected.push(child);
|
|
21760
|
+
}
|
|
21761
|
+
});
|
|
21762
|
+
}
|
|
21763
|
+
});
|
|
21764
|
+
const selectedElements = this.selectedElements;
|
|
21765
|
+
const selectedElementsNotInSelectedList = selectedElements.filter((x) => !this.selected.some((y) => y.id === x.id));
|
|
21766
|
+
selectedElementsNotInSelectedList.forEach((item) => {
|
|
21767
|
+
this.checkTreeDataChildren(item);
|
|
21768
|
+
});
|
|
21769
|
+
this.setSelected();
|
|
21770
|
+
}
|
|
21771
|
+
collapseAll() {
|
|
21772
|
+
const flatten = flattenTree(this.treeData);
|
|
21773
|
+
flatten.forEach((item) => {
|
|
21774
|
+
item.isExpanded = false;
|
|
21775
|
+
});
|
|
21776
|
+
}
|
|
21777
|
+
expandAll() {
|
|
21778
|
+
const flatten = flattenTree(this.treeData);
|
|
21779
|
+
flatten.forEach((item) => {
|
|
21780
|
+
item.isExpanded = true;
|
|
21781
|
+
});
|
|
21782
|
+
}
|
|
21783
|
+
get selectedElements() {
|
|
21784
|
+
return flattenTree(this.treeData)
|
|
21785
|
+
.filter((x) => x.checked)
|
|
21786
|
+
.filter((x) => { var _a; return x.leaf !== true && !((_a = x.children) === null || _a === void 0 ? void 0 : _a.length); });
|
|
21787
|
+
}
|
|
21788
|
+
get multiple() {
|
|
21789
|
+
return this.selectionMode === "multiple";
|
|
21790
|
+
}
|
|
21791
|
+
};
|
|
21792
|
+
__decorate([
|
|
21793
|
+
Input()
|
|
21794
|
+
], TreeComponent.prototype, "treeData", void 0);
|
|
21795
|
+
__decorate([
|
|
21796
|
+
Input()
|
|
21797
|
+
], TreeComponent.prototype, "selected", null);
|
|
21798
|
+
__decorate([
|
|
21799
|
+
Input()
|
|
21800
|
+
], TreeComponent.prototype, "loading", void 0);
|
|
21801
|
+
__decorate([
|
|
21802
|
+
Input()
|
|
21803
|
+
], TreeComponent.prototype, "selectionMode", void 0);
|
|
21804
|
+
__decorate([
|
|
21805
|
+
Input()
|
|
21806
|
+
], TreeComponent.prototype, "showCheckbox", void 0);
|
|
21807
|
+
__decorate([
|
|
21808
|
+
Input()
|
|
21809
|
+
], TreeComponent.prototype, "allExpanded", void 0);
|
|
21810
|
+
__decorate([
|
|
21811
|
+
Output()
|
|
21812
|
+
], TreeComponent.prototype, "selectedChange", void 0);
|
|
21813
|
+
__decorate([
|
|
21814
|
+
Output()
|
|
21815
|
+
], TreeComponent.prototype, "treeNodeItemClicked", void 0);
|
|
21816
|
+
__decorate([
|
|
21817
|
+
Output()
|
|
21818
|
+
], TreeComponent.prototype, "treeNodeEdit", void 0);
|
|
21819
|
+
__decorate([
|
|
21820
|
+
Output()
|
|
21821
|
+
], TreeComponent.prototype, "nodeExpanded", void 0);
|
|
21822
|
+
__decorate([
|
|
21823
|
+
Output()
|
|
21824
|
+
], TreeComponent.prototype, "nodeCollapsed", void 0);
|
|
21825
|
+
TreeComponent = __decorate([
|
|
21826
|
+
Component({
|
|
21827
|
+
selector: "s-tree",
|
|
21828
|
+
template: "<div class=\"tree\" *sLoadingState=\"loading\">\n <s-tree-node-item\n *ngFor=\"let item of treeData\"\n [showCheckbox]=\"showCheckbox\"\n [treeNodeItem]=\"item\"\n (nodeExpanded)=\"onNodeExpanded($event)\"\n (nodeCollapsed)=\"onNodeCollapsed($event)\"\n (treeNodeEdit)=\"onTreeNodeEdit($event)\"\n (treeNodeItemClicked)=\"onTreeNodeItemClicked($event)\">\n </s-tree-node-item>\n</div>\n",
|
|
21829
|
+
styles: [".tree{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:5px;border:1px solid #ddd;border-radius:4px;padding:15px;margin:15px}"]
|
|
21830
|
+
})
|
|
21831
|
+
], TreeComponent);
|
|
21832
|
+
const flattenTree = (tree) => {
|
|
21833
|
+
const result = [];
|
|
21834
|
+
function traverse(nodes) {
|
|
21835
|
+
for (const node of nodes) {
|
|
21836
|
+
result.push(node);
|
|
21837
|
+
if (node.children && node.children.length) {
|
|
21838
|
+
traverse(node.children);
|
|
21839
|
+
}
|
|
21840
|
+
}
|
|
21841
|
+
}
|
|
21842
|
+
traverse(tree);
|
|
21843
|
+
return result;
|
|
21844
|
+
};
|
|
21845
|
+
const ɵ0$4 = flattenTree;
|
|
21846
|
+
const parseInternalTreeNodeItem = (internalTreeNodeItem) => {
|
|
21847
|
+
const { id, label, icon, checked, isExpanded, payload, editable, children } = internalTreeNodeItem;
|
|
21848
|
+
const object = {
|
|
21849
|
+
id,
|
|
21850
|
+
label,
|
|
21851
|
+
icon,
|
|
21852
|
+
checked,
|
|
21853
|
+
isExpanded,
|
|
21854
|
+
payload,
|
|
21855
|
+
editable,
|
|
21856
|
+
_children: children === null || children === void 0 ? void 0 : children.map(parseInternalTreeNodeItem),
|
|
21857
|
+
get children() {
|
|
21858
|
+
return this._children;
|
|
21859
|
+
},
|
|
21860
|
+
set children(value) {
|
|
21861
|
+
this._children = value;
|
|
21862
|
+
internalTreeNodeItem.children = value;
|
|
21863
|
+
},
|
|
21864
|
+
};
|
|
21865
|
+
Object.defineProperty(object, "_children", {
|
|
21866
|
+
enumerable: false,
|
|
21867
|
+
});
|
|
21868
|
+
return object;
|
|
21869
|
+
};
|
|
21870
|
+
const ɵ1$3 = parseInternalTreeNodeItem;
|
|
21871
|
+
|
|
21872
|
+
let TreeNodeItemComponent = class TreeNodeItemComponent {
|
|
21873
|
+
constructor(cdr, translateService) {
|
|
21874
|
+
this.cdr = cdr;
|
|
21875
|
+
this.translateService = translateService;
|
|
21876
|
+
this.ariaLevel = 0;
|
|
21877
|
+
this.showCheckbox = false;
|
|
21878
|
+
this.treeNodeItemClicked = new EventEmitter();
|
|
21879
|
+
this.treeNodeEdit = new EventEmitter();
|
|
21880
|
+
this.nodeExpanded = new EventEmitter();
|
|
21881
|
+
this.nodeCollapsed = new EventEmitter();
|
|
21882
|
+
}
|
|
21883
|
+
get hasChildren() {
|
|
21884
|
+
return this.treeNodeItem.children && this.treeNodeItem.children.length > 0;
|
|
21885
|
+
}
|
|
21886
|
+
get editable() {
|
|
21887
|
+
var _a;
|
|
21888
|
+
return ((_a = this.treeNodeItem) === null || _a === void 0 ? void 0 : _a.editable) || false;
|
|
21889
|
+
}
|
|
21890
|
+
get ariaLabel() {
|
|
21891
|
+
return `${this.translateService.instant('platform.angular_components.select')} ${this.treeNodeItem.label}`;
|
|
21892
|
+
}
|
|
21893
|
+
expandNode() {
|
|
21894
|
+
if (this.hasChildren && !this.treeNodeItem.isExpanded) {
|
|
21895
|
+
this.toggleExpanded(this.treeNodeItem);
|
|
21896
|
+
}
|
|
21897
|
+
}
|
|
21898
|
+
collapseNode() {
|
|
21899
|
+
if (this.hasChildren && this.treeNodeItem.isExpanded) {
|
|
21900
|
+
this.toggleExpanded(this.treeNodeItem);
|
|
21901
|
+
}
|
|
21902
|
+
}
|
|
21903
|
+
onCheckboxEnter(node) {
|
|
21904
|
+
const newState = node.checked === true ? false : true;
|
|
21905
|
+
node.checked = newState;
|
|
21906
|
+
this.treeNodeItemClicked.emit({ item: node, event: new KeyboardEvent('keydown', { key: 'Enter' }) });
|
|
21907
|
+
}
|
|
21908
|
+
handleTreeNodeItemClick(event, treeNodeItem) {
|
|
21909
|
+
const item = treeNodeItem || this.treeNodeItem;
|
|
21910
|
+
this.treeNodeItemClicked.emit({ item, event });
|
|
21911
|
+
}
|
|
21912
|
+
handleTreeNodeItemClicked({ event, item }) {
|
|
21913
|
+
if (item.isEditing) {
|
|
21914
|
+
return;
|
|
21915
|
+
}
|
|
21916
|
+
this.handleTreeNodeItemClick(event, item);
|
|
21917
|
+
}
|
|
21918
|
+
toggleExpanded(treeNodeItem) {
|
|
21919
|
+
treeNodeItem.isExpanded = !treeNodeItem.isExpanded;
|
|
21920
|
+
if (treeNodeItem.isExpanded) {
|
|
21921
|
+
this.nodeExpanded.emit(treeNodeItem);
|
|
21922
|
+
}
|
|
21923
|
+
else {
|
|
21924
|
+
this.nodeCollapsed.emit(treeNodeItem);
|
|
21925
|
+
}
|
|
21926
|
+
}
|
|
21927
|
+
toggleEditing($event) {
|
|
21928
|
+
var _a;
|
|
21929
|
+
$event.stopPropagation();
|
|
21930
|
+
this.treeNodeItem.isEditing = !this.treeNodeItem.isEditing;
|
|
21931
|
+
this.cdr.detectChanges();
|
|
21932
|
+
if (this.treeNodeItem.isEditing) {
|
|
21933
|
+
this.treeNodeItem.editNewValue = this.treeNodeItem.label;
|
|
21934
|
+
const input = (_a = this.input) === null || _a === void 0 ? void 0 : _a.nativeElement;
|
|
21935
|
+
input === null || input === void 0 ? void 0 : input.focus();
|
|
21936
|
+
}
|
|
21937
|
+
}
|
|
21938
|
+
cancelEdit($event) {
|
|
21939
|
+
$event.stopPropagation();
|
|
21940
|
+
this.treeNodeItem.isEditing = false;
|
|
21941
|
+
this.treeNodeItem.editNewValue = '';
|
|
21942
|
+
this.treeNodeItem.editPreviousValue = '';
|
|
21943
|
+
this.cdr.detectChanges();
|
|
21944
|
+
}
|
|
21945
|
+
saveEdit($event) {
|
|
21946
|
+
$event.stopPropagation();
|
|
21947
|
+
this.treeNodeItem.isEditing = false;
|
|
21948
|
+
if (!this.treeNodeItem.editNewValue) {
|
|
21949
|
+
return;
|
|
21950
|
+
}
|
|
21951
|
+
this.treeNodeItem.editPreviousValue = this.treeNodeItem.label;
|
|
21952
|
+
this.treeNodeItem.label = this.treeNodeItem.editNewValue;
|
|
21953
|
+
const revertAction = () => {
|
|
21954
|
+
this.treeNodeItem.label = this.treeNodeItem.editPreviousValue;
|
|
21955
|
+
this.treeNodeItem.isEditing = false;
|
|
21956
|
+
this.cdr.detectChanges();
|
|
21957
|
+
};
|
|
21958
|
+
this.treeNodeEdit.emit({ revertAction, item: this.treeNodeItem, newValue: this.treeNodeItem.editNewValue, previousValue: this.treeNodeItem.editPreviousValue });
|
|
21959
|
+
}
|
|
21960
|
+
treeNodeEditChildEvent(payload) {
|
|
21961
|
+
this.treeNodeEdit.emit(payload);
|
|
21962
|
+
}
|
|
21963
|
+
};
|
|
21964
|
+
TreeNodeItemComponent.ctorParameters = () => [
|
|
21965
|
+
{ type: ChangeDetectorRef },
|
|
21966
|
+
{ type: TranslateService }
|
|
21967
|
+
];
|
|
21968
|
+
__decorate([
|
|
21969
|
+
Input()
|
|
21970
|
+
], TreeNodeItemComponent.prototype, "ariaLevel", void 0);
|
|
21971
|
+
__decorate([
|
|
21972
|
+
Input()
|
|
21973
|
+
], TreeNodeItemComponent.prototype, "showCheckbox", void 0);
|
|
21974
|
+
__decorate([
|
|
21975
|
+
Input()
|
|
21976
|
+
], TreeNodeItemComponent.prototype, "treeNodeItem", void 0);
|
|
21977
|
+
__decorate([
|
|
21978
|
+
Output()
|
|
21979
|
+
], TreeNodeItemComponent.prototype, "treeNodeItemClicked", void 0);
|
|
21980
|
+
__decorate([
|
|
21981
|
+
Output()
|
|
21982
|
+
], TreeNodeItemComponent.prototype, "treeNodeEdit", void 0);
|
|
21983
|
+
__decorate([
|
|
21984
|
+
Output()
|
|
21985
|
+
], TreeNodeItemComponent.prototype, "nodeExpanded", void 0);
|
|
21986
|
+
__decorate([
|
|
21987
|
+
Output()
|
|
21988
|
+
], TreeNodeItemComponent.prototype, "nodeCollapsed", void 0);
|
|
21989
|
+
__decorate([
|
|
21990
|
+
ViewChild('input', { read: ElementRef })
|
|
21991
|
+
], TreeNodeItemComponent.prototype, "input", void 0);
|
|
21992
|
+
TreeNodeItemComponent = __decorate([
|
|
21993
|
+
Component({
|
|
21994
|
+
selector: 's-tree-node-item',
|
|
21995
|
+
template: "<div\n *ngIf=\"treeNodeItem\"\n class=\"tree-node-item\"\n role=\"treeitem\"\n [class.tree-node-item-selected]=\"treeNodeItem.checked\"\n [class.selectable]=\"hasChildren\"\n [attr.aria-expanded]=\"hasChildren ? treeNodeItem.isExpanded : null\"\n [attr.aria-selected]=\"treeNodeItem.checked === true\"\n [attr.aria-label]=\"treeNodeItem.label\"\n [attr.aria-level]=\"ariaLevel\"\n tabindex=\"0\"\n (keydown.enter)=\"handleTreeNodeItemClick($event)\"\n (keydown.arrowRight)=\"expandNode()\"\n (keydown.arrowLeft)=\"collapseNode()\"\n>\n <div class=\"arrow\" *ngIf=\"hasChildren || treeNodeItem.leaf === true\" (click)=\"toggleExpanded(treeNodeItem)\">\n <i [class]=\"treeNodeItem.collapsedIcon || 'fas fa-chevron-right'\" *ngIf=\"!treeNodeItem.isExpanded\"></i>\n <i [class]=\"treeNodeItem.expandedIcon || 'fas fa-chevron-down'\" *ngIf=\"treeNodeItem.isExpanded\"></i>\n </div>\n\n <div class=\"tree-node-item-text\" (click)=\"handleTreeNodeItemClick($event)\">\n <span class=\"tree-node-item-text-icon\" *ngIf=\"treeNodeItem.icon || treeNodeItem.isEditing\">\n <i [class]=\"treeNodeItem.icon\" *ngIf=\"treeNodeItem.icon && !treeNodeItem.isEditing\"></i>\n <i class=\"fas fa-edit edit\" *ngIf=\"treeNodeItem.isEditing\" (click)=\"saveEdit($event)\"></i>\n </span>\n\n <span class=\"tree-node-item-text-checkbox\" *ngIf=\"showCheckbox && !treeNodeItem.isEditing\">\n <input\n type=\"checkbox\"\n [checked]=\"treeNodeItem.checked === true\"\n [indeterminate]=\"treeNodeItem.checked === null\"\n [attr.aria-checked]=\"treeNodeItem.checked === null ? 'mixed' : treeNodeItem.checked\"\n [attr.aria-label]=\"ariaLabel\"\n role=\"checkbox\"\n tabindex=\"0\"\n (keydown.enter)=\"onCheckboxEnter(treeNodeItem)\"\n />\n </span>\n\n <span class=\"tree-node-item-text-label\">\n <ng-container *ngIf=\"treeNodeItem.isEditing\">\n <input\n #input\n type=\"text\"\n pInputText\n class=\"tree-node-item-text-input\"\n [(ngModel)]=\"treeNodeItem.editNewValue\"\n (keydown.enter)=\"saveEdit($event)\"\n (keydown.escape)=\"cancelEdit($event)\"\n (click)=\"$event.stopPropagation()\"\n aria-label=\"Editar nome do item\"\n aria-live=\"polite\"\n />\n </ng-container>\n <ng-container *ngIf=\"!treeNodeItem.isEditing\">\n {{ treeNodeItem.label }}\n </ng-container>\n </span>\n\n <span class=\"tree-node-item-text-editable\" *ngIf=\"editable\">\n <i class=\"fas fa-pencil-alt\" (click)=\"toggleEditing($event)\" aria-label=\"Editar item\" tabindex=\"0\"></i>\n </span>\n </div>\n</div>\n\n<div\n *ngIf=\"hasChildren && treeNodeItem.isExpanded\"\n @fadeExpand\n class=\"child\"\n role=\"group\"\n @childrenAnimation\n>\n <s-tree-node-item\n *ngFor=\"let child of treeNodeItem.children\"\n [showCheckbox]=\"showCheckbox\"\n [treeNodeItem]=\"child\"\n [ariaLevel]=\"ariaLevel + 1\"\n (treeNodeItemClicked)=\"handleTreeNodeItemClicked($event)\"\n (treeNodeEdit)=\"treeNodeEditChildEvent($event)\"\n (nodeExpanded)=\"nodeExpanded.emit($event)\"\n (nodeCollapsed)=\"nodeCollapsed.emit($event)\"\n class=\"child-item\"\n >\n </s-tree-node-item>\n</div>\n",
|
|
21996
|
+
animations: [
|
|
21997
|
+
trigger('fadeExpand', [
|
|
21998
|
+
transition(':enter', [
|
|
21999
|
+
style$7({ height: '0px', opacity: 0, overflow: 'hidden' }),
|
|
22000
|
+
animate('200ms ease-out', style$7({ height: '*', opacity: 1 }))
|
|
22001
|
+
]),
|
|
22002
|
+
transition(':leave', [
|
|
22003
|
+
animate('150ms ease-in', style$7({ height: '0px', opacity: 0 }))
|
|
22004
|
+
])
|
|
22005
|
+
]),
|
|
22006
|
+
trigger('childrenAnimation', [
|
|
22007
|
+
transition(':enter', [
|
|
22008
|
+
query(':enter', [
|
|
22009
|
+
style$7({ opacity: 0, transform: 'translateY(-10px)' }),
|
|
22010
|
+
stagger(60, [
|
|
22011
|
+
animate('200ms ease-out', style$7({ opacity: 1, transform: 'translateY(0)' }))
|
|
22012
|
+
])
|
|
22013
|
+
], { optional: true })
|
|
22014
|
+
])
|
|
22015
|
+
])
|
|
22016
|
+
],
|
|
22017
|
+
styles: [".tree-node-item{width:100%;display:-ms-flexbox;display:flex;cursor:pointer}.tree-node-item .arrow{padding:3px 9px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.tree-node-item-text{-ms-flex:1;flex:1;display:-ms-flexbox;display:flex;padding:3px 0;-ms-flex-align:center;align-items:center}.tree-node-item-text:hover{background:#f1f7f8}.tree-node-item-text-icon{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;padding-right:9px}.tree-node-item-text-icon .edit{color:#428bca}.tree-node-item-text-label{color:#212533;font-family:\"Open Sans\";font-size:14px;font-style:normal;font-weight:400;line-height:150%;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1}.tree-node-item-text-checkbox{padding-right:9px;display:-ms-flexbox;display:flex}.tree-node-item-text-checkbox input[type=checkbox]{accent-color:#428bca;width:14px;height:14px}.tree-node-item-text-editable{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end}.tree-node-item-text-editable i{padding:9px}.tree-node-item-text-input{-ms-flex:1;flex:1}.tree-node-item.selectable .tree-node-item-text-label{font-family:\"Open Sans\";font-size:14px;font-style:normal;font-weight:700}.tree-node-item.selectable *{cursor:pointer}.tree-node-item-selected .tree-node-item-text{background:#d5e8ec}.child{overflow:hidden;padding-left:2.2em;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:5px}.child-item:first-child{padding-top:5px}"]
|
|
22018
|
+
})
|
|
22019
|
+
], TreeNodeItemComponent);
|
|
22020
|
+
|
|
22021
|
+
let TreeModule = class TreeModule {
|
|
22022
|
+
};
|
|
22023
|
+
TreeModule = __decorate([
|
|
22024
|
+
NgModule({
|
|
22025
|
+
declarations: [TreeNodeItemComponent, TreeComponent],
|
|
22026
|
+
imports: [CommonModule, FormsModule, InputTextModule, LoadingStateModule, TranslateModule],
|
|
22027
|
+
exports: [TreeComponent],
|
|
22028
|
+
})
|
|
22029
|
+
], TreeModule);
|
|
22030
|
+
|
|
21513
22031
|
const fallback = {
|
|
21514
22032
|
"platform.angular_components.attachment": "anexo",
|
|
21515
22033
|
"platform.angular_components.watch": "assistir",
|
|
@@ -21847,5 +22365,5 @@ const fallback = {
|
|
|
21847
22365
|
* Generated bundle index. Do not edit.
|
|
21848
22366
|
*/
|
|
21849
22367
|
|
|
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 };
|
|
22368
|
+
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, TreeComponent, TreeModule, 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, TreeNodeItemComponent as ɵei, LoadingStateModule as ɵej, 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 };
|
|
21851
22369
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|