@seniorsistemas/tmsx-angular-components 1.0.1 → 1.0.3-develop-193f5243
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-tmsx-angular-components.umd.js +56 -350
- package/bundles/seniorsistemas-tmsx-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-tmsx-angular-components.umd.min.js +1 -1
- package/bundles/seniorsistemas-tmsx-angular-components.umd.min.js.map +1 -1
- package/esm2015/components/grid-editable-nested/grid-editable-nested.component.js +5 -5
- package/esm2015/components/painel-processamento/painel-processamento.component.js +4 -4
- package/esm2015/components/painel-processamento/processamento.js +5 -5
- package/esm2015/locale/fallback.js +37 -331
- package/esm2015/utils/services/utils.service.js +10 -10
- package/esm5/components/grid-editable-nested/grid-editable-nested.component.js +5 -5
- package/esm5/components/painel-processamento/painel-processamento.component.js +4 -4
- package/esm5/components/painel-processamento/processamento.js +5 -5
- package/esm5/locale/fallback.js +37 -331
- package/esm5/utils/services/utils.service.js +10 -10
- package/fesm2015/seniorsistemas-tmsx-angular-components.js +56 -350
- package/fesm2015/seniorsistemas-tmsx-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-tmsx-angular-components.js +56 -350
- package/fesm5/seniorsistemas-tmsx-angular-components.js.map +1 -1
- package/package.json +4 -4
- package/seniorsistemas-tmsx-angular-components.metadata.json +1 -1
|
@@ -28,10 +28,10 @@ var EnumProcessamentoStatus;
|
|
|
28
28
|
EnumProcessamentoStatus["PROCESSING"] = "PROCESSING";
|
|
29
29
|
})(EnumProcessamentoStatus || (EnumProcessamentoStatus = {}));
|
|
30
30
|
var EnumProcessamentoStatusTranslationMap = (_a = {},
|
|
31
|
-
_a[EnumProcessamentoStatus.SUCCESS] = '
|
|
32
|
-
_a[EnumProcessamentoStatus.FAILED] = '
|
|
33
|
-
_a[EnumProcessamentoStatus.PENDING] = '
|
|
34
|
-
_a[EnumProcessamentoStatus.PROCESSING] = '
|
|
31
|
+
_a[EnumProcessamentoStatus.SUCCESS] = 'tmsx_fnd.tmsx_angular_components.painel_processamento_status_success',
|
|
32
|
+
_a[EnumProcessamentoStatus.FAILED] = 'tmsx_fnd.tmsx_angular_components.painel_processamento_status_failed',
|
|
33
|
+
_a[EnumProcessamentoStatus.PENDING] = 'tmsx_fnd.tmsx_angular_components.painel_processamento_status_pending',
|
|
34
|
+
_a[EnumProcessamentoStatus.PROCESSING] = 'tmsx_fnd.tmsx_angular_components.painel_processamento_status_processing',
|
|
35
35
|
_a);
|
|
36
36
|
|
|
37
37
|
var PainelProcessamentoComponent = /** @class */ (function () {
|
|
@@ -116,7 +116,7 @@ var PainelProcessamentoComponent = /** @class */ (function () {
|
|
|
116
116
|
else {
|
|
117
117
|
this.failedCount = this.pendingCount;
|
|
118
118
|
this.pendingCount = 0;
|
|
119
|
-
this.updateRowStatus(row, EnumProcessamentoStatus.FAILED, this.translate.instant('
|
|
119
|
+
this.updateRowStatus(row, EnumProcessamentoStatus.FAILED, this.translate.instant('tmsx_fnd.tmsx_angular_components.painel_processamento_api_error'));
|
|
120
120
|
this.updateProgressBar();
|
|
121
121
|
this.concluido.emit('erro');
|
|
122
122
|
}
|
|
@@ -220,14 +220,14 @@ var PainelProcessamentoComponent = /** @class */ (function () {
|
|
|
220
220
|
return [
|
|
221
221
|
{
|
|
222
222
|
field: 'label',
|
|
223
|
-
header: this.translate.instant('
|
|
223
|
+
header: this.translate.instant('tmsx_fnd.tmsx_angular_components.registro'),
|
|
224
224
|
style: { width: '50%' },
|
|
225
225
|
attributes: [],
|
|
226
226
|
type: EnumColumnFieldType.STRING
|
|
227
227
|
},
|
|
228
228
|
{
|
|
229
229
|
field: 'status',
|
|
230
|
-
header: this.translate.instant('
|
|
230
|
+
header: this.translate.instant('tmsx_fnd.tmsx_angular_components.status'),
|
|
231
231
|
style: { width: '50%' },
|
|
232
232
|
attributes: [],
|
|
233
233
|
type: EnumColumnFieldType.STRING
|
|
@@ -298,7 +298,7 @@ var UtilsService = /** @class */ (function () {
|
|
|
298
298
|
}
|
|
299
299
|
var date = '';
|
|
300
300
|
this.dataPipe.transform(createdDate).subscribe(function (item) { return date = item.split(' '); });
|
|
301
|
-
return this.translate.instant('
|
|
301
|
+
return this.translate.instant('tmsx_fnd.tmsx_angular_components.audit_created_by', { nome: createdBy, data: date[0], hora: date[1] });
|
|
302
302
|
};
|
|
303
303
|
UtilsService.prototype.getAuditModifiedBy = function (modifiedBy, modifiedDate) {
|
|
304
304
|
if (!modifiedBy || !modifiedDate) {
|
|
@@ -306,7 +306,7 @@ var UtilsService = /** @class */ (function () {
|
|
|
306
306
|
}
|
|
307
307
|
var date = '';
|
|
308
308
|
this.dataPipe.transform(modifiedDate).subscribe(function (item) { return date = item.split(' '); });
|
|
309
|
-
return this.translate.instant('
|
|
309
|
+
return this.translate.instant('tmsx_fnd.tmsx_angular_components.audit_modified_by', { nome: modifiedBy, data: date[0], hora: date[1] });
|
|
310
310
|
};
|
|
311
311
|
UtilsService.prototype.getAuditInactivatedBy = function (inactivatedBy, inactivatedDate) {
|
|
312
312
|
if (!inactivatedBy || !inactivatedDate) {
|
|
@@ -314,7 +314,7 @@ var UtilsService = /** @class */ (function () {
|
|
|
314
314
|
}
|
|
315
315
|
var date = '';
|
|
316
316
|
this.dataPipe.transform(inactivatedDate).subscribe(function (item) { return date = item.split(' '); });
|
|
317
|
-
return this.translate.instant('
|
|
317
|
+
return this.translate.instant('tmsx_fnd.tmsx_angular_components.audit_inactivated_by', { nome: inactivatedBy, data: date[0], hora: date[1] });
|
|
318
318
|
};
|
|
319
319
|
/* usage: [innerHTML]="getProp(rowData, 'nome')" */
|
|
320
320
|
UtilsService.prototype.getProp = function (obj, path, type) {
|
|
@@ -325,7 +325,7 @@ var UtilsService = /** @class */ (function () {
|
|
|
325
325
|
}
|
|
326
326
|
return "<span>" + value + "</span>";
|
|
327
327
|
}
|
|
328
|
-
return "<span class=\"empty-grid\">" + this.translate.instant('
|
|
328
|
+
return "<span class=\"empty-grid\">" + this.translate.instant('tmsx_fnd.tmsx_angular_components.list_grid_empty_field') + "</span>";
|
|
329
329
|
};
|
|
330
330
|
UtilsService.prototype.formatType = function (value, type) {
|
|
331
331
|
if (value) {
|
|
@@ -364,7 +364,7 @@ var UtilsService = /** @class */ (function () {
|
|
|
364
364
|
UtilsService.prototype.infoContent = function (entity) {
|
|
365
365
|
var text = '';
|
|
366
366
|
if (!entity) {
|
|
367
|
-
return this.translate.instant("
|
|
367
|
+
return this.translate.instant("tmsx_fnd.tmsx_angular_components.condicao_valor_lookup_condicional_no_audit");
|
|
368
368
|
}
|
|
369
369
|
text += this.getAuditCreatedBy(entity.createdBy, entity.createdDate);
|
|
370
370
|
if (text) {
|
|
@@ -380,8 +380,8 @@ var UtilsService = /** @class */ (function () {
|
|
|
380
380
|
var _a = formField, name = _a.name, type = _a.type, label = _a.label;
|
|
381
381
|
if (type === FieldType.Radio) {
|
|
382
382
|
var labelValue = value
|
|
383
|
-
? translate.instant('
|
|
384
|
-
: translate.instant('
|
|
383
|
+
? translate.instant('tmsx_fnd.tmsx_angular_components.situacao_ativo_true')
|
|
384
|
+
: translate.instant('tmsx_fnd.tmsx_angular_components.situacao_ativo_false');
|
|
385
385
|
return { id: name, label: label + ": " + labelValue };
|
|
386
386
|
}
|
|
387
387
|
return this.createFilterTokens(formField, value, translate);
|
|
@@ -427,8 +427,8 @@ var UtilsService = /** @class */ (function () {
|
|
|
427
427
|
};
|
|
428
428
|
UtilsService.prototype.getBooleanLabel = function (value, translate) {
|
|
429
429
|
return value
|
|
430
|
-
? translate.instant('
|
|
431
|
-
: translate.instant('
|
|
430
|
+
? translate.instant('tmsx_fnd.tmsx_angular_components.list_grid_boolean_true')
|
|
431
|
+
: translate.instant('tmsx_fnd.tmsx_angular_components.list_grid_boolean_false');
|
|
432
432
|
};
|
|
433
433
|
UtilsService.prototype.getTimeFromDate = function (value) {
|
|
434
434
|
var dateObj;
|
|
@@ -507,7 +507,7 @@ var GridEditableNestedComponent = /** @class */ (function () {
|
|
|
507
507
|
this.frozenWidth = '200px';
|
|
508
508
|
this.frozenColumns = [];
|
|
509
509
|
this.ngUnsubscribe = new Subject();
|
|
510
|
-
this.calendarTooltipText = this.translate.instant('
|
|
510
|
+
this.calendarTooltipText = this.translate.instant('tmsx_fnd.tmsx_angular_components.grid_editable_nested_calendar_required');
|
|
511
511
|
}
|
|
512
512
|
GridEditableNestedComponent.prototype.ngOnInit = function () {
|
|
513
513
|
this.setGridData();
|
|
@@ -555,7 +555,7 @@ var GridEditableNestedComponent = /** @class */ (function () {
|
|
|
555
555
|
return [
|
|
556
556
|
{
|
|
557
557
|
id: 'edit',
|
|
558
|
-
label: this.translate.instant('
|
|
558
|
+
label: this.translate.instant('tmsx_fnd.tmsx_angular_components.edit'),
|
|
559
559
|
disabled: !this.detailsEnabled,
|
|
560
560
|
command: function () {
|
|
561
561
|
_this.openRowDetails(data.id);
|
|
@@ -564,7 +564,7 @@ var GridEditableNestedComponent = /** @class */ (function () {
|
|
|
564
564
|
{ separator: true },
|
|
565
565
|
{
|
|
566
566
|
id: 'delete',
|
|
567
|
-
label: this.translate.instant('
|
|
567
|
+
label: this.translate.instant('tmsx_fnd.tmsx_angular_components.delete'),
|
|
568
568
|
disabled: !this.deleteEnabled,
|
|
569
569
|
command: function () {
|
|
570
570
|
_this.onDelete(data.id);
|
|
@@ -741,7 +741,7 @@ var GridEditableNestedComponent = /** @class */ (function () {
|
|
|
741
741
|
}),
|
|
742
742
|
Component({
|
|
743
743
|
selector: 'tmsx-grid-editable-nested',
|
|
744
|
-
template: "<div class=\"ui-g\">\n <div class=\"ui-g-12\">\n <s-button id=\"add-button\"\n data-cy=\"add-button\"\n priority=\"primary\" type=\"button\"\n [label]=\"'tmsx_com.tmsx_angular_components.add' | translate\"\n tooltip=\"{{'tmsx_com.tmsx_angular_components.add' | translate}} (Alt + Shift + N)\"\n [disabled]=\"!addEnabled\"\n (click)=\"onAdd()\">\n </s-button>\n <s-button\n *ngIf=\"!editing\"\n priority=\"primary\"\n iconClass=\"fa fa-edit\"\n label=\"{{'tmsx_com.tmsx_angular_components.grid_editable_nested_editar' | translate}}\"\n tooltip=\"{{'tmsx_com.tmsx_angular_components.grid_editable_nested_editar' | translate}}\"\n [disabled]=\"!editEnabled\"\n (click)=\"initAllRowsEdit()\"\n ></s-button>\n <s-button\n *ngIf=\"editing\"\n priority=\"primary\"\n label=\"{{'tmsx_com.tmsx_angular_components.grid_editable_nested_salvar' | translate}}\"\n iconClass=\"fa fa-check\"\n [disabled]=\"false\"\n (click)=\"onEditSave()\"\n ></s-button>\n <s-button\n *ngIf=\"editing\"\n priority=\"default\"\n label=\"{{'tmsx_com.tmsx_angular_components.grid_editable_nested_cancelar' | translate}}\"\n iconClass=\"fa fa-times\"\n [disabled]=\"false\"\n (click)=\"onEditCancel()\"\n ></s-button>\n <p-table\n selectionMode=\"single\"\n [(selection)]=\"selected\"\n [value]=\"gridData\"\n [columns]=\"gridColumns\"\n dataKey=\"id\"\n rows=\"10\"\n [rowsPerPageOptions]=\"[10, 20, 50, 100]\"\n [paginator]=\"true\"\n [totalRecords]=\"gridTotalRecords\"\n [lazy]=\"lazy\"\n (onLazyLoad)=\"updateGridData($event)\"\n *sLoadingState=\"gridLoading\"\n sortMode=\"multiple\"\n [frozenWidth]=\"frozenWidth\"\n [scrollable]=\"true\"\n [sTableFrozenPosition]=\"frozenPosition\"\n [sTableFrozenValue]=\"gridData\"\n editMode=\"row\"\n #table\n >\n <ng-template pTemplate=\"frozencolgroup\" let-columns>\n <colgroup>\n <col class=\"col50\" />\n <col *ngFor=\"let col of frozenColumns\" class=\"col200\" />\n <col class=\"frozenButton\" />\n </colgroup>\n </ng-template>\n\n <ng-template pTemplate=\"frozenheader\">\n <tr>\n <th pResizableColumn scope=\"col\"></th>\n <th pResizableColumn *ngFor=\"let col of frozenColumns\" scope=\"col\">{{ col.header }}</th>\n <th pResizableColumn scope=\"col\"></th>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"frozenbody\" let-rowData let-expanded=\"expanded\">\n <tr [pSelectableRow]=\"rowData\">\n <td class=\"col50\" tabindex=\"0\" [sRowToggler]=\"rowData\">\n <i class=\"fa fa-{{ expanded ? 'minus' : 'plus' }} \"></i>\n </td>\n <td *ngFor=\"let col of frozenColumns\" class=\"colText\"\n tooltipPosition=\"top\" showDelay=\"500\"\n [innerHTML]=\"getSpanProp(rowData, col.field)\">\n </td>\n <td class=\"frozenButton\">\n <s-button\n id=\"edit-button\"\n data-cy=\"edit-button\"\n priority=\"default\"\n type=\"button\"\n size=\"small\"\n [auxiliary]=\"true\"\n [disabled]=\"false\"\n [model]=\"getActions(rowData)\">\n </s-button>\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"colgroup\" let-columns>\n <colgroup>\n <col *ngFor=\"let col of columns\" [style.width]=\"col.width\" />\n </colgroup>\n </ng-template>\n\n <ng-template pTemplate=\"header\" let-columns>\n <tr>\n <th *ngFor=\"let col of columns\" scope=\"col\">\n <div class=\"senior-header\">\n <span class=\"senior-header-title\">{{ col.header }}</span>\n </div>\n </th>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"body\" let-rowData let-expanded=\"expanded\" let-columns=\"columns\">\n <tr sNavigation tabindex=\"0\" [pEditableRow]=\"rowData\">\n <td\n *ngFor=\"let col of columns\"\n [ngClass]=\"editing? 'editPadding': ''\"\n pResizableColumn\n [pTooltip]=\"rowData[col.field]\"\n tooltipPosition=\"top\"\n showDelay=\"500\"\n tabindex=\"0\"\n class=\"col80 colText\"\n >\n <p-cellEditor>\n <ng-template pTemplate=\"input\">\n <div class=\"ui-fluid\">\n <ng-container [ngSwitch]=\"col.type\">\n <ng-container *ngSwitchCase=\"'Text'\">\n <span>{{ rowData[col.field] }}</span>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Date'\">\n <p-calendar\n [(ngModel)]=\"rowData[col.field]\"\n appendTo=\"body\"\n [showIcon]=\"true\"\n [required]=\"true\"\n pTooltip=\"{{ calendarTooltipText }}\"\n tooltipPosition=\"bottom\"\n [tooltipDisabled]=\"rowData[col.field]\"\n ></p-calendar>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Autocomplete'\">\n <p-autoComplete\n [(ngModel)]=\"rowData[col.field]\"\n [suggestions]=\"col.options\"\n appendTo=\"body\"\n (completeMethod)=\"filterOptions($event)\"\n [dropdown]=\"true\"\n [forceSelection]=\"true\"\n ></p-autoComplete>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Decimal'\">\n <div class=\"ui-inputgroup\">\n <span class=\"ui-inputgroup-addon\"\n *ngIf=\"'MONETARIO' === rowData.tiposDados[col.field]\"\n >R$</span>\n <input sNumberInput [scale]=\"2\"\n alignTo=\"right\"\n thousandsSeparator=\".\"\n pInputText\n [(ngModel)]=\"rowData[col.field]\"\n (keydown)=\"onTab($event)\"\n />\n <span class=\"ui-inputgroup-addon\"\n *ngIf=\"'PERCENTUAL' === rowData.tiposDados[col.field]\"\n >%</span>\n </div>\n </ng-container>\n\n <ng-container *ngSwitchDefault>\n <input pInputText type=\"text\"\n [(ngModel)]=\"rowData[col.field]\"\n (keydown)=\"onTab($event)\"\n />\n </ng-container>\n </ng-container>\n </div>\n </ng-template>\n\n <ng-template pTemplate=\"output\">\n <div [innerHTML]=\"getSpanProp(rowData, col.field, col.type)\"></div>\n </ng-template>\n </p-cellEditor>\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"rowexpansion\" let-rowData>\n <tr class=\"sds-expanded-row\">\n <td [attr.colspan]=\"gridColumns.length + 1\">\n <p-table\n [value]=\"rowData.nestedGridData\"\n [columns]=\"rowData.nestedGridColumns\"\n dataKey=\"id\"\n rows=\"5\"\n [first]=\"getRowIndex()\"\n [rows]=\"getPageSize()\"\n [rowsPerPageOptions]=\"[5, 10, 20, 50]\"\n [paginator]=\"true\"\n [totalRecords]=\"rowData.nestedGridTotalRecords\"\n [responsive]=\"true\"\n [lazy]=\"true\"\n (onLazyLoad)=\"updateNestedGridData($event, rowData)\"\n sortMode=\"multiple\"\n *sLoadingState=\"rowData.nestedGridLoading\"\n >\n <ng-template pTemplate=\"header\" let-columns>\n <tr>\n <th *ngFor=\"let col of columns\" scope=\"col\"\n [pSortableColumn]=\"col.field\">\n <div class=\"senior-header\">\n <span class=\"senior-header-title\">{{ col.header }}</span>\n <p-sortIcon [field]=\"col.field\"></p-sortIcon>\n </div>\n </th>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"body\" let-rowData let-columns=\"columns\">\n <tr [pSelectableRow]=\"rowData\">\n <td *ngFor=\"let col of columns\" class=\"colText\">\n {{ formatData(col, rowData[col.field]) }}\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"paginatorright\">\n <span>\n {{ rowData.nestedGridTotalRecords }}\n {{'tmsx_com.tmsx_angular_components.grid_editable_nested_paging' | translate}}\n </span>\n </ng-template>\n </p-table>\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"paginatorright\">\n <span>\n {{ gridTotalRecords }}\n {{'tmsx_com.tmsx_angular_components.grid_editable_nested_paging' | translate}}\n </span>\n </ng-template>\n </p-table>\n </div>\n</div>\n",
|
|
744
|
+
template: "<div class=\"ui-g\">\n <div class=\"ui-g-12\">\n <s-button id=\"add-button\"\n data-cy=\"add-button\"\n priority=\"primary\" type=\"button\"\n [label]=\"'tmsx_fnd.tmsx_angular_components.add' | translate\"\n tooltip=\"{{'tmsx_fnd.tmsx_angular_components.add' | translate}} (Alt + Shift + N)\"\n [disabled]=\"!addEnabled\"\n (click)=\"onAdd()\">\n </s-button>\n <s-button\n *ngIf=\"!editing\"\n priority=\"primary\"\n iconClass=\"fa fa-edit\"\n label=\"{{'tmsx_fnd.tmsx_angular_components.grid_editable_nested_editar' | translate}}\"\n tooltip=\"{{'tmsx_fnd.tmsx_angular_components.grid_editable_nested_editar' | translate}}\"\n [disabled]=\"!editEnabled\"\n (click)=\"initAllRowsEdit()\"\n ></s-button>\n <s-button\n *ngIf=\"editing\"\n priority=\"primary\"\n label=\"{{'tmsx_fnd.tmsx_angular_components.grid_editable_nested_salvar' | translate}}\"\n iconClass=\"fa fa-check\"\n [disabled]=\"false\"\n (click)=\"onEditSave()\"\n ></s-button>\n <s-button\n *ngIf=\"editing\"\n priority=\"default\"\n label=\"{{'tmsx_fnd.tmsx_angular_components.grid_editable_nested_cancelar' | translate}}\"\n iconClass=\"fa fa-times\"\n [disabled]=\"false\"\n (click)=\"onEditCancel()\"\n ></s-button>\n <p-table\n selectionMode=\"single\"\n [(selection)]=\"selected\"\n [value]=\"gridData\"\n [columns]=\"gridColumns\"\n dataKey=\"id\"\n rows=\"10\"\n [rowsPerPageOptions]=\"[10, 20, 50, 100]\"\n [paginator]=\"true\"\n [totalRecords]=\"gridTotalRecords\"\n [lazy]=\"lazy\"\n (onLazyLoad)=\"updateGridData($event)\"\n *sLoadingState=\"gridLoading\"\n sortMode=\"multiple\"\n [frozenWidth]=\"frozenWidth\"\n [scrollable]=\"true\"\n [sTableFrozenPosition]=\"frozenPosition\"\n [sTableFrozenValue]=\"gridData\"\n editMode=\"row\"\n #table\n >\n <ng-template pTemplate=\"frozencolgroup\" let-columns>\n <colgroup>\n <col class=\"col50\" />\n <col *ngFor=\"let col of frozenColumns\" class=\"col200\" />\n <col class=\"frozenButton\" />\n </colgroup>\n </ng-template>\n\n <ng-template pTemplate=\"frozenheader\">\n <tr>\n <th pResizableColumn scope=\"col\"></th>\n <th pResizableColumn *ngFor=\"let col of frozenColumns\" scope=\"col\">{{ col.header }}</th>\n <th pResizableColumn scope=\"col\"></th>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"frozenbody\" let-rowData let-expanded=\"expanded\">\n <tr [pSelectableRow]=\"rowData\">\n <td class=\"col50\" tabindex=\"0\" [sRowToggler]=\"rowData\">\n <i class=\"fa fa-{{ expanded ? 'minus' : 'plus' }} \"></i>\n </td>\n <td *ngFor=\"let col of frozenColumns\" class=\"colText\"\n tooltipPosition=\"top\" showDelay=\"500\"\n [innerHTML]=\"getSpanProp(rowData, col.field)\">\n </td>\n <td class=\"frozenButton\">\n <s-button\n id=\"edit-button\"\n data-cy=\"edit-button\"\n priority=\"default\"\n type=\"button\"\n size=\"small\"\n [auxiliary]=\"true\"\n [disabled]=\"false\"\n [model]=\"getActions(rowData)\">\n </s-button>\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"colgroup\" let-columns>\n <colgroup>\n <col *ngFor=\"let col of columns\" [style.width]=\"col.width\" />\n </colgroup>\n </ng-template>\n\n <ng-template pTemplate=\"header\" let-columns>\n <tr>\n <th *ngFor=\"let col of columns\" scope=\"col\">\n <div class=\"senior-header\">\n <span class=\"senior-header-title\">{{ col.header }}</span>\n </div>\n </th>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"body\" let-rowData let-expanded=\"expanded\" let-columns=\"columns\">\n <tr sNavigation tabindex=\"0\" [pEditableRow]=\"rowData\">\n <td\n *ngFor=\"let col of columns\"\n [ngClass]=\"editing? 'editPadding': ''\"\n pResizableColumn\n [pTooltip]=\"rowData[col.field]\"\n tooltipPosition=\"top\"\n showDelay=\"500\"\n tabindex=\"0\"\n class=\"col80 colText\"\n >\n <p-cellEditor>\n <ng-template pTemplate=\"input\">\n <div class=\"ui-fluid\">\n <ng-container [ngSwitch]=\"col.type\">\n <ng-container *ngSwitchCase=\"'Text'\">\n <span>{{ rowData[col.field] }}</span>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Date'\">\n <p-calendar\n [(ngModel)]=\"rowData[col.field]\"\n appendTo=\"body\"\n [showIcon]=\"true\"\n [required]=\"true\"\n pTooltip=\"{{ calendarTooltipText }}\"\n tooltipPosition=\"bottom\"\n [tooltipDisabled]=\"rowData[col.field]\"\n ></p-calendar>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Autocomplete'\">\n <p-autoComplete\n [(ngModel)]=\"rowData[col.field]\"\n [suggestions]=\"col.options\"\n appendTo=\"body\"\n (completeMethod)=\"filterOptions($event)\"\n [dropdown]=\"true\"\n [forceSelection]=\"true\"\n ></p-autoComplete>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Decimal'\">\n <div class=\"ui-inputgroup\">\n <span class=\"ui-inputgroup-addon\"\n *ngIf=\"'MONETARIO' === rowData.tiposDados[col.field]\"\n >R$</span>\n <input sNumberInput [scale]=\"2\"\n alignTo=\"right\"\n thousandsSeparator=\".\"\n pInputText\n [(ngModel)]=\"rowData[col.field]\"\n (keydown)=\"onTab($event)\"\n />\n <span class=\"ui-inputgroup-addon\"\n *ngIf=\"'PERCENTUAL' === rowData.tiposDados[col.field]\"\n >%</span>\n </div>\n </ng-container>\n\n <ng-container *ngSwitchDefault>\n <input pInputText type=\"text\"\n [(ngModel)]=\"rowData[col.field]\"\n (keydown)=\"onTab($event)\"\n />\n </ng-container>\n </ng-container>\n </div>\n </ng-template>\n\n <ng-template pTemplate=\"output\">\n <div [innerHTML]=\"getSpanProp(rowData, col.field, col.type)\"></div>\n </ng-template>\n </p-cellEditor>\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"rowexpansion\" let-rowData>\n <tr class=\"sds-expanded-row\">\n <td [attr.colspan]=\"gridColumns.length + 1\">\n <p-table\n [value]=\"rowData.nestedGridData\"\n [columns]=\"rowData.nestedGridColumns\"\n dataKey=\"id\"\n rows=\"5\"\n [first]=\"getRowIndex()\"\n [rows]=\"getPageSize()\"\n [rowsPerPageOptions]=\"[5, 10, 20, 50]\"\n [paginator]=\"true\"\n [totalRecords]=\"rowData.nestedGridTotalRecords\"\n [responsive]=\"true\"\n [lazy]=\"true\"\n (onLazyLoad)=\"updateNestedGridData($event, rowData)\"\n sortMode=\"multiple\"\n *sLoadingState=\"rowData.nestedGridLoading\"\n >\n <ng-template pTemplate=\"header\" let-columns>\n <tr>\n <th *ngFor=\"let col of columns\" scope=\"col\"\n [pSortableColumn]=\"col.field\">\n <div class=\"senior-header\">\n <span class=\"senior-header-title\">{{ col.header }}</span>\n <p-sortIcon [field]=\"col.field\"></p-sortIcon>\n </div>\n </th>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"body\" let-rowData let-columns=\"columns\">\n <tr [pSelectableRow]=\"rowData\">\n <td *ngFor=\"let col of columns\" class=\"colText\">\n {{ formatData(col, rowData[col.field]) }}\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"paginatorright\">\n <span>\n {{ rowData.nestedGridTotalRecords }}\n {{'tmsx_fnd.tmsx_angular_components.grid_editable_nested_paging' | translate}}\n </span>\n </ng-template>\n </p-table>\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"paginatorright\">\n <span>\n {{ gridTotalRecords }}\n {{'tmsx_fnd.tmsx_angular_components.grid_editable_nested_paging' | translate}}\n </span>\n </ng-template>\n </p-table>\n </div>\n</div>\n",
|
|
745
745
|
styles: [":host ::ng-deep div.contents{margin-top:15px}input{max-width:100%}.col50{width:50px}.col80{width:80px}.col200{width:200px}.colText{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.frozenButton{width:70px;padding:5px}.editPadding{padding-top:8px;padding-bottom:9px}"]
|
|
746
746
|
})
|
|
747
747
|
], GridEditableNestedComponent);
|
|
@@ -820,336 +820,42 @@ var TmsxAngularComponentsModule = /** @class */ (function () {
|
|
|
820
820
|
}());
|
|
821
821
|
|
|
822
822
|
var fallback = {
|
|
823
|
-
"
|
|
824
|
-
"
|
|
825
|
-
"
|
|
826
|
-
"
|
|
827
|
-
"
|
|
828
|
-
"
|
|
829
|
-
"
|
|
830
|
-
"
|
|
831
|
-
"
|
|
832
|
-
"
|
|
833
|
-
"
|
|
834
|
-
"
|
|
835
|
-
"
|
|
836
|
-
"
|
|
837
|
-
"
|
|
838
|
-
"
|
|
839
|
-
"
|
|
840
|
-
"
|
|
841
|
-
"
|
|
842
|
-
"
|
|
843
|
-
"
|
|
844
|
-
"
|
|
845
|
-
"
|
|
846
|
-
"
|
|
847
|
-
"
|
|
848
|
-
"
|
|
849
|
-
"
|
|
850
|
-
"
|
|
851
|
-
"
|
|
852
|
-
"
|
|
853
|
-
"
|
|
854
|
-
"
|
|
855
|
-
"
|
|
856
|
-
"
|
|
857
|
-
"
|
|
858
|
-
"
|
|
859
|
-
"platform.angular_components.may_short": "Mai",
|
|
860
|
-
"platform.angular_components.june_short": "Jun",
|
|
861
|
-
"platform.angular_components.july_short": "Jul",
|
|
862
|
-
"platform.angular_components.august_short": "Ago",
|
|
863
|
-
"platform.angular_components.september_short": "Set",
|
|
864
|
-
"platform.angular_components.october_short": "Out",
|
|
865
|
-
"platform.angular_components.november_short": "Nov",
|
|
866
|
-
"platform.angular_components.december_short": "Dez",
|
|
867
|
-
"platform.angular_components.sunday": "Domingo",
|
|
868
|
-
"platform.angular_components.monday": "Segunda-feira",
|
|
869
|
-
"platform.angular_components.tuesday": "Terça-feira",
|
|
870
|
-
"platform.angular_components.wednesday": "Quarta-feira",
|
|
871
|
-
"platform.angular_components.thursday": "Quinta-feira",
|
|
872
|
-
"platform.angular_components.friday": "Sexta-feira",
|
|
873
|
-
"platform.angular_components.saturday": "Sábado",
|
|
874
|
-
"platform.angular_components.sunday_short": "Dom",
|
|
875
|
-
"platform.angular_components.monday_short": "Seg",
|
|
876
|
-
"platform.angular_components.tuesday_short": "Ter",
|
|
877
|
-
"platform.angular_components.wednesday_short": "Qua",
|
|
878
|
-
"platform.angular_components.thursday_short": "Qui",
|
|
879
|
-
"platform.angular_components.friday_short": "Sex",
|
|
880
|
-
"platform.angular_components.saturday_short": "Sáb",
|
|
881
|
-
"platform.angular_components.sunday_min": "D",
|
|
882
|
-
"platform.angular_components.monday_min": "S",
|
|
883
|
-
"platform.angular_components.tuesday_min": "T",
|
|
884
|
-
"platform.angular_components.wednesday_min": "Q",
|
|
885
|
-
"platform.angular_components.thursday_min": "Q",
|
|
886
|
-
"platform.angular_components.friday_min": "S",
|
|
887
|
-
"platform.angular_components.saturday_min": "S",
|
|
888
|
-
"platform.angular_components.today": "Hoje",
|
|
889
|
-
"platform.angular_components.hour_format": "24",
|
|
890
|
-
"platform.angular_components.date_format": "dd/mm/yy",
|
|
891
|
-
"platform.angular_components.ia_text_generator": "Gerador de texto por IA",
|
|
892
|
-
"platform.angular_components.attach_files": "Anexar arquivos",
|
|
893
|
-
"platform.angular_components.add_information": "Adicionar informação",
|
|
894
|
-
"platform.angular_components.add": "Adicionar",
|
|
895
|
-
"platform.angular_components.edit": "Editar",
|
|
896
|
-
"platform.angular_components.remove": "Remover",
|
|
897
|
-
"platform.angular_components.save": "Salvar",
|
|
898
|
-
"platform.angular_components.file_attached_successfully": "Arquivo anexado com sucesso",
|
|
899
|
-
"platform.angular_components.loading_file": "Carregando arquivo",
|
|
900
|
-
"platform.angular_components.iassist_text_generator": "IAssist Gerador de texto",
|
|
901
|
-
"platform.angular_components.copied_to_clipboard": "Copiado para área de transferência",
|
|
902
|
-
"platform.angular_components.copy_field_content": "Copiar conteúdo preenchido",
|
|
903
|
-
"platform.angular_components.generate_text": "Gerar texto",
|
|
904
|
-
"platform.angular_components.context": "Contexto",
|
|
905
|
-
"platform.angular_components.filters": "Filtros",
|
|
906
|
-
"platform.angular_components.filter": "Filtrar",
|
|
907
|
-
"platform.angular_components.clear": "Limpar",
|
|
908
|
-
"platform.angular_components.cancel": "Cancelar",
|
|
909
|
-
"platform.angular_components.select": "Selecionar",
|
|
910
|
-
"platform.angular_components.not_informed": "Não informado",
|
|
911
|
-
"platform.angular_components.advanced_search": "Pesquisa avançada",
|
|
912
|
-
"platform.angular_components.no_records_found": "Nenhum registro encontrado",
|
|
913
|
-
"platform.angular_components.total_record": "{{ count }} registro encontrado",
|
|
914
|
-
"platform.angular_components.total_records": "{{ count }} registros encontrados",
|
|
915
|
-
"platform.angular_components.total_records_selected": "{0} registros selecionados",
|
|
916
|
-
"platform.angular_components.country_name_br": "Brasil",
|
|
917
|
-
"platform.angular_components.country_name_us": "Estados Unidos",
|
|
918
|
-
"platform.angular_components.country_name_co": "Colômbia",
|
|
919
|
-
"platform.angular_components.country_name_ar": "Argentina",
|
|
920
|
-
"platform.angular_components.country_name_cl": "Chile",
|
|
921
|
-
"platform.angular_components.country_name_py": "Paraguai",
|
|
922
|
-
"platform.angular_components.country_name_uy": "Uruguai",
|
|
923
|
-
"platform.angular_components.country_name_cn": "China",
|
|
924
|
-
"platform.angular_components.country_name_ca": "Canadá",
|
|
925
|
-
"platform.angular_components.country_name_as": "Samoa Americana",
|
|
926
|
-
"platform.angular_components.country_name_ai": "Anguilla",
|
|
927
|
-
"platform.angular_components.country_name_ag": "Antígua e Barbuda",
|
|
928
|
-
"platform.angular_components.country_name_bs": "Bahamas",
|
|
929
|
-
"platform.angular_components.country_name_bb": "Barbados",
|
|
930
|
-
"platform.angular_components.country_name_bm": "Bermuda",
|
|
931
|
-
"platform.angular_components.country_name_vg": "Ilhas Virgens Britânicas",
|
|
932
|
-
"platform.angular_components.country_name_ky": "Ilhas Cayman",
|
|
933
|
-
"platform.angular_components.country_name_dm": "Dominica",
|
|
934
|
-
"platform.angular_components.country_name_do": "República Dominicana",
|
|
935
|
-
"platform.angular_components.country_name_gd": "Granada",
|
|
936
|
-
"platform.angular_components.country_name_gu": "Guam",
|
|
937
|
-
"platform.angular_components.country_name_jm": "Jamaica",
|
|
938
|
-
"platform.angular_components.country_name_ms": "Montserrat",
|
|
939
|
-
"platform.angular_components.country_name_mp": "Ilhas Mariana do Norte",
|
|
940
|
-
"platform.angular_components.country_name_pr": "Porto Rico",
|
|
941
|
-
"platform.angular_components.country_name_kn": "Saint Kitts and Nevis",
|
|
942
|
-
"platform.angular_components.country_name_lc": "Saint Lucia",
|
|
943
|
-
"platform.angular_components.country_name_vc": "Saint Vincent and the Grenadines",
|
|
944
|
-
"platform.angular_components.country_name_tt": "Trinidad e Tobago",
|
|
945
|
-
"platform.angular_components.country_name_tc": "Ilhas Turcas e Caicos",
|
|
946
|
-
"platform.angular_components.country_name_fi": "Finlândia",
|
|
947
|
-
"platform.angular_components.country_name_rs": "Sérvia",
|
|
948
|
-
"platform.angular_components.country_name_zm": "Zâmbia",
|
|
949
|
-
"platform.angular_components.country_name_af": "Afghanistão",
|
|
950
|
-
"platform.angular_components.country_name_al": "Albânia",
|
|
951
|
-
"platform.angular_components.country_name_hr": "Croácia",
|
|
952
|
-
"platform.angular_components.country_name_ec": "Equador",
|
|
953
|
-
"platform.angular_components.country_name_et": "Etiópia",
|
|
954
|
-
"platform.angular_components.country_name_gh": "Gana",
|
|
955
|
-
"platform.angular_components.country_name_gr": "Grécia",
|
|
956
|
-
"platform.angular_components.country_name_ie": "Irlanda",
|
|
957
|
-
"platform.angular_components.country_name_it": "Itália",
|
|
958
|
-
"platform.angular_components.country_name_lr": "Libéria",
|
|
959
|
-
"platform.angular_components.country_name_na": "Namíbia",
|
|
960
|
-
"platform.angular_components.country_name_nz": "Nova Zelândia",
|
|
961
|
-
"platform.angular_components.country_name_sa": "Arábia Saudita",
|
|
962
|
-
"platform.angular_components.country_name_za": "África do Sul",
|
|
963
|
-
"platform.angular_components.country_name_lk": "Sri Lanka",
|
|
964
|
-
"platform.angular_components.country_name_sd": "Sudão",
|
|
965
|
-
"platform.angular_components.country_name_th": "Tailândia",
|
|
966
|
-
"platform.angular_components.country_name_ua": "Ucrânia",
|
|
967
|
-
"platform.angular_components.country_name_ae": "Emirados Árabes Unidos",
|
|
968
|
-
"platform.angular_components.country_name_va": "Vaticano",
|
|
969
|
-
"platform.angular_components.country_name_zw": "Zimbábue",
|
|
970
|
-
"platform.angular_components.country_name_dz": "Argélia",
|
|
971
|
-
"platform.angular_components.country_name_be": "Bélgica",
|
|
972
|
-
"platform.angular_components.country_name_yt": "Mayotte",
|
|
973
|
-
"platform.angular_components.country_name_bl": "Saint Barthelemy",
|
|
974
|
-
"platform.angular_components.country_name_mf": "Saint Martin",
|
|
975
|
-
"platform.angular_components.country_name_ad": "Andora",
|
|
976
|
-
"platform.angular_components.country_name_ao": "Angola",
|
|
977
|
-
"platform.angular_components.country_name_ba": "Bósnia e Herzegovina",
|
|
978
|
-
"platform.angular_components.country_name_bg": "Bulgária",
|
|
979
|
-
"platform.angular_components.country_name_kh": "Camboja",
|
|
980
|
-
"platform.angular_components.country_name_cz": "República Checa",
|
|
981
|
-
"platform.angular_components.country_name_gq": "Guiné Equatorial",
|
|
982
|
-
"platform.angular_components.country_name_gw": "Guiné-Bissau",
|
|
983
|
-
"platform.angular_components.country_name_li": "Liechtenstein",
|
|
984
|
-
"platform.angular_components.country_name_lu": "Luxemburgo",
|
|
985
|
-
"platform.angular_components.country_name_mk": "Macedónia",
|
|
986
|
-
"platform.angular_components.country_name_me": "Montenegro",
|
|
987
|
-
"platform.angular_components.country_name_pe": "Peru",
|
|
988
|
-
"platform.angular_components.country_name_pl": "Polónia",
|
|
989
|
-
"platform.angular_components.country_name_pt": "Portugal",
|
|
990
|
-
"platform.angular_components.country_name_si": "Slovenia",
|
|
991
|
-
"platform.angular_components.country_name_am": "Arménia",
|
|
992
|
-
"platform.angular_components.country_name_aw": "Aruba",
|
|
993
|
-
"platform.angular_components.country_name_bn": "Brunei",
|
|
994
|
-
"platform.angular_components.country_name_fj": "Fiji",
|
|
995
|
-
"platform.angular_components.country_name_gm": "Gâmbia",
|
|
996
|
-
"platform.angular_components.country_name_gy": "Guiana",
|
|
997
|
-
"platform.angular_components.country_name_is": "Islândia",
|
|
998
|
-
"platform.angular_components.country_name_fm": "Micronésia",
|
|
999
|
-
"platform.angular_components.country_name_nr": "Nauru",
|
|
1000
|
-
"platform.angular_components.country_name_nu": "Niue",
|
|
1001
|
-
"platform.angular_components.country_name_pw": "Palau",
|
|
1002
|
-
"platform.angular_components.country_name_st": "Sao Tome e Principe",
|
|
1003
|
-
"platform.angular_components.country_name_to": "Tonga",
|
|
1004
|
-
"platform.angular_components.country_name_vu": "Vanuatu",
|
|
1005
|
-
"platform.angular_components.country_name_fk": "Ilhas Falkland (Malvinas)",
|
|
1006
|
-
"platform.angular_components.country_name_fo": "Ilhas Feroé",
|
|
1007
|
-
"platform.angular_components.country_name_sh": "Saint Helena",
|
|
1008
|
-
"platform.angular_components.country_name_au": "Austrália",
|
|
1009
|
-
"platform.angular_components.country_name_cx": "Christmas Island",
|
|
1010
|
-
"platform.angular_components.country_name_cc": "Ilhas Cocos (Keeling)",
|
|
1011
|
-
"platform.angular_components.country_name_cd": "República Democrática do Congo",
|
|
1012
|
-
"platform.angular_components.country_name_kg": "Quirguistão",
|
|
1013
|
-
"platform.angular_components.country_name_ro": "Roménia",
|
|
1014
|
-
"platform.angular_components.country_name_rw": "Ruanda",
|
|
1015
|
-
"platform.angular_components.country_name_sk": "Slovakia",
|
|
1016
|
-
"platform.angular_components.country_name_sy": "Syria",
|
|
1017
|
-
"platform.angular_components.country_name_tw": "Taiwan",
|
|
1018
|
-
"platform.angular_components.country_name_tz": "Tanzânia",
|
|
1019
|
-
"platform.angular_components.country_name_ye": "Iémen (Iémen, Yemen)",
|
|
1020
|
-
"platform.angular_components.country_name_at": "Áustria",
|
|
1021
|
-
"platform.angular_components.country_name_ke": "Quénia (Kenya)",
|
|
1022
|
-
"platform.angular_components.country_name_ug": "Uganda",
|
|
1023
|
-
"platform.angular_components.country_name_az": "Azerbaijão",
|
|
1024
|
-
"platform.angular_components.country_name_ch": "Suiça",
|
|
1025
|
-
"platform.angular_components.country_name_vn": "Vietnã (Vietname)",
|
|
1026
|
-
"platform.angular_components.country_name_bh": "Bahrein",
|
|
1027
|
-
"platform.angular_components.country_name_cr": "Costa Rica",
|
|
1028
|
-
"platform.angular_components.country_name_sv": "El Salvador",
|
|
1029
|
-
"platform.angular_components.country_name_ee": "Estónia",
|
|
1030
|
-
"platform.angular_components.country_name_sz": "Suazilândia",
|
|
1031
|
-
"platform.angular_components.country_name_gt": "Guatemala",
|
|
1032
|
-
"platform.angular_components.country_name_hk": "Hong Kong",
|
|
1033
|
-
"platform.angular_components.country_name_ls": "Lesoto",
|
|
1034
|
-
"platform.angular_components.country_name_mo": "Macau",
|
|
1035
|
-
"platform.angular_components.country_name_mt": "Malta",
|
|
1036
|
-
"platform.angular_components.country_name_mu": "Maurícia",
|
|
1037
|
-
"platform.angular_components.country_name_mn": "Mongólia",
|
|
1038
|
-
"platform.angular_components.country_name_ni": "Nicaragua",
|
|
1039
|
-
"platform.angular_components.country_name_om": "Omã",
|
|
1040
|
-
"platform.angular_components.country_name_pg": "Papua-Nova Guiné",
|
|
1041
|
-
"platform.angular_components.country_name_qa": "Catar",
|
|
1042
|
-
"platform.angular_components.country_name_sg": "Cingapura",
|
|
1043
|
-
"platform.angular_components.country_name_tl": "Timor-Leste",
|
|
1044
|
-
"platform.angular_components.country_name_bd": "Bangladesh",
|
|
1045
|
-
"platform.angular_components.country_name_im": "Ilha de Man",
|
|
1046
|
-
"platform.angular_components.country_name_by": "Bielorrússia",
|
|
1047
|
-
"platform.angular_components.country_name_bz": "Belize",
|
|
1048
|
-
"platform.angular_components.country_name_mv": "Maldivas",
|
|
1049
|
-
"platform.angular_components.country_name_mh": "Ilhas Marshall",
|
|
1050
|
-
"platform.angular_components.country_name_sr": "Suriname",
|
|
1051
|
-
"platform.angular_components.country_name_bj": "Benim",
|
|
1052
|
-
"platform.angular_components.country_name_bt": "Butão",
|
|
1053
|
-
"platform.angular_components.country_name_bf": "Burkina Faso",
|
|
1054
|
-
"platform.angular_components.country_name_bi": "Burundi",
|
|
1055
|
-
"platform.angular_components.country_name_cf": "República Centro-Africana",
|
|
1056
|
-
"platform.angular_components.country_name_td": "Chad",
|
|
1057
|
-
"platform.angular_components.country_name_ci": "Costa do Marfim",
|
|
1058
|
-
"platform.angular_components.country_name_dk": "Dinamarca",
|
|
1059
|
-
"platform.angular_components.country_name_dj": "Djibouti",
|
|
1060
|
-
"platform.angular_components.country_name_fr": "França",
|
|
1061
|
-
"platform.angular_components.country_name_pf": "Polinésia Francesa",
|
|
1062
|
-
"platform.angular_components.country_name_ga": "Gabão",
|
|
1063
|
-
"platform.angular_components.country_name_ml": "Mali",
|
|
1064
|
-
"platform.angular_components.country_name_mr": "Mauritânia",
|
|
1065
|
-
"platform.angular_components.country_name_ne": "Níger",
|
|
1066
|
-
"platform.angular_components.country_name_sm": "San Marino",
|
|
1067
|
-
"platform.angular_components.country_name_tg": "Togo",
|
|
1068
|
-
"platform.angular_components.country_name_bo": "Bolívia",
|
|
1069
|
-
"platform.angular_components.country_name_gi": "Gibraltar",
|
|
1070
|
-
"platform.angular_components.country_name_ki": "Kiribati",
|
|
1071
|
-
"platform.angular_components.country_name_tv": "Tuvalu",
|
|
1072
|
-
"platform.angular_components.country_name_bw": "Botswana",
|
|
1073
|
-
"platform.angular_components.country_name_er": "Eritreia",
|
|
1074
|
-
"platform.angular_components.country_name_lv": "Letônia",
|
|
1075
|
-
"platform.angular_components.country_name_lb": "Líbano",
|
|
1076
|
-
"platform.angular_components.country_name_tn": "Tunísia",
|
|
1077
|
-
"platform.angular_components.country_name_cm": "Camarões",
|
|
1078
|
-
"platform.angular_components.country_name_cv": "Cabo Verde",
|
|
1079
|
-
"platform.angular_components.country_name_km": "Comores",
|
|
1080
|
-
"platform.angular_components.country_name_pm": "Saint Pierre and Miquelon",
|
|
1081
|
-
"platform.angular_components.country_name_cg": "República do Congo",
|
|
1082
|
-
"platform.angular_components.country_name_mz": "Moçambique",
|
|
1083
|
-
"platform.angular_components.country_name_mm": "Myanmar (Burma)",
|
|
1084
|
-
"platform.angular_components.country_name_ck": "Ilhas Cook",
|
|
1085
|
-
"platform.angular_components.country_name_cu": "Cuba",
|
|
1086
|
-
"platform.angular_components.country_name_cy": "Chipre",
|
|
1087
|
-
"platform.angular_components.country_name_eg": "Egito",
|
|
1088
|
-
"platform.angular_components.country_name_ir": "Irã",
|
|
1089
|
-
"platform.angular_components.country_name_iq": "Iraque",
|
|
1090
|
-
"platform.angular_components.country_name_ng": "Nigéria",
|
|
1091
|
-
"platform.angular_components.country_name_kp": "Coreia do Norte",
|
|
1092
|
-
"platform.angular_components.country_name_ph": "Filipinas",
|
|
1093
|
-
"platform.angular_components.country_name_ge": "Geórgia",
|
|
1094
|
-
"platform.angular_components.country_name_gn": "Guiné",
|
|
1095
|
-
"platform.angular_components.country_name_es": "Espanha",
|
|
1096
|
-
"platform.angular_components.country_name_de": "Alemanha",
|
|
1097
|
-
"platform.angular_components.country_name_gl": "Groelândia",
|
|
1098
|
-
"platform.angular_components.country_name_wf": "Wallis e Futuna",
|
|
1099
|
-
"platform.angular_components.country_name_ht": "Haiti",
|
|
1100
|
-
"platform.angular_components.country_name_hn": "Honduras",
|
|
1101
|
-
"platform.angular_components.country_name_pa": "Panamá",
|
|
1102
|
-
"platform.angular_components.country_name_hu": "Hungria",
|
|
1103
|
-
"platform.angular_components.country_name_in": "India",
|
|
1104
|
-
"platform.angular_components.country_name_id": "Indonésia",
|
|
1105
|
-
"platform.angular_components.country_name_il": "Israel",
|
|
1106
|
-
"platform.angular_components.country_name_jp": "Japão",
|
|
1107
|
-
"platform.angular_components.country_name_jo": "Jordânia",
|
|
1108
|
-
"platform.angular_components.country_name_kz": "Cazaquistão",
|
|
1109
|
-
"platform.angular_components.country_name_kw": "Kuwait",
|
|
1110
|
-
"platform.angular_components.country_name_la": "Laos",
|
|
1111
|
-
"platform.angular_components.country_name_ly": "Líbia",
|
|
1112
|
-
"platform.angular_components.country_name_lt": "Lituânia",
|
|
1113
|
-
"platform.angular_components.country_name_np": "Nepal",
|
|
1114
|
-
"platform.angular_components.country_name_mg": "Madagáscar",
|
|
1115
|
-
"platform.angular_components.country_name_mw": "Malawi",
|
|
1116
|
-
"platform.angular_components.country_name_my": "Malásia",
|
|
1117
|
-
"platform.angular_components.country_name_mx": "México",
|
|
1118
|
-
"platform.angular_components.country_name_md": "Moldávia",
|
|
1119
|
-
"platform.angular_components.country_name_mc": "Monaco",
|
|
1120
|
-
"platform.angular_components.country_name_ma": "Marrocos",
|
|
1121
|
-
"platform.angular_components.country_name_nl": "Países Baixos",
|
|
1122
|
-
"platform.angular_components.country_name_nc": "Nova Caledônia",
|
|
1123
|
-
"platform.angular_components.country_name_no": "Noruega",
|
|
1124
|
-
"platform.angular_components.country_name_pk": "Paquistão",
|
|
1125
|
-
"platform.angular_components.country_name_ru": "Rússia",
|
|
1126
|
-
"platform.angular_components.country_name_ws": "Samoa",
|
|
1127
|
-
"platform.angular_components.country_name_sb": "Ilhas Salomão",
|
|
1128
|
-
"platform.angular_components.country_name_sn": "Senegal",
|
|
1129
|
-
"platform.angular_components.country_name_sc": "Seychelles",
|
|
1130
|
-
"platform.angular_components.country_name_sl": "Serra Leoa",
|
|
1131
|
-
"platform.angular_components.country_name_so": "Somalia",
|
|
1132
|
-
"platform.angular_components.country_name_kr": "Coreia do Sul",
|
|
1133
|
-
"platform.angular_components.country_name_se": "Suécia",
|
|
1134
|
-
"platform.angular_components.country_name_tj": "Tajiquistão",
|
|
1135
|
-
"platform.angular_components.country_name_tk": "Tokelau",
|
|
1136
|
-
"platform.angular_components.country_name_tr": "Turquia",
|
|
1137
|
-
"platform.angular_components.country_name_tm": "Turquemenistão",
|
|
1138
|
-
"platform.angular_components.country_name_uz": "Uzbequistão",
|
|
1139
|
-
"platform.angular_components.country_name_ve": "Venezuela",
|
|
1140
|
-
"platform.angular_components.date_modified_custom_blob": "Enviado às {{hour}}:{{minutes}} de {{day}}/{{month}}/{{fullYear}}",
|
|
1141
|
-
"platform.angular_components.available-items": "Itens disponíveis",
|
|
1142
|
-
"platform.angular_components.selected-items": "Itens selecionados",
|
|
1143
|
-
"platform.angular_components.picklist-placeholder": "Busque pelo nome ou termo",
|
|
1144
|
-
"platform.angular_components.add_all": "Adicionar todos",
|
|
1145
|
-
"platform.angular_components.remove_all": "Remover todos",
|
|
1146
|
-
"platform.angular_components.country_name_gb": "Reino Unido",
|
|
1147
|
-
"platform.angular_components.insight_footer": "Conteúdo gerado por inteligência artificial. Sujeito a imprecisões.",
|
|
1148
|
-
"platform.angular_components.text_area_speech_recognition_placeholder": "Preencha o campo com, pelo menos, uma frase",
|
|
1149
|
-
"platform.angular_components.text_area_before_speech": "Grave ou ouça o texto clicando nos ícones",
|
|
1150
|
-
"platform.angular_components.text_area_while_speech": "Clique novamente no ícone para finalizar",
|
|
1151
|
-
"platform.angular_components.text_area_end_speech": "Gravação finalizada",
|
|
1152
|
-
"platform.angular_components.no_microphone_permission": "O acesso ao microfone está bloqueado. Ative a permissão nas configurações do navegador para continuar usando este recurso."
|
|
823
|
+
"tmsx_fnd.tmsx_angular_components.add": "Adicionar",
|
|
824
|
+
"tmsx_fnd.tmsx_angular_components.audit_created_by": "Criado por {{nome}} em {{data}} às {{hora}}.",
|
|
825
|
+
"tmsx_fnd.tmsx_angular_components.audit_modified_by": "Modificado por {{nome}} em {{data}} às {{hora}}.",
|
|
826
|
+
"tmsx_fnd.tmsx_angular_components.audit_inactivated_by": "Inativado por {{nome}} em {{data}} às {{hora}}.",
|
|
827
|
+
"tmsx_fnd.tmsx_angular_components.condicao_valor_lookup_condicional_no_audit": "Sem informações de auditoria",
|
|
828
|
+
"tmsx_fnd.tmsx_angular_components.delete": "Excluir",
|
|
829
|
+
"tmsx_fnd.tmsx_angular_components.edit": "Editar",
|
|
830
|
+
"tmsx_fnd.tmsx_angular_components.error_forbidden_description": "Você não tem permissão para acessar este recurso.",
|
|
831
|
+
"tmsx_fnd.tmsx_angular_components.error_forbidden_title": "Acesso Negado",
|
|
832
|
+
"tmsx_fnd.tmsx_angular_components.error_not_found_description": "O recurso solicitado não foi encontrado.",
|
|
833
|
+
"tmsx_fnd.tmsx_angular_components.error_not_found_title": "Não Encontrado",
|
|
834
|
+
"tmsx_fnd.tmsx_angular_components.error_unauthorized_description": "Você não está autorizado a acessar este recurso.",
|
|
835
|
+
"tmsx_fnd.tmsx_angular_components.error_unauthorized_title": "Não Autorizado",
|
|
836
|
+
"tmsx_fnd.tmsx_angular_components.grid_aninhada": "Grid Aninhada",
|
|
837
|
+
"tmsx_fnd.tmsx_angular_components.grid_editable_nested_calendar_required": "É necessário informar a data",
|
|
838
|
+
"tmsx_fnd.tmsx_angular_components.grid_editable_nested_cancelar": "Cancelar",
|
|
839
|
+
"tmsx_fnd.tmsx_angular_components.grid_editable_nested_editar": "Editar valores",
|
|
840
|
+
"tmsx_fnd.tmsx_angular_components.grid_editable_nested_paging": "registros encontrados",
|
|
841
|
+
"tmsx_fnd.tmsx_angular_components.grid_editable_nested_salvar": "Salvar alterações",
|
|
842
|
+
"tmsx_fnd.tmsx_angular_components.list_grid_boolean_false": "Não",
|
|
843
|
+
"tmsx_fnd.tmsx_angular_components.list_grid_boolean_true": "Sim",
|
|
844
|
+
"tmsx_fnd.tmsx_angular_components.list_grid_empty_field": "Não informado",
|
|
845
|
+
"tmsx_fnd.tmsx_angular_components.painel_processamento": "Painel de Processamento",
|
|
846
|
+
"tmsx_fnd.tmsx_angular_components.painel_processamento_api_error": "API de envio não definida",
|
|
847
|
+
"tmsx_fnd.tmsx_angular_components.painel_processamento_status_failed": "Ocorreu um erro",
|
|
848
|
+
"tmsx_fnd.tmsx_angular_components.painel_processamento_status_pending": "Pendente",
|
|
849
|
+
"tmsx_fnd.tmsx_angular_components.painel_processamento_status_processing": "Processando",
|
|
850
|
+
"tmsx_fnd.tmsx_angular_components.painel_processamento_status_success": "Finalizado com sucesso",
|
|
851
|
+
"tmsx_fnd.tmsx_angular_components.registro": "Registro",
|
|
852
|
+
"tmsx_fnd.tmsx_angular_components.showcase_painel_processamento_title": "Demonstração do Painel de Processamento",
|
|
853
|
+
"tmsx_fnd.tmsx_angular_components.showcase_table_title": "Demonstração da Tabela",
|
|
854
|
+
"tmsx_fnd.tmsx_angular_components.showcase_title": "Showcase",
|
|
855
|
+
"tmsx_fnd.tmsx_angular_components.situacao_ativo_false": "Inativo",
|
|
856
|
+
"tmsx_fnd.tmsx_angular_components.situacao_ativo_true": "Ativo",
|
|
857
|
+
"tmsx_fnd.tmsx_angular_components.status": "Situação",
|
|
858
|
+
"tmsx_fnd.tmsx_angular_components.total_records": "{{ value }} registros encontrados"
|
|
1153
859
|
};
|
|
1154
860
|
|
|
1155
861
|
/**
|