@trackunit/react-table 0.0.328 → 0.0.331
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/index.cjs.js +12 -4
- package/index.esm.d.ts +1 -0
- package/index.esm.js +12 -4
- package/package.json +1 -1
- package/src/translation.d.ts +2 -2
- package/src/types.d.ts +5 -0
- package/src/useTableSelection.demo.d.ts +1 -0
- package/translation.cjs.js +1 -0
- package/translation.cjs10.js +1 -0
- package/translation.cjs11.js +1 -0
- package/translation.cjs12.js +1 -0
- package/translation.cjs13.js +1 -0
- package/translation.cjs14.js +1 -0
- package/translation.cjs15.js +1 -0
- package/translation.cjs16.js +1 -0
- package/translation.cjs17.js +1 -0
- package/translation.cjs2.js +1 -0
- package/translation.cjs3.js +1 -0
- package/translation.cjs4.js +1 -0
- package/translation.cjs5.js +1 -0
- package/translation.cjs6.js +1 -0
- package/translation.cjs7.js +1 -0
- package/translation.cjs8.js +1 -0
- package/translation.cjs9.js +1 -0
- package/translation.esm.js +1 -0
- package/translation.esm10.js +1 -0
- package/translation.esm11.js +1 -0
- package/translation.esm12.js +1 -0
- package/translation.esm13.js +1 -0
- package/translation.esm14.js +1 -0
- package/translation.esm15.js +1 -0
- package/translation.esm16.js +1 -0
- package/translation.esm17.js +1 -0
- package/translation.esm2.js +1 -0
- package/translation.esm3.js +1 -0
- package/translation.esm4.js +1 -0
- package/translation.esm5.js +1 -0
- package/translation.esm6.js +1 -0
- package/translation.esm7.js +1 -0
- package/translation.esm8.js +1 -0
- package/translation.esm9.js +1 -0
package/index.cjs.js
CHANGED
|
@@ -63,6 +63,7 @@ var defaultTranslations = {
|
|
|
63
63
|
"table.rowDensity.spacious": "Spacious",
|
|
64
64
|
"table.search.placeholder": "Search...",
|
|
65
65
|
"table.searchPlaceholder": "Search...",
|
|
66
|
+
"table.selection.label": "Selection",
|
|
66
67
|
"table.sorting.ascending": "Ascending",
|
|
67
68
|
"table.sorting.descending": "Descending",
|
|
68
69
|
"table.sorting.label": "Sorting",
|
|
@@ -172,7 +173,12 @@ function __rest(s, e) {
|
|
|
172
173
|
t[p[i]] = s[p[i]];
|
|
173
174
|
}
|
|
174
175
|
return t;
|
|
175
|
-
}
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
179
|
+
var e = new Error(message);
|
|
180
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
181
|
+
};
|
|
176
182
|
|
|
177
183
|
/**
|
|
178
184
|
* The button to show in the ActionSheet.
|
|
@@ -419,12 +425,12 @@ const ColumnFiltersDragAndDrop = ({ columns, setColumnOrder, onUserEvent, }) =>
|
|
|
419
425
|
});
|
|
420
426
|
}, [localColumns, onUserEvent]);
|
|
421
427
|
return (jsxRuntime.jsx("div", { className: "flex max-h-full max-w-[400px] flex-col gap-2 overflow-y-auto overflow-x-hidden whitespace-nowrap", children: localColumns === null || localColumns === void 0 ? void 0 : localColumns.map((column, index) => {
|
|
422
|
-
var _a, _b;
|
|
428
|
+
var _a, _b, _c, _d;
|
|
423
429
|
const { columnDef } = column;
|
|
424
430
|
if (!columnDef.header || ((_a = columnDef.header) === null || _a === void 0 ? void 0 : _a.length) === 0) {
|
|
425
431
|
return null;
|
|
426
432
|
}
|
|
427
|
-
return (jsxRuntime.jsx(ColumnFilterItem, { disabled: !!((_b = column.columnDef.meta) === null || _b === void 0 ? void 0 : _b.required), id: column.id, index: index, moveColumn: moveColumn, name: columnDef.header.toString(), onCancelDrop: onCancelColumDrop, onDrop: onColumDrop, onToggle: (toggled, event) => {
|
|
433
|
+
return (jsxRuntime.jsx(ColumnFilterItem, { disabled: !!((_b = column.columnDef.meta) === null || _b === void 0 ? void 0 : _b.required), id: column.id, index: index, moveColumn: moveColumn, name: (_d = (_c = columnDef.meta) === null || _c === void 0 ? void 0 : _c.columnFilterLabel) !== null && _d !== void 0 ? _d : columnDef.header.toString(), onCancelDrop: onCancelColumDrop, onDrop: onColumDrop, onToggle: (toggled, event) => {
|
|
428
434
|
column.getToggleVisibilityHandler()(event);
|
|
429
435
|
onUserEvent === null || onUserEvent === void 0 ? void 0 : onUserEvent("Column Filter", {
|
|
430
436
|
columnName: column.id,
|
|
@@ -673,6 +679,7 @@ const useTable = (_a) => {
|
|
|
673
679
|
* });
|
|
674
680
|
*/
|
|
675
681
|
const useTableSelection = ({ data, defaultSelectedIds, enableRowSelection = true, }) => {
|
|
682
|
+
const [t] = useTranslation();
|
|
676
683
|
const [rowSelection, setRowSelection] = React.useState({});
|
|
677
684
|
React.useEffect(() => {
|
|
678
685
|
const initialSelection = {};
|
|
@@ -689,7 +696,7 @@ const useTableSelection = ({ data, defaultSelectedIds, enableRowSelection = true
|
|
|
689
696
|
.map(([id]) => id), [rowSelection]);
|
|
690
697
|
const columnHelper = React.useMemo(() => reactTable.createColumnHelper(), []);
|
|
691
698
|
const selectionColumn = React.useMemo(() => columnHelper.accessor(row => row.id, {
|
|
692
|
-
cell: ({ row }) => (jsxRuntime.jsx(reactFormComponents.Checkbox, { className: "ml-1 p-1",
|
|
699
|
+
cell: ({ row }) => (jsxRuntime.jsx(reactFormComponents.Checkbox, { className: "ml-1 p-1", // Aligns the checkbox with the one in the header.
|
|
693
700
|
checked: row.getIsSelected(),
|
|
694
701
|
disabled: !row.getCanSelect(),
|
|
695
702
|
indeterminate: row.getIsSomeSelected(),
|
|
@@ -706,6 +713,7 @@ const useTableSelection = ({ data, defaultSelectedIds, enableRowSelection = true
|
|
|
706
713
|
meta: {
|
|
707
714
|
required: true,
|
|
708
715
|
alignment: "left",
|
|
716
|
+
columnFilterLabel: t("table.selection.label"),
|
|
709
717
|
},
|
|
710
718
|
}), [columnHelper]);
|
|
711
719
|
const selectionTableState = React.useMemo(() => ({
|
package/index.esm.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./src/index";
|
package/index.esm.js
CHANGED
|
@@ -38,6 +38,7 @@ var defaultTranslations = {
|
|
|
38
38
|
"table.rowDensity.spacious": "Spacious",
|
|
39
39
|
"table.search.placeholder": "Search...",
|
|
40
40
|
"table.searchPlaceholder": "Search...",
|
|
41
|
+
"table.selection.label": "Selection",
|
|
41
42
|
"table.sorting.ascending": "Ascending",
|
|
42
43
|
"table.sorting.descending": "Descending",
|
|
43
44
|
"table.sorting.label": "Sorting",
|
|
@@ -147,7 +148,12 @@ function __rest(s, e) {
|
|
|
147
148
|
t[p[i]] = s[p[i]];
|
|
148
149
|
}
|
|
149
150
|
return t;
|
|
150
|
-
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
154
|
+
var e = new Error(message);
|
|
155
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
156
|
+
};
|
|
151
157
|
|
|
152
158
|
/**
|
|
153
159
|
* The button to show in the ActionSheet.
|
|
@@ -394,12 +400,12 @@ const ColumnFiltersDragAndDrop = ({ columns, setColumnOrder, onUserEvent, }) =>
|
|
|
394
400
|
});
|
|
395
401
|
}, [localColumns, onUserEvent]);
|
|
396
402
|
return (jsx("div", { className: "flex max-h-full max-w-[400px] flex-col gap-2 overflow-y-auto overflow-x-hidden whitespace-nowrap", children: localColumns === null || localColumns === void 0 ? void 0 : localColumns.map((column, index) => {
|
|
397
|
-
var _a, _b;
|
|
403
|
+
var _a, _b, _c, _d;
|
|
398
404
|
const { columnDef } = column;
|
|
399
405
|
if (!columnDef.header || ((_a = columnDef.header) === null || _a === void 0 ? void 0 : _a.length) === 0) {
|
|
400
406
|
return null;
|
|
401
407
|
}
|
|
402
|
-
return (jsx(ColumnFilterItem, { disabled: !!((_b = column.columnDef.meta) === null || _b === void 0 ? void 0 : _b.required), id: column.id, index: index, moveColumn: moveColumn, name: columnDef.header.toString(), onCancelDrop: onCancelColumDrop, onDrop: onColumDrop, onToggle: (toggled, event) => {
|
|
408
|
+
return (jsx(ColumnFilterItem, { disabled: !!((_b = column.columnDef.meta) === null || _b === void 0 ? void 0 : _b.required), id: column.id, index: index, moveColumn: moveColumn, name: (_d = (_c = columnDef.meta) === null || _c === void 0 ? void 0 : _c.columnFilterLabel) !== null && _d !== void 0 ? _d : columnDef.header.toString(), onCancelDrop: onCancelColumDrop, onDrop: onColumDrop, onToggle: (toggled, event) => {
|
|
403
409
|
column.getToggleVisibilityHandler()(event);
|
|
404
410
|
onUserEvent === null || onUserEvent === void 0 ? void 0 : onUserEvent("Column Filter", {
|
|
405
411
|
columnName: column.id,
|
|
@@ -648,6 +654,7 @@ const useTable = (_a) => {
|
|
|
648
654
|
* });
|
|
649
655
|
*/
|
|
650
656
|
const useTableSelection = ({ data, defaultSelectedIds, enableRowSelection = true, }) => {
|
|
657
|
+
const [t] = useTranslation();
|
|
651
658
|
const [rowSelection, setRowSelection] = useState({});
|
|
652
659
|
useEffect(() => {
|
|
653
660
|
const initialSelection = {};
|
|
@@ -664,7 +671,7 @@ const useTableSelection = ({ data, defaultSelectedIds, enableRowSelection = true
|
|
|
664
671
|
.map(([id]) => id), [rowSelection]);
|
|
665
672
|
const columnHelper = useMemo(() => createColumnHelper(), []);
|
|
666
673
|
const selectionColumn = useMemo(() => columnHelper.accessor(row => row.id, {
|
|
667
|
-
cell: ({ row }) => (jsx(Checkbox, { className: "ml-1 p-1",
|
|
674
|
+
cell: ({ row }) => (jsx(Checkbox, { className: "ml-1 p-1", // Aligns the checkbox with the one in the header.
|
|
668
675
|
checked: row.getIsSelected(),
|
|
669
676
|
disabled: !row.getCanSelect(),
|
|
670
677
|
indeterminate: row.getIsSomeSelected(),
|
|
@@ -681,6 +688,7 @@ const useTableSelection = ({ data, defaultSelectedIds, enableRowSelection = true
|
|
|
681
688
|
meta: {
|
|
682
689
|
required: true,
|
|
683
690
|
alignment: "left",
|
|
691
|
+
columnFilterLabel: t("table.selection.label"),
|
|
684
692
|
},
|
|
685
693
|
}), [columnHelper]);
|
|
686
694
|
const selectionTableState = useMemo(() => ({
|
package/package.json
CHANGED
package/src/translation.d.ts
CHANGED
|
@@ -15,8 +15,8 @@ export declare const translations: TranslationResource<TranslationKeys>;
|
|
|
15
15
|
/**
|
|
16
16
|
* Local useTranslation for this specific library
|
|
17
17
|
*/
|
|
18
|
-
export declare const useTranslation: () => [TransForLibs<"layout.actions.reset" | "table.actionsheet.selected" | "table.columnFilters.columns" | "table.columnFilters.hiddenColumnCount" | "table.columnFilters.hiddenColumnsCount" | "table.columnFilters.title" | "table.columnFilters.tooltip" | "table.error" | "table.exportFileName" | "table.format" | "table.noResults" | "table.pagination.full" | "table.pagination.of" | "table.pagination.page" | "table.result" | "table.results.plural" | "table.results.plural.capped" | "table.rowDensity.compact" | "table.rowDensity.spacious" | "table.search.placeholder" | "table.searchPlaceholder" | "table.sorting.ascending" | "table.sorting.descending" | "table.sorting.label" | "table.sorting.order" | "table.sorting.toolip" | "table.spacing" | "table.spacing.toolip">, import("i18next").i18n, boolean] & {
|
|
19
|
-
t: TransForLibs<"layout.actions.reset" | "table.actionsheet.selected" | "table.columnFilters.columns" | "table.columnFilters.hiddenColumnCount" | "table.columnFilters.hiddenColumnsCount" | "table.columnFilters.title" | "table.columnFilters.tooltip" | "table.error" | "table.exportFileName" | "table.format" | "table.noResults" | "table.pagination.full" | "table.pagination.of" | "table.pagination.page" | "table.result" | "table.results.plural" | "table.results.plural.capped" | "table.rowDensity.compact" | "table.rowDensity.spacious" | "table.search.placeholder" | "table.searchPlaceholder" | "table.sorting.ascending" | "table.sorting.descending" | "table.sorting.label" | "table.sorting.order" | "table.sorting.toolip" | "table.spacing" | "table.spacing.toolip">;
|
|
18
|
+
export declare const useTranslation: () => [TransForLibs<"layout.actions.reset" | "table.actionsheet.selected" | "table.columnFilters.columns" | "table.columnFilters.hiddenColumnCount" | "table.columnFilters.hiddenColumnsCount" | "table.columnFilters.title" | "table.columnFilters.tooltip" | "table.error" | "table.exportFileName" | "table.format" | "table.noResults" | "table.pagination.full" | "table.pagination.of" | "table.pagination.page" | "table.result" | "table.results.plural" | "table.results.plural.capped" | "table.rowDensity.compact" | "table.rowDensity.spacious" | "table.search.placeholder" | "table.searchPlaceholder" | "table.selection.label" | "table.sorting.ascending" | "table.sorting.descending" | "table.sorting.label" | "table.sorting.order" | "table.sorting.toolip" | "table.spacing" | "table.spacing.toolip">, import("i18next").i18n, boolean] & {
|
|
19
|
+
t: TransForLibs<"layout.actions.reset" | "table.actionsheet.selected" | "table.columnFilters.columns" | "table.columnFilters.hiddenColumnCount" | "table.columnFilters.hiddenColumnsCount" | "table.columnFilters.title" | "table.columnFilters.tooltip" | "table.error" | "table.exportFileName" | "table.format" | "table.noResults" | "table.pagination.full" | "table.pagination.of" | "table.pagination.page" | "table.result" | "table.results.plural" | "table.results.plural.capped" | "table.rowDensity.compact" | "table.rowDensity.spacious" | "table.search.placeholder" | "table.searchPlaceholder" | "table.selection.label" | "table.sorting.ascending" | "table.sorting.descending" | "table.sorting.label" | "table.sorting.order" | "table.sorting.toolip" | "table.spacing" | "table.spacing.toolip">;
|
|
20
20
|
i18n: import("i18next").i18n;
|
|
21
21
|
ready: boolean;
|
|
22
22
|
};
|
package/src/types.d.ts
CHANGED
|
@@ -15,6 +15,11 @@ declare module "@tanstack/react-table" {
|
|
|
15
15
|
* Resizing columns with shouldGrow set to false will shring the columns with shouldGrow set to true.
|
|
16
16
|
*/
|
|
17
17
|
shouldGrow?: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* Allows to overwrite the Column Filter label.
|
|
20
|
+
* Used for dynamic headers like the selection column that uses a checkbox header in the table but should have a different column name in the Column Filter.
|
|
21
|
+
*/
|
|
22
|
+
columnFilterLabel?: string;
|
|
18
23
|
}
|
|
19
24
|
}
|
|
20
25
|
export type Alignment = "left" | "center" | "right";
|
package/translation.cjs.js
CHANGED
|
@@ -22,6 +22,7 @@ var translation = {
|
|
|
22
22
|
"table.rowDensity.spacious": "Weitläufig",
|
|
23
23
|
"table.search.placeholder": "Suchen...",
|
|
24
24
|
"table.searchPlaceholder": "Suchen...",
|
|
25
|
+
"table.selection.label": "Selection",
|
|
25
26
|
"table.sorting.ascending": "Aufsteigend",
|
|
26
27
|
"table.sorting.descending": "Absteigend",
|
|
27
28
|
"table.sorting.label": "Sortierung",
|
package/translation.cjs10.js
CHANGED
|
@@ -22,6 +22,7 @@ var translation = {
|
|
|
22
22
|
"table.rowDensity.spacious": "Przestronny",
|
|
23
23
|
"table.search.placeholder": "Szukaj...",
|
|
24
24
|
"table.searchPlaceholder": "Szukaj...",
|
|
25
|
+
"table.selection.label": "Selection",
|
|
25
26
|
"table.sorting.ascending": "Rosnąco",
|
|
26
27
|
"table.sorting.descending": "Malejąco",
|
|
27
28
|
"table.sorting.label": "Sortowanie",
|
package/translation.cjs11.js
CHANGED
|
@@ -22,6 +22,7 @@ var translation = {
|
|
|
22
22
|
"table.rowDensity.spacious": "Espaçoso",
|
|
23
23
|
"table.search.placeholder": "Pesquisar...",
|
|
24
24
|
"table.searchPlaceholder": "Pesquisar...",
|
|
25
|
+
"table.selection.label": "Selection",
|
|
25
26
|
"table.sorting.ascending": "Ascendente",
|
|
26
27
|
"table.sorting.descending": "Descendente",
|
|
27
28
|
"table.sorting.label": "Ordenação",
|
package/translation.cjs12.js
CHANGED
|
@@ -22,6 +22,7 @@ var translation = {
|
|
|
22
22
|
"table.rowDensity.spacious": "Просторный",
|
|
23
23
|
"table.search.placeholder": "Поиск...",
|
|
24
24
|
"table.searchPlaceholder": "Поиск...",
|
|
25
|
+
"table.selection.label": "Selection",
|
|
25
26
|
"table.sorting.ascending": "По возрастанию",
|
|
26
27
|
"table.sorting.descending": "По убыванию",
|
|
27
28
|
"table.sorting.label": "Сортировка",
|
package/translation.cjs13.js
CHANGED
|
@@ -22,6 +22,7 @@ var translation = {
|
|
|
22
22
|
"table.rowDensity.spacious": "Spațios",
|
|
23
23
|
"table.search.placeholder": "Căutare...",
|
|
24
24
|
"table.searchPlaceholder": "Căutare...",
|
|
25
|
+
"table.selection.label": "Selection",
|
|
25
26
|
"table.sorting.ascending": "Ascendent",
|
|
26
27
|
"table.sorting.descending": "Descendent",
|
|
27
28
|
"table.sorting.label": "Sortare",
|
package/translation.cjs14.js
CHANGED
|
@@ -22,6 +22,7 @@ var translation = {
|
|
|
22
22
|
"table.rowDensity.spacious": "Amplio",
|
|
23
23
|
"table.search.placeholder": "Buscar...",
|
|
24
24
|
"table.searchPlaceholder": "Buscar...",
|
|
25
|
+
"table.selection.label": "Selection",
|
|
25
26
|
"table.sorting.ascending": "Ascendente",
|
|
26
27
|
"table.sorting.descending": "Descendente",
|
|
27
28
|
"table.sorting.label": "Clasificación",
|
package/translation.cjs15.js
CHANGED
|
@@ -22,6 +22,7 @@ var translation = {
|
|
|
22
22
|
"table.rowDensity.spacious": "Rymlig",
|
|
23
23
|
"table.search.placeholder": "Sök...",
|
|
24
24
|
"table.searchPlaceholder": "Sök...",
|
|
25
|
+
"table.selection.label": "Selection",
|
|
25
26
|
"table.sorting.ascending": "Stigande",
|
|
26
27
|
"table.sorting.descending": "Nedåtgående",
|
|
27
28
|
"table.sorting.label": "Sortering",
|
package/translation.cjs16.js
CHANGED
|
@@ -22,6 +22,7 @@ var translation = {
|
|
|
22
22
|
"table.rowDensity.spacious": "ワイド",
|
|
23
23
|
"table.search.placeholder": "検索",
|
|
24
24
|
"table.searchPlaceholder": "検索",
|
|
25
|
+
"table.selection.label": "Selection",
|
|
25
26
|
"table.sorting.ascending": "昇順",
|
|
26
27
|
"table.sorting.descending": "降順",
|
|
27
28
|
"table.sorting.label": "並べ替え",
|
package/translation.cjs17.js
CHANGED
|
@@ -22,6 +22,7 @@ var translation = {
|
|
|
22
22
|
"table.rowDensity.spacious": "กว้างขวาง",
|
|
23
23
|
"table.search.placeholder": "ค้นหา...",
|
|
24
24
|
"table.searchPlaceholder": "ค้นหา...",
|
|
25
|
+
"table.selection.label": "Selection",
|
|
25
26
|
"table.sorting.ascending": "จากน้อยไปมาก",
|
|
26
27
|
"table.sorting.descending": "จากมากไปน้อย",
|
|
27
28
|
"table.sorting.label": "การเรียงลำดับ",
|
package/translation.cjs2.js
CHANGED
|
@@ -22,6 +22,7 @@ var translation = {
|
|
|
22
22
|
"table.rowDensity.spacious": "Rummelig",
|
|
23
23
|
"table.search.placeholder": "Søg...",
|
|
24
24
|
"table.searchPlaceholder": "Søg...",
|
|
25
|
+
"table.selection.label": "Selection",
|
|
25
26
|
"table.sorting.ascending": "Stigende",
|
|
26
27
|
"table.sorting.descending": "Faldende",
|
|
27
28
|
"table.sorting.label": "Sortering",
|
package/translation.cjs3.js
CHANGED
|
@@ -22,6 +22,7 @@ var translation = {
|
|
|
22
22
|
"table.rowDensity.spacious": "Prostorný",
|
|
23
23
|
"table.search.placeholder": "Hledat...",
|
|
24
24
|
"table.searchPlaceholder": "Hledat...",
|
|
25
|
+
"table.selection.label": "Selection",
|
|
25
26
|
"table.sorting.ascending": "Vzestupné",
|
|
26
27
|
"table.sorting.descending": "Sestupné",
|
|
27
28
|
"table.sorting.label": "Třídění",
|
package/translation.cjs4.js
CHANGED
|
@@ -22,6 +22,7 @@ var translation = {
|
|
|
22
22
|
"table.rowDensity.spacious": "Ruim",
|
|
23
23
|
"table.search.placeholder": "Zoeken...",
|
|
24
24
|
"table.searchPlaceholder": "Zoeken...",
|
|
25
|
+
"table.selection.label": "Selection",
|
|
25
26
|
"table.sorting.ascending": "Oplopend",
|
|
26
27
|
"table.sorting.descending": "Aflopend",
|
|
27
28
|
"table.sorting.label": "Sorteren",
|
package/translation.cjs5.js
CHANGED
|
@@ -22,6 +22,7 @@ var translation = {
|
|
|
22
22
|
"table.rowDensity.spacious": "Spacieux",
|
|
23
23
|
"table.search.placeholder": "Rechercher...",
|
|
24
24
|
"table.searchPlaceholder": "Rechercher...",
|
|
25
|
+
"table.selection.label": "Selection",
|
|
25
26
|
"table.sorting.ascending": "Croissant",
|
|
26
27
|
"table.sorting.descending": "Décroissant",
|
|
27
28
|
"table.sorting.label": "Tri",
|
package/translation.cjs6.js
CHANGED
|
@@ -22,6 +22,7 @@ var translation = {
|
|
|
22
22
|
"table.rowDensity.spacious": "Harva",
|
|
23
23
|
"table.search.placeholder": "Haku...",
|
|
24
24
|
"table.searchPlaceholder": "Haku...",
|
|
25
|
+
"table.selection.label": "Selection",
|
|
25
26
|
"table.sorting.ascending": "Nouseva",
|
|
26
27
|
"table.sorting.descending": "Laskeva",
|
|
27
28
|
"table.sorting.label": "Lajittelu",
|
package/translation.cjs7.js
CHANGED
|
@@ -22,6 +22,7 @@ var translation = {
|
|
|
22
22
|
"table.rowDensity.spacious": "Tágas",
|
|
23
23
|
"table.search.placeholder": "Keresés...",
|
|
24
24
|
"table.searchPlaceholder": "Keresés...",
|
|
25
|
+
"table.selection.label": "Selection",
|
|
25
26
|
"table.sorting.ascending": "Növekvő",
|
|
26
27
|
"table.sorting.descending": "Csökkenő",
|
|
27
28
|
"table.sorting.label": "Rendezés",
|
package/translation.cjs8.js
CHANGED
|
@@ -22,6 +22,7 @@ var translation = {
|
|
|
22
22
|
"table.rowDensity.spacious": "Ampia",
|
|
23
23
|
"table.search.placeholder": "Ricerca...",
|
|
24
24
|
"table.searchPlaceholder": "Ricerca...",
|
|
25
|
+
"table.selection.label": "Selection",
|
|
25
26
|
"table.sorting.ascending": "Ascendente",
|
|
26
27
|
"table.sorting.descending": "Discendente",
|
|
27
28
|
"table.sorting.label": "Ordinamento",
|
package/translation.cjs9.js
CHANGED
|
@@ -22,6 +22,7 @@ var translation = {
|
|
|
22
22
|
"table.rowDensity.spacious": "Romslig",
|
|
23
23
|
"table.search.placeholder": "Søk ...",
|
|
24
24
|
"table.searchPlaceholder": "Søk ...",
|
|
25
|
+
"table.selection.label": "Selection",
|
|
25
26
|
"table.sorting.ascending": "Stigende",
|
|
26
27
|
"table.sorting.descending": "Synkende",
|
|
27
28
|
"table.sorting.label": "Sortering",
|
package/translation.esm.js
CHANGED
|
@@ -20,6 +20,7 @@ var translation = {
|
|
|
20
20
|
"table.rowDensity.spacious": "Weitläufig",
|
|
21
21
|
"table.search.placeholder": "Suchen...",
|
|
22
22
|
"table.searchPlaceholder": "Suchen...",
|
|
23
|
+
"table.selection.label": "Selection",
|
|
23
24
|
"table.sorting.ascending": "Aufsteigend",
|
|
24
25
|
"table.sorting.descending": "Absteigend",
|
|
25
26
|
"table.sorting.label": "Sortierung",
|
package/translation.esm10.js
CHANGED
|
@@ -20,6 +20,7 @@ var translation = {
|
|
|
20
20
|
"table.rowDensity.spacious": "Przestronny",
|
|
21
21
|
"table.search.placeholder": "Szukaj...",
|
|
22
22
|
"table.searchPlaceholder": "Szukaj...",
|
|
23
|
+
"table.selection.label": "Selection",
|
|
23
24
|
"table.sorting.ascending": "Rosnąco",
|
|
24
25
|
"table.sorting.descending": "Malejąco",
|
|
25
26
|
"table.sorting.label": "Sortowanie",
|
package/translation.esm11.js
CHANGED
|
@@ -20,6 +20,7 @@ var translation = {
|
|
|
20
20
|
"table.rowDensity.spacious": "Espaçoso",
|
|
21
21
|
"table.search.placeholder": "Pesquisar...",
|
|
22
22
|
"table.searchPlaceholder": "Pesquisar...",
|
|
23
|
+
"table.selection.label": "Selection",
|
|
23
24
|
"table.sorting.ascending": "Ascendente",
|
|
24
25
|
"table.sorting.descending": "Descendente",
|
|
25
26
|
"table.sorting.label": "Ordenação",
|
package/translation.esm12.js
CHANGED
|
@@ -20,6 +20,7 @@ var translation = {
|
|
|
20
20
|
"table.rowDensity.spacious": "Просторный",
|
|
21
21
|
"table.search.placeholder": "Поиск...",
|
|
22
22
|
"table.searchPlaceholder": "Поиск...",
|
|
23
|
+
"table.selection.label": "Selection",
|
|
23
24
|
"table.sorting.ascending": "По возрастанию",
|
|
24
25
|
"table.sorting.descending": "По убыванию",
|
|
25
26
|
"table.sorting.label": "Сортировка",
|
package/translation.esm13.js
CHANGED
|
@@ -20,6 +20,7 @@ var translation = {
|
|
|
20
20
|
"table.rowDensity.spacious": "Spațios",
|
|
21
21
|
"table.search.placeholder": "Căutare...",
|
|
22
22
|
"table.searchPlaceholder": "Căutare...",
|
|
23
|
+
"table.selection.label": "Selection",
|
|
23
24
|
"table.sorting.ascending": "Ascendent",
|
|
24
25
|
"table.sorting.descending": "Descendent",
|
|
25
26
|
"table.sorting.label": "Sortare",
|
package/translation.esm14.js
CHANGED
|
@@ -20,6 +20,7 @@ var translation = {
|
|
|
20
20
|
"table.rowDensity.spacious": "Amplio",
|
|
21
21
|
"table.search.placeholder": "Buscar...",
|
|
22
22
|
"table.searchPlaceholder": "Buscar...",
|
|
23
|
+
"table.selection.label": "Selection",
|
|
23
24
|
"table.sorting.ascending": "Ascendente",
|
|
24
25
|
"table.sorting.descending": "Descendente",
|
|
25
26
|
"table.sorting.label": "Clasificación",
|
package/translation.esm15.js
CHANGED
|
@@ -20,6 +20,7 @@ var translation = {
|
|
|
20
20
|
"table.rowDensity.spacious": "Rymlig",
|
|
21
21
|
"table.search.placeholder": "Sök...",
|
|
22
22
|
"table.searchPlaceholder": "Sök...",
|
|
23
|
+
"table.selection.label": "Selection",
|
|
23
24
|
"table.sorting.ascending": "Stigande",
|
|
24
25
|
"table.sorting.descending": "Nedåtgående",
|
|
25
26
|
"table.sorting.label": "Sortering",
|
package/translation.esm16.js
CHANGED
|
@@ -20,6 +20,7 @@ var translation = {
|
|
|
20
20
|
"table.rowDensity.spacious": "ワイド",
|
|
21
21
|
"table.search.placeholder": "検索",
|
|
22
22
|
"table.searchPlaceholder": "検索",
|
|
23
|
+
"table.selection.label": "Selection",
|
|
23
24
|
"table.sorting.ascending": "昇順",
|
|
24
25
|
"table.sorting.descending": "降順",
|
|
25
26
|
"table.sorting.label": "並べ替え",
|
package/translation.esm17.js
CHANGED
|
@@ -20,6 +20,7 @@ var translation = {
|
|
|
20
20
|
"table.rowDensity.spacious": "กว้างขวาง",
|
|
21
21
|
"table.search.placeholder": "ค้นหา...",
|
|
22
22
|
"table.searchPlaceholder": "ค้นหา...",
|
|
23
|
+
"table.selection.label": "Selection",
|
|
23
24
|
"table.sorting.ascending": "จากน้อยไปมาก",
|
|
24
25
|
"table.sorting.descending": "จากมากไปน้อย",
|
|
25
26
|
"table.sorting.label": "การเรียงลำดับ",
|
package/translation.esm2.js
CHANGED
|
@@ -20,6 +20,7 @@ var translation = {
|
|
|
20
20
|
"table.rowDensity.spacious": "Rummelig",
|
|
21
21
|
"table.search.placeholder": "Søg...",
|
|
22
22
|
"table.searchPlaceholder": "Søg...",
|
|
23
|
+
"table.selection.label": "Selection",
|
|
23
24
|
"table.sorting.ascending": "Stigende",
|
|
24
25
|
"table.sorting.descending": "Faldende",
|
|
25
26
|
"table.sorting.label": "Sortering",
|
package/translation.esm3.js
CHANGED
|
@@ -20,6 +20,7 @@ var translation = {
|
|
|
20
20
|
"table.rowDensity.spacious": "Prostorný",
|
|
21
21
|
"table.search.placeholder": "Hledat...",
|
|
22
22
|
"table.searchPlaceholder": "Hledat...",
|
|
23
|
+
"table.selection.label": "Selection",
|
|
23
24
|
"table.sorting.ascending": "Vzestupné",
|
|
24
25
|
"table.sorting.descending": "Sestupné",
|
|
25
26
|
"table.sorting.label": "Třídění",
|
package/translation.esm4.js
CHANGED
|
@@ -20,6 +20,7 @@ var translation = {
|
|
|
20
20
|
"table.rowDensity.spacious": "Ruim",
|
|
21
21
|
"table.search.placeholder": "Zoeken...",
|
|
22
22
|
"table.searchPlaceholder": "Zoeken...",
|
|
23
|
+
"table.selection.label": "Selection",
|
|
23
24
|
"table.sorting.ascending": "Oplopend",
|
|
24
25
|
"table.sorting.descending": "Aflopend",
|
|
25
26
|
"table.sorting.label": "Sorteren",
|
package/translation.esm5.js
CHANGED
|
@@ -20,6 +20,7 @@ var translation = {
|
|
|
20
20
|
"table.rowDensity.spacious": "Spacieux",
|
|
21
21
|
"table.search.placeholder": "Rechercher...",
|
|
22
22
|
"table.searchPlaceholder": "Rechercher...",
|
|
23
|
+
"table.selection.label": "Selection",
|
|
23
24
|
"table.sorting.ascending": "Croissant",
|
|
24
25
|
"table.sorting.descending": "Décroissant",
|
|
25
26
|
"table.sorting.label": "Tri",
|
package/translation.esm6.js
CHANGED
|
@@ -20,6 +20,7 @@ var translation = {
|
|
|
20
20
|
"table.rowDensity.spacious": "Harva",
|
|
21
21
|
"table.search.placeholder": "Haku...",
|
|
22
22
|
"table.searchPlaceholder": "Haku...",
|
|
23
|
+
"table.selection.label": "Selection",
|
|
23
24
|
"table.sorting.ascending": "Nouseva",
|
|
24
25
|
"table.sorting.descending": "Laskeva",
|
|
25
26
|
"table.sorting.label": "Lajittelu",
|
package/translation.esm7.js
CHANGED
|
@@ -20,6 +20,7 @@ var translation = {
|
|
|
20
20
|
"table.rowDensity.spacious": "Tágas",
|
|
21
21
|
"table.search.placeholder": "Keresés...",
|
|
22
22
|
"table.searchPlaceholder": "Keresés...",
|
|
23
|
+
"table.selection.label": "Selection",
|
|
23
24
|
"table.sorting.ascending": "Növekvő",
|
|
24
25
|
"table.sorting.descending": "Csökkenő",
|
|
25
26
|
"table.sorting.label": "Rendezés",
|
package/translation.esm8.js
CHANGED
|
@@ -20,6 +20,7 @@ var translation = {
|
|
|
20
20
|
"table.rowDensity.spacious": "Ampia",
|
|
21
21
|
"table.search.placeholder": "Ricerca...",
|
|
22
22
|
"table.searchPlaceholder": "Ricerca...",
|
|
23
|
+
"table.selection.label": "Selection",
|
|
23
24
|
"table.sorting.ascending": "Ascendente",
|
|
24
25
|
"table.sorting.descending": "Discendente",
|
|
25
26
|
"table.sorting.label": "Ordinamento",
|
package/translation.esm9.js
CHANGED
|
@@ -20,6 +20,7 @@ var translation = {
|
|
|
20
20
|
"table.rowDensity.spacious": "Romslig",
|
|
21
21
|
"table.search.placeholder": "Søk ...",
|
|
22
22
|
"table.searchPlaceholder": "Søk ...",
|
|
23
|
+
"table.selection.label": "Selection",
|
|
23
24
|
"table.sorting.ascending": "Stigende",
|
|
24
25
|
"table.sorting.descending": "Synkende",
|
|
25
26
|
"table.sorting.label": "Sortering",
|