@seniorsistemas/angular-components 17.4.4 → 17.5.1

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 (36) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +191 -87
  2. package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
  3. package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
  4. package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
  5. package/components/card/card.component.d.ts +19 -0
  6. package/components/card/card.module.d.ts +2 -0
  7. package/components/card/index.d.ts +3 -0
  8. package/components/card/models/card-template-types.d.ts +5 -0
  9. package/components/index.d.ts +1 -0
  10. package/components/progressbar/components/progressbar-determinate/progressbar-determinate.component.d.ts +6 -0
  11. package/components/progressbar/progressbar.component.d.ts +2 -0
  12. package/esm2015/components/card/card.component.js +58 -0
  13. package/esm2015/components/card/card.module.js +16 -0
  14. package/esm2015/components/card/index.js +4 -0
  15. package/esm2015/components/card/models/card-template-types.js +7 -0
  16. package/esm2015/components/index.js +2 -1
  17. package/esm2015/components/progressbar/components/progressbar-determinate/progressbar-determinate.component.js +22 -3
  18. package/esm2015/components/progressbar/components/progressbar-indeterminate/progressbar-indeterminate.component.js +2 -2
  19. package/esm2015/components/progressbar/progressbar.component.js +10 -2
  20. package/esm2015/seniorsistemas-angular-components.js +53 -53
  21. package/esm5/components/card/card.component.js +60 -0
  22. package/esm5/components/card/card.module.js +19 -0
  23. package/esm5/components/card/index.js +4 -0
  24. package/esm5/components/card/models/card-template-types.js +7 -0
  25. package/esm5/components/index.js +2 -1
  26. package/esm5/components/progressbar/components/progressbar-determinate/progressbar-determinate.component.js +23 -3
  27. package/esm5/components/progressbar/components/progressbar-indeterminate/progressbar-indeterminate.component.js +2 -2
  28. package/esm5/components/progressbar/progressbar.component.js +10 -2
  29. package/esm5/seniorsistemas-angular-components.js +53 -53
  30. package/fesm2015/seniorsistemas-angular-components.js +129 -33
  31. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  32. package/fesm5/seniorsistemas-angular-components.js +139 -37
  33. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  34. package/package.json +1 -1
  35. package/seniorsistemas-angular-components.d.ts +52 -52
  36. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -1,5 +1,5 @@
1
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, HostBinding, Renderer2, InjectionToken, Inject, Pipe, ViewEncapsulation, TemplateRef, ViewContainerRef, ChangeDetectorRef, Optional, ContentChild } from '@angular/core';
2
+ import { EventEmitter, Input, Output, Component, ContentChildren, ViewChild, HostListener, forwardRef, NgModule, ɵɵdefineInjectable, Injectable, ElementRef, ApplicationRef, ComponentFactoryResolver, Injector, Directive, HostBinding, Renderer2, TemplateRef, InjectionToken, Inject, Pipe, ViewEncapsulation, 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, ReplaySubject, of, from, throwError, forkJoin } from 'rxjs';
5
5
  import { takeUntil, filter, take, tap, map, switchMap, catchError, delay, debounceTime, repeat, first, finalize } from 'rxjs/operators';
@@ -1825,6 +1825,112 @@ var CalendarMaskModule = /** @class */ (function () {
1825
1825
  return CalendarMaskModule;
1826
1826
  }());
1827
1827
 
1828
+ var TemplateDirective = /** @class */ (function () {
1829
+ function TemplateDirective(template) {
1830
+ this.template = template;
1831
+ }
1832
+ TemplateDirective.ctorParameters = function () { return [
1833
+ { type: TemplateRef }
1834
+ ]; };
1835
+ __decorate([
1836
+ Input("sTemplate")
1837
+ ], TemplateDirective.prototype, "type", void 0);
1838
+ TemplateDirective = __decorate([
1839
+ Directive({
1840
+ selector: "[sTemplate]",
1841
+ })
1842
+ ], TemplateDirective);
1843
+ return TemplateDirective;
1844
+ }());
1845
+
1846
+ var CardTemplateTypes;
1847
+ (function (CardTemplateTypes) {
1848
+ CardTemplateTypes["Header"] = "header";
1849
+ CardTemplateTypes["Body"] = "body";
1850
+ CardTemplateTypes["Footer"] = "footer";
1851
+ })(CardTemplateTypes || (CardTemplateTypes = {}));
1852
+
1853
+ var CardComponent = /** @class */ (function () {
1854
+ function CardComponent() {
1855
+ this.fullWidth = false;
1856
+ this.showBanner = false;
1857
+ this.hasCustomTemplates = false;
1858
+ }
1859
+ CardComponent.prototype.ngAfterContentInit = function () {
1860
+ this._getTemplates();
1861
+ this._testLoadImage();
1862
+ };
1863
+ CardComponent.prototype._getHeaderTemplate = function () {
1864
+ return this._getCustomTemplate(CardTemplateTypes.Header);
1865
+ };
1866
+ CardComponent.prototype._getBodyTemplate = function () {
1867
+ return this._getCustomTemplate(CardTemplateTypes.Body);
1868
+ };
1869
+ CardComponent.prototype._getFooterTemplate = function () {
1870
+ return this._getCustomTemplate(CardTemplateTypes.Footer);
1871
+ };
1872
+ CardComponent.prototype._getCustomTemplate = function (type) {
1873
+ var _a;
1874
+ return (_a = this.templates.find(function (template) { return template.type === type; })) === null || _a === void 0 ? void 0 : _a.template;
1875
+ };
1876
+ CardComponent.prototype._getTemplates = function () {
1877
+ this.headerTemplate = this._getHeaderTemplate();
1878
+ this.bodyTemplate = this._getBodyTemplate();
1879
+ this.footerTemplate = this._getFooterTemplate();
1880
+ this.hasCustomTemplates = !!(this.headerTemplate || this.bodyTemplate || this.footerTemplate);
1881
+ };
1882
+ CardComponent.prototype._testLoadImage = function () {
1883
+ var _this = this;
1884
+ var img = new Image();
1885
+ img.src = this.bannerImage;
1886
+ img.onload = function () { return (_this.showBanner = true); };
1887
+ img.onerror = function () { return (_this.showBanner = false); };
1888
+ };
1889
+ __decorate([
1890
+ Input()
1891
+ ], CardComponent.prototype, "bannerImage", void 0);
1892
+ __decorate([
1893
+ Input()
1894
+ ], CardComponent.prototype, "fullWidth", void 0);
1895
+ __decorate([
1896
+ ContentChildren(TemplateDirective)
1897
+ ], CardComponent.prototype, "templates", void 0);
1898
+ CardComponent = __decorate([
1899
+ Component({
1900
+ selector: "s-card",
1901
+ template: "<div class=\"card\" [ngClass]=\"{ 'card--full-width': fullWidth }\">\n <div\n *ngIf=\"showBanner\"\n class=\"banner\"\n [ngStyle]=\"{'background-image': 'url(' + bannerImage + ')'}\">\n </div>\n\n <ng-container *ngIf=\"hasCustomTemplates; then customTemplates; else contentTemplate\"> </ng-container>\n\n <ng-template #customTemplates>\n <div *ngIf=\"headerTemplate\" class=\"header\">\n <ng-container *ngTemplateOutlet=\"headerTemplate\"></ng-container>\n </div>\n <div *ngIf=\"bodyTemplate\" class=\"body\">\n <ng-container *ngTemplateOutlet=\"bodyTemplate\"></ng-container>\n </div>\n <div *ngIf=\"footerTemplate\" class=\"footer\">\n <ng-container *ngTemplateOutlet=\"footerTemplate\"></ng-container>\n </div>\n </ng-template>\n\n <ng-template #contentTemplate>\n <div class=\"body\">\n <ng-content></ng-content>\n </div>\n </ng-template>\n</div>\n",
1902
+ styles: [".card{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:column;flex-direction:column;background-color:#fff;border-radius:4px;box-shadow:0 1px 5px 0 #00000040;overflow:hidden}.card--full-width{width:100%}.card .banner{background-repeat:no-repeat;background-size:cover;height:150px;width:100%}.card .header{padding:16px 12px}.card .body,.card .footer{padding:16px}.card .body+.footer,.card .header+.body{border-top:1px solid #c1c1cc}"]
1903
+ })
1904
+ ], CardComponent);
1905
+ return CardComponent;
1906
+ }());
1907
+
1908
+ var TemplateModule = /** @class */ (function () {
1909
+ function TemplateModule() {
1910
+ }
1911
+ TemplateModule = __decorate([
1912
+ NgModule({
1913
+ imports: [CommonModule],
1914
+ declarations: [TemplateDirective],
1915
+ exports: [TemplateDirective],
1916
+ })
1917
+ ], TemplateModule);
1918
+ return TemplateModule;
1919
+ }());
1920
+
1921
+ var CardModule = /** @class */ (function () {
1922
+ function CardModule() {
1923
+ }
1924
+ CardModule = __decorate([
1925
+ NgModule({
1926
+ imports: [CommonModule],
1927
+ declarations: [CardComponent],
1928
+ exports: [CardComponent, TemplateModule],
1929
+ })
1930
+ ], CardModule);
1931
+ return CardModule;
1932
+ }());
1933
+
1828
1934
  var Languages;
1829
1935
  (function (Languages) {
1830
1936
  Languages["TaxCalculation"] = "TaxCalculation";
@@ -6109,6 +6215,11 @@ var ProgressBarMode;
6109
6215
 
6110
6216
  var ProgressBarComponent = /** @class */ (function () {
6111
6217
  function ProgressBarComponent() {
6218
+ this.numberFormatOptions = {
6219
+ style: "decimal",
6220
+ minimumFractionDigits: 0,
6221
+ maximumFractionDigits: 2,
6222
+ };
6112
6223
  this.showValue = true;
6113
6224
  this.mode = ProgressBarMode.Determinate;
6114
6225
  }
@@ -6129,6 +6240,9 @@ var ProgressBarComponent = /** @class */ (function () {
6129
6240
  __decorate([
6130
6241
  Input()
6131
6242
  ], ProgressBarComponent.prototype, "value", void 0);
6243
+ __decorate([
6244
+ Input()
6245
+ ], ProgressBarComponent.prototype, "numberFormatOptions", void 0);
6132
6246
  __decorate([
6133
6247
  Input()
6134
6248
  ], ProgressBarComponent.prototype, "targetValue", void 0);
@@ -6150,7 +6264,7 @@ var ProgressBarComponent = /** @class */ (function () {
6150
6264
  ProgressBarComponent = __decorate([
6151
6265
  Component({
6152
6266
  selector: "s-progressbar",
6153
- template: "<ng-container *ngIf=\"mode === 'determinate'; then pbDeterminateTemplate else pbIndeterminateTemplate\"></ng-container>\n\n<ng-template #pbDeterminateTemplate>\n <s-progressbar-determinate\n [value]=\"value\"\n [targetValue]=\"targetValue\"\n [targetLabel]=\"targetLabel\"\n [activeColor]=\"activeColor\"\n [showValue]=\"showValue\">\n </s-progressbar-determinate>\n</ng-template>\n\n<ng-template #pbIndeterminateTemplate>\n <s-progressbar-indeterminate\n [activeColor]=\"activeColor\"\n [label]=\"label\">\n </s-progressbar-indeterminate>\n</ng-template>",
6267
+ template: "<ng-container *ngIf=\"mode === 'determinate'; then pbDeterminateTemplate else pbIndeterminateTemplate\"></ng-container>\n\n<ng-template #pbDeterminateTemplate>\n <s-progressbar-determinate\n [value]=\"value\"\n [numberFormatOptions]=\"numberFormatOptions\"\n [targetValue]=\"targetValue\"\n [targetLabel]=\"targetLabel\"\n [activeColor]=\"activeColor\"\n [showValue]=\"showValue\">\n </s-progressbar-determinate>\n</ng-template>\n\n<ng-template #pbIndeterminateTemplate>\n <s-progressbar-indeterminate\n [activeColor]=\"activeColor\"\n [label]=\"label\">\n </s-progressbar-indeterminate>\n</ng-template>",
6154
6268
  styles: [".progress-bar{position:relative}.progress-bar .progress-bar-all{background-color:#d8d8d8;border-radius:4px;height:24px;overflow:hidden;width:100%}.progress-bar .progress-bar-all .progress-bar-active{-ms-flex-align:center;align-items:center;color:#fff;display:-ms-flexbox;display:flex;font-family:\"Open Sans\",sans-serif;font-size:14px;height:100%;-ms-flex-pack:center;justify-content:center;line-height:150%;-webkit-user-select:none;-ms-user-select:none;user-select:none;width:80%}.progress-bar .progress-bar-all .progress-bar-active--blue{background-color:#428bca}.progress-bar .progress-bar-all .progress-bar-active--green{background-color:#0c9348}.progress-bar .progress-bar-all .progress-bar-active--red{background-color:#c13018}.progress-bar .progress-bar-all .progress-bar-active--yellow{background-color:#fcbf10}.progress-bar .target{-ms-flex-align:start;align-items:flex-start;bottom:-38px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;position:absolute}.progress-bar .target .target-line{background-color:#333;height:40px;margin:8px 0;width:1px}.progress-bar .target .target-label{background-color:#426e78;border-radius:10px;color:#e5eaea;font-family:\"Open Sans\",sans-serif;font-size:12px;line-height:150%;padding:2px 12px}"]
6155
6269
  })
6156
6270
  ], ProgressBarComponent);
@@ -6158,11 +6272,24 @@ var ProgressBarComponent = /** @class */ (function () {
6158
6272
  }());
6159
6273
 
6160
6274
  var ProgressBarDeterminateComponent = /** @class */ (function () {
6161
- function ProgressBarDeterminateComponent() {
6275
+ function ProgressBarDeterminateComponent(localeService) {
6276
+ this.localeService = localeService;
6162
6277
  this.showValue = true;
6163
6278
  }
6164
6279
  ProgressBarDeterminateComponent.prototype.ngOnInit = function () {
6165
6280
  this.validateValues();
6281
+ this.onGetLocale();
6282
+ };
6283
+ ProgressBarDeterminateComponent.prototype.onGetLocale = function () {
6284
+ var _this = this;
6285
+ this.localeService.getLocale().subscribe({
6286
+ next: function (locale) {
6287
+ _this.numberFormat = new Intl.NumberFormat(locale !== null && locale !== void 0 ? locale : "pt-BR", _this.numberFormatOptions);
6288
+ },
6289
+ error: function () {
6290
+ _this.numberFormat = new Intl.NumberFormat("pt-BR", _this.numberFormatOptions);
6291
+ },
6292
+ });
6166
6293
  };
6167
6294
  ProgressBarDeterminateComponent.prototype.validateValues = function () {
6168
6295
  if (this.value < 0 || this.value > 100) {
@@ -6172,9 +6299,15 @@ var ProgressBarDeterminateComponent = /** @class */ (function () {
6172
6299
  throw new Error("Invalid value for targetValue");
6173
6300
  }
6174
6301
  };
6302
+ ProgressBarDeterminateComponent.ctorParameters = function () { return [
6303
+ { type: LocaleService }
6304
+ ]; };
6175
6305
  __decorate([
6176
6306
  Input()
6177
6307
  ], ProgressBarDeterminateComponent.prototype, "value", void 0);
6308
+ __decorate([
6309
+ Input()
6310
+ ], ProgressBarDeterminateComponent.prototype, "numberFormatOptions", void 0);
6178
6311
  __decorate([
6179
6312
  Input()
6180
6313
  ], ProgressBarDeterminateComponent.prototype, "targetValue", void 0);
@@ -6190,7 +6323,7 @@ var ProgressBarDeterminateComponent = /** @class */ (function () {
6190
6323
  ProgressBarDeterminateComponent = __decorate([
6191
6324
  Component({
6192
6325
  selector: "s-progressbar-determinate",
6193
- template: "<div class=\"progressbar-determinate\">\n <div class=\"progressbar-container\">\n <div\n class=\"progressbar-active\"\n [ngClass]=\"{\n 'progressbar-active--blue' : activeColor === 'blue',\n 'progressbar-active--green': activeColor === 'green',\n 'progressbar-active--red': activeColor === 'red',\n 'progressbar-active--yellow': activeColor === 'yellow'\n }\"\n [ngStyle]=\"{ 'width': value + '%' }\">\n {{ showValue && value ? value + '%' : '' }}\n </div>\n </div>\n <div\n *ngIf=\"targetValue\"\n class=\"target\"\n [ngStyle]=\"{\n 'left': targetValue <= 50 ? targetValue + '%' : 'unset',\n 'right': targetValue > 50 ? 100 - targetValue + '%' : 'unset',\n 'align-items': targetValue > 50 ? 'flex-end' : 'flex-start'\n }\">\n <span class=\"target-line\"></span>\n <span class=\"target-label\">\n {{ targetLabel || value + '%' }}\n </span>\n </div>\n </div>\n ",
6326
+ template: "<div class=\"progressbar-determinate\">\n <div class=\"progressbar-container\">\n <div\n class=\"progressbar-active\"\n [ngClass]=\"{\n 'progressbar-active--blue' : activeColor === 'blue',\n 'progressbar-active--green': activeColor === 'green',\n 'progressbar-active--red': activeColor === 'red',\n 'progressbar-active--yellow': activeColor === 'yellow'\n }\"\n [ngStyle]=\"{ 'width': value + '%' }\">\n\n {{ showValue && value ? numberFormat.format(value) + '%' : '' }}\n </div>\n </div>\n <div\n *ngIf=\"targetValue\"\n class=\"target\"\n [ngStyle]=\"{\n 'left': targetValue <= 50 ? targetValue + '%' : 'unset',\n 'right': targetValue > 50 ? 100 - targetValue + '%' : 'unset',\n 'align-items': targetValue > 50 ? 'flex-end' : 'flex-start'\n }\">\n <span class=\"target-line\"></span>\n <span class=\"target-label\">\n {{ targetLabel || numberFormat.format(value) + '%' }}\n </span>\n </div>\n </div>\n",
6194
6327
  styles: [".progressbar-determinate{position:relative}.progressbar-determinate .progressbar-container{background-color:#d8d8d8;border-radius:4px;height:24px;overflow:hidden;width:100%}.progressbar-determinate .progressbar-container .progressbar-active{-ms-flex-align:center;align-items:center;color:#fff;display:-ms-flexbox;display:flex;font-family:\"Open Sans\",sans-serif;font-size:14px;height:100%;-ms-flex-pack:center;justify-content:center;line-height:150%;-webkit-user-select:none;-ms-user-select:none;user-select:none;width:80%}.progressbar-determinate .progressbar-container .progressbar-active--blue{background-color:#428bca}.progressbar-determinate .progressbar-container .progressbar-active--green{background-color:#0c9348}.progressbar-determinate .progressbar-container .progressbar-active--red{background-color:#c13018}.progressbar-determinate .progressbar-container .progressbar-active--yellow{background-color:#fcbf10;color:#212533}.progressbar-determinate .target{-ms-flex-align:start;align-items:flex-start;bottom:-38px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;position:absolute}.progressbar-determinate .target .target-line{background-color:#333;height:40px;margin:8px 0;width:1px}.progressbar-determinate .target .target-label{background-color:#426e78;border-radius:10px;color:#e5eaea;font-family:\"Open Sans\",sans-serif;font-size:12px;line-height:150%;padding:2px 12px}"]
6195
6328
  })
6196
6329
  ], ProgressBarDeterminateComponent);
@@ -6209,7 +6342,7 @@ var ProgressBarIndeterminateComponent = /** @class */ (function () {
6209
6342
  ProgressBarIndeterminateComponent = __decorate([
6210
6343
  Component({
6211
6344
  selector: "s-progressbar-indeterminate",
6212
- template: "<!-- progressbar-indeterminate.component.html -->\n<div class=\"progressbar-indeterminate\">\n <div class=\"progressbar-container\">\n <div class=\"indeterminate-bar\" [ngClass]=\"{\n 'indeterminate-bar--blue': activeColor === 'blue',\n 'indeterminate-bar--green': activeColor === 'green',\n 'indeterminate-bar--red': activeColor === 'red',\n 'indeterminate-bar--yellow': activeColor === 'yellow'\n }\"></div>\n </div>\n \n <span *ngIf=\"label\" class=\"progressbar-label\">{{ label }}</span>\n</div>\n",
6345
+ template: "<div class=\"progressbar-indeterminate\">\n <div class=\"progressbar-container\">\n <div class=\"indeterminate-bar\" [ngClass]=\"{\n 'indeterminate-bar--blue': activeColor === 'blue',\n 'indeterminate-bar--green': activeColor === 'green',\n 'indeterminate-bar--red': activeColor === 'red',\n 'indeterminate-bar--yellow': activeColor === 'yellow'\n }\"></div>\n </div>\n\n <span *ngIf=\"label\" class=\"progressbar-label\">{{ label }}</span>\n</div>\n",
6213
6346
  styles: [".progressbar-indeterminate{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center}.progressbar-indeterminate .progressbar-container{background-color:#d8d8d8;border-radius:4px;height:24px;margin:8px 0;overflow:hidden;width:100%}.progressbar-indeterminate .indeterminate-bar{animation:5s infinite indeterminate-progress;background-color:#428bca;height:100%;width:40%}.progressbar-indeterminate .indeterminate-bar--blue{background-color:#428bca}.progressbar-indeterminate .indeterminate-bar--green{background-color:#0c9348}.progressbar-indeterminate .indeterminate-bar--red{background-color:#c13018}.progressbar-indeterminate .indeterminate-bar--yellow{background-color:#fcbf10}.progressbar-indeterminate .progressbar-label{font-family:\"Open Sans\" sans-serif;font-size:12px;line-height:150%;color:#212533}@keyframes indeterminate-progress{0%{transform:translateX(-250%)}100%{transform:translateX(250%)}}"]
6214
6347
  })
6215
6348
  ], ProgressBarIndeterminateComponent);
@@ -13113,37 +13246,6 @@ var GlobalSearchModule = /** @class */ (function () {
13113
13246
  return GlobalSearchModule;
13114
13247
  }());
13115
13248
 
13116
- var TemplateDirective = /** @class */ (function () {
13117
- function TemplateDirective(template) {
13118
- this.template = template;
13119
- }
13120
- TemplateDirective.ctorParameters = function () { return [
13121
- { type: TemplateRef }
13122
- ]; };
13123
- __decorate([
13124
- Input("sTemplate")
13125
- ], TemplateDirective.prototype, "type", void 0);
13126
- TemplateDirective = __decorate([
13127
- Directive({
13128
- selector: "[sTemplate]",
13129
- })
13130
- ], TemplateDirective);
13131
- return TemplateDirective;
13132
- }());
13133
-
13134
- var TemplateModule = /** @class */ (function () {
13135
- function TemplateModule() {
13136
- }
13137
- TemplateModule = __decorate([
13138
- NgModule({
13139
- imports: [CommonModule],
13140
- declarations: [TemplateDirective],
13141
- exports: [TemplateDirective],
13142
- })
13143
- ], TemplateModule);
13144
- return TemplateModule;
13145
- }());
13146
-
13147
13249
  var IAInsightCardComponent = /** @class */ (function () {
13148
13250
  function IAInsightCardComponent(clipboard, messageService, translateService) {
13149
13251
  this.clipboard = clipboard;
@@ -17236,5 +17338,5 @@ var fallback = {
17236
17338
  * Generated bundle index. Do not edit.
17237
17339
  */
17238
17340
 
17239
- 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, 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, BooleanSwitchFieldComponent as ɵba, CalendarFieldComponent as ɵbb, ChipsFieldComponent as ɵbc, CountryPhonePickerFieldComponent as ɵbd, CurrencyFieldComponent as ɵbe, DynamicFieldComponent as ɵbf, DynamicFormDirective as ɵbg, FieldsetComponent as ɵbh, FileUploadComponent$1 as ɵbi, LookupFieldComponent as ɵbj, NumberFieldComponent as ɵbk, PasswordFieldComponent as ɵbl, RadioButtonComponent as ɵbm, RowComponent as ɵbn, SectionComponent as ɵbo, SelectFieldComponent as ɵbp, SliderFieldComponent as ɵbq, TextAreaFieldComponent as ɵbr, TextAreaIAFieldComponent as ɵbs, IAssistService as ɵbt, TextFieldComponent as ɵbu, DecimalField as ɵbw, SideTableComponent as ɵbx, ThumbnailService as ɵby, InfiniteScrollModule as ɵbz, CustomTranslationsModule as ɵc, InfiniteScrollDirective as ɵca, TemplateModule as ɵcb, TemplateDirective as ɵcc, IAInsightSidebarComponent as ɵcd, IAInsightCardComponent as ɵce, IAInsightCardLoaderComponent as ɵcf, StructureModule as ɵcg, HeaderComponent as ɵch, FooterComponent as ɵci, KanbanEventService as ɵcj, KanbanItemComponent as ɵck, KanbanColumnComponent as ɵcl, KanbanItemDraggingComponent as ɵcm, NumberLocaleOptions as ɵcn, BorderButtonModule as ɵco, BorderButtonComponent as ɵcp, SelectButtonItemComponent as ɵcq, SlidePanelService as ɵcr, TieredMenuEventService as ɵcs, TieredMenuService as ɵct, TieredMenuComponent as ɵcu, TieredMenuNestedComponent as ɵcv, TieredMenuItemComponent as ɵcw, TieredMenuDividerComponent as ɵcx, TimelineItemModule as ɵcy, TimelineIconItemComponent as ɵcz, CodeEditorComponent as ɵd, HorizontalTimelineModule as ɵda, HorizontalTimelineComponent as ɵdb, VerticalTimelineModule as ɵdc, VerticalTimelineComponent as ɵdd, RangeLineComponent as ɵde, CollapseOptionComponent as ɵdf, CollapsedItemsComponent as ɵdg, VerticalItemsComponent as ɵdh, CoreFacade as ɵe, CodeMirror6Core as ɵf, CountryPhonePickerService as ɵg, LocalizedCurrencyImpurePipe as ɵh, LocalizedBignumberPipe as ɵi, LocalizedBignumberImpurePipe as ɵj, EmptyStateGoBackComponent as ɵk, IAssistIconComponent as ɵl, SeniorIconComponent as ɵm, DotsIndicatorComponent as ɵn, LoadingIndicatorComponent as ɵo, ProgressBarDeterminateComponent as ɵp, ProgressBarIndeterminateComponent as ɵq, FileUploadService as ɵr, FileItemComponent as ɵs, LocaleService as ɵt, InfoSignComponent as ɵu, TableColumnsComponent as ɵv, TablePagingComponent as ɵw, AutocompleteFieldComponent as ɵx, BignumberFieldComponent as ɵy, BooleanFieldComponent as ɵz };
17341
+ 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, BignumberFieldComponent as ɵba, BooleanFieldComponent as ɵbb, BooleanSwitchFieldComponent as ɵbc, CalendarFieldComponent as ɵbd, ChipsFieldComponent as ɵbe, CountryPhonePickerFieldComponent as ɵbf, CurrencyFieldComponent as ɵbg, DynamicFieldComponent as ɵbh, DynamicFormDirective as ɵbi, FieldsetComponent as ɵbj, FileUploadComponent$1 as ɵbk, LookupFieldComponent as ɵbl, NumberFieldComponent as ɵbm, PasswordFieldComponent as ɵbn, RadioButtonComponent as ɵbo, RowComponent as ɵbp, SectionComponent as ɵbq, SelectFieldComponent as ɵbr, SliderFieldComponent as ɵbs, TextAreaFieldComponent as ɵbt, TextAreaIAFieldComponent as ɵbu, IAssistService as ɵbv, TextFieldComponent as ɵbw, DecimalField as ɵby, SideTableComponent as ɵbz, TemplateDirective as ɵc, ThumbnailService as ɵca, InfiniteScrollModule as ɵcb, InfiniteScrollDirective as ɵcc, IAInsightSidebarComponent as ɵcd, IAInsightCardComponent as ɵce, IAInsightCardLoaderComponent as ɵcf, StructureModule as ɵcg, HeaderComponent as ɵch, FooterComponent as ɵci, KanbanEventService as ɵcj, KanbanItemComponent as ɵck, KanbanColumnComponent as ɵcl, KanbanItemDraggingComponent as ɵcm, NumberLocaleOptions as ɵcn, BorderButtonModule as ɵco, BorderButtonComponent as ɵcp, SelectButtonItemComponent as ɵcq, SlidePanelService as ɵcr, TieredMenuEventService as ɵcs, TieredMenuService as ɵct, TieredMenuComponent as ɵcu, TieredMenuNestedComponent as ɵcv, TieredMenuItemComponent as ɵcw, TieredMenuDividerComponent as ɵcx, TimelineItemModule as ɵcy, TimelineIconItemComponent as ɵcz, TemplateModule as ɵd, HorizontalTimelineModule as ɵda, HorizontalTimelineComponent as ɵdb, VerticalTimelineModule as ɵdc, VerticalTimelineComponent as ɵdd, RangeLineComponent as ɵde, CollapseOptionComponent as ɵdf, CollapsedItemsComponent as ɵdg, VerticalItemsComponent as ɵdh, 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, AutocompleteFieldComponent as ɵz };
17240
17342
  //# sourceMappingURL=seniorsistemas-angular-components.js.map