@procore/data-table 14.36.0 → 14.37.0
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/CHANGELOG.md +12 -0
- package/dist/legacy/index.cjs +706 -14
- package/dist/legacy/index.js +706 -14
- package/dist/modern/index.cjs +705 -13
- package/dist/modern/index.js +705 -13
- package/package.json +3 -3
package/dist/modern/index.js
CHANGED
|
@@ -55394,7 +55394,7 @@ function RowCheckbox(props) {
|
|
|
55394
55394
|
removeEventListenerFromGrid("rowSelected", handleRowSelection, props.api);
|
|
55395
55395
|
};
|
|
55396
55396
|
}, []);
|
|
55397
|
-
|
|
55397
|
+
let checkbox = /* @__PURE__ */ React80.createElement(
|
|
55398
55398
|
Checkbox,
|
|
55399
55399
|
{
|
|
55400
55400
|
checked: selected,
|
|
@@ -55413,7 +55413,11 @@ function RowCheckbox(props) {
|
|
|
55413
55413
|
},
|
|
55414
55414
|
onChange: noop2
|
|
55415
55415
|
}
|
|
55416
|
-
)
|
|
55416
|
+
);
|
|
55417
|
+
if (props.data?.checkboxTooltip) {
|
|
55418
|
+
checkbox = /* @__PURE__ */ React80.createElement(Tooltip, { overlay: props.data?.checkboxTooltip, placement: "right" }, /* @__PURE__ */ React80.createElement("span", null, checkbox));
|
|
55419
|
+
}
|
|
55420
|
+
return /* @__PURE__ */ React80.createElement(Box, { paddingRight: "md" }, checkbox);
|
|
55417
55421
|
}
|
|
55418
55422
|
|
|
55419
55423
|
// src/CellRenderers/AutoGroupCell.tsx
|
|
@@ -81298,7 +81302,7 @@ __decorate216([
|
|
|
81298
81302
|
__decorate216([
|
|
81299
81303
|
Validate(NUMBER())
|
|
81300
81304
|
], TooltipPosition.prototype, "yOffset", void 0);
|
|
81301
|
-
var
|
|
81305
|
+
var Tooltip7 = class _Tooltip {
|
|
81302
81306
|
constructor(canvasElement, document2, container) {
|
|
81303
81307
|
this.enableInteraction = false;
|
|
81304
81308
|
this.enabled = true;
|
|
@@ -81434,25 +81438,25 @@ var Tooltip6 = class _Tooltip {
|
|
|
81434
81438
|
this._showArrow = show;
|
|
81435
81439
|
}
|
|
81436
81440
|
};
|
|
81437
|
-
|
|
81441
|
+
Tooltip7.tooltipDocuments = [];
|
|
81438
81442
|
__decorate216([
|
|
81439
81443
|
Validate(BOOLEAN)
|
|
81440
|
-
],
|
|
81444
|
+
], Tooltip7.prototype, "enabled", void 0);
|
|
81441
81445
|
__decorate216([
|
|
81442
81446
|
Validate(OPT_BOOLEAN)
|
|
81443
|
-
],
|
|
81447
|
+
], Tooltip7.prototype, "showArrow", void 0);
|
|
81444
81448
|
__decorate216([
|
|
81445
81449
|
Validate(OPT_STRING)
|
|
81446
|
-
],
|
|
81450
|
+
], Tooltip7.prototype, "class", void 0);
|
|
81447
81451
|
__decorate216([
|
|
81448
81452
|
Validate(NUMBER(0))
|
|
81449
|
-
],
|
|
81453
|
+
], Tooltip7.prototype, "delay", void 0);
|
|
81450
81454
|
__decorate216([
|
|
81451
81455
|
DeprecatedAndRenamedTo("range", (value) => value ? "nearest" : "exact")
|
|
81452
|
-
],
|
|
81456
|
+
], Tooltip7.prototype, "tracking", void 0);
|
|
81453
81457
|
__decorate216([
|
|
81454
81458
|
Validate(INTERACTION_RANGE)
|
|
81455
|
-
],
|
|
81459
|
+
], Tooltip7.prototype, "range", void 0);
|
|
81456
81460
|
|
|
81457
81461
|
// ../../node_modules/ag-charts-community/dist/esm/es6/chart/data/aggregateFunctions.mjs
|
|
81458
81462
|
function sumValues(values2, accumulator = [0, 0]) {
|
|
@@ -86437,7 +86441,7 @@ var Chart = class extends Observable {
|
|
|
86437
86441
|
this.animationManager = new AnimationManager(this.interactionManager);
|
|
86438
86442
|
this.animationManager.skipAnimations = true;
|
|
86439
86443
|
this.animationManager.play();
|
|
86440
|
-
this.tooltip = new
|
|
86444
|
+
this.tooltip = new Tooltip7(this.scene.canvas.element, document2, document2.body);
|
|
86441
86445
|
this.tooltipManager = new TooltipManager(this.tooltip, this.interactionManager);
|
|
86442
86446
|
this.overlays = new ChartOverlays(this.element);
|
|
86443
86447
|
this.highlight = new ChartHighlight();
|
|
@@ -100893,7 +100897,7 @@ __export(integrated_charts_scene_exports, {
|
|
|
100893
100897
|
Shape: () => Shape,
|
|
100894
100898
|
Square: () => Square,
|
|
100895
100899
|
Text: () => Text,
|
|
100896
|
-
Tooltip: () =>
|
|
100900
|
+
Tooltip: () => Tooltip7,
|
|
100897
100901
|
getFont: () => getFont2,
|
|
100898
100902
|
getMarker: () => getMarker,
|
|
100899
100903
|
toRadians: () => toRadians,
|
|
@@ -106113,6 +106117,177 @@ var is_IS_default = {
|
|
|
106113
106117
|
}
|
|
106114
106118
|
};
|
|
106115
106119
|
|
|
106120
|
+
// src/locales/it-IT.json
|
|
106121
|
+
var it_IT_default = {
|
|
106122
|
+
dataTable: {
|
|
106123
|
+
emptyState: {
|
|
106124
|
+
noFilteredResults: {
|
|
106125
|
+
description: "Controllare l'ortografia e le opzioni di filtro oppure effettuare la ricerca con una parola chiave diversa.",
|
|
106126
|
+
title: "Nessun elemento corrispondente alla ricerca",
|
|
106127
|
+
itemsTitle: "Nessuna corrispondenza %{itemsLabel} con la ricerca"
|
|
106128
|
+
},
|
|
106129
|
+
noResults: {
|
|
106130
|
+
description: "Gli elementi creati dal team saranno accessibili qui. ",
|
|
106131
|
+
title: "Al momento non sono presenti elementi da visualizzare",
|
|
106132
|
+
itemsTitle: "Al momento non sono presenti %{itemsLabel} da visualizzare",
|
|
106133
|
+
tooltip: "Il pulsante %{featureName} sar\xE0 attivato dopo l'aggiunta delle informazioni a %{tableName}",
|
|
106134
|
+
searchTooltip: "La ricerca sar\xE0 attivata dopo l'aggiunta delle informazioni a %{tableName}",
|
|
106135
|
+
featureFilter: "Filtro",
|
|
106136
|
+
featureQuickFilter: "Filtro rapido",
|
|
106137
|
+
featureGroupBy: "Raggruppa per",
|
|
106138
|
+
featureConfigure: "Configura",
|
|
106139
|
+
tableNameFallback: "tabella"
|
|
106140
|
+
}
|
|
106141
|
+
},
|
|
106142
|
+
bulkActions: {
|
|
106143
|
+
apply: "Applica",
|
|
106144
|
+
bulkEdit: "Modifica in blocco",
|
|
106145
|
+
cancel: "Annulla",
|
|
106146
|
+
editValues: "Modifica valori",
|
|
106147
|
+
error: "Impossibile aggiornare gli elementi. Riprovare.",
|
|
106148
|
+
placeholderForField: "Inserire %{fieldName}",
|
|
106149
|
+
selection: "%{count} %{number} selezionati",
|
|
106150
|
+
selection_count: {
|
|
106151
|
+
zero: "%{count} elementi selezionati",
|
|
106152
|
+
one: "%{count} elemento selezionato",
|
|
106153
|
+
other: "%{count} elementi selezionati"
|
|
106154
|
+
},
|
|
106155
|
+
success: "Gli elementi sono stati aggiornati correttamente.",
|
|
106156
|
+
one: "elemento",
|
|
106157
|
+
many: "elementi"
|
|
106158
|
+
},
|
|
106159
|
+
exporting: "Esportazione in corso...",
|
|
106160
|
+
filters: {
|
|
106161
|
+
filters: "Filtri",
|
|
106162
|
+
moreFilters: "Altri filtri",
|
|
106163
|
+
clearAllFilters: "Cancella tutti i filtri",
|
|
106164
|
+
close: "Chiudi",
|
|
106165
|
+
locationFilter: {
|
|
106166
|
+
selectAll: "Seleziona tutto",
|
|
106167
|
+
includeSublocations: "Includi posizioni secondarie",
|
|
106168
|
+
searchLocations: "Cerca posizioni",
|
|
106169
|
+
locations: "Posizioni"
|
|
106170
|
+
},
|
|
106171
|
+
numberFilter: {
|
|
106172
|
+
labels: {
|
|
106173
|
+
and: "e",
|
|
106174
|
+
input_placeholder: "Inserisci valore",
|
|
106175
|
+
placeholder: "Selezionare un elemento"
|
|
106176
|
+
},
|
|
106177
|
+
options: {
|
|
106178
|
+
any_value: "Qualsiasi valore",
|
|
106179
|
+
is_between: "\xC8 compreso tra",
|
|
106180
|
+
greater_than: "\xC8 maggiore di",
|
|
106181
|
+
greater_than_equal_to: "\xC8 maggiore o uguale a",
|
|
106182
|
+
less_than: "\xC8 minore di",
|
|
106183
|
+
less_than_equal_to: "\xC8 minore o uguale a",
|
|
106184
|
+
no_value: "Nessun valore"
|
|
106185
|
+
}
|
|
106186
|
+
},
|
|
106187
|
+
singleSelectFilter: {
|
|
106188
|
+
placeholder: "Selezionare un valore"
|
|
106189
|
+
},
|
|
106190
|
+
multiSelectQuickFilter: {
|
|
106191
|
+
ariaLabel: "Filtro rapido: selezionare pi\xF9 opzioni"
|
|
106192
|
+
},
|
|
106193
|
+
singleSelectQuickFilter: {
|
|
106194
|
+
ariaLabel: "Filtro rapido: selezionare un'opzione"
|
|
106195
|
+
}
|
|
106196
|
+
},
|
|
106197
|
+
loading: {
|
|
106198
|
+
initial: "Caricamento delle informazioni in corso.",
|
|
106199
|
+
secondary: "Caricamento delle informazioni in corso, grazie per la pazienza."
|
|
106200
|
+
},
|
|
106201
|
+
menuOptions: {
|
|
106202
|
+
sortMenuItem: {
|
|
106203
|
+
label: "Ordina per questa colonna",
|
|
106204
|
+
sortAscItem: "Ordina colonna (crescente)",
|
|
106205
|
+
sortDescItem: "Ordina colonna (decrescente)",
|
|
106206
|
+
sortResetItem: "Colonna non ordinata"
|
|
106207
|
+
},
|
|
106208
|
+
expandAllGroups: "Espandi tutti i gruppi",
|
|
106209
|
+
collapseAllGroups: "Comprimi tutti i gruppi",
|
|
106210
|
+
pinColumn: "Fissa colonna",
|
|
106211
|
+
pinLeft: "Fissa a sinistra",
|
|
106212
|
+
pinRight: "Fissa a destra",
|
|
106213
|
+
noPin: "Sblocca",
|
|
106214
|
+
autoSizeThisColumn: "Dimensione automatica per questa colonna",
|
|
106215
|
+
autoSizeAllColumns: "Dimensione automatica per tutte le colonne",
|
|
106216
|
+
hideColumn: "Nascondi colonna",
|
|
106217
|
+
resetColumns: "Reimposta colonne",
|
|
106218
|
+
unGroupBy: "Annulla raggruppamento per {{label}}",
|
|
106219
|
+
groupBy: "Raggruppa per {{label}}"
|
|
106220
|
+
},
|
|
106221
|
+
grandTotals: "Totali generali",
|
|
106222
|
+
search: "Cerca",
|
|
106223
|
+
subtotals: "Subtotali",
|
|
106224
|
+
tableSettings: {
|
|
106225
|
+
configureColumns: "Configura colonne",
|
|
106226
|
+
resetToDefault: "Mostra tutto",
|
|
106227
|
+
rowHeight: "Altezza riga",
|
|
106228
|
+
small: "Piccola",
|
|
106229
|
+
medium: "Media",
|
|
106230
|
+
large: "Grande",
|
|
106231
|
+
tableSettings: "Impostazioni tabella",
|
|
106232
|
+
groupBy: "Raggruppa per:",
|
|
106233
|
+
reset: "Reimposta",
|
|
106234
|
+
selectColumnGroup: "Selezionare una colonna da usare per il raggruppamento",
|
|
106235
|
+
configure: "Configura"
|
|
106236
|
+
},
|
|
106237
|
+
rowGroupToggle: {
|
|
106238
|
+
expandTierOne: "Aprire i primi gruppi nella tabella.",
|
|
106239
|
+
expandAll: "Aprire tutti i gruppi nella tabella.",
|
|
106240
|
+
collapseAll: "Chiudere tutti i gruppi nella tabella."
|
|
106241
|
+
},
|
|
106242
|
+
columnGroupToggle: {
|
|
106243
|
+
collapse: "Comprimi gruppo di colonne",
|
|
106244
|
+
expand: "Espandi gruppo di colonne"
|
|
106245
|
+
},
|
|
106246
|
+
cells: {
|
|
106247
|
+
textCell: {
|
|
106248
|
+
placeholder: "Inserisci testo"
|
|
106249
|
+
},
|
|
106250
|
+
currencyCell: {
|
|
106251
|
+
placeholder: "Inserisci valuta"
|
|
106252
|
+
},
|
|
106253
|
+
numberCell: {
|
|
106254
|
+
placeholder: "Inserisci numero"
|
|
106255
|
+
},
|
|
106256
|
+
percentCell: {
|
|
106257
|
+
placeholder: "Inserisci %"
|
|
106258
|
+
},
|
|
106259
|
+
pillCell: {
|
|
106260
|
+
placeholder: "Seleziona {{label}}"
|
|
106261
|
+
},
|
|
106262
|
+
selectCell: {
|
|
106263
|
+
placeholder: "Seleziona {{label}}"
|
|
106264
|
+
},
|
|
106265
|
+
multiSelectCell: {
|
|
106266
|
+
placeholder: "Seleziona valori"
|
|
106267
|
+
},
|
|
106268
|
+
booleanCell: {
|
|
106269
|
+
options: {
|
|
106270
|
+
yes: "S\xEC",
|
|
106271
|
+
no: "No"
|
|
106272
|
+
}
|
|
106273
|
+
}
|
|
106274
|
+
},
|
|
106275
|
+
filterRenders: {
|
|
106276
|
+
dateFilter: {
|
|
106277
|
+
single: "Singolo",
|
|
106278
|
+
range: "Intervallo"
|
|
106279
|
+
}
|
|
106280
|
+
},
|
|
106281
|
+
groupCell: {
|
|
106282
|
+
expand: "Espandi gruppo",
|
|
106283
|
+
collapse: "Comprimi gruppo"
|
|
106284
|
+
},
|
|
106285
|
+
rowCheckbox: {
|
|
106286
|
+
ariaLabel: "Seleziona riga"
|
|
106287
|
+
}
|
|
106288
|
+
}
|
|
106289
|
+
};
|
|
106290
|
+
|
|
106116
106291
|
// src/locales/ja-JP.json
|
|
106117
106292
|
var ja_JP_default = {
|
|
106118
106293
|
dataTable: {
|
|
@@ -106284,6 +106459,177 @@ var ja_JP_default = {
|
|
|
106284
106459
|
}
|
|
106285
106460
|
};
|
|
106286
106461
|
|
|
106462
|
+
// src/locales/nb-NO.json
|
|
106463
|
+
var nb_NO_default = {
|
|
106464
|
+
dataTable: {
|
|
106465
|
+
emptyState: {
|
|
106466
|
+
noFilteredResults: {
|
|
106467
|
+
description: "Check your spelling and filter options, or search for a different keyword.",
|
|
106468
|
+
title: "No Items Match Your Search",
|
|
106469
|
+
itemsTitle: "No %{itemsLabel} Match Your Search"
|
|
106470
|
+
},
|
|
106471
|
+
noResults: {
|
|
106472
|
+
description: "Once your team creates these items, you can access them here. ",
|
|
106473
|
+
title: "There Are No Items to Display Right Now",
|
|
106474
|
+
itemsTitle: "There Are No %{itemsLabel} to Display Right Now",
|
|
106475
|
+
tooltip: "The %{featureName} button will be enabled once you add information to the %{tableName}",
|
|
106476
|
+
searchTooltip: "Search will be enabled once you add information to the %{tableName}",
|
|
106477
|
+
featureFilter: "Filter",
|
|
106478
|
+
featureQuickFilter: "Quick Filter",
|
|
106479
|
+
featureGroupBy: "Group By",
|
|
106480
|
+
featureConfigure: "Configure",
|
|
106481
|
+
tableNameFallback: "table"
|
|
106482
|
+
}
|
|
106483
|
+
},
|
|
106484
|
+
bulkActions: {
|
|
106485
|
+
apply: "Apply",
|
|
106486
|
+
bulkEdit: "Bulk Edit",
|
|
106487
|
+
cancel: "Cancel",
|
|
106488
|
+
editValues: "Edit Values",
|
|
106489
|
+
error: "Sorry, the items couldn't be updated. Try again.",
|
|
106490
|
+
placeholderForField: "Enter %{fieldName}",
|
|
106491
|
+
selection: "%{count} %{number} selected",
|
|
106492
|
+
selection_count: {
|
|
106493
|
+
zero: "%{count} items selected",
|
|
106494
|
+
one: "%{count} item selected",
|
|
106495
|
+
other: "%{count} items selected"
|
|
106496
|
+
},
|
|
106497
|
+
success: "The items were successfully updated.",
|
|
106498
|
+
one: "item",
|
|
106499
|
+
many: "items"
|
|
106500
|
+
},
|
|
106501
|
+
exporting: "Exporting...",
|
|
106502
|
+
filters: {
|
|
106503
|
+
filters: "Filters",
|
|
106504
|
+
moreFilters: "More Filters",
|
|
106505
|
+
clearAllFilters: "Clear All Filters",
|
|
106506
|
+
close: "Close",
|
|
106507
|
+
locationFilter: {
|
|
106508
|
+
selectAll: "Select all",
|
|
106509
|
+
includeSublocations: "Include sublocations",
|
|
106510
|
+
searchLocations: "Search locations",
|
|
106511
|
+
locations: "Locations"
|
|
106512
|
+
},
|
|
106513
|
+
numberFilter: {
|
|
106514
|
+
labels: {
|
|
106515
|
+
and: "and",
|
|
106516
|
+
input_placeholder: "Enter Value",
|
|
106517
|
+
placeholder: "Select an item"
|
|
106518
|
+
},
|
|
106519
|
+
options: {
|
|
106520
|
+
any_value: "Any Value",
|
|
106521
|
+
is_between: "Is Between",
|
|
106522
|
+
greater_than: "Is Greater Than",
|
|
106523
|
+
greater_than_equal_to: "Is Greater Than or Equal To",
|
|
106524
|
+
less_than: "Is Less Than",
|
|
106525
|
+
less_than_equal_to: "Is Less Than or Equal To",
|
|
106526
|
+
no_value: "No Value"
|
|
106527
|
+
}
|
|
106528
|
+
},
|
|
106529
|
+
singleSelectFilter: {
|
|
106530
|
+
placeholder: "Select a Value"
|
|
106531
|
+
},
|
|
106532
|
+
multiSelectQuickFilter: {
|
|
106533
|
+
ariaLabel: "Quick filter: Select multiple options"
|
|
106534
|
+
},
|
|
106535
|
+
singleSelectQuickFilter: {
|
|
106536
|
+
ariaLabel: "Quick filter: Select an option"
|
|
106537
|
+
}
|
|
106538
|
+
},
|
|
106539
|
+
loading: {
|
|
106540
|
+
initial: "Information loading.",
|
|
106541
|
+
secondary: "Information loading, thanks for your patience."
|
|
106542
|
+
},
|
|
106543
|
+
menuOptions: {
|
|
106544
|
+
sortMenuItem: {
|
|
106545
|
+
label: "Sort By This Column",
|
|
106546
|
+
sortAscItem: "Sort Column Ascending",
|
|
106547
|
+
sortDescItem: "Sort Column Descending",
|
|
106548
|
+
sortResetItem: "Column Not Sorted"
|
|
106549
|
+
},
|
|
106550
|
+
expandAllGroups: "Expand All Groups",
|
|
106551
|
+
collapseAllGroups: "Collapse All Groups",
|
|
106552
|
+
pinColumn: "Pin Column",
|
|
106553
|
+
pinLeft: "Pin Left",
|
|
106554
|
+
pinRight: "Pin Right",
|
|
106555
|
+
noPin: "No Pin",
|
|
106556
|
+
autoSizeThisColumn: "Autosize This Column",
|
|
106557
|
+
autoSizeAllColumns: "Autosize All Columns",
|
|
106558
|
+
hideColumn: "Hide Column",
|
|
106559
|
+
resetColumns: "Reset Columns",
|
|
106560
|
+
unGroupBy: "Un-Group by {{label}}",
|
|
106561
|
+
groupBy: "Group by {{label}}"
|
|
106562
|
+
},
|
|
106563
|
+
grandTotals: "Grand Totals",
|
|
106564
|
+
search: "Search",
|
|
106565
|
+
subtotals: "Subtotals",
|
|
106566
|
+
tableSettings: {
|
|
106567
|
+
configureColumns: "Configure Columns",
|
|
106568
|
+
resetToDefault: "Show All",
|
|
106569
|
+
rowHeight: "Row Height",
|
|
106570
|
+
small: "Small",
|
|
106571
|
+
medium: "Medium",
|
|
106572
|
+
large: "Large",
|
|
106573
|
+
tableSettings: "Table Settings",
|
|
106574
|
+
groupBy: "Group by:",
|
|
106575
|
+
reset: "Reset",
|
|
106576
|
+
selectColumnGroup: "Select a column to group",
|
|
106577
|
+
configure: "Configure"
|
|
106578
|
+
},
|
|
106579
|
+
rowGroupToggle: {
|
|
106580
|
+
expandTierOne: "Open first groups in the table.",
|
|
106581
|
+
expandAll: "Open all groups in the table.",
|
|
106582
|
+
collapseAll: "Close all groups in the table."
|
|
106583
|
+
},
|
|
106584
|
+
columnGroupToggle: {
|
|
106585
|
+
collapse: "Collapse column group",
|
|
106586
|
+
expand: "Expand column group"
|
|
106587
|
+
},
|
|
106588
|
+
cells: {
|
|
106589
|
+
textCell: {
|
|
106590
|
+
placeholder: "Enter text"
|
|
106591
|
+
},
|
|
106592
|
+
currencyCell: {
|
|
106593
|
+
placeholder: "Enter currency"
|
|
106594
|
+
},
|
|
106595
|
+
numberCell: {
|
|
106596
|
+
placeholder: "Enter number"
|
|
106597
|
+
},
|
|
106598
|
+
percentCell: {
|
|
106599
|
+
placeholder: "Enter %"
|
|
106600
|
+
},
|
|
106601
|
+
pillCell: {
|
|
106602
|
+
placeholder: "Select {{label}}"
|
|
106603
|
+
},
|
|
106604
|
+
selectCell: {
|
|
106605
|
+
placeholder: "Select {{label}}"
|
|
106606
|
+
},
|
|
106607
|
+
multiSelectCell: {
|
|
106608
|
+
placeholder: "Select Values"
|
|
106609
|
+
},
|
|
106610
|
+
booleanCell: {
|
|
106611
|
+
options: {
|
|
106612
|
+
yes: "Yes",
|
|
106613
|
+
no: "No"
|
|
106614
|
+
}
|
|
106615
|
+
}
|
|
106616
|
+
},
|
|
106617
|
+
filterRenders: {
|
|
106618
|
+
dateFilter: {
|
|
106619
|
+
single: "Single",
|
|
106620
|
+
range: "Range"
|
|
106621
|
+
}
|
|
106622
|
+
},
|
|
106623
|
+
groupCell: {
|
|
106624
|
+
expand: "Expand group",
|
|
106625
|
+
collapse: "Collapse group"
|
|
106626
|
+
},
|
|
106627
|
+
rowCheckbox: {
|
|
106628
|
+
ariaLabel: "Select Row"
|
|
106629
|
+
}
|
|
106630
|
+
}
|
|
106631
|
+
};
|
|
106632
|
+
|
|
106287
106633
|
// src/locales/pl-PL.json
|
|
106288
106634
|
var pl_PL_default = {
|
|
106289
106635
|
dataTable: {
|
|
@@ -106797,6 +107143,177 @@ var pt_BR_default = {
|
|
|
106797
107143
|
}
|
|
106798
107144
|
};
|
|
106799
107145
|
|
|
107146
|
+
// src/locales/pt-PT.json
|
|
107147
|
+
var pt_PT_default = {
|
|
107148
|
+
dataTable: {
|
|
107149
|
+
emptyState: {
|
|
107150
|
+
noFilteredResults: {
|
|
107151
|
+
description: "Check your spelling and filter options, or search for a different keyword.",
|
|
107152
|
+
title: "No Items Match Your Search",
|
|
107153
|
+
itemsTitle: "No %{itemsLabel} Match Your Search"
|
|
107154
|
+
},
|
|
107155
|
+
noResults: {
|
|
107156
|
+
description: "Once your team creates these items, you can access them here. ",
|
|
107157
|
+
title: "There Are No Items to Display Right Now",
|
|
107158
|
+
itemsTitle: "There Are No %{itemsLabel} to Display Right Now",
|
|
107159
|
+
tooltip: "The %{featureName} button will be enabled once you add information to the %{tableName}",
|
|
107160
|
+
searchTooltip: "Search will be enabled once you add information to the %{tableName}",
|
|
107161
|
+
featureFilter: "Filter",
|
|
107162
|
+
featureQuickFilter: "Quick Filter",
|
|
107163
|
+
featureGroupBy: "Group By",
|
|
107164
|
+
featureConfigure: "Configure",
|
|
107165
|
+
tableNameFallback: "table"
|
|
107166
|
+
}
|
|
107167
|
+
},
|
|
107168
|
+
bulkActions: {
|
|
107169
|
+
apply: "Apply",
|
|
107170
|
+
bulkEdit: "Bulk Edit",
|
|
107171
|
+
cancel: "Cancel",
|
|
107172
|
+
editValues: "Edit Values",
|
|
107173
|
+
error: "Sorry, the items couldn't be updated. Try again.",
|
|
107174
|
+
placeholderForField: "Enter %{fieldName}",
|
|
107175
|
+
selection: "%{count} %{number} selected",
|
|
107176
|
+
selection_count: {
|
|
107177
|
+
zero: "%{count} items selected",
|
|
107178
|
+
one: "%{count} item selected",
|
|
107179
|
+
other: "%{count} items selected"
|
|
107180
|
+
},
|
|
107181
|
+
success: "The items were successfully updated.",
|
|
107182
|
+
one: "item",
|
|
107183
|
+
many: "items"
|
|
107184
|
+
},
|
|
107185
|
+
exporting: "Exporting...",
|
|
107186
|
+
filters: {
|
|
107187
|
+
filters: "Filters",
|
|
107188
|
+
moreFilters: "More Filters",
|
|
107189
|
+
clearAllFilters: "Clear All Filters",
|
|
107190
|
+
close: "Close",
|
|
107191
|
+
locationFilter: {
|
|
107192
|
+
selectAll: "Select all",
|
|
107193
|
+
includeSublocations: "Include sublocations",
|
|
107194
|
+
searchLocations: "Search locations",
|
|
107195
|
+
locations: "Locations"
|
|
107196
|
+
},
|
|
107197
|
+
numberFilter: {
|
|
107198
|
+
labels: {
|
|
107199
|
+
and: "and",
|
|
107200
|
+
input_placeholder: "Enter Value",
|
|
107201
|
+
placeholder: "Select an item"
|
|
107202
|
+
},
|
|
107203
|
+
options: {
|
|
107204
|
+
any_value: "Any Value",
|
|
107205
|
+
is_between: "Is Between",
|
|
107206
|
+
greater_than: "Is Greater Than",
|
|
107207
|
+
greater_than_equal_to: "Is Greater Than or Equal To",
|
|
107208
|
+
less_than: "Is Less Than",
|
|
107209
|
+
less_than_equal_to: "Is Less Than or Equal To",
|
|
107210
|
+
no_value: "No Value"
|
|
107211
|
+
}
|
|
107212
|
+
},
|
|
107213
|
+
singleSelectFilter: {
|
|
107214
|
+
placeholder: "Select a Value"
|
|
107215
|
+
},
|
|
107216
|
+
multiSelectQuickFilter: {
|
|
107217
|
+
ariaLabel: "Quick filter: Select multiple options"
|
|
107218
|
+
},
|
|
107219
|
+
singleSelectQuickFilter: {
|
|
107220
|
+
ariaLabel: "Quick filter: Select an option"
|
|
107221
|
+
}
|
|
107222
|
+
},
|
|
107223
|
+
loading: {
|
|
107224
|
+
initial: "Information loading.",
|
|
107225
|
+
secondary: "Information loading, thanks for your patience."
|
|
107226
|
+
},
|
|
107227
|
+
menuOptions: {
|
|
107228
|
+
sortMenuItem: {
|
|
107229
|
+
label: "Sort By This Column",
|
|
107230
|
+
sortAscItem: "Sort Column Ascending",
|
|
107231
|
+
sortDescItem: "Sort Column Descending",
|
|
107232
|
+
sortResetItem: "Column Not Sorted"
|
|
107233
|
+
},
|
|
107234
|
+
expandAllGroups: "Expand All Groups",
|
|
107235
|
+
collapseAllGroups: "Collapse All Groups",
|
|
107236
|
+
pinColumn: "Pin Column",
|
|
107237
|
+
pinLeft: "Pin Left",
|
|
107238
|
+
pinRight: "Pin Right",
|
|
107239
|
+
noPin: "No Pin",
|
|
107240
|
+
autoSizeThisColumn: "Autosize This Column",
|
|
107241
|
+
autoSizeAllColumns: "Autosize All Columns",
|
|
107242
|
+
hideColumn: "Hide Column",
|
|
107243
|
+
resetColumns: "Reset Columns",
|
|
107244
|
+
unGroupBy: "Un-Group by {{label}}",
|
|
107245
|
+
groupBy: "Group by {{label}}"
|
|
107246
|
+
},
|
|
107247
|
+
grandTotals: "Grand Totals",
|
|
107248
|
+
search: "Search",
|
|
107249
|
+
subtotals: "Subtotals",
|
|
107250
|
+
tableSettings: {
|
|
107251
|
+
configureColumns: "Configure Columns",
|
|
107252
|
+
resetToDefault: "Show All",
|
|
107253
|
+
rowHeight: "Row Height",
|
|
107254
|
+
small: "Small",
|
|
107255
|
+
medium: "Medium",
|
|
107256
|
+
large: "Large",
|
|
107257
|
+
tableSettings: "Table Settings",
|
|
107258
|
+
groupBy: "Group by:",
|
|
107259
|
+
reset: "Reset",
|
|
107260
|
+
selectColumnGroup: "Select a column to group",
|
|
107261
|
+
configure: "Configure"
|
|
107262
|
+
},
|
|
107263
|
+
rowGroupToggle: {
|
|
107264
|
+
expandTierOne: "Open first groups in the table.",
|
|
107265
|
+
expandAll: "Open all groups in the table.",
|
|
107266
|
+
collapseAll: "Close all groups in the table."
|
|
107267
|
+
},
|
|
107268
|
+
columnGroupToggle: {
|
|
107269
|
+
collapse: "Collapse column group",
|
|
107270
|
+
expand: "Expand column group"
|
|
107271
|
+
},
|
|
107272
|
+
cells: {
|
|
107273
|
+
textCell: {
|
|
107274
|
+
placeholder: "Enter text"
|
|
107275
|
+
},
|
|
107276
|
+
currencyCell: {
|
|
107277
|
+
placeholder: "Enter currency"
|
|
107278
|
+
},
|
|
107279
|
+
numberCell: {
|
|
107280
|
+
placeholder: "Enter number"
|
|
107281
|
+
},
|
|
107282
|
+
percentCell: {
|
|
107283
|
+
placeholder: "Enter %"
|
|
107284
|
+
},
|
|
107285
|
+
pillCell: {
|
|
107286
|
+
placeholder: "Select {{label}}"
|
|
107287
|
+
},
|
|
107288
|
+
selectCell: {
|
|
107289
|
+
placeholder: "Select {{label}}"
|
|
107290
|
+
},
|
|
107291
|
+
multiSelectCell: {
|
|
107292
|
+
placeholder: "Select Values"
|
|
107293
|
+
},
|
|
107294
|
+
booleanCell: {
|
|
107295
|
+
options: {
|
|
107296
|
+
yes: "Yes",
|
|
107297
|
+
no: "No"
|
|
107298
|
+
}
|
|
107299
|
+
}
|
|
107300
|
+
},
|
|
107301
|
+
filterRenders: {
|
|
107302
|
+
dateFilter: {
|
|
107303
|
+
single: "Single",
|
|
107304
|
+
range: "Range"
|
|
107305
|
+
}
|
|
107306
|
+
},
|
|
107307
|
+
groupCell: {
|
|
107308
|
+
expand: "Expand group",
|
|
107309
|
+
collapse: "Collapse group"
|
|
107310
|
+
},
|
|
107311
|
+
rowCheckbox: {
|
|
107312
|
+
ariaLabel: "Select Row"
|
|
107313
|
+
}
|
|
107314
|
+
}
|
|
107315
|
+
};
|
|
107316
|
+
|
|
106800
107317
|
// src/locales/th-TH.json
|
|
106801
107318
|
var th_TH_default = {
|
|
106802
107319
|
dataTable: {
|
|
@@ -107139,6 +107656,177 @@ var zh_SG_default = {
|
|
|
107139
107656
|
}
|
|
107140
107657
|
};
|
|
107141
107658
|
|
|
107659
|
+
// src/locales/zh-TW.json
|
|
107660
|
+
var zh_TW_default = {
|
|
107661
|
+
dataTable: {
|
|
107662
|
+
emptyState: {
|
|
107663
|
+
noFilteredResults: {
|
|
107664
|
+
description: "Check your spelling and filter options, or search for a different keyword.",
|
|
107665
|
+
title: "No Items Match Your Search",
|
|
107666
|
+
itemsTitle: "No %{itemsLabel} Match Your Search"
|
|
107667
|
+
},
|
|
107668
|
+
noResults: {
|
|
107669
|
+
description: "Once your team creates these items, you can access them here. ",
|
|
107670
|
+
title: "There Are No Items to Display Right Now",
|
|
107671
|
+
itemsTitle: "There Are No %{itemsLabel} to Display Right Now",
|
|
107672
|
+
tooltip: "The %{featureName} button will be enabled once you add information to the %{tableName}",
|
|
107673
|
+
searchTooltip: "Search will be enabled once you add information to the %{tableName}",
|
|
107674
|
+
featureFilter: "Filter",
|
|
107675
|
+
featureQuickFilter: "Quick Filter",
|
|
107676
|
+
featureGroupBy: "Group By",
|
|
107677
|
+
featureConfigure: "Configure",
|
|
107678
|
+
tableNameFallback: "table"
|
|
107679
|
+
}
|
|
107680
|
+
},
|
|
107681
|
+
bulkActions: {
|
|
107682
|
+
apply: "Apply",
|
|
107683
|
+
bulkEdit: "Bulk Edit",
|
|
107684
|
+
cancel: "Cancel",
|
|
107685
|
+
editValues: "Edit Values",
|
|
107686
|
+
error: "Sorry, the items couldn't be updated. Try again.",
|
|
107687
|
+
placeholderForField: "Enter %{fieldName}",
|
|
107688
|
+
selection: "%{count} %{number} selected",
|
|
107689
|
+
selection_count: {
|
|
107690
|
+
zero: "\u5DF2\u9078\u64C7%{count}\u9805\u76EE",
|
|
107691
|
+
one: "\u5DF2\u9078\u64C7%{count}\u9805\u76EE",
|
|
107692
|
+
other: "\u5DF2\u9078\u64C7%{count}\u9805\u76EE"
|
|
107693
|
+
},
|
|
107694
|
+
success: "The items were successfully updated.",
|
|
107695
|
+
one: "item",
|
|
107696
|
+
many: "items"
|
|
107697
|
+
},
|
|
107698
|
+
exporting: "Exporting...",
|
|
107699
|
+
filters: {
|
|
107700
|
+
filters: "Filters",
|
|
107701
|
+
moreFilters: "More Filters",
|
|
107702
|
+
clearAllFilters: "Clear All Filters",
|
|
107703
|
+
close: "Close",
|
|
107704
|
+
locationFilter: {
|
|
107705
|
+
selectAll: "Select all",
|
|
107706
|
+
includeSublocations: "Include sublocations",
|
|
107707
|
+
searchLocations: "Search locations",
|
|
107708
|
+
locations: "Locations"
|
|
107709
|
+
},
|
|
107710
|
+
numberFilter: {
|
|
107711
|
+
labels: {
|
|
107712
|
+
and: "and",
|
|
107713
|
+
input_placeholder: "Enter Value",
|
|
107714
|
+
placeholder: "Select an item"
|
|
107715
|
+
},
|
|
107716
|
+
options: {
|
|
107717
|
+
any_value: "Any Value",
|
|
107718
|
+
is_between: "Is Between",
|
|
107719
|
+
greater_than: "Is Greater Than",
|
|
107720
|
+
greater_than_equal_to: "Is Greater Than or Equal To",
|
|
107721
|
+
less_than: "Is Less Than",
|
|
107722
|
+
less_than_equal_to: "Is Less Than or Equal To",
|
|
107723
|
+
no_value: "No Value"
|
|
107724
|
+
}
|
|
107725
|
+
},
|
|
107726
|
+
singleSelectFilter: {
|
|
107727
|
+
placeholder: "Select a Value"
|
|
107728
|
+
},
|
|
107729
|
+
multiSelectQuickFilter: {
|
|
107730
|
+
ariaLabel: "Quick filter: Select multiple options"
|
|
107731
|
+
},
|
|
107732
|
+
singleSelectQuickFilter: {
|
|
107733
|
+
ariaLabel: "Quick filter: Select an option"
|
|
107734
|
+
}
|
|
107735
|
+
},
|
|
107736
|
+
loading: {
|
|
107737
|
+
initial: "Information loading.",
|
|
107738
|
+
secondary: "Information loading, thanks for your patience."
|
|
107739
|
+
},
|
|
107740
|
+
menuOptions: {
|
|
107741
|
+
sortMenuItem: {
|
|
107742
|
+
label: "Sort By This Column",
|
|
107743
|
+
sortAscItem: "Sort Column Ascending",
|
|
107744
|
+
sortDescItem: "Sort Column Descending",
|
|
107745
|
+
sortResetItem: "Column Not Sorted"
|
|
107746
|
+
},
|
|
107747
|
+
expandAllGroups: "Expand All Groups",
|
|
107748
|
+
collapseAllGroups: "Collapse All Groups",
|
|
107749
|
+
pinColumn: "Pin Column",
|
|
107750
|
+
pinLeft: "Pin Left",
|
|
107751
|
+
pinRight: "Pin Right",
|
|
107752
|
+
noPin: "No Pin",
|
|
107753
|
+
autoSizeThisColumn: "Autosize This Column",
|
|
107754
|
+
autoSizeAllColumns: "Autosize All Columns",
|
|
107755
|
+
hideColumn: "Hide Column",
|
|
107756
|
+
resetColumns: "Reset Columns",
|
|
107757
|
+
unGroupBy: "Un-Group by {{label}}",
|
|
107758
|
+
groupBy: "Group by {{label}}"
|
|
107759
|
+
},
|
|
107760
|
+
grandTotals: "Grand Totals",
|
|
107761
|
+
search: "Search",
|
|
107762
|
+
subtotals: "Subtotals",
|
|
107763
|
+
tableSettings: {
|
|
107764
|
+
configureColumns: "Configure Columns",
|
|
107765
|
+
resetToDefault: "Show All",
|
|
107766
|
+
rowHeight: "Row Height",
|
|
107767
|
+
small: "Small",
|
|
107768
|
+
medium: "Medium",
|
|
107769
|
+
large: "Large",
|
|
107770
|
+
tableSettings: "Table Settings",
|
|
107771
|
+
groupBy: "Group by:",
|
|
107772
|
+
reset: "Reset",
|
|
107773
|
+
selectColumnGroup: "Select a column to group",
|
|
107774
|
+
configure: "Configure"
|
|
107775
|
+
},
|
|
107776
|
+
rowGroupToggle: {
|
|
107777
|
+
expandTierOne: "Open first groups in the table.",
|
|
107778
|
+
expandAll: "Open all groups in the table.",
|
|
107779
|
+
collapseAll: "Close all groups in the table."
|
|
107780
|
+
},
|
|
107781
|
+
columnGroupToggle: {
|
|
107782
|
+
collapse: "Collapse column group",
|
|
107783
|
+
expand: "Expand column group"
|
|
107784
|
+
},
|
|
107785
|
+
cells: {
|
|
107786
|
+
textCell: {
|
|
107787
|
+
placeholder: "Enter text"
|
|
107788
|
+
},
|
|
107789
|
+
currencyCell: {
|
|
107790
|
+
placeholder: "Enter currency"
|
|
107791
|
+
},
|
|
107792
|
+
numberCell: {
|
|
107793
|
+
placeholder: "Enter number"
|
|
107794
|
+
},
|
|
107795
|
+
percentCell: {
|
|
107796
|
+
placeholder: "\u9032\u5165 \uFF05"
|
|
107797
|
+
},
|
|
107798
|
+
pillCell: {
|
|
107799
|
+
placeholder: "Select {{label}}"
|
|
107800
|
+
},
|
|
107801
|
+
selectCell: {
|
|
107802
|
+
placeholder: "Select {{label}}"
|
|
107803
|
+
},
|
|
107804
|
+
multiSelectCell: {
|
|
107805
|
+
placeholder: "\u9078\u64C7\u503C"
|
|
107806
|
+
},
|
|
107807
|
+
booleanCell: {
|
|
107808
|
+
options: {
|
|
107809
|
+
yes: "Yes",
|
|
107810
|
+
no: "No"
|
|
107811
|
+
}
|
|
107812
|
+
}
|
|
107813
|
+
},
|
|
107814
|
+
filterRenders: {
|
|
107815
|
+
dateFilter: {
|
|
107816
|
+
single: "Single",
|
|
107817
|
+
range: "Range"
|
|
107818
|
+
}
|
|
107819
|
+
},
|
|
107820
|
+
groupCell: {
|
|
107821
|
+
expand: "Expand group",
|
|
107822
|
+
collapse: "Collapse group"
|
|
107823
|
+
},
|
|
107824
|
+
rowCheckbox: {
|
|
107825
|
+
ariaLabel: "Select Row"
|
|
107826
|
+
}
|
|
107827
|
+
}
|
|
107828
|
+
};
|
|
107829
|
+
|
|
107142
107830
|
// src/utils/translations.ts
|
|
107143
107831
|
var translations = {
|
|
107144
107832
|
"de-DE": de_DE_default,
|
|
@@ -107156,7 +107844,11 @@ var translations = {
|
|
|
107156
107844
|
"pt-BR": pt_BR_default,
|
|
107157
107845
|
"th-TH": th_TH_default,
|
|
107158
107846
|
"zh-SG": zh_SG_default,
|
|
107159
|
-
"pl-PL": pl_PL_default
|
|
107847
|
+
"pl-PL": pl_PL_default,
|
|
107848
|
+
"it-IT": it_IT_default,
|
|
107849
|
+
"pt-PT": pt_PT_default,
|
|
107850
|
+
"nb-NO": nb_NO_default,
|
|
107851
|
+
"zh-TW": zh_TW_default
|
|
107160
107852
|
};
|
|
107161
107853
|
var PRINCE_XML_DPI = 96;
|
|
107162
107854
|
var DEFAULT_PAGE_MARGIN = 40;
|