@seniorsistemas/angular-components 17.6.3 → 17.7.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 (27) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +186 -84
  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/locale/locale.service.d.ts +5 -0
  6. package/components/locale/options/index.d.ts +1 -0
  7. package/components/locale/pipes/numeric.pipe.d.ts +13 -0
  8. package/components/locale/services/numeric.service.d.ts +24 -0
  9. package/esm2015/components/locale/locale.module.js +8 -4
  10. package/esm2015/components/locale/locale.service.js +9 -2
  11. package/esm2015/components/locale/options/index.js +1 -1
  12. package/esm2015/components/locale/pipes/numeric.pipe.js +28 -0
  13. package/esm2015/components/locale/services/numeric.service.js +70 -0
  14. package/esm2015/seniorsistemas-angular-components.js +83 -81
  15. package/esm5/components/locale/locale.module.js +8 -4
  16. package/esm5/components/locale/locale.service.js +10 -3
  17. package/esm5/components/locale/options/index.js +1 -1
  18. package/esm5/components/locale/pipes/numeric.pipe.js +32 -0
  19. package/esm5/components/locale/services/numeric.service.js +71 -0
  20. package/esm5/seniorsistemas-angular-components.js +83 -81
  21. package/fesm2015/seniorsistemas-angular-components.js +101 -6
  22. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  23. package/fesm5/seniorsistemas-angular-components.js +107 -7
  24. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  25. package/package.json +2 -2
  26. package/seniorsistemas-angular-components.d.ts +82 -80
  27. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -1,5 +1,5 @@
1
- import { __decorate, __extends, __spread, __assign, __awaiter, __generator, __param, __values, __rest, __read } from 'tslib';
2
- import { EventEmitter, Input, Output, Component, ContentChildren, ViewChild, HostListener, forwardRef, NgModule, ɵɵdefineInjectable, Injectable, ElementRef, ApplicationRef, ComponentFactoryResolver, Injector, Directive, KeyValueDiffers, HostBinding, Renderer2, TemplateRef, InjectionToken, Inject, ViewEncapsulation, Pipe, ViewContainerRef, ChangeDetectorRef, Optional, ContentChild } from '@angular/core';
1
+ import { __decorate, __assign, __extends, __spread, __awaiter, __generator, __param, __values, __rest, __read } from 'tslib';
2
+ import { EventEmitter, Input, Output, Component, ContentChildren, ViewChild, HostListener, forwardRef, NgModule, ɵɵdefineInjectable, Injectable, ElementRef, ApplicationRef, ComponentFactoryResolver, Injector, Directive, KeyValueDiffers, HostBinding, Renderer2, TemplateRef, InjectionToken, Inject, ViewEncapsulation, Pipe, ɵɵinject, ViewContainerRef, ChangeDetectorRef, Optional, ContentChild } from '@angular/core';
3
3
  import { trigger, transition, style as style$7, animate, state, group, query, animateChild } from '@angular/animations';
4
4
  import { Subject, of, from, ReplaySubject, throwError, forkJoin } from 'rxjs';
5
5
  import { takeUntil, tap, map, switchMap, catchError, first, filter, take, delay, debounceTime, repeat, finalize } from 'rxjs/operators';
@@ -943,7 +943,7 @@ var LocaleService = /** @class */ (function () {
943
943
  var _this = this;
944
944
  return this.localeOptions
945
945
  ? of(this.localeOptions)
946
- : this.getLocaleConfig().pipe(tap(function (localeOptions) { return (_this.localeOptions = localeOptions); }));
946
+ : this.getLocaleConfig().pipe(tap(function (localeOptions) { return (_this.localeOptions = __assign(__assign({}, localeOptions), { locale: _this.locale })); }));
947
947
  };
948
948
  LocaleService.prototype.getLocale = function () {
949
949
  var _this = this;
@@ -954,6 +954,13 @@ var LocaleService = /** @class */ (function () {
954
954
  return _this.locale;
955
955
  }));
956
956
  };
957
+ /**
958
+ * Returns an object with the locale options based on the user's locale(platform locale).
959
+ * @return The locale options object.
960
+ */
961
+ LocaleService.prototype.getLocaleOptions = function () {
962
+ return this.localeOptions;
963
+ };
957
964
  LocaleService.prototype.getUserData = function () {
958
965
  try {
959
966
  return of(JSON.parse(this.cookieService.get("com.senior.token")));
@@ -6364,6 +6371,96 @@ var LocalizedTimeImpurePipe = /** @class */ (function (_super) {
6364
6371
  return LocalizedTimeImpurePipe;
6365
6372
  }(LocalizedTimePipe));
6366
6373
 
6374
+ var NumericService = /** @class */ (function () {
6375
+ function NumericService(localeService) {
6376
+ this.localeService = localeService;
6377
+ }
6378
+ /**
6379
+ * Wrapper around Intl.NumberFormat that returns the localized value using the user's locale by default(platform's preferential language).
6380
+ *
6381
+ * This method should only be used after the localeService has been initialized by the host application, either by a resolver or a manual call.
6382
+ *
6383
+ * Can be overwritten by the provided Intl.NumberFormatOptions.
6384
+ *
6385
+ * Documentation is available at {@link https://developer.mozilla.org/pt-BR/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat Intl.NumberFormatOptions}.
6386
+ *
6387
+ * @param {number | string | BigNumber} value The value to be formatted.
6388
+ * @param {Intl.NumberFormatOptions} options Options that overwrites the default Intl.NumberFormatOptions.
6389
+ * @return `string` The formatted value.
6390
+ */
6391
+ NumericService.prototype.instant = function (value, options) {
6392
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
6393
+ options = __assign(__assign({}, options), { locale: (_c = (_a = options === null || options === void 0 ? void 0 : options.locale) !== null && _a !== void 0 ? _a : (_b = this.localeService.getLocaleOptions()) === null || _b === void 0 ? void 0 : _b.locale) !== null && _c !== void 0 ? _c : "pt-BR", options: __assign(__assign({}, options === null || options === void 0 ? void 0 : options.options), { currency: ((_d = options === null || options === void 0 ? void 0 : options.options) === null || _d === void 0 ? void 0 : _d.style) === "currency" ? (_f = (_e = options === null || options === void 0 ? void 0 : options.options) === null || _e === void 0 ? void 0 : _e.currency) !== null && _f !== void 0 ? _f : "BRL" : undefined, currencyDisplay: ((_g = options === null || options === void 0 ? void 0 : options.options) === null || _g === void 0 ? void 0 : _g.style) === "currency" ? (_j = (_h = options === null || options === void 0 ? void 0 : options.options) === null || _h === void 0 ? void 0 : _h.currencyDisplay) !== null && _j !== void 0 ? _j : "narrowSymbol" : undefined, minimumFractionDigits: (_l = (_k = options === null || options === void 0 ? void 0 : options.options) === null || _k === void 0 ? void 0 : _k.minimumFractionDigits) !== null && _l !== void 0 ? _l : 0 }) });
6394
+ // From https://developer.mozilla.org/pt-BR/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat
6395
+ return new Intl.NumberFormat(options.locale, options.options).format(this.getType(value) === "number" || this.getType(value) === "string" ? value : value.toString());
6396
+ };
6397
+ NumericService.prototype.getType = function (value) {
6398
+ // From https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/typeof
6399
+ if (value === null) {
6400
+ return "null";
6401
+ }
6402
+ var baseType = typeof value;
6403
+ // Primitive types
6404
+ if (baseType !== "object" && baseType !== "function") {
6405
+ return baseType;
6406
+ }
6407
+ // Symbol.toStringTag often specifies the "display name" of the
6408
+ // object's class. It's used in Object.prototype.toString().
6409
+ var tag = value[Symbol.toStringTag];
6410
+ if (typeof tag === "string") {
6411
+ return tag;
6412
+ }
6413
+ // If it's a function whose source code starts with the "class" keyword
6414
+ if (baseType === "function" && Function.prototype.toString.call(value).startsWith("class")) {
6415
+ return "class";
6416
+ }
6417
+ // The name of the constructor; for example `Array`, `GeneratorFunction`,
6418
+ // `Number`, `String`, `Boolean` or `MyCustomClass`
6419
+ var className = value.constructor.name;
6420
+ if (typeof className === "string" && className !== "") {
6421
+ return className;
6422
+ }
6423
+ // At this point there's no robust way to get the type of value,
6424
+ // so we use the base implementation.
6425
+ return baseType;
6426
+ };
6427
+ NumericService.ctorParameters = function () { return [
6428
+ { type: LocaleService }
6429
+ ]; };
6430
+ NumericService.ɵprov = ɵɵdefineInjectable({ factory: function NumericService_Factory() { return new NumericService(ɵɵinject(LocaleService)); }, token: NumericService, providedIn: "root" });
6431
+ NumericService = __decorate([
6432
+ Injectable({
6433
+ providedIn: "root",
6434
+ })
6435
+ ], NumericService);
6436
+ return NumericService;
6437
+ }());
6438
+
6439
+ var NumericPipe = /** @class */ (function () {
6440
+ function NumericPipe(numericService, localeService) {
6441
+ this.numericService = numericService;
6442
+ this.localeService = localeService;
6443
+ }
6444
+ NumericPipe.prototype.transform = function (value, options) {
6445
+ var _this = this;
6446
+ return (options === null || options === void 0 ? void 0 : options.locale) ? of(this.numericService.instant(value, options))
6447
+ : this.localeService.getLocale().pipe(map(function (locale) {
6448
+ return _this.numericService.instant(value, {
6449
+ locale: locale,
6450
+ options: options === null || options === void 0 ? void 0 : options.options,
6451
+ });
6452
+ }));
6453
+ };
6454
+ NumericPipe.ctorParameters = function () { return [
6455
+ { type: NumericService },
6456
+ { type: LocaleService }
6457
+ ]; };
6458
+ NumericPipe = __decorate([
6459
+ Pipe({ name: "numeric" })
6460
+ ], NumericPipe);
6461
+ return NumericPipe;
6462
+ }());
6463
+
6367
6464
  var LocaleModule = /** @class */ (function () {
6368
6465
  function LocaleModule() {
6369
6466
  }
@@ -6381,7 +6478,8 @@ var LocaleModule = /** @class */ (function () {
6381
6478
  LocalizedDateImpurePipe,
6382
6479
  LocalizedTimeImpurePipe,
6383
6480
  LocalizedBignumberPipe,
6384
- LocalizedBignumberImpurePipe
6481
+ LocalizedBignumberImpurePipe,
6482
+ NumericPipe
6385
6483
  ],
6386
6484
  };
6387
6485
  };
@@ -6403,7 +6501,8 @@ var LocaleModule = /** @class */ (function () {
6403
6501
  LocalizedDateImpurePipe,
6404
6502
  LocalizedTimeImpurePipe,
6405
6503
  LocalizedBignumberPipe,
6406
- LocalizedBignumberImpurePipe
6504
+ LocalizedBignumberImpurePipe,
6505
+ NumericPipe
6407
6506
  ],
6408
6507
  declarations: [
6409
6508
  LocalizedCurrencyPipe,
@@ -6414,7 +6513,8 @@ var LocaleModule = /** @class */ (function () {
6414
6513
  LocalizedDateImpurePipe,
6415
6514
  LocalizedTimeImpurePipe,
6416
6515
  LocalizedBignumberPipe,
6417
- LocalizedBignumberImpurePipe
6516
+ LocalizedBignumberImpurePipe,
6517
+ NumericPipe
6418
6518
  ],
6419
6519
  })
6420
6520
  ], LocaleModule);
@@ -17628,5 +17728,5 @@ var fallback = {
17628
17728
  * Generated bundle index. Do not edit.
17629
17729
  */
17630
17730
 
17631
- 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, CardComponent, CardModule, CardTemplateTypes, 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, IAInsightComponent, IAInsightModule, IAInsightTemplateTypes, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, KanbanComponent, KanbanModule, KanbanTemplateTypes, 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, SVGFactoryDirective, SVGFactoryModule, Section, SelectButtonComponent, SelectButtonModule, 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, TextFieldComponent as ɵba, NumberFieldModule as ɵbb, LocalizedNumberInputModule as ɵbc, NumberInputModule as ɵbd, NumberFieldComponent as ɵbe, CurrencyFieldModule as ɵbf, CurrencyFieldComponent as ɵbg, NumberFieldModule$1 as ɵbh, BignumberInputModule as ɵbi, BignumberFieldComponent as ɵbj, AutocompleteFieldComponent as ɵbk, BooleanFieldComponent as ɵbl, BooleanSwitchFieldComponent as ɵbm, CalendarFieldComponent as ɵbn, ChipsFieldComponent as ɵbo, CountryPhonePickerFieldComponent as ɵbp, DynamicFieldComponent as ɵbq, DynamicFormDirective as ɵbr, FieldsetComponent as ɵbs, FileUploadComponent$1 as ɵbt, LookupFieldComponent as ɵbu, PasswordFieldComponent as ɵbv, RadioButtonComponent as ɵbw, RowComponent as ɵbx, SectionComponent as ɵby, SelectFieldComponent as ɵbz, TemplateDirective as ɵc, SliderFieldComponent as ɵca, TextAreaFieldComponent as ɵcb, TextAreaIAFieldComponent as ɵcc, IAssistService as ɵcd, DecimalField as ɵcf, SideTableComponent as ɵcg, ThumbnailService as ɵch, InfiniteScrollModule as ɵci, InfiniteScrollDirective as ɵcj, IAInsightSidebarComponent as ɵck, IAInsightCardComponent as ɵcl, IAInsightCardLoaderComponent as ɵcm, StructureModule as ɵcn, HeaderComponent as ɵco, FooterComponent as ɵcp, KanbanEventService as ɵcq, KanbanItemComponent as ɵcr, KanbanColumnComponent as ɵcs, KanbanItemDraggingComponent as ɵct, NumberLocaleOptions as ɵcu, BorderButtonModule as ɵcv, BorderButtonComponent as ɵcw, SelectButtonItemComponent as ɵcx, SlidePanelService as ɵcy, TieredMenuEventService as ɵcz, TemplateModule as ɵd, TieredMenuService as ɵda, TieredMenuComponent as ɵdb, TieredMenuNestedComponent as ɵdc, TieredMenuItemComponent as ɵdd, TieredMenuDividerComponent as ɵde, TimelineItemModule as ɵdf, TimelineIconItemComponent as ɵdg, HorizontalTimelineModule as ɵdh, HorizontalTimelineComponent as ɵdi, VerticalTimelineModule as ɵdj, VerticalTimelineComponent as ɵdk, RangeLineComponent as ɵdl, CollapseOptionComponent as ɵdm, CollapsedItemsComponent as ɵdn, VerticalItemsComponent as ɵdo, CustomTranslationsModule as ɵe, CodeEditorComponent as ɵf, CoreFacade as ɵg, CodeMirror6Core as ɵh, CountryPhonePickerService as ɵi, LocalizedCurrencyImpurePipe as ɵj, LocalizedBignumberPipe as ɵk, LocalizedBignumberImpurePipe as ɵl, EmptyStateGoBackComponent as ɵm, IAssistIconComponent as ɵn, SeniorIconComponent as ɵo, DotsIndicatorComponent as ɵp, LoadingIndicatorComponent as ɵq, ProgressBarDeterminateComponent as ɵr, ProgressBarIndeterminateComponent as ɵs, FileUploadService as ɵt, FileItemComponent as ɵu, LocaleService as ɵv, InfoSignComponent as ɵw, TableColumnsComponent as ɵx, TablePagingComponent as ɵy, TextFieldModule as ɵz };
17731
+ 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, CardComponent, CardModule, CardTemplateTypes, 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, IAInsightComponent, IAInsightModule, IAInsightTemplateTypes, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, KanbanComponent, KanbanModule, KanbanTemplateTypes, 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, SVGFactoryDirective, SVGFactoryModule, Section, SelectButtonComponent, SelectButtonModule, 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, TablePagingComponent as ɵba, TextFieldModule as ɵbb, TextFieldComponent as ɵbc, NumberFieldModule as ɵbd, LocalizedNumberInputModule as ɵbe, NumberInputModule as ɵbf, NumberFieldComponent as ɵbg, CurrencyFieldModule as ɵbh, CurrencyFieldComponent as ɵbi, NumberFieldModule$1 as ɵbj, BignumberInputModule as ɵbk, BignumberFieldComponent as ɵbl, AutocompleteFieldComponent as ɵbm, BooleanFieldComponent as ɵbn, BooleanSwitchFieldComponent as ɵbo, CalendarFieldComponent as ɵbp, ChipsFieldComponent as ɵbq, CountryPhonePickerFieldComponent as ɵbr, DynamicFieldComponent as ɵbs, DynamicFormDirective as ɵbt, FieldsetComponent as ɵbu, FileUploadComponent$1 as ɵbv, LookupFieldComponent as ɵbw, PasswordFieldComponent as ɵbx, RadioButtonComponent as ɵby, RowComponent as ɵbz, TemplateDirective as ɵc, SectionComponent as ɵca, SelectFieldComponent as ɵcb, SliderFieldComponent as ɵcc, TextAreaFieldComponent as ɵcd, TextAreaIAFieldComponent as ɵce, IAssistService as ɵcf, DecimalField as ɵch, SideTableComponent as ɵci, ThumbnailService as ɵcj, InfiniteScrollModule as ɵck, InfiniteScrollDirective as ɵcl, IAInsightSidebarComponent as ɵcm, IAInsightCardComponent as ɵcn, IAInsightCardLoaderComponent as ɵco, StructureModule as ɵcp, HeaderComponent as ɵcq, FooterComponent as ɵcr, KanbanEventService as ɵcs, KanbanItemComponent as ɵct, KanbanColumnComponent as ɵcu, KanbanItemDraggingComponent as ɵcv, NumberLocaleOptions as ɵcw, BorderButtonModule as ɵcx, BorderButtonComponent as ɵcy, SelectButtonItemComponent as ɵcz, TemplateModule as ɵd, SlidePanelService as ɵda, TieredMenuEventService as ɵdb, TieredMenuService as ɵdc, TieredMenuComponent as ɵdd, TieredMenuNestedComponent as ɵde, TieredMenuItemComponent as ɵdf, TieredMenuDividerComponent as ɵdg, TimelineItemModule as ɵdh, TimelineIconItemComponent as ɵdi, HorizontalTimelineModule as ɵdj, HorizontalTimelineComponent as ɵdk, VerticalTimelineModule as ɵdl, VerticalTimelineComponent as ɵdm, RangeLineComponent as ɵdn, CollapseOptionComponent as ɵdo, CollapsedItemsComponent as ɵdp, VerticalItemsComponent as ɵdq, CustomTranslationsModule as ɵe, CodeEditorComponent as ɵf, CoreFacade as ɵg, CodeMirror6Core as ɵh, CountryPhonePickerService as ɵi, LocalizedCurrencyImpurePipe as ɵj, LocalizedBignumberPipe as ɵk, LocalizedBignumberImpurePipe as ɵl, NumericPipe as ɵm, NumericService as ɵn, EmptyStateGoBackComponent as ɵo, IAssistIconComponent as ɵp, SeniorIconComponent as ɵq, DotsIndicatorComponent as ɵr, LoadingIndicatorComponent as ɵs, ProgressBarDeterminateComponent as ɵt, ProgressBarIndeterminateComponent as ɵu, FileUploadService as ɵv, FileItemComponent as ɵw, LocaleService as ɵx, InfoSignComponent as ɵy, TableColumnsComponent as ɵz };
17632
17732
  //# sourceMappingURL=seniorsistemas-angular-components.js.map