@seniorsistemas/angular-components 14.13.6 → 14.14.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 (47) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +138 -35
  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/dynamic-form/components/lookup/lookup.component.d.ts +4 -0
  6. package/components/dynamic-form/configurations/field-type.d.ts +2 -1
  7. package/components/dynamic-form/configurations/form-field.d.ts +2 -0
  8. package/components/dynamic-form/index.d.ts +1 -0
  9. package/components/empty-state/go-back/go-back.component.d.ts +11 -0
  10. package/components/locale/options/index.d.ts +9 -0
  11. package/esm2015/components/dynamic-form/components/lookup/lookup.component.js +59 -6
  12. package/esm2015/components/dynamic-form/configurations/field-type.js +2 -1
  13. package/esm2015/components/dynamic-form/configurations/fields/bignumber-field.js +3 -3
  14. package/esm2015/components/dynamic-form/configurations/fields/calendar-field.js +3 -3
  15. package/esm2015/components/dynamic-form/configurations/fields/currency-field.js +3 -3
  16. package/esm2015/components/dynamic-form/configurations/fields/decimal-field.js +3 -3
  17. package/esm2015/components/dynamic-form/configurations/fields/number-field.js +3 -3
  18. package/esm2015/components/dynamic-form/configurations/form-field.js +5 -1
  19. package/esm2015/components/dynamic-form/dynamic-form.js +3 -1
  20. package/esm2015/components/dynamic-form/dynamic-form.module.js +3 -3
  21. package/esm2015/components/dynamic-form/index.js +2 -1
  22. package/esm2015/components/empty-state/empty-state.module.js +6 -3
  23. package/esm2015/components/empty-state/go-back/go-back.component.js +37 -0
  24. package/esm2015/components/locale/options/index.js +10 -1
  25. package/esm2015/seniorsistemas-angular-components.js +10 -10
  26. package/esm5/components/dynamic-form/components/lookup/lookup.component.js +59 -6
  27. package/esm5/components/dynamic-form/configurations/field-type.js +2 -1
  28. package/esm5/components/dynamic-form/configurations/fields/bignumber-field.js +3 -3
  29. package/esm5/components/dynamic-form/configurations/fields/calendar-field.js +3 -3
  30. package/esm5/components/dynamic-form/configurations/fields/currency-field.js +3 -3
  31. package/esm5/components/dynamic-form/configurations/fields/decimal-field.js +3 -3
  32. package/esm5/components/dynamic-form/configurations/fields/number-field.js +3 -3
  33. package/esm5/components/dynamic-form/configurations/form-field.js +5 -1
  34. package/esm5/components/dynamic-form/dynamic-form.js +3 -1
  35. package/esm5/components/dynamic-form/dynamic-form.module.js +3 -3
  36. package/esm5/components/dynamic-form/index.js +2 -1
  37. package/esm5/components/empty-state/empty-state.module.js +6 -3
  38. package/esm5/components/empty-state/go-back/go-back.component.js +38 -0
  39. package/esm5/components/locale/options/index.js +10 -1
  40. package/esm5/seniorsistemas-angular-components.js +10 -10
  41. package/fesm2015/seniorsistemas-angular-components.js +126 -25
  42. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  43. package/fesm5/seniorsistemas-angular-components.js +130 -28
  44. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  45. package/package.json +1 -1
  46. package/seniorsistemas-angular-components.d.ts +9 -9
  47. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -1,4 +1,4 @@
1
- import { __decorate, __param, __awaiter } from 'tslib';
1
+ import { __decorate, __rest, __param, __awaiter } from 'tslib';
2
2
  import { Input, Component, NgModule, EventEmitter, HostBinding, Output, ViewChild, Renderer2, HostListener, Directive, Injectable, Pipe, forwardRef, ViewEncapsulation, TemplateRef, ViewContainerRef, ComponentFactoryResolver, ChangeDetectorRef, ElementRef, InjectionToken, Inject, ContentChild, ApplicationRef, Injector, ContentChildren } from '@angular/core';
3
3
  import { CommonModule } from '@angular/common';
4
4
  import { BreadcrumbModule as BreadcrumbModule$1 } from 'primeng/breadcrumb';
@@ -983,6 +983,7 @@ var FieldType;
983
983
  FieldType["Text"] = "Text";
984
984
  FieldType["Time"] = "Time";
985
985
  FieldType["Number"] = "Number";
986
+ FieldType["Custom"] = "Custom";
986
987
  })(FieldType || (FieldType = {}));
987
988
 
988
989
  class FieldSize {
@@ -1067,8 +1068,17 @@ class LocaleOptions {
1067
1068
  Object.keys(config).forEach(key => (this[key] = config[key] || this[key]));
1068
1069
  }
1069
1070
  }
1071
+ /**
1072
+ * @deprecated
1073
+ */
1070
1074
  const DEFAULT_CALENDAR_LOCALE_OPTIONS = new CalendarLocaleOptions();
1075
+ /**
1076
+ * @deprecated
1077
+ */
1071
1078
  const DEFAULT_NUMBER_LOCALE_OPTIONS = new NumberLocaleOptions();
1079
+ /**
1080
+ * @deprecated
1081
+ */
1072
1082
  const DEFAULT_LOCALE_OPTIONS = new LocaleOptions();
1073
1083
 
1074
1084
  const moment = moment_; // @HACK Necessary because of https://github.com/rollup/rollup/issues/670
@@ -1361,7 +1371,7 @@ class BignumberField extends Field {
1361
1371
  constructor(config) {
1362
1372
  var _a;
1363
1373
  super(config);
1364
- this.numberLocaleOptions = config.numberLocaleOptions || DEFAULT_NUMBER_LOCALE_OPTIONS;
1374
+ this.numberLocaleOptions = config.numberLocaleOptions || new NumberLocaleOptions();
1365
1375
  this.browserAutocomplete = config.browserAutocomplete;
1366
1376
  this.precision = config.precision;
1367
1377
  this.scale = (_a = config.scale) !== null && _a !== void 0 ? _a : 2;
@@ -1419,7 +1429,7 @@ class CalendarField extends Field {
1419
1429
  this.maxDate = config.maxDate;
1420
1430
  this.appendTo = config.appendTo;
1421
1431
  this.showOnFocus = typeof config.showOnFocus === "boolean" ? config.showOnFocus : true;
1422
- this.calendarLocaleOptions = config.calendarLocaleOptions || DEFAULT_CALENDAR_LOCALE_OPTIONS;
1432
+ this.calendarLocaleOptions = config.calendarLocaleOptions || new CalendarLocaleOptions();
1423
1433
  this.onBlur = config.onBlur;
1424
1434
  this.onFocus = config.onFocus;
1425
1435
  this.onSelect = config.onSelect;
@@ -1585,7 +1595,7 @@ NumberInputModule = __decorate([
1585
1595
  class NumberField extends Field {
1586
1596
  constructor(config) {
1587
1597
  super(config);
1588
- this.numberLocaleOptions = config.numberLocaleOptions || DEFAULT_NUMBER_LOCALE_OPTIONS;
1598
+ this.numberLocaleOptions = config.numberLocaleOptions || new NumberLocaleOptions();
1589
1599
  this.browserAutocomplete = config.browserAutocomplete;
1590
1600
  this.precision = config.precision;
1591
1601
  this.alignTo = config.alignTo || NumberAlignmentOption.LEFT;
@@ -1605,7 +1615,7 @@ class NumberField extends Field {
1605
1615
  class DecimalField extends NumberField {
1606
1616
  constructor(config) {
1607
1617
  super(config);
1608
- this.numberLocaleOptions = config.numberLocaleOptions || DEFAULT_NUMBER_LOCALE_OPTIONS;
1618
+ this.numberLocaleOptions = config.numberLocaleOptions || new NumberLocaleOptions();
1609
1619
  this.alignTo = config.alignTo || NumberAlignmentOption.RIGHT;
1610
1620
  this.scale = config.scale || config.scale === 0 ? config.scale : 2;
1611
1621
  }
@@ -1617,7 +1627,7 @@ class DecimalField extends NumberField {
1617
1627
  class CurrencyField extends DecimalField {
1618
1628
  constructor(config) {
1619
1629
  super(config);
1620
- this.numberLocaleOptions = config.numberLocaleOptions || DEFAULT_NUMBER_LOCALE_OPTIONS;
1630
+ this.numberLocaleOptions = config.numberLocaleOptions || new NumberLocaleOptions();
1621
1631
  }
1622
1632
  }
1623
1633
 
@@ -1755,6 +1765,9 @@ class FormField {
1755
1765
  return new ChipsField(config);
1756
1766
  case FieldType.Blob:
1757
1767
  return new BlobField(config);
1768
+ case FieldType.Custom:
1769
+ const { CustomFieldClass } = config, otherConfigs = __rest(config, ["CustomFieldClass"]);
1770
+ return new CustomFieldClass(otherConfigs);
1758
1771
  }
1759
1772
  }
1760
1773
  }
@@ -1800,9 +1813,24 @@ let LookupComponent = LookupComponent_1 = class LookupComponent {
1800
1813
  this.originalFormValues = {};
1801
1814
  }
1802
1815
  ngOnInit() {
1816
+ if (!this.searchGridFields) {
1817
+ this.searchGridFields = this.searchFields.map(item => new FormField(Object.assign({}, item)));
1818
+ }
1803
1819
  this.searchFields = this.searchFields.map((value) => new FormField(Object.assign(Object.assign({}, value), { size: { sm: 12, md: 12, lg: 12, xl: 12 } })));
1804
- this.searchGridFields = (this.searchGridFields || this.searchFields).map((gridField) => {
1820
+ this.searchGridFields = this.searchGridFields.map((gridField) => {
1805
1821
  gridField["width"] = this.getColWidth(gridField.label);
1822
+ const calendarOptions = gridField.calendarLocaleOptions;
1823
+ if (calendarOptions === null || calendarOptions === void 0 ? void 0 : calendarOptions.dateFormat) {
1824
+ switch (gridField.type) {
1825
+ case FieldType.Date:
1826
+ calendarOptions.dateFormat = this._convertToMomentDateFormat(calendarOptions.dateFormat);
1827
+ break;
1828
+ case FieldType.Time:
1829
+ calendarOptions.dateFormat = this._convertToMomentHourFormat(calendarOptions.hourFormat, calendarOptions.dateFormat);
1830
+ break;
1831
+ }
1832
+ calendarOptions.dateFormat = calendarOptions.dateFormat;
1833
+ }
1806
1834
  return gridField;
1807
1835
  });
1808
1836
  const formGroup = this.searchFields.reduce((result, field) => {
@@ -1828,6 +1856,36 @@ let LookupComponent = LookupComponent_1 = class LookupComponent {
1828
1856
  this.onChange(newValue);
1829
1857
  });
1830
1858
  }
1859
+ _convertToMomentHourFormat(hourFormat, format) {
1860
+ if (format === "dd/mm/yy") { // valor padrão para o format.
1861
+ return "LTS";
1862
+ }
1863
+ if (hourFormat === "12") {
1864
+ return format
1865
+ .replace(/\bH\b/, "h") // hour (12 hour time) (no leading zero)
1866
+ .replace(/\bHH\b/, "hh"); // hour (12 hour time)
1867
+ }
1868
+ if (hourFormat === "24") {
1869
+ return format
1870
+ .replace(/\bh\b/, "H") // hour (24 hour time) (no leading zero)
1871
+ .replace(/\bhh\b/, "HH"); // hour (24 hour time)
1872
+ }
1873
+ return format;
1874
+ }
1875
+ _convertToMomentDateFormat(format) {
1876
+ // A ordem dos replaces é importante.
1877
+ return format
1878
+ .replace(/\bd\b/, "D") // day of month (no leading zero)
1879
+ .replace(/\bdd\b/, "DD") // day of month
1880
+ .replace(/\bo\b/, "DDD") // day of the year (no leading zero)
1881
+ .replace(/\boo\b/, "DDDD") // day of the year
1882
+ .replace(/\bM\b/, "MMM") // month name short
1883
+ .replace(/\bMM\b/, "MMMM") // month name long
1884
+ .replace(/\bm\b/, "M") // month of year (no leading)
1885
+ .replace(/\bmm\b/, "MM") // month of year
1886
+ .replace(/\by\b/, "YY") // year (two digits)
1887
+ .replace(/\byy\b/, "YYYY"); // year (four digits)
1888
+ }
1831
1889
  ngAfterViewInit() {
1832
1890
  this.autocomplete.onOverlayAnimationDone = (event) => { };
1833
1891
  }
@@ -1845,12 +1903,16 @@ let LookupComponent = LookupComponent_1 = class LookupComponent {
1845
1903
  getLookupSuggestions() {
1846
1904
  return this.lookupSuggestions;
1847
1905
  }
1848
- lazyLoadGrid(event) {
1849
- // Ao definir uma ordenação na tabela do lookup esse método é chamado 2 vezes https://github.com/primefaces/primeng/issues/5480
1906
+ makeSearchRequestParams(event) {
1850
1907
  const filters = this.formGroupDialog.getRawValue();
1851
1908
  const params = Object.assign(Object.assign({}, event), { filterData: filters });
1852
1909
  const { multiSortMeta } = event;
1853
1910
  this.multiSortMeta = multiSortMeta || this.multiSortMeta;
1911
+ return params;
1912
+ }
1913
+ lazyLoadGrid(event) {
1914
+ // Ao definir uma ordenação na tabela do lookup esse método é chamado 2 vezes https://github.com/primefaces/primeng/issues/5480
1915
+ const params = this.makeSearchRequestParams(event);
1854
1916
  this.onSearchRequest.next(params);
1855
1917
  }
1856
1918
  lazyLoadLookup(event) {
@@ -1881,12 +1943,15 @@ let LookupComponent = LookupComponent_1 = class LookupComponent {
1881
1943
  inputEL.nativeElement.focus();
1882
1944
  }
1883
1945
  search() {
1884
- this.table.reset();
1946
+ this.resetTable();
1885
1947
  this.collapsed = true;
1886
1948
  this.dialog.moveOnTop();
1887
1949
  }
1888
1950
  clear() {
1889
1951
  this.formGroupDialog.reset(this.originalFormValues);
1952
+ this.resetTable();
1953
+ }
1954
+ resetTable() {
1890
1955
  this.table.reset();
1891
1956
  }
1892
1957
  select() {
@@ -2137,7 +2202,7 @@ __decorate([
2137
2202
  LookupComponent = LookupComponent_1 = __decorate([
2138
2203
  Component({
2139
2204
  selector: "s-lookup",
2140
- template: "<div [ngClass]=\"{ inputgroup: showSearch }\">\n <p-autoComplete\n #autocomplete\n [(ngModel)]=\"value\"\n [disabled]=\"disabled\"\n [dataKey]=\"dataKey\"\n [multiple]=\"multiple\"\n [inputId]=\"id + '-autocomplete'\"\n [forceSelection]=\"true\"\n [suggestions]=\"getLookupSuggestions()\"\n (completeMethod)=\"lazyLoadLookup($event)\"\n (onSelect)=\"onSelect.next($event)\"\n (onBlur)=\"onBlur.next($event)\"\n (onFocus)=\"onFocus.next($event)\"\n (onUnselect)=\"onUnselect.next($event)\"\n (onClear)=\"onClear.next($event)\"\n (onKeyUp)=\"onKeyUp.next($event)\"\n [field]=\"lookupDisplayField\"\n [emptyMessage]=\"lookupEmptyMessage\"\n [dropdown]=\"!showSearch\"\n [appendTo]=\"lookupAppendTo\"\n [placeholder]=\"placeholder || ' '\"\n [autoHighlight]=\"true\"\n inputStyleClass=\"mousetrap\"\n >\n <ng-template let-item pTemplate=\"selectedItem\">\n <span class=\"ui-autocomplete-token-label ng-tns-c65-43 ng-star-inserted\" \n [pTooltip]=\"lookupDisplayFieldTooltip ? item[lookupDisplayField] : null\" \n tooltipPosition=\"top\">\n {{item[lookupDisplayField]}}\n </span>\n </ng-template>\n </p-autoComplete>\n\n <button\n *ngIf=\"showSearch\"\n pButton\n type=\"button\"\n icon=\"fa fa-search\"\n class=\"button-addon\"\n [disabled]=\"disabled\"\n (click)=\"showDialog()\"\n ></button>\n</div>\n\n<p-dialog\n appendTo=\"body\"\n styleClass=\"s-lookup-modal\"\n [header]=\"searchTitle\"\n [(visible)]=\"dialogVisible\"\n [modal]=\"true\"\n (onHide)=\"hideDialog()\"\n [blockScroll]=\"true\"\n [focusOnShow]=\"true\"\n [draggable]=\"false\"\n [resizable]=\"false\"\n #dialog\n>\n <div *ngIf=\"dialogVisible\" class=\"s-lookup-modal-container\">\n <div *ngIf=\"searchFields && searchFields.length\" class=\"filter\"\n [@collapseContent]=\"collapsed ? {value: 'hidden', params: {transitionParams: transitionOptions }} : {value: 'visible', params: {transitionParams: transitionOptions}}\"\n (@collapseContent.done)=\"onToggleDone()\">\n <form [formGroup]=\"formGroupDialog\" novalidate autocomplete=\"off\">\n <div *ngIf=\"!collapsed\"\n [@childCollapseContent]=\"collapsed ? {value: ':leave', params: {transitionParams: transitionOptions }} : {value: ':enter', params: {transitionParams: transitionOptions}}\"\n class=\"form-content\">\n <div class=\"filter-title sds-section-title\">{{ filterTitle }}</div>\n <div class=\"form-fields\">\n <s-dynamic-form [fields]=\"searchFields\" [form]=\"formGroupDialog\"></s-dynamic-form>\n </div>\n <div class=\"ui-g\">\n <div class=\"ui-g-12\">\n <s-button\n [id]=\"id + '-filter-button'\"\n type=\"submit\"\n [label]=\"filterLabel\"\n (onClick)=\"search()\"\n pTooltip=\"(ALT + SHIFT + F)\"\n showDelay=\"500\"\n ></s-button>\n <s-button\n [id]=\"id + '-clear-button'\"\n type=\"button\"\n [label]=\"clearLabel\"\n (onClick)=\"clear()\"\n priority=\"link\"\n pTooltip=\"(ALT + SHIFT + L)\"\n showDelay=\"500\"\n ></s-button>\n </div>\n </div>\n </div>\n </form> \n </div>\n <div *ngIf=\"searchFields && searchFields.length\" class=\"filter-toggle\">\n <div class=\"filter-toggle--start-border-mask\"></div>\n <button [id]=\"id + '-filter-toggle-button'\" type=\"button\" (click)=\"filterToggle()\">\n <span class=\"fa\" [ngClass]=\"{'fa-chevron-left': !collapsed, 'fa-chevron-right': collapsed}\"\n aria-hidden=\"true\"></span>\n </button>\n <div class=\"filter-toggle--end-border-mask\"></div>\n </div>\n <div class=\"content\" [ngClass]=\"{'empty-content': !searchTotalRecords && !loading}\">\n <s-empty-state\n [id]=\"id + '-empty-state'\"\n *ngIf=\"!searchTotalRecords && !loading\"\n [title]=\"searchEmptyTitle\"\n [description]=\"searchEmptyDescription\"\n iconClass=\"fa fa-search\"\n ></s-empty-state>\n\n <p-table\n [dataKey]=\"dataKey\"\n [value]=\"getGridData()\"\n [columns]=\"searchGridFields\"\n [lazy]=\"true\"\n [scrollable]=\"true\"\n [paginator]=\"true\"\n sortMode=\"multiple\"\n [totalRecords]=\"searchTotalRecords\"\n [rows]=\"10\"\n [selection]=\"selected\"\n (onLazyLoad)=\"lazyLoadGrid($event)\"\n *sLoadingState=\"loading\"\n [multiSortMeta]=\"multiSortMeta\"\n [attr.data-hidden]=\"!searchTotalRecords && !loading\"\n [selectionMode]=\"multiple ? 'multiple' : 'single'\"\n (selectionChange)=\"onSelectionChange($event)\"\n >\n <ng-template pTemplate=\"colgroup\" let-columns>\n <colgroup>\n <col *ngIf=\"multiple\" style=\"width: 50px\" />\n <col *ngFor=\"let col of columns\" [style.width]=\"col.width\" />\n </colgroup>\n </ng-template>\n <ng-template pTemplate=\"header\" let-columns>\n <tr>\n <th *ngIf=\"multiple\" style=\"width: 50px\">\n <s-table-header-checkbox [useAllObject]=\"lookupRowProps ? false : true\" [rowProps]=\"lookupRowProps\"></s-table-header-checkbox>\n </th>\n <th\n [style.width]=\"col.width\"\n *ngFor=\"let col of columns\"\n [pSortableColumn]=\"col.name\"\n [pSortableColumnDisabled]=\"sortableColumnsDisabled?.includes(col.name)\"\n >\n <div class=\"senior-header\">\n <span class=\"senior-header-title\">{{ col.label }}</span>\n <p-sortIcon [field]=\"col.name\" *ngIf=\"!sortableColumnsDisabled?.includes(col.name)\"></p-sortIcon>\n </div>\n </th>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"body\" let-rowData let-columns let-rowIndex=\"rowIndex\">\n <tr\n sNavigation\n [pSelectableRow]=\"rowData\"\n [pSelectableRowIndex]=\"rowIndex\"\n sDoubleClick (onDoubleClick)=\"onTableRowDoubleClick(rowData)\"\n >\n <td *ngIf=\"multiple\" style=\"width: 50px\" tabindex=\"0\">\n <p-tableCheckbox [value]=\"rowData\" [pSelectableRow]=\"rowData\"></p-tableCheckbox>\n </td>\n <td\n [style.width]=\"col['width']\"\n *ngFor=\"let col of searchGridFields\"\n [ngSwitch]=\"col.type\"\n tabindex=\"0\"\n >\n <ng-container *ngSwitchCase=\"'Boolean'\">\n <ng-container *ngIf=\"isBooleanValue(rowData, col.name); else emptyTemplate\">\n <span>{{ getBooleanLabel(rowData, col.name, col.optionsLabel) }}</span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Date'\">\n <ng-container *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\">\n <span>{{ getFieldValue(rowData, col.name) | localizedDate: col.calendarLocaleOptions?.dateFormat || \"L\" | async }}</span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'DateTime'\">\n <ng-container *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\">\n <span>{{ getFieldValue(rowData, col.name) | localizedDate | async }}</span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Time'\">\n <ng-container *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\">\n <span>{{ getFieldValue(rowData, col.name) | localizedTime: col.calendarLocaleOptions?.dateFormat || \"LTS\" | async }}</span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Double'\">\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span> {{ getFieldValue(rowData, col.name) | localizedNumber: getScale(col.scale) | async }} </span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Money'\">\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span> {{ getFieldValue(rowData, col.name) | localizedCurrency | async }} </span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Number'\">\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span> {{ getFieldValue(rowData, col.name) | localizedBignumber: getNumberMaskConfig(col) | async }} </span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Enum'\">\n <ng-container\n *ngIf=\"getLabelForValue(getFieldValue(rowData, col.name), col.options); else emptyTemplate\"\n >\n <span> {{ getLabelForValue(getFieldValue(rowData, col.name), col.options) }} </span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngSwitchDefault>\n <ng-container *ngIf=\"col.mask && col.mask()\">\n <ng-container *ngIf=\"(isNumber(rowData, col.name) || getFieldValue(rowData, col.name))\">\n <span>{{ getFieldValue(rowData, col.name) | sMaskFormatter: col.mask() }}</span>\n </ng-container>\n </ng-container>\n <ng-container *ngIf=\"!(col.mask && col.mask())\">\n <ng-container *ngIf=\"(isNumber(rowData, col.name) || getFieldValue(rowData, col.name)); else emptyTemplate\">\n <span>{{ getFieldValue(rowData, col.name) }}</span>\n </ng-container>\n </ng-container>\n </ng-container>\n </td>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"paginatorright\">\n <span [attr.data-hidden]=\"loading\">\n {{\n searchTotalRecordsLabel ||\n searchTotalRecords?.toString() + (searchTotalRecords === 1 ? recordLabel : recordsLabel)\n }}\n </span>\n </ng-template>\n </p-table>\n </div>\n </div>\n\n <p-footer>\n <s-button\n [id]=\"id + '-select-button'\"\n type=\"button\"\n [label]=\"selectLabel\"\n (onClick)=\"select()\"\n pTooltip=\"(ALT + SHIFT + S)\"\n showDelay=\"500\"\n [disabled]=\"!selected?.length\"\n ></s-button>\n <s-button\n [id]=\"id + '-cancel-button'\"\n type=\"button\"\n priority=\"link\"\n [label]=\"cancelLabel\"\n (onClick)=\"hideDialog()\"\n pTooltip=\"(ALT + SHIFT + C)\"\n showDelay=\"500\"\n ></s-button>\n </p-footer>\n</p-dialog>\n\n<ng-template #emptyTemplate>\n <span [ngClass]=\"'sds-empty-value'\">{{ emptyFieldLabel }}</span>\n</ng-template>\n",
2205
+ template: "<div [ngClass]=\"{ inputgroup: showSearch }\">\n <p-autoComplete\n #autocomplete\n [(ngModel)]=\"value\"\n [disabled]=\"disabled\"\n [dataKey]=\"dataKey\"\n [multiple]=\"multiple\"\n [inputId]=\"id + '-autocomplete'\"\n [forceSelection]=\"true\"\n [suggestions]=\"getLookupSuggestions()\"\n (completeMethod)=\"lazyLoadLookup($event)\"\n (onSelect)=\"onSelect.next($event)\"\n (onBlur)=\"onBlur.next($event)\"\n (onFocus)=\"onFocus.next($event)\"\n (onUnselect)=\"onUnselect.next($event)\"\n (onClear)=\"onClear.next($event)\"\n (onKeyUp)=\"onKeyUp.next($event)\"\n [field]=\"lookupDisplayField\"\n [emptyMessage]=\"lookupEmptyMessage\"\n [dropdown]=\"!showSearch\"\n [appendTo]=\"lookupAppendTo\"\n [placeholder]=\"placeholder || ' '\"\n [autoHighlight]=\"true\"\n inputStyleClass=\"mousetrap\"\n >\n <ng-template let-item pTemplate=\"selectedItem\">\n <span class=\"ui-autocomplete-token-label ng-tns-c65-43 ng-star-inserted\" \n [pTooltip]=\"lookupDisplayFieldTooltip ? item[lookupDisplayField] : null\" \n tooltipPosition=\"top\">\n {{item[lookupDisplayField]}}\n </span>\n </ng-template>\n </p-autoComplete>\n\n <button\n *ngIf=\"showSearch\"\n pButton\n type=\"button\"\n icon=\"fa fa-search\"\n class=\"button-addon\"\n [disabled]=\"disabled\"\n (click)=\"showDialog()\"\n ></button>\n</div>\n\n<p-dialog\n appendTo=\"body\"\n styleClass=\"s-lookup-modal\"\n [header]=\"searchTitle\"\n [(visible)]=\"dialogVisible\"\n [modal]=\"true\"\n (onHide)=\"hideDialog()\"\n [blockScroll]=\"true\"\n [focusOnShow]=\"true\"\n [draggable]=\"false\"\n [resizable]=\"false\"\n #dialog\n>\n <div *ngIf=\"dialogVisible\" class=\"s-lookup-modal-container\">\n <div *ngIf=\"searchFields && searchFields.length\" class=\"filter\"\n [@collapseContent]=\"collapsed \n ? { value: 'hidden', params: { transitionParams: transitionOptions } }\n : { value: 'visible', params: { transitionParams: transitionOptions } }\"\n (@collapseContent.done)=\"onToggleDone()\">\n <form [formGroup]=\"formGroupDialog\" novalidate autocomplete=\"off\">\n <div *ngIf=\"!collapsed\"\n [@childCollapseContent]=\"collapsed\n ? { value: ':leave', params: { transitionParams: transitionOptions } }\n : { value: ':enter', params: { transitionParams: transitionOptions } }\"\n class=\"form-content\">\n <div class=\"filter-title sds-section-title\">{{ filterTitle }}</div>\n <div class=\"form-fields\">\n <s-dynamic-form [fields]=\"searchFields\" [form]=\"formGroupDialog\"></s-dynamic-form>\n </div>\n <div class=\"ui-g\">\n <div class=\"ui-g-12\">\n <s-button\n [id]=\"id + '-filter-button'\"\n type=\"submit\"\n [label]=\"filterLabel\"\n (onClick)=\"search()\"\n pTooltip=\"(ALT + SHIFT + F)\"\n showDelay=\"500\"\n ></s-button>\n <s-button\n [id]=\"id + '-clear-button'\"\n type=\"button\"\n [label]=\"clearLabel\"\n (onClick)=\"clear()\"\n priority=\"link\"\n pTooltip=\"(ALT + SHIFT + L)\"\n showDelay=\"500\"\n ></s-button>\n </div>\n </div>\n </div>\n </form> \n </div>\n <div *ngIf=\"searchFields && searchFields.length\" class=\"filter-toggle\">\n <div class=\"filter-toggle--start-border-mask\"></div>\n <button [id]=\"id + '-filter-toggle-button'\" type=\"button\" (click)=\"filterToggle()\">\n <span class=\"fa\" [ngClass]=\"{'fa-chevron-left': !collapsed, 'fa-chevron-right': collapsed}\"\n aria-hidden=\"true\"></span>\n </button>\n <div class=\"filter-toggle--end-border-mask\"></div>\n </div>\n <div class=\"content\" [ngClass]=\"{'empty-content': !searchTotalRecords && !loading}\">\n <s-empty-state\n [id]=\"id + '-empty-state'\"\n *ngIf=\"!searchTotalRecords && !loading\"\n [title]=\"searchEmptyTitle\"\n [description]=\"searchEmptyDescription\"\n iconClass=\"fa fa-search\"\n ></s-empty-state>\n\n <p-table\n [dataKey]=\"dataKey\"\n [value]=\"getGridData()\"\n [columns]=\"searchGridFields\"\n [lazy]=\"true\"\n [scrollable]=\"true\"\n [paginator]=\"true\"\n sortMode=\"multiple\"\n [totalRecords]=\"searchTotalRecords\"\n [rows]=\"10\"\n [selection]=\"selected\"\n (onLazyLoad)=\"lazyLoadGrid($event)\"\n *sLoadingState=\"loading\"\n [multiSortMeta]=\"multiSortMeta\"\n [attr.data-hidden]=\"!searchTotalRecords && !loading\"\n [selectionMode]=\"multiple ? 'multiple' : 'single'\"\n (selectionChange)=\"onSelectionChange($event)\"\n >\n <ng-template pTemplate=\"colgroup\" let-columns>\n <colgroup>\n <col *ngIf=\"multiple\" style=\"width: 50px\" />\n <col *ngFor=\"let col of columns\" [style.width]=\"col.width\" />\n </colgroup>\n </ng-template>\n <ng-template pTemplate=\"header\" let-columns>\n <tr>\n <th *ngIf=\"multiple\" style=\"width: 50px\">\n <s-table-header-checkbox [useAllObject]=\"lookupRowProps ? false : true\" [rowProps]=\"lookupRowProps\"></s-table-header-checkbox>\n </th>\n <th\n [style.width]=\"col.width\"\n *ngFor=\"let col of columns\"\n [pSortableColumn]=\"col.name\"\n [pSortableColumnDisabled]=\"sortableColumnsDisabled?.includes(col.name)\"\n >\n <div class=\"senior-header\">\n <span class=\"senior-header-title\">{{ col.label }}</span>\n <p-sortIcon [field]=\"col.name\" *ngIf=\"!sortableColumnsDisabled?.includes(col.name)\"></p-sortIcon>\n </div>\n </th>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"body\" let-rowData let-columns let-rowIndex=\"rowIndex\">\n <tr\n sNavigation\n [pSelectableRow]=\"rowData\"\n [pSelectableRowIndex]=\"rowIndex\"\n sDoubleClick (onDoubleClick)=\"onTableRowDoubleClick(rowData)\"\n >\n <td *ngIf=\"multiple\" style=\"width: 50px\" tabindex=\"0\">\n <p-tableCheckbox [value]=\"rowData\" [pSelectableRow]=\"rowData\"></p-tableCheckbox>\n </td>\n <td\n [style.width]=\"col['width']\"\n *ngFor=\"let col of searchGridFields\"\n [ngSwitch]=\"col.type\"\n tabindex=\"0\"\n >\n <ng-container *ngSwitchCase=\"'Boolean'\">\n <ng-container *ngIf=\"isBooleanValue(rowData, col.name); else emptyTemplate\">\n <span>{{ getBooleanLabel(rowData, col.name, col.optionsLabel) }}</span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Date'\">\n <ng-container *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\">\n <span>{{ getFieldValue(rowData, col.name) | localizedDate: col.calendarLocaleOptions?.dateFormat || \"L\" | async }}</span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'DateTime'\">\n <ng-container *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\">\n <span>{{ getFieldValue(rowData, col.name) | localizedDate | async }}</span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Time'\">\n <ng-container *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\">\n <span>{{ getFieldValue(rowData, col.name) | localizedTime: col.calendarLocaleOptions?.dateFormat || \"LTS\" | async }}</span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Double'\">\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span> {{ getFieldValue(rowData, col.name) | localizedNumber: getScale(col.scale) | async }} </span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Money'\">\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span> {{ getFieldValue(rowData, col.name) | localizedCurrency | async }} </span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Number'\">\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span> {{ getFieldValue(rowData, col.name) | localizedBignumber: getNumberMaskConfig(col) | async }} </span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Enum'\">\n <ng-container\n *ngIf=\"getLabelForValue(getFieldValue(rowData, col.name), col.options); else emptyTemplate\"\n >\n <span> {{ getLabelForValue(getFieldValue(rowData, col.name), col.options) }} </span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngSwitchDefault>\n <ng-container *ngIf=\"col.mask && col.mask()\">\n <ng-container *ngIf=\"(isNumber(rowData, col.name) || getFieldValue(rowData, col.name))\">\n <span>{{ getFieldValue(rowData, col.name) | sMaskFormatter: col.mask() }}</span>\n </ng-container>\n </ng-container>\n <ng-container *ngIf=\"!(col.mask && col.mask())\">\n <ng-container *ngIf=\"(isNumber(rowData, col.name) || getFieldValue(rowData, col.name)); else emptyTemplate\">\n <span>{{ getFieldValue(rowData, col.name) }}</span>\n </ng-container>\n </ng-container>\n </ng-container>\n </td>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"paginatorright\">\n <span [attr.data-hidden]=\"loading\">\n {{\n searchTotalRecordsLabel ||\n searchTotalRecords?.toString() + (searchTotalRecords === 1 ? recordLabel : recordsLabel)\n }}\n </span>\n </ng-template>\n </p-table>\n </div>\n </div>\n\n <p-footer>\n <s-button\n [id]=\"id + '-select-button'\"\n type=\"button\"\n [label]=\"selectLabel\"\n (onClick)=\"select()\"\n pTooltip=\"(ALT + SHIFT + S)\"\n showDelay=\"500\"\n [disabled]=\"!selected?.length\"\n ></s-button>\n <s-button\n [id]=\"id + '-cancel-button'\"\n type=\"button\"\n priority=\"link\"\n [label]=\"cancelLabel\"\n (onClick)=\"hideDialog()\"\n pTooltip=\"(ALT + SHIFT + C)\"\n showDelay=\"500\"\n ></s-button>\n </p-footer>\n</p-dialog>\n\n<ng-template #emptyTemplate>\n <span [ngClass]=\"'sds-empty-value'\">{{ emptyFieldLabel }}</span>\n</ng-template>\n",
2141
2206
  providers: [
2142
2207
  {
2143
2208
  provide: NG_VALUE_ACCESSOR,
@@ -2171,6 +2236,15 @@ LookupComponent = LookupComponent_1 = __decorate([
2171
2236
  })
2172
2237
  ], LookupComponent);
2173
2238
 
2239
+ class BaseFieldComponent {
2240
+ isFunction(value) {
2241
+ return value instanceof Function;
2242
+ }
2243
+ trigger(callback) {
2244
+ return callback();
2245
+ }
2246
+ }
2247
+
2174
2248
  var DynamicType;
2175
2249
  (function (DynamicType) {
2176
2250
  DynamicType["Autocomplete"] = "Autocomplete";
@@ -2351,13 +2425,47 @@ EmptyStateComponent = EmptyStateComponent_1 = __decorate([
2351
2425
  })
2352
2426
  ], EmptyStateComponent);
2353
2427
 
2428
+ let EmptyStateGoBackComponent = class EmptyStateGoBackComponent {
2429
+ constructor(cookieService) {
2430
+ this.cookieService = cookieService;
2431
+ this.iconClass = "fa fa-exclamation-triangle";
2432
+ }
2433
+ goBack() {
2434
+ const portalUrl = this.cookieService.get("com.senior.portal.url");
2435
+ window.open(portalUrl, "_top");
2436
+ }
2437
+ };
2438
+ EmptyStateGoBackComponent.nextId = 0;
2439
+ EmptyStateGoBackComponent.ctorParameters = () => [
2440
+ { type: CookieService }
2441
+ ];
2442
+ __decorate([
2443
+ Input()
2444
+ ], EmptyStateGoBackComponent.prototype, "iconClass", void 0);
2445
+ __decorate([
2446
+ Input()
2447
+ ], EmptyStateGoBackComponent.prototype, "title", void 0);
2448
+ __decorate([
2449
+ Input()
2450
+ ], EmptyStateGoBackComponent.prototype, "description", void 0);
2451
+ __decorate([
2452
+ Input()
2453
+ ], EmptyStateGoBackComponent.prototype, "primaryActionLabel", void 0);
2454
+ EmptyStateGoBackComponent = __decorate([
2455
+ Component({
2456
+ selector: `s-empty-state-go-back`,
2457
+ template: "<s-empty-state \n [iconClass]=\"iconClass\" \n [title]=\"title\" \n [description]=\"description\" \n (primaryAction)=\"goBack()\"\n [primaryActionLabel]=\"primaryActionLabel\">\n</s-empty-state>"
2458
+ })
2459
+ ], EmptyStateGoBackComponent);
2460
+
2354
2461
  let EmptyStateModule = class EmptyStateModule {
2355
2462
  };
2356
2463
  EmptyStateModule = __decorate([
2357
2464
  NgModule({
2358
2465
  imports: [CommonModule, ButtonModule],
2359
- declarations: [EmptyStateComponent],
2360
- exports: [EmptyStateComponent],
2466
+ providers: [CookieService],
2467
+ declarations: [EmptyStateComponent, EmptyStateGoBackComponent],
2468
+ exports: [EmptyStateComponent, EmptyStateGoBackComponent],
2361
2469
  })
2362
2470
  ], EmptyStateModule);
2363
2471
 
@@ -4045,15 +4153,6 @@ ChipsFieldComponent = __decorate([
4045
4153
  })
4046
4154
  ], ChipsFieldComponent);
4047
4155
 
4048
- class BaseFieldComponent {
4049
- isFunction(value) {
4050
- return value instanceof Function;
4051
- }
4052
- trigger(callback) {
4053
- return callback();
4054
- }
4055
- }
4056
-
4057
4156
  /**
4058
4157
  * @deprecated Should use bignumber instead
4059
4158
  */
@@ -4560,6 +4659,8 @@ class DynamicField extends DynamicForm {
4560
4659
  return TextAreaFieldComponent;
4561
4660
  case FieldType.Blob:
4562
4661
  return FileUploadComponent$1;
4662
+ case FieldType.Custom:
4663
+ return this.field.CustomFieldComponentClass;
4563
4664
  default:
4564
4665
  throw new Error(`Trying to use an unsupported type (${this.field.type}).`);
4565
4666
  }
@@ -4851,7 +4952,7 @@ DynamicFormModule = __decorate([
4851
4952
  SectionComponent,
4852
4953
  SelectFieldComponent,
4853
4954
  TextAreaFieldComponent,
4854
- TextFieldComponent,
4955
+ TextFieldComponent
4855
4956
  ],
4856
4957
  exports: [DynamicFormComponent, LookupComponent],
4857
4958
  entryComponents: [
@@ -4870,7 +4971,7 @@ DynamicFormModule = __decorate([
4870
4971
  SectionComponent,
4871
4972
  SelectFieldComponent,
4872
4973
  TextAreaFieldComponent,
4873
- TextFieldComponent,
4974
+ TextFieldComponent
4874
4975
  ],
4875
4976
  providers: [HotkeysService]
4876
4977
  })
@@ -8280,5 +8381,5 @@ CodeEditorModule = __decorate([
8280
8381
  * Generated bundle index. Do not edit.
8281
8382
  */
8282
8383
 
8283
- export { AngularComponentsModule, AutocompleteField, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FormField, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, ProductHeaderComponent, ProductHeaderModule, RadioButtonField, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TileComponent, TileModule, TokenListComponent, TokenListModule, ValidateErrors, LocalizedCurrencyImpurePipe as ɵa, LocalizedBignumberPipe as ɵb, DecimalField as ɵba, StructureModule as ɵbb, HeaderComponent as ɵbc, FooterComponent as ɵbd, NumberLocaleOptions as ɵbe, ThumbnailService as ɵbf, InfiniteScrollModule as ɵbg, InfiniteScrollDirective as ɵbh, CustomTranslationsModule as ɵbi, CodeEditorComponent as ɵbj, CoreFacade as ɵbk, CodeMirror6Core as ɵbl, LocalizedBignumberImpurePipe as ɵc, TableColumnsComponent as ɵd, TablePagingComponent as ɵe, InfoSignComponent as ɵf, AutocompleteFieldComponent as ɵg, BooleanFieldComponent as ɵh, CalendarFieldComponent as ɵi, ChipsFieldComponent as ɵj, CurrencyFieldComponent as ɵk, BaseFieldComponent as ɵl, DynamicFieldComponent as ɵm, DynamicFormDirective as ɵn, FieldsetComponent as ɵo, FileUploadComponent$1 as ɵp, LookupFieldComponent as ɵq, NumberFieldComponent as ɵr, BignumberFieldComponent as ɵs, RadioButtonComponent as ɵt, RowComponent as ɵu, SectionComponent as ɵv, SelectFieldComponent as ɵw, TextAreaFieldComponent as ɵx, TextFieldComponent as ɵy };
8384
+ export { AngularComponentsModule, AutocompleteField, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FormField, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, ProductHeaderComponent, ProductHeaderModule, RadioButtonField, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TileComponent, TileModule, TokenListComponent, TokenListModule, ValidateErrors, LocalizedCurrencyImpurePipe as ɵa, LocalizedBignumberPipe as ɵb, DecimalField as ɵba, StructureModule as ɵbb, HeaderComponent as ɵbc, FooterComponent as ɵbd, NumberLocaleOptions as ɵbe, ThumbnailService as ɵbf, InfiniteScrollModule as ɵbg, InfiniteScrollDirective as ɵbh, CustomTranslationsModule as ɵbi, CodeEditorComponent as ɵbj, CoreFacade as ɵbk, CodeMirror6Core as ɵbl, LocalizedBignumberImpurePipe as ɵc, EmptyStateGoBackComponent as ɵd, TableColumnsComponent as ɵe, TablePagingComponent as ɵf, InfoSignComponent as ɵg, AutocompleteFieldComponent as ɵh, BooleanFieldComponent as ɵi, CalendarFieldComponent as ɵj, ChipsFieldComponent as ɵk, CurrencyFieldComponent as ɵl, DynamicFieldComponent as ɵm, DynamicFormDirective as ɵn, FieldsetComponent as ɵo, FileUploadComponent$1 as ɵp, LookupFieldComponent as ɵq, NumberFieldComponent as ɵr, BignumberFieldComponent as ɵs, RadioButtonComponent as ɵt, RowComponent as ɵu, SectionComponent as ɵv, SelectFieldComponent as ɵw, TextAreaFieldComponent as ɵx, TextFieldComponent as ɵy };
8284
8385
  //# sourceMappingURL=seniorsistemas-angular-components.js.map