material-react-table 2.13.0 → 2.13.1

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.13.0",
2
+ "version": "2.13.1",
3
3
  "license": "MIT",
4
4
  "name": "material-react-table",
5
5
  "description": "A fully featured Material UI V5 implementation of TanStack React Table V8, written from the ground up in TypeScript.",
@@ -62,47 +62,47 @@
62
62
  "build-storybook": "storybook build"
63
63
  },
64
64
  "devDependencies": {
65
- "@emotion/react": "^11.11.4",
66
- "@emotion/styled": "^11.11.5",
65
+ "@emotion/react": "^11.13.0",
66
+ "@emotion/styled": "^11.13.0",
67
67
  "@faker-js/faker": "^8.4.1",
68
- "@mui/icons-material": "^5.15.15",
69
- "@mui/material": "^5.15.15",
70
- "@mui/x-date-pickers": "^7.2.0",
68
+ "@mui/icons-material": "^5.16.5",
69
+ "@mui/material": "^5.16.5",
70
+ "@mui/x-date-pickers": "^7.11.1",
71
71
  "@rollup/plugin-typescript": "^11.1.6",
72
- "@size-limit/preset-small-lib": "^11.1.2",
73
- "@storybook/addon-a11y": "^8.0.8",
74
- "@storybook/addon-essentials": "^8.0.8",
75
- "@storybook/addon-links": "^8.0.8",
76
- "@storybook/addon-storysource": "^8.0.8",
77
- "@storybook/blocks": "^8.0.8",
78
- "@storybook/preview-api": "^8.0.8",
79
- "@storybook/react": "^8.0.8",
80
- "@storybook/react-vite": "^8.0.8",
81
- "@types/node": "^20.12.7",
82
- "@types/react": "^18.2.79",
83
- "@types/react-dom": "^18.2.25",
84
- "@typescript-eslint/eslint-plugin": "^7.7.0",
85
- "@typescript-eslint/parser": "^7.7.0",
86
- "@vitejs/plugin-react": "^4.2.1",
87
- "eslint": "^9.0.0",
72
+ "@size-limit/preset-small-lib": "^11.1.4",
73
+ "@storybook/addon-a11y": "^8.2.6",
74
+ "@storybook/addon-essentials": "^8.2.6",
75
+ "@storybook/addon-links": "^8.2.6",
76
+ "@storybook/addon-storysource": "^8.2.6",
77
+ "@storybook/blocks": "^8.2.6",
78
+ "@storybook/preview-api": "^8.2.6",
79
+ "@storybook/react": "^8.2.6",
80
+ "@storybook/react-vite": "^8.2.6",
81
+ "@types/node": "^22.0.0",
82
+ "@types/react": "^18.3.3",
83
+ "@types/react-dom": "^18.3.0",
84
+ "@typescript-eslint/eslint-plugin": "^7.17.0",
85
+ "@typescript-eslint/parser": "^7.17.0",
86
+ "@vitejs/plugin-react": "^4.3.1",
87
+ "eslint": "^9.8.0",
88
88
  "eslint-plugin-mui-path-imports": "^0.0.15",
89
- "eslint-plugin-perfectionist": "^2.9.0",
89
+ "eslint-plugin-perfectionist": "^3.0.0",
90
90
  "eslint-plugin-storybook": "^0.8.0",
91
91
  "prop-types": "^15.8.1",
92
- "react": "^18.2.0",
93
- "react-dom": "^18.2.0",
94
- "react-is": "^18.2.0",
92
+ "react": "^18.3.1",
93
+ "react-dom": "^18.3.1",
94
+ "react-is": "^18.3.1",
95
95
  "rollup": "^2.79.1",
96
96
  "rollup-plugin-copy": "^3.5.0",
97
97
  "rollup-plugin-delete": "^2.0.0",
98
- "rollup-plugin-dts": "^6.1.0",
98
+ "rollup-plugin-dts": "^6.1.1",
99
99
  "rollup-plugin-peer-deps-external": "^2.2.4",
100
- "size-limit": "^11.1.2",
101
- "storybook": "^8.0.8",
102
- "storybook-dark-mode": "^4.0.1",
103
- "tslib": "^2.6.2",
104
- "typescript": "^5.4.5",
105
- "vite": "^5.2.9"
100
+ "size-limit": "^11.1.4",
101
+ "storybook": "^8.2.6",
102
+ "storybook-dark-mode": "^4.0.2",
103
+ "tslib": "^2.6.3",
104
+ "typescript": "^5.5.4",
105
+ "vite": "^5.3.5"
106
106
  },
107
107
  "peerDependencies": {
108
108
  "@emotion/react": ">=11.11",
@@ -115,8 +115,8 @@
115
115
  },
116
116
  "dependencies": {
117
117
  "@tanstack/match-sorter-utils": "8.15.1",
118
- "@tanstack/react-table": "8.16.0",
119
- "@tanstack/react-virtual": "3.3.0",
118
+ "@tanstack/react-table": "8.19.3",
119
+ "@tanstack/react-virtual": "3.8.3",
120
120
  "highlight-words": "1.2.2"
121
121
  }
122
122
  }
@@ -172,7 +172,7 @@ export const MRT_TableBody = <TData extends MRT_RowData>({
172
172
  rowVirtualizer,
173
173
  staticRowIndex,
174
174
  virtualRow: rowVirtualizer
175
- ? (rowOrVirtualRow as VirtualItem)
175
+ ? (rowOrVirtualRow as VirtualItem<HTMLTableRowElement>)
176
176
  : undefined,
177
177
  };
178
178
  const key = `${row.id}-${row.index}`;
@@ -191,6 +191,8 @@ export const MRT_TableBodyCell = <TData extends MRT_RowData>({
191
191
  const cellValueProps = {
192
192
  cell,
193
193
  table,
194
+ staticColumnIndex,
195
+ staticRowIndex,
194
196
  };
195
197
 
196
198
  const handleDoubleClick = (event: MouseEvent<HTMLTableCellElement>) => {
@@ -43,6 +43,8 @@ export const MRT_TableBodyCellValue = <TData extends MRT_RowData>({
43
43
  column,
44
44
  row,
45
45
  table,
46
+ staticColumnIndex,
47
+ staticRowIndex,
46
48
  })
47
49
  : row.getIsGrouped() && !cell.getIsGrouped()
48
50
  ? null
@@ -52,6 +54,8 @@ export const MRT_TableBodyCellValue = <TData extends MRT_RowData>({
52
54
  column,
53
55
  row,
54
56
  table,
57
+ staticColumnIndex,
58
+ staticRowIndex,
55
59
  })
56
60
  : undefined;
57
61
 
@@ -35,7 +35,7 @@ export interface MRT_TableBodyRowProps<TData extends MRT_RowData>
35
35
  rowVirtualizer?: MRT_RowVirtualizer;
36
36
  staticRowIndex: number;
37
37
  table: MRT_TableInstance<TData>;
38
- virtualRow?: VirtualItem;
38
+ virtualRow?: VirtualItem<HTMLTableRowElement>;
39
39
  }
40
40
 
41
41
  export const MRT_TableBodyRow = <TData extends MRT_RowData>({
@@ -18,7 +18,7 @@ export interface MRT_TableDetailPanelProps<TData extends MRT_RowData>
18
18
  rowVirtualizer?: MRT_RowVirtualizer;
19
19
  staticRowIndex: number;
20
20
  table: MRT_TableInstance<TData>;
21
- virtualRow?: MRT_VirtualItem;
21
+ virtualRow?: MRT_VirtualItem<HTMLTableRowElement>;
22
22
  }
23
23
 
24
24
  export const MRT_TableDetailPanel = <TData extends MRT_RowData>({
@@ -151,6 +151,7 @@ export const MRT_EditCellTextField = <TData extends MRT_RowData>({
151
151
  }}
152
152
  SelectProps={{
153
153
  MenuProps: { disableScrollLock: true },
154
+ ...textFieldProps.SelectProps,
154
155
  }}
155
156
  inputProps={{
156
157
  autoComplete: 'new-password', //disable autocomplete and autofill
@@ -91,7 +91,7 @@ export const useMRT_ColumnVirtualizer = <
91
91
  }) as unknown as MRT_ColumnVirtualizer<TScrollElement, TItemElement>;
92
92
 
93
93
  const virtualColumns = columnVirtualizer.getVirtualItems();
94
- columnVirtualizer.virtualColumns = virtualColumns;
94
+ columnVirtualizer.virtualColumns = virtualColumns as any;
95
95
  const numColumns = virtualColumns.length;
96
96
 
97
97
  if (numColumns) {
@@ -65,7 +65,7 @@ export const useMRT_RowVirtualizer = <
65
65
  ...rowVirtualizerProps,
66
66
  }) as unknown as MRT_RowVirtualizer<TScrollElement, TItemElement>;
67
67
 
68
- rowVirtualizer.virtualRows = rowVirtualizer.getVirtualItems();
68
+ rowVirtualizer.virtualRows = rowVirtualizer.getVirtualItems() as any;
69
69
 
70
70
  if (rowVirtualizerInstanceRef) {
71
71
  //@ts-ignore
package/src/types.ts CHANGED
@@ -114,7 +114,7 @@ export type MRT_PaginationState = PaginationState;
114
114
  export type MRT_RowSelectionState = RowSelectionState;
115
115
  export type MRT_SortingState = SortingState;
116
116
  export type MRT_Updater<T> = Updater<T>;
117
- export type MRT_VirtualItem = VirtualItem;
117
+ export type MRT_VirtualItem<T extends Element = Element> = VirtualItem<T>;
118
118
  export type MRT_VisibilityState = VisibilityState;
119
119
 
120
120
  export type MRT_VirtualizerOptions<
@@ -406,24 +406,27 @@ export interface MRT_TableState<TData extends MRT_RowData> extends TableState {
406
406
  showToolbarDropZone: boolean;
407
407
  }
408
408
 
409
- export type MRT_ColumnDef<TData extends MRT_RowData, TValue = unknown> = Omit<
410
- ColumnDef<TData, TValue>,
411
- | 'accessorKey'
412
- | 'aggregatedCell'
413
- | 'aggregationFn'
414
- | 'cell'
415
- | 'columns'
416
- | 'filterFn'
417
- | 'footer'
418
- | 'header'
419
- | 'id'
420
- | 'sortingFn'
421
- > & {
409
+ export interface MRT_ColumnDef<TData extends MRT_RowData, TValue = unknown>
410
+ extends Omit<
411
+ ColumnDef<TData, TValue>,
412
+ | 'accessorKey'
413
+ | 'aggregatedCell'
414
+ | 'aggregationFn'
415
+ | 'cell'
416
+ | 'columns'
417
+ | 'filterFn'
418
+ | 'footer'
419
+ | 'header'
420
+ | 'id'
421
+ | 'sortingFn'
422
+ > {
422
423
  AggregatedCell?: (props: {
423
424
  cell: MRT_Cell<TData, TValue>;
424
425
  column: MRT_Column<TData, TValue>;
425
426
  row: MRT_Row<TData>;
426
427
  table: MRT_TableInstance<TData>;
428
+ staticColumnIndex?: number;
429
+ staticRowIndex?: number;
427
430
  }) => ReactNode;
428
431
  Cell?: (props: {
429
432
  cell: MRT_Cell<TData, TValue>;
@@ -459,6 +462,8 @@ export type MRT_ColumnDef<TData extends MRT_RowData, TValue = unknown> = Omit<
459
462
  column: MRT_Column<TData, TValue>;
460
463
  row: MRT_Row<TData>;
461
464
  table: MRT_TableInstance<TData>;
465
+ staticColumnIndex?: number;
466
+ staticRowIndex?: number;
462
467
  }) => ReactNode;
463
468
  Header?:
464
469
  | ((props: {
@@ -678,7 +683,7 @@ export type MRT_ColumnDef<TData extends MRT_RowData, TValue = unknown> = Omit<
678
683
  }) => ReactNode[];
679
684
  sortingFn?: MRT_SortingFn<TData>;
680
685
  visibleInShowHideMenu?: boolean;
681
- };
686
+ }
682
687
 
683
688
  export type MRT_DisplayColumnDef<
684
689
  TData extends MRT_RowData,
@@ -798,19 +803,20 @@ export type MRT_DisplayColumnIds =
798
803
  * See the full props list on the official docs site:
799
804
  * @link https://www.material-react-table.com/docs/api/props
800
805
  */
801
- export type MRT_TableOptions<TData extends MRT_RowData> = Omit<
802
- Partial<TableOptions<TData>>,
803
- | 'columns'
804
- | 'data'
805
- | 'defaultColumn'
806
- | 'enableRowSelection'
807
- | 'expandRowsFn'
808
- | 'getRowId'
809
- | 'globalFilterFn'
810
- | 'initialState'
811
- | 'onStateChange'
812
- | 'state'
813
- > & {
806
+ export interface MRT_TableOptions<TData extends MRT_RowData>
807
+ extends Omit<
808
+ Partial<TableOptions<TData>>,
809
+ | 'columns'
810
+ | 'data'
811
+ | 'defaultColumn'
812
+ | 'enableRowSelection'
813
+ | 'expandRowsFn'
814
+ | 'getRowId'
815
+ | 'globalFilterFn'
816
+ | 'initialState'
817
+ | 'onStateChange'
818
+ | 'state'
819
+ > {
814
820
  columnFilterDisplayMode?: 'custom' | 'popover' | 'subheader';
815
821
  columnFilterModeOptions?: Array<
816
822
  LiteralUnion<string & MRT_FilterOption>
@@ -1289,4 +1295,4 @@ export type MRT_TableOptions<TData extends MRT_RowData> = Omit<
1289
1295
  * Manage state externally any way you want, then pass it back into MRT.
1290
1296
  */
1291
1297
  state?: Partial<MRT_TableState<TData>>;
1292
- };
1298
+ }
@@ -1,3 +0,0 @@
1
- import { type MRT_Localization } from '../..';
2
- export declare const MRT_Localization_AM: MRT_Localization;
3
-
@@ -1,3 +0,0 @@
1
- import { type MRT_Localization } from '../..';
2
- export declare const MRT_Localization_AM: MRT_Localization;
3
-
@@ -1,93 +0,0 @@
1
- const MRT_Localization_AM = {
2
- actions: 'እግር',
3
- and: 'እና',
4
- cancel: 'ሰርዝ',
5
- changeFilterMode: 'በማጣጣት የተቋቋኸውን ይቀይር',
6
- changeSearchMode: 'በደጋገሚ የተጠቀሰከውን ይቀይር',
7
- clearFilter: 'ተጠናቀቁ',
8
- clearSearch: 'የይላላ ግባብውን ይሰርዝ',
9
- clearSort: 'የማጣጣትውን ይሰረዝ',
10
- clickToCopy: 'ከሁሉም ተዘጋጅላቸው ይከፍሉ',
11
- collapse: 'ርክበ',
12
- collapseAll: 'ሁሉንም ርክበ',
13
- columnActions: 'ሁሉንም ማጠናከሪያዎች',
14
- copiedToClipboard: 'የተቀደሰውን ብለን ይከፈሉ',
15
- dropToGroupBy: 'ለ{column} የቡና ቦታ ወደጥዋት ይዘገቡ',
16
- edit: 'አስተካክ',
17
- expand: 'ጠቀሱ',
18
- expandAll: 'ሁሉንም ጠቀሱ',
19
- filterArrIncludes: 'አካሉን አስፈልጎ',
20
- filterArrIncludesAll: 'አካሉን ሁሉንም አስፈልጎ',
21
- filterArrIncludesSome: 'አካሉን ያለሁሉን አስፈልጎ',
22
- filterBetween: 'እና',
23
- filterBetweenInclusive: 'እና',
24
- filterByColumn: '{column} በአካል ማጣጣት',
25
- filterContains: 'የነሀበቱ አካል',
26
- filterEmpty: 'ትናት የለው',
27
- filterEndsWith: 'የመጨረሻው እብዎች',
28
- filterEquals: 'ከተማ',
29
- filterEqualsString: 'ከተማ',
30
- filterFuzzy: 'አስተናገር',
31
- filterGreaterThan: 'ድጋሜ',
32
- filterGreaterThanOrEqualTo: 'ድጋሜ ወይስ ትናት',
33
- filterInNumberRange: 'እና',
34
- filterIncludesString: 'አካሉን አስፈልጎ',
35
- filterIncludesStringSensitive: 'አካሉን አስፈልጎ',
36
- filterLessThan: 'ትናት',
37
- filterLessThanOrEqualTo: 'ትናት ወይስ ድጋሜ',
38
- filterMode: 'የቡና አካል: {filterType}',
39
- filterNotEmpty: 'ከለዎ',
40
- filterNotEquals: 'ከተማ የለው',
41
- filterStartsWith: 'የመጀሳው እብዎች',
42
- filterWeakEquals: 'ከተማ',
43
- filteringByColumn: '{column} በማጣጣት - {filterType} {filterValue}',
44
- goToFirstPage: 'ወደ መመለሻ ገጽ ይሂዱ',
45
- goToLastPage: 'ወደ መጨረሻ ገጽ ይሂዱ',
46
- goToNextPage: 'ወደ ቀጣይ ገጽ ይሂዱ',
47
- goToPreviousPage: 'ወደ ቀጣይ ገጽ ይሂዱ',
48
- grab: 'ቆይ',
49
- groupByColumn: '{column} ቡና',
50
- groupedBy: 'ቡና ቦታ ',
51
- hideAll: 'ሁሉንም ደገን',
52
- hideColumn: '{column} አካልን ደገን',
53
- max: 'ከፍተኛ',
54
- min: 'ከሚካሄዱ',
55
- move: 'እርምጃ',
56
- noRecordsToDisplay: 'ምንም የተለየም አልነበረም',
57
- noResultsFound: 'ምንም አልተገኘም',
58
- of: 'ከ',
59
- or: 'ወይም',
60
- pin: 'ቀዝቃኛ',
61
- pinToLeft: 'ወደ ግራ ቀዝቃኛ',
62
- pinToRight: 'ወደ ቀኝ ቀዝቃኛ',
63
- resetColumnSize: 'አካል መልክ ይስጥ',
64
- resetOrder: 'ማጣጣት ይስጥ',
65
- rowActions: 'ከሚከባቡ ማጠናከሪያዎች',
66
- rowNumber: '#',
67
- rowNumbers: 'የስም ቁጥሮች',
68
- rowsPerPage: 'በገቢ የቁጥር ቁጥሮች',
69
- save: 'አስቀምጥ',
70
- search: 'ፈልግ',
71
- selectedCountOfRowCountRowsSelected: 'የ{rowCount} ቁጥሮች ውስጠ የ{selectedCount} ሁኔ አምስቱ ቁጥሮች',
72
- select: 'ይምረጡ',
73
- showAll: 'ሁሉንም አሳ',
74
- showAllColumns: 'ሁሉንም አሳ',
75
- showHideColumns: 'ማጋጣሚዎችን አሳ/ሲክም',
76
- showHideFilters: 'ማጣጣዎችን አሳ/ሲክም',
77
- showHideSearch: 'ፍለጎችን አሳ/ሲክም',
78
- sortByColumnAsc: '{column} በለዋሉ ማጣጣት',
79
- sortByColumnDesc: '{column} በታዋሉ ማጣጣት',
80
- sortedByColumnAsc: '{column} በለዋሉ ነቀላዋሉ',
81
- sortedByColumnDesc: '{column} በታዋሉ ነቀላዋሉ',
82
- thenBy: 'እና',
83
- toggleDensity: 'ባዝላምውን አሳ/ሲክም',
84
- toggleFullScreen: 'የሙሉ ማሳያ አሳ/ሲክም',
85
- toggleSelectAll: 'ሁሉንም ይምረጡ/ይላል',
86
- toggleSelectRow: 'ቁጥሮችን ይምረጡ/ይላል',
87
- toggleVisibility: 'አሳ/ሲክም',
88
- ungroupByColumn: 'ቡና ማጣጣት ይከፍሉ',
89
- unpin: 'ቀዝቃኛን ቀዝቃኛን ይከፍሉ',
90
- unpinAll: 'ሁሉንም ቀዝቃኛን ቀዝቃኛን ይከፍሉ',
91
- };
92
-
93
- export { MRT_Localization_AM };
@@ -1,97 +0,0 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- const MRT_Localization_AM = {
6
- actions: 'እግር',
7
- and: 'እና',
8
- cancel: 'ሰርዝ',
9
- changeFilterMode: 'በማጣጣት የተቋቋኸውን ይቀይር',
10
- changeSearchMode: 'በደጋገሚ የተጠቀሰከውን ይቀይር',
11
- clearFilter: 'ተጠናቀቁ',
12
- clearSearch: 'የይላላ ግባብውን ይሰርዝ',
13
- clearSort: 'የማጣጣትውን ይሰረዝ',
14
- clickToCopy: 'ከሁሉም ተዘጋጅላቸው ይከፍሉ',
15
- collapse: 'ርክበ',
16
- collapseAll: 'ሁሉንም ርክበ',
17
- columnActions: 'ሁሉንም ማጠናከሪያዎች',
18
- copiedToClipboard: 'የተቀደሰውን ብለን ይከፈሉ',
19
- dropToGroupBy: 'ለ{column} የቡና ቦታ ወደጥዋት ይዘገቡ',
20
- edit: 'አስተካክ',
21
- expand: 'ጠቀሱ',
22
- expandAll: 'ሁሉንም ጠቀሱ',
23
- filterArrIncludes: 'አካሉን አስፈልጎ',
24
- filterArrIncludesAll: 'አካሉን ሁሉንም አስፈልጎ',
25
- filterArrIncludesSome: 'አካሉን ያለሁሉን አስፈልጎ',
26
- filterBetween: 'እና',
27
- filterBetweenInclusive: 'እና',
28
- filterByColumn: '{column} በአካል ማጣጣት',
29
- filterContains: 'የነሀበቱ አካል',
30
- filterEmpty: 'ትናት የለው',
31
- filterEndsWith: 'የመጨረሻው እብዎች',
32
- filterEquals: 'ከተማ',
33
- filterEqualsString: 'ከተማ',
34
- filterFuzzy: 'አስተናገር',
35
- filterGreaterThan: 'ድጋሜ',
36
- filterGreaterThanOrEqualTo: 'ድጋሜ ወይስ ትናት',
37
- filterInNumberRange: 'እና',
38
- filterIncludesString: 'አካሉን አስፈልጎ',
39
- filterIncludesStringSensitive: 'አካሉን አስፈልጎ',
40
- filterLessThan: 'ትናት',
41
- filterLessThanOrEqualTo: 'ትናት ወይስ ድጋሜ',
42
- filterMode: 'የቡና አካል: {filterType}',
43
- filterNotEmpty: 'ከለዎ',
44
- filterNotEquals: 'ከተማ የለው',
45
- filterStartsWith: 'የመጀሳው እብዎች',
46
- filterWeakEquals: 'ከተማ',
47
- filteringByColumn: '{column} በማጣጣት - {filterType} {filterValue}',
48
- goToFirstPage: 'ወደ መመለሻ ገጽ ይሂዱ',
49
- goToLastPage: 'ወደ መጨረሻ ገጽ ይሂዱ',
50
- goToNextPage: 'ወደ ቀጣይ ገጽ ይሂዱ',
51
- goToPreviousPage: 'ወደ ቀጣይ ገጽ ይሂዱ',
52
- grab: 'ቆይ',
53
- groupByColumn: '{column} ቡና',
54
- groupedBy: 'ቡና ቦታ ',
55
- hideAll: 'ሁሉንም ደገን',
56
- hideColumn: '{column} አካልን ደገን',
57
- max: 'ከፍተኛ',
58
- min: 'ከሚካሄዱ',
59
- move: 'እርምጃ',
60
- noRecordsToDisplay: 'ምንም የተለየም አልነበረም',
61
- noResultsFound: 'ምንም አልተገኘም',
62
- of: 'ከ',
63
- or: 'ወይም',
64
- pin: 'ቀዝቃኛ',
65
- pinToLeft: 'ወደ ግራ ቀዝቃኛ',
66
- pinToRight: 'ወደ ቀኝ ቀዝቃኛ',
67
- resetColumnSize: 'አካል መልክ ይስጥ',
68
- resetOrder: 'ማጣጣት ይስጥ',
69
- rowActions: 'ከሚከባቡ ማጠናከሪያዎች',
70
- rowNumber: '#',
71
- rowNumbers: 'የስም ቁጥሮች',
72
- rowsPerPage: 'በገቢ የቁጥር ቁጥሮች',
73
- save: 'አስቀምጥ',
74
- search: 'ፈልግ',
75
- selectedCountOfRowCountRowsSelected: 'የ{rowCount} ቁጥሮች ውስጠ የ{selectedCount} ሁኔ አምስቱ ቁጥሮች',
76
- select: 'ይምረጡ',
77
- showAll: 'ሁሉንም አሳ',
78
- showAllColumns: 'ሁሉንም አሳ',
79
- showHideColumns: 'ማጋጣሚዎችን አሳ/ሲክም',
80
- showHideFilters: 'ማጣጣዎችን አሳ/ሲክም',
81
- showHideSearch: 'ፍለጎችን አሳ/ሲክም',
82
- sortByColumnAsc: '{column} በለዋሉ ማጣጣት',
83
- sortByColumnDesc: '{column} በታዋሉ ማጣጣት',
84
- sortedByColumnAsc: '{column} በለዋሉ ነቀላዋሉ',
85
- sortedByColumnDesc: '{column} በታዋሉ ነቀላዋሉ',
86
- thenBy: 'እና',
87
- toggleDensity: 'ባዝላምውን አሳ/ሲክም',
88
- toggleFullScreen: 'የሙሉ ማሳያ አሳ/ሲክም',
89
- toggleSelectAll: 'ሁሉንም ይምረጡ/ይላል',
90
- toggleSelectRow: 'ቁጥሮችን ይምረጡ/ይላል',
91
- toggleVisibility: 'አሳ/ሲክም',
92
- ungroupByColumn: 'ቡና ማጣጣት ይከፍሉ',
93
- unpin: 'ቀዝቃኛን ቀዝቃኛን ይከፍሉ',
94
- unpinAll: 'ሁሉንም ቀዝቃኛን ቀዝቃኛን ይከፍሉ',
95
- };
96
-
97
- exports.MRT_Localization_AM = MRT_Localization_AM;
@@ -1,6 +0,0 @@
1
- {
2
- "main": "index.js",
3
- "module": "index.esm.js",
4
- "sideEffects": false,
5
- "types": "index.d.ts"
6
- }