@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/legacy/index.cjs
CHANGED
|
@@ -55450,7 +55450,7 @@ function getCheckboxState(node, isServerSideDataRequest, rowSelectionRef) {
|
|
|
55450
55450
|
};
|
|
55451
55451
|
}
|
|
55452
55452
|
function RowCheckbox(props) {
|
|
55453
|
-
var _a;
|
|
55453
|
+
var _a, _b, _c;
|
|
55454
55454
|
const I18n = coreReact.useI18nContext();
|
|
55455
55455
|
const { rowSelectionRef, onServerSideDataRequest } = useInternalTableContext();
|
|
55456
55456
|
const [_selected, setSelected] = React80.useState(props.node.isSelected());
|
|
@@ -55470,7 +55470,7 @@ function RowCheckbox(props) {
|
|
|
55470
55470
|
removeEventListenerFromGrid("rowSelected", handleRowSelection, props.api);
|
|
55471
55471
|
};
|
|
55472
55472
|
}, []);
|
|
55473
|
-
|
|
55473
|
+
let checkbox = /* @__PURE__ */ React80__default.default.createElement(
|
|
55474
55474
|
coreReact.Checkbox,
|
|
55475
55475
|
{
|
|
55476
55476
|
checked: selected,
|
|
@@ -55490,7 +55490,11 @@ function RowCheckbox(props) {
|
|
|
55490
55490
|
},
|
|
55491
55491
|
onChange: noop2
|
|
55492
55492
|
}
|
|
55493
|
-
)
|
|
55493
|
+
);
|
|
55494
|
+
if ((_b = props.data) == null ? void 0 : _b.checkboxTooltip) {
|
|
55495
|
+
checkbox = /* @__PURE__ */ React80__default.default.createElement(coreReact.Tooltip, { overlay: (_c = props.data) == null ? void 0 : _c.checkboxTooltip, placement: "right" }, /* @__PURE__ */ React80__default.default.createElement("span", null, checkbox));
|
|
55496
|
+
}
|
|
55497
|
+
return /* @__PURE__ */ React80__default.default.createElement(coreReact.Box, { paddingRight: "md" }, checkbox);
|
|
55494
55498
|
}
|
|
55495
55499
|
|
|
55496
55500
|
// src/CellRenderers/AutoGroupCell.tsx
|
|
@@ -81414,7 +81418,7 @@ __decorate216([
|
|
|
81414
81418
|
__decorate216([
|
|
81415
81419
|
Validate(NUMBER())
|
|
81416
81420
|
], TooltipPosition.prototype, "yOffset", void 0);
|
|
81417
|
-
var
|
|
81421
|
+
var Tooltip7 = class _Tooltip {
|
|
81418
81422
|
constructor(canvasElement, document2, container) {
|
|
81419
81423
|
this.enableInteraction = false;
|
|
81420
81424
|
this.enabled = true;
|
|
@@ -81550,25 +81554,25 @@ var Tooltip6 = class _Tooltip {
|
|
|
81550
81554
|
this._showArrow = show;
|
|
81551
81555
|
}
|
|
81552
81556
|
};
|
|
81553
|
-
|
|
81557
|
+
Tooltip7.tooltipDocuments = [];
|
|
81554
81558
|
__decorate216([
|
|
81555
81559
|
Validate(BOOLEAN)
|
|
81556
|
-
],
|
|
81560
|
+
], Tooltip7.prototype, "enabled", void 0);
|
|
81557
81561
|
__decorate216([
|
|
81558
81562
|
Validate(OPT_BOOLEAN)
|
|
81559
|
-
],
|
|
81563
|
+
], Tooltip7.prototype, "showArrow", void 0);
|
|
81560
81564
|
__decorate216([
|
|
81561
81565
|
Validate(OPT_STRING)
|
|
81562
|
-
],
|
|
81566
|
+
], Tooltip7.prototype, "class", void 0);
|
|
81563
81567
|
__decorate216([
|
|
81564
81568
|
Validate(NUMBER(0))
|
|
81565
|
-
],
|
|
81569
|
+
], Tooltip7.prototype, "delay", void 0);
|
|
81566
81570
|
__decorate216([
|
|
81567
81571
|
DeprecatedAndRenamedTo("range", (value) => value ? "nearest" : "exact")
|
|
81568
|
-
],
|
|
81572
|
+
], Tooltip7.prototype, "tracking", void 0);
|
|
81569
81573
|
__decorate216([
|
|
81570
81574
|
Validate(INTERACTION_RANGE)
|
|
81571
|
-
],
|
|
81575
|
+
], Tooltip7.prototype, "range", void 0);
|
|
81572
81576
|
|
|
81573
81577
|
// ../../node_modules/ag-charts-community/dist/esm/es6/chart/data/aggregateFunctions.mjs
|
|
81574
81578
|
function sumValues(values2, accumulator = [0, 0]) {
|
|
@@ -86553,7 +86557,7 @@ var Chart = class extends Observable {
|
|
|
86553
86557
|
this.animationManager = new AnimationManager(this.interactionManager);
|
|
86554
86558
|
this.animationManager.skipAnimations = true;
|
|
86555
86559
|
this.animationManager.play();
|
|
86556
|
-
this.tooltip = new
|
|
86560
|
+
this.tooltip = new Tooltip7(this.scene.canvas.element, document2, document2.body);
|
|
86557
86561
|
this.tooltipManager = new TooltipManager(this.tooltip, this.interactionManager);
|
|
86558
86562
|
this.overlays = new ChartOverlays(this.element);
|
|
86559
86563
|
this.highlight = new ChartHighlight();
|
|
@@ -101009,7 +101013,7 @@ __export(integrated_charts_scene_exports, {
|
|
|
101009
101013
|
Shape: () => Shape,
|
|
101010
101014
|
Square: () => Square,
|
|
101011
101015
|
Text: () => Text,
|
|
101012
|
-
Tooltip: () =>
|
|
101016
|
+
Tooltip: () => Tooltip7,
|
|
101013
101017
|
getFont: () => getFont2,
|
|
101014
101018
|
getMarker: () => getMarker,
|
|
101015
101019
|
toRadians: () => toRadians,
|
|
@@ -106263,6 +106267,177 @@ var is_IS_default = {
|
|
|
106263
106267
|
}
|
|
106264
106268
|
};
|
|
106265
106269
|
|
|
106270
|
+
// src/locales/it-IT.json
|
|
106271
|
+
var it_IT_default = {
|
|
106272
|
+
dataTable: {
|
|
106273
|
+
emptyState: {
|
|
106274
|
+
noFilteredResults: {
|
|
106275
|
+
description: "Controllare l'ortografia e le opzioni di filtro oppure effettuare la ricerca con una parola chiave diversa.",
|
|
106276
|
+
title: "Nessun elemento corrispondente alla ricerca",
|
|
106277
|
+
itemsTitle: "Nessuna corrispondenza %{itemsLabel} con la ricerca"
|
|
106278
|
+
},
|
|
106279
|
+
noResults: {
|
|
106280
|
+
description: "Gli elementi creati dal team saranno accessibili qui. ",
|
|
106281
|
+
title: "Al momento non sono presenti elementi da visualizzare",
|
|
106282
|
+
itemsTitle: "Al momento non sono presenti %{itemsLabel} da visualizzare",
|
|
106283
|
+
tooltip: "Il pulsante %{featureName} sar\xE0 attivato dopo l'aggiunta delle informazioni a %{tableName}",
|
|
106284
|
+
searchTooltip: "La ricerca sar\xE0 attivata dopo l'aggiunta delle informazioni a %{tableName}",
|
|
106285
|
+
featureFilter: "Filtro",
|
|
106286
|
+
featureQuickFilter: "Filtro rapido",
|
|
106287
|
+
featureGroupBy: "Raggruppa per",
|
|
106288
|
+
featureConfigure: "Configura",
|
|
106289
|
+
tableNameFallback: "tabella"
|
|
106290
|
+
}
|
|
106291
|
+
},
|
|
106292
|
+
bulkActions: {
|
|
106293
|
+
apply: "Applica",
|
|
106294
|
+
bulkEdit: "Modifica in blocco",
|
|
106295
|
+
cancel: "Annulla",
|
|
106296
|
+
editValues: "Modifica valori",
|
|
106297
|
+
error: "Impossibile aggiornare gli elementi. Riprovare.",
|
|
106298
|
+
placeholderForField: "Inserire %{fieldName}",
|
|
106299
|
+
selection: "%{count} %{number} selezionati",
|
|
106300
|
+
selection_count: {
|
|
106301
|
+
zero: "%{count} elementi selezionati",
|
|
106302
|
+
one: "%{count} elemento selezionato",
|
|
106303
|
+
other: "%{count} elementi selezionati"
|
|
106304
|
+
},
|
|
106305
|
+
success: "Gli elementi sono stati aggiornati correttamente.",
|
|
106306
|
+
one: "elemento",
|
|
106307
|
+
many: "elementi"
|
|
106308
|
+
},
|
|
106309
|
+
exporting: "Esportazione in corso...",
|
|
106310
|
+
filters: {
|
|
106311
|
+
filters: "Filtri",
|
|
106312
|
+
moreFilters: "Altri filtri",
|
|
106313
|
+
clearAllFilters: "Cancella tutti i filtri",
|
|
106314
|
+
close: "Chiudi",
|
|
106315
|
+
locationFilter: {
|
|
106316
|
+
selectAll: "Seleziona tutto",
|
|
106317
|
+
includeSublocations: "Includi posizioni secondarie",
|
|
106318
|
+
searchLocations: "Cerca posizioni",
|
|
106319
|
+
locations: "Posizioni"
|
|
106320
|
+
},
|
|
106321
|
+
numberFilter: {
|
|
106322
|
+
labels: {
|
|
106323
|
+
and: "e",
|
|
106324
|
+
input_placeholder: "Inserisci valore",
|
|
106325
|
+
placeholder: "Selezionare un elemento"
|
|
106326
|
+
},
|
|
106327
|
+
options: {
|
|
106328
|
+
any_value: "Qualsiasi valore",
|
|
106329
|
+
is_between: "\xC8 compreso tra",
|
|
106330
|
+
greater_than: "\xC8 maggiore di",
|
|
106331
|
+
greater_than_equal_to: "\xC8 maggiore o uguale a",
|
|
106332
|
+
less_than: "\xC8 minore di",
|
|
106333
|
+
less_than_equal_to: "\xC8 minore o uguale a",
|
|
106334
|
+
no_value: "Nessun valore"
|
|
106335
|
+
}
|
|
106336
|
+
},
|
|
106337
|
+
singleSelectFilter: {
|
|
106338
|
+
placeholder: "Selezionare un valore"
|
|
106339
|
+
},
|
|
106340
|
+
multiSelectQuickFilter: {
|
|
106341
|
+
ariaLabel: "Filtro rapido: selezionare pi\xF9 opzioni"
|
|
106342
|
+
},
|
|
106343
|
+
singleSelectQuickFilter: {
|
|
106344
|
+
ariaLabel: "Filtro rapido: selezionare un'opzione"
|
|
106345
|
+
}
|
|
106346
|
+
},
|
|
106347
|
+
loading: {
|
|
106348
|
+
initial: "Caricamento delle informazioni in corso.",
|
|
106349
|
+
secondary: "Caricamento delle informazioni in corso, grazie per la pazienza."
|
|
106350
|
+
},
|
|
106351
|
+
menuOptions: {
|
|
106352
|
+
sortMenuItem: {
|
|
106353
|
+
label: "Ordina per questa colonna",
|
|
106354
|
+
sortAscItem: "Ordina colonna (crescente)",
|
|
106355
|
+
sortDescItem: "Ordina colonna (decrescente)",
|
|
106356
|
+
sortResetItem: "Colonna non ordinata"
|
|
106357
|
+
},
|
|
106358
|
+
expandAllGroups: "Espandi tutti i gruppi",
|
|
106359
|
+
collapseAllGroups: "Comprimi tutti i gruppi",
|
|
106360
|
+
pinColumn: "Fissa colonna",
|
|
106361
|
+
pinLeft: "Fissa a sinistra",
|
|
106362
|
+
pinRight: "Fissa a destra",
|
|
106363
|
+
noPin: "Sblocca",
|
|
106364
|
+
autoSizeThisColumn: "Dimensione automatica per questa colonna",
|
|
106365
|
+
autoSizeAllColumns: "Dimensione automatica per tutte le colonne",
|
|
106366
|
+
hideColumn: "Nascondi colonna",
|
|
106367
|
+
resetColumns: "Reimposta colonne",
|
|
106368
|
+
unGroupBy: "Annulla raggruppamento per {{label}}",
|
|
106369
|
+
groupBy: "Raggruppa per {{label}}"
|
|
106370
|
+
},
|
|
106371
|
+
grandTotals: "Totali generali",
|
|
106372
|
+
search: "Cerca",
|
|
106373
|
+
subtotals: "Subtotali",
|
|
106374
|
+
tableSettings: {
|
|
106375
|
+
configureColumns: "Configura colonne",
|
|
106376
|
+
resetToDefault: "Mostra tutto",
|
|
106377
|
+
rowHeight: "Altezza riga",
|
|
106378
|
+
small: "Piccola",
|
|
106379
|
+
medium: "Media",
|
|
106380
|
+
large: "Grande",
|
|
106381
|
+
tableSettings: "Impostazioni tabella",
|
|
106382
|
+
groupBy: "Raggruppa per:",
|
|
106383
|
+
reset: "Reimposta",
|
|
106384
|
+
selectColumnGroup: "Selezionare una colonna da usare per il raggruppamento",
|
|
106385
|
+
configure: "Configura"
|
|
106386
|
+
},
|
|
106387
|
+
rowGroupToggle: {
|
|
106388
|
+
expandTierOne: "Aprire i primi gruppi nella tabella.",
|
|
106389
|
+
expandAll: "Aprire tutti i gruppi nella tabella.",
|
|
106390
|
+
collapseAll: "Chiudere tutti i gruppi nella tabella."
|
|
106391
|
+
},
|
|
106392
|
+
columnGroupToggle: {
|
|
106393
|
+
collapse: "Comprimi gruppo di colonne",
|
|
106394
|
+
expand: "Espandi gruppo di colonne"
|
|
106395
|
+
},
|
|
106396
|
+
cells: {
|
|
106397
|
+
textCell: {
|
|
106398
|
+
placeholder: "Inserisci testo"
|
|
106399
|
+
},
|
|
106400
|
+
currencyCell: {
|
|
106401
|
+
placeholder: "Inserisci valuta"
|
|
106402
|
+
},
|
|
106403
|
+
numberCell: {
|
|
106404
|
+
placeholder: "Inserisci numero"
|
|
106405
|
+
},
|
|
106406
|
+
percentCell: {
|
|
106407
|
+
placeholder: "Inserisci %"
|
|
106408
|
+
},
|
|
106409
|
+
pillCell: {
|
|
106410
|
+
placeholder: "Seleziona {{label}}"
|
|
106411
|
+
},
|
|
106412
|
+
selectCell: {
|
|
106413
|
+
placeholder: "Seleziona {{label}}"
|
|
106414
|
+
},
|
|
106415
|
+
multiSelectCell: {
|
|
106416
|
+
placeholder: "Seleziona valori"
|
|
106417
|
+
},
|
|
106418
|
+
booleanCell: {
|
|
106419
|
+
options: {
|
|
106420
|
+
yes: "S\xEC",
|
|
106421
|
+
no: "No"
|
|
106422
|
+
}
|
|
106423
|
+
}
|
|
106424
|
+
},
|
|
106425
|
+
filterRenders: {
|
|
106426
|
+
dateFilter: {
|
|
106427
|
+
single: "Singolo",
|
|
106428
|
+
range: "Intervallo"
|
|
106429
|
+
}
|
|
106430
|
+
},
|
|
106431
|
+
groupCell: {
|
|
106432
|
+
expand: "Espandi gruppo",
|
|
106433
|
+
collapse: "Comprimi gruppo"
|
|
106434
|
+
},
|
|
106435
|
+
rowCheckbox: {
|
|
106436
|
+
ariaLabel: "Seleziona riga"
|
|
106437
|
+
}
|
|
106438
|
+
}
|
|
106439
|
+
};
|
|
106440
|
+
|
|
106266
106441
|
// src/locales/ja-JP.json
|
|
106267
106442
|
var ja_JP_default = {
|
|
106268
106443
|
dataTable: {
|
|
@@ -106434,6 +106609,177 @@ var ja_JP_default = {
|
|
|
106434
106609
|
}
|
|
106435
106610
|
};
|
|
106436
106611
|
|
|
106612
|
+
// src/locales/nb-NO.json
|
|
106613
|
+
var nb_NO_default = {
|
|
106614
|
+
dataTable: {
|
|
106615
|
+
emptyState: {
|
|
106616
|
+
noFilteredResults: {
|
|
106617
|
+
description: "Check your spelling and filter options, or search for a different keyword.",
|
|
106618
|
+
title: "No Items Match Your Search",
|
|
106619
|
+
itemsTitle: "No %{itemsLabel} Match Your Search"
|
|
106620
|
+
},
|
|
106621
|
+
noResults: {
|
|
106622
|
+
description: "Once your team creates these items, you can access them here. ",
|
|
106623
|
+
title: "There Are No Items to Display Right Now",
|
|
106624
|
+
itemsTitle: "There Are No %{itemsLabel} to Display Right Now",
|
|
106625
|
+
tooltip: "The %{featureName} button will be enabled once you add information to the %{tableName}",
|
|
106626
|
+
searchTooltip: "Search will be enabled once you add information to the %{tableName}",
|
|
106627
|
+
featureFilter: "Filter",
|
|
106628
|
+
featureQuickFilter: "Quick Filter",
|
|
106629
|
+
featureGroupBy: "Group By",
|
|
106630
|
+
featureConfigure: "Configure",
|
|
106631
|
+
tableNameFallback: "table"
|
|
106632
|
+
}
|
|
106633
|
+
},
|
|
106634
|
+
bulkActions: {
|
|
106635
|
+
apply: "Apply",
|
|
106636
|
+
bulkEdit: "Bulk Edit",
|
|
106637
|
+
cancel: "Cancel",
|
|
106638
|
+
editValues: "Edit Values",
|
|
106639
|
+
error: "Sorry, the items couldn't be updated. Try again.",
|
|
106640
|
+
placeholderForField: "Enter %{fieldName}",
|
|
106641
|
+
selection: "%{count} %{number} selected",
|
|
106642
|
+
selection_count: {
|
|
106643
|
+
zero: "%{count} items selected",
|
|
106644
|
+
one: "%{count} item selected",
|
|
106645
|
+
other: "%{count} items selected"
|
|
106646
|
+
},
|
|
106647
|
+
success: "The items were successfully updated.",
|
|
106648
|
+
one: "item",
|
|
106649
|
+
many: "items"
|
|
106650
|
+
},
|
|
106651
|
+
exporting: "Exporting...",
|
|
106652
|
+
filters: {
|
|
106653
|
+
filters: "Filters",
|
|
106654
|
+
moreFilters: "More Filters",
|
|
106655
|
+
clearAllFilters: "Clear All Filters",
|
|
106656
|
+
close: "Close",
|
|
106657
|
+
locationFilter: {
|
|
106658
|
+
selectAll: "Select all",
|
|
106659
|
+
includeSublocations: "Include sublocations",
|
|
106660
|
+
searchLocations: "Search locations",
|
|
106661
|
+
locations: "Locations"
|
|
106662
|
+
},
|
|
106663
|
+
numberFilter: {
|
|
106664
|
+
labels: {
|
|
106665
|
+
and: "and",
|
|
106666
|
+
input_placeholder: "Enter Value",
|
|
106667
|
+
placeholder: "Select an item"
|
|
106668
|
+
},
|
|
106669
|
+
options: {
|
|
106670
|
+
any_value: "Any Value",
|
|
106671
|
+
is_between: "Is Between",
|
|
106672
|
+
greater_than: "Is Greater Than",
|
|
106673
|
+
greater_than_equal_to: "Is Greater Than or Equal To",
|
|
106674
|
+
less_than: "Is Less Than",
|
|
106675
|
+
less_than_equal_to: "Is Less Than or Equal To",
|
|
106676
|
+
no_value: "No Value"
|
|
106677
|
+
}
|
|
106678
|
+
},
|
|
106679
|
+
singleSelectFilter: {
|
|
106680
|
+
placeholder: "Select a Value"
|
|
106681
|
+
},
|
|
106682
|
+
multiSelectQuickFilter: {
|
|
106683
|
+
ariaLabel: "Quick filter: Select multiple options"
|
|
106684
|
+
},
|
|
106685
|
+
singleSelectQuickFilter: {
|
|
106686
|
+
ariaLabel: "Quick filter: Select an option"
|
|
106687
|
+
}
|
|
106688
|
+
},
|
|
106689
|
+
loading: {
|
|
106690
|
+
initial: "Information loading.",
|
|
106691
|
+
secondary: "Information loading, thanks for your patience."
|
|
106692
|
+
},
|
|
106693
|
+
menuOptions: {
|
|
106694
|
+
sortMenuItem: {
|
|
106695
|
+
label: "Sort By This Column",
|
|
106696
|
+
sortAscItem: "Sort Column Ascending",
|
|
106697
|
+
sortDescItem: "Sort Column Descending",
|
|
106698
|
+
sortResetItem: "Column Not Sorted"
|
|
106699
|
+
},
|
|
106700
|
+
expandAllGroups: "Expand All Groups",
|
|
106701
|
+
collapseAllGroups: "Collapse All Groups",
|
|
106702
|
+
pinColumn: "Pin Column",
|
|
106703
|
+
pinLeft: "Pin Left",
|
|
106704
|
+
pinRight: "Pin Right",
|
|
106705
|
+
noPin: "No Pin",
|
|
106706
|
+
autoSizeThisColumn: "Autosize This Column",
|
|
106707
|
+
autoSizeAllColumns: "Autosize All Columns",
|
|
106708
|
+
hideColumn: "Hide Column",
|
|
106709
|
+
resetColumns: "Reset Columns",
|
|
106710
|
+
unGroupBy: "Un-Group by {{label}}",
|
|
106711
|
+
groupBy: "Group by {{label}}"
|
|
106712
|
+
},
|
|
106713
|
+
grandTotals: "Grand Totals",
|
|
106714
|
+
search: "Search",
|
|
106715
|
+
subtotals: "Subtotals",
|
|
106716
|
+
tableSettings: {
|
|
106717
|
+
configureColumns: "Configure Columns",
|
|
106718
|
+
resetToDefault: "Show All",
|
|
106719
|
+
rowHeight: "Row Height",
|
|
106720
|
+
small: "Small",
|
|
106721
|
+
medium: "Medium",
|
|
106722
|
+
large: "Large",
|
|
106723
|
+
tableSettings: "Table Settings",
|
|
106724
|
+
groupBy: "Group by:",
|
|
106725
|
+
reset: "Reset",
|
|
106726
|
+
selectColumnGroup: "Select a column to group",
|
|
106727
|
+
configure: "Configure"
|
|
106728
|
+
},
|
|
106729
|
+
rowGroupToggle: {
|
|
106730
|
+
expandTierOne: "Open first groups in the table.",
|
|
106731
|
+
expandAll: "Open all groups in the table.",
|
|
106732
|
+
collapseAll: "Close all groups in the table."
|
|
106733
|
+
},
|
|
106734
|
+
columnGroupToggle: {
|
|
106735
|
+
collapse: "Collapse column group",
|
|
106736
|
+
expand: "Expand column group"
|
|
106737
|
+
},
|
|
106738
|
+
cells: {
|
|
106739
|
+
textCell: {
|
|
106740
|
+
placeholder: "Enter text"
|
|
106741
|
+
},
|
|
106742
|
+
currencyCell: {
|
|
106743
|
+
placeholder: "Enter currency"
|
|
106744
|
+
},
|
|
106745
|
+
numberCell: {
|
|
106746
|
+
placeholder: "Enter number"
|
|
106747
|
+
},
|
|
106748
|
+
percentCell: {
|
|
106749
|
+
placeholder: "Enter %"
|
|
106750
|
+
},
|
|
106751
|
+
pillCell: {
|
|
106752
|
+
placeholder: "Select {{label}}"
|
|
106753
|
+
},
|
|
106754
|
+
selectCell: {
|
|
106755
|
+
placeholder: "Select {{label}}"
|
|
106756
|
+
},
|
|
106757
|
+
multiSelectCell: {
|
|
106758
|
+
placeholder: "Select Values"
|
|
106759
|
+
},
|
|
106760
|
+
booleanCell: {
|
|
106761
|
+
options: {
|
|
106762
|
+
yes: "Yes",
|
|
106763
|
+
no: "No"
|
|
106764
|
+
}
|
|
106765
|
+
}
|
|
106766
|
+
},
|
|
106767
|
+
filterRenders: {
|
|
106768
|
+
dateFilter: {
|
|
106769
|
+
single: "Single",
|
|
106770
|
+
range: "Range"
|
|
106771
|
+
}
|
|
106772
|
+
},
|
|
106773
|
+
groupCell: {
|
|
106774
|
+
expand: "Expand group",
|
|
106775
|
+
collapse: "Collapse group"
|
|
106776
|
+
},
|
|
106777
|
+
rowCheckbox: {
|
|
106778
|
+
ariaLabel: "Select Row"
|
|
106779
|
+
}
|
|
106780
|
+
}
|
|
106781
|
+
};
|
|
106782
|
+
|
|
106437
106783
|
// src/locales/pl-PL.json
|
|
106438
106784
|
var pl_PL_default = {
|
|
106439
106785
|
dataTable: {
|
|
@@ -106947,6 +107293,177 @@ var pt_BR_default = {
|
|
|
106947
107293
|
}
|
|
106948
107294
|
};
|
|
106949
107295
|
|
|
107296
|
+
// src/locales/pt-PT.json
|
|
107297
|
+
var pt_PT_default = {
|
|
107298
|
+
dataTable: {
|
|
107299
|
+
emptyState: {
|
|
107300
|
+
noFilteredResults: {
|
|
107301
|
+
description: "Check your spelling and filter options, or search for a different keyword.",
|
|
107302
|
+
title: "No Items Match Your Search",
|
|
107303
|
+
itemsTitle: "No %{itemsLabel} Match Your Search"
|
|
107304
|
+
},
|
|
107305
|
+
noResults: {
|
|
107306
|
+
description: "Once your team creates these items, you can access them here. ",
|
|
107307
|
+
title: "There Are No Items to Display Right Now",
|
|
107308
|
+
itemsTitle: "There Are No %{itemsLabel} to Display Right Now",
|
|
107309
|
+
tooltip: "The %{featureName} button will be enabled once you add information to the %{tableName}",
|
|
107310
|
+
searchTooltip: "Search will be enabled once you add information to the %{tableName}",
|
|
107311
|
+
featureFilter: "Filter",
|
|
107312
|
+
featureQuickFilter: "Quick Filter",
|
|
107313
|
+
featureGroupBy: "Group By",
|
|
107314
|
+
featureConfigure: "Configure",
|
|
107315
|
+
tableNameFallback: "table"
|
|
107316
|
+
}
|
|
107317
|
+
},
|
|
107318
|
+
bulkActions: {
|
|
107319
|
+
apply: "Apply",
|
|
107320
|
+
bulkEdit: "Bulk Edit",
|
|
107321
|
+
cancel: "Cancel",
|
|
107322
|
+
editValues: "Edit Values",
|
|
107323
|
+
error: "Sorry, the items couldn't be updated. Try again.",
|
|
107324
|
+
placeholderForField: "Enter %{fieldName}",
|
|
107325
|
+
selection: "%{count} %{number} selected",
|
|
107326
|
+
selection_count: {
|
|
107327
|
+
zero: "%{count} items selected",
|
|
107328
|
+
one: "%{count} item selected",
|
|
107329
|
+
other: "%{count} items selected"
|
|
107330
|
+
},
|
|
107331
|
+
success: "The items were successfully updated.",
|
|
107332
|
+
one: "item",
|
|
107333
|
+
many: "items"
|
|
107334
|
+
},
|
|
107335
|
+
exporting: "Exporting...",
|
|
107336
|
+
filters: {
|
|
107337
|
+
filters: "Filters",
|
|
107338
|
+
moreFilters: "More Filters",
|
|
107339
|
+
clearAllFilters: "Clear All Filters",
|
|
107340
|
+
close: "Close",
|
|
107341
|
+
locationFilter: {
|
|
107342
|
+
selectAll: "Select all",
|
|
107343
|
+
includeSublocations: "Include sublocations",
|
|
107344
|
+
searchLocations: "Search locations",
|
|
107345
|
+
locations: "Locations"
|
|
107346
|
+
},
|
|
107347
|
+
numberFilter: {
|
|
107348
|
+
labels: {
|
|
107349
|
+
and: "and",
|
|
107350
|
+
input_placeholder: "Enter Value",
|
|
107351
|
+
placeholder: "Select an item"
|
|
107352
|
+
},
|
|
107353
|
+
options: {
|
|
107354
|
+
any_value: "Any Value",
|
|
107355
|
+
is_between: "Is Between",
|
|
107356
|
+
greater_than: "Is Greater Than",
|
|
107357
|
+
greater_than_equal_to: "Is Greater Than or Equal To",
|
|
107358
|
+
less_than: "Is Less Than",
|
|
107359
|
+
less_than_equal_to: "Is Less Than or Equal To",
|
|
107360
|
+
no_value: "No Value"
|
|
107361
|
+
}
|
|
107362
|
+
},
|
|
107363
|
+
singleSelectFilter: {
|
|
107364
|
+
placeholder: "Select a Value"
|
|
107365
|
+
},
|
|
107366
|
+
multiSelectQuickFilter: {
|
|
107367
|
+
ariaLabel: "Quick filter: Select multiple options"
|
|
107368
|
+
},
|
|
107369
|
+
singleSelectQuickFilter: {
|
|
107370
|
+
ariaLabel: "Quick filter: Select an option"
|
|
107371
|
+
}
|
|
107372
|
+
},
|
|
107373
|
+
loading: {
|
|
107374
|
+
initial: "Information loading.",
|
|
107375
|
+
secondary: "Information loading, thanks for your patience."
|
|
107376
|
+
},
|
|
107377
|
+
menuOptions: {
|
|
107378
|
+
sortMenuItem: {
|
|
107379
|
+
label: "Sort By This Column",
|
|
107380
|
+
sortAscItem: "Sort Column Ascending",
|
|
107381
|
+
sortDescItem: "Sort Column Descending",
|
|
107382
|
+
sortResetItem: "Column Not Sorted"
|
|
107383
|
+
},
|
|
107384
|
+
expandAllGroups: "Expand All Groups",
|
|
107385
|
+
collapseAllGroups: "Collapse All Groups",
|
|
107386
|
+
pinColumn: "Pin Column",
|
|
107387
|
+
pinLeft: "Pin Left",
|
|
107388
|
+
pinRight: "Pin Right",
|
|
107389
|
+
noPin: "No Pin",
|
|
107390
|
+
autoSizeThisColumn: "Autosize This Column",
|
|
107391
|
+
autoSizeAllColumns: "Autosize All Columns",
|
|
107392
|
+
hideColumn: "Hide Column",
|
|
107393
|
+
resetColumns: "Reset Columns",
|
|
107394
|
+
unGroupBy: "Un-Group by {{label}}",
|
|
107395
|
+
groupBy: "Group by {{label}}"
|
|
107396
|
+
},
|
|
107397
|
+
grandTotals: "Grand Totals",
|
|
107398
|
+
search: "Search",
|
|
107399
|
+
subtotals: "Subtotals",
|
|
107400
|
+
tableSettings: {
|
|
107401
|
+
configureColumns: "Configure Columns",
|
|
107402
|
+
resetToDefault: "Show All",
|
|
107403
|
+
rowHeight: "Row Height",
|
|
107404
|
+
small: "Small",
|
|
107405
|
+
medium: "Medium",
|
|
107406
|
+
large: "Large",
|
|
107407
|
+
tableSettings: "Table Settings",
|
|
107408
|
+
groupBy: "Group by:",
|
|
107409
|
+
reset: "Reset",
|
|
107410
|
+
selectColumnGroup: "Select a column to group",
|
|
107411
|
+
configure: "Configure"
|
|
107412
|
+
},
|
|
107413
|
+
rowGroupToggle: {
|
|
107414
|
+
expandTierOne: "Open first groups in the table.",
|
|
107415
|
+
expandAll: "Open all groups in the table.",
|
|
107416
|
+
collapseAll: "Close all groups in the table."
|
|
107417
|
+
},
|
|
107418
|
+
columnGroupToggle: {
|
|
107419
|
+
collapse: "Collapse column group",
|
|
107420
|
+
expand: "Expand column group"
|
|
107421
|
+
},
|
|
107422
|
+
cells: {
|
|
107423
|
+
textCell: {
|
|
107424
|
+
placeholder: "Enter text"
|
|
107425
|
+
},
|
|
107426
|
+
currencyCell: {
|
|
107427
|
+
placeholder: "Enter currency"
|
|
107428
|
+
},
|
|
107429
|
+
numberCell: {
|
|
107430
|
+
placeholder: "Enter number"
|
|
107431
|
+
},
|
|
107432
|
+
percentCell: {
|
|
107433
|
+
placeholder: "Enter %"
|
|
107434
|
+
},
|
|
107435
|
+
pillCell: {
|
|
107436
|
+
placeholder: "Select {{label}}"
|
|
107437
|
+
},
|
|
107438
|
+
selectCell: {
|
|
107439
|
+
placeholder: "Select {{label}}"
|
|
107440
|
+
},
|
|
107441
|
+
multiSelectCell: {
|
|
107442
|
+
placeholder: "Select Values"
|
|
107443
|
+
},
|
|
107444
|
+
booleanCell: {
|
|
107445
|
+
options: {
|
|
107446
|
+
yes: "Yes",
|
|
107447
|
+
no: "No"
|
|
107448
|
+
}
|
|
107449
|
+
}
|
|
107450
|
+
},
|
|
107451
|
+
filterRenders: {
|
|
107452
|
+
dateFilter: {
|
|
107453
|
+
single: "Single",
|
|
107454
|
+
range: "Range"
|
|
107455
|
+
}
|
|
107456
|
+
},
|
|
107457
|
+
groupCell: {
|
|
107458
|
+
expand: "Expand group",
|
|
107459
|
+
collapse: "Collapse group"
|
|
107460
|
+
},
|
|
107461
|
+
rowCheckbox: {
|
|
107462
|
+
ariaLabel: "Select Row"
|
|
107463
|
+
}
|
|
107464
|
+
}
|
|
107465
|
+
};
|
|
107466
|
+
|
|
106950
107467
|
// src/locales/th-TH.json
|
|
106951
107468
|
var th_TH_default = {
|
|
106952
107469
|
dataTable: {
|
|
@@ -107289,6 +107806,177 @@ var zh_SG_default = {
|
|
|
107289
107806
|
}
|
|
107290
107807
|
};
|
|
107291
107808
|
|
|
107809
|
+
// src/locales/zh-TW.json
|
|
107810
|
+
var zh_TW_default = {
|
|
107811
|
+
dataTable: {
|
|
107812
|
+
emptyState: {
|
|
107813
|
+
noFilteredResults: {
|
|
107814
|
+
description: "Check your spelling and filter options, or search for a different keyword.",
|
|
107815
|
+
title: "No Items Match Your Search",
|
|
107816
|
+
itemsTitle: "No %{itemsLabel} Match Your Search"
|
|
107817
|
+
},
|
|
107818
|
+
noResults: {
|
|
107819
|
+
description: "Once your team creates these items, you can access them here. ",
|
|
107820
|
+
title: "There Are No Items to Display Right Now",
|
|
107821
|
+
itemsTitle: "There Are No %{itemsLabel} to Display Right Now",
|
|
107822
|
+
tooltip: "The %{featureName} button will be enabled once you add information to the %{tableName}",
|
|
107823
|
+
searchTooltip: "Search will be enabled once you add information to the %{tableName}",
|
|
107824
|
+
featureFilter: "Filter",
|
|
107825
|
+
featureQuickFilter: "Quick Filter",
|
|
107826
|
+
featureGroupBy: "Group By",
|
|
107827
|
+
featureConfigure: "Configure",
|
|
107828
|
+
tableNameFallback: "table"
|
|
107829
|
+
}
|
|
107830
|
+
},
|
|
107831
|
+
bulkActions: {
|
|
107832
|
+
apply: "Apply",
|
|
107833
|
+
bulkEdit: "Bulk Edit",
|
|
107834
|
+
cancel: "Cancel",
|
|
107835
|
+
editValues: "Edit Values",
|
|
107836
|
+
error: "Sorry, the items couldn't be updated. Try again.",
|
|
107837
|
+
placeholderForField: "Enter %{fieldName}",
|
|
107838
|
+
selection: "%{count} %{number} selected",
|
|
107839
|
+
selection_count: {
|
|
107840
|
+
zero: "\u5DF2\u9078\u64C7%{count}\u9805\u76EE",
|
|
107841
|
+
one: "\u5DF2\u9078\u64C7%{count}\u9805\u76EE",
|
|
107842
|
+
other: "\u5DF2\u9078\u64C7%{count}\u9805\u76EE"
|
|
107843
|
+
},
|
|
107844
|
+
success: "The items were successfully updated.",
|
|
107845
|
+
one: "item",
|
|
107846
|
+
many: "items"
|
|
107847
|
+
},
|
|
107848
|
+
exporting: "Exporting...",
|
|
107849
|
+
filters: {
|
|
107850
|
+
filters: "Filters",
|
|
107851
|
+
moreFilters: "More Filters",
|
|
107852
|
+
clearAllFilters: "Clear All Filters",
|
|
107853
|
+
close: "Close",
|
|
107854
|
+
locationFilter: {
|
|
107855
|
+
selectAll: "Select all",
|
|
107856
|
+
includeSublocations: "Include sublocations",
|
|
107857
|
+
searchLocations: "Search locations",
|
|
107858
|
+
locations: "Locations"
|
|
107859
|
+
},
|
|
107860
|
+
numberFilter: {
|
|
107861
|
+
labels: {
|
|
107862
|
+
and: "and",
|
|
107863
|
+
input_placeholder: "Enter Value",
|
|
107864
|
+
placeholder: "Select an item"
|
|
107865
|
+
},
|
|
107866
|
+
options: {
|
|
107867
|
+
any_value: "Any Value",
|
|
107868
|
+
is_between: "Is Between",
|
|
107869
|
+
greater_than: "Is Greater Than",
|
|
107870
|
+
greater_than_equal_to: "Is Greater Than or Equal To",
|
|
107871
|
+
less_than: "Is Less Than",
|
|
107872
|
+
less_than_equal_to: "Is Less Than or Equal To",
|
|
107873
|
+
no_value: "No Value"
|
|
107874
|
+
}
|
|
107875
|
+
},
|
|
107876
|
+
singleSelectFilter: {
|
|
107877
|
+
placeholder: "Select a Value"
|
|
107878
|
+
},
|
|
107879
|
+
multiSelectQuickFilter: {
|
|
107880
|
+
ariaLabel: "Quick filter: Select multiple options"
|
|
107881
|
+
},
|
|
107882
|
+
singleSelectQuickFilter: {
|
|
107883
|
+
ariaLabel: "Quick filter: Select an option"
|
|
107884
|
+
}
|
|
107885
|
+
},
|
|
107886
|
+
loading: {
|
|
107887
|
+
initial: "Information loading.",
|
|
107888
|
+
secondary: "Information loading, thanks for your patience."
|
|
107889
|
+
},
|
|
107890
|
+
menuOptions: {
|
|
107891
|
+
sortMenuItem: {
|
|
107892
|
+
label: "Sort By This Column",
|
|
107893
|
+
sortAscItem: "Sort Column Ascending",
|
|
107894
|
+
sortDescItem: "Sort Column Descending",
|
|
107895
|
+
sortResetItem: "Column Not Sorted"
|
|
107896
|
+
},
|
|
107897
|
+
expandAllGroups: "Expand All Groups",
|
|
107898
|
+
collapseAllGroups: "Collapse All Groups",
|
|
107899
|
+
pinColumn: "Pin Column",
|
|
107900
|
+
pinLeft: "Pin Left",
|
|
107901
|
+
pinRight: "Pin Right",
|
|
107902
|
+
noPin: "No Pin",
|
|
107903
|
+
autoSizeThisColumn: "Autosize This Column",
|
|
107904
|
+
autoSizeAllColumns: "Autosize All Columns",
|
|
107905
|
+
hideColumn: "Hide Column",
|
|
107906
|
+
resetColumns: "Reset Columns",
|
|
107907
|
+
unGroupBy: "Un-Group by {{label}}",
|
|
107908
|
+
groupBy: "Group by {{label}}"
|
|
107909
|
+
},
|
|
107910
|
+
grandTotals: "Grand Totals",
|
|
107911
|
+
search: "Search",
|
|
107912
|
+
subtotals: "Subtotals",
|
|
107913
|
+
tableSettings: {
|
|
107914
|
+
configureColumns: "Configure Columns",
|
|
107915
|
+
resetToDefault: "Show All",
|
|
107916
|
+
rowHeight: "Row Height",
|
|
107917
|
+
small: "Small",
|
|
107918
|
+
medium: "Medium",
|
|
107919
|
+
large: "Large",
|
|
107920
|
+
tableSettings: "Table Settings",
|
|
107921
|
+
groupBy: "Group by:",
|
|
107922
|
+
reset: "Reset",
|
|
107923
|
+
selectColumnGroup: "Select a column to group",
|
|
107924
|
+
configure: "Configure"
|
|
107925
|
+
},
|
|
107926
|
+
rowGroupToggle: {
|
|
107927
|
+
expandTierOne: "Open first groups in the table.",
|
|
107928
|
+
expandAll: "Open all groups in the table.",
|
|
107929
|
+
collapseAll: "Close all groups in the table."
|
|
107930
|
+
},
|
|
107931
|
+
columnGroupToggle: {
|
|
107932
|
+
collapse: "Collapse column group",
|
|
107933
|
+
expand: "Expand column group"
|
|
107934
|
+
},
|
|
107935
|
+
cells: {
|
|
107936
|
+
textCell: {
|
|
107937
|
+
placeholder: "Enter text"
|
|
107938
|
+
},
|
|
107939
|
+
currencyCell: {
|
|
107940
|
+
placeholder: "Enter currency"
|
|
107941
|
+
},
|
|
107942
|
+
numberCell: {
|
|
107943
|
+
placeholder: "Enter number"
|
|
107944
|
+
},
|
|
107945
|
+
percentCell: {
|
|
107946
|
+
placeholder: "\u9032\u5165 \uFF05"
|
|
107947
|
+
},
|
|
107948
|
+
pillCell: {
|
|
107949
|
+
placeholder: "Select {{label}}"
|
|
107950
|
+
},
|
|
107951
|
+
selectCell: {
|
|
107952
|
+
placeholder: "Select {{label}}"
|
|
107953
|
+
},
|
|
107954
|
+
multiSelectCell: {
|
|
107955
|
+
placeholder: "\u9078\u64C7\u503C"
|
|
107956
|
+
},
|
|
107957
|
+
booleanCell: {
|
|
107958
|
+
options: {
|
|
107959
|
+
yes: "Yes",
|
|
107960
|
+
no: "No"
|
|
107961
|
+
}
|
|
107962
|
+
}
|
|
107963
|
+
},
|
|
107964
|
+
filterRenders: {
|
|
107965
|
+
dateFilter: {
|
|
107966
|
+
single: "Single",
|
|
107967
|
+
range: "Range"
|
|
107968
|
+
}
|
|
107969
|
+
},
|
|
107970
|
+
groupCell: {
|
|
107971
|
+
expand: "Expand group",
|
|
107972
|
+
collapse: "Collapse group"
|
|
107973
|
+
},
|
|
107974
|
+
rowCheckbox: {
|
|
107975
|
+
ariaLabel: "Select Row"
|
|
107976
|
+
}
|
|
107977
|
+
}
|
|
107978
|
+
};
|
|
107979
|
+
|
|
107292
107980
|
// src/utils/translations.ts
|
|
107293
107981
|
var translations = {
|
|
107294
107982
|
"de-DE": de_DE_default,
|
|
@@ -107306,7 +107994,11 @@ var translations = {
|
|
|
107306
107994
|
"pt-BR": pt_BR_default,
|
|
107307
107995
|
"th-TH": th_TH_default,
|
|
107308
107996
|
"zh-SG": zh_SG_default,
|
|
107309
|
-
"pl-PL": pl_PL_default
|
|
107997
|
+
"pl-PL": pl_PL_default,
|
|
107998
|
+
"it-IT": it_IT_default,
|
|
107999
|
+
"pt-PT": pt_PT_default,
|
|
108000
|
+
"nb-NO": nb_NO_default,
|
|
108001
|
+
"zh-TW": zh_TW_default
|
|
107310
108002
|
};
|
|
107311
108003
|
var PRINCE_XML_DPI = 96;
|
|
107312
108004
|
var DEFAULT_PAGE_MARGIN = 40;
|