@seniorsistemas/angular-components 17.8.6 → 17.8.8

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 (31) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +54 -28
  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/profile-picture-picker/models/profile-picture-picker-data.d.ts +1 -1
  6. package/components/profile-picture-picker/profile-picture-picker.component.d.ts +5 -4
  7. package/components/table/table-column/table-columns.component.d.ts +3 -1
  8. package/components/utils/index.d.ts +2 -1
  9. package/components/utils/locale-utils.d.ts +1 -0
  10. package/esm2015/components/dynamic-form/components/fields/profile-picture/profile-picture-field.component.js +2 -2
  11. package/esm2015/components/password-strength/password-strength.directive.js +1 -4
  12. package/esm2015/components/profile-picture-picker/index.js +1 -1
  13. package/esm2015/components/profile-picture-picker/models/profile-picture-picker-data.js +1 -1
  14. package/esm2015/components/profile-picture-picker/profile-picture-picker.component.js +25 -15
  15. package/esm2015/components/table/table-column/table-columns.component.js +16 -11
  16. package/esm2015/components/utils/index.js +3 -2
  17. package/esm2015/components/utils/locale-utils.js +15 -0
  18. package/esm5/components/dynamic-form/components/fields/profile-picture/profile-picture-field.component.js +2 -2
  19. package/esm5/components/password-strength/password-strength.directive.js +1 -4
  20. package/esm5/components/profile-picture-picker/index.js +1 -1
  21. package/esm5/components/profile-picture-picker/models/profile-picture-picker-data.js +1 -1
  22. package/esm5/components/profile-picture-picker/profile-picture-picker.component.js +25 -15
  23. package/esm5/components/table/table-column/table-columns.component.js +16 -11
  24. package/esm5/components/utils/index.js +3 -2
  25. package/esm5/components/utils/locale-utils.js +15 -0
  26. package/fesm2015/seniorsistemas-angular-components.js +54 -29
  27. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  28. package/fesm5/seniorsistemas-angular-components.js +54 -29
  29. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  30. package/package.json +1 -1
  31. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -6214,6 +6214,21 @@ var ExportUtils = /** @class */ (function () {
6214
6214
  return ExportUtils;
6215
6215
  }());
6216
6216
 
6217
+ var convertToMomentDateFormat = function (format) {
6218
+ // A ordem dos replaces é importante.
6219
+ return format
6220
+ .replace(/\bd\b/, "D") // day of month (no leading zero)
6221
+ .replace(/\bdd\b/, "DD") // day of month
6222
+ .replace(/\bo\b/, "DDD") // day of the year (no leading zero)
6223
+ .replace(/\boo\b/, "DDDD") // day of the year
6224
+ .replace(/\bM\b/, "MMM") // month name short
6225
+ .replace(/\bMM\b/, "MMMM") // month name long
6226
+ .replace(/\bm\b/, "M") // month of year (no leading)
6227
+ .replace(/\bmm\b/, "MM") // month of year
6228
+ .replace(/\by\b/, "YY") // year (two digits)
6229
+ .replace(/\byy\b/, "YYYY"); // year (four digits)
6230
+ };
6231
+
6217
6232
  var ValidateErrors;
6218
6233
  (function (ValidateErrors) {
6219
6234
  ValidateErrors["MAX_FILE_SIZE"] = "MAX_FILE_SIZE";
@@ -7628,9 +7643,6 @@ var PasswordStrengthDirective = /** @class */ (function () {
7628
7643
  };
7629
7644
  PasswordStrengthDirective.prototype.validateProperties = function () {
7630
7645
  this.validation = this.validation || this.defaultValidator;
7631
- if (!this.description) {
7632
- throw new Error("Description is required");
7633
- }
7634
7646
  };
7635
7647
  PasswordStrengthDirective.prototype.destroyPasswordStrength = function () {
7636
7648
  if (this.componentRef !== null) {
@@ -8159,10 +8171,15 @@ var EnumBadgeColors;
8159
8171
 
8160
8172
  var moment$4 = moment_;
8161
8173
  var TableColumnsComponent = /** @class */ (function () {
8162
- function TableColumnsComponent(viewContainerRef, translate, hostProjectConfigs) {
8174
+ function TableColumnsComponent(localeService, viewContainerRef, translate, hostProjectConfigs) {
8175
+ this.localeService = localeService;
8163
8176
  this.viewContainerRef = viewContainerRef;
8164
8177
  this.translate = translate;
8165
8178
  this.hostProjectConfigs = hostProjectConfigs;
8179
+ this.locale = {
8180
+ calendar: __assign(__assign({}, this.localeService.getLocaleOptions().calendar), { dateFormat: convertToMomentDateFormat(this.localeService.getLocaleOptions().calendar.dateFormat) }),
8181
+ number: __assign(__assign({}, this.localeService.getLocaleOptions().number), { scale: 0 })
8182
+ };
8166
8183
  this.formattedColumns = [];
8167
8184
  }
8168
8185
  TableColumnsComponent.prototype.ngOnChanges = function (changes) {
@@ -8191,16 +8208,13 @@ var TableColumnsComponent = /** @class */ (function () {
8191
8208
  return null;
8192
8209
  };
8193
8210
  TableColumnsComponent.prototype.validateComponentAttributes = function (changes) {
8194
- var _a, _b, _c;
8211
+ var _a, _b;
8195
8212
  if (!this.columns && !((_a = changes.columns) === null || _a === void 0 ? void 0 : _a.currentValue)) {
8196
8213
  throw new Error("The 'columns' attribute must be informed!");
8197
8214
  }
8198
8215
  if (!this.rowValue && !((_b = changes.rowValue) === null || _b === void 0 ? void 0 : _b.currentValue)) {
8199
8216
  throw new Error("The 'rowValue' attribute must be informed!");
8200
8217
  }
8201
- if (!this.locale && !((_c = changes.locale) === null || _c === void 0 ? void 0 : _c.currentValue)) {
8202
- throw new Error("The 'locale' attribute must be informed!");
8203
- }
8204
8218
  };
8205
8219
  TableColumnsComponent.prototype.createColumnsTemplate = function (changes) {
8206
8220
  var _this = this;
@@ -8259,10 +8273,10 @@ var TableColumnsComponent = /** @class */ (function () {
8259
8273
  });
8260
8274
  return attributeValue;
8261
8275
  };
8262
- TableColumnsComponent.prototype.getNumberConfigs = function (column, locale) {
8263
- return __assign(__assign({}, locale.number), { scale: column.scale !== null && column.scale !== undefined
8276
+ TableColumnsComponent.prototype.getNumberConfigs = function (column) {
8277
+ return __assign(__assign({}, this.locale.number), { scale: column.scale !== null && column.scale !== undefined
8264
8278
  ? this.getColumnScale(column.scale)
8265
- : locale.number.scale, prefix: locale.number.currencySymbol + " " });
8279
+ : this.locale.number.scale, prefix: this.locale.number.currencySymbol + " " });
8266
8280
  };
8267
8281
  TableColumnsComponent.prototype.getDateFormat = function (column, locale) {
8268
8282
  return column.dateFormat ? column.dateFormat : locale.calendar.dateFormat;
@@ -8280,7 +8294,7 @@ var TableColumnsComponent = /** @class */ (function () {
8280
8294
  if (_this.isAttributeValueInvalid(attributeValue)) {
8281
8295
  return uninformed;
8282
8296
  }
8283
- var numberConfigs = _this.getNumberConfigs(column, locale);
8297
+ var numberConfigs = _this.getNumberConfigs(column);
8284
8298
  switch (column.type) {
8285
8299
  case EnumColumnFieldType.ENUM:
8286
8300
  return _this.translate.instant(column.enumPrefix + attributeValue.toString().toLowerCase());
@@ -8378,6 +8392,7 @@ var TableColumnsComponent = /** @class */ (function () {
8378
8392
  return columns.sort(function (a, b) { return a.sequence - b.sequence; });
8379
8393
  };
8380
8394
  TableColumnsComponent.ctorParameters = function () { return [
8395
+ { type: LocaleService },
8381
8396
  { type: ViewContainerRef },
8382
8397
  { type: TranslateService },
8383
8398
  { type: undefined, decorators: [{ type: Inject, args: [HostProjectConfigsInjectionToken,] }] }
@@ -8400,7 +8415,7 @@ var TableColumnsComponent = /** @class */ (function () {
8400
8415
  selector: "s-table-columns",
8401
8416
  styles: [":host{display:none}"]
8402
8417
  }),
8403
- __param(2, Inject(HostProjectConfigsInjectionToken))
8418
+ __param(3, Inject(HostProjectConfigsInjectionToken))
8404
8419
  ], TableColumnsComponent);
8405
8420
  return TableColumnsComponent;
8406
8421
  }());
@@ -9852,7 +9867,7 @@ var ProfilePictureFieldComponent = /** @class */ (function () {
9852
9867
  ], ProfilePictureFieldComponent.prototype, "formControl", void 0);
9853
9868
  ProfilePictureFieldComponent = __decorate([
9854
9869
  Component({
9855
- template: "<s-profile-picture-picker\n [formControl]=\"formControl\"\n [simpleTitle]=\"field.simpleTitle\"\n [actionTitle]=\"field.actionTitle\"\n [subtitle]=\"field.subtitle\"\n [aspectRatio]=\"field.aspectRatio\"\n [cropperLabelsConfig]=\"field.cropperLabelsConfig\"\n [removeButtonLabel]=\"field.removeButtonLabel\"\n [changeButtonLabel]=\"field.changeButtonLabel\"\n [confirmationTexts]=\"field.confirmationTexts\"\n [maxFileSize]=\"field.maxFileSize\"\n [accept]=\"field\"\n [supportedExtensions]=\"field.supportedExtensions\"\n (changedImage)=\"field.onChangeImage ? field.onChangeImage($event) : null\"\n (removedImage)=\"field.onRemovedImage ? field.onRemovedImage() : null\"\n (invalidFile)=\"field.onInvalidFile ? field.onInvalidFile($event) : null\">\n</s-profile-picture-picker>"
9870
+ template: "<s-profile-picture-picker\n [formControl]=\"formControl\"\n [simpleTitle]=\"field.simpleTitle\"\n [actionTitle]=\"field.actionTitle\"\n [subtitle]=\"field.subtitle\"\n [aspectRatio]=\"field.aspectRatio\"\n [cropperLabelsConfig]=\"field.cropperLabelsConfig\"\n [removeButtonLabel]=\"field.removeButtonLabel\"\n [changeButtonLabel]=\"field.changeButtonLabel\"\n [confirmationTexts]=\"field.confirmationTexts\"\n [maxFileSize]=\"field.maxFileSize\"\n [accept]=\"field.accept\"\n [supportedExtensions]=\"field.supportedExtensions\"\n (changedImage)=\"field.onChangeImage ? field.onChangeImage($event) : null\"\n (removedImage)=\"field.onRemovedImage ? field.onRemovedImage() : null\"\n (invalidFile)=\"field.onInvalidFile ? field.onInvalidFile($event) : null\">\n</s-profile-picture-picker>"
9856
9871
  })
9857
9872
  ], ProfilePictureFieldComponent);
9858
9873
  return ProfilePictureFieldComponent;
@@ -10762,13 +10777,8 @@ var ProfilePicturePickerComponent = /** @class */ (function () {
10762
10777
  this.confirmationService = confirmationService;
10763
10778
  this.translateService = translateService;
10764
10779
  this.aspectRatio = 1;
10765
- this.confirmationTexts = {
10766
- removalHeader: this.translateService.instant("platform.angular_components.remove_image"),
10767
- removalMessage: this.translateService.instant("platform.angular_components.confirmation_remove_image"),
10768
- removalAcceptLabel: this.translateService.instant("platform.angular_components.remove"),
10769
- removalRejectLabel: this.translateService.instant("platform.angular_components.cancel"),
10770
- };
10771
10780
  this.supportedExtensions = [];
10781
+ this.imageChange = new EventEmitter();
10772
10782
  this.changedImage = new EventEmitter();
10773
10783
  this.removedImage = new EventEmitter();
10774
10784
  this.invalidFile = new EventEmitter();
@@ -10776,6 +10786,9 @@ var ProfilePicturePickerComponent = /** @class */ (function () {
10776
10786
  ProfilePicturePickerComponent_1 = ProfilePicturePickerComponent;
10777
10787
  ProfilePicturePickerComponent.prototype.writeValue = function (value) {
10778
10788
  this._value = value;
10789
+ if (value) {
10790
+ this.image = value.base64;
10791
+ }
10779
10792
  };
10780
10793
  ProfilePicturePickerComponent.prototype.registerOnChange = function (onChange) {
10781
10794
  this._onChange = onChange;
@@ -10795,8 +10808,10 @@ var ProfilePicturePickerComponent = /** @class */ (function () {
10795
10808
  event.stopPropagation();
10796
10809
  };
10797
10810
  ProfilePicturePickerComponent.prototype.onDrop = function (event) {
10811
+ var _a;
10798
10812
  event.preventDefault();
10799
10813
  event.stopPropagation();
10814
+ (_a = this._onTouched) === null || _a === void 0 ? void 0 : _a.call(this);
10800
10815
  var files = [];
10801
10816
  var dataTransferFiles = event.dataTransfer.files;
10802
10817
  for (var i = 0; i < dataTransferFiles.length; i++) {
@@ -10819,21 +10834,25 @@ var ProfilePicturePickerComponent = /** @class */ (function () {
10819
10834
  }
10820
10835
  };
10821
10836
  ProfilePicturePickerComponent.prototype.selectPhoto = function () {
10837
+ var _a;
10822
10838
  var fileInputElement = this.fileInput.nativeElement;
10823
10839
  fileInputElement.value = "";
10824
10840
  fileInputElement.click();
10841
+ (_a = this._onTouched) === null || _a === void 0 ? void 0 : _a.call(this);
10825
10842
  };
10826
10843
  ProfilePicturePickerComponent.prototype.removePhoto = function () {
10827
10844
  var _this = this;
10845
+ var _a, _b, _c, _d, _e, _f, _g, _h;
10828
10846
  this.confirmationService.confirm({
10829
- message: this.confirmationTexts.removalMessage,
10830
- acceptLabel: this.confirmationTexts.removalAcceptLabel,
10831
- rejectLabel: this.confirmationTexts.removalRejectLabel,
10832
- header: this.confirmationTexts.removalHeader,
10847
+ message: (_b = (_a = this.confirmationTexts) === null || _a === void 0 ? void 0 : _a.removalMessage) !== null && _b !== void 0 ? _b : this.translateService.instant("platform.angular_components.confirmation_remove_image"),
10848
+ acceptLabel: (_d = (_c = this.confirmationTexts) === null || _c === void 0 ? void 0 : _c.removalAcceptLabel) !== null && _d !== void 0 ? _d : this.translateService.instant("platform.angular_components.remove"),
10849
+ rejectLabel: (_f = (_e = this.confirmationTexts) === null || _e === void 0 ? void 0 : _e.removalRejectLabel) !== null && _f !== void 0 ? _f : this.translateService.instant("platform.angular_components.cancel"),
10850
+ header: (_h = (_g = this.confirmationTexts) === null || _g === void 0 ? void 0 : _g.removalHeader) !== null && _h !== void 0 ? _h : this.translateService.instant("platform.angular_components.remove_image"),
10851
+ rejectButtonStyleClass: "ui-button-secondary",
10833
10852
  accept: function () {
10834
10853
  var fileInputElement = _this.fileInput.nativeElement;
10835
10854
  fileInputElement.value = "";
10836
- _this.image = "";
10855
+ _this.image = null;
10837
10856
  _this.removedImage.emit();
10838
10857
  },
10839
10858
  });
@@ -10851,10 +10870,13 @@ var ProfilePicturePickerComponent = /** @class */ (function () {
10851
10870
  fileReader.readAsDataURL(file);
10852
10871
  fileReader.onloadend = function (fileEvent) {
10853
10872
  _this.imageCropperService.show(__assign({ imageSource: fileEvent.target.result, croppedImage: function (image) {
10873
+ var _a;
10874
+ var data = { source: file, base64: image };
10854
10875
  _this.image = image;
10876
+ _this.imageChange.emit(data);
10855
10877
  _this.changedImage.emit(image);
10856
- _this._value = { sourceFile: file, base64: image };
10857
- _this._onChange(_this._value);
10878
+ _this._value = { source: file, base64: image };
10879
+ (_a = _this._onChange) === null || _a === void 0 ? void 0 : _a.call(_this, _this._value);
10858
10880
  }, changeImage: function () { return _this.selectPhoto(); }, allowSelectAnother: false, aspectRatio: _this.aspectRatio }, _this.cropperLabelsConfig));
10859
10881
  };
10860
10882
  };
@@ -10895,7 +10917,7 @@ var ProfilePicturePickerComponent = /** @class */ (function () {
10895
10917
  };
10896
10918
  ProfilePicturePickerComponent.prototype._validateFileSize = function (file) {
10897
10919
  if (this.maxFileSize) {
10898
- return file.size > this.maxFileSize;
10920
+ return file.size <= this.maxFileSize;
10899
10921
  }
10900
10922
  return true;
10901
10923
  };
@@ -10957,6 +10979,9 @@ var ProfilePicturePickerComponent = /** @class */ (function () {
10957
10979
  __decorate([
10958
10980
  ViewChild("fileInput", { read: ElementRef })
10959
10981
  ], ProfilePicturePickerComponent.prototype, "fileInput", void 0);
10982
+ __decorate([
10983
+ Output()
10984
+ ], ProfilePicturePickerComponent.prototype, "imageChange", void 0);
10960
10985
  __decorate([
10961
10986
  Output()
10962
10987
  ], ProfilePicturePickerComponent.prototype, "changedImage", void 0);
@@ -17944,5 +17969,5 @@ var fallback = {
17944
17969
  * Generated bundle index. Do not edit.
17945
17970
  */
17946
17971
 
17947
- 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, 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, 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, TemplateDirective 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, KanbanEventService as ɵcr, KanbanItemComponent as ɵcs, KanbanColumnComponent as ɵct, KanbanItemDraggingComponent as ɵcu, NumberLocaleOptions as ɵcv, BorderButtonModule as ɵcw, BorderButtonComponent as ɵcx, ProgressBarDeterminateComponent as ɵcy, ProgressBarIndeterminateComponent as ɵcz, TemplateModule as ɵd, SelectButtonItemComponent as ɵda, SlidePanelService as ɵdb, TieredMenuEventService as ɵdc, TieredMenuService as ɵdd, TieredMenuGlobalService as ɵde, TieredMenuComponent as ɵdf, TieredMenuNestedComponent as ɵdg, TieredMenuItemComponent as ɵdh, TieredMenuDividerComponent as ɵdi, TimelineItemModule as ɵdj, TimelineIconItemComponent as ɵdk, HorizontalTimelineModule as ɵdl, HorizontalTimelineComponent as ɵdm, VerticalTimelineModule as ɵdn, VerticalTimelineComponent as ɵdo, RangeLineComponent as ɵdp, CollapseOptionComponent as ɵdq, CollapsedItemsComponent as ɵdr, VerticalItemsComponent as ɵds, 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, FileUploadService as ɵt, InfoSignComponent as ɵu, TableColumnsComponent as ɵv, TablePagingComponent as ɵw, PasswordFieldModule as ɵx, PasswordFieldComponent as ɵy, TextFieldModule as ɵz };
17972
+ 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, 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, 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, NumberFieldModule$1 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, TemplateDirective 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, KanbanEventService as ɵcr, KanbanItemComponent as ɵcs, KanbanColumnComponent as ɵct, KanbanItemDraggingComponent as ɵcu, NumberLocaleOptions as ɵcv, BorderButtonModule as ɵcw, BorderButtonComponent as ɵcx, ProgressBarDeterminateComponent as ɵcy, ProgressBarIndeterminateComponent as ɵcz, TemplateModule as ɵd, SelectButtonItemComponent as ɵda, SlidePanelService as ɵdb, TieredMenuEventService as ɵdc, TieredMenuService as ɵdd, TieredMenuGlobalService as ɵde, TieredMenuComponent as ɵdf, TieredMenuNestedComponent as ɵdg, TieredMenuItemComponent as ɵdh, TieredMenuDividerComponent as ɵdi, TimelineItemModule as ɵdj, TimelineIconItemComponent as ɵdk, HorizontalTimelineModule as ɵdl, HorizontalTimelineComponent as ɵdm, VerticalTimelineModule as ɵdn, VerticalTimelineComponent as ɵdo, RangeLineComponent as ɵdp, CollapseOptionComponent as ɵdq, CollapsedItemsComponent as ɵdr, VerticalItemsComponent as ɵds, 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, FileUploadService as ɵt, InfoSignComponent as ɵu, TableColumnsComponent as ɵv, TablePagingComponent as ɵw, PasswordFieldModule as ɵx, PasswordFieldComponent as ɵy, TextFieldModule as ɵz };
17948
17973
  //# sourceMappingURL=seniorsistemas-angular-components.js.map