@seniorsistemas/angular-components 17.2.14 → 17.2.15
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 +90 -31
- 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/slide-panel/slide-panel.component.d.ts +15 -5
- package/components/slide-panel/slide-panel.service.d.ts +7 -0
- package/esm2015/components/slide-panel/slide-panel.component.js +45 -11
- package/esm2015/components/slide-panel/slide-panel.module.js +3 -1
- package/esm2015/components/slide-panel/slide-panel.service.js +27 -0
- package/esm2015/seniorsistemas-angular-components.js +24 -23
- package/esm5/components/slide-panel/slide-panel.component.js +46 -10
- package/esm5/components/slide-panel/slide-panel.module.js +3 -1
- package/esm5/components/slide-panel/slide-panel.service.js +28 -0
- package/esm5/seniorsistemas-angular-components.js +24 -23
- package/fesm2015/seniorsistemas-angular-components.js +66 -11
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +68 -10
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.d.ts +23 -22
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -11806,34 +11806,74 @@ var SidebarModule = /** @class */ (function () {
|
|
|
11806
11806
|
return SidebarModule;
|
|
11807
11807
|
}());
|
|
11808
11808
|
|
|
11809
|
+
var SlidePanelService = /** @class */ (function () {
|
|
11810
|
+
function SlidePanelService() {
|
|
11811
|
+
this.modalCloseMap = new Map();
|
|
11812
|
+
}
|
|
11813
|
+
SlidePanelService.prototype.createSlidePanel = function (id) {
|
|
11814
|
+
var panelSubject = new Subject();
|
|
11815
|
+
this.modalCloseMap.set(id, panelSubject);
|
|
11816
|
+
return panelSubject.asObservable();
|
|
11817
|
+
};
|
|
11818
|
+
SlidePanelService.prototype.getModalCloseObservable = function (id) {
|
|
11819
|
+
return this.modalCloseMap.get(id).asObservable();
|
|
11820
|
+
};
|
|
11821
|
+
SlidePanelService.prototype.closeModal = function (id) {
|
|
11822
|
+
var subject = this.modalCloseMap.get(id);
|
|
11823
|
+
if (subject) {
|
|
11824
|
+
subject.next();
|
|
11825
|
+
}
|
|
11826
|
+
};
|
|
11827
|
+
SlidePanelService = __decorate([
|
|
11828
|
+
Injectable()
|
|
11829
|
+
], SlidePanelService);
|
|
11830
|
+
return SlidePanelService;
|
|
11831
|
+
}());
|
|
11832
|
+
|
|
11809
11833
|
var SMALL_DEVICE_BREAKPOINT = 420;
|
|
11810
11834
|
var SlidePanelComponent = /** @class */ (function () {
|
|
11811
|
-
function SlidePanelComponent() {
|
|
11835
|
+
function SlidePanelComponent(slidePanelService) {
|
|
11836
|
+
this.slidePanelService = slidePanelService;
|
|
11837
|
+
this.id = "slide-panel-" + ++SlidePanelComponent_1.nextId;
|
|
11812
11838
|
this.openIcon = "fas fa-chevron-right";
|
|
11813
11839
|
this.closeIcon = "fas fa-chevron-left";
|
|
11814
11840
|
this.cache = false;
|
|
11815
11841
|
this.panelOpened = new EventEmitter();
|
|
11816
11842
|
this.panelClosed = new EventEmitter();
|
|
11817
|
-
this.slideHeight = 0;
|
|
11818
11843
|
this.isOpen = false;
|
|
11819
11844
|
this.isSlideOver = false;
|
|
11820
11845
|
this.isAnimating = false;
|
|
11821
11846
|
this.isContentAnimationDisabled = true;
|
|
11847
|
+
this.slideHeight = 0;
|
|
11848
|
+
this.sideContentWidth = 0;
|
|
11849
|
+
this._unsubscribe$ = new Subject();
|
|
11822
11850
|
}
|
|
11851
|
+
SlidePanelComponent_1 = SlidePanelComponent;
|
|
11823
11852
|
SlidePanelComponent.prototype.onResize = function () {
|
|
11824
11853
|
this._checkOverBehavior();
|
|
11825
11854
|
};
|
|
11826
11855
|
SlidePanelComponent.prototype.ngOnInit = function () {
|
|
11856
|
+
var _this = this;
|
|
11827
11857
|
this._checkOverBehavior();
|
|
11858
|
+
this.slidePanelService.createSlidePanel(this.id)
|
|
11859
|
+
.pipe(takeUntil(this._unsubscribe$))
|
|
11860
|
+
.subscribe(function () {
|
|
11861
|
+
_this.isOpen = false;
|
|
11862
|
+
});
|
|
11828
11863
|
};
|
|
11829
11864
|
SlidePanelComponent.prototype.ngAfterViewChecked = function () {
|
|
11830
11865
|
var _this = this;
|
|
11831
11866
|
// to executed at a safe time prior to control returning to the browser's event loop
|
|
11832
11867
|
queueMicrotask(function () {
|
|
11833
11868
|
_this._calculateSlideHeight();
|
|
11869
|
+
_this._calculateSideContentWidth();
|
|
11834
11870
|
_this.isContentAnimationDisabled = false;
|
|
11835
11871
|
});
|
|
11836
11872
|
};
|
|
11873
|
+
SlidePanelComponent.prototype.ngOnDestroy = function () {
|
|
11874
|
+
this._unsubscribe$.next();
|
|
11875
|
+
this._unsubscribe$.complete();
|
|
11876
|
+
};
|
|
11837
11877
|
SlidePanelComponent.prototype.onClickButton = function () {
|
|
11838
11878
|
if (this.isAnimating) {
|
|
11839
11879
|
return;
|
|
@@ -11851,13 +11891,27 @@ var SlidePanelComponent = /** @class */ (function () {
|
|
|
11851
11891
|
};
|
|
11852
11892
|
SlidePanelComponent.prototype.onContentAnimationDone = function () {
|
|
11853
11893
|
this.isAnimating = false;
|
|
11894
|
+
this._calculateSideContentWidth();
|
|
11854
11895
|
};
|
|
11855
11896
|
SlidePanelComponent.prototype._checkOverBehavior = function () {
|
|
11856
11897
|
this.isSlideOver = window.innerWidth <= SMALL_DEVICE_BREAKPOINT;
|
|
11857
11898
|
};
|
|
11858
11899
|
SlidePanelComponent.prototype._calculateSlideHeight = function () {
|
|
11859
|
-
this.slideHeight = this.
|
|
11900
|
+
this.slideHeight = this._sideContentRef.nativeElement.clientHeight;
|
|
11860
11901
|
};
|
|
11902
|
+
SlidePanelComponent.prototype._calculateSideContentWidth = function () {
|
|
11903
|
+
var slidePanelWidth = this._slidePanelRef.nativeElement.getBoundingClientRect().width;
|
|
11904
|
+
var slideContentWidth = this._slideContentRef.nativeElement.getBoundingClientRect().width;
|
|
11905
|
+
this.sideContentWidth = slidePanelWidth - slideContentWidth;
|
|
11906
|
+
};
|
|
11907
|
+
var SlidePanelComponent_1;
|
|
11908
|
+
SlidePanelComponent.nextId = 0;
|
|
11909
|
+
SlidePanelComponent.ctorParameters = function () { return [
|
|
11910
|
+
{ type: SlidePanelService }
|
|
11911
|
+
]; };
|
|
11912
|
+
__decorate([
|
|
11913
|
+
Input()
|
|
11914
|
+
], SlidePanelComponent.prototype, "id", void 0);
|
|
11861
11915
|
__decorate([
|
|
11862
11916
|
Input()
|
|
11863
11917
|
], SlidePanelComponent.prototype, "openIcon", void 0);
|
|
@@ -11874,18 +11928,21 @@ var SlidePanelComponent = /** @class */ (function () {
|
|
|
11874
11928
|
Output()
|
|
11875
11929
|
], SlidePanelComponent.prototype, "panelClosed", void 0);
|
|
11876
11930
|
__decorate([
|
|
11877
|
-
ViewChild("
|
|
11878
|
-
], SlidePanelComponent.prototype, "
|
|
11931
|
+
ViewChild("slidePanel")
|
|
11932
|
+
], SlidePanelComponent.prototype, "_slidePanelRef", void 0);
|
|
11933
|
+
__decorate([
|
|
11934
|
+
ViewChild("slideContent")
|
|
11935
|
+
], SlidePanelComponent.prototype, "_slideContentRef", void 0);
|
|
11879
11936
|
__decorate([
|
|
11880
11937
|
ViewChild("sideContent")
|
|
11881
|
-
], SlidePanelComponent.prototype, "
|
|
11938
|
+
], SlidePanelComponent.prototype, "_sideContentRef", void 0);
|
|
11882
11939
|
__decorate([
|
|
11883
11940
|
HostListener("window:resize")
|
|
11884
11941
|
], SlidePanelComponent.prototype, "onResize", null);
|
|
11885
|
-
SlidePanelComponent = __decorate([
|
|
11942
|
+
SlidePanelComponent = SlidePanelComponent_1 = __decorate([
|
|
11886
11943
|
Component({
|
|
11887
11944
|
selector: "s-slide-panel",
|
|
11888
|
-
template: "<div class=\"slide-panel\">\n <div\n class=\"slide-content\"\n [ngClass]=\"{\n 'slide-content--closed': !isOpen,\n 'slide-content--over': isSlideOver\n }\">\n <div\n #mainContainer\n class=\"main-container\"\n [style.maxHeight]=\"slideHeight + 'px'\">\n <ng-container *ngIf=\"cache; then cacheTemplate else cachelessTemplate\"></ng-container>\n </div>\n <button\n class=\"button\"\n [ngClass]=\"isOpen ? closeIcon : openIcon\"\n (click)=\"onClickButton()\">\n </button>\n </div>\n <div
|
|
11945
|
+
template: "<div #slidePanel class=\"slide-panel\">\n <div\n #slideContent\n class=\"slide-content\"\n [ngClass]=\"{\n 'slide-content--closed': !isOpen,\n 'slide-content--over': isSlideOver\n }\">\n <div\n #mainContainer\n class=\"main-container\"\n [style.maxHeight]=\"slideHeight + 'px'\">\n <ng-container *ngIf=\"cache; then cacheTemplate else cachelessTemplate\"></ng-container>\n </div>\n <button\n class=\"button\"\n [ngClass]=\"isOpen ? closeIcon : openIcon\"\n (click)=\"onClickButton()\">\n </button>\n </div>\n <div \n #sideContent\n class=\"side-content\"\n [ngStyle]=\"{ 'width.px': sideContentWidth }\">\n <ng-content select=\"[side-content]\"></ng-content>\n </div>\n</div>\n\n<ng-template #cacheTemplate>\n <div\n class=\"content-container\"\n [@cacheAnimation]=\"isOpen\"\n [@.disabled]=\"isContentAnimationDisabled\"\n (@cacheAnimation.start)=\"onContentAnimationStart()\"\n (@cacheAnimation.done)=\"onContentAnimationDone()\">\n <ng-container [ngTemplateOutlet]=\"slideContentTemplate\"></ng-container>\n </div>\n</ng-template>\n\n<ng-template #cachelessTemplate>\n <div\n *ngIf=\"isOpen\"\n class=\"content-container\"\n @cachelessAnimation\n [@.disabled]=\"isContentAnimationDisabled\"\n (@cachelessAnimation.start)=\"onContentAnimationStart()\"\n (@cachelessAnimation.done)=\"onContentAnimationDone()\">\n <ng-container [ngTemplateOutlet]=\"slideContentTemplate\"></ng-container>\n </div>\n</ng-template>\n\n<ng-template #slideContentTemplate>\n <ng-content select=\"[slide-content]\"></ng-content>\n</ng-template>",
|
|
11889
11946
|
animations: [
|
|
11890
11947
|
trigger("cachelessAnimation", [
|
|
11891
11948
|
transition(":enter", [
|
|
@@ -11903,7 +11960,7 @@ var SlidePanelComponent = /** @class */ (function () {
|
|
|
11903
11960
|
transition("* => *", animate("200ms")),
|
|
11904
11961
|
]),
|
|
11905
11962
|
],
|
|
11906
|
-
styles: [".slide-panel{display:-ms-flexbox;display:flex}.slide-panel .slide-content{display:-ms-flexbox;display:flex;position:relative}.slide-panel .slide-content .main-container{background-color:#eeebf2;display:-ms-flexbox;display:flex;border:1px solid #ccc;overflow:hidden;position:relative}.slide-panel .slide-content .main-container .content-container{overflow-y:auto;overflow-x:hidden;padding:16px}.slide-panel .slide-content .button{-ms-flex-align:center;align-items:center;background-color:#eeebf2;border:1px solid #ccc;border-left:none;border-radius:0 4px 4px 0;cursor:pointer;display:-ms-flexbox;display:flex;font-size:16px;height:32px;-ms-flex-pack:center;justify-content:center;position:absolute;right:-32px;top:16px;width:32px}.slide-panel .slide-content--closed .main-container{border:none}.slide-panel .slide-content--over{position:absolute}.slide-panel .side-content{display:-ms-flexbox;display:flex
|
|
11963
|
+
styles: [".slide-panel{display:-ms-flexbox;display:flex;width:100%}.slide-panel .slide-content{display:-ms-flexbox;display:flex;position:relative}.slide-panel .slide-content .main-container{background-color:#eeebf2;display:-ms-flexbox;display:flex;border:1px solid #ccc;overflow:hidden;position:relative}.slide-panel .slide-content .main-container .content-container{overflow-y:auto;overflow-x:hidden;padding:16px}.slide-panel .slide-content .button{-ms-flex-align:center;align-items:center;background-color:#eeebf2;border:1px solid #ccc;border-left:none;border-radius:0 4px 4px 0;cursor:pointer;display:-ms-flexbox;display:flex;font-family:\"Font Awesome 5 Pro\";font-size:16px;height:32px;-ms-flex-pack:center;justify-content:center;position:absolute;right:-32px;top:16px;width:32px;z-index:99}.slide-panel .slide-content--closed .main-container{border:none}.slide-panel .slide-content--over{position:absolute}.slide-panel .side-content{display:-ms-flexbox;display:flex;height:-webkit-max-content;height:max-content;overflow:auto;transition:width .1s linear}"]
|
|
11907
11964
|
})
|
|
11908
11965
|
], SlidePanelComponent);
|
|
11909
11966
|
return SlidePanelComponent;
|
|
@@ -11917,6 +11974,7 @@ var SlidePanelModule = /** @class */ (function () {
|
|
|
11917
11974
|
imports: [CommonModule],
|
|
11918
11975
|
declarations: [SlidePanelComponent],
|
|
11919
11976
|
exports: [SlidePanelComponent],
|
|
11977
|
+
providers: [SlidePanelService],
|
|
11920
11978
|
})
|
|
11921
11979
|
], SlidePanelModule);
|
|
11922
11980
|
return SlidePanelModule;
|
|
@@ -15902,5 +15960,5 @@ var fallback = {
|
|
|
15902
15960
|
* Generated bundle index. Do not edit.
|
|
15903
15961
|
*/
|
|
15904
15962
|
|
|
15905
|
-
export { AccordionComponent, AccordionModule, AccordionPanelComponent, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, 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, FileValidation, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RatingScaleComponent, RatingScaleModule, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, countries, fallback, TooltipComponent as ɵa, TooltipDirective as ɵb, RadioButtonComponent as ɵba, RowComponent as ɵbb, SectionComponent as ɵbc, SelectFieldComponent as ɵbd, SliderFieldComponent as ɵbe, TextAreaFieldComponent as ɵbf, TextAreaIAFieldComponent as ɵbg, IAssistService as ɵbh, TextFieldComponent as ɵbi, DecimalField as ɵbk, SideTableComponent as ɵbl, StructureModule as ɵbm, HeaderComponent as ɵbn, FooterComponent as ɵbo, NumberLocaleOptions as ɵbp, ThumbnailService as ɵbq, BorderButtonModule as ɵbr, BorderButtonComponent as ɵbs,
|
|
15963
|
+
export { AccordionComponent, AccordionModule, AccordionPanelComponent, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, 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, FileValidation, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RatingScaleComponent, RatingScaleModule, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, countries, fallback, TooltipComponent as ɵa, TooltipDirective as ɵb, RadioButtonComponent as ɵba, RowComponent as ɵbb, SectionComponent as ɵbc, SelectFieldComponent as ɵbd, SliderFieldComponent as ɵbe, TextAreaFieldComponent as ɵbf, TextAreaIAFieldComponent as ɵbg, IAssistService as ɵbh, TextFieldComponent as ɵbi, DecimalField as ɵbk, SideTableComponent as ɵbl, StructureModule as ɵbm, HeaderComponent as ɵbn, FooterComponent as ɵbo, NumberLocaleOptions as ɵbp, ThumbnailService as ɵbq, BorderButtonModule as ɵbr, BorderButtonComponent as ɵbs, SlidePanelService as ɵbt, TimelineItemModule as ɵbu, TimelineIconItemComponent as ɵbv, HorizontalTimelineModule as ɵbw, HorizontalTimelineComponent as ɵbx, VerticalTimelineModule as ɵby, VerticalTimelineComponent as ɵbz, CountryPhonePickerService as ɵc, RangeLineComponent as ɵca, CollapseOptionComponent as ɵcb, CollapsedItemsComponent as ɵcc, VerticalItemsComponent as ɵcd, InfiniteScrollModule as ɵce, InfiniteScrollDirective as ɵcf, CustomTranslationsModule as ɵcg, CodeEditorComponent as ɵch, CoreFacade as ɵci, CodeMirror6Core as ɵcj, TieredMenuEventService as ɵck, TieredMenuService as ɵcl, TieredMenuComponent as ɵcm, TieredMenuNestedComponent as ɵcn, TieredMenuItemComponent as ɵco, TieredMenuDividerComponent as ɵcp, LocalizedCurrencyImpurePipe as ɵd, LocalizedBignumberPipe as ɵe, LocalizedBignumberImpurePipe as ɵf, EmptyStateGoBackComponent as ɵg, FileUploadService as ɵh, InfoSignComponent as ɵi, TableColumnsComponent as ɵj, TablePagingComponent as ɵk, AutocompleteFieldComponent as ɵl, BignumberFieldComponent as ɵm, BooleanFieldComponent as ɵn, BooleanSwitchFieldComponent as ɵo, CalendarFieldComponent as ɵp, ChipsFieldComponent as ɵq, CountryPhonePickerFieldComponent as ɵr, CurrencyFieldComponent as ɵs, DynamicFieldComponent as ɵt, DynamicFormDirective as ɵu, FieldsetComponent as ɵv, FileUploadComponent$1 as ɵw, LookupFieldComponent as ɵx, NumberFieldComponent as ɵy, PasswordFieldComponent as ɵz };
|
|
15906
15964
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|