@openui5/sap.uxap 1.96.23 → 1.96.25
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 +5 -5
- package/src/sap/uxap/.library +1 -1
- package/src/sap/uxap/BlockBaseMetadata.js +1 -1
- package/src/sap/uxap/LazyLoading.js +2 -36
- package/src/sap/uxap/ObjectPageAccessibleLandmarkInfo.js +1 -1
- package/src/sap/uxap/ObjectPageDynamicHeaderContent.js +1 -1
- package/src/sap/uxap/ObjectPageDynamicHeaderTitle.js +1 -1
- package/src/sap/uxap/ObjectPageLazyLoader.js +1 -1
- package/src/sap/uxap/ObjectPageSubSection.js +2 -0
- package/src/sap/uxap/changeHandler/AddIFrameObjectPageLayout.js +1 -1
- package/src/sap/uxap/changeHandler/MoveObjectPageSection.js +1 -1
- package/src/sap/uxap/changeHandler/RenameObjectPageSection.js +1 -1
- package/src/sap/uxap/library.js +2 -2
- package/src/sap/uxap/messagebundle_en.properties +42 -0
- package/src/sap/uxap/messagebundle_mk.properties +80 -0
- package/src/sap/uxap/messagebundle_nl.properties +1 -1
- package/src/sap/uxap/messagebundle_sh.properties +1 -1
- package/src/sap/uxap/messagebundle_sr.properties +80 -0
- package/src/sap/uxap/themes/base/ObjectPageSubSection.less +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openui5/sap.uxap",
|
|
3
|
-
"version": "1.96.
|
|
3
|
+
"version": "1.96.25",
|
|
4
4
|
"description": "OpenUI5 UI Library sap.uxap",
|
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
"url": "https://github.com/SAP/openui5.git"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@openui5/sap.f": "1.96.
|
|
18
|
-
"@openui5/sap.m": "1.96.
|
|
19
|
-
"@openui5/sap.ui.core": "1.96.
|
|
20
|
-
"@openui5/sap.ui.layout": "1.96.
|
|
17
|
+
"@openui5/sap.f": "1.96.25",
|
|
18
|
+
"@openui5/sap.m": "1.96.25",
|
|
19
|
+
"@openui5/sap.ui.core": "1.96.25",
|
|
20
|
+
"@openui5/sap.ui.layout": "1.96.25"
|
|
21
21
|
}
|
|
22
22
|
}
|
package/src/sap/uxap/.library
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
<name>sap.uxap</name>
|
|
5
5
|
<vendor>SAP SE</vendor>
|
|
6
|
-
<version>1.96.
|
|
6
|
+
<version>1.96.25</version>
|
|
7
7
|
<copyright>OpenUI5
|
|
8
8
|
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
9
9
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
|
|
@@ -50,14 +50,6 @@ sap.ui.define([
|
|
|
50
50
|
//this delay avoid loading data for every subsections during scroll
|
|
51
51
|
this.LAZY_LOADING_DELAY = 200; //ms.
|
|
52
52
|
|
|
53
|
-
//lazy loading fine tuning
|
|
54
|
-
//An extra non visible subsection will be loaded if the top of this subsection is at
|
|
55
|
-
//no more than LAZY_LOADING_EXTRA_PAGE_SIZE * page height from the bottom of the page.
|
|
56
|
-
this.LAZY_LOADING_EXTRA_PAGE_SIZE = 0.5;
|
|
57
|
-
|
|
58
|
-
// delayed lazy loading call to check if there's another extra subsection to load
|
|
59
|
-
this.LAZY_LOADING_EXTRA_SUBSECTION = this.LAZY_LOADING_DELAY * 5;
|
|
60
|
-
|
|
61
53
|
//number of subsections which should be preloaded :
|
|
62
54
|
// - FirstRendering : for first loading
|
|
63
55
|
// - ScrollToSection : default value when scrolling to a subsection
|
|
@@ -151,8 +143,6 @@ sap.ui.define([
|
|
|
151
143
|
iScrollPageBottom,
|
|
152
144
|
iPageHeight,
|
|
153
145
|
bShouldStick = this._iPreviousScrollTop >= (oHeightParams.iHeaderContentHeight), // iHeaderContentHeight
|
|
154
|
-
sExtraSubSectionId,
|
|
155
|
-
iExtraSubSectionTop = -1,
|
|
156
146
|
oSubSectionsToLoad = {},
|
|
157
147
|
oSubSectionsInView = {},
|
|
158
148
|
iTimeDifference,
|
|
@@ -217,28 +207,11 @@ sap.ui.define([
|
|
|
217
207
|
if (!oInfo.loaded) {
|
|
218
208
|
oSubSectionsToLoad[sId] = sId;
|
|
219
209
|
}
|
|
220
|
-
// Lazy loading will add an extra subsection :
|
|
221
|
-
// the first (highest) subsection not yet visible (and not yet loaded)
|
|
222
|
-
// top of this subsection must be close from page bottom (less than 0.5 page : LAZY_LOADING_EXTRA_PAGE_SIZE)
|
|
223
|
-
} else if (!oInfo.loaded && oInfo.positionTop > iScrollPageBottom &&
|
|
224
|
-
oInfo.positionTop < iScrollPageBottom + iPageHeight * this.LAZY_LOADING_EXTRA_PAGE_SIZE &&
|
|
225
|
-
(iExtraSubSectionTop == -1 || oInfo.positionTop < iExtraSubSectionTop)) {
|
|
226
|
-
iExtraSubSectionTop = oInfo.positionTop;
|
|
227
|
-
sExtraSubSectionId = sId;
|
|
228
210
|
}
|
|
229
211
|
}
|
|
230
212
|
|
|
231
213
|
}, this));
|
|
232
214
|
|
|
233
|
-
//add the extra subsection if:
|
|
234
|
-
// - we have found one
|
|
235
|
-
// - we have no visible subsections to load
|
|
236
|
-
if (iExtraSubSectionTop != -1 &&
|
|
237
|
-
isEmptyObject(oSubSectionsToLoad)) {
|
|
238
|
-
Log.debug("ObjectPageLayout :: lazyLoading", "extra section added : " + sExtraSubSectionId);
|
|
239
|
-
oSubSectionsToLoad[sExtraSubSectionId] = sExtraSubSectionId;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
215
|
//Load the subsections
|
|
243
216
|
jQuery.each(oSubSectionsToLoad, jQuery.proxy(function (idx, sSectionId) {
|
|
244
217
|
Log.debug("ObjectPageLayout :: lazyLoading", "connecting " + sSectionId);
|
|
@@ -264,15 +237,8 @@ sap.ui.define([
|
|
|
264
237
|
//sections will actually be loaded (no shift) if scroll stops suddenly.
|
|
265
238
|
this._sLazyLoadingTimer = setTimeout(this.doLazyLoading.bind(this), this.LAZY_LOADING_DELAY);
|
|
266
239
|
} else {
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
//relaunch a delayed lazy loading call to check if there's another extra subsection to load
|
|
270
|
-
//We use a long delay (5* LAZY_LOADING_DELAY) to wait for current loading completion.
|
|
271
|
-
this._sLazyLoadingTimer = setTimeout(this.doLazyLoading.bind(this), this.LAZY_LOADING_EXTRA_SUBSECTION);
|
|
272
|
-
} else {
|
|
273
|
-
//reset the lazy loading timer
|
|
274
|
-
this._sLazyLoadingTimer = null;
|
|
275
|
-
}
|
|
240
|
+
//reset the lazy loading timer
|
|
241
|
+
this._sLazyLoadingTimer = null;
|
|
276
242
|
}
|
|
277
243
|
};
|
|
278
244
|
|
|
@@ -556,6 +556,8 @@ sap.ui.define([
|
|
|
556
556
|
this._getGrid().removeAllContent();
|
|
557
557
|
this._applyLayout(oObjectPageLayout);
|
|
558
558
|
this.refreshSeeMoreVisibility();
|
|
559
|
+
|
|
560
|
+
this.toggleStyleClass("sapUxAPObjectPageSubSectionStashed", this._aStashedControls.length ? true : false);
|
|
559
561
|
};
|
|
560
562
|
|
|
561
563
|
ObjectPageSubSection.prototype._applyLayout = function (oLayoutProvider) {
|
package/src/sap/uxap/library.js
CHANGED
|
@@ -24,7 +24,7 @@ sap.ui.define([
|
|
|
24
24
|
* @namespace
|
|
25
25
|
* @name sap.uxap
|
|
26
26
|
* @author SAP SE
|
|
27
|
-
* @version 1.96.
|
|
27
|
+
* @version 1.96.25
|
|
28
28
|
* @since 1.36
|
|
29
29
|
* @public
|
|
30
30
|
*/
|
|
@@ -69,7 +69,7 @@ sap.ui.define([
|
|
|
69
69
|
"sap.uxap.ObjectPageHeaderLayoutData",
|
|
70
70
|
"sap.uxap.ObjectPageLazyLoader"
|
|
71
71
|
],
|
|
72
|
-
version: "1.96.
|
|
72
|
+
version: "1.96.25",
|
|
73
73
|
extensions: {
|
|
74
74
|
flChangeHandlers: {
|
|
75
75
|
"sap.uxap.ObjectPageHeader": "sap/uxap/flexibility/ObjectPageHeader",
|
|
@@ -1,80 +1,122 @@
|
|
|
1
|
+
# com.sap.uxap:uxap-uilib resource file
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XBUT,15: Text displayed on the button to click to expand the subsection (when expanded user will see more information)
|
|
2
5
|
SHOW_MORE=Show More
|
|
3
6
|
|
|
7
|
+
#XBUT,15: Text displayed on the button to click to collapse the block (when collapsed user will see less information)
|
|
4
8
|
SHOW_LESS=Show Less
|
|
5
9
|
|
|
10
|
+
#XACT: ARIA aria-label for AnchorBar
|
|
6
11
|
ANCHOR_BAR_ARIA_LABEL=Anchors
|
|
7
12
|
|
|
13
|
+
#XACT: ARIA roledescription for AnchorBar
|
|
8
14
|
ANCHOR_BAR_ARIA_LABEL_DESC=Activate item to go to section in page
|
|
9
15
|
|
|
16
|
+
#XACT: ARIA label for AnchorBar
|
|
10
17
|
ANCHOR_BAR_OVERFLOW=More
|
|
11
18
|
|
|
19
|
+
#XACT: ARIA label for BreadCrumbs
|
|
12
20
|
BREADCRUMB_TRAIL_LABEL=Breadcrumb Trail
|
|
13
21
|
|
|
22
|
+
#XBUT,11: Text displayed on the button to click to expand all subsections
|
|
14
23
|
SHOW_ALL=Show All
|
|
15
24
|
|
|
25
|
+
#XBUT,12: Text displayed on the button to click to collapse all subsections
|
|
16
26
|
HIDE_ALL=Show Less
|
|
17
27
|
|
|
28
|
+
#XBUT,9: Text displayed on the button to click to expand section
|
|
18
29
|
SHOW=Expand
|
|
19
30
|
|
|
31
|
+
#XBUT,11: Text displayed on the button to click to collapse section
|
|
20
32
|
HIDE=Collapse
|
|
21
33
|
|
|
34
|
+
#XBUT: Text displayed on the button that will allow editing the Header Area Content
|
|
22
35
|
EDIT_HEADER=Edit Header
|
|
23
36
|
|
|
37
|
+
#XTOL: Tooltip for the flag icon inside sap.uxap.ObjectPageHeader, showing that the item is flagged
|
|
24
38
|
TOOLTIP_OP_FLAG_MARK_VALUE=Flagged
|
|
25
39
|
|
|
40
|
+
#XTOL: Tooltip for the favorite icon inside sap.uxap.ObjectPageHeader, showing that the item is favorite
|
|
26
41
|
TOOLTIP_OP_FAVORITE_MARK_VALUE=Favorite
|
|
27
42
|
|
|
43
|
+
#XTOL: Tooltip for the select title arrow inside sap.uxap.ObjectPageHeader
|
|
28
44
|
OP_SELECT_ARROW_TOOLTIP=Related options
|
|
29
45
|
|
|
46
|
+
#XTOL: Tooltip for the locked icon inside sap.uxap.ObjectPageHeader, showing that the item is locked
|
|
30
47
|
TOOLTIP_OP_LOCK_MARK_VALUE=Locked
|
|
31
48
|
|
|
49
|
+
#XTOL: Tooltip for the Overflow button inside sap.uxap.ObjectPageHeader
|
|
32
50
|
TOOLTIP_OP_OVERFLOW_BTN=More
|
|
33
51
|
|
|
52
|
+
#XTOL: Tooltip for the Scroll left arrow inside sap.uxap.AnchorBar
|
|
34
53
|
TOOLTIP_OP_SCROLL_LEFT_ARROW=Scroll left
|
|
35
54
|
|
|
55
|
+
#XTOL: Tooltip for the Scroll right arrow inside sap.uxap.AnchorBar
|
|
36
56
|
TOOLTIP_OP_SCROLL_RIGHT_ARROW=Scroll right
|
|
37
57
|
|
|
58
|
+
#XTOL: Tooltip for the unsaved changes icon inside sap.uxap.ObjectPageHeader, showing that the item have been changed by another user and there are unsaved changes
|
|
38
59
|
TOOLTIP_OP_CHANGES_MARK_VALUE=Unsaved changes
|
|
39
60
|
|
|
61
|
+
#XTOL: Tooltip for the button that expands the header area content inside sap.uxap.ObjectPageHeader
|
|
40
62
|
TOOLTIP_OP_EXPAND_HEADER_BTN=Expand header content
|
|
41
63
|
|
|
64
|
+
#XTOL: Tooltip for the button that shows the Side Content panel
|
|
42
65
|
TOOLTIP_OP_SHOW_SIDE_CONTENT=Open side panel
|
|
43
66
|
|
|
67
|
+
#XACT: Text used to label the root sap.uxap.ObjectPageLayout element when it has a title
|
|
44
68
|
ROOT_ARIA_LABEL_WITH_TITLE=Details
|
|
45
69
|
|
|
70
|
+
#XACT: Text used to label the root sap.uxap.ObjectPageLayout element when it doesn't have a title
|
|
46
71
|
ROOT_ARIA_LABEL_WITHOUT_TITLE=Object details
|
|
47
72
|
|
|
73
|
+
#XACT: Text used to label the header area element of sap.uxap.ObjectPageLayout when it has a title
|
|
48
74
|
HEADER_ARIA_LABEL_WITH_TITLE=Header\: Use screen reader reading mode for reading all object information
|
|
49
75
|
|
|
76
|
+
#XACT: Text used to label the header area element of sap.uxap.ObjectPageLayout when it doesn`t have title
|
|
50
77
|
HEADER_ARIA_LABEL_WITHOUT_TITLE=Object header\: Use screen reader reading mode for reading all object information
|
|
51
78
|
|
|
79
|
+
#XACT: Text used to label the AnchorBar element of sap.uxap.ObjectPageLayout when it doesn't have a title
|
|
52
80
|
NAVIGATION_ARIA_LABEL_WITHOUT_TITLE=Object
|
|
53
81
|
|
|
82
|
+
#XACT: Text used to label the Toolbar inside the AnchorBar when ObjectPage has a title
|
|
54
83
|
NAVTOOLBAR_ARIA_LABEL_WITH_TITLE=Options
|
|
55
84
|
|
|
85
|
+
#XACT: Text used to label the Toolbar inside the AnchorBar when ObjectPage doesn't have a title
|
|
56
86
|
NAVTOOLBAR_ARIA_LABEL_WITHOUT_TITLE=Object options
|
|
57
87
|
|
|
88
|
+
#XACT: Text used to label the AnchorBar element of sap.uxap.ObjectPageLayout when it doesn't have a title
|
|
58
89
|
FOOTER_ARIA_LABEL=General actions
|
|
59
90
|
|
|
91
|
+
#XMIT: Context Menu Entry or Dialog Title will be enhanced with this key user friendly control type name: Section
|
|
60
92
|
SECTION_CONTROL_NAME=Section
|
|
61
93
|
|
|
94
|
+
#XTIT: Context Menu Entry or Dialog Title will be enhanced with this key user friendly control type name: Sections
|
|
62
95
|
SECTION_CONTROL_NAME_PLURAL=Sections
|
|
63
96
|
|
|
97
|
+
#XTIT: Default title for sections created in order to display IFrame
|
|
64
98
|
SECTION_TITLE_FOR_IFRAME=Embedded Content
|
|
65
99
|
|
|
100
|
+
#XMIT: Context Menu Entry or Dialog Title will be enhanced with this key user friendly control type name: Header
|
|
66
101
|
HEADER_CONTROL_NAME=Header
|
|
67
102
|
|
|
103
|
+
#XMIT: Friendly control type name, used for aria-labelling: Subsection
|
|
68
104
|
SUBSECTION_CONTROL_NAME=Subsection
|
|
69
105
|
|
|
106
|
+
#XACT: Text used to describe the role of the root sap.uxap.ObjectPageLayout element
|
|
70
107
|
ROOT_ROLE_DESCRIPTION=Object page
|
|
71
108
|
|
|
109
|
+
#XACT: Text used to describe the role of the sap.uxap.ObjectPageHeader element
|
|
72
110
|
HEADER_ROLE_DESCRIPTION=Object page header
|
|
73
111
|
|
|
112
|
+
#XACT: Text used to describe the role of the sap.uxap.AnchorBar element
|
|
74
113
|
NAVIGATION_ROLE_DESCRIPTION=Sections navigation bar
|
|
75
114
|
|
|
115
|
+
#XACT: Text used to describe the role of the footer toolbar element of the sap.uxap.ObjectPageLayout
|
|
76
116
|
FOOTER_ROLE_DESCRIPTION=General actions for object page
|
|
77
117
|
|
|
118
|
+
#XACT: Text used in key user adaptation after 'Embed Content: ' for adding an iFrame in the header
|
|
78
119
|
ADD_IFRAME_IN_HEADER=in Header
|
|
79
120
|
|
|
121
|
+
#XACT: Text used in key user adaptation after 'Embed Content: ' for adding an iFrame as a new section
|
|
80
122
|
ADD_IFRAME_AS_SECTION=as section
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
|
|
2
|
+
SHOW_MORE=\u041F\u0440\u0438\u043A\u0430\u0436\u0438 \u043F\u043E\u0432\u0435\u045C\u0435
|
|
3
|
+
|
|
4
|
+
SHOW_LESS=\u041F\u0440\u0438\u043A\u0430\u0436\u0438 \u043F\u043E\u043C\u0430\u043B\u043A\u0443
|
|
5
|
+
|
|
6
|
+
ANCHOR_BAR_ARIA_LABEL=\u0421\u0438\u0434\u0440\u0430
|
|
7
|
+
|
|
8
|
+
ANCHOR_BAR_ARIA_LABEL_DESC=\u0410\u043A\u0442\u0438\u0432\u0438\u0440\u0430\u0458\u0442\u0435 \u0441\u0442\u0430\u0432\u043A\u0430 \u0437\u0430 \u0434\u0430 \u043F\u043E\u0458\u0434\u0435\u0442\u0435 \u0434\u043E \u0441\u0435\u043A\u0446\u0438\u0458\u0430\u0442\u0430 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430\u0442\u0430
|
|
9
|
+
|
|
10
|
+
ANCHOR_BAR_OVERFLOW=\u041F\u043E\u0432\u0435\u045C\u0435
|
|
11
|
+
|
|
12
|
+
BREADCRUMB_TRAIL_LABEL=\u041F\u0430\u0442\u0435\u043A\u0430 \u0437\u0430 \u0441\u043B\u0435\u0434\u0435\u045A\u0435
|
|
13
|
+
|
|
14
|
+
SHOW_ALL=\u041F\u0440\u0438\u043A\u0430\u0436\u0438 \u0433\u0438 \u0441\u0438\u0442\u0435
|
|
15
|
+
|
|
16
|
+
HIDE_ALL=\u041F\u0440\u0438\u043A\u0430\u0436\u0438 \u043F\u043E\u043C\u0430\u043B\u043A\u0443
|
|
17
|
+
|
|
18
|
+
SHOW=\u041F\u0440\u043E\u0448\u0438\u0440\u0438
|
|
19
|
+
|
|
20
|
+
HIDE=\u0421\u043E\u0431\u0435\u0440\u0438
|
|
21
|
+
|
|
22
|
+
EDIT_HEADER=\u0423\u0440\u0435\u0434\u0438 \u0433\u043E \u0437\u0430\u0433\u043B\u0430\u0432\u0438\u0435\u0442\u043E
|
|
23
|
+
|
|
24
|
+
TOOLTIP_OP_FLAG_MARK_VALUE=\u041E\u0437\u043D\u0430\u0447\u0435\u043D\u043E
|
|
25
|
+
|
|
26
|
+
TOOLTIP_OP_FAVORITE_MARK_VALUE=\u041E\u043C\u0438\u043B\u0435\u043D\u043E
|
|
27
|
+
|
|
28
|
+
OP_SELECT_ARROW_TOOLTIP=\u041F\u043E\u0432\u0440\u0437\u0430\u043D\u0438 \u043E\u043F\u0446\u0438\u0438
|
|
29
|
+
|
|
30
|
+
TOOLTIP_OP_LOCK_MARK_VALUE=\u0417\u0430\u043A\u043B\u0443\u0447\u0435\u043D\u043E
|
|
31
|
+
|
|
32
|
+
TOOLTIP_OP_OVERFLOW_BTN=\u041F\u043E\u0432\u0435\u045C\u0435
|
|
33
|
+
|
|
34
|
+
TOOLTIP_OP_SCROLL_LEFT_ARROW=\u041B\u0438\u0437\u0433\u0430\u0458 \u043D\u0430\u043B\u0435\u0432\u043E
|
|
35
|
+
|
|
36
|
+
TOOLTIP_OP_SCROLL_RIGHT_ARROW=\u041B\u0438\u0437\u0433\u0430\u0458 \u043D\u0430\u0434\u0435\u0441\u043D\u043E
|
|
37
|
+
|
|
38
|
+
TOOLTIP_OP_CHANGES_MARK_VALUE=\u041D\u0435\u0437\u0430\u0447\u0443\u0432\u0430\u043D\u0438 \u043F\u0440\u043E\u043C\u0435\u043D\u0438
|
|
39
|
+
|
|
40
|
+
TOOLTIP_OP_EXPAND_HEADER_BTN=\u041F\u0440\u043E\u0448\u0438\u0440\u0438 \u0458\u0430 \u0441\u043E\u0434\u0440\u0436\u0438\u043D\u0430\u0442\u0430 \u043D\u0430 \u0437\u0430\u0433\u043B\u0430\u0432\u0438\u0435\u0442\u043E
|
|
41
|
+
|
|
42
|
+
TOOLTIP_OP_SHOW_SIDE_CONTENT=\u041E\u0442\u0432\u043E\u0440\u0438 \u0433\u043E \u0441\u0442\u0440\u0430\u043D\u0438\u0447\u043D\u0438\u043E\u0442 \u043F\u0430\u043D\u0435\u043B
|
|
43
|
+
|
|
44
|
+
ROOT_ARIA_LABEL_WITH_TITLE=\u0414\u0435\u0442\u0430\u043B\u0438
|
|
45
|
+
|
|
46
|
+
ROOT_ARIA_LABEL_WITHOUT_TITLE=\u0414\u0435\u0442\u0430\u043B\u0438 \u0437\u0430 \u043E\u0431\u0458\u0435\u043A\u0442\u043E\u0442
|
|
47
|
+
|
|
48
|
+
HEADER_ARIA_LABEL_WITH_TITLE=Header\: Use screen reader reading mode for reading all object information
|
|
49
|
+
|
|
50
|
+
HEADER_ARIA_LABEL_WITHOUT_TITLE=Object header\: Use screen reader reading mode for reading all object information
|
|
51
|
+
|
|
52
|
+
NAVIGATION_ARIA_LABEL_WITHOUT_TITLE=\u041E\u0431\u0458\u0435\u043A\u0442
|
|
53
|
+
|
|
54
|
+
NAVTOOLBAR_ARIA_LABEL_WITH_TITLE=\u041E\u043F\u0446\u0438\u0438
|
|
55
|
+
|
|
56
|
+
NAVTOOLBAR_ARIA_LABEL_WITHOUT_TITLE=\u041E\u043F\u0446\u0438\u0438 \u0437\u0430 \u043E\u0431\u0458\u0435\u043A\u0442\u043E\u0442
|
|
57
|
+
|
|
58
|
+
FOOTER_ARIA_LABEL=General actions
|
|
59
|
+
|
|
60
|
+
SECTION_CONTROL_NAME=\u0421\u0435\u043A\u0446\u0438\u0458\u0430
|
|
61
|
+
|
|
62
|
+
SECTION_CONTROL_NAME_PLURAL=\u0421\u0435\u043A\u0446\u0438\u0438
|
|
63
|
+
|
|
64
|
+
SECTION_TITLE_FOR_IFRAME=\u0412\u043C\u0435\u0442\u043D\u0430\u0442\u0430 \u0441\u043E\u0434\u0440\u0436\u0438\u043D\u0430
|
|
65
|
+
|
|
66
|
+
HEADER_CONTROL_NAME=\u0417\u0430\u0433\u043B\u0430\u0432\u0438\u0435
|
|
67
|
+
|
|
68
|
+
SUBSECTION_CONTROL_NAME=\u041F\u043E\u0442\u0441\u0435\u043A\u0446\u0438\u0458\u0430
|
|
69
|
+
|
|
70
|
+
ROOT_ROLE_DESCRIPTION=\u0421\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u043D\u0430 \u043E\u0431\u0458\u0435\u043A\u0442\u043E\u0442
|
|
71
|
+
|
|
72
|
+
HEADER_ROLE_DESCRIPTION=\u0417\u0430\u0433\u043B\u0430\u0432\u0438\u0435 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430\u0442\u0430 \u043D\u0430 \u043E\u0431\u0458\u0435\u043A\u0442\u043E\u0442
|
|
73
|
+
|
|
74
|
+
NAVIGATION_ROLE_DESCRIPTION=\u041B\u0435\u043D\u0442\u0430 \u0437\u0430 \u043D\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0458\u0430 \u043D\u0438\u0437 \u0441\u0435\u043A\u0446\u0438\u0438\u0442\u0435
|
|
75
|
+
|
|
76
|
+
FOOTER_ROLE_DESCRIPTION=\u041E\u043F\u0448\u0442\u0438 \u0434\u0435\u0458\u0441\u0442\u0432\u0430 \u0437\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430\u0442\u0430 \u0441\u043E \u043E\u0431\u0458\u0435\u043A\u0442\u0438
|
|
77
|
+
|
|
78
|
+
ADD_IFRAME_IN_HEADER=\u0432\u043E \u0437\u0430\u0433\u043B\u0430\u0432\u0438\u0435\u0442\u043E
|
|
79
|
+
|
|
80
|
+
ADD_IFRAME_AS_SECTION=\u043A\u0430\u043A\u043E \u0441\u0435\u043A\u0446\u0438\u0458\u0430
|
|
@@ -47,7 +47,7 @@ ROOT_ARIA_LABEL_WITHOUT_TITLE=Detalji objekta
|
|
|
47
47
|
|
|
48
48
|
HEADER_ARIA_LABEL_WITH_TITLE=Zaglavlje\: Koristi na\u010Din \u010Ditanja \u010Dita\u010Da ekrana za \u010Ditanje vih informacija o objektu
|
|
49
49
|
|
|
50
|
-
HEADER_ARIA_LABEL_WITHOUT_TITLE=Zaglavlje objekta\: Koristi na\u010Din \u010Ditanja \u010Dita\u010Da ekrana za \u010Ditanje
|
|
50
|
+
HEADER_ARIA_LABEL_WITHOUT_TITLE=Zaglavlje objekta\: Koristi na\u010Din \u010Ditanja \u010Dita\u010Da ekrana za \u010Ditanje svih informacija o objektu
|
|
51
51
|
|
|
52
52
|
NAVIGATION_ARIA_LABEL_WITHOUT_TITLE=Objekat
|
|
53
53
|
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
|
|
2
|
+
SHOW_MORE=\u041F\u043E\u043A\u0430\u0436\u0438 \u0432\u0438\u0448\u0435
|
|
3
|
+
|
|
4
|
+
SHOW_LESS=\u041F\u043E\u043A\u0430\u0436\u0438 \u043C\u0430\u045A\u0435
|
|
5
|
+
|
|
6
|
+
ANCHOR_BAR_ARIA_LABEL=\u0421\u0438\u0434\u0440\u0430
|
|
7
|
+
|
|
8
|
+
ANCHOR_BAR_ARIA_LABEL_DESC=\u0410\u043A\u0442\u0438\u0432\u0438\u0440\u0430\u0458 \u0441\u0442\u0430\u0432\u043A\u0443 \u0437\u0430 \u043F\u0440\u0435\u043B\u0430\u0437\u0430\u043A \u043D\u0430 \u043E\u0434\u0435\u0459\u0430\u043A \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0438
|
|
9
|
+
|
|
10
|
+
ANCHOR_BAR_OVERFLOW=\u0412\u0438\u0448\u0435
|
|
11
|
+
|
|
12
|
+
BREADCRUMB_TRAIL_LABEL=\u041F\u0443\u0442 \u0443\u0441\u043C\u0435\u0440\u0430\u0432\u0430\u045A\u0430
|
|
13
|
+
|
|
14
|
+
SHOW_ALL=\u041F\u043E\u043A\u0430\u0436\u0438 \u0441\u0432\u0435
|
|
15
|
+
|
|
16
|
+
HIDE_ALL=\u041F\u043E\u043A\u0430\u0436\u0438 \u043C\u0430\u045A\u0435
|
|
17
|
+
|
|
18
|
+
SHOW=\u041F\u0440\u043E\u0448\u0438\u0440\u0438
|
|
19
|
+
|
|
20
|
+
HIDE=\u0421\u0430\u0436\u043C\u0438
|
|
21
|
+
|
|
22
|
+
EDIT_HEADER=\u0423\u0440\u0435\u0434\u0438 \u0437\u0430\u0433\u043B\u0430\u0432\u0459\u0435
|
|
23
|
+
|
|
24
|
+
TOOLTIP_OP_FLAG_MARK_VALUE=\u041E\u0437\u043D\u0430\u0447\u0435\u043D\u043E
|
|
25
|
+
|
|
26
|
+
TOOLTIP_OP_FAVORITE_MARK_VALUE=\u041E\u043C\u0438\u0459\u0435\u043D\u0438
|
|
27
|
+
|
|
28
|
+
OP_SELECT_ARROW_TOOLTIP=\u041F\u043E\u0432\u0435\u0437\u0430\u043D\u0435 \u043E\u043F\u0446\u0438\u0458\u0435
|
|
29
|
+
|
|
30
|
+
TOOLTIP_OP_LOCK_MARK_VALUE=\u0417\u0430\u043A\u0459\u0443\u0447\u0430\u043D\u043E
|
|
31
|
+
|
|
32
|
+
TOOLTIP_OP_OVERFLOW_BTN=\u0412\u0438\u0448\u0435
|
|
33
|
+
|
|
34
|
+
TOOLTIP_OP_SCROLL_LEFT_ARROW=\u041F\u043E\u043C\u0435\u0440\u0438 \u0443\u043B\u0435\u0432\u043E
|
|
35
|
+
|
|
36
|
+
TOOLTIP_OP_SCROLL_RIGHT_ARROW=\u041F\u043E\u043C\u0435\u0440\u0438 \u0443\u0434\u0435\u0441\u043D\u043E
|
|
37
|
+
|
|
38
|
+
TOOLTIP_OP_CHANGES_MARK_VALUE=\u041D\u0435\u0441\u0430\u0447\u0443\u0432\u0430\u043D\u0435 \u043F\u0440\u043E\u043C\u0435\u043D\u0435
|
|
39
|
+
|
|
40
|
+
TOOLTIP_OP_EXPAND_HEADER_BTN=\u041F\u0440\u043E\u0448\u0438\u0440\u0438 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0437\u0430\u0433\u043B\u0430\u0432\u0459\u0430
|
|
41
|
+
|
|
42
|
+
TOOLTIP_OP_SHOW_SIDE_CONTENT=\u041E\u0442\u0432\u043E\u0440\u0438 \u0431\u043E\u0447\u043D\u0438 \u043F\u0430\u043D\u0435\u043B
|
|
43
|
+
|
|
44
|
+
ROOT_ARIA_LABEL_WITH_TITLE=\u0414\u0435\u0442\u0430\u0459\u0438
|
|
45
|
+
|
|
46
|
+
ROOT_ARIA_LABEL_WITHOUT_TITLE=\u0414\u0435\u0442\u0430\u0459\u0438 \u043E\u0431\u0458\u0435\u043A\u0442\u0430
|
|
47
|
+
|
|
48
|
+
HEADER_ARIA_LABEL_WITH_TITLE=\u0417\u0430\u0433\u043B\u0430\u0432\u0459\u0435\: \u041A\u043E\u0440\u0438\u0441\u0442\u0438 \u043D\u0430\u0447\u0438\u043D \u0447\u0438\u0442\u0430\u045A\u0430 \u0447\u0438\u0442\u0430\u0447\u0430 \u0435\u043A\u0440\u0430\u043D\u0430 \u0437\u0430 \u0447\u0438\u0442\u0430\u045A\u0435 \u0432\u0438\u0445 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0430 \u043E \u043E\u0431\u0458\u0435\u043A\u0442\u0443
|
|
49
|
+
|
|
50
|
+
HEADER_ARIA_LABEL_WITHOUT_TITLE=\u0417\u0430\u0433\u043B\u0430\u0432\u0459\u0435 \u043E\u0431\u0458\u0435\u043A\u0442\u0430\: \u041A\u043E\u0440\u0438\u0441\u0442\u0438 \u043D\u0430\u0447\u0438\u043D \u0447\u0438\u0442\u0430\u045A\u0430 \u0447\u0438\u0442\u0430\u0447\u0430 \u0435\u043A\u0440\u0430\u043D\u0430 \u0437\u0430 \u0447\u0438\u0442\u0430\u045A\u0435 \u0441\u0432\u0438\u0445 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0458\u0430 \u043E \u043E\u0431\u0458\u0435\u043A\u0442\u0443
|
|
51
|
+
|
|
52
|
+
NAVIGATION_ARIA_LABEL_WITHOUT_TITLE=\u041E\u0431\u0458\u0435\u043A\u0430\u0442
|
|
53
|
+
|
|
54
|
+
NAVTOOLBAR_ARIA_LABEL_WITH_TITLE=\u041E\u043F\u0446\u0438\u0458\u0435
|
|
55
|
+
|
|
56
|
+
NAVTOOLBAR_ARIA_LABEL_WITHOUT_TITLE=\u041E\u043F\u0446\u0438\u0458\u0435 \u043E\u0431\u0458\u0435\u043A\u0442\u0430
|
|
57
|
+
|
|
58
|
+
FOOTER_ARIA_LABEL=\u041E\u043F\u0448\u0442\u0435 \u0440\u0430\u0434\u045A\u0435
|
|
59
|
+
|
|
60
|
+
SECTION_CONTROL_NAME=\u041E\u0434\u0435\u0459\u0430\u043A
|
|
61
|
+
|
|
62
|
+
SECTION_CONTROL_NAME_PLURAL=\u041E\u0434\u0435\u0459\u0446\u0438
|
|
63
|
+
|
|
64
|
+
SECTION_TITLE_FOR_IFRAME=\u0423\u0433\u0440\u0430\u0452\u0435\u043D\u0438 \u0441\u0430\u0434\u0440\u0436\u0430\u0458
|
|
65
|
+
|
|
66
|
+
HEADER_CONTROL_NAME=\u0417\u0430\u0433\u043B\u0430\u0432\u0459\u0435
|
|
67
|
+
|
|
68
|
+
SUBSECTION_CONTROL_NAME=\u041F\u043E\u0434\u043E\u0434\u0435\u0459\u0430\u043A
|
|
69
|
+
|
|
70
|
+
ROOT_ROLE_DESCRIPTION=\u0421\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u043E\u0431\u0458\u0435\u043A\u0442\u0430
|
|
71
|
+
|
|
72
|
+
HEADER_ROLE_DESCRIPTION=\u0417\u0430\u0433\u043B\u0430\u0432\u0459\u0435 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0435 \u043E\u0431\u0458\u0435\u043A\u0442\u0430
|
|
73
|
+
|
|
74
|
+
NAVIGATION_ROLE_DESCRIPTION=\u0422\u0440\u0430\u043A\u0430 \u0443\u0441\u043C\u0435\u0440\u0430\u0432\u0430\u045A\u0430 \u043E\u0434\u0435\u0459\u043A\u0430
|
|
75
|
+
|
|
76
|
+
FOOTER_ROLE_DESCRIPTION=\u041E\u043F\u0448\u0442\u0435 \u0440\u0430\u0434\u045A\u0435 \u0437\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443 \u043E\u0431\u0458\u0435\u043A\u0442\u0430
|
|
77
|
+
|
|
78
|
+
ADD_IFRAME_IN_HEADER=\u0443 \u0437\u0430\u0433\u043B\u0430\u0432\u0459\u0443
|
|
79
|
+
|
|
80
|
+
ADD_IFRAME_AS_SECTION=\u043A\u0430\u043E \u043E\u0434\u0435\u0459\u0430\u043A
|
|
@@ -8,6 +8,12 @@
|
|
|
8
8
|
box-sizing: border-box;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
+
.sapUxAPObjectPageSubSection.sapUxAPObjectPageSubSectionStashed .sapUxAPBlockContainer > .sapUiRespGrid:empty,
|
|
12
|
+
/* Blockbase is used */
|
|
13
|
+
.sapUxAPObjectPageSubSection.sapUxAPObjectPageSubSectionStashed .sapUxAPBlockContainer > .sapUiRespGrid > div > div:empty {
|
|
14
|
+
height: 20vh;
|
|
15
|
+
}
|
|
16
|
+
|
|
11
17
|
.sapUxAPObjectPageSubSectionHeaderActions > .sapMBtn {
|
|
12
18
|
margin-left: 0.5rem;
|
|
13
19
|
}
|