@seniorsistemas/angular-components 17.17.14 → 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.
Files changed (39) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +196 -11
  2. package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
  3. package/bundles/seniorsistemas-angular-components.umd.min.js +1 -1
  4. package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
  5. package/components/index.d.ts +1 -0
  6. package/components/thumbnails/components/thumbnail-item/components/thumbnail-item-image/thumbnail-item-image.component.d.ts +3 -0
  7. package/components/thumbnails/components/thumbnail-item/components/thumbnail-item-video/thumbnail-item-video.component.d.ts +8 -0
  8. package/components/thumbnails/components/thumbnail-item/thumbnail-item.component.d.ts +18 -0
  9. package/components/thumbnails/index.d.ts +3 -0
  10. package/components/thumbnails/models/thumbnails-item.d.ts +20 -0
  11. package/components/thumbnails/thumbnails.component.d.ts +16 -0
  12. package/components/thumbnails/thumbnails.module.d.ts +2 -0
  13. package/esm2015/components/index.js +2 -1
  14. package/esm2015/components/thumbnails/components/thumbnail-item/components/thumbnail-item-image/thumbnail-item-image.component.js +16 -0
  15. package/esm2015/components/thumbnails/components/thumbnail-item/components/thumbnail-item-video/thumbnail-item-video.component.js +41 -0
  16. package/esm2015/components/thumbnails/components/thumbnail-item/thumbnail-item.component.js +56 -0
  17. package/esm2015/components/thumbnails/index.js +3 -0
  18. package/esm2015/components/thumbnails/models/thumbnails-item.js +1 -0
  19. package/esm2015/components/thumbnails/thumbnails.component.js +52 -0
  20. package/esm2015/components/thumbnails/thumbnails.module.js +21 -0
  21. package/esm2015/locale/fallback.js +4 -1
  22. package/esm2015/seniorsistemas-angular-components.js +15 -12
  23. package/esm5/components/index.js +2 -1
  24. package/esm5/components/thumbnails/components/thumbnail-item/components/thumbnail-item-image/thumbnail-item-image.component.js +19 -0
  25. package/esm5/components/thumbnails/components/thumbnail-item/components/thumbnail-item-video/thumbnail-item-video.component.js +44 -0
  26. package/esm5/components/thumbnails/components/thumbnail-item/thumbnail-item.component.js +58 -0
  27. package/esm5/components/thumbnails/index.js +3 -0
  28. package/esm5/components/thumbnails/models/thumbnails-item.js +1 -0
  29. package/esm5/components/thumbnails/thumbnails.component.js +57 -0
  30. package/esm5/components/thumbnails/thumbnails.module.js +24 -0
  31. package/esm5/locale/fallback.js +4 -1
  32. package/esm5/seniorsistemas-angular-components.js +15 -12
  33. package/fesm2015/seniorsistemas-angular-components.js +165 -1
  34. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  35. package/fesm5/seniorsistemas-angular-components.js +181 -1
  36. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  37. package/package.json +1 -1
  38. package/seniorsistemas-angular-components.d.ts +14 -11
  39. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -19633,6 +19633,183 @@ var StepsModule = /** @class */ (function () {
19633
19633
  return StepsModule;
19634
19634
  }());
19635
19635
 
19636
+ var ThumbnailsComponent = /** @class */ (function () {
19637
+ function ThumbnailsComponent() {
19638
+ this.selectable = true;
19639
+ this.selectionChange = new EventEmitter();
19640
+ this.itemOpened = new EventEmitter();
19641
+ this._selection = [];
19642
+ }
19643
+ Object.defineProperty(ThumbnailsComponent.prototype, "selection", {
19644
+ set: function (items) {
19645
+ this._selection = __spread(items);
19646
+ },
19647
+ enumerable: true,
19648
+ configurable: true
19649
+ });
19650
+ ThumbnailsComponent.prototype.onItemOpened = function (item) {
19651
+ this.itemOpened.emit(item);
19652
+ };
19653
+ ThumbnailsComponent.prototype.onItemSelected = function (items) {
19654
+ if (items.selected) {
19655
+ this._selection.push(items.item);
19656
+ }
19657
+ else {
19658
+ this._selection.splice(this._selection.findIndex(function (item) { return item === items.item; }), 1);
19659
+ }
19660
+ this.selectionChange.emit(this._selection);
19661
+ };
19662
+ ThumbnailsComponent.prototype.isSelected = function (item) {
19663
+ return this._selection.some(function (i) { return i.id === item.id; });
19664
+ };
19665
+ __decorate([
19666
+ Input()
19667
+ ], ThumbnailsComponent.prototype, "items", void 0);
19668
+ __decorate([
19669
+ Input()
19670
+ ], ThumbnailsComponent.prototype, "selectable", void 0);
19671
+ __decorate([
19672
+ Input()
19673
+ ], ThumbnailsComponent.prototype, "selection", null);
19674
+ __decorate([
19675
+ Output()
19676
+ ], ThumbnailsComponent.prototype, "selectionChange", void 0);
19677
+ __decorate([
19678
+ Output()
19679
+ ], ThumbnailsComponent.prototype, "itemOpened", void 0);
19680
+ ThumbnailsComponent = __decorate([
19681
+ Component({
19682
+ selector: "s-thumbnails",
19683
+ 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",
19684
+ styles: [".thumbnails{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:12px}"]
19685
+ })
19686
+ ], ThumbnailsComponent);
19687
+ return ThumbnailsComponent;
19688
+ }());
19689
+
19690
+ var ThumbnailItemComponent = /** @class */ (function () {
19691
+ function ThumbnailItemComponent() {
19692
+ this.isCheckable = true;
19693
+ this.isChecked = false;
19694
+ this.checked = new EventEmitter();
19695
+ this.opened = new EventEmitter();
19696
+ }
19697
+ ThumbnailItemComponent.prototype.ngOnInit = function () {
19698
+ this._validateItemData();
19699
+ this._createFormGroup();
19700
+ };
19701
+ ThumbnailItemComponent.prototype.onClick = function () {
19702
+ this.opened.emit(this.itemData);
19703
+ };
19704
+ ThumbnailItemComponent.prototype._createFormGroup = function () {
19705
+ var _this = this;
19706
+ this.checkboxFormGroup = new FormGroup({
19707
+ checkbox: new FormControl({ checked: this.isChecked }),
19708
+ });
19709
+ this.checkboxFormGroup.get("checkbox").valueChanges.subscribe(function (value) {
19710
+ _this.checked.emit({ item: _this.itemData, checked: value.checked });
19711
+ });
19712
+ };
19713
+ ThumbnailItemComponent.prototype._validateItemData = function () {
19714
+ if (isNullOrUndefined(this.itemData)) {
19715
+ throw new Error("itemData is required");
19716
+ }
19717
+ };
19718
+ __decorate([
19719
+ Input()
19720
+ ], ThumbnailItemComponent.prototype, "itemData", void 0);
19721
+ __decorate([
19722
+ Input()
19723
+ ], ThumbnailItemComponent.prototype, "isCheckable", void 0);
19724
+ __decorate([
19725
+ Input()
19726
+ ], ThumbnailItemComponent.prototype, "isChecked", void 0);
19727
+ __decorate([
19728
+ Output()
19729
+ ], ThumbnailItemComponent.prototype, "checked", void 0);
19730
+ __decorate([
19731
+ Output()
19732
+ ], ThumbnailItemComponent.prototype, "opened", void 0);
19733
+ ThumbnailItemComponent = __decorate([
19734
+ Component({
19735
+ selector: "s-thumbnail-item",
19736
+ 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",
19737
+ 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%}"]
19738
+ })
19739
+ ], ThumbnailItemComponent);
19740
+ return ThumbnailItemComponent;
19741
+ }());
19742
+
19743
+ var ThumbnailItemVideoComponent = /** @class */ (function () {
19744
+ function ThumbnailItemVideoComponent() {
19745
+ }
19746
+ ThumbnailItemVideoComponent.prototype.onMouseEnter = function () {
19747
+ var _a;
19748
+ if ((_a = this.videoPlayer) === null || _a === void 0 ? void 0 : _a.nativeElement) {
19749
+ this.videoPlayer.nativeElement.play();
19750
+ }
19751
+ };
19752
+ ThumbnailItemVideoComponent.prototype.onMouseLeave = function () {
19753
+ var _a;
19754
+ if ((_a = this.videoPlayer) === null || _a === void 0 ? void 0 : _a.nativeElement) {
19755
+ this.videoPlayer.nativeElement.pause();
19756
+ this.videoPlayer.nativeElement.currentTime = 0;
19757
+ }
19758
+ };
19759
+ __decorate([
19760
+ Input()
19761
+ ], ThumbnailItemVideoComponent.prototype, "imageUrl", void 0);
19762
+ __decorate([
19763
+ Input()
19764
+ ], ThumbnailItemVideoComponent.prototype, "videoUrl", void 0);
19765
+ __decorate([
19766
+ ViewChild("videoPlayer")
19767
+ ], ThumbnailItemVideoComponent.prototype, "videoPlayer", void 0);
19768
+ __decorate([
19769
+ HostListener("mouseenter")
19770
+ ], ThumbnailItemVideoComponent.prototype, "onMouseEnter", null);
19771
+ __decorate([
19772
+ HostListener("mouseleave")
19773
+ ], ThumbnailItemVideoComponent.prototype, "onMouseLeave", null);
19774
+ ThumbnailItemVideoComponent = __decorate([
19775
+ Component({
19776
+ selector: "s-thumbnail-item-video",
19777
+ 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",
19778
+ 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}"]
19779
+ })
19780
+ ], ThumbnailItemVideoComponent);
19781
+ return ThumbnailItemVideoComponent;
19782
+ }());
19783
+
19784
+ var ThumbnailItemImageComponent = /** @class */ (function () {
19785
+ function ThumbnailItemImageComponent() {
19786
+ }
19787
+ __decorate([
19788
+ Input()
19789
+ ], ThumbnailItemImageComponent.prototype, "imageUrl", void 0);
19790
+ ThumbnailItemImageComponent = __decorate([
19791
+ Component({
19792
+ selector: "s-thumbnail-item-image",
19793
+ 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",
19794
+ 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%}"]
19795
+ })
19796
+ ], ThumbnailItemImageComponent);
19797
+ return ThumbnailItemImageComponent;
19798
+ }());
19799
+
19800
+ var ThumbnailsModule = /** @class */ (function () {
19801
+ function ThumbnailsModule() {
19802
+ }
19803
+ ThumbnailsModule = __decorate([
19804
+ NgModule({
19805
+ imports: [CommonModule, ReactiveFormsModule, TranslateModule, CheckboxModule],
19806
+ declarations: [ThumbnailsComponent, ThumbnailItemComponent, ThumbnailItemVideoComponent, ThumbnailItemImageComponent],
19807
+ exports: [ThumbnailsComponent],
19808
+ })
19809
+ ], ThumbnailsModule);
19810
+ return ThumbnailsModule;
19811
+ }());
19812
+
19636
19813
  var TileComponent = /** @class */ (function () {
19637
19814
  function TileComponent() {
19638
19815
  this.id = "s-tile-" + TileComponent_1.nextId++;
@@ -20999,6 +21176,9 @@ var ChipsModule = /** @class */ (function () {
20999
21176
  }());
21000
21177
 
21001
21178
  var fallback = {
21179
+ "platform.angular_components.watch": "assistir",
21180
+ "platform.angular_components.view": "visualizar",
21181
+ "platform.angular_components.listen": "ouvir",
21002
21182
  "platform.angular_components.drag_your_photo_or": "Arraste sua foto ou",
21003
21183
  "platform.angular_components.select_a_file": "selecione um arquivo",
21004
21184
  "platform.angular_components.change_photo": "Alterar foto",
@@ -21324,5 +21504,5 @@ var fallback = {
21324
21504
  * Generated bundle index. Do not edit.
21325
21505
  */
21326
21506
 
21327
- 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, TimelineItemModule as ɵdq, TimelineIconItemComponent as ɵdr, HorizontalTimelineModule as ɵds, HorizontalTimelineComponent as ɵdt, VerticalTimelineModule as ɵdu, VerticalTimelineComponent as ɵdv, RangeLineComponent as ɵdw, CollapseOptionComponent as ɵdx, CollapsedItemsComponent as ɵdy, VerticalItemsComponent as ɵdz, TieredMenuGlobalService as ɵe, ChipItemComponent as ɵea, 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 };
21507
+ 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 };
21328
21508
  //# sourceMappingURL=seniorsistemas-angular-components.js.map