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