@seniorsistemas/angular-components 17.10.4 → 17.10.6

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 (25) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +186 -179
  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/custom-fields/custom-fields.component.d.ts +8 -6
  6. package/components/custom-fields/models/custom-field-type.d.ts +15 -0
  7. package/components/index.d.ts +1 -0
  8. package/components/template/index.d.ts +2 -0
  9. package/esm2015/components/custom-fields/custom-fields.component.js +74 -83
  10. package/esm2015/components/custom-fields/models/custom-field-type.js +17 -0
  11. package/esm2015/components/index.js +2 -1
  12. package/esm2015/components/template/index.js +3 -0
  13. package/esm2015/seniorsistemas-angular-components.js +103 -105
  14. package/esm5/components/custom-fields/custom-fields.component.js +85 -94
  15. package/esm5/components/custom-fields/models/custom-field-type.js +17 -0
  16. package/esm5/components/index.js +2 -1
  17. package/esm5/components/template/index.js +3 -0
  18. package/esm5/seniorsistemas-angular-components.js +103 -105
  19. package/fesm2015/seniorsistemas-angular-components.js +73 -66
  20. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  21. package/fesm5/seniorsistemas-angular-components.js +83 -76
  22. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  23. package/package.json +1 -1
  24. package/seniorsistemas-angular-components.d.ts +102 -104
  25. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -11714,6 +11714,7 @@ var CustomFieldType;
11714
11714
  CustomFieldType["Any"] = "Any";
11715
11715
  CustomFieldType["Enum"] = "Enum";
11716
11716
  })(CustomFieldType || (CustomFieldType = {}));
11717
+
11717
11718
  var moment$5 = moment_; // @HACK Necessary because of https://github.com/rollup/rollup/issues/670
11718
11719
  var CustomFieldsComponent = /** @class */ (function () {
11719
11720
  function CustomFieldsComponent(customFieldsService, localeService, sanitizer, translateService, controlContainer) {
@@ -11747,81 +11748,14 @@ var CustomFieldsComponent = /** @class */ (function () {
11747
11748
  configurable: true
11748
11749
  });
11749
11750
  CustomFieldsComponent.prototype.ngOnInit = function () {
11750
- var _this = this;
11751
- if (!this.domain)
11752
- throw new Error("You need to specify the custom-fields domain!");
11753
- if (!this.service)
11754
- throw new Error("You need to specify the custom-fields service!");
11755
- if (!this.entity)
11756
- throw new Error("You need to specify the custom-fields entity!");
11757
- this.formGroup = new FormGroup({});
11758
- var observables = [this.getCustomFields(), this.localeService.get()];
11759
- forkJoin(observables)
11760
- .pipe(takeUntil(this.ngUsubscribe), finalize(function () {
11761
- var _a;
11762
- _this.formGroup.markAsPristine();
11763
- (_a = _this.parentControl) === null || _a === void 0 ? void 0 : _a.markAsPristine();
11764
- if (_this.ready$)
11765
- _this.ready$.next(true);
11766
- }))
11767
- .subscribe(function (response) {
11768
- var _a = __read(response, 2), customFieldsResponse = _a[0], localeOptions = _a[1];
11769
- var defaults = {};
11770
- defaults[CustomFieldType.String] = {};
11771
- defaults[CustomFieldType.Boolean] = { defaultValue: false };
11772
- defaults[CustomFieldType.Integer] = {};
11773
- defaults[CustomFieldType.Double] = { defaultMask: "" };
11774
- defaults[CustomFieldType.Money] = {};
11775
- defaults[CustomFieldType.Date] = {};
11776
- defaults[CustomFieldType.DateTime] = {};
11777
- defaults[CustomFieldType.LocalDateTime] = {};
11778
- defaults[CustomFieldType.Time] = {};
11779
- defaults[CustomFieldType.Blob] = {};
11780
- defaults[CustomFieldType.Enum] = {};
11781
- defaults[CustomFieldType.Binary] = {};
11782
- defaults[CustomFieldType.Any] = {};
11783
- if (!customFieldsResponse || !customFieldsResponse.entity_)
11784
- return;
11785
- var _b = customFieldsResponse.entity_, active = _b.active, fields = _b.fields;
11786
- if (!active)
11787
- return;
11788
- fields
11789
- .filter(function (field) { return field.customizable && field.customization && field.customization.active; })
11790
- .forEach(function (field) {
11791
- var _a;
11792
- var formField = _this.getFormField(field, localeOptions);
11793
- var fieldType = field.type;
11794
- if (field.type === CustomFieldType.Blob && _this.value && _this.value[formField.name])
11795
- _this.createBlobToFileUpload(formField);
11796
- var validationRegex = field.customization.validationRegex;
11797
- var asIsTypes = [
11798
- CustomFieldType.Boolean,
11799
- CustomFieldType.Money,
11800
- CustomFieldType.Date,
11801
- CustomFieldType.DateTime,
11802
- CustomFieldType.LocalDateTime,
11803
- CustomFieldType.Time,
11804
- ];
11805
- var validators = [];
11806
- if (validationRegex && !asIsTypes.includes(fieldType))
11807
- validators.push(Validators.pattern(validationRegex));
11808
- if (fieldType === CustomFieldType.Integer && !formField.mask)
11809
- validators.push(Validators.pattern(/^\-?\d*$/));
11810
- if ((_a = formField.required) === null || _a === void 0 ? void 0 : _a.call(formField)) {
11811
- validators.push(Validators.required);
11812
- }
11813
- var control = new FormControl({ value: defaults[fieldType].defaultValue, disabled: _this.formGroup.disabled }, validators);
11814
- _this.formGroup.addControl(formField.name, control);
11815
- _this.fields.push(formField);
11816
- });
11817
- _this.createFieldCustomization(fields);
11818
- _this.formGroup.patchValue(_this.parseValuesForFields(_this.value));
11819
- _this.ready = true;
11820
- });
11751
+ this._validateInputs();
11752
+ this._createForm();
11821
11753
  this.addDisplayTimeInfoSignToFields();
11822
11754
  };
11823
11755
  CustomFieldsComponent.prototype.ngAfterViewInit = function () {
11756
+ var _this = this;
11824
11757
  this.enableOrDisableFields(this.disableFields);
11758
+ this.formGroup.valueChanges.subscribe(function () { var _a; return (_a = _this.onChange) === null || _a === void 0 ? void 0 : _a.call(_this, _this.parseFieldsValues()); });
11825
11759
  };
11826
11760
  CustomFieldsComponent.prototype.ngOnChanges = function (changes) {
11827
11761
  if (changes.disableFields) {
@@ -11833,9 +11767,7 @@ var CustomFieldsComponent = /** @class */ (function () {
11833
11767
  this.ngUsubscribe.complete();
11834
11768
  };
11835
11769
  CustomFieldsComponent.prototype.registerOnChange = function (fn) {
11836
- var _this = this;
11837
11770
  this.onChange = fn;
11838
- this.formGroup.valueChanges.subscribe(function () { return _this.onChange(_this.parseFieldsValues()); });
11839
11771
  };
11840
11772
  CustomFieldsComponent.prototype.registerOnTouched = function (fn) {
11841
11773
  this.onTouched = fn;
@@ -11874,6 +11806,9 @@ var CustomFieldsComponent = /** @class */ (function () {
11874
11806
  });
11875
11807
  return errors;
11876
11808
  };
11809
+ CustomFieldsComponent.prototype.cleanFields = function () {
11810
+ this.formGroup.reset();
11811
+ };
11877
11812
  CustomFieldsComponent.prototype.enableOrDisableFields = function (disabled) {
11878
11813
  var e_1, _a;
11879
11814
  if (!this.formGroup) {
@@ -11893,8 +11828,80 @@ var CustomFieldsComponent = /** @class */ (function () {
11893
11828
  finally { if (e_1) throw e_1.error; }
11894
11829
  }
11895
11830
  };
11896
- CustomFieldsComponent.prototype.cleanFields = function () {
11897
- this.formGroup.reset();
11831
+ CustomFieldsComponent.prototype._validateInputs = function () {
11832
+ if (!this.domain)
11833
+ throw new Error("You need to specify the custom-fields domain!");
11834
+ if (!this.service)
11835
+ throw new Error("You need to specify the custom-fields service!");
11836
+ if (!this.entity)
11837
+ throw new Error("You need to specify the custom-fields entity!");
11838
+ };
11839
+ CustomFieldsComponent.prototype._createForm = function () {
11840
+ var _this = this;
11841
+ this.formGroup = new FormGroup({});
11842
+ var observables = [this.getCustomFields(), this.localeService.get()];
11843
+ forkJoin(observables)
11844
+ .pipe(takeUntil(this.ngUsubscribe), finalize(function () {
11845
+ var _a;
11846
+ _this.formGroup.markAsPristine();
11847
+ (_a = _this.parentControl) === null || _a === void 0 ? void 0 : _a.markAsPristine();
11848
+ if (_this.ready$)
11849
+ _this.ready$.next(true);
11850
+ }))
11851
+ .subscribe(function (response) {
11852
+ var _a = __read(response, 2), customFieldsResponse = _a[0], localeOptions = _a[1];
11853
+ var defaults = {};
11854
+ defaults[CustomFieldType.String] = {};
11855
+ defaults[CustomFieldType.Boolean] = { defaultValue: false };
11856
+ defaults[CustomFieldType.Integer] = {};
11857
+ defaults[CustomFieldType.Double] = { defaultMask: "" };
11858
+ defaults[CustomFieldType.Money] = {};
11859
+ defaults[CustomFieldType.Date] = {};
11860
+ defaults[CustomFieldType.DateTime] = {};
11861
+ defaults[CustomFieldType.LocalDateTime] = {};
11862
+ defaults[CustomFieldType.Time] = {};
11863
+ defaults[CustomFieldType.Blob] = {};
11864
+ defaults[CustomFieldType.Enum] = {};
11865
+ defaults[CustomFieldType.Binary] = {};
11866
+ defaults[CustomFieldType.Any] = {};
11867
+ if (!customFieldsResponse || !customFieldsResponse.entity_)
11868
+ return;
11869
+ var _b = customFieldsResponse.entity_, active = _b.active, fields = _b.fields;
11870
+ if (!active)
11871
+ return;
11872
+ fields
11873
+ .filter(function (field) { return field.customizable && field.customization && field.customization.active; })
11874
+ .forEach(function (field) {
11875
+ var _a;
11876
+ var formField = _this.getFormField(field, localeOptions);
11877
+ var fieldType = field.type;
11878
+ if (field.type === CustomFieldType.Blob && _this.value && _this.value[formField.name])
11879
+ _this.createBlobToFileUpload(formField);
11880
+ var validationRegex = field.customization.validationRegex;
11881
+ var asIsTypes = [
11882
+ CustomFieldType.Boolean,
11883
+ CustomFieldType.Money,
11884
+ CustomFieldType.Date,
11885
+ CustomFieldType.DateTime,
11886
+ CustomFieldType.LocalDateTime,
11887
+ CustomFieldType.Time,
11888
+ ];
11889
+ var validators = [];
11890
+ if (validationRegex && !asIsTypes.includes(fieldType))
11891
+ validators.push(Validators.pattern(validationRegex));
11892
+ if (fieldType === CustomFieldType.Integer && !formField.mask)
11893
+ validators.push(Validators.pattern(/^\-?\d*$/));
11894
+ if ((_a = formField.required) === null || _a === void 0 ? void 0 : _a.call(formField)) {
11895
+ validators.push(Validators.required);
11896
+ }
11897
+ var control = new FormControl({ value: defaults[fieldType].defaultValue, disabled: _this.formGroup.disabled }, validators);
11898
+ _this.formGroup.addControl(formField.name, control);
11899
+ _this.fields.push(formField);
11900
+ });
11901
+ _this.createFieldCustomization(fields);
11902
+ _this.formGroup.patchValue(_this.parseValuesForFields(_this.value));
11903
+ _this.ready = true;
11904
+ });
11898
11905
  };
11899
11906
  CustomFieldsComponent.prototype.parseValuesForFields = function (values) {
11900
11907
  var parsedValues = __assign({}, values);
@@ -19439,5 +19446,5 @@ var fallback = {
19439
19446
  * Generated bundle index. Do not edit.
19440
19447
  */
19441
19448
 
19442
- 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, ChipsField, 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, 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, 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, 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, TooltipComponent as ɵa, TooltipDirective as ɵb, PasswordFieldComponent 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, BignumberFieldModule as ɵbj, BignumberInputModule as ɵbk, BignumberFieldComponent as ɵbl, ProfilePictureModule as ɵbm, ThumbnailService as ɵbn, StructureModule as ɵbo, HeaderComponent as ɵbp, FooterComponent as ɵbq, ProfilePictureFieldComponent as ɵbr, AutocompleteFieldComponent as ɵbs, BooleanFieldComponent as ɵbt, BooleanSwitchFieldComponent as ɵbu, CalendarFieldComponent as ɵbv, ChipsFieldComponent as ɵbw, CountryPhonePickerFieldComponent as ɵbx, DynamicFieldComponent as ɵby, DynamicFormDirective as ɵbz, TemplateDirective as ɵc, FieldsetComponent as ɵca, FileUploadComponent$1 as ɵcb, LookupFieldComponent as ɵcc, RadioButtonComponent as ɵcd, RowComponent as ɵce, SectionComponent as ɵcf, SelectFieldComponent as ɵcg, SliderFieldComponent as ɵch, TextAreaFieldComponent as ɵci, TextAreaIAFieldComponent as ɵcj, IAssistService as ɵck, DecimalField as ɵcm, SideTableComponent as ɵcn, InfiniteScrollModule as ɵco, InfiniteScrollDirective as ɵcp, IAInsightSidebarComponent as ɵcq, IAInsightCardComponent as ɵcr, IAInsightCardLoaderComponent as ɵcs, InlineEditItemComponent as ɵct, LocaleService as ɵcu, InlineEditCalendarComponent as ɵcv, InlineEditLookupComponent as ɵcw, InlineEditNumberComponent as ɵcx, InlineEditTextComponent as ɵcy, InlineEditTextAreaComponent as ɵcz, TemplateModule as ɵd, InlineEditTextAreaIAComponent as ɵda, KanbanEventService as ɵdb, KanbanItemComponent as ɵdc, KanbanColumnComponent as ɵdd, KanbanItemDraggingComponent as ɵde, NumberLocaleOptions as ɵdf, TieredMenuEventService as ɵdg, TieredMenuService as ɵdh, TieredMenuGlobalService as ɵdi, TieredMenuComponent as ɵdj, TieredMenuNestedComponent as ɵdk, TieredMenuItemComponent as ɵdl, TieredMenuDividerComponent as ɵdm, BorderButtonModule as ɵdn, BorderButtonComponent as ɵdo, ProgressBarDeterminateComponent as ɵdp, ProgressBarIndeterminateComponent as ɵdq, SelectButtonItemComponent as ɵdr, SlidePanelService as ɵds, TimelineItemModule as ɵdt, TimelineIconItemComponent as ɵdu, HorizontalTimelineModule as ɵdv, HorizontalTimelineComponent as ɵdw, VerticalTimelineModule as ɵdx, VerticalTimelineComponent as ɵdy, RangeLineComponent as ɵdz, CustomTranslationsModule as ɵe, CollapseOptionComponent as ɵea, CollapsedItemsComponent as ɵeb, VerticalItemsComponent as ɵec, CodeEditorComponent as ɵf, CoreFacade as ɵg, CodeMirror6Core as ɵh, CountryPhonePickerService as ɵi, LocalizedCurrencyImpurePipe as ɵj, LocalizedBignumberPipe as ɵk, LocalizedBignumberImpurePipe as ɵl, NumericPipe as ɵm, EmptyStateGoBackComponent as ɵn, IAssistIconComponent as ɵo, SeniorIconComponent as ɵp, DotsIndicatorComponent as ɵq, LoadingIndicatorComponent as ɵr, FileUploadService as ɵs, InfoSignComponent as ɵt, TableColumnsComponent as ɵu, TablePagingComponent as ɵv, PasswordFieldModule as ɵw, FieldLabelModule as ɵx, InfoSignModule as ɵy, FieldLabelComponent as ɵz };
19449
+ 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, ChipsField, 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, 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, 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, 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, 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, BignumberFieldModule as ɵbh, BignumberInputModule as ɵbi, BignumberFieldComponent as ɵbj, ProfilePictureModule as ɵbk, ThumbnailService as ɵbl, StructureModule as ɵbm, HeaderComponent as ɵbn, FooterComponent as ɵbo, ProfilePictureFieldComponent as ɵbp, AutocompleteFieldComponent as ɵbq, BooleanFieldComponent as ɵbr, BooleanSwitchFieldComponent as ɵbs, CalendarFieldComponent as ɵbt, ChipsFieldComponent as ɵbu, CountryPhonePickerFieldComponent as ɵbv, DynamicFieldComponent as ɵbw, DynamicFormDirective as ɵbx, FieldsetComponent as ɵby, FileUploadComponent$1 as ɵbz, CustomTranslationsModule as ɵc, LookupFieldComponent as ɵca, RadioButtonComponent as ɵcb, RowComponent as ɵcc, SectionComponent as ɵcd, SelectFieldComponent as ɵce, SliderFieldComponent as ɵcf, TextAreaFieldComponent as ɵcg, TextAreaIAFieldComponent as ɵch, IAssistService as ɵci, DecimalField as ɵck, SideTableComponent as ɵcl, InfiniteScrollModule as ɵcm, InfiniteScrollDirective as ɵcn, IAInsightSidebarComponent as ɵco, IAInsightCardComponent as ɵcp, IAInsightCardLoaderComponent as ɵcq, InlineEditItemComponent as ɵcr, LocaleService as ɵcs, InlineEditCalendarComponent as ɵct, InlineEditLookupComponent as ɵcu, InlineEditNumberComponent as ɵcv, InlineEditTextComponent as ɵcw, InlineEditTextAreaComponent as ɵcx, InlineEditTextAreaIAComponent as ɵcy, KanbanEventService as ɵcz, CodeEditorComponent as ɵd, KanbanItemComponent as ɵda, KanbanColumnComponent as ɵdb, KanbanItemDraggingComponent as ɵdc, NumberLocaleOptions as ɵdd, TieredMenuEventService as ɵde, TieredMenuService as ɵdf, TieredMenuGlobalService as ɵdg, TieredMenuComponent as ɵdh, TieredMenuNestedComponent as ɵdi, TieredMenuItemComponent as ɵdj, TieredMenuDividerComponent as ɵdk, BorderButtonModule as ɵdl, BorderButtonComponent as ɵdm, ProgressBarDeterminateComponent as ɵdn, ProgressBarIndeterminateComponent as ɵdo, SelectButtonItemComponent as ɵdp, SlidePanelService as ɵdq, TimelineItemModule as ɵdr, TimelineIconItemComponent as ɵds, HorizontalTimelineModule as ɵdt, HorizontalTimelineComponent as ɵdu, VerticalTimelineModule as ɵdv, VerticalTimelineComponent as ɵdw, RangeLineComponent as ɵdx, CollapseOptionComponent as ɵdy, CollapsedItemsComponent as ɵdz, CoreFacade as ɵe, VerticalItemsComponent as ɵea, CodeMirror6Core as ɵf, CountryPhonePickerService as ɵg, LocalizedCurrencyImpurePipe as ɵh, LocalizedBignumberPipe as ɵi, LocalizedBignumberImpurePipe as ɵj, NumericPipe as ɵk, EmptyStateGoBackComponent as ɵl, IAssistIconComponent as ɵm, SeniorIconComponent as ɵn, DotsIndicatorComponent as ɵo, LoadingIndicatorComponent as ɵp, FileUploadService as ɵq, InfoSignComponent as ɵr, TableColumnsComponent as ɵs, TablePagingComponent as ɵt, PasswordFieldModule as ɵu, FieldLabelModule as ɵv, InfoSignModule as ɵw, FieldLabelComponent as ɵx, PasswordFieldComponent as ɵy, TextFieldModule as ɵz };
19443
19450
  //# sourceMappingURL=seniorsistemas-angular-components.js.map