@seniorsistemas/angular-components 14.5.0 → 14.7.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 +140 -76
- 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 +3 -0
- package/components/locale/pipes/localized-bignumber-impure.pipe.d.ts +6 -0
- package/components/locale/pipes/localized-bignumber.pipe.d.ts +9 -0
- package/components/locale/pipes/localized-currency-impure.pipe.d.ts +3 -0
- package/components/locale/pipes/localized-currency.pipe.d.ts +3 -0
- package/components/locale/pipes/localized-number.pipe.d.ts +3 -0
- package/components/stats-card/stats-card.component.d.ts +2 -1
- package/components/table/table-column/table-columns.component.d.ts +1 -1
- package/esm2015/components/dynamic-form/components/lookup/lookup.component.js +13 -3
- package/esm2015/components/dynamic-form/configurations/fields/bignumber-field.js +3 -2
- package/esm2015/components/locale/locale.module.js +9 -1
- package/esm2015/components/locale/pipes/localized-bignumber-impure.pipe.js +16 -0
- package/esm2015/components/locale/pipes/localized-bignumber.pipe.js +38 -0
- package/esm2015/components/locale/pipes/localized-currency-impure.pipe.js +4 -1
- package/esm2015/components/locale/pipes/localized-currency.pipe.js +4 -1
- package/esm2015/components/locale/pipes/localized-number.pipe.js +4 -1
- package/esm2015/components/stats-card/stats-card.component.js +21 -19
- package/esm2015/components/table/table-column/table-columns.component.js +11 -20
- package/esm2015/seniorsistemas-angular-components.js +34 -32
- package/esm5/components/dynamic-form/components/lookup/lookup.component.js +13 -3
- package/esm5/components/dynamic-form/configurations/fields/bignumber-field.js +3 -2
- package/esm5/components/locale/locale.module.js +9 -1
- package/esm5/components/locale/pipes/localized-bignumber-impure.pipe.js +21 -0
- package/esm5/components/locale/pipes/localized-bignumber.pipe.js +39 -0
- package/esm5/components/locale/pipes/localized-currency-impure.pipe.js +4 -1
- package/esm5/components/locale/pipes/localized-currency.pipe.js +4 -1
- package/esm5/components/locale/pipes/localized-number.pipe.js +4 -1
- package/esm5/components/stats-card/stats-card.component.js +20 -19
- package/esm5/components/table/table-column/table-columns.component.js +11 -21
- package/esm5/seniorsistemas-angular-components.js +34 -32
- package/fesm2015/seniorsistemas-angular-components.js +100 -42
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +105 -43
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +2 -2
- package/seniorsistemas-angular-components.d.ts +33 -31
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -13,10 +13,11 @@ import { trigger, state, style, transition, animate, group, query, animateChild
|
|
|
13
13
|
import { FormsModule, ReactiveFormsModule, NG_VALUE_ACCESSOR, FormControl, FormGroup, NG_VALIDATORS, Validators, FormArray } from '@angular/forms';
|
|
14
14
|
import { HttpClient, HttpEventType, HttpClientModule } from '@angular/common/http';
|
|
15
15
|
import { Hotkey, HotkeysService, HotkeyModule } from 'angular2-hotkeys';
|
|
16
|
+
import BigNumber, { BigNumber as BigNumber$1 } from 'bignumber.js';
|
|
16
17
|
import { AutoComplete, AutoCompleteModule } from 'primeng/autocomplete';
|
|
17
18
|
import { Dialog, DialogModule } from 'primeng/dialog';
|
|
18
19
|
import { Table, TableService, RowToggler, TableModule as TableModule$1 } from 'primeng/table';
|
|
19
|
-
import { AlignmentOptions, CurrencyMaskDirective as CurrencyMaskDirective$1 } from '@seniorsistemas/ng2-currency-mask';
|
|
20
|
+
import { applyMask, AlignmentOptions, CurrencyMaskDirective as CurrencyMaskDirective$1 } from '@seniorsistemas/ng2-currency-mask';
|
|
20
21
|
import { user } from '@seniorsistemas/senior-platform-data';
|
|
21
22
|
import * as moment_ from 'moment';
|
|
22
23
|
import { CookieService } from 'ngx-cookie-service';
|
|
@@ -1110,12 +1111,57 @@ LocaleService = __decorate([
|
|
|
1110
1111
|
Injectable()
|
|
1111
1112
|
], LocaleService);
|
|
1112
1113
|
|
|
1114
|
+
let LocalizedBignumberPipe = class LocalizedBignumberPipe {
|
|
1115
|
+
constructor(localeService) {
|
|
1116
|
+
this.localeService = localeService;
|
|
1117
|
+
}
|
|
1118
|
+
transform(value, options) {
|
|
1119
|
+
return value !== undefined && value !== null ? this.applyMask(value, options) : of(value);
|
|
1120
|
+
}
|
|
1121
|
+
applyMask(value, options) {
|
|
1122
|
+
return this.localeService.get().pipe(map(localeConfig => {
|
|
1123
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
1124
|
+
const configs = {
|
|
1125
|
+
prefix: (_c = (_a = options.prefix) !== null && _a !== void 0 ? _a : (_b = localeConfig === null || localeConfig === void 0 ? void 0 : localeConfig.number) === null || _b === void 0 ? void 0 : _b.currencySymbol) !== null && _c !== void 0 ? _c : "R$",
|
|
1126
|
+
thousandsSeparator: (_f = (_d = options === null || options === void 0 ? void 0 : options.thousandsSeparator) !== null && _d !== void 0 ? _d : (_e = localeConfig === null || localeConfig === void 0 ? void 0 : localeConfig.number) === null || _e === void 0 ? void 0 : _e.thousandsSeparator) !== null && _f !== void 0 ? _f : ".",
|
|
1127
|
+
decimalSeparator: (_j = (_g = options === null || options === void 0 ? void 0 : options.decimalSeparator) !== null && _g !== void 0 ? _g : (_h = localeConfig === null || localeConfig === void 0 ? void 0 : localeConfig.number) === null || _h === void 0 ? void 0 : _h.decimalSeparator) !== null && _j !== void 0 ? _j : ",",
|
|
1128
|
+
scale: (_k = options === null || options === void 0 ? void 0 : options.scale) !== null && _k !== void 0 ? _k : 2
|
|
1129
|
+
};
|
|
1130
|
+
const isNumber = !(new BigNumber(value).isNaN());
|
|
1131
|
+
return applyMask(value, configs, isNumber);
|
|
1132
|
+
}));
|
|
1133
|
+
}
|
|
1134
|
+
};
|
|
1135
|
+
LocalizedBignumberPipe.ctorParameters = () => [
|
|
1136
|
+
{ type: LocaleService }
|
|
1137
|
+
];
|
|
1138
|
+
LocalizedBignumberPipe = __decorate([
|
|
1139
|
+
Pipe({
|
|
1140
|
+
name: "localizedBignumber",
|
|
1141
|
+
})
|
|
1142
|
+
], LocalizedBignumberPipe);
|
|
1143
|
+
|
|
1144
|
+
let LocalizedBignumberImpurePipe = class LocalizedBignumberImpurePipe extends LocalizedBignumberPipe {
|
|
1145
|
+
transform(value, options) {
|
|
1146
|
+
return super.transform(value, options);
|
|
1147
|
+
}
|
|
1148
|
+
};
|
|
1149
|
+
LocalizedBignumberImpurePipe = __decorate([
|
|
1150
|
+
Pipe({
|
|
1151
|
+
name: "localizedBignumberImpure",
|
|
1152
|
+
pure: false,
|
|
1153
|
+
})
|
|
1154
|
+
], LocalizedBignumberImpurePipe);
|
|
1155
|
+
|
|
1113
1156
|
class LocalizedCurrencyPipeOptions extends NumberLocaleOptions {
|
|
1114
1157
|
constructor(config = {}) {
|
|
1115
1158
|
super(config);
|
|
1116
1159
|
this.scale = 2;
|
|
1117
1160
|
}
|
|
1118
1161
|
}
|
|
1162
|
+
/**
|
|
1163
|
+
* @deprecated Should use localizedBignumberPipe instead
|
|
1164
|
+
*/
|
|
1119
1165
|
let LocalizedCurrencyPipe = class LocalizedCurrencyPipe {
|
|
1120
1166
|
constructor(localeService) {
|
|
1121
1167
|
this.localeService = localeService;
|
|
@@ -1153,6 +1199,9 @@ LocalizedCurrencyPipe = __decorate([
|
|
|
1153
1199
|
})
|
|
1154
1200
|
], LocalizedCurrencyPipe);
|
|
1155
1201
|
|
|
1202
|
+
/**
|
|
1203
|
+
* @deprecated Should use localizedBignumberPipe instead
|
|
1204
|
+
*/
|
|
1156
1205
|
let LocalizedCurrencyImpurePipe = class LocalizedCurrencyImpurePipe extends LocalizedCurrencyPipe {
|
|
1157
1206
|
transform(value, options = new LocalizedCurrencyPipeOptions()) {
|
|
1158
1207
|
return super.transform(value, options);
|
|
@@ -1192,6 +1241,9 @@ LocalizedDateImpurePipe = __decorate([
|
|
|
1192
1241
|
})
|
|
1193
1242
|
], LocalizedDateImpurePipe);
|
|
1194
1243
|
|
|
1244
|
+
/**
|
|
1245
|
+
* @deprecated Should use localizedBignumberPipe instead
|
|
1246
|
+
*/
|
|
1195
1247
|
let LocalizedNumberPipe = class LocalizedNumberPipe {
|
|
1196
1248
|
constructor(localeService) {
|
|
1197
1249
|
this.localeService = localeService;
|
|
@@ -1255,6 +1307,8 @@ let LocaleModule = LocaleModule_1 = class LocaleModule {
|
|
|
1255
1307
|
LocalizedCurrencyImpurePipe,
|
|
1256
1308
|
LocalizedDateImpurePipe,
|
|
1257
1309
|
LocalizedTimeImpurePipe,
|
|
1310
|
+
LocalizedBignumberPipe,
|
|
1311
|
+
LocalizedBignumberImpurePipe
|
|
1258
1312
|
],
|
|
1259
1313
|
};
|
|
1260
1314
|
}
|
|
@@ -1275,6 +1329,8 @@ LocaleModule = LocaleModule_1 = __decorate([
|
|
|
1275
1329
|
LocalizedCurrencyImpurePipe,
|
|
1276
1330
|
LocalizedDateImpurePipe,
|
|
1277
1331
|
LocalizedTimeImpurePipe,
|
|
1332
|
+
LocalizedBignumberPipe,
|
|
1333
|
+
LocalizedBignumberImpurePipe
|
|
1278
1334
|
],
|
|
1279
1335
|
declarations: [
|
|
1280
1336
|
LocalizedCurrencyPipe,
|
|
@@ -1284,17 +1340,20 @@ LocaleModule = LocaleModule_1 = __decorate([
|
|
|
1284
1340
|
LocalizedCurrencyImpurePipe,
|
|
1285
1341
|
LocalizedDateImpurePipe,
|
|
1286
1342
|
LocalizedTimeImpurePipe,
|
|
1343
|
+
LocalizedBignumberPipe,
|
|
1344
|
+
LocalizedBignumberImpurePipe
|
|
1287
1345
|
],
|
|
1288
1346
|
})
|
|
1289
1347
|
], LocaleModule);
|
|
1290
1348
|
|
|
1291
1349
|
class BignumberField extends Field {
|
|
1292
1350
|
constructor(config) {
|
|
1351
|
+
var _a;
|
|
1293
1352
|
super(config);
|
|
1294
1353
|
this.numberLocaleOptions = config.numberLocaleOptions || DEFAULT_NUMBER_LOCALE_OPTIONS;
|
|
1295
1354
|
this.browserAutocomplete = config.browserAutocomplete;
|
|
1296
1355
|
this.precision = config.precision;
|
|
1297
|
-
this.scale = config.scale
|
|
1356
|
+
this.scale = (_a = config.scale) !== null && _a !== void 0 ? _a : 2;
|
|
1298
1357
|
this.alignTo = this.scale ? AlignmentOptions.RIGHT : AlignmentOptions.LEFT;
|
|
1299
1358
|
this.mask = config.mask;
|
|
1300
1359
|
this.leftAddon = config.leftAddon;
|
|
@@ -1873,7 +1932,7 @@ let LookupComponent = LookupComponent_1 = class LookupComponent {
|
|
|
1873
1932
|
return this.emptyFieldLabel;
|
|
1874
1933
|
}
|
|
1875
1934
|
isNumber(obj, path) {
|
|
1876
|
-
return
|
|
1935
|
+
return !(new BigNumber(this.getFieldValue(obj, path)).isNaN());
|
|
1877
1936
|
}
|
|
1878
1937
|
setHotkeys() {
|
|
1879
1938
|
const clearHotkey = this.newHotkey("alt+shift+l", this.clear.bind(this));
|
|
@@ -1914,6 +1973,15 @@ let LookupComponent = LookupComponent_1 = class LookupComponent {
|
|
|
1914
1973
|
isFunction(value) {
|
|
1915
1974
|
return value instanceof Function;
|
|
1916
1975
|
}
|
|
1976
|
+
getNumberMaskConfig(col) {
|
|
1977
|
+
var _a, _b, _c;
|
|
1978
|
+
return {
|
|
1979
|
+
scale: this.getScale(col.scale),
|
|
1980
|
+
decimalSeparator: (_a = col.numberLocaleOptions) === null || _a === void 0 ? void 0 : _a.decimalSeparator,
|
|
1981
|
+
thousandsSeparator: (_b = col.numberLocaleOptions) === null || _b === void 0 ? void 0 : _b.thousandsSeparator,
|
|
1982
|
+
prefix: (_c = col.numberLocaleOptions) === null || _c === void 0 ? void 0 : _c.currencySymbol
|
|
1983
|
+
};
|
|
1984
|
+
}
|
|
1917
1985
|
};
|
|
1918
1986
|
LookupComponent.nextId = 0;
|
|
1919
1987
|
LookupComponent.ctorParameters = () => [
|
|
@@ -2048,7 +2116,7 @@ __decorate([
|
|
|
2048
2116
|
LookupComponent = LookupComponent_1 = __decorate([
|
|
2049
2117
|
Component({
|
|
2050
2118
|
selector: "s-lookup",
|
|
2051
|
-
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 </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 sNavigation [pSelectableRow]=\"rowData\" [pSelectableRowIndex]=\"rowIndex\">\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: \"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 | 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=\"'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",
|
|
2119
|
+
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 </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 sNavigation [pSelectableRow]=\"rowData\" [pSelectableRowIndex]=\"rowIndex\">\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: \"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 | 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",
|
|
2052
2120
|
providers: [
|
|
2053
2121
|
{
|
|
2054
2122
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -3386,7 +3454,7 @@ let TableColumnsComponent = class TableColumnsComponent {
|
|
|
3386
3454
|
return uninformed;
|
|
3387
3455
|
}
|
|
3388
3456
|
else {
|
|
3389
|
-
const numberConfigs = Object.assign(Object.assign({}, locale.number), { scale: column.scale ? this.getColumnScale(column.scale) : locale.number.scale });
|
|
3457
|
+
const numberConfigs = Object.assign(Object.assign({}, locale.number), { scale: column.scale ? this.getColumnScale(column.scale) : locale.number.scale, prefix: `${locale.number.currencySymbol} ` });
|
|
3390
3458
|
switch (column.type) {
|
|
3391
3459
|
case EnumColumnFieldType.ENUM:
|
|
3392
3460
|
if (column.badgeConfigs && column.badgeConfigs.length) {
|
|
@@ -3394,7 +3462,7 @@ let TableColumnsComponent = class TableColumnsComponent {
|
|
|
3394
3462
|
}
|
|
3395
3463
|
return this.translate.instant(column.enumPrefix + attributeValue.toString().toLowerCase());
|
|
3396
3464
|
case EnumColumnFieldType.CURRENCY:
|
|
3397
|
-
return
|
|
3465
|
+
return applyMask(attributeValue, numberConfigs, this.isNumber(attributeValue));
|
|
3398
3466
|
case EnumColumnFieldType.DATE:
|
|
3399
3467
|
const dateFormat = column.dateFormat ? column.dateFormat : locale.calendar.dateFormat;
|
|
3400
3468
|
return moment_(attributeValue).format(dateFormat);
|
|
@@ -3405,7 +3473,8 @@ let TableColumnsComponent = class TableColumnsComponent {
|
|
|
3405
3473
|
case EnumColumnFieldType.STRING:
|
|
3406
3474
|
return attributeValue;
|
|
3407
3475
|
case EnumColumnFieldType.NUMBER:
|
|
3408
|
-
|
|
3476
|
+
numberConfigs.prefix = "";
|
|
3477
|
+
return applyMask(attributeValue, numberConfigs, this.isNumber(attributeValue));
|
|
3409
3478
|
case EnumColumnFieldType.TOKENS:
|
|
3410
3479
|
return this.getTokens(attributeValue);
|
|
3411
3480
|
}
|
|
@@ -3460,20 +3529,8 @@ let TableColumnsComponent = class TableColumnsComponent {
|
|
|
3460
3529
|
return tooltip;
|
|
3461
3530
|
}
|
|
3462
3531
|
}
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
const currencySymbol = useCurrencySymbol ? options.currencySymbol : "";
|
|
3466
|
-
const rawValue = Number(value ? value : 0).toFixed(scale);
|
|
3467
|
-
const onlyNumbers = rawValue.replace(/[^0-9]/g, ``);
|
|
3468
|
-
const integerPart = onlyNumbers
|
|
3469
|
-
.slice(0, onlyNumbers.length - scale)
|
|
3470
|
-
.replace(/^0*/g, ``)
|
|
3471
|
-
.replace(/\B(?=(\d{3})+(?!\d))/g, thousandsSeparator) || `0`;
|
|
3472
|
-
const decimalPart = onlyNumbers.slice(onlyNumbers.length - scale);
|
|
3473
|
-
const newValue = scale ? integerPart + decimalSeparator + decimalPart : integerPart;
|
|
3474
|
-
const isZero = !Number(onlyNumbers);
|
|
3475
|
-
const operator = rawValue.includes("-") && !isZero ? "-" : "";
|
|
3476
|
-
return `${operator}${currencySymbol} ${newValue}`;
|
|
3532
|
+
isNumber(value) {
|
|
3533
|
+
return !(new BigNumber(value).isNaN());
|
|
3477
3534
|
}
|
|
3478
3535
|
getTokens(values) {
|
|
3479
3536
|
if (!this.isArray(values))
|
|
@@ -3538,9 +3595,9 @@ __decorate([
|
|
|
3538
3595
|
], TableColumnsComponent.prototype, "locale", void 0);
|
|
3539
3596
|
TableColumnsComponent = __decorate([
|
|
3540
3597
|
Component({
|
|
3541
|
-
template: "\n<ng-template #columnsTemplate>\n <td *ngFor=\"let column of formattedColumns\" [ngStyle]=\"column.style\" (click)=\"column.onColumnClick ? column.onColumnClick(rowValue) : null\">\n\n <div *ngIf=\"column.type !== 'TOKENS' || !isArray(column.columnValue); else tokensTemplate\">\n\n <span *ngIf=\"column.type !== 'LINK'\" [pTooltip]=\"column.tooltip\" [escape]=\"false\" [ngClass]=\"column.badgeClass\">\n <ng-container *ngTemplateOutlet=\"columnValueTemplate\"></ng-container> \n </span>\n\n <a *ngIf=\"column.type === 'LINK'\" [pTooltip]=\"column.tooltip\" [escape]=\"false\" (click)=\"column.onLinkClick ? column.onLinkClick(rowValue) : null\">\n <ng-container *ngTemplateOutlet=\"columnValueTemplate\"></ng-container> \n </a>\n\n <ng-template #columnValueTemplate>\n <span *ngFor=\"let value of getSplittedString(column)\">\n <span [ngClass]=\"{ 'sds-
|
|
3598
|
+
template: "\n<ng-template #columnsTemplate>\n <td *ngFor=\"let column of formattedColumns\" [ngStyle]=\"column.style\" (click)=\"column.onColumnClick ? column.onColumnClick(rowValue) : null\">\n\n <div *ngIf=\"column.type !== 'TOKENS' || !isArray(column.columnValue); else tokensTemplate\">\n\n <span *ngIf=\"column.type !== 'LINK'\" [pTooltip]=\"column.tooltip\" [escape]=\"false\" [ngClass]=\"column.badgeClass\">\n <ng-container *ngTemplateOutlet=\"columnValueTemplate\"></ng-container> \n </span>\n\n <a *ngIf=\"column.type === 'LINK'\" [pTooltip]=\"column.tooltip\" [escape]=\"false\" (click)=\"column.onLinkClick ? column.onLinkClick(rowValue) : null\">\n <ng-container *ngTemplateOutlet=\"columnValueTemplate\"></ng-container> \n </a>\n\n <ng-template #columnValueTemplate>\n <span *ngFor=\"let value of getSplittedString(column)\">\n <span [ngClass]=\"{ 'sds-empty-value': value.isUninformed }\">{{value.value}}</span>\n <span>{{value.separator}}</span>\n </span>\n </ng-template>\n\n </div>\n\n <ng-template #tokensTemplate>\n <s-token-list\n [tokens]=\"column.columnValue\"\n [hidePointerEvents]=\"true\"\n >\n </s-token-list>\n </ng-template>\n\n </td>\n</ng-template>\n",
|
|
3542
3599
|
selector: "s-table-columns",
|
|
3543
|
-
styles: ["
|
|
3600
|
+
styles: [":host{display:none}"]
|
|
3544
3601
|
}),
|
|
3545
3602
|
__param(2, Inject("hostProjectConfigs"))
|
|
3546
3603
|
], TableColumnsComponent);
|
|
@@ -5874,42 +5931,43 @@ let StatsCardComponent = StatsCardComponent_1 = class StatsCardComponent {
|
|
|
5874
5931
|
return this._value;
|
|
5875
5932
|
}
|
|
5876
5933
|
updateDisplayValue() {
|
|
5877
|
-
const previousRawValue =
|
|
5878
|
-
const rawValue =
|
|
5879
|
-
const
|
|
5880
|
-
const
|
|
5934
|
+
const previousRawValue = new BigNumber$1(this.previousValue.replace(/\D/g, ""));
|
|
5935
|
+
const rawValue = new BigNumber$1(this.value.replace(/\D/g, ""));
|
|
5936
|
+
const eachAnimationDuration = new BigNumber$1(this.ANIMATION_DURATION_MS).dividedBy(new BigNumber$1(this.STEP_DURATION_MS));
|
|
5937
|
+
const incrementValue = rawValue.minus(previousRawValue).absoluteValue().dividedBy(eachAnimationDuration).dp(0, 7);
|
|
5938
|
+
const incremental = previousRawValue.isLessThan(rawValue);
|
|
5881
5939
|
clearInterval(this.intervalId);
|
|
5882
5940
|
this.displayValue = this.replaceNumericPositions(this.value);
|
|
5883
5941
|
let counter = previousRawValue;
|
|
5884
5942
|
this.intervalId = setInterval(() => {
|
|
5885
|
-
if (incremental && counter
|
|
5886
|
-
this.displayValue = this.replaceNumericPositions(this.displayValue,
|
|
5887
|
-
counter
|
|
5943
|
+
if (incremental && counter.isLessThan(rawValue)) {
|
|
5944
|
+
this.displayValue = this.replaceNumericPositions(this.displayValue, counter);
|
|
5945
|
+
counter = counter.plus(incrementValue);
|
|
5888
5946
|
}
|
|
5889
|
-
else if (incremental) {
|
|
5890
|
-
this.displayValue = this.
|
|
5891
|
-
|
|
5947
|
+
else if (!incremental && counter.isGreaterThan(rawValue)) {
|
|
5948
|
+
this.displayValue = this.replaceNumericPositions(this.displayValue, counter);
|
|
5949
|
+
counter = counter.minus(incrementValue);
|
|
5892
5950
|
}
|
|
5893
|
-
else
|
|
5894
|
-
this.displayValue = this.replaceNumericPositions(this.displayValue, String(counter));
|
|
5895
|
-
counter -= incrementValue;
|
|
5896
|
-
}
|
|
5897
|
-
else if (!incremental) {
|
|
5951
|
+
else {
|
|
5898
5952
|
this.displayValue = this.value;
|
|
5899
5953
|
clearInterval(this.intervalId);
|
|
5900
5954
|
}
|
|
5901
5955
|
}, this.STEP_DURATION_MS);
|
|
5902
5956
|
}
|
|
5903
|
-
replaceNumericPositions(value, newValue
|
|
5957
|
+
replaceNumericPositions(value, newValue) {
|
|
5904
5958
|
const rawValue = value.replace(/[^\d]/g, "");
|
|
5905
|
-
const newValueString = newValue.
|
|
5959
|
+
const newValueString = newValue ? newValue.toString() : "";
|
|
5960
|
+
const formattedNewValue = newValueString
|
|
5961
|
+
.toString()
|
|
5962
|
+
.replace(/\D/g, "")
|
|
5963
|
+
.padStart(rawValue.length, "0");
|
|
5906
5964
|
let newValueIndex = 0;
|
|
5907
5965
|
return value
|
|
5908
5966
|
.split("")
|
|
5909
5967
|
.map(char => {
|
|
5910
5968
|
const number = Number(char);
|
|
5911
5969
|
if (number || char === "0")
|
|
5912
|
-
return
|
|
5970
|
+
return formattedNewValue[newValueIndex++];
|
|
5913
5971
|
return char;
|
|
5914
5972
|
})
|
|
5915
5973
|
.join("");
|
|
@@ -6451,5 +6509,5 @@ AngularComponentsModule = AngularComponentsModule_1 = __decorate([
|
|
|
6451
6509
|
* Generated bundle index. Do not edit.
|
|
6452
6510
|
*/
|
|
6453
6511
|
|
|
6454
|
-
export { AngularComponentsModule, AutocompleteField, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FormField, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, 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, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TextAreaField, TextField, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TileComponent, TileModule, TokenListComponent, TokenListModule, ValidateErrors, LocalizedCurrencyImpurePipe as ɵa,
|
|
6512
|
+
export { AngularComponentsModule, AutocompleteField, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FormField, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, 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, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TextAreaField, TextField, 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, InfoSignComponent as ɵbe, NumberLocaleOptions as ɵbf, ThumbnailService as ɵbg, InfiniteScrollModule as ɵbh, InfiniteScrollDirective as ɵbi, LocalizedBignumberImpurePipe as ɵc, TokenListModule as ɵd, TableColumnsComponent as ɵe, InfoSignModule 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 };
|
|
6455
6513
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|