@openui5/sap.ui.table 1.96.32 → 1.96.33

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.
Files changed (44) hide show
  1. package/package.json +3 -3
  2. package/src/sap/ui/table/.library +1 -1
  3. package/src/sap/ui/table/AnalyticalColumn.js +1 -1
  4. package/src/sap/ui/table/AnalyticalColumnMenu.js +1 -1
  5. package/src/sap/ui/table/AnalyticalTable.js +1 -1
  6. package/src/sap/ui/table/Column.js +1 -1
  7. package/src/sap/ui/table/ColumnMenu.js +1 -1
  8. package/src/sap/ui/table/CreationRow.js +1 -1
  9. package/src/sap/ui/table/Row.js +1 -1
  10. package/src/sap/ui/table/RowAction.js +1 -1
  11. package/src/sap/ui/table/RowActionItem.js +1 -1
  12. package/src/sap/ui/table/RowSettings.js +1 -1
  13. package/src/sap/ui/table/Table.js +1 -1
  14. package/src/sap/ui/table/TablePersoController.js +1 -1
  15. package/src/sap/ui/table/TreeTable.js +1 -1
  16. package/src/sap/ui/table/designtime/messagebundle_en_US_saptrc.properties +2 -0
  17. package/src/sap/ui/table/extensions/Accessibility.js +1 -1
  18. package/src/sap/ui/table/extensions/AccessibilityRender.js +1 -1
  19. package/src/sap/ui/table/extensions/DragAndDrop.js +1 -1
  20. package/src/sap/ui/table/extensions/ExtensionBase.js +1 -1
  21. package/src/sap/ui/table/extensions/Keyboard.js +1 -1
  22. package/src/sap/ui/table/extensions/KeyboardDelegate.js +1 -1
  23. package/src/sap/ui/table/extensions/Pointer.js +1 -1
  24. package/src/sap/ui/table/extensions/Scrolling.js +1 -1
  25. package/src/sap/ui/table/extensions/ScrollingIOS.js +1 -1
  26. package/src/sap/ui/table/extensions/Synchronization.js +1 -1
  27. package/src/sap/ui/table/library.js +10 -10
  28. package/src/sap/ui/table/messagebundle_en_US_saptrc.properties +160 -85
  29. package/src/sap/ui/table/plugins/BindingSelection.js +1 -1
  30. package/src/sap/ui/table/plugins/PluginBase.js +1 -1
  31. package/src/sap/ui/table/plugins/SelectionModelSelection.js +1 -1
  32. package/src/sap/ui/table/plugins/SelectionPlugin.js +1 -1
  33. package/src/sap/ui/table/plugins/V4Aggregation.js +1 -1
  34. package/src/sap/ui/table/rowmodes/AutoRowMode.js +1 -1
  35. package/src/sap/ui/table/rowmodes/FixedRowMode.js +1 -1
  36. package/src/sap/ui/table/rowmodes/InteractiveRowMode.js +1 -1
  37. package/src/sap/ui/table/rowmodes/RowMode.js +1 -1
  38. package/src/sap/ui/table/rowmodes/VariableRowMode.js +1 -1
  39. package/src/sap/ui/table/utils/TableUtils.js +1 -1
  40. package/src/sap/ui/table/utils/_BindingUtils.js +1 -1
  41. package/src/sap/ui/table/utils/_ColumnUtils.js +1 -1
  42. package/src/sap/ui/table/utils/_GroupingUtils.js +1 -1
  43. package/src/sap/ui/table/utils/_HookUtils.js +1 -1
  44. package/src/sap/ui/table/utils/_MenuUtils.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/sap.ui.table",
3
- "version": "1.96.32",
3
+ "version": "1.96.33",
4
4
  "description": "OpenUI5 UI Library sap.ui.table",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -14,7 +14,7 @@
14
14
  "url": "https://github.com/SAP/openui5.git"
15
15
  },
16
16
  "dependencies": {
17
- "@openui5/sap.ui.core": "1.96.32",
18
- "@openui5/sap.ui.unified": "1.96.32"
17
+ "@openui5/sap.ui.core": "1.96.33",
18
+ "@openui5/sap.ui.unified": "1.96.33"
19
19
  }
20
20
  }
@@ -6,7 +6,7 @@
6
6
  <copyright>OpenUI5
7
7
  * (c) Copyright 2009-2024 SAP SE or an SAP affiliate company.
8
8
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
9
- <version>1.96.32</version>
9
+ <version>1.96.33</version>
10
10
 
11
11
  <documentation>Table-like controls, mainly for desktop scenarios.</documentation>
12
12
 
@@ -46,7 +46,7 @@ sap.ui.define([
46
46
  * @extends sap.ui.table.Column
47
47
  *
48
48
  * @author SAP SE
49
- * @version 1.96.32
49
+ * @version 1.96.33
50
50
  *
51
51
  * @constructor
52
52
  * @public
@@ -23,7 +23,7 @@ sap.ui.define(['./ColumnMenu', "sap/ui/unified/MenuRenderer", './library', "sap/
23
23
  * @extends sap.ui.table.ColumnMenu
24
24
  *
25
25
  * @author SAP SE
26
- * @version 1.96.32
26
+ * @version 1.96.33
27
27
  *
28
28
  * @constructor
29
29
  * @public
@@ -60,7 +60,7 @@ sap.ui.define([
60
60
  * @see http://scn.sap.com/docs/DOC-44986
61
61
  *
62
62
  * @extends sap.ui.table.Table
63
- * @version 1.96.32
63
+ * @version 1.96.33
64
64
  *
65
65
  * @constructor
66
66
  * @public
@@ -70,7 +70,7 @@ sap.ui.define([
70
70
  * @class
71
71
  * The column allows you to define column specific properties that will be applied when rendering the table.
72
72
  * @extends sap.ui.core.Element
73
- * @version 1.96.32
73
+ * @version 1.96.33
74
74
  *
75
75
  * @constructor
76
76
  * @public
@@ -40,7 +40,7 @@ sap.ui.define([
40
40
  * @class
41
41
  * The column menu provides all common actions that can be performed on a column.
42
42
  * @extends sap.ui.unified.Menu
43
- * @version 1.96.32
43
+ * @version 1.96.33
44
44
  *
45
45
  * @constructor
46
46
  * @public
@@ -32,7 +32,7 @@ sap.ui.define([
32
32
  * <code>sap.ui.commons</code> library.
33
33
  * @extends sap.ui.core.Control
34
34
  * @author SAP SE
35
- * @version 1.96.32
35
+ * @version 1.96.33
36
36
  *
37
37
  * @constructor
38
38
  * @private
@@ -135,7 +135,7 @@ sap.ui.define([
135
135
  * @class
136
136
  * The row.
137
137
  * @extends sap.ui.core.Element
138
- * @version 1.96.32
138
+ * @version 1.96.33
139
139
  *
140
140
  * @constructor
141
141
  * @public
@@ -35,7 +35,7 @@ sap.ui.define([
35
35
  * If more action items are available as the available space allows to display an overflow mechanism is provided.
36
36
  * This control must only be used in the context of the <code>sap.ui.table.Table</code> control to define row actions.
37
37
  * @extends sap.ui.core.Control
38
- * @version 1.96.32
38
+ * @version 1.96.33
39
39
  *
40
40
  * @constructor
41
41
  * @public
@@ -24,7 +24,7 @@ sap.ui.define([
24
24
  * @extends sap.ui.core.Element
25
25
  *
26
26
  * @author SAP SE
27
- * @version 1.96.32
27
+ * @version 1.96.33
28
28
  * @since 1.45
29
29
  *
30
30
  * @constructor
@@ -24,7 +24,7 @@ sap.ui.define([
24
24
  * The <code>RowSettings</code> control allows you to configure a row.
25
25
  * You can only use this control in the context of the <code>sap.ui.table.Table</code> control to define row settings.
26
26
  * @extends sap.ui.core.Element
27
- * @version 1.96.32
27
+ * @version 1.96.33
28
28
  *
29
29
  * @constructor
30
30
  * @public
@@ -94,7 +94,7 @@ sap.ui.define([
94
94
  * the data model and binding being used.
95
95
  * </p>
96
96
  * @extends sap.ui.core.Control
97
- * @version 1.96.32
97
+ * @version 1.96.33
98
98
  *
99
99
  * @constructor
100
100
  * @public
@@ -30,7 +30,7 @@ sap.ui.define([
30
30
  * @extends sap.ui.base.ManagedObject
31
31
  *
32
32
  * @author SAP SE
33
- * @version 1.96.32
33
+ * @version 1.96.33
34
34
  * @since 1.21.1
35
35
  *
36
36
  * @constructor
@@ -40,7 +40,7 @@ sap.ui.define([
40
40
  * @class
41
41
  * The TreeTable control provides a comprehensive set of features to display hierarchical data.
42
42
  * @extends sap.ui.table.Table
43
- * @version 1.96.32
43
+ * @version 1.96.33
44
44
  *
45
45
  * @constructor
46
46
  * @public
@@ -0,0 +1,2 @@
1
+ #This is the resource bundle for design time of the SAPUI5 sap.ui.table library
2
+ #
@@ -902,7 +902,7 @@ sap.ui.define([
902
902
  * @class Extension for sap.ui.table.Table which handles ACC related things.
903
903
  * @extends sap.ui.table.extensions.ExtensionBase
904
904
  * @author SAP SE
905
- * @version 1.96.32
905
+ * @version 1.96.33
906
906
  * @constructor
907
907
  * @private
908
908
  * @alias sap.ui.table.extensions.Accessibility
@@ -44,7 +44,7 @@ sap.ui.define([
44
44
  * @class Extension for sap.ui.table.TableRenderer which handles ACC related things.
45
45
  * @extends sap.ui.table.extensions.ExtensionBase
46
46
  * @author SAP SE
47
- * @version 1.96.32
47
+ * @version 1.96.33
48
48
  * @constructor
49
49
  * @private
50
50
  * @alias sap.ui.table.extensions.AccessibilityRender
@@ -244,7 +244,7 @@ sap.ui.define([
244
244
  *
245
245
  * @extends sap.ui.table.extensions.ExtensionBase
246
246
  * @author SAP SE
247
- * @version 1.96.32
247
+ * @version 1.96.33
248
248
  * @constructor
249
249
  * @private
250
250
  * @alias sap.ui.table.extensions.DragAndDrop
@@ -19,7 +19,7 @@ sap.ui.define([
19
19
  * @abstract
20
20
  * @extends sap.ui.base.Object
21
21
  * @author SAP SE
22
- * @version 1.96.32
22
+ * @version 1.96.33
23
23
  * @constructor
24
24
  * @private
25
25
  * @alias sap.ui.table.extensions.ExtensionBase
@@ -267,7 +267,7 @@ sap.ui.define([
267
267
  * @class Extension for sap.ui.table.Table which handles keyboard related things.
268
268
  * @extends sap.ui.table.extensions.ExtensionBase
269
269
  * @author SAP SE
270
- * @version 1.96.32
270
+ * @version 1.96.33
271
271
  * @constructor
272
272
  * @private
273
273
  * @alias sap.ui.table.extensions.Keyboard
@@ -64,7 +64,7 @@ sap.ui.define([
64
64
  *
65
65
  * @extends sap.ui.base.Object
66
66
  * @author SAP SE
67
- * @version 1.96.32
67
+ * @version 1.96.33
68
68
  * @constructor
69
69
  * @private
70
70
  * @alias sap.ui.table.extensions.KeyboardDelegate
@@ -792,7 +792,7 @@ sap.ui.define([
792
792
  * @class Extension for sap.ui.table.Table which handles mouse and touch related things.
793
793
  * @extends sap.ui.table.extensions.ExtensionBase
794
794
  * @author SAP SE
795
- * @version 1.96.32
795
+ * @version 1.96.33
796
796
  * @constructor
797
797
  * @private
798
798
  * @alias sap.ui.table.extensions.Pointer
@@ -2298,7 +2298,7 @@ sap.ui.define([
2298
2298
  * @class Extension for sap.ui.table.Table which handles scrolling.
2299
2299
  * @extends sap.ui.table.extensions.ExtensionBase
2300
2300
  * @author SAP SE
2301
- * @version 1.96.32
2301
+ * @version 1.96.33
2302
2302
  * @constructor
2303
2303
  * @private
2304
2304
  * @alias sap.ui.table.extensions.Scrolling
@@ -29,7 +29,7 @@ sap.ui.define([
29
29
  * @class Extension for sap.ui.table.Table which handles the scrollbar on iOS.
30
30
  * @extends sap.ui.table.extensions.ExtensionBase
31
31
  * @author SAP SE
32
- * @version 1.96.32
32
+ * @version 1.96.33
33
33
  * @constructor
34
34
  * @private
35
35
  * @alias sap.ui.table.extensions.ScrollingIOS
@@ -143,7 +143,7 @@ sap.ui.define([
143
143
  * @class Extension for sap.ui.table.Table that allows synchronization with a table.
144
144
  * @extends sap.ui.table.extensions.ExtensionBase
145
145
  * @author SAP SE
146
- * @version 1.96.32
146
+ * @version 1.96.33
147
147
  * @constructor
148
148
  * @private
149
149
  * @alias sap.ui.table.extensions.Synchronization
@@ -17,7 +17,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/model/TreeAutoExpandMode',
17
17
  // delegate further initialization of this library to the Core
18
18
  sap.ui.getCore().initLibrary({
19
19
  name : "sap.ui.table",
20
- version: "1.96.32",
20
+ version: "1.96.33",
21
21
  dependencies : ["sap.ui.core","sap.ui.unified"],
22
22
  designtime: "sap/ui/table/designtime/library.designtime",
23
23
  types: [
@@ -74,7 +74,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/model/TreeAutoExpandMode',
74
74
  * @namespace
75
75
  * @alias sap.ui.table
76
76
  * @author SAP SE
77
- * @version 1.96.32
77
+ * @version 1.96.33
78
78
  * @since 0.8
79
79
  * @public
80
80
  */
@@ -83,7 +83,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/model/TreeAutoExpandMode',
83
83
  /**
84
84
  * Navigation mode of the table
85
85
  *
86
- * @version 1.96.32
86
+ * @version 1.96.33
87
87
  * @enum {string}
88
88
  * @public
89
89
  * @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel
@@ -111,7 +111,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/model/TreeAutoExpandMode',
111
111
  /**
112
112
  * Row Action types.
113
113
  *
114
- * @version 1.96.32
114
+ * @version 1.96.33
115
115
  * @enum {string}
116
116
  * @public
117
117
  * @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel
@@ -142,7 +142,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/model/TreeAutoExpandMode',
142
142
  /**
143
143
  * Selection behavior of the table
144
144
  *
145
- * @version 1.96.32
145
+ * @version 1.96.33
146
146
  * @enum {string}
147
147
  * @public
148
148
  * @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel
@@ -173,7 +173,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/model/TreeAutoExpandMode',
173
173
  /**
174
174
  * Selection mode of the table
175
175
  *
176
- * @version 1.96.32
176
+ * @version 1.96.33
177
177
  * @enum {string}
178
178
  * @public
179
179
  * @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel
@@ -211,7 +211,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/model/TreeAutoExpandMode',
211
211
  /**
212
212
  * Sort order of a column
213
213
  *
214
- * @version 1.96.32
214
+ * @version 1.96.33
215
215
  * @enum {string}
216
216
  * @public
217
217
  * @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel
@@ -236,7 +236,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/model/TreeAutoExpandMode',
236
236
  /**
237
237
  * VisibleRowCountMode of the table
238
238
  *
239
- * @version 1.96.32
239
+ * @version 1.96.33
240
240
  * @enum {string}
241
241
  * @public
242
242
  * @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel
@@ -268,7 +268,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/model/TreeAutoExpandMode',
268
268
  *
269
269
  * Contains IDs of shared DOM references, which should be accessible to inheriting controls via getDomRef() function.
270
270
  *
271
- * @version 1.96.32
271
+ * @version 1.96.33
272
272
  * @enum {string}
273
273
  * @public
274
274
  */
@@ -366,7 +366,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/model/TreeAutoExpandMode',
366
366
  *
367
367
  * This is an alias for {@link sap.ui.model.TreeAutoExpandMode} and kept for compatibility reasons.
368
368
  *
369
- * @version 1.96.32
369
+ * @version 1.96.33
370
370
  * @typedef {sap.ui.model.TreeAutoExpandMode}
371
371
  * @public
372
372
  */
@@ -1,122 +1,197 @@
1
+ #This is the resource bundle for the sap.ui.table library
2
+ #
3
+
4
+ #XMIT: Menuitem to filter
5
+ TBL_FILTER=22JooI8H+AJEl8FEYocqlg_Filter
6
+ #XMIT: Menuitem to e.g. open a filter dialog
7
+ TBL_FILTER_ITEM=IjlHcCt0FpQz/dKDqG8C3g_Filter...
8
+ #XMIT: Menuitem to sort descending
9
+ TBL_SORT_ASC=vTF1OOiSw/O8WEkoZlaBfg_Sort Ascending
10
+ #XMIT: Menuitem to sort descending
11
+ TBL_SORT_DESC=0MfWLRV8eAXC/ufdhI53mA_Sort Descending
12
+ #XMIT: Menuitem to group the column by its values
13
+ TBL_GROUP=czr/o3bhlnCgc0fMT9vkag_Group
14
+ #XMIT: Menuitem to ungroup the column
15
+ TBL_UNGROUP=EUXG3lx6ntVToTrcRFHd8g_Ungroup
16
+ #XMIT: Menuitem to ungroup all columns
17
+ TBL_UNGROUP_ALL=zPw8kDTjW+lEMhY8HfJVvw_Ungroup All
18
+ #XMIT: Menuitem to show the column visibility menu
19
+ TBL_COLUMNS=gBRdhr3lGQ/GusI/XRp3Mg_Columns
20
+ #XMIT: Menuitem to freeze the columns till the current one
21
+ TBL_FREEZE=MXF5DAqG7cLfCi3A8MHNsw_Freeze
22
+ #XMIT: Menuitem to unfreeze the columns
23
+ TBL_UNFREEZE=o/SAMxsyzkWp1XtWhcHLPw_Unfreeze
24
+ #XMIT: Menuitem to move a group up one level
25
+ TBL_MOVE_UP=MY4BkltxSnXlyVoY9IhN2A_Move Up
26
+ #XMIT: Menuitem to move a group down one level
27
+ TBL_MOVE_DOWN=nkjzVYJ6ulr0hTt2okXWPg_Move Down
28
+ #XMIT: Menuitem to expand all groups in a specific level
29
+ TBL_EXPAND_LEVEL=UFK+38SUBiM1LBB2ELDIOg_Expand Level
30
+ #XMIT: Menuitem to collapse all groups in a specific level
31
+ TBL_COLLAPSE_LEVEL=/yABJQ3SD81u2ExpU4GllQ_Collapse Level
32
+ #XMIT: Menuitem to expand all groups
33
+ TBL_EXPAND_ALL=8kGuh9/oixS33ssbGAEBgw_Expand All
34
+ #XMIT: Menuitem to collapse all open groups
35
+ TBL_COLLAPSE_ALL=CxbJ9g433PoaxVFmw+vadQ_Collapse All
36
+ #XMIT: Menuitem to set grouped column visible
37
+ TBL_SHOW_COLUMN=aGBldaDAn7r0zn0HoYQkZQ_Show
38
+ #XMIT: Menuitem to hide grouped column
39
+ TBL_HIDE_COLUMN=XsAq+SMexr9SyPqtIPNu9g_Hide
40
+ #XMIT: Menuitem in column visibility menu to set column visible
41
+ TBL_COL_VISBILITY_MENUITEM_SHOW=/Mo9nNUFUh5dKIIOAgR02A_Show Column
42
+ #XMIT: Menuitem in column visibility menu to hide column
43
+ TBL_COL_VISBILITY_MENUITEM_HIDE=luIlKOZjuVbDtFy2rfa+dw_Hide Column
44
+
45
+ #XTOL: tooltip for row selection
46
+ TBL_ROW_SELECT=MoDrmqN8E+1JZA0DL2diYw_Click to Select
47
+ #XTOL: tooltip for row deselection
48
+ TBL_ROW_DESELECT=1JHYr798rf7py0zooZ71Sw_Click to Deselect
49
+ #XTOL: tooltip for row selection in multi toggle selection mode
50
+ TBL_ROW_SELECT_MULTI_TOGGLE=jb5XTDeN/bOWD68L/5uxFQ_Click to select or press SHIFT and click to select a range
51
+
52
+ #XACT: accessibilty description for a table with enabled mutli-selection for rows (for the ScreenReader)
53
+ TBL_TABLE_SELECTION_MULTI=7Ra32+vKhilUiyFRqSmspQ_Multi-Selection Table
54
+ #XACT: accessibilty description for a table with enabled single-selection for rows (for the ScreenReader)
55
+ TBL_TABLE_SELECTION_SINGLE=YyT1r5W3VT1x1N5SYe54xg_Single-Selection Table
56
+
57
+ #XACT: accessibilty description for an invalid table (for the ScreenReader)
58
+ TBL_TABLE_INVALID=zDrgXAq50t9QoIxlO5421w_Invalid Table
59
+
60
+ #XACT: accessibilty description for count of rows and columns
61
+ TBL_DATA_ROWS_COLS=gFPE2YneS4kMqdhm/SW/WA_Table contains {0} rows and {1} columns
62
+
63
+ #XACT: accessibilty description for row selection via keyboard
64
+ TBL_ROW_SELECT_KEY=2qd+omHYfKiPBpgsn8jrFA_To select row, press SPACEBAR
65
+ #XACT: accessibilty description for row deselection via keyboard
66
+ TBL_ROW_DESELECT_KEY=J8wBy9Aize/X11iu+jZGDQ_To deselect row, press SPACEBAR
67
+
68
+ #XACT: accessability description for Analytical Table
69
+ TBL_ANALYTICAL_TABLE_ROLE_DESCRIPTION=gD5L+CyxrZ7C5/bNZzLM6Q_Analytical Table
70
+
71
+ #XMSG: Table content text when all table columns are hidden
72
+ TBL_NO_COLUMNS=SKggLNzRqLZpyX3wqnzlew_Right now, there are no visible columns in the table. Please select the columns you need in the table settings.
73
+
74
+ #XMSG: Table content text when no controls are rendered
75
+ TBL_NO_DATA=7yl74vfK0EIqi47QHv98Kg_No data
76
+
77
+ #XTOL: Tooltip for the select all row header
78
+ TBL_SELECT_ALL=MnFCE6I2iSqvlwJQX02N1A_Select All
79
+ #XTOL: Tooltip for the select all row header
80
+ TBL_DESELECT_ALL=TCoU5Qmdh/lrHqIjAjWd0A_Deselect All
81
+
82
+ #XACT: accessibilty description for toggling the edit mode on a cell via keyboard
83
+ TBL_TOGGLE_EDIT_KEY=UtHu6SgJNr9yFW4lXI6M/w_To enter a table cell, press F2
84
+
85
+ #XTOL: Expand a tree table node
86
+ TBL_EXPAND=np8FESEUkDe6yzdJ9DWqkg_Expand Node
1
87
 
2
- TBL_FILTER=d0OOJ7G7CvpP5acBWwi5kw_Filter
3
- TBL_FILTER_ITEM=tVBfmjfU9bjrwEClE9+eQg_Filter...
4
- TBL_SORT_ASC=V3bbnxhA8kBf/o8Arkj9cA_Sort Ascending
5
- TBL_SORT_DESC=OpehU7dsQVkeSSOpoxPX9A_Sort Descending
6
- TBL_GROUP=y12rvlRun2qNKJIZlWZQFw_Group
7
- TBL_UNGROUP=Rp+y2eFtHbCWrrqyl529ug_Ungroup
8
- TBL_UNGROUP_ALL=0GyPgsg5YnRE5FylJX8F5g_Ungroup All
9
- TBL_COLUMNS=SbNYbB0rPZGmbZsWhDy7RA_Columns
10
- TBL_FREEZE=5EVCK8UHAYbaVUJyO3SPsg_Freeze
11
- TBL_UNFREEZE=iEtB1rH3b9fO/SE45ogPpA_Unfreeze
12
- TBL_MOVE_UP=fxWX8YUi6bF4K3DWFExcEw_Move Up
13
- TBL_MOVE_DOWN=i5BGuo7krm+XSEqEISM4xg_Move Down
14
- TBL_EXPAND_LEVEL=z2he4lhCFNmMQ+ZnGyMF1g_Expand Level
15
- TBL_COLLAPSE_LEVEL=CFi3N6FpcvhGGr/6TJUxyg_Collapse Level
16
- TBL_EXPAND_ALL=3wfkvL4o3PjxNh34EDcMog_Expand All
17
- TBL_COLLAPSE_ALL=+L3uUnCxoxczUyH+j7CO6g_Collapse All
18
- TBL_SHOW_COLUMN=YpjI8UDklOSfgumpLVEm6w_Show
19
- TBL_HIDE_COLUMN=YReerZoKLnz6C4f2ayOPcg_Hide
20
- TBL_COL_VISBILITY_MENUITEM_SHOW=2g733THqRV2EZQ1WVOVfTw_Show Column
21
- TBL_COL_VISBILITY_MENUITEM_HIDE=0MfCRZgyMEU93NApDtBU1g_Hide Column
88
+ #XTOL: Collapse a tree table node
89
+ TBL_COLLAPSE=aJO0DlOkTGmtzugy38WAaA_Collapse Node
22
90
 
23
- TBL_ROW_SELECT=C97pvauewCZc6qjZbb+aKg_Click to Select
24
- TBL_ROW_DESELECT=s7pM08/usgYuNKM0Xh2JbQ_Click to Deselect
25
- TBL_ROW_SELECT_MULTI_TOGGLE=irRIFa48EE610d3mX9ifWQ_Click to select or press SHIFT and click to select a range
91
+ #XTOL: Tree Leaf Node
92
+ TBL_LEAF=xtu45y7fiqKnxNLLp38ZBA_Node
26
93
 
27
- TBL_TABLE_SELECTION_MULTI=UeZX3vswETdfyM8NfZC/BA_Multi-Selection Table
28
- TBL_TABLE_SELECTION_SINGLE=/6F1ylzpK2AKR1Ybi2VFGQ_Single-Selection Table
94
+ #XMIT: Menuitem to sum
95
+ TBL_TOTAL=NChxOoeR2egF2dIuU7h05A_Total
29
96
 
30
- TBL_TABLE_INVALID=CrLRwPSLvjBLjkkdnqGI6w_Invalid Table
97
+ #XACT: accessability description for total summary row. This is a row that displays, for example, the sum, min, max or average values of the entire data.
98
+ TBL_GRAND_TOTAL_ROW=eJcAGlctUwzjD9vh2k/DvA_Total summary
31
99
 
32
- TBL_DATA_ROWS_COLS=2JMktUcvTNNgWEZZUj3meQ_Table contains {0} rows and {1} columns
100
+ #XACT: accessability description for group summary row. This is a row that displays, for example, the sum, min, max or average values of a group.
101
+ TBL_GROUP_TOTAL_ROW=mOxkm5vO6+hpzdInTxb96w_Group summary
33
102
 
34
- TBL_ROW_SELECT_KEY=WcvIFdvtokAxDFoaeL+www_To select row, press SPACEBAR
35
- TBL_ROW_DESELECT_KEY=C+qxj759PSwXcnYnm/CLEQ_To deselect row, press SPACEBAR
103
+ #XACT: accessibilty description fixed columns
104
+ TBL_FIXED_COLUMN=S/zanm9rlkR16f2Epju+eQ_Fixed Column
36
105
 
37
- TBL_ANALYTICAL_TABLE_ROLE_DESCRIPTION=V0CLfyf+qjG4N9kaJ+lgRw_Analytical Table
106
+ #XACT: accessibility description for focused row count
107
+ TBL_ROW_ROWCOUNT=OElATZ7Ci+vD/SBlsg8XtA_Row {0} of {1}
38
108
 
39
- TBL_NO_COLUMNS=Q4fC15T9FOrEaF1CWVi6fQ_Right now, there are no visible columns in the table. Please select the columns you need in the table settings.
109
+ #XACT: accessibility description for focused column count
110
+ TBL_COL_COLCOUNT=2caW/iW9mRFBD1NkHj4rhw_Column {0} of {1}
40
111
 
41
- TBL_NO_DATA=fthhD9ZPs1U9ogMCmzHolw_No data
112
+ #XACT: accessibility label for a grouping row
113
+ TBL_ROW_GROUP_LABEL=RQ9kiElX0+L99NIMYO61rA_Group Row
42
114
 
43
- TBL_SELECT_ALL=mGunpEOILn844vTBEFUz4A_Select All
44
- TBL_DESELECT_ALL=QdiB8zJfiUL3OJSxbZFZbQ_Deselect All
115
+ #XTXT: Title of group headers. For example: "Country: Germany"
116
+ TBL_ROW_GROUP_TITLE=DQ/b6e+U7lFfUGDtnhEPdA_{0}\: {1}
45
117
 
46
- TBL_TOGGLE_EDIT_KEY=/lGwfx5s9/7fjhy0Ku5w+Q_To enter a table cell, press F2
118
+ #XTXT: Title of group headers with a combination of ID and text. For example: "Country: 001 - Germany"
119
+ TBL_ROW_GROUP_TITLE_FULL=tuZ9uZPV9asqOBWATuDgVQ_{0}\: {1} - {2}
47
120
 
48
- TBL_EXPAND=TdoG4R9m2BUBFeE+Ksc/pA_Expand Node
121
+ #XACT: accessibility description for a selected row
122
+ TBL_ROW_DESC_SELECTED=x/AivhCm1gwaUBtfa/dV7w_Row Selected
49
123
 
50
- TBL_COLLAPSE=HvHd5m8S3WXJI+CIBXtk8g_Collapse Node
124
+ #XACT: accessibility description for a column when menu is available
125
+ TBL_COL_DESC_MENU=f8RyjZnfGqwl31JNeK+lIQ_Menu Available
51
126
 
52
- TBL_LEAF=6GnMDQWv+vwvf9A20R9I7w_Node
127
+ #XACT: accessibility description for a filtered column
128
+ TBL_COL_DESC_FILTERED=WLMBbfDjGQWCmvV83obJPQ_Filtered
53
129
 
54
- TBL_TOTAL=5+/0fek80Ik3GMwHMKRmiw_Total
130
+ #XACT: accessibility description for a sorted column
131
+ TBL_COL_DESC_SORTED_ASC=pe8TggDdc6YAO/qsQqTyxg_Sorted Ascending
55
132
 
56
- TBL_GRAND_TOTAL_ROW=hG4MK9xDl6slBMBXFst5zA_Total summary
133
+ #XACT: accessibility description for a sorted column
134
+ TBL_COL_DESC_SORTED_DES=rQ3YhELb0FiqBDcGEs6fGQ_Sorted Descending
57
135
 
58
- TBL_GROUP_TOTAL_ROW=jdDZml7xN1LZx1wdb7eKug_Group summary
136
+ #XACT: accessibility description of how many columns are spanned by a column header
137
+ TBL_COL_DESC_SPAN=VxyUbGmPgGSxdU+JUhpP4A_Spans {0} columns
59
138
 
60
- TBL_FIXED_COLUMN=K2q/QbZQYHH41Jh/v8+seQ_Fixed Column
139
+ #XACT: state which should be announced by screenreaders if the element in a table cell is disabled
140
+ TBL_CTRL_STATE_DISABLED=hPvOcVHrrbTmHwLIwyNbTA_Disabled
61
141
 
62
- TBL_ROW_ROWCOUNT=1fuTaaMVEr1085C57O2iJw_Row {0} of {1}
142
+ #XACT: state which should be announced by screenreaders if the element in a table cell is readonly
143
+ TBL_CTRL_STATE_READONLY=yFzCb9zo5SlNOZjFyu8yYA_Read Only
63
144
 
64
- TBL_COL_COLCOUNT=KuBbMPkoefAY54RdQAnJxQ_Column {0} of {1}
145
+ #XTIT: Title of the Row Action Column
146
+ TBL_ROW_ACTION_COLUMN_LABEL=chaHJbEOtXOz0jcoWhpKfA_Row Actions
65
147
 
66
- TBL_ROW_GROUP_LABEL=1D1GGDaPWG0J7eWe7Tw0jg_Group Row
148
+ #XACT: Screenreader should announce when no actions are available
149
+ TBL_ROW_ACTION_NO_ACTION=GD7t3Nb/bhM9c/AWe1gBUQ_No actions available
67
150
 
68
- TBL_ROW_GROUP_TITLE=m5wwTa4kovInja25SyrEdw_{0}\: {1}
151
+ #XACT: Screenreader should announce when a action is available
152
+ TBL_ROW_ACTION_SINGLE_ACTION=QusTfquPZd1U+li8bsHZ1g_1 action available
69
153
 
70
- TBL_ROW_GROUP_TITLE_FULL=dPBF7qjW3bgMJ83LZ1EMpA_{0}\: {1} - {2}
154
+ #XACT: Screenreader should announce when several actions are available
155
+ TBL_ROW_ACTION_MULTIPLE_ACTION=Nzeheg8MYTYUpNMZxoreeA_{0} actions available
71
156
 
72
- TBL_ROW_DESC_SELECTED=bqtRZ5iGWT7hvbBgQit+IA_Row Selected
157
+ #XTOL: Tooltip for Navigation Action Icon in Table Row
158
+ TBL_ROW_ACTION_NAVIGATE=mZi9fx2l5dPcr0arcnoY1Q_Details
73
159
 
74
- TBL_COL_DESC_MENU=Qg292CD0hdei8skCCJN4Ag_Menu Available
160
+ #XTOL: Tooltip for Delete Action Icon in Table Row
161
+ TBL_ROW_ACTION_DELETE=Pu0NI4E9Vk3UNzkzt8GfXg_Delete
75
162
 
76
- TBL_COL_DESC_FILTERED=dAb449P082dU08590KDOKg_Filtered
163
+ #XTOL: Tooltip for More Actions Icon in Table Row
164
+ TBL_ROW_ACTION_MORE=/nZBjBJnS7dAOcb6RQv9Fg_More
77
165
 
78
- TBL_COL_DESC_SORTED_ASC=X7CLBDmwCzy0NiX59kgRvA_Sorted Ascending
166
+ #XACT: ARIA announcement for the information state of the table row
167
+ TBL_ROW_STATE_INFORMATION=6oOUNrASfaXLvV6Wixc8nw_Information
79
168
 
80
- TBL_COL_DESC_SORTED_DES=TaNWA0mxtwoIRUkgSRuzyw_Sorted Descending
169
+ #XACT: ARIA announcement for the error state of the table row
170
+ TBL_ROW_STATE_ERROR=RPHkjv8GOiVXJ8RLAr6mEg_Error
81
171
 
82
- TBL_COL_DESC_SPAN=IeviSSQDPD/LSpYkPlFe5A_Spans {0} columns
172
+ #XACT: ARIA announcement for the warning state of the table row
173
+ TBL_ROW_STATE_WARNING=/5hMO9Dg05xn+ogF0lHrGQ_Warning
83
174
 
84
- TBL_CTRL_STATE_DISABLED=aYVX+rGmmqRdXpBT7ASdMw_Disabled
175
+ #XACT: ARIA announcement for the success state of the table row
176
+ TBL_ROW_STATE_SUCCESS=2W5OyoiL8/nJb2I6CuFj8g_Success
85
177
 
86
- TBL_CTRL_STATE_READONLY=/qeKaItnVrzLeGrRV1nONA_Read Only
178
+ #XACT ARIA announcement for the navigated state of the table row
179
+ TBL_ROW_STATE_NAVIGATED=P7rm6/Wz9Kc/bA602v4f9g_Navigated
87
180
 
88
- TBL_ROW_ACTION_COLUMN_LABEL=UyoUctEcwyM67HHBuwwUlg_Row Actions
181
+ #XACT: accessibilty description for expanding the table row via keyboard
182
+ TBL_ROW_EXPAND_KEY=MOPynFNxl2DQUilVh5Ah/w_To expand row press SPACEBAR
89
183
 
90
- TBL_ROW_ACTION_NO_ACTION=JmI+LPYLs3kxbcoqCdm/fA_No actions available
184
+ #XACT: accessibilty description for collapsing the table row via keyboard
185
+ TBL_ROW_COLLAPSE_KEY=h2zBvtG1DrZV4zXaBlZ97A_To collapse row press SPACEBAR
91
186
 
92
- TBL_ROW_ACTION_SINGLE_ACTION=NIMsu64TTq6Z2XmQrrJQyw_1 action available
187
+ #XBUT: Text of the apply button to save the data entered in the "creation row", a form in the table for creating new rows.
188
+ TBL_CREATIONROW_APPLY=HfZdOXscQ967Df3BM2uc2g_Add Row
93
189
 
94
- TBL_ROW_ACTION_MULTIPLE_ACTION=wQVN0Kz7FWXWw7bXP11+xA_{0} actions available
190
+ #XACT: Accessibilty label for the table creation row
191
+ TBL_CREATEROW_LABEL=jt/UlbL1KqXm3YXFqyzY3g_Create new table entry
95
192
 
96
- TBL_ROW_ACTION_NAVIGATE=vqQxLmrQ5Ivk6cneBYZm2Q_Details
193
+ #XTIT: Title of the message popover on the last selected item, when the selection was limited
194
+ TBL_SELECT_LIMIT_TITLE=EpIl4lC9dBRvrp1PKNDc3g_Selection Limit
97
195
 
98
- TBL_ROW_ACTION_DELETE=WlCpv4xrY8wxbavvWzs1Hg_Delete
99
-
100
- TBL_ROW_ACTION_MORE=TYTU+Exaau10/3QSlbZwcg_More
101
-
102
- TBL_ROW_STATE_INFORMATION=Yh9L79M/OCkKKcG9nre+Yw_Information
103
-
104
- TBL_ROW_STATE_ERROR=hSB1AAGeHHTLqgHIv8VxTg_Error
105
-
106
- TBL_ROW_STATE_WARNING=kG1b3T2I5tFpp95NFhU6sg_Warning
107
-
108
- TBL_ROW_STATE_SUCCESS=P+djk0jSXbB3WLNy2ScUag_Success
109
-
110
- TBL_ROW_STATE_NAVIGATED=ZKTlXOi0Y+9enxzQidHElQ_Navigated
111
-
112
- TBL_ROW_EXPAND_KEY=CIyQEeI74IF6sRLf4xAyfA_To expand row press SPACEBAR
113
-
114
- TBL_ROW_COLLAPSE_KEY=Vi6Ig9fd7X2hIpYcDzMGBw_To collapse row press SPACEBAR
115
-
116
- TBL_CREATIONROW_APPLY=h4b55U1wIx5OFhYjLFVTCQ_Add Row
117
-
118
- TBL_CREATEROW_LABEL=c3TWpJE/8u/PHpxp7NnmyQ_Create new table entry
119
-
120
- TBL_SELECT_LIMIT_TITLE=MZkpMh2/1KpDOJSt2JCiCw_Selection Limit
121
-
122
- TBL_SELECT_LIMIT=bxXdKk0AQYaoid3kGGPDCw_In this table, you cannot add more than {0} items to your selection at once.\n\nYou can continue to add to your selection as often as you like, but only selecting {0} items at a time is possible.
196
+ #XMSG: Message popover on the last selected item, when the selection was limited
197
+ TBL_SELECT_LIMIT=ldse6ROoXLn7uKvDGHfMvw_In this table, you cannot add more than {0} items to your selection at once.\n\nYou can continue to add to your selection as often as you like, but only selecting {0} items at a time is possible.
@@ -22,7 +22,7 @@ sap.ui.define([
22
22
  *
23
23
  * @class Implements the selection methods for TreeTable and AnalyticalTable
24
24
  * @extends sap.ui.table.plugins.SelectionPlugin
25
- * @version 1.96.32
25
+ * @version 1.96.33
26
26
  * @constructor
27
27
  * @private
28
28
  * @alias sap.ui.table.plugins.BindingSelection
@@ -28,7 +28,7 @@ sap.ui.define([
28
28
  * @extends sap.ui.core.Element
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.96.32
31
+ * @version 1.96.33
32
32
  *
33
33
  * @private
34
34
  * @experimental Since 1.75
@@ -23,7 +23,7 @@ sap.ui.define([
23
23
  *
24
24
  * @class Implements the selection methods for a Table
25
25
  * @extends sap.ui.table.plugins.SelectionPlugin
26
- * @version 1.96.32
26
+ * @version 1.96.33
27
27
  * @constructor
28
28
  * @private
29
29
  * @alias sap.ui.table.plugins.SelectionModelSelection
@@ -29,7 +29,7 @@ sap.ui.define([
29
29
  * @class Implements the selection methods for a table.
30
30
  * @extends sap.ui.core.Element
31
31
  * @author SAP SE
32
- * @version 1.96.32
32
+ * @version 1.96.33
33
33
  * @public
34
34
  * @since 1.64
35
35
  * @experimental As of version 1.64
@@ -32,7 +32,7 @@ sap.ui.define([
32
32
  * @class TODO (don't forget to document fixed row count restrictions because fixed rows are set by this plugin)
33
33
  * @extends sap.ui.table.plugins.PluginBase
34
34
  * @author SAP SE
35
- * @version 1.96.32
35
+ * @version 1.96.33
36
36
  * @private
37
37
  * @since 1.76
38
38
  * @experimental
@@ -35,7 +35,7 @@ sap.ui.define([
35
35
  * @ui5-restricted sap.ui.mdc
36
36
  *
37
37
  * @author SAP SE
38
- * @version 1.96.32
38
+ * @version 1.96.33
39
39
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
40
40
  */
41
41
  var AutoRowMode = RowMode.extend("sap.ui.table.rowmodes.AutoRowMode", /** @lends sap.ui.table.rowmodes.AutoRowMode.prototype */ {
@@ -29,7 +29,7 @@ sap.ui.define([
29
29
  * @ui5-restricted sap.ui.mdc
30
30
  *
31
31
  * @author SAP SE
32
- * @version 1.96.32
32
+ * @version 1.96.33
33
33
  *
34
34
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
35
35
  */
@@ -33,7 +33,7 @@ sap.ui.define([
33
33
  * @ui5-restricted sap.ui.mdc
34
34
  *
35
35
  * @author SAP SE
36
- * @version 1.96.32
36
+ * @version 1.96.33
37
37
  *
38
38
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
39
39
  */
@@ -36,7 +36,7 @@ sap.ui.define([
36
36
  * @ui5-restricted sap.ui.mdc
37
37
  *
38
38
  * @author SAP SE
39
- * @version 1.96.32
39
+ * @version 1.96.33
40
40
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
41
41
  */
42
42
  var RowMode = Element.extend("sap.ui.table.rowmodes.RowMode", /** @lends sap.ui.table.rowmodes.RowMode.prototype */ {
@@ -23,7 +23,7 @@ sap.ui.define([
23
23
  * @extends sap.ui.table.rowmodes.RowMode
24
24
  *
25
25
  * @author SAP SE
26
- * @version 1.96.32
26
+ * @version 1.96.33
27
27
  *
28
28
  * @constructor
29
29
  * @private
@@ -209,7 +209,7 @@ sap.ui.define([
209
209
  * Static collection of utility functions related to the sap.ui.table.Table, ...
210
210
  *
211
211
  * @author SAP SE
212
- * @version 1.96.32
212
+ * @version 1.96.33
213
213
  * @namespace
214
214
  * @alias sap.ui.table.utils.TableUtils
215
215
  * @private
@@ -14,7 +14,7 @@ sap.ui.define([], function() {
14
14
  * Note: Do not access the functions of this helper directly, but via <code>sap.ui.table.utils.TableUtils.Binding...</code>
15
15
  *
16
16
  * @author SAP SE
17
- * @version 1.96.32
17
+ * @version 1.96.33
18
18
  * @namespace
19
19
  * @alias sap.ui.table.utils._BindingUtils
20
20
  * @private
@@ -18,7 +18,7 @@ sap.ui.define([
18
18
  * Note: Do not access the functions of this helper directly, but via <code>sap.ui.table.utils.TableUtils.Column...</code>
19
19
  *
20
20
  * @author SAP SE
21
- * @version 1.96.32
21
+ * @version 1.96.33
22
22
  * @namespace
23
23
  * @alias sap.ui.table.utils._ColumnUtils
24
24
  * @private
@@ -23,7 +23,7 @@ sap.ui.define([
23
23
  * Note: Do not access the functions of this helper directly, but via <code>sap.ui.table.utils.TableUtils.Grouping...</code>
24
24
  *
25
25
  * @author SAP SE
26
- * @version 1.96.32
26
+ * @version 1.96.33
27
27
  * @namespace
28
28
  * @alias sap.ui.table.utils._GroupingUtils
29
29
  * @private
@@ -22,7 +22,7 @@ sap.ui.define(["sap/ui/base/DataType", "sap/base/Log"], function(DataType, Log)
22
22
  * - There is no concept for public or protected hooks. Never expose a hook directly, only indirectly as can be seen in the examples.
23
23
  *
24
24
  * @author SAP SE
25
- * @version 1.96.32
25
+ * @version 1.96.33
26
26
  * @namespace
27
27
  * @alias sap.ui.table.utils._HookUtils
28
28
  *
@@ -42,7 +42,7 @@ sap.ui.define([
42
42
  * Note: Do not access the functions of this helper directly, but via <code>sap.ui.table.utils.TableUtils.Menu...</code>
43
43
  *
44
44
  * @author SAP SE
45
- * @version 1.96.32
45
+ * @version 1.96.33
46
46
  * @namespace
47
47
  * @alias sap.ui.table.utils._MenuUtils
48
48
  * @private