@openui5/sap.ui.table 1.120.2 → 1.120.4

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 (71) hide show
  1. package/package.json +3 -3
  2. package/src/sap/ui/table/.library +2 -2
  3. package/src/sap/ui/table/AnalyticalColumn.js +2 -2
  4. package/src/sap/ui/table/AnalyticalColumnMenu.js +2 -2
  5. package/src/sap/ui/table/AnalyticalColumnMenuRenderer.js +1 -1
  6. package/src/sap/ui/table/AnalyticalTable.js +2 -2
  7. package/src/sap/ui/table/AnalyticalTableRenderer.js +1 -1
  8. package/src/sap/ui/table/Column.js +15 -69
  9. package/src/sap/ui/table/ColumnMenu.js +2 -2
  10. package/src/sap/ui/table/ColumnMenuRenderer.js +1 -1
  11. package/src/sap/ui/table/CreationRow.js +2 -2
  12. package/src/sap/ui/table/CreationRowRenderer.js +1 -1
  13. package/src/sap/ui/table/Row.js +2 -2
  14. package/src/sap/ui/table/RowAction.js +2 -2
  15. package/src/sap/ui/table/RowActionItem.js +2 -2
  16. package/src/sap/ui/table/RowActionRenderer.js +1 -1
  17. package/src/sap/ui/table/RowSettings.js +2 -2
  18. package/src/sap/ui/table/Table.js +2 -2
  19. package/src/sap/ui/table/TablePersoController.js +2 -2
  20. package/src/sap/ui/table/TableRenderer.js +1 -1
  21. package/src/sap/ui/table/TreeTable.js +2 -2
  22. package/src/sap/ui/table/TreeTableRenderer.js +1 -1
  23. package/src/sap/ui/table/designtime/AnalyticalTable.designtime.js +1 -1
  24. package/src/sap/ui/table/designtime/Table.designtime.js +1 -1
  25. package/src/sap/ui/table/designtime/library.designtime.js +1 -1
  26. package/src/sap/ui/table/extensions/Accessibility.js +7 -35
  27. package/src/sap/ui/table/extensions/AccessibilityRender.js +3 -3
  28. package/src/sap/ui/table/extensions/DragAndDrop.js +2 -2
  29. package/src/sap/ui/table/extensions/ExtensionBase.js +2 -2
  30. package/src/sap/ui/table/extensions/Keyboard.js +2 -2
  31. package/src/sap/ui/table/extensions/KeyboardDelegate.js +2 -2
  32. package/src/sap/ui/table/extensions/Pointer.js +2 -2
  33. package/src/sap/ui/table/extensions/Scrolling.js +2 -2
  34. package/src/sap/ui/table/extensions/ScrollingIOS.js +2 -2
  35. package/src/sap/ui/table/extensions/Synchronization.js +2 -2
  36. package/src/sap/ui/table/library.js +12 -12
  37. package/src/sap/ui/table/library.support.js +1 -1
  38. package/src/sap/ui/table/menus/ColumnHeaderMenuAdapter.js +2 -2
  39. package/src/sap/ui/table/menus/LegacyColumnMenuAdapter.js +1 -1
  40. package/src/sap/ui/table/menus/MobileColumnHeaderMenuAdapter.js +2 -2
  41. package/src/sap/ui/table/messagebundle_cnr.properties +126 -0
  42. package/src/sap/ui/table/messagebundle_en_US_saprigi.properties +75 -75
  43. package/src/sap/ui/table/messagebundle_sh.properties +10 -10
  44. package/src/sap/ui/table/messagebundle_sr.properties +126 -0
  45. package/src/sap/ui/table/plugins/BindingSelection.js +2 -2
  46. package/src/sap/ui/table/plugins/MultiSelectionPlugin.js +2 -2
  47. package/src/sap/ui/table/plugins/ODataV4Selection.js +1 -1
  48. package/src/sap/ui/table/plugins/PluginBase.js +2 -2
  49. package/src/sap/ui/table/plugins/SelectionModelSelection.js +2 -2
  50. package/src/sap/ui/table/plugins/SelectionPlugin.js +3 -3
  51. package/src/sap/ui/table/plugins/V4Aggregation.js +2 -2
  52. package/src/sap/ui/table/rowmodes/Auto.js +2 -2
  53. package/src/sap/ui/table/rowmodes/Fixed.js +2 -2
  54. package/src/sap/ui/table/rowmodes/Interactive.js +2 -2
  55. package/src/sap/ui/table/rowmodes/RowMode.js +2 -2
  56. package/src/sap/ui/table/rowmodes/Type.js +1 -1
  57. package/src/sap/ui/table/rowmodes/Variable.js +2 -2
  58. package/src/sap/ui/table/rules/Accessibility.support.js +1 -1
  59. package/src/sap/ui/table/rules/Binding.support.js +1 -1
  60. package/src/sap/ui/table/rules/ColumnTemplate.support.js +1 -1
  61. package/src/sap/ui/table/rules/Plugins.support.js +1 -1
  62. package/src/sap/ui/table/rules/Rows.support.js +1 -1
  63. package/src/sap/ui/table/rules/TableHelper.support.js +1 -1
  64. package/src/sap/ui/table/themes/base/library.source.less +1 -1
  65. package/src/sap/ui/table/themes/sap_hcb/library.source.less +1 -1
  66. package/src/sap/ui/table/utils/TableUtils.js +2 -2
  67. package/src/sap/ui/table/utils/_BindingUtils.js +2 -2
  68. package/src/sap/ui/table/utils/_ColumnUtils.js +2 -2
  69. package/src/sap/ui/table/utils/_GroupingUtils.js +2 -2
  70. package/src/sap/ui/table/utils/_HookUtils.js +2 -2
  71. package/src/sap/ui/table/utils/_MenuUtils.js +2 -2
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2024 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -770,7 +770,7 @@ sap.ui.define([
770
770
  * @class Extension for sap.ui.table.Table which handles mouse and touch related things.
771
771
  * @extends sap.ui.table.extensions.ExtensionBase
772
772
  * @author SAP SE
773
- * @version 1.120.2
773
+ * @version 1.120.4
774
774
  * @constructor
775
775
  * @private
776
776
  * @alias sap.ui.table.extensions.Pointer
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2024 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -2256,7 +2256,7 @@ sap.ui.define([
2256
2256
  * @class Extension for sap.ui.table.Table which handles scrolling.
2257
2257
  * @extends sap.ui.table.extensions.ExtensionBase
2258
2258
  * @author SAP SE
2259
- * @version 1.120.2
2259
+ * @version 1.120.4
2260
2260
  * @constructor
2261
2261
  * @private
2262
2262
  * @alias sap.ui.table.extensions.Scrolling
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2024 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -27,7 +27,7 @@ sap.ui.define([
27
27
  * @class Extension for sap.ui.table.Table which handles the scrollbar on iOS.
28
28
  * @extends sap.ui.table.extensions.ExtensionBase
29
29
  * @author SAP SE
30
- * @version 1.120.2
30
+ * @version 1.120.4
31
31
  * @constructor
32
32
  * @private
33
33
  * @alias sap.ui.table.extensions.ScrollingIOS
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2024 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -181,7 +181,7 @@ sap.ui.define([
181
181
  * @class Extension for sap.ui.table.Table that allows synchronization with a table.
182
182
  * @extends sap.ui.table.extensions.ExtensionBase
183
183
  * @author SAP SE
184
- * @version 1.120.2
184
+ * @version 1.120.4
185
185
  * @constructor
186
186
  * @private
187
187
  * @alias sap.ui.table.extensions.Synchronization
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2024 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -26,13 +26,13 @@ sap.ui.define([
26
26
  * @namespace
27
27
  * @alias sap.ui.table
28
28
  * @author SAP SE
29
- * @version 1.120.2
29
+ * @version 1.120.4
30
30
  * @since 0.8
31
31
  * @public
32
32
  */
33
33
  var thisLib = sap.ui.getCore().initLibrary({
34
34
  name: "sap.ui.table",
35
- version: "1.120.2",
35
+ version: "1.120.4",
36
36
  dependencies: ["sap.ui.core", "sap.ui.unified"],
37
37
  designtime: "sap/ui/table/designtime/library.designtime",
38
38
  types: [
@@ -92,7 +92,7 @@ sap.ui.define([
92
92
  /**
93
93
  * Navigation mode of the table
94
94
  *
95
- * @version 1.120.2
95
+ * @version 1.120.4
96
96
  * @enum {string}
97
97
  * @public
98
98
  */
@@ -119,7 +119,7 @@ sap.ui.define([
119
119
  /**
120
120
  * Row Action types.
121
121
  *
122
- * @version 1.120.2
122
+ * @version 1.120.4
123
123
  * @enum {string}
124
124
  * @public
125
125
  */
@@ -148,7 +148,7 @@ sap.ui.define([
148
148
  /**
149
149
  * Selection behavior of the table
150
150
  *
151
- * @version 1.120.2
151
+ * @version 1.120.4
152
152
  * @enum {string}
153
153
  * @public
154
154
  */
@@ -177,7 +177,7 @@ sap.ui.define([
177
177
  /**
178
178
  * Selection mode of the table
179
179
  *
180
- * @version 1.120.2
180
+ * @version 1.120.4
181
181
  * @enum {string}
182
182
  * @public
183
183
  */
@@ -213,7 +213,7 @@ sap.ui.define([
213
213
  /**
214
214
  * Sort order of a column
215
215
  *
216
- * @version 1.120.2
216
+ * @version 1.120.4
217
217
  * @enum {string}
218
218
  * @public
219
219
  * @deprecated As of version 1.120, replaced with <code>sap.ui.core.SortOrder</code>
@@ -237,7 +237,7 @@ sap.ui.define([
237
237
  /**
238
238
  * VisibleRowCountMode of the table
239
239
  *
240
- * @version 1.120.2
240
+ * @version 1.120.4
241
241
  * @enum {string}
242
242
  * @public
243
243
  */
@@ -268,7 +268,7 @@ sap.ui.define([
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.120.2
271
+ * @version 1.120.4
272
272
  * @enum {string}
273
273
  * @public
274
274
  */
@@ -366,7 +366,7 @@ sap.ui.define([
366
366
  *
367
367
  * This is an alias for {@link sap.ui.model.TreeAutoExpandMode} and kept for compatibility reasons.
368
368
  *
369
- * @version 1.120.2
369
+ * @version 1.120.4
370
370
  * @typedef {sap.ui.model.TreeAutoExpandMode}
371
371
  * @public
372
372
  * @deprecated As of version 1.120
@@ -380,7 +380,7 @@ sap.ui.define([
380
380
  /**
381
381
  * Mode of a selection plugin
382
382
  *
383
- * @version 1.120.2
383
+ * @version 1.120.4
384
384
  * @enum {string}
385
385
  * @private
386
386
  */
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2024 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
  /**
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2024 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -35,7 +35,7 @@ sap.ui.define([
35
35
  *
36
36
  * @extends sap.ui.base.Object
37
37
  * @author SAP SE
38
- * @version 1.120.2
38
+ * @version 1.120.4
39
39
  * @private
40
40
  * @alias sap.ui.table.menus.ColumnHeaderMenuAdapter
41
41
  */
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2024 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2024 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -59,7 +59,7 @@ sap.ui.define([
59
59
  *
60
60
  * @extends sap.ui.table.menus.ColumnHeaderMenuAdapter
61
61
  * @author SAP SE
62
- * @version 1.120.2
62
+ * @version 1.120.4
63
63
  * @private
64
64
  * @alias sap.ui.table.menus.MobileColumnHeaderMenuAdapter
65
65
  */
@@ -0,0 +1,126 @@
1
+
2
+ TBL_FILTER=Filter
3
+ TBL_FILTER_ITEM=Filtriranje...
4
+ TBL_SORT_ASC=Pore\u0111aj po rastu\u0107em redosljedu
5
+ TBL_SORT_DESC=Pore\u0111aj po opadaju\u0107em redosljedu
6
+ TBL_GROUP=Grupi\u0161i
7
+ TBL_UNGROUP=Poni\u0161ti grupisanje
8
+ TBL_UNGROUP_ALL=Poni\u0161ti grupisanje svega
9
+ TBL_COLUMNS=Kolone
10
+ TBL_FREEZE=Zamrzni
11
+ TBL_UNFREEZE=Odmrzni
12
+ TBL_MOVE_UP=Pomjeri nagore
13
+ TBL_MOVE_DOWN=Pomjeri nadolje
14
+ TBL_EXPAND_LEVEL=Pro\u0161iri nivo
15
+ TBL_COLLAPSE_LEVEL=Sa\u017Emi nivo
16
+ TBL_EXPAND_ALL=Pro\u0161iri sve
17
+ TBL_COLLAPSE_ALL=Sa\u017Emi sve
18
+ TBL_SHOW_COLUMN=Prika\u017Ei
19
+ TBL_HIDE_COLUMN=Sakrij
20
+ TBL_COL_VISBILITY_MENUITEM_SHOW=Prika\u017Ei kolonu
21
+ TBL_COL_VISBILITY_MENUITEM_HIDE=Sakrij kolonu
22
+
23
+ TBL_ROW_SELECT=Kliknite odaberete
24
+ TBL_ROW_DESELECT=Kliknite da poni\u0161tite odabir
25
+ TBL_ROW_SELECT_MULTI_TOGGLE=Kliknite da odaberete ili pritisnite SHIFT i kliknite da odaberete raspon
26
+
27
+ TBL_TABLE_SELECTION_MULTI=Tabela s vi\u0161estrukim odabirom
28
+ TBL_TABLE_SELECTION_SINGLE=Tabela s pojedina\u010Dnim odabirom
29
+
30
+ TBL_TABLE_INVALID=Neva\u017Ee\u0107a tabela
31
+
32
+ TBL_DATA_ROWS_COLS=Tabela sadr\u017Ei {0} redova i {1} kolona
33
+
34
+ TBL_ROW_SELECT_KEY=Da biste odabrali red, pritisnite razmak
35
+ TBL_ROW_DESELECT_KEY=Da biste poni\u0161tili odabir reda, pritisnite razmak
36
+
37
+ TBL_ANALYTICAL_TABLE_ROLE_DESCRIPTION=Analiti\u010Dka tabela
38
+
39
+ TBL_NO_COLUMNS=Trenutno nema vidljivih kolona u tabeli. Odaberite kolone koje su vam potrebne u pode\u0161avanjima tabele.
40
+
41
+ TBL_NO_DATA=Nema podataka
42
+
43
+ TBL_SELECT_ALL=Odaberi sve
44
+ TBL_DESELECT_ALL=Poni\u0161ti sve odabire
45
+
46
+ TBL_TOGGLE_EDIT_KEY=Da biste pre\u0161li na \u0107eliju tabele, pritisnite F2
47
+
48
+ TBL_COLLAPSE_EXPAND=Pro\u0161iri/sa\u017Emi \u010Dvor
49
+
50
+ TBL_LEAF=\u010Cvor
51
+
52
+ TBL_TOTAL=Ukupno
53
+
54
+ TBL_GRAND_TOTAL_ROW=Ukupni zbir
55
+
56
+ TBL_GROUP_TOTAL_ROW=Grupni zbir
57
+
58
+ TBL_FIXED_COLUMN=Fiksna kolona
59
+
60
+ TBL_ROW_ROWCOUNT=Red {0} od {1}
61
+
62
+ TBL_COL_COLCOUNT=Kolona {0} od {1}
63
+
64
+ TBL_ROW_GROUP_LABEL=Red grupe
65
+
66
+ TBL_ROW_GROUP_TITLE={0}\: {1}
67
+
68
+ TBL_ROW_GROUP_TITLE_FULL={0}\: {1} - {2}
69
+
70
+ TBL_COL_DESC_MENU=Meni dostupan
71
+
72
+ TBL_COL_DESC_FILTERED=Filtrirano
73
+
74
+ TBL_COL_DESC_SORTED_ASC=Pore\u0111ano po rastu\u0107em redosljedu
75
+
76
+ TBL_COL_DESC_SORTED_DES=Pore\u0111ano po opadaju\u0107em redosljedu
77
+
78
+ TBL_COL_DESC_SPAN=Obuhvata {0} kolona
79
+
80
+ TBL_COL_REQUIRED=Sadr\u017Ei obavezni sadr\u017Eaj
81
+
82
+ TBL_CTRL_STATE_DISABLED=Deaktivirano
83
+
84
+ TBL_CTRL_STATE_READONLY=Samo za \u010Ditanje
85
+
86
+ TBL_CTRL_STATE_EMPTY=Prazno
87
+
88
+ TBL_CTRL_STATE_REQUIRED=Obavezno
89
+
90
+ TBL_ROW_SELECTION_COLUMN_LABEL=Zaglavlje reda
91
+
92
+ TBL_ROW_ACTION_COLUMN_LABEL=Radnje reda
93
+
94
+ TBL_ROW_ACTION_NO_ACTION=Radnje nijesu dostupne
95
+
96
+ TBL_ROW_ACTION_SINGLE_ACTION=1 radnja dostupna
97
+
98
+ TBL_ROW_ACTION_MULTIPLE_ACTION={0} radnji dostupno
99
+
100
+ TBL_ROW_ACTION_NAVIGATE=Detalji
101
+
102
+ TBL_ROW_ACTION_DELETE=Izbri\u0161i
103
+
104
+ TBL_ROW_ACTION_MORE=Vi\u0161e
105
+
106
+ TBL_ROW_STATE_INFORMATION=Informacije
107
+
108
+ TBL_ROW_STATE_ERROR=Gre\u0161ka
109
+
110
+ TBL_ROW_STATE_WARNING=Upozorenje
111
+
112
+ TBL_ROW_STATE_SUCCESS=Uspjeh
113
+
114
+ TBL_ROW_STATE_NAVIGATED=Usmjereno
115
+
116
+ TBL_ROW_EXPAND_KEY=Da biste pro\u0161irili red, pritisnite razmak
117
+
118
+ TBL_ROW_COLLAPSE_KEY=Da biste sa\u017Eeli red, pritisnite razmak
119
+
120
+ TBL_CREATIONROW_APPLY=Dodaj red
121
+
122
+ TBL_CREATEROW_LABEL=Kreiraj novi unos u tabelu
123
+
124
+ TBL_SELECT_LIMIT_TITLE=Ograni\u010Denje odabira
125
+
126
+ TBL_SELECT_LIMIT=U ovoj tabeli ne mo\u017Eete dodavati vi\u0161e od {0} stavki istovremenu u odabir.\n\nMo\u017Eete da nastavite da dodajete u odabir koliko \u017Eelite, ali samo {0} stavki mo\u017Ee biti odabrano istovremeno.