You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Text shown in the custom footer on the far right for the metrics */
30
-
metricTexts?: {
31
-
/** Defaults to empty string, optionally pass a text (Last Update) to display before the metrics endTime timestamp. */
32
-
lastUpdate?: string;
33
-
34
-
/** Defaults to "items", word to display at the end of the metrics to represent the items (e.g. you could change it for "users" or anything else). */
35
-
items?: string;
36
-
37
-
/** Defaults to "of", text word separator to display between the filtered items count and the total unfiltered items count (e.g.: "10 of 100 items"). */
38
-
of?: string;
39
-
40
-
// -- Translation Keys --//
41
-
42
-
/** Defaults to "ITEMS", translation key used for the word displayed at the end of the metrics to represent the items (e.g. you could change it for "users" or anything else). */
43
-
itemsKey?: string;
44
-
45
-
/** Defaults to empty string, optionally pass a translation key (internally we use "LAST_UPDATE") to display before the metrics endTime timestamp. */
46
-
lastUpdateKey?: string;
47
-
48
-
/** Defaults to "OF", translation key used for the to display between the filtered items count and the total unfiltered items count. */
/** Defaults to empty string, optionally pass a text (Last Update) to display before the metrics endTime timestamp. */
3
+
lastUpdate?: string;
4
+
5
+
/** Defaults to "items", word to display at the end of the metrics to represent the items (e.g. you could change it for "users" or anything else). */
6
+
items?: string;
7
+
8
+
/** Defaults to "of", text word separator to display between the filtered items count and the total unfiltered items count (e.g.: "10 of 100 items"). */
9
+
of?: string;
10
+
11
+
/** Defaults to "records selected", text word that is associated to the row selection count. */
12
+
itemsSelected?: string;
13
+
14
+
// --
15
+
// Translation Keys
16
+
// ------------------
17
+
18
+
/** Defaults to "ITEMS", translation key used for the word displayed at the end of the metrics to represent the items (e.g. you could change it for "users" or anything else). */
19
+
itemsKey?: string;
20
+
21
+
/** Defaults to empty string, optionally pass a translation key (internally we use "LAST_UPDATE") to display before the metrics endTime timestamp. */
22
+
lastUpdateKey?: string;
23
+
24
+
/** Defaults to "OF", translation key used for the to display between the filtered items count and the total unfiltered items count. */
25
+
ofKey?: string;
26
+
27
+
/** Defaults to "ITEMS_SELECTED", text word that is associated to the row selection count. */
0 commit comments