@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.
- package/bundles/seniorsistemas-angular-components.umd.js +138 -35
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/components/dynamic-form/components/lookup/lookup.component.d.ts +4 -0
- package/components/dynamic-form/configurations/field-type.d.ts +2 -1
- package/components/dynamic-form/configurations/form-field.d.ts +2 -0
- package/components/dynamic-form/index.d.ts +1 -0
- package/components/empty-state/go-back/go-back.component.d.ts +11 -0
- package/components/locale/options/index.d.ts +9 -0
- package/esm2015/components/dynamic-form/components/lookup/lookup.component.js +59 -6
- package/esm2015/components/dynamic-form/configurations/field-type.js +2 -1
- package/esm2015/components/dynamic-form/configurations/fields/bignumber-field.js +3 -3
- package/esm2015/components/dynamic-form/configurations/fields/calendar-field.js +3 -3
- package/esm2015/components/dynamic-form/configurations/fields/currency-field.js +3 -3
- package/esm2015/components/dynamic-form/configurations/fields/decimal-field.js +3 -3
- package/esm2015/components/dynamic-form/configurations/fields/number-field.js +3 -3
- package/esm2015/components/dynamic-form/configurations/form-field.js +5 -1
- package/esm2015/components/dynamic-form/dynamic-form.js +3 -1
- package/esm2015/components/dynamic-form/dynamic-form.module.js +3 -3
- package/esm2015/components/dynamic-form/index.js +2 -1
- package/esm2015/components/empty-state/empty-state.module.js +6 -3
- package/esm2015/components/empty-state/go-back/go-back.component.js +37 -0
- package/esm2015/components/locale/options/index.js +10 -1
- package/esm2015/seniorsistemas-angular-components.js +10 -10
- package/esm5/components/dynamic-form/components/lookup/lookup.component.js +59 -6
- package/esm5/components/dynamic-form/configurations/field-type.js +2 -1
- package/esm5/components/dynamic-form/configurations/fields/bignumber-field.js +3 -3
- package/esm5/components/dynamic-form/configurations/fields/calendar-field.js +3 -3
- package/esm5/components/dynamic-form/configurations/fields/currency-field.js +3 -3
- package/esm5/components/dynamic-form/configurations/fields/decimal-field.js +3 -3
- package/esm5/components/dynamic-form/configurations/fields/number-field.js +3 -3
- package/esm5/components/dynamic-form/configurations/form-field.js +5 -1
- package/esm5/components/dynamic-form/dynamic-form.js +3 -1
- package/esm5/components/dynamic-form/dynamic-form.module.js +3 -3
- package/esm5/components/dynamic-form/index.js +2 -1
- package/esm5/components/empty-state/empty-state.module.js +6 -3
- package/esm5/components/empty-state/go-back/go-back.component.js +38 -0
- package/esm5/components/locale/options/index.js +10 -1
- package/esm5/seniorsistemas-angular-components.js +10 -10
- package/fesm2015/seniorsistemas-angular-components.js +126 -25
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +130 -28
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.d.ts +9 -9
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __spread, __assign, __decorate, __extends, __values, __param, __awaiter, __generator, __read } from 'tslib';
|
|
1
|
+
import { __spread, __assign, __decorate, __extends, __rest, __values, __param, __awaiter, __generator, __read } 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';
|
|
@@ -1022,6 +1022,7 @@ var FieldType;
|
|
|
1022
1022
|
FieldType["Text"] = "Text";
|
|
1023
1023
|
FieldType["Time"] = "Time";
|
|
1024
1024
|
FieldType["Number"] = "Number";
|
|
1025
|
+
FieldType["Custom"] = "Custom";
|
|
1025
1026
|
})(FieldType || (FieldType = {}));
|
|
1026
1027
|
|
|
1027
1028
|
var FieldSize = /** @class */ (function () {
|
|
@@ -1122,8 +1123,17 @@ var LocaleOptions = /** @class */ (function () {
|
|
|
1122
1123
|
}
|
|
1123
1124
|
return LocaleOptions;
|
|
1124
1125
|
}());
|
|
1126
|
+
/**
|
|
1127
|
+
* @deprecated
|
|
1128
|
+
*/
|
|
1125
1129
|
var DEFAULT_CALENDAR_LOCALE_OPTIONS = new CalendarLocaleOptions();
|
|
1130
|
+
/**
|
|
1131
|
+
* @deprecated
|
|
1132
|
+
*/
|
|
1126
1133
|
var DEFAULT_NUMBER_LOCALE_OPTIONS = new NumberLocaleOptions();
|
|
1134
|
+
/**
|
|
1135
|
+
* @deprecated
|
|
1136
|
+
*/
|
|
1127
1137
|
var DEFAULT_LOCALE_OPTIONS = new LocaleOptions();
|
|
1128
1138
|
|
|
1129
1139
|
var moment = moment_; // @HACK Necessary because of https://github.com/rollup/rollup/issues/670
|
|
@@ -1457,7 +1467,7 @@ var BignumberField = /** @class */ (function (_super) {
|
|
|
1457
1467
|
function BignumberField(config) {
|
|
1458
1468
|
var _a;
|
|
1459
1469
|
var _this = _super.call(this, config) || this;
|
|
1460
|
-
_this.numberLocaleOptions = config.numberLocaleOptions ||
|
|
1470
|
+
_this.numberLocaleOptions = config.numberLocaleOptions || new NumberLocaleOptions();
|
|
1461
1471
|
_this.browserAutocomplete = config.browserAutocomplete;
|
|
1462
1472
|
_this.precision = config.precision;
|
|
1463
1473
|
_this.scale = (_a = config.scale) !== null && _a !== void 0 ? _a : 2;
|
|
@@ -1525,7 +1535,7 @@ var CalendarField = /** @class */ (function (_super) {
|
|
|
1525
1535
|
_this.maxDate = config.maxDate;
|
|
1526
1536
|
_this.appendTo = config.appendTo;
|
|
1527
1537
|
_this.showOnFocus = typeof config.showOnFocus === "boolean" ? config.showOnFocus : true;
|
|
1528
|
-
_this.calendarLocaleOptions = config.calendarLocaleOptions ||
|
|
1538
|
+
_this.calendarLocaleOptions = config.calendarLocaleOptions || new CalendarLocaleOptions();
|
|
1529
1539
|
_this.onBlur = config.onBlur;
|
|
1530
1540
|
_this.onFocus = config.onFocus;
|
|
1531
1541
|
_this.onSelect = config.onSelect;
|
|
@@ -1704,7 +1714,7 @@ var NumberField = /** @class */ (function (_super) {
|
|
|
1704
1714
|
__extends(NumberField, _super);
|
|
1705
1715
|
function NumberField(config) {
|
|
1706
1716
|
var _this = _super.call(this, config) || this;
|
|
1707
|
-
_this.numberLocaleOptions = config.numberLocaleOptions ||
|
|
1717
|
+
_this.numberLocaleOptions = config.numberLocaleOptions || new NumberLocaleOptions();
|
|
1708
1718
|
_this.browserAutocomplete = config.browserAutocomplete;
|
|
1709
1719
|
_this.precision = config.precision;
|
|
1710
1720
|
_this.alignTo = config.alignTo || NumberAlignmentOption.LEFT;
|
|
@@ -1727,7 +1737,7 @@ var DecimalField = /** @class */ (function (_super) {
|
|
|
1727
1737
|
__extends(DecimalField, _super);
|
|
1728
1738
|
function DecimalField(config) {
|
|
1729
1739
|
var _this = _super.call(this, config) || this;
|
|
1730
|
-
_this.numberLocaleOptions = config.numberLocaleOptions ||
|
|
1740
|
+
_this.numberLocaleOptions = config.numberLocaleOptions || new NumberLocaleOptions();
|
|
1731
1741
|
_this.alignTo = config.alignTo || NumberAlignmentOption.RIGHT;
|
|
1732
1742
|
_this.scale = config.scale || config.scale === 0 ? config.scale : 2;
|
|
1733
1743
|
return _this;
|
|
@@ -1742,7 +1752,7 @@ var CurrencyField = /** @class */ (function (_super) {
|
|
|
1742
1752
|
__extends(CurrencyField, _super);
|
|
1743
1753
|
function CurrencyField(config) {
|
|
1744
1754
|
var _this = _super.call(this, config) || this;
|
|
1745
|
-
_this.numberLocaleOptions = config.numberLocaleOptions ||
|
|
1755
|
+
_this.numberLocaleOptions = config.numberLocaleOptions || new NumberLocaleOptions();
|
|
1746
1756
|
return _this;
|
|
1747
1757
|
}
|
|
1748
1758
|
return CurrencyField;
|
|
@@ -1912,6 +1922,9 @@ var FormField = /** @class */ (function () {
|
|
|
1912
1922
|
return new ChipsField(config);
|
|
1913
1923
|
case FieldType.Blob:
|
|
1914
1924
|
return new BlobField(config);
|
|
1925
|
+
case FieldType.Custom:
|
|
1926
|
+
var CustomFieldClass = config.CustomFieldClass, otherConfigs = __rest(config, ["CustomFieldClass"]);
|
|
1927
|
+
return new CustomFieldClass(otherConfigs);
|
|
1915
1928
|
}
|
|
1916
1929
|
}
|
|
1917
1930
|
return FormField;
|
|
@@ -1960,9 +1973,24 @@ var LookupComponent = /** @class */ (function () {
|
|
|
1960
1973
|
LookupComponent_1 = LookupComponent;
|
|
1961
1974
|
LookupComponent.prototype.ngOnInit = function () {
|
|
1962
1975
|
var _this = this;
|
|
1976
|
+
if (!this.searchGridFields) {
|
|
1977
|
+
this.searchGridFields = this.searchFields.map(function (item) { return new FormField(__assign({}, item)); });
|
|
1978
|
+
}
|
|
1963
1979
|
this.searchFields = this.searchFields.map(function (value) { return new FormField(__assign(__assign({}, value), { size: { sm: 12, md: 12, lg: 12, xl: 12 } })); });
|
|
1964
|
-
this.searchGridFields =
|
|
1980
|
+
this.searchGridFields = this.searchGridFields.map(function (gridField) {
|
|
1965
1981
|
gridField["width"] = _this.getColWidth(gridField.label);
|
|
1982
|
+
var calendarOptions = gridField.calendarLocaleOptions;
|
|
1983
|
+
if (calendarOptions === null || calendarOptions === void 0 ? void 0 : calendarOptions.dateFormat) {
|
|
1984
|
+
switch (gridField.type) {
|
|
1985
|
+
case FieldType.Date:
|
|
1986
|
+
calendarOptions.dateFormat = _this._convertToMomentDateFormat(calendarOptions.dateFormat);
|
|
1987
|
+
break;
|
|
1988
|
+
case FieldType.Time:
|
|
1989
|
+
calendarOptions.dateFormat = _this._convertToMomentHourFormat(calendarOptions.hourFormat, calendarOptions.dateFormat);
|
|
1990
|
+
break;
|
|
1991
|
+
}
|
|
1992
|
+
calendarOptions.dateFormat = calendarOptions.dateFormat;
|
|
1993
|
+
}
|
|
1966
1994
|
return gridField;
|
|
1967
1995
|
});
|
|
1968
1996
|
var formGroup = this.searchFields.reduce(function (result, field) {
|
|
@@ -1988,6 +2016,36 @@ var LookupComponent = /** @class */ (function () {
|
|
|
1988
2016
|
_this.onChange(newValue);
|
|
1989
2017
|
});
|
|
1990
2018
|
};
|
|
2019
|
+
LookupComponent.prototype._convertToMomentHourFormat = function (hourFormat, format) {
|
|
2020
|
+
if (format === "dd/mm/yy") { // valor padrão para o format.
|
|
2021
|
+
return "LTS";
|
|
2022
|
+
}
|
|
2023
|
+
if (hourFormat === "12") {
|
|
2024
|
+
return format
|
|
2025
|
+
.replace(/\bH\b/, "h") // hour (12 hour time) (no leading zero)
|
|
2026
|
+
.replace(/\bHH\b/, "hh"); // hour (12 hour time)
|
|
2027
|
+
}
|
|
2028
|
+
if (hourFormat === "24") {
|
|
2029
|
+
return format
|
|
2030
|
+
.replace(/\bh\b/, "H") // hour (24 hour time) (no leading zero)
|
|
2031
|
+
.replace(/\bhh\b/, "HH"); // hour (24 hour time)
|
|
2032
|
+
}
|
|
2033
|
+
return format;
|
|
2034
|
+
};
|
|
2035
|
+
LookupComponent.prototype._convertToMomentDateFormat = function (format) {
|
|
2036
|
+
// A ordem dos replaces é importante.
|
|
2037
|
+
return format
|
|
2038
|
+
.replace(/\bd\b/, "D") // day of month (no leading zero)
|
|
2039
|
+
.replace(/\bdd\b/, "DD") // day of month
|
|
2040
|
+
.replace(/\bo\b/, "DDD") // day of the year (no leading zero)
|
|
2041
|
+
.replace(/\boo\b/, "DDDD") // day of the year
|
|
2042
|
+
.replace(/\bM\b/, "MMM") // month name short
|
|
2043
|
+
.replace(/\bMM\b/, "MMMM") // month name long
|
|
2044
|
+
.replace(/\bm\b/, "M") // month of year (no leading)
|
|
2045
|
+
.replace(/\bmm\b/, "MM") // month of year
|
|
2046
|
+
.replace(/\by\b/, "YY") // year (two digits)
|
|
2047
|
+
.replace(/\byy\b/, "YYYY"); // year (four digits)
|
|
2048
|
+
};
|
|
1991
2049
|
LookupComponent.prototype.ngAfterViewInit = function () {
|
|
1992
2050
|
this.autocomplete.onOverlayAnimationDone = function (event) { };
|
|
1993
2051
|
};
|
|
@@ -2005,12 +2063,16 @@ var LookupComponent = /** @class */ (function () {
|
|
|
2005
2063
|
LookupComponent.prototype.getLookupSuggestions = function () {
|
|
2006
2064
|
return this.lookupSuggestions;
|
|
2007
2065
|
};
|
|
2008
|
-
LookupComponent.prototype.
|
|
2009
|
-
// Ao definir uma ordenação na tabela do lookup esse método é chamado 2 vezes https://github.com/primefaces/primeng/issues/5480
|
|
2066
|
+
LookupComponent.prototype.makeSearchRequestParams = function (event) {
|
|
2010
2067
|
var filters = this.formGroupDialog.getRawValue();
|
|
2011
2068
|
var params = __assign(__assign({}, event), { filterData: filters });
|
|
2012
2069
|
var multiSortMeta = event.multiSortMeta;
|
|
2013
2070
|
this.multiSortMeta = multiSortMeta || this.multiSortMeta;
|
|
2071
|
+
return params;
|
|
2072
|
+
};
|
|
2073
|
+
LookupComponent.prototype.lazyLoadGrid = function (event) {
|
|
2074
|
+
// Ao definir uma ordenação na tabela do lookup esse método é chamado 2 vezes https://github.com/primefaces/primeng/issues/5480
|
|
2075
|
+
var params = this.makeSearchRequestParams(event);
|
|
2014
2076
|
this.onSearchRequest.next(params);
|
|
2015
2077
|
};
|
|
2016
2078
|
LookupComponent.prototype.lazyLoadLookup = function (event) {
|
|
@@ -2041,12 +2103,15 @@ var LookupComponent = /** @class */ (function () {
|
|
|
2041
2103
|
inputEL.nativeElement.focus();
|
|
2042
2104
|
};
|
|
2043
2105
|
LookupComponent.prototype.search = function () {
|
|
2044
|
-
this.
|
|
2106
|
+
this.resetTable();
|
|
2045
2107
|
this.collapsed = true;
|
|
2046
2108
|
this.dialog.moveOnTop();
|
|
2047
2109
|
};
|
|
2048
2110
|
LookupComponent.prototype.clear = function () {
|
|
2049
2111
|
this.formGroupDialog.reset(this.originalFormValues);
|
|
2112
|
+
this.resetTable();
|
|
2113
|
+
};
|
|
2114
|
+
LookupComponent.prototype.resetTable = function () {
|
|
2050
2115
|
this.table.reset();
|
|
2051
2116
|
};
|
|
2052
2117
|
LookupComponent.prototype.select = function () {
|
|
@@ -2299,7 +2364,7 @@ var LookupComponent = /** @class */ (function () {
|
|
|
2299
2364
|
LookupComponent = LookupComponent_1 = __decorate([
|
|
2300
2365
|
Component({
|
|
2301
2366
|
selector: "s-lookup",
|
|
2302
|
-
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",
|
|
2367
|
+
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",
|
|
2303
2368
|
providers: [
|
|
2304
2369
|
{
|
|
2305
2370
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -2335,6 +2400,18 @@ var LookupComponent = /** @class */ (function () {
|
|
|
2335
2400
|
return LookupComponent;
|
|
2336
2401
|
}());
|
|
2337
2402
|
|
|
2403
|
+
var BaseFieldComponent = /** @class */ (function () {
|
|
2404
|
+
function BaseFieldComponent() {
|
|
2405
|
+
}
|
|
2406
|
+
BaseFieldComponent.prototype.isFunction = function (value) {
|
|
2407
|
+
return value instanceof Function;
|
|
2408
|
+
};
|
|
2409
|
+
BaseFieldComponent.prototype.trigger = function (callback) {
|
|
2410
|
+
return callback();
|
|
2411
|
+
};
|
|
2412
|
+
return BaseFieldComponent;
|
|
2413
|
+
}());
|
|
2414
|
+
|
|
2338
2415
|
var DynamicType;
|
|
2339
2416
|
(function (DynamicType) {
|
|
2340
2417
|
DynamicType["Autocomplete"] = "Autocomplete";
|
|
@@ -2528,14 +2605,49 @@ var EmptyStateComponent = /** @class */ (function () {
|
|
|
2528
2605
|
return EmptyStateComponent;
|
|
2529
2606
|
}());
|
|
2530
2607
|
|
|
2608
|
+
var EmptyStateGoBackComponent = /** @class */ (function () {
|
|
2609
|
+
function EmptyStateGoBackComponent(cookieService) {
|
|
2610
|
+
this.cookieService = cookieService;
|
|
2611
|
+
this.iconClass = "fa fa-exclamation-triangle";
|
|
2612
|
+
}
|
|
2613
|
+
EmptyStateGoBackComponent.prototype.goBack = function () {
|
|
2614
|
+
var portalUrl = this.cookieService.get("com.senior.portal.url");
|
|
2615
|
+
window.open(portalUrl, "_top");
|
|
2616
|
+
};
|
|
2617
|
+
EmptyStateGoBackComponent.nextId = 0;
|
|
2618
|
+
EmptyStateGoBackComponent.ctorParameters = function () { return [
|
|
2619
|
+
{ type: CookieService }
|
|
2620
|
+
]; };
|
|
2621
|
+
__decorate([
|
|
2622
|
+
Input()
|
|
2623
|
+
], EmptyStateGoBackComponent.prototype, "iconClass", void 0);
|
|
2624
|
+
__decorate([
|
|
2625
|
+
Input()
|
|
2626
|
+
], EmptyStateGoBackComponent.prototype, "title", void 0);
|
|
2627
|
+
__decorate([
|
|
2628
|
+
Input()
|
|
2629
|
+
], EmptyStateGoBackComponent.prototype, "description", void 0);
|
|
2630
|
+
__decorate([
|
|
2631
|
+
Input()
|
|
2632
|
+
], EmptyStateGoBackComponent.prototype, "primaryActionLabel", void 0);
|
|
2633
|
+
EmptyStateGoBackComponent = __decorate([
|
|
2634
|
+
Component({
|
|
2635
|
+
selector: "s-empty-state-go-back",
|
|
2636
|
+
template: "<s-empty-state \n [iconClass]=\"iconClass\" \n [title]=\"title\" \n [description]=\"description\" \n (primaryAction)=\"goBack()\"\n [primaryActionLabel]=\"primaryActionLabel\">\n</s-empty-state>"
|
|
2637
|
+
})
|
|
2638
|
+
], EmptyStateGoBackComponent);
|
|
2639
|
+
return EmptyStateGoBackComponent;
|
|
2640
|
+
}());
|
|
2641
|
+
|
|
2531
2642
|
var EmptyStateModule = /** @class */ (function () {
|
|
2532
2643
|
function EmptyStateModule() {
|
|
2533
2644
|
}
|
|
2534
2645
|
EmptyStateModule = __decorate([
|
|
2535
2646
|
NgModule({
|
|
2536
2647
|
imports: [CommonModule, ButtonModule],
|
|
2537
|
-
|
|
2538
|
-
|
|
2648
|
+
providers: [CookieService],
|
|
2649
|
+
declarations: [EmptyStateComponent, EmptyStateGoBackComponent],
|
|
2650
|
+
exports: [EmptyStateComponent, EmptyStateGoBackComponent],
|
|
2539
2651
|
})
|
|
2540
2652
|
], EmptyStateModule);
|
|
2541
2653
|
return EmptyStateModule;
|
|
@@ -4402,18 +4514,6 @@ var ChipsFieldComponent = /** @class */ (function () {
|
|
|
4402
4514
|
return ChipsFieldComponent;
|
|
4403
4515
|
}());
|
|
4404
4516
|
|
|
4405
|
-
var BaseFieldComponent = /** @class */ (function () {
|
|
4406
|
-
function BaseFieldComponent() {
|
|
4407
|
-
}
|
|
4408
|
-
BaseFieldComponent.prototype.isFunction = function (value) {
|
|
4409
|
-
return value instanceof Function;
|
|
4410
|
-
};
|
|
4411
|
-
BaseFieldComponent.prototype.trigger = function (callback) {
|
|
4412
|
-
return callback();
|
|
4413
|
-
};
|
|
4414
|
-
return BaseFieldComponent;
|
|
4415
|
-
}());
|
|
4416
|
-
|
|
4417
4517
|
/**
|
|
4418
4518
|
* @deprecated Should use bignumber instead
|
|
4419
4519
|
*/
|
|
@@ -4937,6 +5037,8 @@ var DynamicField = /** @class */ (function (_super) {
|
|
|
4937
5037
|
return TextAreaFieldComponent;
|
|
4938
5038
|
case FieldType.Blob:
|
|
4939
5039
|
return FileUploadComponent$1;
|
|
5040
|
+
case FieldType.Custom:
|
|
5041
|
+
return this.field.CustomFieldComponentClass;
|
|
4940
5042
|
default:
|
|
4941
5043
|
throw new Error("Trying to use an unsupported type (" + this.field.type + ").");
|
|
4942
5044
|
}
|
|
@@ -5250,7 +5352,7 @@ var DynamicFormModule = /** @class */ (function () {
|
|
|
5250
5352
|
SectionComponent,
|
|
5251
5353
|
SelectFieldComponent,
|
|
5252
5354
|
TextAreaFieldComponent,
|
|
5253
|
-
TextFieldComponent
|
|
5355
|
+
TextFieldComponent
|
|
5254
5356
|
],
|
|
5255
5357
|
exports: [DynamicFormComponent, LookupComponent],
|
|
5256
5358
|
entryComponents: [
|
|
@@ -5269,7 +5371,7 @@ var DynamicFormModule = /** @class */ (function () {
|
|
|
5269
5371
|
SectionComponent,
|
|
5270
5372
|
SelectFieldComponent,
|
|
5271
5373
|
TextAreaFieldComponent,
|
|
5272
|
-
TextFieldComponent
|
|
5374
|
+
TextFieldComponent
|
|
5273
5375
|
],
|
|
5274
5376
|
providers: [HotkeysService]
|
|
5275
5377
|
})
|
|
@@ -8915,5 +9017,5 @@ var CodeEditorModule = /** @class */ (function () {
|
|
|
8915
9017
|
* Generated bundle index. Do not edit.
|
|
8916
9018
|
*/
|
|
8917
9019
|
|
|
8918
|
-
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,
|
|
9020
|
+
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 };
|
|
8919
9021
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|